├── viewer ├── user-profiles │ └── README.txt ├── images │ ├── tree-closed.png │ ├── tree-leaf.png │ ├── tree-open.png │ └── tree-connector.png ├── viewer.html ├── view-profile.php ├── save-profile.php ├── viewer.css ├── viewer.js └── sample-json.js ├── profiler-dump.js ├── profiler.js └── README.md /viewer/user-profiles/README.txt: -------------------------------------------------------------------------------- 1 | The save-profile.php script will store files in this directory. 2 | -------------------------------------------------------------------------------- /viewer/images/tree-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jblas/profiler/HEAD/viewer/images/tree-closed.png -------------------------------------------------------------------------------- /viewer/images/tree-leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jblas/profiler/HEAD/viewer/images/tree-leaf.png -------------------------------------------------------------------------------- /viewer/images/tree-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jblas/profiler/HEAD/viewer/images/tree-open.png -------------------------------------------------------------------------------- /viewer/images/tree-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jblas/profiler/HEAD/viewer/images/tree-connector.png -------------------------------------------------------------------------------- /viewer/viewer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Click on the list items below to drill down into a call graph. Note that all call graphs with a zero duration have been filtered out.
24 |Total Call Count: ' + callCount + '
| Count | Min | Max | Avg | Total | Label |
|---|---|---|---|---|---|
| ' + item[ 5 ] + ' | ' 71 | + '' + item[ 1 ] + ' | ' 72 | + '' + item[ 2 ] + ' | ' 73 | + '' + item[ 3 ] + ' | ' 74 | + '' + item[ 4 ] + ' | ' 75 | + '' + item[ 0 ] + ' | ' 76 | + '
28 | function myDoSomethingFunction()
29 | {
30 | ...
31 | }
32 |
33 | ...
34 |
35 | window.myDoSomethingFunction = profiler.instrumentFunction(myDoSomethingFunction, "myDoSomethingFunction");
36 |
37 |
38 | ### Instrumenting Object Functions
39 |
40 | If you want to instrument all of the function properties within a given object, you would use the instrumentObjectFunctions() method:
41 |
42 | profiler.instrumentObjectFunctions(object, label)
43 |
44 | The first argument is a reference to an object that contains functions you want to instrument. The 2nd argument is a label you want to use as a prefix for the label of each function.
45 |
46 |
47 |
48 | var obj = {
49 | type: "foo",
50 | func1: function(){ alert("func1"); },
51 | func2: function(){ alert("func2"); },
52 | };
53 |
54 | ...
55 |
56 | profiler.instrumentObjectFunctions(obj, "obj.");
57 |
58 |
59 |
60 | In the example above the profiler will instrument and then set both func1 and func2 properties of obj. Under the hood, instrumentObjectFunctions() finds all properties within obj that are functions, it then instruments each function and then sets that property so that it points to the instrumented version of the function. The labels for each function will be the concatenation of the label passed into instrumentObjectFunctions() with the name of the property.
61 |
62 | If you use jQuery Mobile, you can get some useful/interesting metrics and traces like this:
63 |
64 | profiler.instrumentObjectFunctions($.find, "$.find.");
65 | profiler.instrumentObjectFunctions($, "$.");
66 | profiler.instrumentObjectFunctions($.fn, "$.fn.");
67 | profiler.instrumentObjectFunctions($.mobile, "$.mobile.");
68 |
69 | ### Instrumenting Selected Object Functions
70 |
71 | If you want to instrument a specific function within an object, you can call instrumentObjectFunction():
72 |
73 | profiler.instrumentObjectFunction(object, funcName, label)
74 |
75 | The first argument is an object that contains the function you want to instrument. The 2nd argument is the name of the property, within that obj, that contains the function reference you want to instrument. The 3rd argument is the label to be used to identify this function while profiling.
76 |
77 |
78 |
79 |
80 | var obj = {
81 | type: "foo",
82 | func1: function(){ alert("func1"); },
83 | func2: function(){ alert("func2"); },
84 | };
85 |
86 | ...
87 |
88 | profiler.instrumentObjectFunction(obj, "func2", obj.func2");
89 |
90 |
91 |
92 | In the above example, only func2 will be profiled. func1 is untouched.
93 |
94 | ### Profiling a Section of Code
95 |
96 | There may be times when you want to profile specific sections of code, not an entire function. To do this, you simply bracket the code you want to profile with startProfile() and stopProfile() method calls.
97 |
98 | 99 | profiler.startProfile(label) 100 | profiler.stopProfile(label) 101 |102 | 103 | So for example if you wanted to profile a couple of sections of a function, you could do something like this: 104 | 105 |
106 | function myDoSomethingFunction()
107 | {
108 | ...
109 |
110 | profiler.startProfile("for-loop");
111 |
112 | for (var i = 0; i < len; i+++)
113 | {
114 | ...
115 | }
116 |
117 | profiler.stopProfile("for-loop");
118 |
119 | ...
120 |
121 | profiler.startProfile("something-else-section");
122 |
123 | doSomethingElse1();
124 | doSomethingElse2();
125 |
126 | profiler.stopProfile("something-else-section");
127 | }
128 |
129 |
130 | ### Enabling/Disabling Profiling
131 |
132 | Profiling can generate a lot of data and affect the performance of your code. You may want to enable and disable it in specific areas of your code so that you are only gathering metrics in a specific case. By default the profiler is enabled and gathers metrics anytime one of the functions it instrumented is called. You can turn the profiler on and off with the enable() and disable() methods.
133 |
134 |
135 | function myDoSomethingFunction()
136 | {
137 | ...
138 | }
139 |
140 | var profiler = $createProfiler();
141 | profiler.disable();
142 | window.myDoSomethingFunction = profiler.instrumentFunction(myDoSomethingFunction, "myDoSomethingFunction");
143 |
144 | ...
145 |
146 | function foo()
147 | {
148 | profiler.enable();
149 | ...
150 | profiler.disable();
151 | }
152 |
153 |
154 | In the example above, metrics for the myDoSomethingFunction() will only be generated if something calls foo() and the code within foo() triggers a call to myDoSomethingFunction().
155 |
156 | ## Dumping The Metrics
157 |
158 | Extracting the metrics from the profiler object is one area I will be focussing on over the next few weeks. For now, there are a couple of utility functions within profiler-dump.js that I have been using to dump the profiled call graphs collected by the profiler:
159 |
160 | $dumpProfilerText(profiler)
161 | $dumpProfilerHTML(profiler)
162 |
163 | Both function return the call graph information as a string that you can then either post to a server for analysis later, or display somehow in the page you are profiling and email to yourself from the device.
164 |
165 | $dumpProfilerText() outputs call graphs that look something like this:
166 |
167 | 168 | handleTouchStart - duration: 93 169 | getNativeEvent - duration: 1 170 | getVirtualBindingFlags - duration: 6 171 | $.data - duration: 1 172 | $.acceptData - duration: 1 173 | $.data - duration: 0 174 | $.acceptData - duration: 0 175 | $.data - duration: 1 176 | $.acceptData - duration: 0 177 | $.data - duration: 0 178 | $.acceptData - duration: 0 179 | $.data - duration: 2 180 | $.acceptData - duration: 0 181 | $.data - duration: 1 182 | $.acceptData - duration: 0 183 | clearResetTimer - duration: 0 184 | disableMouseBindings - duration: 1 185 | enableTouchBindings - duration: 1 186 | getNativeEvent - duration: 0 187 | triggerVirtualEvent - duration: 42 188 | createVirtualEvent - duration: 3 189 | $.Event - duration: 0 190 | $.Event - duration: 0 191 | $.now - duration: 0 192 | getNativeEvent - duration: 0 193 | $.fn.init - duration: 0 194 | $.fn.trigger - duration: 39 195 | $.fn.each - duration: 37 196 | $.each - duration: 37 197 | $.isFunction - duration: 0 198 | $.type - duration: 0 199 | $._data - duration: 0 200 | $.data - duration: 0 201 | $.acceptData - duration: 0 202 | $.acceptData - duration: 0 203 | $._data - duration: 1 204 | $.data - duration: 1 205 | $.acceptData - duration: 0 206 | $._data - duration: 1 207 | $.data - duration: 0 208 | $.acceptData - duration: 0 209 | $.acceptData - duration: 0 210 | $._data - duration: 1 211 | $.data - duration: 1 212 | $.acceptData - duration: 1 213 | $.acceptData - duration: 0 214 | $._data - duration: 1 215 | $.data - duration: 1 216 | $.acceptData - duration: 0 217 | $.acceptData - duration: 0 218 | $._data - duration: 1 219 | $.data - duration: 0 220 | $.acceptData - duration: 0 221 | $._data - duration: 1 222 | $.data - duration: 0 223 | $.acceptData - duration: 0 224 | $._data - duration: 1 225 | $.data - duration: 1 226 | $.acceptData - duration: 0 227 | $.fn.init - duration: 0 228 | $.fn.closest - duration: 22 229 | $.isArray - duration: 0 230 | $.fn.init - duration: 0 231 | $.fn.is - duration: 4 232 | $.filter - duration: 4 233 | $.find.matchesSelector - duration: 3 234 | $.find - duration: 3 235 | $.fn.init - duration: 0 236 | $.fn.is - duration: 3 237 | $.filter - duration: 3 238 | $.find.matchesSelector - duration: 3 239 | $.find - duration: 3 240 | $.fn.init - duration: 0 241 | $.fn.is - duration: 7 242 | $.filter - duration: 7 243 | $.find.matchesSelector - duration: 7 244 | $.find - duration: 5 245 | $.fn.init - duration: 0 246 | $.fn.is - duration: 4 247 | $.filter - duration: 4 248 | $.find.matchesSelector - duration: 3 249 | $.find - duration: 3 250 | $.acceptData - duration: 1 251 | $._data - duration: 1 252 | $.data - duration: 1 253 | $.acceptData - duration: 0 254 | $._data - duration: 0 255 | $.data - duration: 0 256 | $.acceptData - duration: 0 257 | $.acceptData - duration: 0 258 | $.acceptData - duration: 0 259 | triggerVirtualEvent - duration: 42 260 | createVirtualEvent - duration: 2 261 | $.Event - duration: 1 262 | $.Event - duration: 1 263 | $.now - duration: 1 264 | getNativeEvent - duration: 0 265 | $.fn.init - duration: 0 266 | $.fn.trigger - duration: 40 267 | $.fn.each - duration: 40 268 | $.each - duration: 40 269 | $.isFunction - duration: 1 270 | $.type - duration: 0 271 | $._data - duration: 3 272 | $.data - duration: 3 273 | $.acceptData - duration: 2 274 | $.acceptData - duration: 0 275 | $._data - duration: 2 276 | $.data - duration: 0 277 | $.acceptData - duration: 0 278 | $._data - duration: 1 279 | $.data - duration: 0 280 | $.acceptData - duration: 0 281 | $.acceptData - duration: 0 282 | $._data - duration: 0 283 | $.data - duration: 0 284 | $.acceptData - duration: 0 285 | $.acceptData - duration: 0 286 | $._data - duration: 1 287 | $.data - duration: 1 288 | $.acceptData - duration: 0 289 | $.acceptData - duration: 0 290 | $._data - duration: 1 291 | $.data - duration: 1 292 | $.acceptData - duration: 1 293 | $._data - duration: 1 294 | $.data - duration: 1 295 | $.acceptData - duration: 0 296 | $._data - duration: 1 297 | $.data - duration: 1 298 | $.acceptData - duration: 1 299 | $.fn.init - duration: 0 300 | $.fn.closest - duration: 20 301 | $.isArray - duration: 0 302 | $.fn.init - duration: 0 303 | $.fn.is - duration: 7 304 | $.filter - duration: 5 305 | $.find.matchesSelector - duration: 5 306 | $.find - duration: 5 307 | $.fn.init - duration: 0 308 | $.fn.is - duration: 4 309 | $.filter - duration: 4 310 | $.find.matchesSelector - duration: 4 311 | $.find - duration: 3 312 | $.fn.init - duration: 0 313 | $.fn.is - duration: 4 314 | $.filter - duration: 4 315 | $.find.matchesSelector - duration: 3 316 | $.find - duration: 3 317 | $.fn.init - duration: 0 318 | $.fn.is - duration: 4 319 | $.filter - duration: 3 320 | $.find.matchesSelector - duration: 3 321 | $.find - duration: 3 322 | $.acceptData - duration: 1 323 | $._data - duration: 3 324 | $.data - duration: 2 325 | $.acceptData - duration: 1 326 | $._data - duration: 1 327 | $.data - duration: 1 328 | $.acceptData - duration: 1 329 | $.acceptData - duration: 0 330 | $.acceptData - duration: 1 331 |332 | 333 | $dumpProfileHTML() dumps the call graphs as a series of nested lists. 334 | 335 | I will be looking into the possibility of integrating with a bookmarklet of some sort that allows developers to post JSON data to Steve Souder's [[jdrop site|http://jdrop.org/]]. 336 | 337 | ## Issues 338 | 339 | ### Function Closures Used to Privately Scope Functionality 340 | 341 | Libraries like jQuery and jQuery Mobile use anonymous function closures to scope the code within their files. If you are instrumenting from outside those files, it means you can only profile/instrument objects and functions that are exposed globally. If you need to instrument any functions or objects that are private to those files, you will have to place your instrumenting calls inside those files. 342 | -------------------------------------------------------------------------------- /viewer/sample-json.js: -------------------------------------------------------------------------------- 1 | {"version": "0.1","useragent":"Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; DELL; Venue Pro)","date":1320897328515,"items":{"1":["$.extend",0,9,0.96,22,23],"6":["$.isFunction",0,5,0.2,42,215],"7":["$.isArray",0,1,0.03,7,246],"8":["$.isWindow",0,1,0.07,3,43],"9":["$.isNaN",0,0,0,0,10],"10":["$.type",0,118,0.39,137,350],"11":["$.isPlainObject",0,1,0.14,8,58],"12":["$.isEmptyObject",0,0,0,0,4],"18":["$.camelCase",0,1,0.02,2,93],"19":["$.nodeName",0,0,0,0,8],"20":["$.each",0,380,23.7,1422,60],"21":["$.trim",0,1,0.05,4,76],"22":["$.makeArray",0,118,3.12,131,42],"23":["$.inArray",0,1,0.07,3,41],"24":["$.merge",0,1,0.04,3,78],"25":["$.grep",0,1,0.12,3,26],"26":["$.map",0,1,0.32,13,41],"28":["$.access",0,3,0.85,34,40],"29":["$.now",0,1,0.14,5,37],"32":["$._Deferred",0,0,0,0,7],"33":["$.Deferred",0,1,0.67,2,3],"35":["$.hasData",0,1,0.25,1,4],"36":["$.data",0,2,0.22,102,455],"38":["$._data",0,3,0.31,91,296],"39":["$.acceptData",0,2,0.07,42,642],"44":["$.attr",0,3,0.35,11,31],"47":["$.removeEvent",0,0,0,0,2],"48":["$.Event",0,1,0.26,16,61],"49":["$.find",0,14,0.8,126,157],"50":["$.unique",0,1,0.4,4,10],"51":["$.text",0,0,0,0,1],"52":["$.isXMLDoc",0,1,0.03,1,31],"54":["$.filter",0,9,0.81,61,75],"57":["$.sibling",0,1,0.13,5,39],"58":["$.buildFragment",0,3,1.75,7,4],"60":["$.clean",0,2,0.75,3,4],"61":["$.cleanData",0,0,0,0,2],"62":["$.style",0,1,0.5,4,8],"70":["$.ajaxSetup",10,10,10,10,1],"73":["$.ajax",35,35,35,35,1],"83":["$.fn.constructor",0,1,0.1,20,192],"84":["$.fn.init",0,119,0.55,169,308],"86":["$.fn.toArray",0,0,0,0,16],"87":["$.fn.get",0,1,0.06,1,16],"88":["$.fn.pushStack",0,2,0.29,51,178],"89":["$.fn.each",0,380,24.6,1402,57],"91":["$.fn.eq",0,1,0.49,25,51],"92":["$.fn.first",0,1,0.55,12,22],"93":["$.fn.last",0,0,0,0,1],"94":["$.fn.slice",0,1,0.37,19,51],"96":["$.fn.end",0,0,0,0,7],"97":["$.fn.push",0,1,0.08,4,50],"101":["$.fn.data",0,2,0.64,63,99],"108":["$.fn.attr",0,3,0.79,23,29],"112":["$.fn.addClass",0,5,0.69,42,61],"113":["$.fn.removeClass",0,3,1.44,23,16],"115":["$.fn.hasClass",0,0,0,0,2],"117":["$.fn.bind",1,1,1,5,5],"118":["$.fn.one",0,1,0.33,1,3],"119":["$.fn.unbind",0,1,0.5,2,4],"122":["$.fn.trigger",3,350,32.7,752,23],"123":["$.fn.triggerHandler",0,1,0.07,7,107],"128":["$.fn.blur",10,34,22,44,2],"129":["$.fn.focus",7,7,7,7,1],"135":["$.fn.unload",2,2,2,2,1],"152":["$.fn.find",0,14,1.71,72,42],"154":["$.fn.not",1,4,1.4,21,15],"156":["$.fn.is",0,9,1.23,27,22],"157":["$.fn.closest",1,13,2.89,52,18],"159":["$.fn.add",1,2,1.23,16,13],"161":["$.fn.parent",0,1,0.5,1,2],"171":["$.fn.children",1,3,1.54,60,39],"173":["$.fn.text",1,5,3,9,3],"178":["$.fn.append",2,5,3.5,14,4],"183":["$.fn.empty",1,1,1,2,2],"185":["$.fn.html",0,0,0,0,1],"188":["$.fn.domManip",2,5,3.25,13,4],"189":["$.fn.appendTo",6,7,6.5,13,2],"194":["$.fn.css",1,2,1.57,11,7],"219":["$.fn.scrollTop",20,20,20,20,1],"222":["$.fn.height",0,2,1,8,8],"240":["$.fn.page",0,380,190,380,2],"241":["$.fn.jqmData",0,4,0.86,67,78],"245":["$.fn.getEncodedText",5,5,5,5,1],"246":["$.fn.animationComplete",1,1,1,1,1],"248":["$.fn.collapsible",0,0,0,0,1],"249":["$.fn.fieldcontain",1,1,1,1,1],"251":["$.fn.navbar",1,1,1,1,1],"252":["$.fn.listview",0,242,121,242,2],"253":["$.fn.checkboxradio",0,0,0,0,1],"254":["$.fn.button",1,1,1,1,1],"255":["$.fn.slider",0,0,0,0,1],"256":["$.fn.textinput",0,0,0,0,1],"257":["$.fn.selectmenu",0,0,0,0,1],"258":["$.fn.buttonMarkup",6,17,8.29,58,7],"259":["$.fn.controlgroup",0,0,0,0,1],"265":["$.mobile.silentScroll",1,1,1,1,1],"266":["$.mobile.nsNormalize",0,1,0.03,2,78],"267":["$.mobile.getInheritedTheme",0,0,0,0,1],"270":["$.mobile.defaultTransitionHandler",9,9,9,9,1],"273":["$.mobile._bindPageRemove",2,2,2,2,1],"274":["$.mobile.loadPage",49,49,49,49,1],"275":["$.mobile.changePage",54,249,151.5,303,2],"287":["$.mobile.showPageLoadingMsg",40,40,40,40,1],"288":["$.mobile.hidePageLoadingMsg",1,2,1.5,3,2],"290":["$.mobile._handleHashChange",0,0,0,0,1],"291":["$.mobile.fixedToolbars.show",2,3,2.67,8,3],"292":["$.mobile.fixedToolbars.hide",2,4,3,12,4],"293":["$.mobile.fixedToolbars.startShowTimer",0,1,0.33,1,3],"294":["$.mobile.fixedToolbars.clearShowTimer",0,0,0,0,8],"303":["$.mobile.button.prototype.enhanceWithin",6,6,6,6,1],"320":["$.mobile.checkboxradio.prototype.enhanceWithin",5,5,5,5,1],"355":["$.mobile.listview.prototype._create",197,197,197,197,1],"356":["$.mobile.listview.prototype._removeCorners",14,14,14,14,1],"357":["$.mobile.listview.prototype._refreshCorners",41,41,41,41,1],"358":["$.mobile.listview.prototype.refresh",196,196,196,196,1],"360":["$.mobile.listview.prototype._createSubPages",8,8,8,8,1],"362":["$.mobile.listview.prototype._createWidget",241,241,241,241,1],"363":["$.mobile.listview.prototype._getCreateOptions",12,12,12,12,1],"365":["$.mobile.listview.prototype._init",0,0,0,0,1],"373":["$.mobile.listview.prototype._trigger",6,21,13.5,27,2],"387":["$.mobile.page.prototype._create",7,7,7,7,1],"388":["$.mobile.page.prototype.keepNativeSelector",0,0,0,0,6],"389":["$.mobile.page.prototype._createWidget",380,380,380,380,1],"390":["$.mobile.page.prototype._getCreateOptions",12,12,12,12,1],"392":["$.mobile.page.prototype._init",0,0,0,0,2],"395":["$.mobile.page.prototype.option",0,0,0,0,1],"396":["$.mobile.page.prototype._setOptions",0,0,0,0,1],"400":["$.mobile.page.prototype._trigger",5,351,96,672,7],"419":["$.mobile.selectmenu.prototype.enhanceWithin",5,5,5,5,1],"433":["$.mobile.slider.prototype.enhanceWithin",5,5,5,5,1],"446":["$.mobile.textinput.prototype.enhanceWithin",6,6,6,6,1]},"calls":{"916":["1",0,"915"],"956":["1",0,"953"],"959":["1",1,"952"],"1043":["1",9,"1042",["1044","1046","1047","1049","1050","1052","1053","1055","1056","1058","1059","1062","1081","1084","1097","1100","1107","1110","1126","1129","1136","1138","1139","1141","1142","1144"]],"1062":["1",1,"1043",["1063","1065","1066","1068","1069","1071","1072","1074","1075","1077","1078","1080"]],"1084":["1",1,"1043",["1085","1087","1088","1090","1091","1093","1094","1096"]],"1100":["1",0,"1043",["1101","1103","1104","1106"]],"1110":["1",1,"1043",["1111","1113","1114","1116","1117","1119","1120","1122","1123","1125"]],"1129":["1",1,"1043",["1130","1132","1133","1135"]],"1145":["1",1,"1042",["1146","1148","1149","1151","1152","1154","1155","1157"]],"1161":["1",0,"1158"],"1529":["1",2,"1445",["1530","1532","1533","1535","1536","1539","1546","1548","1549","1551","1552","1554"]],"1539":["1",1,"1529",["1540","1542","1543","1545"]],"2057":["1",3,"1952",["2058","2060","2061","2063","2064","2066","2067","2069","2070","2072","2073","2075","2076","2078","2079","2081","2082","2084","2085","2087","2088","2090","2091","2093"]],"2325":["1",0,"2306"],"2435":["1",0,"2416"],"2545":["1",0,"2526"],"2655":["1",0,"2636"],"2765":["1",0,"2746"],"2875":["1",0,"2856"],"3978":["1",0,"3915"],"4200":["1",1,"4199"],"4546":["1",0,"4543"],"34":["6",0,"33",["35"]],"50":["6",1,"49",["51"]],"68":["6",0,"67",["69"]],"110":["6",0,"109",["111"]],"174":["6",1,"173",["175"]],"178":["6",0,"177",["179"]],"230":["6",0,"229",["231"]],"294":["6",0,"293",["295"]],"298":["6",0,"297",["299"]],"350":["6",0,"349",["351"]],"414":["6",0,"413",["415"]],"418":["6",0,"417",["419"]],"470":["6",0,"469",["471"]],"536":["6",0,"535",["537"]],"546":["6",0,"545",["547"]],"559":["6",0,"558",["560"]],"570":["6",0,"569",["571"]],"621":["6",0,"620",["622"]],"625":["6",0,"624",["626"]],"686":["6",1,"685",["687"]],"690":["6",0,"689",["691"]],"751":["6",0,"750",["752"]],"755":["6",0,"754",["756"]],"809":["6",0,"808",["810"]],"813":["6",1,"812",["814"]],"847":["6",0,"846",["848"]],"922":["6",0,"921",["923"]],"961":["6",0,"960",["962"]],"1000":["6",1,"999",["1001"]],"1009":["6",1,"1008",["1010"]],"1170":["6",0,"1169",["1171"]],"1190":["6",0,"1189",["1191"]],"1198":["6",1,"1197",["1199"]],"1218":["6",0,"1217",["1219"]],"1224":["6",0,"1223",["1225"]],"1229":["6",0,"1228",["1230"]],"1247":["6",0,"1246",["1248"]],"1277":["6",0,"1276",["1278"]],"1283":["6",1,"1282",["1284"]],"1292":["6",0,"1291",["1293"]],"1303":["6",0,"1302",["1304"]],"1318":["6",1,"1317",["1319"]],"1324":["6",1,"1323",["1325"]],"1329":["6",1,"1328",["1330"]],"1345":["6",0,"1344",["1346"]],"1353":["6",0,"1352",["1354"]],"1384":["6",0,"1383",["1385"]],"1398":["6",0,"1397",["1399"]],"1404":["6",1,"1403",["1405"]],"1410":["6",0,"1409",["1411"]],"1421":["6",0,"1420",["1422"]],"1440":["6",0,"1439",["1441"]],"1567":["6",0,"1566",["1568"]],"1604":["6",0,"1560",["1605"]],"1608":["6",0,"1607",["1609"]],"1613":["6",0,"1612",["1614"]],"1623":["6",0,"1622",["1624"]],"1695":["6",0,"1694",["1696"]],"1707":["6",0,"1706",["1708"]],"1757":["6",0,"1756",["1758"]],"1782":["6",0,"1781",["1783"]],"1785":["6",0,"1784",["1786"]],"1790":["6",0,"1789",["1791"]],"1812":["6",0,"1811",["1813"]],"1822":["6",0,"1821",["1823"]],"1834":["6",0,"1833",["1835"]],"1839":["6",1,"1838",["1840"]],"1844":["6",0,"1843",["1845"]],"1849":["6",0,"1848",["1850"]],"1872":["6",0,"1871",["1873"]],"1875":["6",0,"1874",["1876"]],"1880":["6",0,"1879",["1881"]],"1901":["6",0,"1900",["1902"]],"1916":["6",1,"1915",["1917"]],"1932":["6",0,"1931",["1933"]],"1948":["6",0,"1947",["1949"]],"2100":["6",0,"2099",["2101"]],"2104":["6",0,"2103",["2105"]],"2108":["6",1,"2107",["2109"]],"2168":["6",0,"2167",["2169"]],"2176":["6",0,"2175",["2177"]],"2181":["6",0,"2180",["2182"]],"2250":["6",0,"2249",["2251"]],"2276":["6",0,"2275",["2277"]],"2328":["6",1,"2327",["2329"]],"2333":["6",0,"2332",["2334"]],"2340":["6",1,"2339",["2341"]],"2349":["6",0,"2348",["2350"]],"2360":["6",0,"2359",["2361"]],"2385":["6",0,"2384",["2386"]],"2438":["6",0,"2437",["2439"]],"2443":["6",1,"2442",["2444"]],"2450":["6",0,"2449",["2451"]],"2459":["6",1,"2458",["2460"]],"2470":["6",0,"2469",["2471"]],"2495":["6",0,"2494",["2496"]],"2548":["6",0,"2547",["2549"]],"2553":["6",0,"2552",["2554"]],"2560":["6",0,"2559",["2561"]],"2569":["6",0,"2568",["2570"]],"2580":["6",0,"2579",["2581"]],"2605":["6",0,"2604",["2606"]],"2658":["6",0,"2657",["2659"]],"2663":["6",0,"2662",["2664"]],"2670":["6",1,"2669",["2671"]],"2679":["6",0,"2678",["2680"]],"2690":["6",0,"2689",["2691"]],"2715":["6",0,"2714",["2716"]],"2768":["6",0,"2767",["2769"]],"2773":["6",0,"2772",["2774"]],"2780":["6",0,"2779",["2781"]],"2789":["6",0,"2788",["2790"]],"2800":["6",1,"2799",["2801"]],"2825":["6",1,"2824",["2826"]],"2878":["6",0,"2877",["2879"]],"2883":["6",0,"2882",["2884"]],"2890":["6",0,"2889",["2891"]],"2899":["6",0,"2898",["2900"]],"2910":["6",0,"2909",["2911"]],"2935":["6",1,"2934",["2936"]],"2948":["6",1,"2947",["2949"]],"2960":["6",1,"2959",["2961"]],"2973":["6",0,"2972",["2974"]],"2986":["6",0,"2985",["2987"]],"2996":["6",0,"2995",["2997"]],"3316":["6",0,"3315",["3317"]],"3360":["6",0,"3359",["3361"]],"3383":["6",0,"3382",["3384"]],"3395":["6",0,"3394",["3396"]],"3418":["6",1,"3417",["3419"]],"3431":["6",0,"3430",["3432"]],"3443":["6",0,"3442",["3444"]],"3453":["6",0,"3452",["3454"]],"3463":["6",0,"3462",["3464"]],"3498":["6",5,"3497",["3499"]],"3512":["6",1,"3511",["3513"]],"3522":["6",1,"3521",["3523"]],"3531":["6",0,"3530",["3532"]],"3610":["6",0,"3524",["3611"]],"3620":["6",0,"3619",["3621"]],"3668":["6",0,"3613",["3669"]],"3685":["6",0,"3684",["3686"]],"3713":["6",1,"3712",["3714"]],"3726":["6",0,"3725",["3727"]],"3754":["6",0,"3753",["3755"]],"3767":["6",0,"3766",["3768"]],"3795":["6",0,"3794",["3796"]],"3808":["6",0,"3807",["3809"]],"3836":["6",0,"3835",["3837"]],"3849":["6",0,"3848",["3850"]],"3877":["6",0,"3876",["3878"]],"3890":["6",0,"3889",["3891"]],"3904":["6",0,"3903",["3905"]],"3989":["6",0,"3988",["3990"]],"3996":["6",0,"3995",["3997"]],"4000":["6",0,"3999",["4001"]],"4006":["6",0,"4005",["4007"]],"4015":["6",0,"4014",["4016"]],"4021":["6",0,"4020",["4022"]],"4026":["6",0,"4025",["4027"]],"4033":["6",0,"4032",["4034"]],"4055":["6",0,"4054",["4056"]],"4067":["6",1,"4066",["4068"]],"4085":["6",0,"4084",["4086"]],"4107":["6",0,"1616",["4108"]],"4117":["6",0,"4116",["4118"]],"4154":["6",0,"4110",["4155"]],"4161":["6",0,"4160",["4162"]],"4167":["6",0,"4166",["4168"]],"4206":["6",0,"4205",["4207"]],"4256":["6",0,"4255",["4257"]],"4286":["6",0,"4285",["4287"]],"4352":["6",0,"4351",["4353"]],"4356":["6",0,"4355",["4357"]],"4381":["6",0,"4380",["4382"]],"4387":["6",0,"4386",["4388"]],"4401":["6",0,"4400",["4402"]],"4438":["6",0,"4394",["4439"]],"4441":["6",0,"4440",["4442"]],"4446":["6",0,"4445",["4447"]],"4461":["6",0,"4460",["4462"]],"4535":["6",0,"4454",["4536"]],"4539":["6",0,"4538",["4540"]],"4551":["6",1,"4550",["4552"]],"4564":["6",0,"4563",["4565"]],"4568":["6",0,"4567",["4569"]],"4572":["6",0,"4571",["4573"]],"4585":["6",0,"4584",["4586"]],"4604":["6",0,"4603",["4605"]],"4612":["6",0,"4611",["4613"]],"4632":["6",1,"4631",["4633"]],"4638":["6",0,"4637",["4639"]],"4643":["6",0,"4642",["4644"]],"4663":["6",0,"4662",["4664"]],"4695":["6",1,"4694",["4696"]],"4711":["6",0,"4710",["4712"]],"4716":["6",0,"4715",["4717"]],"4726":["6",0,"4725",["4727"]],"4730":["6",1,"4729",["4731"]],"4735":["6",0,"4734",["4736"]],"4751":["6",0,"4750",["4752"]],"4804":["6",0,"4803",["4805"]],"4809":["6",1,"4808",["4810"]],"4824":["6",0,"4823",["4825"]],"4861":["6",0,"4817",["4862"]],"4874":["6",0,"4873",["4875"]],"4935":["6",0,"4934",["4936"]],"4948":["6",0,"4947",["4949"]],"4963":["6",1,"4962",["4964"]],"4969":["6",0,"4968",["4970"]],"4974":["6",1,"4973",["4975"]],"4987":["6",0,"4867",["4988"]],"5002":["6",0,"5001",["5003"]],"5006":["6",0,"5005",["5007"]],"5012":["6",0,"5011",["5013"]],"31":["7",0,"28"],"41":["7",0,"40"],"46":["7",0,"43"],"65":["7",1,"62"],"526":["7",0,"525"],"534":["7",0,"531"],"544":["7",0,"541"],"554":["7",0,"551"],"565":["7",0,"562"],"827":["7",0,"826"],"832":["7",0,"829"],"854":["7",0,"853"],"865":["7",0,"862"],"968":["7",0,"967"],"973":["7",0,"970"],"994":["7",0,"991"],"1046":["7",0,"1043"],"1049":["7",0,"1043"],"1052":["7",0,"1043"],"1055":["7",0,"1043"],"1058":["7",0,"1043"],"1065":["7",0,"1062"],"1068":["7",0,"1062"],"1071":["7",0,"1062"],"1074":["7",0,"1062"],"1077":["7",0,"1062"],"1080":["7",0,"1062"],"1087":["7",0,"1084"],"1090":["7",0,"1084"],"1093":["7",0,"1084"],"1096":["7",1,"1084"],"1103":["7",0,"1100"],"1106":["7",0,"1100"],"1113":["7",0,"1110"],"1116":["7",0,"1110"],"1119":["7",1,"1110"],"1122":["7",0,"1110"],"1125":["7",0,"1110"],"1132":["7",0,"1129"],"1135":["7",0,"1129"],"1138":["7",0,"1043"],"1141":["7",0,"1043"],"1144":["7",0,"1043"],"1148":["7",0,"1145"],"1151":["7",0,"1145"],"1154":["7",1,"1145"],"1157":["7",0,"1145"],"1213":["7",0,"1210"],"1244":["7",0,"1241"],"1257":["7",0,"1254"],"1267":["7",0,"1264"],"1272":["7",0,"1269"],"1314":["7",0,"1311"],"1342":["7",1,"1339"],"1362":["7",0,"1359"],"1372":["7",0,"1369"],"1432":["7",0,"1429"],"1532":["7",0,"1529"],"1535":["7",0,"1529"],"1542":["7",0,"1539"],"1545":["7",0,"1539"],"1548":["7",0,"1529"],"1551":["7",0,"1529"],"1554":["7",0,"1529"],"1674":["7",0,"1673"],"1679":["7",0,"1676"],"1689":["7",0,"1686"],"1704":["7",0,"1701"],"1714":["7",0,"1713"],"1751":["7",0,"1748"],"1802":["7",0,"1799"],"1810":["7",0,"1807"],"1820":["7",0,"1817"],"1832":["7",0,"1829"],"1894":["7",0,"1891"],"1910":["7",0,"1907"],"1925":["7",0,"1922"],"1941":["7",0,"1938"],"2060":["7",0,"2057"],"2063":["7",0,"2057"],"2066":["7",0,"2057"],"2069":["7",0,"2057"],"2072":["7",0,"2057"],"2075":["7",0,"2057"],"2078":["7",0,"2057"],"2081":["7",0,"2057"],"2084":["7",0,"2057"],"2087":["7",0,"2057"],"2090":["7",0,"2057"],"2093":["7",0,"2057"],"2113":["7",0,"2112"],"2120":["7",0,"2117"],"2123":["7",0,"2122"],"2130":["7",0,"2127"],"2150":["7",0,"2147"],"2162":["7",0,"2159"],"2216":["7",0,"2213"],"2222":["7",0,"2219"],"2237":["7",0,"2234"],"2262":["7",0,"2259"],"2274":["7",0,"2271"],"2284":["7",0,"2281"],"2299":["7",0,"2296"],"2312":["7",0,"2309"],"2358":["7",0,"2355"],"2370":["7",0,"2367"],"2383":["7",0,"2380"],"2394":["7",0,"2391"],"2409":["7",0,"2406"],"2422":["7",0,"2419"],"2468":["7",0,"2465"],"2480":["7",0,"2477"],"2493":["7",0,"2490"],"2504":["7",0,"2501"],"2519":["7",0,"2516"],"2532":["7",0,"2529"],"2578":["7",0,"2575"],"2590":["7",0,"2587"],"2603":["7",0,"2600"],"2614":["7",0,"2611"],"2629":["7",0,"2626"],"2642":["7",0,"2639"],"2688":["7",0,"2685"],"2700":["7",0,"2697"],"2713":["7",0,"2710"],"2724":["7",0,"2721"],"2739":["7",0,"2736"],"2752":["7",0,"2749"],"2798":["7",0,"2795"],"2810":["7",0,"2807"],"2823":["7",0,"2820"],"2834":["7",0,"2831"],"2849":["7",0,"2846"],"2862":["7",0,"2859"],"2908":["7",0,"2905"],"2920":["7",0,"2917"],"2933":["7",0,"2930"],"2943":["7",0,"2940"],"2955":["7",0,"2952"],"2967":["7",0,"2964"],"2980":["7",0,"2977"],"3002":["7",0,"2999"],"3018":["7",0,"3015"],"3024":["7",0,"3021"],"3033":["7",0,"3030"],"3040":["7",0,"3037"],"3046":["7",0,"3043"],"3055":["7",0,"3052"],"3062":["7",0,"3059"],"3068":["7",0,"3065"],"3077":["7",0,"3074"],"3084":["7",0,"3081"],"3090":["7",0,"3087"],"3099":["7",0,"3096"],"3106":["7",0,"3103"],"3112":["7",0,"3109"],"3121":["7",0,"3118"],"3128":["7",0,"3125"],"3134":["7",0,"3131"],"3143":["7",0,"3140"],"3150":["7",0,"3147"],"3156":["7",0,"3153"],"3165":["7",0,"3162"],"3172":["7",0,"3169"],"3178":["7",0,"3175"],"3187":["7",0,"3184"],"3194":["7",0,"3191"],"3200":["7",0,"3197"],"3209":["7",0,"3206"],"3216":["7",0,"3213"],"3222":["7",0,"3219"],"3231":["7",0,"3228"],"3238":["7",0,"3235"],"3244":["7",0,"3241"],"3253":["7",0,"3250"],"3260":["7",0,"3257"],"3266":["7",0,"3263"],"3275":["7",0,"3272"],"3282":["7",0,"3279"],"3288":["7",0,"3285"],"3297":["7",0,"3294"],"3304":["7",0,"3301"],"3314":["7",0,"3311"],"3324":["7",0,"3321"],"3330":["7",0,"3327"],"3358":["7",0,"3355"],"3381":["7",0,"3378"],"3390":["7",0,"3387"],"3404":["7",0,"3401"],"3416":["7",0,"3413"],"3426":["7",0,"3423"],"3438":["7",0,"3435"],"3451":["7",0,"3448"],"3461":["7",0,"3458"],"3470":["7",0,"3467"],"3486":["7",0,"3483"],"3491":["7",0,"3488"],"3505":["7",0,"3502"],"3520":["7",0,"3517"],"3575":["7",0,"3574"],"3680":["7",0,"3677"],"3690":["7",0,"3689"],"3695":["7",0,"3692"],"3708":["7",0,"3705"],"3722":["7",0,"3719"],"3731":["7",0,"3730"],"3736":["7",0,"3733"],"3749":["7",0,"3746"],"3763":["7",0,"3760"],"3772":["7",0,"3771"],"3777":["7",0,"3774"],"3790":["7",0,"3787"],"3804":["7",0,"3801"],"3813":["7",0,"3812"],"3818":["7",1,"3815"],"3831":["7",0,"3828"],"3845":["7",0,"3842"],"3854":["7",0,"3853"],"3859":["7",0,"3856"],"3872":["7",0,"3869"],"3886":["7",0,"3883"],"3899":["7",0,"3896"],"3914":["7",0,"3911"],"3921":["7",0,"3918"],"4048":["7",1,"4045"],"4062":["7",0,"4059"],"4083":["7",0,"4080"],"4094":["7",0,"4091"],"4271":["7",0,"4268"],"4281":["7",0,"4278"],"4494":["7",0,"4493"],"4512":["7",0,"4509"],"4522":["7",0,"4519"],"4562":["7",0,"4559"],"4627":["7",0,"4624"],"4660":["7",0,"4657"],"4692":["7",0,"4689"],"4709":["7",0,"4706"],"4724":["7",0,"4721"],"4743":["7",0,"4740"],"4907":["7",0,"4906"],"4932":["7",0,"4929"],"4942":["7",0,"4939"],"4958":["7",0,"4955"],"4990":["7",0,"4989"],"5000":["7",0,"4997"],"54":["8",0,"52"],"851":["8",0,"849"],"965":["8",0,"963"],"1061":["8",0,"1059"],"1083":["8",0,"1081"],"1099":["8",0,"1097"],"1109":["8",0,"1107"],"1128":["8",0,"1126"],"1174":["8",0,"1172"],"1194":["8",0,"1192"],"1222":["8",0,"1220"],"1226":["8",0,"1223"],"1296":["8",0,"1294"],"1316":["8",0,"1315"],"1320":["8",0,"1317"],"1414":["8",0,"1412"],"1538":["8",0,"1536"],"2172":["8",1,"2170"],"2266":["8",0,"2264"],"2374":["8",0,"2372"],"2484":["8",0,"2482"],"2594":["8",0,"2592"],"2704":["8",0,"2702"],"2814":["8",0,"2812"],"2924":["8",0,"2922"],"3009":["8",0,"3007"],"3349":["8",0,"3347"],"3408":["8",0,"3406"],"3477":["8",0,"3475"],"3993":["8",0,"3991"],"4385":["8",1,"4383"],"4389":["8",0,"4386"],"4443":["8",0,"4440"],"4555":["8",0,"4553"],"4589":["8",1,"4587"],"4608":["8",0,"4606"],"4636":["8",0,"4634"],"4640":["8",0,"4637"],"4700":["8",0,"4698"],"4732":["8",0,"4729"],"4806":["8",0,"4803"],"4967":["8",0,"4965"],"4971":["8",0,"4968"],"1766":["9",0,"1762"],"1777":["9",0,"1772"],"1860":["9",0,"1856"],"1973":["9",0,"1968"],"2138":["9",0,"2133"],"2190":["9",0,"2185"],"2244":["9",0,"2240"],"3928":["9",0,"3924"],"3939":["9",0,"3934"],"4249":["9",0,"4244"],"35":["10",0,"34"],"51":["10",0,"50"],"53":["10",0,"52"],"69":["10",0,"68"],"111":["10",0,"110"],"175":["10",0,"174"],"179":["10",0,"178"],"231":["10",0,"230"],"295":["10",0,"294"],"299":["10",0,"298"],"351":["10",0,"350"],"415":["10",0,"414"],"419":["10",0,"418"],"471":["10",0,"470"],"523":["10",0,"469"],"537":["10",0,"536"],"547":["10",0,"546"],"560":["10",0,"559"],"571":["10",0,"570"],"622":["10",0,"621"],"626":["10",0,"625"],"687":["10",0,"686"],"691":["10",0,"690"],"752":["10",0,"751"],"756":["10",0,"755"],"810":["10",0,"809"],"814":["10",1,"813"],"848":["10",0,"847"],"850":["10",0,"849"],"872":["10",0,null],"877":["10",0,null],"878":["10",0,null],"879":["10",0,null],"889":["10",0,null],"923":["10",0,"922"],"925":["10",0,"924"],"957":["10",0,"953"],"958":["10",0,"953"],"962":["10",0,"961"],"964":["10",0,"963"],"980":["10",0,"952"],"981":["10",0,"952"],"982":["10",0,"952"],"983":["10",0,"952"],"984":["10",0,"952"],"985":["10",0,"952"],"995":["10",0,"952"],"996":["10",0,"952"],"997":["10",0,"952"],"1001":["10",1,"1000"],"1010":["10",0,"1009"],"1012":["10",0,"1011"],"1039":["10",1,"952"],"1040":["10",0,"952"],"1045":["10",0,"1044"],"1048":["10",0,"1047"],"1051":["10",0,"1050"],"1054":["10",0,"1053"],"1057":["10",0,"1056"],"1060":["10",0,"1059"],"1064":["10",0,"1063"],"1067":["10",0,"1066"],"1070":["10",0,"1069"],"1073":["10",0,"1072"],"1076":["10",0,"1075"],"1079":["10",0,"1078"],"1082":["10",0,"1081"],"1086":["10",0,"1085"],"1089":["10",0,"1088"],"1092":["10",0,"1091"],"1095":["10",0,"1094"],"1098":["10",0,"1097"],"1102":["10",0,"1101"],"1105":["10",0,"1104"],"1108":["10",0,"1107"],"1112":["10",0,"1111"],"1115":["10",0,"1114"],"1118":["10",0,"1117"],"1121":["10",0,"1120"],"1124":["10",0,"1123"],"1127":["10",0,"1126"],"1131":["10",0,"1130"],"1134":["10",0,"1133"],"1137":["10",0,"1136"],"1140":["10",0,"1139"],"1143":["10",0,"1142"],"1147":["10",0,"1146"],"1150":["10",0,"1149"],"1153":["10",0,"1152"],"1156":["10",0,"1155"],"1162":["10",0,"1158"],"1163":["10",0,"1158"],"1166":["10",0,"1041"],"1167":["10",0,"1041"],"1168":["10",0,"1041"],"1171":["10",0,"1170"],"1173":["10",0,"1172"],"1181":["10",0,"915"],"1182":["10",0,"915"],"1191":["10",0,"1190"],"1193":["10",0,"1192"],"1199":["10",0,"1198"],"1219":["10",0,"1218"],"1221":["10",1,"1220"],"1225":["10",0,"1224"],"1230":["10",0,"1229"],"1248":["10",0,"1247"],"1278":["10",0,"1277"],"1284":["10",1,"1283"],"1293":["10",0,"1292"],"1295":["10",0,"1294"],"1304":["10",0,"1303"],"1319":["10",0,"1318"],"1325":["10",0,"1324"],"1330":["10",0,"1329"],"1346":["10",0,"1345"],"1350":["10",0,null],"1354":["10",0,"1353"],"1385":["10",0,"1384"],"1392":["10",0,null],"1393":["10",0,null],"1394":["10",0,null],"1395":["10",1,null],"1399":["10",0,"1398"],"1405":["10",1,"1404"],"1411":["10",0,"1410"],"1413":["10",0,"1412"],"1422":["10",0,"1421"],"1441":["10",0,"1440"],"1531":["10",0,"1530"],"1534":["10",0,"1533"],"1537":["10",0,"1536"],"1541":["10",0,"1540"],"1544":["10",0,"1543"],"1547":["10",0,"1546"],"1550":["10",0,"1549"],"1553":["10",0,"1552"],"1568":["10",0,"1567"],"1570":["10",0,"1569"],"1605":["10",0,"1604"],"1609":["10",0,"1608"],"1614":["10",0,"1613"],"1624":["10",0,"1623"],"1626":["10",0,"1625"],"1696":["10",0,"1695"],"1708":["10",0,"1707"],"1758":["10",0,"1757"],"1783":["10",0,"1782"],"1786":["10",0,"1785"],"1791":["10",0,"1790"],"1813":["10",0,"1812"],"1823":["10",0,"1822"],"1835":["10",0,"1834"],"1840":["10",1,"1839"],"1845":["10",0,"1844"],"1850":["10",0,"1849"],"1873":["10",0,"1872"],"1876":["10",0,"1875"],"1881":["10",0,"1880"],"1902":["10",0,"1901"],"1917":["10",0,"1916"],"1933":["10",0,"1932"],"1949":["10",0,"1948"],"2059":["10",0,"2058"],"2062":["10",0,"2061"],"2065":["10",0,"2064"],"2068":["10",0,"2067"],"2071":["10",0,"2070"],"2074":["10",0,"2073"],"2077":["10",1,"2076"],"2080":["10",0,"2079"],"2083":["10",0,"2082"],"2086":["10",0,"2085"],"2089":["10",0,"2088"],"2092":["10",0,"2091"],"2101":["10",0,"2100"],"2105":["10",0,"2104"],"2109":["10",0,"2108"],"2169":["10",0,"2168"],"2171":["10",0,"2170"],"2177":["10",0,"2176"],"2182":["10",0,"2181"],"2251":["10",0,"2250"],"2265":["10",0,"2264"],"2277":["10",0,"2276"],"2329":["10",1,"2328"],"2334":["10",0,"2333"],"2341":["10",0,"2340"],"2350":["10",0,"2349"],"2361":["10",0,"2360"],"2373":["10",0,"2372"],"2386":["10",0,"2385"],"2439":["10",0,"2438"],"2444":["10",0,"2443"],"2451":["10",0,"2450"],"2460":["10",0,"2459"],"2471":["10",0,"2470"],"2483":["10",0,"2482"],"2496":["10",0,"2495"],"2549":["10",0,"2548"],"2554":["10",0,"2553"],"2561":["10",0,"2560"],"2570":["10",0,"2569"],"2581":["10",0,"2580"],"2593":["10",0,"2592"],"2606":["10",0,"2605"],"2659":["10",0,"2658"],"2664":["10",0,"2663"],"2671":["10",0,"2670"],"2680":["10",0,"2679"],"2691":["10",0,"2690"],"2703":["10",0,"2702"],"2716":["10",0,"2715"],"2769":["10",0,"2768"],"2774":["10",0,"2773"],"2781":["10",0,"2780"],"2790":["10",0,"2789"],"2801":["10",0,"2800"],"2813":["10",0,"2812"],"2826":["10",1,"2825"],"2879":["10",0,"2878"],"2884":["10",0,"2883"],"2891":["10",0,"2890"],"2900":["10",0,"2899"],"2911":["10",0,"2910"],"2923":["10",0,"2922"],"2936":["10",1,"2935"],"2949":["10",0,"2948"],"2961":["10",1,"2960"],"2974":["10",0,"2973"],"2987":["10",0,"2986"],"2997":["10",0,"2996"],"3008":["10",0,"3007"],"3317":["10",0,"3316"],"3348":["10",0,"3347"],"3361":["10",0,"3360"],"3384":["10",0,"3383"],"3396":["10",0,"3395"],"3407":["10",0,"3406"],"3419":["10",1,"3418"],"3432":["10",0,"3431"],"3444":["10",0,"3443"],"3454":["10",0,"3453"],"3464":["10",0,"3463"],"3476":["10",0,"3475"],"3499":["10",0,"3498"],"3513":["10",0,"3512"],"3523":["10",1,"3522"],"3532":["10",0,"3531"],"3534":["10",0,"3533"],"3611":["10",0,"3610"],"3621":["10",0,"3620"],"3623":["10",0,"3622"],"3669":["10",0,"3668"],"3686":["10",0,"3685"],"3714":["10",0,"3713"],"3727":["10",0,"3726"],"3755":["10",0,"3754"],"3768":["10",0,"3767"],"3796":["10",0,"3795"],"3809":["10",0,"3808"],"3837":["10",0,"3836"],"3850":["10",0,"3849"],"3878":["10",0,"3877"],"3891":["10",0,"3890"],"3905":["10",0,"3904"],"3990":["10",0,"3989"],"3992":["10",0,"3991"],"3997":["10",0,"3996"],"4001":["10",0,"4000"],"4007":["10",0,"4006"],"4016":["10",0,"4015"],"4022":["10",0,"4021"],"4027":["10",0,"4026"],"4034":["10",0,"4033"],"4056":["10",0,"4055"],"4068":["10",1,"4067"],"4086":["10",0,"4085"],"4108":["10",0,"4107"],"4118":["10",0,"4117"],"4120":["10",0,"4119"],"4155":["10",0,"4154"],"4162":["10",0,"4161"],"4168":["10",0,"4167"],"4172":["10",0,"4171"],"4207":["10",0,"4206"],"4209":["10",0,"4208"],"4257":["10",0,"4256"],"4287":["10",0,"4286"],"4353":["10",0,"4352"],"4357":["10",0,"4356"],"4382":["10",0,"4381"],"4384":["10",0,"4383"],"4388":["10",0,"4387"],"4402":["10",0,"4401"],"4404":["10",0,"4403"],"4439":["10",0,"4438"],"4442":["10",0,"4441"],"4447":["10",0,"4446"],"4462":["10",0,"4461"],"4464":["10",0,"4463"],"4536":["10",0,"4535"],"4540":["10",0,"4539"],"4547":["10",0,"4543"],"4548":["10",0,"4543"],"4552":["10",0,"4551"],"4554":["10",0,"4553"],"4565":["10",0,"4564"],"4569":["10",0,"4568"],"4573":["10",0,"4572"],"4575":["10",0,"4199"],"4576":["10",0,"4199"],"4577":["10",0,null],"4586":["10",0,"4585"],"4588":["10",0,"4587"],"4605":["10",0,"4604"],"4607":["10",0,"4606"],"4613":["10",0,"4612"],"4633":["10",0,"4632"],"4635":["10",0,"4634"],"4639":["10",0,"4638"],"4644":["10",0,"4643"],"4664":["10",0,"4663"],"4696":["10",1,"4695"],"4699":["10",0,"4698"],"4712":["10",0,"4711"],"4717":["10",0,"4716"],"4727":["10",0,"4726"],"4731":["10",1,"4730"],"4736":["10",0,"4735"],"4752":["10",0,"4751"],"4802":["10",0,"4801"],"4805":["10",0,"4804"],"4810":["10",0,"4809"],"4825":["10",0,"4824"],"4827":["10",0,"4826"],"4862":["10",0,"4861"],"4875":["10",0,"4874"],"4877":["10",0,"4876"],"4936":["10",0,"4935"],"4949":["10",0,"4948"],"4964":["10",1,"4963"],"4966":["10",118,"4965"],"4970":["10",0,"4969"],"4975":["10",0,"4974"],"4988":["10",0,"4987"],"5003":["10",0,"5002"],"5007":["10",0,"5006"],"5013":["10",0,"5012"],"5017":["10",0,"5016"],"1044":["11",0,"1043",["1045"]],"1047":["11",0,"1043",["1048"]],"1050":["11",0,"1043",["1051"]],"1053":["11",0,"1043",["1054"]],"1056":["11",0,"1043",["1057"]],"1059":["11",1,"1043",["1060","1061"]],"1063":["11",0,"1062",["1064"]],"1066":["11",0,"1062",["1067"]],"1069":["11",0,"1062",["1070"]],"1072":["11",1,"1062",["1073"]],"1075":["11",0,"1062",["1076"]],"1078":["11",0,"1062",["1079"]],"1081":["11",0,"1043",["1082","1083"]],"1085":["11",0,"1084",["1086"]],"1088":["11",0,"1084",["1089"]],"1091":["11",0,"1084",["1092"]],"1094":["11",0,"1084",["1095"]],"1097":["11",0,"1043",["1098","1099"]],"1101":["11",0,"1100",["1102"]],"1104":["11",0,"1100",["1105"]],"1107":["11",1,"1043",["1108","1109"]],"1111":["11",0,"1110",["1112"]],"1114":["11",0,"1110",["1115"]],"1117":["11",0,"1110",["1118"]],"1120":["11",0,"1110",["1121"]],"1123":["11",0,"1110",["1124"]],"1126":["11",0,"1043",["1127","1128"]],"1130":["11",1,"1129",["1131"]],"1133":["11",0,"1129",["1134"]],"1136":["11",0,"1043",["1137"]],"1139":["11",0,"1043",["1140"]],"1142":["11",1,"1043",["1143"]],"1146":["11",0,"1145",["1147"]],"1149":["11",0,"1145",["1150"]],"1152":["11",0,"1145",["1153"]],"1155":["11",0,"1145",["1156"]],"1348":["11",0,"1347"],"1530":["11",0,"1529",["1531"]],"1533":["11",0,"1529",["1534"]],"1536":["11",0,"1529",["1537","1538"]],"1540":["11",0,"1539",["1541"]],"1543":["11",0,"1539",["1544"]],"1546":["11",0,"1529",["1547"]],"1549":["11",0,"1529",["1550"]],"1552":["11",0,"1529",["1553"]],"2058":["11",0,"2057",["2059"]],"2061":["11",0,"2057",["2062"]],"2064":["11",0,"2057",["2065"]],"2067":["11",1,"2057",["2068"]],"2070":["11",0,"2057",["2071"]],"2073":["11",0,"2057",["2074"]],"2076":["11",1,"2057",["2077"]],"2079":["11",0,"2057",["2080"]],"2082":["11",0,"2057",["2083"]],"2085":["11",0,"2057",["2086"]],"2088":["11",1,"2057",["2089"]],"2091":["11",0,"2057",["2092"]],"3986":["11",0,"3985"],"1640":["12",0,"1634"],"4595":["12",0,"4590"],"5029":["12",0,"5024"],"5052":["12",0,"5046"],"86":["18",0,"84"],"89":["18",0,"87"],"92":["18",0,"90"],"95":["18",0,"93"],"98":["18",0,"96"],"206":["18",0,"204"],"209":["18",0,"207"],"212":["18",0,"210"],"215":["18",0,"213"],"218":["18",0,"216"],"326":["18",0,"324"],"329":["18",0,"327"],"332":["18",0,"330"],"335":["18",0,"333"],"338":["18",0,"336"],"446":["18",1,"444"],"449":["18",0,"447"],"452":["18",0,"450"],"455":["18",1,"453"],"458":["18",0,"456"],"892":["18",0,"891"],"899":["18",0,"898"],"906":["18",0,"905"],"1232":["18",0,"1231"],"1327":["18",0,"1326"],"1390":["18",0,"1388"],"1444":["18",0,"1442"],"1448":["18",0,"1446"],"1458":["18",0,"1456"],"1465":["18",0,"1463"],"1472":["18",0,"1470"],"1479":["18",0,"1477"],"1486":["18",0,"1484"],"1493":["18",0,"1491"],"1500":["18",0,"1498"],"1507":["18",0,"1505"],"1514":["18",0,"1512"],"1521":["18",0,"1519"],"1528":["18",0,"1526"],"1769":["18",0,"1767"],"1776":["18",0,"1774"],"1780":["18",0,"1778"],"1863":["18",0,"1861"],"1870":["18",0,"1868"],"1955":["18",0,"1953"],"1965":["18",0,"1963"],"1972":["18",0,"1970"],"1976":["18",0,"1974"],"1983":["18",0,"1981"],"1990":["18",0,"1988"],"1997":["18",0,"1995"],"2004":["18",0,"2002"],"2011":["18",0,"2009"],"2018":["18",0,"2016"],"2021":["18",0,"2019"],"2028":["18",0,"2026"],"2035":["18",0,"2033"],"2042":["18",0,"2040"],"2049":["18",0,"2047"],"2056":["18",0,"2054"],"2137":["18",0,"2135"],"2141":["18",0,"2139"],"2189":["18",0,"2187"],"2193":["18",0,"2191"],"2200":["18",0,"2198"],"2207":["18",0,"2205"],"2247":["18",0,"2245"],"2346":["18",0,"2344"],"2456":["18",0,"2454"],"2566":["18",0,"2564"],"2676":["18",0,"2674"],"2786":["18",0,"2784"],"2896":["18",0,"2894"],"2994":["18",0,"2992"],"3672":["18",0,"3670"],"3931":["18",0,"3929"],"3938":["18",0,"3936"],"3942":["18",0,"3940"],"3949":["18",0,"3947"],"3956":["18",0,"3954"],"3963":["18",0,"3961"],"3970":["18",0,"3968"],"3977":["18",0,"3975"],"4039":["18",0,"4037"],"4158":["18",0,"4156"],"4248":["18",0,"4246"],"4252":["18",0,"4250"],"4449":["18",0,"4448"],"4646":["18",0,"4645"],"4648":["18",0,"4647"],"4738":["18",0,"4737"],"4812":["18",0,"4811"],"4977":["18",0,"4976"],"1287":["19",0,"1286"],"1288":["19",0,"1282"],"1308":["19",0,"1306"],"1310":["19",0,"1302"],"1426":["19",0,"1424"],"1428":["19",0,"1420"],"4010":["19",0,"4009"],"4011":["19",0,"4005"],"33":["20",0,"32",["34"]],"67":["20",0,"66",["68"]],"109":["20",11,"108",["110","112","115","116","119","120","123","124","127","128","131","134","135","138","139","142","145","146","149","152","153","156","157","160","163","164","165","166","167","168","169","173","177","181","182","185","188","189"]],"229":["20",11,"228",["230","232","235","236","239","240","243","244","247","248","251","254","255","258","259","262","265","266","269","272","273","276","277","280","283","284","285","286","287","288","289","293","297","301","302","305","308","309"]],"349":["20",11,"348",["350","352","355","356","359","360","363","364","367","368","371","374","375","378","379","382","385","386","389","392","393","396","397","400","403","404","405","406","407","408","409","413","417","421","422","425","428","429"]],"469":["20",52,"468",["470","472","475","476","479","480","483","484","487","488","491","494","495","498","499","502","505","506","509","512","513","516","517","520","523","524","525","535","545","549","558","566","825","826","833","834","837","840","841"]],"569":["20",33,"568",["570","572","574","577","578","581","584","585","588","589","592","595","596","599","602","603","606","607","610","613","614","615","616","620","624","628","629","632","635","636","637","639","642","643","646","649","650","653","654","657","660","661","664","667","668","671","672","675","678","679","680","681","685","689","693","694","697","700","701","702","704","707","708","711","714","715","718","719","722","725","726","729","732","733","736","737","740","743","744","745","746","750","754","758","759","762","765","766","767","769","772","773","776","777","780","783","784","787","790","791","794","795","798","801","802","803","804","808","812","816","817","820","823","824"]],"921":["20",4,"920",["922","924","926","929","932","933","936","937","940","943","944","947","950","951"]],"1008":["20",4,"1007",["1009","1011","1013","1016","1019","1020","1023","1024","1027","1030","1031","1034","1037","1038"]],"1197":["20",5,"1196",["1198","1200","1202","1205","1208","1217","1223","1227","1233","1234"]],"1246":["20",0,"1245",["1247"]],"1344":["20",0,"1343",["1345"]],"1383":["20",1,"1382",["1384","1386","1387","1388","1391"]],"1439":["20",380,"1438",["1440","1442","1445","4156"]],"1451":["20",12,"1450",["1452","1459","1466","1473","1480","1487","1494","1501","1508","1515","1522"]],"1566":["20",5,"1565",["1567","1569","1571","1574","1577","1578","1581","1584","1585","1588","1589","1592","1595","1596","1599","1602","1603"]],"1622":["20",350,"1621",["1623","1625","1627","1630","1633","1634","1641","1654","1655","1658","1661","1662","1665","1666","1669","1672","1673","1680","1684","1685","1693","1694","1705","1709","1712","1713","1739","1740","1744","1755","1884","1887","1898","1903","1914","1918","1929","1934","1945","3673","3684","3687","3728","3769","3810","3851","3892","3903","3915","4041","4052","4057","4058","4066","4084","4087","4098","4099","4102","4105","4106"]],"1706":["20",0,"1705",["1707"]],"1756":["20",17,"1755",["1757","1759","1760","1770","1781","1784","1788","1794","1803","1804","1805","1811","1821","1824","1833","1836","1853","1854","1864","1871","1874","1878"]],"1900":["20",0,"1899",["1901"]],"1931":["20",0,"1930",["1932"]],"1947":["20",242,"1946",["1948","1950","1952","3670"]],"1958":["20",12,"1957",["1959","1966","1977","1984","1991","1998","2005","2012","2022","2029","2036","2043","2050"]],"2103":["20",1,"2102",["2104","2106","2107"]],"2175":["20",0,"2174",["2176"]],"2180":["20",0,"2179",["2181"]],"2339":["20",1,"2338",["2340","2342","2343","2344","2347"]],"2449":["20",1,"2448",["2450","2452","2453","2454","2457"]],"2559":["20",1,"2558",["2560","2562","2563","2564","2567"]],"2669":["20",1,"2668",["2670","2672","2673","2674","2677"]],"2779":["20",1,"2778",["2780","2782","2783","2784","2787"]],"2889":["20",1,"2888",["2890","2892","2893","2894","2897"]],"2972":["20",0,"2971",["2973"]],"2985":["20",0,"2984",["2986"]],"3530":["20",21,"3529",["3531","3533","3535","3538","3541","3542","3545","3546","3549","3552","3553","3556","3559","3560","3563","3564","3567","3570","3573","3574","3596","3597","3601","3602","3605","3608","3609"]],"3619":["20",6,"3618",["3620","3622","3624","3627","3630","3631","3634","3635","3638","3641","3642","3645","3648","3649","3652","3653","3656","3659","3660","3663","3666","3667"]],"3725":["20",0,"3724",["3726"]],"3766":["20",0,"3765",["3767"]],"3807":["20",0,"3806",["3808"]],"3848":["20",0,"3847",["3849"]],"3889":["20",0,"3888",["3890"]],"4032":["20",1,"4031",["4033","4035","4036","4037","4040"]],"4054":["20",0,"4053",["4055"]],"4116":["20",5,"4115",["4117","4119","4121","4124","4127","4128","4131","4134","4135","4138","4139","4142","4145","4146","4149","4152","4153"]],"4166":["20",4,"4165",["4167","4169","4171","4173","4176","4179","4180","4183","4184","4187","4190","4191","4194","4197","4198"]],"4205":["20",3,"4204",["4206","4208","4210","4213","4216","4217","4220","4221","4224","4227","4228","4231","4234","4235"]],"4255":["20",0,"4254",["4256","4258","4260","4263"]],"4262":["20",0,"4261"],"4285":["20",10,"4284",["4286","4288","4290","4293","4294","4297","4298","4301","4302","4305","4306","4309","4312","4313","4316","4317","4320","4323","4324","4327","4330","4331","4334","4335","4338","4341","4342","4343","4344","4345","4346","4347","4351","4355","4359","4360","4363","4366","4367"]],"4400":["20",8,"4399",["4401","4403","4405","4408","4411","4412","4415","4418","4419","4422","4423","4426","4429","4430","4433","4436","4437"]],"4460":["20",21,"4459",["4461","4463","4465","4468","4471","4472","4475","4478","4479","4482","4483","4486","4489","4492","4493","4507","4508","4516","4518","4526","4527","4530","4533","4534"]],"4611":["20",8,"4610",["4612","4614","4616","4619","4622","4631","4637","4641","4649","4650"]],"4662":["20",0,"4661",["4663"]],"4694":["20",1,"4693",["4695"]],"4750":["20",7,"4749",["4751","4753","4755","4758","4759","4762","4763","4766","4769","4770","4773","4776","4777","4780","4781","4784","4787","4788","4789","4790","4791","4792","4793","4796","4799","4800"]],"4823":["20",5,"4822",["4824","4826","4828","4831","4834","4835","4838","4841","4842","4845","4846","4849","4852","4853","4856","4859","4860"]],"4873":["20",152,"4872",["4874","4876","4878","4881","4884","4885","4888","4891","4892","4895","4896","4899","4902","4905","4906","4920","4921","4937","4938","4946","4950","4953","4962","4968","4972","4978","4979","4982","4985","4986"]],"4934":["20",0,"4933",["4935"]],"4947":["20",0,"4946",["4948"]],"5011":["20",13,"5010",["5012","5014","5016","5018","5021","5024","5030","5034","5035","5038","5039","5042","5045","5046"]],"176":["21",0,"173"],"180":["21",1,"177"],"296":["21",0,"293"],"300":["21",0,"297"],"416":["21",0,"413"],"420":["21",0,"417"],"548":["21",0,"545"],"623":["21",0,"620"],"627":["21",0,"624"],"688":["21",0,"685"],"692":["21",0,"689"],"753":["21",0,"750"],"757":["21",0,"754"],"811":["21",0,"808"],"815":["21",0,"812"],"1165":["21",0,"1041"],"1331":["21",0,"1328"],"1615":["21",0,"1612"],"1787":["21",0,"1784"],"1877":["21",0,"1874"],"2110":["21",0,"2107"],"2278":["21",0,"2275"],"2335":["21",0,"2332"],"2351":["21",0,"2348"],"2387":["21",0,"2384"],"2388":["21",0,"2384"],"2445":["21",0,"2442"],"2461":["21",0,"2458"],"2497":["21",0,"2494"],"2498":["21",0,"2494"],"2555":["21",0,"2552"],"2571":["21",0,"2568"],"2607":["21",0,"2604"],"2608":["21",0,"2604"],"2665":["21",0,"2662"],"2681":["21",0,"2678"],"2717":["21",0,"2714"],"2718":["21",0,"2714"],"2775":["21",0,"2772"],"2791":["21",0,"2788"],"2827":["21",0,"2824"],"2828":["21",0,"2824"],"2885":["21",0,"2882"],"2901":["21",0,"2898"],"2937":["21",0,"2934"],"2938":["21",0,"2934"],"3362":["21",0,"3359"],"3363":["21",0,"3359"],"3364":["21",0,"3359"],"3365":["21",0,"3359"],"3366":["21",0,"3359"],"3367":["21",0,"3359"],"3368":["21",0,"3359"],"3369":["21",0,"3359"],"3370":["21",0,"3359"],"3371":["21",0,"3359"],"3372":["21",0,"3359"],"3373":["21",0,"3359"],"3374":["21",0,"3359"],"3385":["21",0,"3382"],"3420":["21",0,"3417"],"3465":["21",0,"3462"],"4028":["21",0,"4025"],"4163":["21",0,"4160"],"4354":["21",1,"4351"],"4358":["21",0,"4355"],"4541":["21",1,"4538"],"4566":["21",0,"4563"],"4570":["21",0,"4567"],"4574":["21",0,"4571"],"4713":["21",1,"4710"],"4714":["21",0,"4710"],"4718":["21",0,"4715"],"4728":["21",0,"4725"],"5004":["21",0,"5001"],"5008":["21",0,"5005"],"52":["22",0,"49",["53","54"]],"849":["22",0,"846",["850","851","852"]],"924":["22",0,"921",["925"]],"963":["22",0,"960",["964","965","966"]],"1011":["22",0,"1008",["1012"]],"1172":["22",0,"1169",["1173","1174"]],"1192":["22",0,"1189",["1193","1194"]],"1220":["22",1,"1217",["1221","1222"]],"1294":["22",0,"1291",["1295","1296","1297"]],"1412":["22",1,"1409",["1413","1414","1415"]],"1569":["22",0,"1566",["1570"]],"1625":["22",0,"1622",["1626"]],"2170":["22",1,"2167",["2171","2172","2173"]],"2264":["22",0,"2263",["2265","2266","2267"]],"2372":["22",0,"2371",["2373","2374","2375"]],"2482":["22",1,"2481",["2483","2484","2485"]],"2592":["22",0,"2591",["2593","2594","2595"]],"2702":["22",1,"2701",["2703","2704","2705"]],"2812":["22",1,"2811",["2813","2814","2815"]],"2922":["22",1,"2921",["2923","2924","2925"]],"3007":["22",1,"3006",["3008","3009","3010"]],"3347":["22",0,"3346",["3348","3349","3350"]],"3406":["22",1,"3405",["3407","3408","3409"]],"3475":["22",0,"3474",["3476","3477","3478"]],"3533":["22",0,"3530",["3534"]],"3622":["22",0,"3619",["3623"]],"3991":["22",0,"3988",["3992","3993","3994"]],"4119":["22",0,"4116",["4120"]],"4171":["22",0,"4166",["4172"]],"4208":["22",0,"4205",["4209"]],"4383":["22",1,"4380",["4384","4385"]],"4403":["22",1,"4400",["4404"]],"4463":["22",0,"4460",["4464"]],"4553":["22",0,"4550",["4554","4555","4556"]],"4587":["22",1,"4584",["4588","4589"]],"4606":["22",0,"4603",["4607","4608"]],"4634":["22",0,"4631",["4635","4636"]],"4698":["22",0,"4697",["4699","4700","4701"]],"4826":["22",0,"4823",["4827"]],"4876":["22",1,"4873",["4877"]],"4965":["22",118,"4962",["4966","4967"]],"5016":["22",0,"5011",["5017"]],"163":["23",0,"109"],"164":["23",0,"109"],"165":["23",1,"109"],"166":["23",0,"109"],"167":["23",0,"109"],"283":["23",0,"229"],"284":["23",0,"229"],"285":["23",0,"229"],"286":["23",0,"229"],"287":["23",0,"229"],"403":["23",0,"349"],"404":["23",0,"349"],"405":["23",0,"349"],"406":["23",0,"349"],"407":["23",0,"349"],"613":["23",0,"569"],"614":["23",0,"569"],"678":["23",1,"569"],"679":["23",0,"569"],"743":["23",0,"569"],"744":["23",0,"569"],"801":["23",0,"569"],"802":["23",0,"569"],"3910":["23",0,"3909"],"4073":["23",0,"4072"],"4074":["23",0,"4072"],"4075":["23",0,"4072"],"4076":["23",0,"4072"],"4077":["23",0,"4072"],"4078":["23",0,"4072"],"4079":["23",0,"4072"],"4341":["23",0,"4285"],"4342":["23",0,"4285"],"4343":["23",0,"4285"],"4344":["23",0,"4285"],"4345":["23",0,"4285"],"4787":["23",0,"4750"],"4788":["23",0,"4750"],"4789":["23",0,"4750"],"4790":["23",0,"4750"],"4791":["23",1,"4750"],"555":["24",0,"551"],"852":["24",0,"849"],"966":["24",0,"963"],"1214":["24",0,"1210"],"1258":["24",0,"1254"],"1273":["24",0,"1269"],"1297":["24",0,"1294"],"1307":["24",0,"1306"],"1349":["24",0,"1347"],"1363":["24",0,"1359"],"1415":["24",0,"1412"],"1425":["24",0,"1424"],"1690":["24",0,"1686"],"1752":["24",0,"1748"],"1895":["24",0,"1891"],"1911":["24",0,"1907"],"1926":["24",0,"1922"],"1942":["24",1,"1938"],"2151":["24",0,"2147"],"2163":["24",0,"2159"],"2173":["24",0,"2170"],"2267":["24",0,"2264"],"2270":["24",0,"2263"],"2375":["24",0,"2372"],"2378":["24",0,"2371"],"2485":["24",0,"2482"],"2488":["24",0,"2481"],"2595":["24",0,"2592"],"2598":["24",0,"2591"],"2705":["24",0,"2702"],"2708":["24",0,"2701"],"2815":["24",0,"2812"],"2818":["24",0,"2811"],"2925":["24",1,"2922"],"2928":["24",0,"2921"],"2944":["24",1,"2940"],"2956":["24",0,"2952"],"2968":["24",0,"2964"],"2981":["24",0,"2977"],"3003":["24",0,"2999"],"3010":["24",0,"3007"],"3013":["24",0,"3006"],"3331":["24",0,"3327"],"3350":["24",0,"3347"],"3353":["24",0,"3346"],"3391":["24",0,"3387"],"3409":["24",0,"3406"],"3412":["24",0,"3405"],"3427":["24",0,"3423"],"3439":["24",0,"3435"],"3471":["24",0,"3467"],"3478":["24",0,"3475"],"3481":["24",0,"3474"],"3492":["24",0,"3488"],"3506":["24",0,"3502"],"3681":["24",0,"3677"],"3709":["24",0,"3705"],"3750":["24",0,"3746"],"3791":["24",0,"3787"],"3832":["24",0,"3828"],"3873":["24",0,"3869"],"3900":["24",0,"3896"],"3987":["24",0,"3985"],"3994":["24",0,"3991"],"4049":["24",0,"4045"],"4063":["24",0,"4059"],"4095":["24",0,"4091"],"4272":["24",0,"4268"],"4277":["24",0,"4265"],"4513":["24",0,"4509"],"4523":["24",0,"4519"],"4556":["24",0,"4553"],"4628":["24",0,"4624"],"4701":["24",0,"4698"],"4704":["24",0,"4697"],"4744":["24",0,"4740"],"4943":["24",0,"4939"],"4959":["24",0,"4955"],"538":["25",0,"535"],"561":["25",0,"558"],"1309":["25",0,"1306"],"1427":["25",0,"1424"],"1697":["25",0,"1694"],"1700":["25",0,"1694"],"1814":["25",0,"1811"],"3318":["25",0,"3315"],"3397":["25",0,"3394"],"3400":["25",0,"3394"],"3445":["25",0,"3442"],"3514":["25",0,"3511"],"3715":["25",0,"3712"],"3718":["25",0,"3712"],"3756":["25",0,"3753"],"3759":["25",0,"3753"],"3797":["25",0,"3794"],"3800":["25",0,"3794"],"3838":["25",1,"3835"],"3841":["25",0,"3835"],"3879":["25",0,"3876"],"3882":["25",1,"3876"],"3906":["25",0,"3903"],"3909":["25",0,"3903",["3910"]],"4069":["25",0,"4066"],"4072":["25",1,"4066",["4073","4074","4075","4076","4077","4078","4079"]],"24":["26",1,"23",["25"]],"58":["26",1,"57",["59"]],"987":["26",0,"986",["988"]],"1237":["26",0,"1236",["1238"]],"1335":["26",1,"1334",["1336"]],"1795":["26",0,"1794",["1796"]],"1825":["26",0,"1824",["1826"]],"2209":["26",1,"2208",["2210"]],"2230":["26",0,"2229",["2231"]],"2255":["26",0,"2254",["2256"]],"2292":["26",0,"2291",["2293"]],"2363":["26",1,"2362",["2364"]],"2402":["26",0,"2401",["2403"]],"2473":["26",0,"2472",["2474"]],"2512":["26",0,"2511",["2513"]],"2583":["26",0,"2582",["2584"]],"2622":["26",0,"2621",["2623"]],"2693":["26",0,"2692",["2694"]],"2732":["26",0,"2731",["2733"]],"2803":["26",0,"2802",["2804"]],"2842":["26",1,"2841",["2843"]],"2913":["26",0,"2912",["2914"]],"3026":["26",0,"3025",["3027"]],"3048":["26",0,"3047",["3049"]],"3070":["26",0,"3069",["3071"]],"3092":["26",1,"3091",["3093"]],"3114":["26",0,"3113",["3115"]],"3136":["26",0,"3135",["3137"]],"3158":["26",0,"3157",["3159"]],"3180":["26",1,"3179",["3181"]],"3202":["26",1,"3201",["3203"]],"3224":["26",1,"3223",["3225"]],"3246":["26",0,"3245",["3247"]],"3268":["26",0,"3267",["3269"]],"3290":["26",1,"3289",["3291"]],"3307":["26",1,"3306",["3308"]],"4558":["26",0,"4557"],"4653":["26",0,"4652",["4654"]],"4685":["26",1,"4684",["4686"]],"4720":["26",0,"4719"],"4925":["26",0,"4924",["4926"]],"170":["28",0,"169",["171"]],"290":["28",0,"289",["291"]],"410":["28",1,"409",["411"]],"617":["28",1,"616",["618"]],"682":["28",0,"681",["683"]],"747":["28",1,"746",["748"]],"805":["28",0,"804",["806"]],"874":["28",0,"873",["875"]],"912":["28",0,"911",["913"]],"999":["28",3,"998",["1000","1002"]],"1228":["28",1,"1227",["1229","1231"]],"1322":["28",2,"1321",["1323"]],"1323":["28",2,"1322",["1324","1326"]],"1352":["28",3,"1351",["1353","1355"]],"1397":["28",0,"1396",["1398","1400"]],"1403":["28",1,"1402",["1404","1406"]],"1607":["28",1,"1606",["1608","1610"]],"1789":["28",0,"1788",["1790","1792"]],"1837":["28",2,"1836",["1838","1843","1848"]],"1838":["28",1,"1837",["1839","1841"]],"1843":["28",0,"1837",["1844","1846"]],"1848":["28",0,"1837",["1849","1851"]],"1879":["28",1,"1878",["1880","1882"]],"2143":["28",1,"2142",["2144"]],"2249":["28",1,"2248",["2250","2252"]],"2327":["28",1,"2326",["2328","2330"]],"2437":["28",0,"2436",["2438","2440"]],"2547":["28",0,"2546",["2548","2550"]],"2657":["28",1,"2656",["2658","2660"]],"2767":["28",1,"2766",["2768","2770"]],"2877":["28",1,"2876",["2878","2880"]],"3981":["28",0,"3980",["3982"]],"4014":["28",1,"4013",["4015","4017"]],"4020":["28",1,"4019",["4021","4023"]],"4348":["28",0,"4347",["4349"]],"4445":["28",2,"4444",["4446","4448"]],"4642":["28",1,"4641",["4643","4645","4647"]],"4734":["28",1,"4733",["4735","4737"]],"4808":["28",1,"4807",["4809","4811"]],"4973":["28",1,"4972",["4974","4976"]],"8":["29",0,"7"],"14":["29",0,"13"],"72":["29",1,"71"],"105":["29",0,"104"],"192":["29",0,"191"],"225":["29",0,"224"],"312":["29",0,"311"],"345":["29",0,"344"],"432":["29",0,"431"],"465":["29",1,"464"],"573":["29",0,"572"],"638":["29",0,"637"],"703":["29",0,"702"],"768":["29",0,"767"],"918":["29",1,"917"],"1005":["29",0,"1004"],"1185":["29",0,"1184"],"1201":["29",0,"1200"],"1563":["29",0,"1562"],"1619":["29",0,"1618"],"3527":["29",0,"3526"],"3616":["29",0,"3615"],"4113":["29",0,"4112"],"4170":["29",1,"4169"],"4202":["29",0,"4201"],"4289":["29",0,"4288"],"4397":["29",0,"4396"],"4457":["29",0,"4456"],"4580":["29",0,"4579"],"4599":["29",1,"4598"],"4615":["29",0,"4614"],"4669":["29",0,"4668"],"4675":["29",0,"4674"],"4754":["29",0,"4753"],"4820":["29",0,"4819"],"4870":["29",0,"4869"],"5015":["29",0,"5014"],"954":["32",0,"953"],"955":["32",0,"953"],"1159":["32",0,"1158"],"1160":["32",0,"1158"],"1164":["32",0,"1041"],"4544":["32",0,"4543"],"4545":["32",0,"4543"],"953":["33",0,"952",["954","955","956","957","958"]],"1158":["33",1,"1041",["1159","1160","1161","1162","1163"]],"4543":["33",1,"4542",["4544","4545","4546","4547","4548"]],"1635":["35",0,"1634"],"4591":["35",0,"4590"],"5025":["35",1,"5024"],"5047":["35",0,"5046"],"4":["36",0,"3",["5"]],"10":["36",1,"9",["11"]],"16":["36",0,"15",["17"]],"19":["36",1,"18",["20"]],"37":["36",0,"36",["38"]],"74":["36",0,"73",["75"]],"76":["36",0,null,["77"]],"78":["36",0,null,["79"]],"80":["36",0,null,["81"]],"82":["36",0,null,["83"]],"84":["36",1,null,["85","86"]],"87":["36",0,null,["88","89"]],"90":["36",0,null,["91","92"]],"93":["36",1,null,["94","95"]],"96":["36",0,null,["97","98"]],"99":["36",0,null,["100"]],"101":["36",0,null,["102"]],"113":["36",0,"112",["114"]],"117":["36",0,"116",["118"]],"121":["36",1,"120",["122"]],"125":["36",0,"124",["126"]],"129":["36",0,"128",["130"]],"132":["36",0,"131",["133"]],"136":["36",0,"135",["137"]],"140":["36",1,"139",["141"]],"143":["36",0,"142",["144"]],"147":["36",0,"146",["148"]],"150":["36",0,"149",["151"]],"154":["36",0,"153",["155"]],"158":["36",0,"157",["159"]],"161":["36",0,"160",["162"]],"183":["36",0,"182",["184"]],"186":["36",0,"185",["187"]],"194":["36",0,"193",["195"]],"196":["36",0,null,["197"]],"198":["36",1,null,["199"]],"200":["36",0,null,["201"]],"202":["36",0,null,["203"]],"204":["36",0,null,["205","206"]],"207":["36",1,null,["208","209"]],"210":["36",0,null,["211","212"]],"213":["36",0,null,["214","215"]],"216":["36",1,null,["217","218"]],"219":["36",0,null,["220"]],"221":["36",0,null,["222"]],"233":["36",0,"232",["234"]],"237":["36",0,"236",["238"]],"241":["36",0,"240",["242"]],"245":["36",1,"244",["246"]],"249":["36",0,"248",["250"]],"252":["36",0,"251",["253"]],"256":["36",0,"255",["257"]],"260":["36",0,"259",["261"]],"263":["36",1,"262",["264"]],"267":["36",0,"266",["268"]],"270":["36",0,"269",["271"]],"274":["36",0,"273",["275"]],"278":["36",0,"277",["279"]],"281":["36",1,"280",["282"]],"303":["36",0,"302",["304"]],"306":["36",0,"305",["307"]],"314":["36",0,"313",["315"]],"316":["36",0,null,["317"]],"318":["36",1,null,["319"]],"320":["36",0,null,["321"]],"322":["36",0,null,["323"]],"324":["36",0,null,["325","326"]],"327":["36",1,null,["328","329"]],"330":["36",0,null,["331","332"]],"333":["36",0,null,["334","335"]],"336":["36",1,null,["337","338"]],"339":["36",0,null,["340"]],"341":["36",0,null,["342"]],"353":["36",0,"352",["354"]],"357":["36",0,"356",["358"]],"361":["36",0,"360",["362"]],"365":["36",1,"364",["366"]],"369":["36",0,"368",["370"]],"372":["36",0,"371",["373"]],"376":["36",0,"375",["377"]],"380":["36",0,"379",["381"]],"383":["36",1,"382",["384"]],"387":["36",0,"386",["388"]],"390":["36",0,"389",["391"]],"394":["36",0,"393",["395"]],"398":["36",0,"397",["399"]],"401":["36",1,"400",["402"]],"423":["36",0,"422",["424"]],"426":["36",0,"425",["427"]],"434":["36",0,"433",["435"]],"436":["36",1,null,["437"]],"438":["36",0,null,["439"]],"440":["36",0,null,["441"]],"442":["36",0,null,["443"]],"444":["36",1,null,["445","446"]],"447":["36",0,null,["448","449"]],"450":["36",0,null,["451","452"]],"453":["36",1,null,["454","455"]],"456":["36",0,null,["457","458"]],"459":["36",0,null,["460"]],"461":["36",0,null,["462"]],"473":["36",1,"472",["474"]],"477":["36",0,"476",["478"]],"481":["36",0,"480",["482"]],"485":["36",0,"484",["486"]],"489":["36",0,"488",["490"]],"492":["36",0,"491",["493"]],"496":["36",0,"495",["497"]],"500":["36",1,"499",["501"]],"503":["36",0,"502",["504"]],"507":["36",0,"506",["508"]],"510":["36",0,"509",["511"]],"514":["36",0,"513",["515"]],"518":["36",1,"517",["519"]],"521":["36",0,"520",["522"]],"575":["36",1,"574",["576"]],"579":["36",0,"578",["580"]],"582":["36",0,"581",["583"]],"586":["36",0,"585",["587"]],"590":["36",0,"589",["591"]],"593":["36",0,"592",["594"]],"597":["36",0,"596",["598"]],"600":["36",1,"599",["601"]],"604":["36",0,"603",["605"]],"608":["36",0,"607",["609"]],"611":["36",0,"610",["612"]],"630":["36",1,"629",["631"]],"633":["36",0,"632",["634"]],"640":["36",0,"639",["641"]],"644":["36",1,"643",["645"]],"647":["36",0,"646",["648"]],"651":["36",0,"650",["652"]],"655":["36",0,"654",["656"]],"658":["36",0,"657",["659"]],"662":["36",1,"661",["663"]],"665":["36",0,"664",["666"]],"669":["36",0,"668",["670"]],"673":["36",0,"672",["674"]],"676":["36",0,"675",["677"]],"695":["36",0,"694",["696"]],"698":["36",0,"697",["699"]],"705":["36",0,"704",["706"]],"709":["36",0,"708",["710"]],"712":["36",0,"711",["713"]],"716":["36",0,"715",["717"]],"720":["36",0,"719",["721"]],"723":["36",1,"722",["724"]],"727":["36",0,"726",["728"]],"730":["36",0,"729",["731"]],"734":["36",0,"733",["735"]],"738":["36",0,"737",["739"]],"741":["36",0,"740",["742"]],"760":["36",1,"759",["761"]],"763":["36",0,"762",["764"]],"770":["36",0,"769",["771"]],"774":["36",0,"773",["775"]],"778":["36",0,"777",["779"]],"781":["36",0,"780",["782"]],"785":["36",0,"784",["786"]],"788":["36",0,"787",["789"]],"792":["36",1,"791",["793"]],"796":["36",0,"795",["797"]],"799":["36",0,"798",["800"]],"818":["36",1,"817",["819"]],"821":["36",0,"820",["822"]],"835":["36",1,"834",["836"]],"838":["36",0,"837",["839"]],"870":["36",1,"868",["871"]],"895":["36",0,"893",["896"]],"902":["36",1,"900",["903"]],"909":["36",0,"907",["910"]],"927":["36",1,"926",["928"]],"930":["36",0,"929",["931"]],"934":["36",0,"933",["935"]],"938":["36",0,"937",["939"]],"941":["36",0,"940",["942"]],"945":["36",0,"944",["946"]],"948":["36",0,"947",["949"]],"978":["36",0,"976",["979"]],"1014":["36",0,"1013",["1015"]],"1017":["36",1,"1016",["1018"]],"1021":["36",0,"1020",["1022"]],"1025":["36",1,"1024",["1026"]],"1028":["36",0,"1027",["1029"]],"1032":["36",0,"1031",["1033"]],"1035":["36",0,"1034",["1036"]],"1179":["36",0,"1178",["1180"]],"1187":["36",0,"1186",["1188"]],"1203":["36",0,"1202",["1204"]],"1206":["36",0,"1205",["1207"]],"1377":["36",1,"1375",["1378"]],"1388":["36",0,"1383",["1389","1390"]],"1435":["36",0,"1434",["1436"]],"1442":["36",0,"1439",["1443","1444"]],"1446":["36",1,"1445",["1447","1448"]],"1456":["36",1,"1454",["1457","1458"]],"1463":["36",0,"1461",["1464","1465"]],"1470":["36",0,"1468",["1471","1472"]],"1477":["36",1,"1475",["1478","1479"]],"1484":["36",0,"1482",["1485","1486"]],"1491":["36",0,"1489",["1492","1493"]],"1498":["36",0,"1496",["1499","1500"]],"1505":["36",0,"1503",["1506","1507"]],"1512":["36",1,"1510",["1513","1514"]],"1519":["36",0,"1517",["1520","1521"]],"1526":["36",0,"1524",["1527","1528"]],"1557":["36",0,"1556",["1558"]],"1572":["36",0,"1571",["1573"]],"1575":["36",0,"1574",["1576"]],"1579":["36",0,"1578",["1580"]],"1582":["36",0,"1581",["1583"]],"1586":["36",0,"1585",["1587"]],"1590":["36",0,"1589",["1591"]],"1593":["36",0,"1592",["1594"]],"1597":["36",0,"1596",["1598"]],"1600":["36",0,"1599",["1601"]],"1628":["36",0,"1627",["1629"]],"1631":["36",0,"1630",["1632"]],"1637":["36",0,"1636",["1638"]],"1645":["36",0,"1643",["1646"]],"1652":["36",0,"1651",["1653"]],"1656":["36",0,"1655",["1657"]],"1659":["36",0,"1658",["1660"]],"1663":["36",0,"1662",["1664"]],"1667":["36",0,"1666",["1668"]],"1670":["36",0,"1669",["1671"]],"1682":["36",0,"1680",["1683"]],"1710":["36",1,"1709",["1711"]],"1742":["36",0,"1740",["1743"]],"1764":["36",1,"1762",["1765"]],"1767":["36",0,"1762",["1768","1769"]],"1774":["36",0,"1772",["1775","1776"]],"1778":["36",1,"1772",["1779","1780"]],"1858":["36",0,"1856",["1859"]],"1861":["36",0,"1856",["1862","1863"]],"1868":["36",0,"1866",["1869","1870"]],"1885":["36",0,"1884",["1886"]],"1950":["36",0,"1947",["1951"]],"1953":["36",1,"1952",["1954","1955"]],"1963":["36",1,"1961",["1964","1965"]],"1970":["36",0,"1968",["1971","1972"]],"1974":["36",0,"1968",["1975","1976"]],"1981":["36",1,"1979",["1982","1983"]],"1988":["36",1,"1986",["1989","1990"]],"1995":["36",0,"1993",["1996","1997"]],"2002":["36",0,"2000",["2003","2004"]],"2009":["36",0,"2007",["2010","2011"]],"2016":["36",0,"2014",["2017","2018"]],"2019":["36",0,"2014",["2020","2021"]],"2026":["36",0,"2024",["2027","2028"]],"2033":["36",1,"2031",["2034","2035"]],"2040":["36",1,"2038",["2041","2042"]],"2047":["36",1,"2045",["2048","2049"]],"2054":["36",0,"2052",["2055","2056"]],"2096":["36",0,"2095",["2097"]],"2135":["36",1,"2133",["2136","2137"]],"2139":["36",0,"2133",["2140","2141"]],"2187":["36",0,"2185",["2188","2189"]],"2191":["36",1,"2185",["2192","2193"]],"2198":["36",0,"2196",["2199","2200"]],"2205":["36",0,"2203",["2206","2207"]],"2227":["36",0,"2225",["2228"]],"2242":["36",0,"2240",["2243"]],"2245":["36",0,"2240",["2246","2247"]],"2289":["36",1,"2287",["2290"]],"2304":["36",1,"2302",["2305"]],"2317":["36",0,"2315",["2318"]],"2323":["36",0,"2321",["2324"]],"2344":["36",0,"2339",["2345","2346"]],"2399":["36",0,"2397",["2400"]],"2414":["36",0,"2412",["2415"]],"2427":["36",0,"2425",["2428"]],"2433":["36",0,"2431",["2434"]],"2454":["36",0,"2449",["2455","2456"]],"2509":["36",1,"2507",["2510"]],"2524":["36",0,"2522",["2525"]],"2537":["36",0,"2535",["2538"]],"2543":["36",0,"2541",["2544"]],"2564":["36",1,"2559",["2565","2566"]],"2619":["36",0,"2617",["2620"]],"2634":["36",0,"2632",["2635"]],"2647":["36",0,"2645",["2648"]],"2653":["36",1,"2651",["2654"]],"2674":["36",0,"2669",["2675","2676"]],"2729":["36",1,"2727",["2730"]],"2744":["36",1,"2742",["2745"]],"2757":["36",0,"2755",["2758"]],"2763":["36",0,"2761",["2764"]],"2784":["36",0,"2779",["2785","2786"]],"2839":["36",0,"2837",["2840"]],"2854":["36",0,"2852",["2855"]],"2867":["36",0,"2865",["2868"]],"2873":["36",0,"2871",["2874"]],"2894":["36",0,"2889",["2895","2896"]],"2992":["36",0,"2990",["2993","2994"]],"3536":["36",0,"3535",["3537"]],"3539":["36",0,"3538",["3540"]],"3543":["36",0,"3542",["3544"]],"3547":["36",0,"3546",["3548"]],"3550":["36",1,"3549",["3551"]],"3554":["36",0,"3553",["3555"]],"3557":["36",1,"3556",["3558"]],"3561":["36",0,"3560",["3562"]],"3565":["36",0,"3564",["3566"]],"3568":["36",0,"3567",["3569"]],"3571":["36",0,"3570",["3572"]],"3599":["36",0,"3597",["3600"]],"3603":["36",0,"3602",["3604"]],"3606":["36",0,"3605",["3607"]],"3625":["36",0,"3624",["3626"]],"3628":["36",1,"3627",["3629"]],"3632":["36",0,"3631",["3633"]],"3636":["36",0,"3635",["3637"]],"3639":["36",0,"3638",["3640"]],"3643":["36",0,"3642",["3644"]],"3646":["36",0,"3645",["3647"]],"3650":["36",0,"3649",["3651"]],"3654":["36",0,"3653",["3655"]],"3657":["36",0,"3656",["3658"]],"3661":["36",0,"3660",["3662"]],"3664":["36",1,"3663",["3665"]],"3670":["36",1,"1947",["3671","3672"]],"3698":["36",1,"3696",["3699"]],"3739":["36",0,"3737",["3740"]],"3780":["36",1,"3778",["3781"]],"3821":["36",0,"3819",["3822"]],"3862":["36",1,"3860",["3863"]],"3926":["36",1,"3924",["3927"]],"3929":["36",0,"3924",["3930","3931"]],"3936":["36",0,"3934",["3937","3938"]],"3940":["36",0,"3934",["3941","3942"]],"3947":["36",0,"3945",["3948","3949"]],"3954":["36",0,"3952",["3955","3956"]],"3961":["36",1,"3959",["3962","3963"]],"3968":["36",0,"3966",["3969","3970"]],"3975":["36",0,"3973",["3976","3977"]],"4037":["36",1,"4032",["4038","4039"]],"4100":["36",1,"4099",["4101"]],"4103":["36",0,"4102",["4104"]],"4122":["36",0,"4121",["4123"]],"4125":["36",0,"4124",["4126"]],"4129":["36",0,"4128",["4130"]],"4132":["36",0,"4131",["4133"]],"4136":["36",1,"4135",["4137"]],"4140":["36",0,"4139",["4141"]],"4143":["36",0,"4142",["4144"]],"4147":["36",0,"4146",["4148"]],"4150":["36",0,"4149",["4151"]],"4156":["36",0,"1439",["4157","4158"]],"4174":["36",0,"4173",["4175"]],"4177":["36",0,"4176",["4178"]],"4181":["36",0,"4180",["4182"]],"4185":["36",0,"4184",["4186"]],"4188":["36",0,"4187",["4189"]],"4192":["36",0,"4191",["4193"]],"4195":["36",0,"4194",["4196"]],"4211":["36",1,"4210",["4212"]],"4214":["36",0,"4213",["4215"]],"4218":["36",0,"4217",["4219"]],"4222":["36",0,"4221",["4223"]],"4225":["36",0,"4224",["4226"]],"4229":["36",0,"4228",["4230"]],"4232":["36",0,"4231",["4233"]],"4240":["36",0,"4238",["4241"]],"4246":["36",0,"4244",["4247","4248"]],"4250":["36",0,"4244",["4251","4252"]],"4258":["36",0,"4255",["4259"]],"4291":["36",0,"4290",["4292"]],"4295":["36",0,"4294",["4296"]],"4299":["36",0,"4298",["4300"]],"4303":["36",0,"4302",["4304"]],"4307":["36",0,"4306",["4308"]],"4310":["36",1,"4309",["4311"]],"4314":["36",0,"4313",["4315"]],"4318":["36",1,"4317",["4319"]],"4321":["36",0,"4320",["4322"]],"4325":["36",0,"4324",["4326"]],"4328":["36",1,"4327",["4329"]],"4332":["36",0,"4331",["4333"]],"4336":["36",1,"4335",["4337"]],"4339":["36",0,"4338",["4340"]],"4361":["36",0,"4360",["4362"]],"4364":["36",1,"4363",["4365"]],"4372":["36",1,"4370",["4373"]],"4378":["36",0,"4376",["4379"]],"4392":["36",0,"4390",["4393"]],"4406":["36",0,"4405",["4407"]],"4409":["36",1,"4408",["4410"]],"4413":["36",0,"4412",["4414"]],"4416":["36",1,"4415",["4417"]],"4420":["36",0,"4419",["4421"]],"4424":["36",0,"4423",["4425"]],"4427":["36",0,"4426",["4428"]],"4431":["36",0,"4430",["4432"]],"4434":["36",2,"4433",["4435"]],"4452":["36",0,"4450",["4453"]],"4466":["36",2,"4465",["4467"]],"4469":["36",1,"4468",["4470"]],"4473":["36",0,"4472",["4474"]],"4476":["36",0,"4475",["4477"]],"4480":["36",0,"4479",["4481"]],"4484":["36",1,"4483",["4485"]],"4487":["36",0,"4486",["4488"]],"4490":["36",1,"4489",["4491"]],"4528":["36",0,"4527",["4529"]],"4531":["36",1,"4530",["4532"]],"4582":["36",0,"4581",["4583"]],"4593":["36",0,"4592",["4594"]],"4601":["36",0,"4600",["4602"]],"4617":["36",1,"4616",["4618"]],"4620":["36",0,"4619",["4621"]],"4671":["36",0,"4670",["4672"]],"4677":["36",0,"4676",["4678"]],"4680":["36",0,"4679",["4681"]],"4756":["36",1,"4755",["4757"]],"4760":["36",0,"4759",["4761"]],"4764":["36",0,"4763",["4765"]],"4767":["36",0,"4766",["4768"]],"4771":["36",0,"4770",["4772"]],"4774":["36",1,"4773",["4775"]],"4778":["36",0,"4777",["4779"]],"4782":["36",1,"4781",["4783"]],"4785":["36",0,"4784",["4786"]],"4794":["36",0,"4793",["4795"]],"4797":["36",0,"4796",["4798"]],"4815":["36",0,"4813",["4816"]],"4829":["36",0,"4828",["4830"]],"4832":["36",0,"4831",["4833"]],"4836":["36",0,"4835",["4837"]],"4839":["36",0,"4838",["4840"]],"4843":["36",0,"4842",["4844"]],"4847":["36",1,"4846",["4848"]],"4850":["36",0,"4849",["4851"]],"4854":["36",0,"4853",["4855"]],"4857":["36",0,"4856",["4858"]],"4865":["36",1,"4863",["4866"]],"4879":["36",0,"4878",["4880"]],"4882":["36",0,"4881",["4883"]],"4886":["36",0,"4885",["4887"]],"4889":["36",0,"4888",["4890"]],"4893":["36",1,"4892",["4894"]],"4897":["36",0,"4896",["4898"]],"4900":["36",0,"4899",["4901"]],"4903":["36",1,"4902",["4904"]],"4951":["36",0,"4950",["4952"]],"4980":["36",1,"4979",["4981"]],"4983":["36",0,"4982",["4984"]],"5019":["36",0,"5018",["5020"]],"5022":["36",0,"5021",["5023"]],"5027":["36",0,"5026",["5028"]],"5032":["36",0,"5031",["5033"]],"5036":["36",0,"5035",["5037"]],"5040":["36",0,"5039",["5041"]],"5043":["36",0,"5042",["5044"]],"5049":["36",0,"5048",["5050"]],"3":["38",0,"2",["4"]],"9":["38",1,null,["10"]],"15":["38",1,null,["16"]],"18":["38",2,null,["19"]],"36":["38",0,null,["37"]],"73":["38",0,null,["74"]],"112":["38",0,"109",["113"]],"116":["38",0,"109",["117"]],"120":["38",1,"109",["121"]],"124":["38",0,"109",["125"]],"128":["38",0,"109",["129"]],"131":["38",0,"109",["132"]],"135":["38",0,"109",["136"]],"139":["38",1,"109",["140"]],"142":["38",0,"109",["143"]],"146":["38",0,"109",["147"]],"149":["38",0,"109",["150"]],"153":["38",0,"109",["154"]],"157":["38",0,"109",["158"]],"160":["38",0,"109",["161"]],"182":["38",0,"109",["183"]],"185":["38",1,"109",["186"]],"193":["38",0,null,["194"]],"232":["38",0,"229",["233"]],"236":["38",0,"229",["237"]],"240":["38",0,"229",["241"]],"244":["38",1,"229",["245"]],"248":["38",0,"229",["249"]],"251":["38",1,"229",["252"]],"255":["38",0,"229",["256"]],"259":["38",0,"229",["260"]],"262":["38",1,"229",["263"]],"266":["38",0,"229",["267"]],"269":["38",0,"229",["270"]],"273":["38",0,"229",["274"]],"277":["38",0,"229",["278"]],"280":["38",1,"229",["281"]],"302":["38",0,"229",["303"]],"305":["38",0,"229",["306"]],"313":["38",0,null,["314"]],"352":["38",0,"349",["353"]],"356":["38",0,"349",["357"]],"360":["38",0,"349",["361"]],"364":["38",1,"349",["365"]],"368":["38",0,"349",["369"]],"371":["38",0,"349",["372"]],"375":["38",0,"349",["376"]],"379":["38",0,"349",["380"]],"382":["38",1,"349",["383"]],"386":["38",0,"349",["387"]],"389":["38",0,"349",["390"]],"393":["38",0,"349",["394"]],"397":["38",0,"349",["398"]],"400":["38",1,"349",["401"]],"422":["38",0,"349",["423"]],"425":["38",0,"349",["426"]],"433":["38",0,null,["434"]],"472":["38",1,"469",["473"]],"476":["38",0,"469",["477"]],"480":["38",1,"469",["481"]],"484":["38",0,"469",["485"]],"488":["38",0,"469",["489"]],"491":["38",1,"469",["492"]],"495":["38",0,"469",["496"]],"499":["38",1,"469",["500"]],"502":["38",0,"469",["503"]],"506":["38",0,"469",["507"]],"509":["38",0,"469",["510"]],"513":["38",0,"469",["514"]],"517":["38",1,"469",["518"]],"520":["38",0,"469",["521"]],"574":["38",1,"569",["575"]],"578":["38",0,"569",["579"]],"581":["38",0,"569",["582"]],"585":["38",0,"569",["586"]],"589":["38",0,"569",["590"]],"592":["38",1,"569",["593"]],"596":["38",0,"569",["597"]],"599":["38",1,"569",["600"]],"603":["38",0,"569",["604"]],"607":["38",0,"569",["608"]],"610":["38",0,"569",["611"]],"629":["38",1,"569",["630"]],"632":["38",0,"569",["633"]],"639":["38",0,"569",["640"]],"643":["38",1,"569",["644"]],"646":["38",0,"569",["647"]],"650":["38",0,"569",["651"]],"654":["38",0,"569",["655"]],"657":["38",0,"569",["658"]],"661":["38",1,"569",["662"]],"664":["38",0,"569",["665"]],"668":["38",1,"569",["669"]],"672":["38",0,"569",["673"]],"675":["38",0,"569",["676"]],"694":["38",0,"569",["695"]],"697":["38",0,"569",["698"]],"704":["38",0,"569",["705"]],"708":["38",0,"569",["709"]],"711":["38",0,"569",["712"]],"715":["38",0,"569",["716"]],"719":["38",0,"569",["720"]],"722":["38",1,"569",["723"]],"726":["38",0,"569",["727"]],"729":["38",0,"569",["730"]],"733":["38",0,"569",["734"]],"737":["38",0,"569",["738"]],"740":["38",0,"569",["741"]],"759":["38",1,"569",["760"]],"762":["38",0,"569",["763"]],"769":["38",0,"569",["770"]],"773":["38",1,"569",["774"]],"777":["38",0,"569",["778"]],"780":["38",0,"569",["781"]],"784":["38",0,"569",["785"]],"787":["38",0,"569",["788"]],"791":["38",1,"569",["792"]],"795":["38",0,"569",["796"]],"798":["38",0,"569",["799"]],"817":["38",1,"569",["818"]],"820":["38",0,"569",["821"]],"834":["38",1,"469",["835"]],"837":["38",0,"469",["838"]],"926":["38",1,"921",["927"]],"929":["38",0,"921",["930"]],"933":["38",1,"921",["934"]],"937":["38",0,"921",["938"]],"940":["38",0,"921",["941"]],"944":["38",1,"921",["945"]],"947":["38",0,"921",["948"]],"1013":["38",0,"1008",["1014"]],"1016":["38",1,"1008",["1017"]],"1020":["38",0,"1008",["1021"]],"1024":["38",1,"1008",["1025"]],"1027":["38",0,"1008",["1028"]],"1031":["38",0,"1008",["1032"]],"1034":["38",0,"1008",["1035"]],"1178":["38",0,"1177",["1179"]],"1186":["38",0,null,["1187"]],"1202":["38",0,"1197",["1203"]],"1205":["38",0,"1197",["1206"]],"1434":["38",0,"1433",["1435"]],"1556":["38",0,"1555",["1557"]],"1571":["38",0,"1566",["1572"]],"1574":["38",0,"1566",["1575"]],"1578":["38",0,"1566",["1579"]],"1581":["38",0,"1566",["1582"]],"1585":["38",0,"1566",["1586"]],"1589":["38",0,"1566",["1590"]],"1592":["38",0,"1566",["1593"]],"1596":["38",0,"1566",["1597"]],"1599":["38",1,"1566",["1600"]],"1627":["38",0,"1622",["1628"]],"1630":["38",0,"1622",["1631"]],"1636":["38",0,"1634",["1637"]],"1651":["38",0,"1650",["1652"]],"1655":["38",0,"1622",["1656"]],"1658":["38",1,"1622",["1659"]],"1662":["38",0,"1622",["1663"]],"1666":["38",0,"1622",["1667"]],"1669":["38",0,"1622",["1670"]],"1709":["38",1,"1622",["1710"]],"1884":["38",0,"1622",["1885"]],"2095":["38",0,"2094",["2096"]],"3535":["38",0,"3530",["3536"]],"3538":["38",0,"3530",["3539"]],"3542":["38",0,"3530",["3543"]],"3546":["38",0,"3530",["3547"]],"3549":["38",1,"3530",["3550"]],"3553":["38",0,"3530",["3554"]],"3556":["38",1,"3530",["3557"]],"3560":["38",0,"3530",["3561"]],"3564":["38",0,"3530",["3565"]],"3567":["38",1,"3530",["3568"]],"3570":["38",0,"3530",["3571"]],"3602":["38",0,"3530",["3603"]],"3605":["38",0,"3530",["3606"]],"3624":["38",0,"3619",["3625"]],"3627":["38",1,"3619",["3628"]],"3631":["38",0,"3619",["3632"]],"3635":["38",0,"3619",["3636"]],"3638":["38",0,"3619",["3639"]],"3642":["38",0,"3619",["3643"]],"3645":["38",1,"3619",["3646"]],"3649":["38",0,"3619",["3650"]],"3653":["38",0,"3619",["3654"]],"3656":["38",1,"3619",["3657"]],"3660":["38",0,"3619",["3661"]],"3663":["38",1,"3619",["3664"]],"4099":["38",1,"1622",["4100"]],"4102":["38",0,"1622",["4103"]],"4121":["38",0,"4116",["4122"]],"4124":["38",0,"4116",["4125"]],"4128":["38",0,"4116",["4129"]],"4131":["38",0,"4116",["4132"]],"4135":["38",1,"4116",["4136"]],"4139":["38",0,"4116",["4140"]],"4142":["38",0,"4116",["4143"]],"4146":["38",0,"4116",["4147"]],"4149":["38",0,"4116",["4150"]],"4173":["38",0,"4166",["4174"]],"4176":["38",0,"4166",["4177"]],"4180":["38",0,"4166",["4181"]],"4184":["38",0,"4166",["4185"]],"4187":["38",1,"4166",["4188"]],"4191":["38",0,"4166",["4192"]],"4194":["38",1,"4166",["4195"]],"4210":["38",1,"4205",["4211"]],"4213":["38",0,"4205",["4214"]],"4217":["38",1,"4205",["4218"]],"4221":["38",0,"4205",["4222"]],"4224":["38",0,"4205",["4225"]],"4228":["38",1,"4205",["4229"]],"4231":["38",0,"4205",["4232"]],"4290":["38",0,"4285",["4291"]],"4294":["38",0,"4285",["4295"]],"4298":["38",0,"4285",["4299"]],"4302":["38",0,"4285",["4303"]],"4306":["38",0,"4285",["4307"]],"4309":["38",1,"4285",["4310"]],"4313":["38",0,"4285",["4314"]],"4317":["38",1,"4285",["4318"]],"4320":["38",0,"4285",["4321"]],"4324":["38",0,"4285",["4325"]],"4327":["38",1,"4285",["4328"]],"4331":["38",0,"4285",["4332"]],"4335":["38",1,"4285",["4336"]],"4338":["38",0,"4285",["4339"]],"4360":["38",0,"4285",["4361"]],"4363":["38",1,"4285",["4364"]],"4405":["38",0,"4400",["4406"]],"4408":["38",1,"4400",["4409"]],"4412":["38",0,"4400",["4413"]],"4415":["38",1,"4400",["4416"]],"4419":["38",0,"4400",["4420"]],"4423":["38",1,"4400",["4424"]],"4426":["38",0,"4400",["4427"]],"4430":["38",0,"4400",["4431"]],"4433":["38",3,"4400",["4434"]],"4465":["38",2,"4460",["4466"]],"4468":["38",1,"4460",["4469"]],"4472":["38",0,"4460",["4473"]],"4475":["38",0,"4460",["4476"]],"4479":["38",0,"4460",["4480"]],"4483":["38",1,"4460",["4484"]],"4486":["38",0,"4460",["4487"]],"4489":["38",1,"4460",["4490"]],"4527":["38",0,"4460",["4528"]],"4530":["38",1,"4460",["4531"]],"4581":["38",0,null,["4582"]],"4592":["38",0,"4590",["4593"]],"4600":["38",0,null,["4601"]],"4616":["38",1,"4611",["4617"]],"4619":["38",0,"4611",["4620"]],"4670":["38",0,null,["4671"]],"4676":["38",2,null,["4677"]],"4679":["38",1,null,["4680"]],"4755":["38",1,"4750",["4756"]],"4759":["38",0,"4750",["4760"]],"4763":["38",0,"4750",["4764"]],"4766":["38",1,"4750",["4767"]],"4770":["38",0,"4750",["4771"]],"4773":["38",1,"4750",["4774"]],"4777":["38",0,"4750",["4778"]],"4781":["38",1,"4750",["4782"]],"4784":["38",0,"4750",["4785"]],"4793":["38",0,"4750",["4794"]],"4796":["38",1,"4750",["4797"]],"4828":["38",0,"4823",["4829"]],"4831":["38",0,"4823",["4832"]],"4835":["38",0,"4823",["4836"]],"4838":["38",1,"4823",["4839"]],"4842":["38",0,"4823",["4843"]],"4846":["38",1,"4823",["4847"]],"4849":["38",0,"4823",["4850"]],"4853":["38",0,"4823",["4854"]],"4856":["38",0,"4823",["4857"]],"4878":["38",0,"4873",["4879"]],"4881":["38",0,"4873",["4882"]],"4885":["38",1,"4873",["4886"]],"4888":["38",0,"4873",["4889"]],"4892":["38",1,"4873",["4893"]],"4896":["38",0,"4873",["4897"]],"4899":["38",0,"4873",["4900"]],"4902":["38",1,"4873",["4903"]],"4950":["38",1,"4873",["4951"]],"4979":["38",1,"4873",["4980"]],"4982":["38",0,"4873",["4983"]],"5018":["38",0,"5011",["5019"]],"5021":["38",0,"5011",["5022"]],"5026":["38",0,"5024",["5027"]],"5031":["38",1,"5030",["5032"]],"5035":["38",1,"5011",["5036"]],"5039":["38",0,"5011",["5040"]],"5042":["38",1,"5011",["5043"]],"5048":["38",1,"5046",["5049"]],"5":["39",0,"4"],"11":["39",0,"10"],"17":["39",0,"16"],"20":["39",0,"19"],"38":["39",0,"37"],"75":["39",0,"74"],"77":["39",0,"76"],"79":["39",0,"78"],"81":["39",0,"80"],"83":["39",0,"82"],"85":["39",0,"84"],"88":["39",0,"87"],"91":["39",0,"90"],"94":["39",0,"93"],"97":["39",0,"96"],"100":["39",0,"99"],"102":["39",0,"101"],"114":["39",0,"113"],"115":["39",0,"109"],"118":["39",0,"117"],"119":["39",0,"109"],"122":["39",1,"121"],"123":["39",0,"109"],"126":["39",0,"125"],"127":["39",0,"109"],"130":["39",0,"129"],"133":["39",0,"132"],"134":["39",0,"109"],"137":["39",0,"136"],"138":["39",0,"109"],"141":["39",1,"140"],"144":["39",0,"143"],"145":["39",0,"109"],"148":["39",0,"147"],"151":["39",0,"150"],"152":["39",0,"109"],"155":["39",0,"154"],"156":["39",0,"109"],"159":["39",0,"158"],"162":["39",0,"161"],"181":["39",0,"109"],"184":["39",0,"183"],"187":["39",0,"186"],"188":["39",0,"109"],"189":["39",0,"109"],"195":["39",0,"194"],"197":["39",0,"196"],"199":["39",1,"198"],"201":["39",0,"200"],"203":["39",0,"202"],"205":["39",0,"204"],"208":["39",0,"207"],"211":["39",0,"210"],"214":["39",0,"213"],"217":["39",0,"216"],"220":["39",0,"219"],"222":["39",0,"221"],"234":["39",0,"233"],"235":["39",1,"229"],"238":["39",0,"237"],"239":["39",0,"229"],"242":["39",0,"241"],"243":["39",0,"229"],"246":["39",0,"245"],"247":["39",0,"229"],"250":["39",0,"249"],"253":["39",0,"252"],"254":["39",0,"229"],"257":["39",0,"256"],"258":["39",0,"229"],"261":["39",0,"260"],"264":["39",0,"263"],"265":["39",0,"229"],"268":["39",0,"267"],"271":["39",0,"270"],"272":["39",0,"229"],"275":["39",0,"274"],"276":["39",0,"229"],"279":["39",0,"278"],"282":["39",0,"281"],"301":["39",0,"229"],"304":["39",0,"303"],"307":["39",0,"306"],"308":["39",0,"229"],"309":["39",0,"229"],"315":["39",0,"314"],"317":["39",0,"316"],"319":["39",0,"318"],"321":["39",0,"320"],"323":["39",0,"322"],"325":["39",0,"324"],"328":["39",1,"327"],"331":["39",0,"330"],"334":["39",0,"333"],"337":["39",0,"336"],"340":["39",0,"339"],"342":["39",0,"341"],"354":["39",0,"353"],"355":["39",1,"349"],"358":["39",0,"357"],"359":["39",0,"349"],"362":["39",0,"361"],"363":["39",0,"349"],"366":["39",0,"365"],"367":["39",0,"349"],"370":["39",0,"369"],"373":["39",0,"372"],"374":["39",0,"349"],"377":["39",0,"376"],"378":["39",0,"349"],"381":["39",0,"380"],"384":["39",0,"383"],"385":["39",0,"349"],"388":["39",0,"387"],"391":["39",0,"390"],"392":["39",0,"349"],"395":["39",0,"394"],"396":["39",0,"349"],"399":["39",0,"398"],"402":["39",0,"401"],"421":["39",1,"349"],"424":["39",0,"423"],"427":["39",0,"426"],"428":["39",0,"349"],"429":["39",1,"349"],"435":["39",0,"434"],"437":["39",0,"436"],"439":["39",0,"438"],"441":["39",0,"440"],"443":["39",0,"442"],"445":["39",0,"444"],"448":["39",0,"447"],"451":["39",0,"450"],"454":["39",0,"453"],"457":["39",0,"456"],"460":["39",0,"459"],"462":["39",0,"461"],"474":["39",0,"473"],"475":["39",0,"469"],"478":["39",0,"477"],"479":["39",0,"469"],"482":["39",0,"481"],"483":["39",0,"469"],"486":["39",0,"485"],"487":["39",0,"469"],"490":["39",0,"489"],"493":["39",0,"492"],"494":["39",0,"469"],"497":["39",0,"496"],"498":["39",0,"469"],"501":["39",1,"500"],"504":["39",0,"503"],"505":["39",0,"469"],"508":["39",0,"507"],"511":["39",0,"510"],"512":["39",0,"469"],"515":["39",0,"514"],"516":["39",0,"469"],"519":["39",0,"518"],"522":["39",0,"521"],"576":["39",0,"575"],"577":["39",0,"569"],"580":["39",0,"579"],"583":["39",0,"582"],"584":["39",0,"569"],"587":["39",0,"586"],"588":["39",0,"569"],"591":["39",0,"590"],"594":["39",0,"593"],"595":["39",0,"569"],"598":["39",0,"597"],"601":["39",0,"600"],"602":["39",0,"569"],"605":["39",0,"604"],"606":["39",0,"569"],"609":["39",0,"608"],"612":["39",0,"611"],"628":["39",0,"569"],"631":["39",0,"630"],"634":["39",0,"633"],"635":["39",0,"569"],"636":["39",0,"569"],"641":["39",0,"640"],"642":["39",0,"569"],"645":["39",0,"644"],"648":["39",0,"647"],"649":["39",0,"569"],"652":["39",0,"651"],"653":["39",0,"569"],"656":["39",0,"655"],"659":["39",0,"658"],"660":["39",0,"569"],"663":["39",0,"662"],"666":["39",0,"665"],"667":["39",0,"569"],"670":["39",0,"669"],"671":["39",0,"569"],"674":["39",0,"673"],"677":["39",0,"676"],"693":["39",0,"569"],"696":["39",0,"695"],"699":["39",0,"698"],"700":["39",0,"569"],"701":["39",0,"569"],"706":["39",0,"705"],"707":["39",0,"569"],"710":["39",0,"709"],"713":["39",0,"712"],"714":["39",0,"569"],"717":["39",0,"716"],"718":["39",0,"569"],"721":["39",0,"720"],"724":["39",0,"723"],"725":["39",0,"569"],"728":["39",0,"727"],"731":["39",0,"730"],"732":["39",0,"569"],"735":["39",0,"734"],"736":["39",0,"569"],"739":["39",0,"738"],"742":["39",0,"741"],"758":["39",0,"569"],"761":["39",1,"760"],"764":["39",0,"763"],"765":["39",0,"569"],"766":["39",0,"569"],"771":["39",0,"770"],"772":["39",0,"569"],"775":["39",0,"774"],"776":["39",0,"569"],"779":["39",0,"778"],"782":["39",0,"781"],"783":["39",0,"569"],"786":["39",0,"785"],"789":["39",0,"788"],"790":["39",0,"569"],"793":["39",1,"792"],"794":["39",0,"569"],"797":["39",0,"796"],"800":["39",0,"799"],"816":["39",0,"569"],"819":["39",0,"818"],"822":["39",0,"821"],"823":["39",0,"569"],"824":["39",0,"569"],"833":["39",0,"469"],"836":["39",1,"835"],"839":["39",0,"838"],"840":["39",0,"469"],"841":["39",0,"469"],"871":["39",1,"870"],"896":["39",0,"895"],"903":["39",0,"902"],"910":["39",0,"909"],"928":["39",0,"927"],"931":["39",0,"930"],"932":["39",0,"921"],"935":["39",0,"934"],"936":["39",0,"921"],"939":["39",0,"938"],"942":["39",0,"941"],"943":["39",0,"921"],"946":["39",0,"945"],"949":["39",0,"948"],"950":["39",0,"921"],"951":["39",1,"921"],"979":["39",0,"978"],"1015":["39",0,"1014"],"1018":["39",0,"1017"],"1019":["39",0,"1008"],"1022":["39",0,"1021"],"1023":["39",0,"1008"],"1026":["39",1,"1025"],"1029":["39",0,"1028"],"1030":["39",0,"1008"],"1033":["39",0,"1032"],"1036":["39",0,"1035"],"1037":["39",0,"1008"],"1038":["39",0,"1008"],"1180":["39",0,"1179"],"1188":["39",0,"1187"],"1204":["39",0,"1203"],"1207":["39",0,"1206"],"1233":["39",0,"1197"],"1234":["39",0,"1197"],"1378":["39",1,"1377"],"1389":["39",0,"1388"],"1436":["39",0,"1435"],"1443":["39",0,"1442"],"1447":["39",1,"1446"],"1457":["39",1,"1456"],"1464":["39",0,"1463"],"1471":["39",0,"1470"],"1478":["39",0,"1477"],"1485":["39",0,"1484"],"1492":["39",0,"1491"],"1499":["39",0,"1498"],"1506":["39",0,"1505"],"1513":["39",1,"1512"],"1520":["39",0,"1519"],"1527":["39",0,"1526"],"1558":["39",0,"1557"],"1573":["39",0,"1572"],"1576":["39",0,"1575"],"1577":["39",0,"1566"],"1580":["39",0,"1579"],"1583":["39",0,"1582"],"1584":["39",0,"1566"],"1587":["39",0,"1586"],"1588":["39",0,"1566"],"1591":["39",0,"1590"],"1594":["39",0,"1593"],"1595":["39",0,"1566"],"1598":["39",0,"1597"],"1601":["39",0,"1600"],"1602":["39",0,"1566"],"1603":["39",0,"1566"],"1629":["39",0,"1628"],"1632":["39",0,"1631"],"1638":["39",0,"1637"],"1646":["39",0,"1645"],"1653":["39",0,"1652"],"1654":["39",0,"1622"],"1657":["39",0,"1656"],"1660":["39",0,"1659"],"1661":["39",0,"1622"],"1664":["39",0,"1663"],"1665":["39",0,"1622"],"1668":["39",0,"1667"],"1671":["39",0,"1670"],"1683":["39",0,"1682"],"1711":["39",1,"1710"],"1743":["39",0,"1742"],"1765":["39",1,"1764"],"1768":["39",0,"1767"],"1775":["39",0,"1774"],"1779":["39",0,"1778"],"1859":["39",0,"1858"],"1862":["39",0,"1861"],"1869":["39",0,"1868"],"1886":["39",0,"1885"],"1951":["39",0,"1950"],"1954":["39",0,"1953"],"1964":["39",0,"1963"],"1971":["39",0,"1970"],"1975":["39",0,"1974"],"1982":["39",1,"1981"],"1989":["39",0,"1988"],"1996":["39",0,"1995"],"2003":["39",0,"2002"],"2010":["39",0,"2009"],"2017":["39",0,"2016"],"2020":["39",0,"2019"],"2027":["39",0,"2026"],"2034":["39",0,"2033"],"2041":["39",0,"2040"],"2048":["39",0,"2047"],"2055":["39",0,"2054"],"2097":["39",0,"2096"],"2136":["39",1,"2135"],"2140":["39",0,"2139"],"2188":["39",0,"2187"],"2192":["39",1,"2191"],"2199":["39",0,"2198"],"2206":["39",0,"2205"],"2228":["39",0,"2227"],"2243":["39",0,"2242"],"2246":["39",0,"2245"],"2290":["39",0,"2289"],"2305":["39",1,"2304"],"2318":["39",0,"2317"],"2324":["39",0,"2323"],"2345":["39",0,"2344"],"2400":["39",0,"2399"],"2415":["39",0,"2414"],"2428":["39",0,"2427"],"2434":["39",0,"2433"],"2455":["39",0,"2454"],"2510":["39",1,"2509"],"2525":["39",0,"2524"],"2538":["39",0,"2537"],"2544":["39",0,"2543"],"2565":["39",0,"2564"],"2620":["39",0,"2619"],"2635":["39",0,"2634"],"2648":["39",0,"2647"],"2654":["39",0,"2653"],"2675":["39",0,"2674"],"2730":["39",1,"2729"],"2745":["39",0,"2744"],"2758":["39",0,"2757"],"2764":["39",0,"2763"],"2785":["39",0,"2784"],"2840":["39",0,"2839"],"2855":["39",0,"2854"],"2868":["39",0,"2867"],"2874":["39",0,"2873"],"2895":["39",0,"2894"],"2993":["39",0,"2992"],"3537":["39",0,"3536"],"3540":["39",0,"3539"],"3541":["39",0,"3530"],"3544":["39",0,"3543"],"3545":["39",0,"3530"],"3548":["39",0,"3547"],"3551":["39",0,"3550"],"3552":["39",0,"3530"],"3555":["39",0,"3554"],"3558":["39",0,"3557"],"3559":["39",0,"3530"],"3562":["39",0,"3561"],"3563":["39",0,"3530"],"3566":["39",0,"3565"],"3569":["39",0,"3568"],"3572":["39",0,"3571"],"3600":["39",0,"3599"],"3601":["39",0,"3530"],"3604":["39",0,"3603"],"3607":["39",0,"3606"],"3608":["39",0,"3530"],"3609":["39",0,"3530"],"3626":["39",0,"3625"],"3629":["39",0,"3628"],"3630":["39",0,"3619"],"3633":["39",0,"3632"],"3634":["39",0,"3619"],"3637":["39",0,"3636"],"3640":["39",0,"3639"],"3641":["39",0,"3619"],"3644":["39",0,"3643"],"3647":["39",0,"3646"],"3648":["39",0,"3619"],"3651":["39",0,"3650"],"3652":["39",0,"3619"],"3655":["39",0,"3654"],"3658":["39",0,"3657"],"3659":["39",0,"3619"],"3662":["39",0,"3661"],"3665":["39",0,"3664"],"3666":["39",0,"3619"],"3667":["39",0,"3619"],"3671":["39",0,"3670"],"3699":["39",0,"3698"],"3740":["39",0,"3739"],"3781":["39",0,"3780"],"3822":["39",0,"3821"],"3863":["39",0,"3862"],"3927":["39",1,"3926"],"3930":["39",0,"3929"],"3937":["39",0,"3936"],"3941":["39",0,"3940"],"3948":["39",0,"3947"],"3955":["39",0,"3954"],"3962":["39",0,"3961"],"3969":["39",0,"3968"],"3976":["39",0,"3975"],"4038":["39",0,"4037"],"4098":["39",0,"1622"],"4101":["39",0,"4100"],"4104":["39",0,"4103"],"4105":["39",0,"1622"],"4106":["39",0,"1622"],"4123":["39",0,"4122"],"4126":["39",0,"4125"],"4127":["39",1,"4116"],"4130":["39",0,"4129"],"4133":["39",0,"4132"],"4134":["39",0,"4116"],"4137":["39",0,"4136"],"4138":["39",0,"4116"],"4141":["39",0,"4140"],"4144":["39",0,"4143"],"4145":["39",1,"4116"],"4148":["39",0,"4147"],"4151":["39",0,"4150"],"4152":["39",0,"4116"],"4153":["39",0,"4116"],"4157":["39",0,"4156"],"4175":["39",0,"4174"],"4178":["39",0,"4177"],"4179":["39",0,"4166"],"4182":["39",0,"4181"],"4183":["39",0,"4166"],"4186":["39",0,"4185"],"4189":["39",0,"4188"],"4190":["39",0,"4166"],"4193":["39",0,"4192"],"4196":["39",0,"4195"],"4197":["39",0,"4166"],"4198":["39",0,"4166"],"4212":["39",1,"4211"],"4215":["39",0,"4214"],"4216":["39",0,"4205"],"4219":["39",0,"4218"],"4220":["39",0,"4205"],"4223":["39",0,"4222"],"4226":["39",0,"4225"],"4227":["39",0,"4205"],"4230":["39",0,"4229"],"4233":["39",0,"4232"],"4234":["39",0,"4205"],"4235":["39",0,"4205"],"4241":["39",0,"4240"],"4247":["39",0,"4246"],"4251":["39",0,"4250"],"4259":["39",0,"4258"],"4292":["39",0,"4291"],"4293":["39",0,"4285"],"4296":["39",0,"4295"],"4297":["39",0,"4285"],"4300":["39",0,"4299"],"4301":["39",0,"4285"],"4304":["39",0,"4303"],"4305":["39",0,"4285"],"4308":["39",0,"4307"],"4311":["39",0,"4310"],"4312":["39",0,"4285"],"4315":["39",0,"4314"],"4316":["39",0,"4285"],"4319":["39",0,"4318"],"4322":["39",0,"4321"],"4323":["39",0,"4285"],"4326":["39",0,"4325"],"4329":["39",0,"4328"],"4330":["39",0,"4285"],"4333":["39",0,"4332"],"4334":["39",0,"4285"],"4337":["39",1,"4336"],"4340":["39",0,"4339"],"4359":["39",0,"4285"],"4362":["39",0,"4361"],"4365":["39",0,"4364"],"4366":["39",0,"4285"],"4367":["39",0,"4285"],"4373":["39",0,"4372"],"4379":["39",0,"4378"],"4393":["39",0,"4392"],"4407":["39",0,"4406"],"4410":["39",1,"4409"],"4411":["39",0,"4400"],"4414":["39",0,"4413"],"4417":["39",0,"4416"],"4418":["39",0,"4400"],"4421":["39",0,"4420"],"4422":["39",0,"4400"],"4425":["39",0,"4424"],"4428":["39",0,"4427"],"4429":["39",0,"4400"],"4432":["39",0,"4431"],"4435":["39",0,"4434"],"4436":["39",0,"4400"],"4437":["39",0,"4400"],"4453":["39",0,"4452"],"4467":["39",2,"4466"],"4470":["39",0,"4469"],"4471":["39",0,"4460"],"4474":["39",0,"4473"],"4477":["39",0,"4476"],"4478":["39",1,"4460"],"4481":["39",0,"4480"],"4482":["39",0,"4460"],"4485":["39",0,"4484"],"4488":["39",0,"4487"],"4491":["39",0,"4490"],"4526":["39",0,"4460"],"4529":["39",0,"4528"],"4532":["39",0,"4531"],"4533":["39",2,"4460"],"4534":["39",0,"4460"],"4583":["39",0,"4582"],"4594":["39",0,"4593"],"4602":["39",0,"4601"],"4618":["39",0,"4617"],"4621":["39",0,"4620"],"4649":["39",0,"4611"],"4650":["39",1,"4611"],"4672":["39",0,"4671"],"4678":["39",0,"4677"],"4681":["39",0,"4680"],"4757":["39",0,"4756"],"4758":["39",0,"4750"],"4761":["39",0,"4760"],"4762":["39",0,"4750"],"4765":["39",0,"4764"],"4768":["39",0,"4767"],"4769":["39",0,"4750"],"4772":["39",0,"4771"],"4775":["39",0,"4774"],"4776":["39",0,"4750"],"4779":["39",0,"4778"],"4780":["39",0,"4750"],"4783":["39",0,"4782"],"4786":["39",0,"4785"],"4792":["39",0,"4750"],"4795":["39",0,"4794"],"4798":["39",0,"4797"],"4799":["39",0,"4750"],"4800":["39",0,"4750"],"4816":["39",0,"4815"],"4830":["39",0,"4829"],"4833":["39",0,"4832"],"4834":["39",0,"4823"],"4837":["39",0,"4836"],"4840":["39",0,"4839"],"4841":["39",0,"4823"],"4844":["39",0,"4843"],"4845":["39",0,"4823"],"4848":["39",1,"4847"],"4851":["39",0,"4850"],"4852":["39",0,"4823"],"4855":["39",0,"4854"],"4858":["39",0,"4857"],"4859":["39",0,"4823"],"4860":["39",0,"4823"],"4866":["39",1,"4865"],"4880":["39",0,"4879"],"4883":["39",0,"4882"],"4884":["39",0,"4873"],"4887":["39",0,"4886"],"4890":["39",0,"4889"],"4891":["39",0,"4873"],"4894":["39",0,"4893"],"4895":["39",0,"4873"],"4898":["39",0,"4897"],"4901":["39",0,"4900"],"4904":["39",1,"4903"],"4952":["39",0,"4951"],"4978":["39",0,"4873"],"4981":["39",0,"4980"],"4984":["39",0,"4983"],"4985":["39",0,"4873"],"4986":["39",0,"4873"],"5020":["39",0,"5019"],"5023":["39",0,"5022"],"5028":["39",0,"5027"],"5033":["39",0,"5032"],"5034":["39",0,"5011"],"5037":["39",0,"5036"],"5038":["39",0,"5011"],"5041":["39",0,"5040"],"5044":["39",0,"5043"],"5050":["39",0,"5049"],"171":["44",0,"170",["172"]],"291":["44",0,"290",["292"]],"411":["44",0,"410",["412"]],"618":["44",1,"617",["619"]],"683":["44",0,"682",["684"]],"748":["44",1,"747",["749"]],"806":["44",0,"805",["807"]],"875":["44",0,"874",["876"]],"913":["44",0,"912",["914"]],"1002":["44",2,"999",["1003"]],"1355":["44",3,"1352",["1356"]],"1400":["44",0,"1397",["1401"]],"1406":["44",0,"1403",["1407"]],"1610":["44",1,"1607",["1611"]],"1792":["44",0,"1789",["1793"]],"1841":["44",0,"1838",["1842"]],"1846":["44",0,"1843",["1847"]],"1851":["44",0,"1848",["1852"]],"1882":["44",0,"1879",["1883"]],"2144":["44",0,"2143",["2145"]],"2252":["44",1,"2249",["2253"]],"2330":["44",0,"2327",["2331"]],"2440":["44",0,"2437",["2441"]],"2550":["44",0,"2547",["2551"]],"2660":["44",0,"2657",["2661"]],"2770":["44",1,"2767",["2771"]],"2880":["44",1,"2877",["2881"]],"3982":["44",0,"3981",["3983"]],"4017":["44",0,"4014",["4018"]],"4023":["44",0,"4020",["4024"]],"4349":["44",0,"4348",["4350"]],"1639":["47",0,"1634"],"5051":["47",0,"5046"],"6":["48",0,null,["7"]],"7":["48",0,"6",["8"]],"12":["48",0,null,["13"]],"13":["48",0,"12",["14"]],"70":["48",1,null,["71"]],"71":["48",1,"70",["72"]],"103":["48",1,null,["104"]],"104":["48",0,"103",["105"]],"190":["48",0,null,["191"]],"191":["48",0,"190",["192"]],"223":["48",0,null,["224"]],"224":["48",0,"223",["225"]],"310":["48",0,null,["311"]],"311":["48",0,"310",["312"]],"343":["48",0,null,["344"]],"344":["48",0,"343",["345"]],"430":["48",0,null,["431"]],"431":["48",0,"430",["432"]],"463":["48",1,null,["464"]],"464":["48",1,"463",["465"]],"572":["48",0,"569",["573"]],"637":["48",0,"569",["638"]],"702":["48",0,"569",["703"]],"767":["48",1,"569",["768"]],"917":["48",1,"915",["918"]],"1004":["48",0,"952",["1005"]],"1183":["48",1,null,["1184"]],"1184":["48",1,"1183",["1185"]],"1200":["48",0,"1197",["1201"]],"1561":["48",0,"1560",["1562"]],"1562":["48",0,"1561",["1563"]],"1617":["48",0,"1616",["1618"]],"1618":["48",0,"1617",["1619"]],"3525":["48",0,"3524",["3526"]],"3526":["48",0,"3525",["3527"]],"3614":["48",0,"3613",["3615"]],"3615":["48",0,"3614",["3616"]],"4111":["48",0,"4110",["4112"]],"4112":["48",0,"4111",["4113"]],"4169":["48",1,"4166",["4170"]],"4201":["48",0,"4199",["4202"]],"4288":["48",0,"4285",["4289"]],"4395":["48",0,"4394",["4396"]],"4396":["48",0,"4395",["4397"]],"4455":["48",1,"4454",["4456"]],"4456":["48",1,"4455",["4457"]],"4578":["48",0,null,["4579"]],"4579":["48",0,"4578",["4580"]],"4597":["48",1,null,["4598"]],"4598":["48",1,"4597",["4599"]],"4614":["48",0,"4611",["4615"]],"4667":["48",0,null,["4668"]],"4668":["48",0,"4667",["4669"]],"4673":["48",1,null,["4674"]],"4674":["48",0,"4673",["4675"]],"4753":["48",0,"4750",["4754"]],"4818":["48",1,"4817",["4819"]],"4819":["48",0,"4818",["4820"]],"4868":["48",0,"4867",["4869"]],"4869":["48",0,"4868",["4870"]],"5014":["48",0,"5011",["5015"]],"27":["49",1,"26"],"42":["49",4,"40"],"61":["49",1,"60"],"527":["49",0,"525"],"528":["49",1,"525"],"529":["49",0,"525"],"530":["49",0,"525"],"540":["49",1,"539"],"556":["49",0,"550",["557"]],"828":["49",2,"826"],"845":["49",0,"844"],"855":["49",1,"853"],"856":["49",0,"853"],"857":["49",1,"853"],"858":["49",0,"853"],"859":["49",1,"853"],"860":["49",0,"853"],"861":["49",1,"853"],"882":["49",0,"881"],"885":["49",0,"884"],"888":["49",1,"887"],"969":["49",0,"967"],"990":["49",0,"989"],"1215":["49",1,"1209",["1216"]],"1240":["49",1,"1239"],"1259":["49",0,"1253",["1260"]],"1274":["49",0,"1268",["1275"]],"1338":["49",1,"1337"],"1364":["49",1,"1358",["1365"]],"1649":["49",1,"1648"],"1675":["49",1,"1673"],"1691":["49",1,"1685",["1692"]],"1699":["49",0,"1698"],"1718":["49",1,"1717"],"1722":["49",1,"1721"],"1726":["49",1,"1725"],"1730":["49",1,"1729"],"1734":["49",1,"1733"],"1738":["49",1,"1737"],"1753":["49",1,"1747",["1754"]],"1798":["49",1,"1797"],"1816":["49",1,"1815"],"1828":["49",1,"1827"],"1896":["49",1,"1890",["1897"]],"1912":["49",1,"1906",["1913"]],"1927":["49",1,"1921",["1928"]],"1943":["49",0,"1937",["1944"]],"2114":["49",1,"2112"],"2115":["49",0,"2112"],"2116":["49",1,"2112"],"2124":["49",1,"2122"],"2125":["49",0,"2122"],"2126":["49",1,"2122"],"2152":["49",1,"2146",["2153"]],"2164":["49",1,"2158",["2165"]],"2212":["49",1,"2211"],"2233":["49",0,"2232"],"2258":["49",0,"2257"],"2295":["49",1,"2294"],"2366":["49",0,"2365"],"2405":["49",0,"2404"],"2476":["49",1,"2475"],"2515":["49",1,"2514"],"2586":["49",0,"2585"],"2625":["49",1,"2624"],"2696":["49",1,"2695"],"2735":["49",1,"2734"],"2806":["49",1,"2805"],"2845":["49",0,"2844"],"2916":["49",1,"2915"],"2945":["49",0,"2939",["2946"]],"2957":["49",0,"2951",["2958"]],"2969":["49",1,"2963",["2970"]],"2982":["49",0,"2976",["2983"]],"3004":["49",0,"2998",["3005"]],"3029":["49",0,"3028"],"3051":["49",0,"3050"],"3073":["49",0,"3072"],"3095":["49",0,"3094"],"3117":["49",0,"3116"],"3139":["49",0,"3138"],"3161":["49",1,"3160"],"3183":["49",0,"3182"],"3205":["49",0,"3204"],"3227":["49",0,"3226"],"3249":["49",1,"3248"],"3271":["49",1,"3270"],"3293":["49",0,"3292"],"3310":["49",1,"3309"],"3320":["49",0,"3319"],"3332":["49",1,"3326",["3333"]],"3334":["49",1,"3326",["3335"]],"3336":["49",1,"3326",["3337"]],"3338":["49",3,"3326",["3339"]],"3340":["49",1,"3326",["3341"]],"3342":["49",1,"3326",["3343"]],"3344":["49",1,"3326",["3345"]],"3392":["49",1,"3386",["3393"]],"3399":["49",0,"3398"],"3428":["49",1,"3422",["3429"]],"3440":["49",0,"3434",["3441"]],"3447":["49",0,"3446"],"3472":["49",1,"3466",["3473"]],"3493":["49",1,"3487",["3494"]],"3495":["49",0,"3487",["3496"]],"3507":["49",0,"3501",["3508"]],"3509":["49",0,"3501",["3510"]],"3516":["49",0,"3515"],"3579":["49",9,"3578"],"3583":["49",1,"3582"],"3587":["49",1,"3586"],"3591":["49",1,"3590"],"3595":["49",0,"3594"],"3682":["49",1,"3676",["3683"]],"3691":["49",1,"3689"],"3710":["49",1,"3704",["3711"]],"3717":["49",0,"3716"],"3732":["49",0,"3730"],"3751":["49",1,"3745",["3752"]],"3758":["49",0,"3757"],"3773":["49",1,"3771"],"3792":["49",1,"3786",["3793"]],"3799":["49",0,"3798"],"3814":["49",0,"3812"],"3833":["49",1,"3827",["3834"]],"3840":["49",0,"3839"],"3855":["49",1,"3853"],"3874":["49",1,"3868",["3875"]],"3881":["49",0,"3880"],"3901":["49",1,"3895",["3902"]],"3908":["49",1,"3907"],"4050":["49",1,"4044",["4051"]],"4064":["49",0,"4058",["4065"]],"4071":["49",2,"4070"],"4096":["49",1,"4090",["4097"]],"4273":["49",1,"4267",["4274"]],"4498":["49",1,"4497"],"4502":["49",1,"4501"],"4506":["49",0,"4505"],"4514":["49",1,"4508",["4515"]],"4524":["49",0,"4518",["4525"]],"4629":["49",1,"4623",["4630"]],"4656":["49",1,"4655"],"4688":["49",2,"4687"],"4745":["49",14,"4739",["4746"]],"4911":["49",1,"4910"],"4915":["49",1,"4914"],"4919":["49",0,"4918"],"4928":["49",2,"4927"],"4944":["49",1,"4938",["4945"]],"4960":["49",1,"4954",["4961"]],"4991":["49",1,"4989"],"4992":["49",0,"4989"],"4993":["49",1,"4989"],"4994":["49",0,"4989"],"4995":["49",0,"4989"],"4996":["49",1,"4989"],"2379":["50",1,"2371"],"2489":["50",0,"2481"],"2599":["50",0,"2591"],"2709":["50",0,"2701"],"2819":["50",0,"2811"],"2929":["50",0,"2921"],"3014":["50",1,"3006"],"3354":["50",0,"3346"],"3482":["50",1,"3474"],"4705":["50",1,"4697"],"3998":["51",0,"3995"],"172":["52",0,"171"],"292":["52",0,"291"],"412":["52",0,"411"],"619":["52",0,"618"],"684":["52",0,"683"],"749":["52",0,"748"],"807":["52",0,"806"],"876":["52",0,"875"],"914":["52",0,"913"],"1003":["52",0,"1002"],"1356":["52",0,"1355"],"1401":["52",0,"1400"],"1407":["52",0,"1406"],"1611":["52",0,"1610"],"1793":["52",0,"1792"],"1842":["52",0,"1841"],"1847":["52",0,"1846"],"1852":["52",0,"1851"],"1883":["52",0,"1882"],"2145":["52",0,"2144"],"2253":["52",1,"2252"],"2331":["52",0,"2330"],"2441":["52",0,"2440"],"2551":["52",0,"2550"],"2661":["52",0,"2660"],"2771":["52",0,"2770"],"2881":["52",0,"2880"],"3983":["52",0,"3982"],"4018":["52",0,"4017"],"4024":["52",0,"4023"],"4350":["52",0,"4349"],"26":["54",1,"23",["27"]],"60":["54",1,"57",["61"]],"539":["54",1,"535",["540"]],"844":["54",0,"843",["845"]],"881":["54",1,"880",["882"]],"884":["54",0,"883",["885"]],"887":["54",1,"886",["888"]],"989":["54",0,"986",["990"]],"1239":["54",2,"1236",["1240"]],"1337":["54",1,"1334",["1338"]],"1648":["54",1,"1647",["1649"]],"1698":["54",0,"1694",["1699"]],"1717":["54",1,"1716",["1718"]],"1721":["54",1,"1720",["1722"]],"1725":["54",1,"1724",["1726"]],"1729":["54",1,"1728",["1730"]],"1733":["54",1,"1732",["1734"]],"1737":["54",1,"1736",["1738"]],"1797":["54",1,"1794",["1798"]],"1815":["54",1,"1811",["1816"]],"1827":["54",1,"1824",["1828"]],"2211":["54",1,"2208",["2212"]],"2232":["54",0,"2229",["2233"]],"2257":["54",0,"2254",["2258"]],"2294":["54",1,"2291",["2295"]],"2365":["54",0,"2362",["2366"]],"2404":["54",1,"2401",["2405"]],"2475":["54",1,"2472",["2476"]],"2514":["54",1,"2511",["2515"]],"2585":["54",0,"2582",["2586"]],"2624":["54",1,"2621",["2625"]],"2695":["54",1,"2692",["2696"]],"2734":["54",1,"2731",["2735"]],"2805":["54",1,"2802",["2806"]],"2844":["54",0,"2841",["2845"]],"2915":["54",1,"2912",["2916"]],"3028":["54",0,"3025",["3029"]],"3050":["54",0,"3047",["3051"]],"3072":["54",0,"3069",["3073"]],"3094":["54",0,"3091",["3095"]],"3116":["54",0,"3113",["3117"]],"3138":["54",0,"3135",["3139"]],"3160":["54",1,"3157",["3161"]],"3182":["54",0,"3179",["3183"]],"3204":["54",0,"3201",["3205"]],"3226":["54",0,"3223",["3227"]],"3248":["54",1,"3245",["3249"]],"3270":["54",1,"3267",["3271"]],"3292":["54",0,"3289",["3293"]],"3309":["54",1,"3306",["3310"]],"3319":["54",0,"3315",["3320"]],"3398":["54",1,"3394",["3399"]],"3446":["54",0,"3442",["3447"]],"3515":["54",0,"3511",["3516"]],"3578":["54",9,"3577",["3579"]],"3582":["54",1,"3581",["3583"]],"3586":["54",1,"3585",["3587"]],"3590":["54",1,"3589",["3591"]],"3594":["54",1,"3593",["3595"]],"3716":["54",0,"3712",["3717"]],"3757":["54",1,"3753",["3758"]],"3798":["54",0,"3794",["3799"]],"3839":["54",0,"3835",["3840"]],"3880":["54",0,"3876",["3881"]],"3907":["54",1,"3903",["3908"]],"4070":["54",2,"4066",["4071"]],"4497":["54",1,"4496",["4498"]],"4501":["54",1,"4500",["4502"]],"4505":["54",0,"4504",["4506"]],"4655":["54",3,"4652",["4656"]],"4687":["54",2,"4684",["4688"]],"4910":["54",1,"4909",["4911"]],"4914":["54",1,"4913",["4915"]],"4918":["54",0,"4917",["4919"]],"4927":["54",2,"4924",["4928"]],"25":["57",1,"24"],"59":["57",0,"58"],"988":["57",0,"987"],"1238":["57",0,"1237"],"1336":["57",1,"1335"],"1796":["57",0,"1795"],"1826":["57",0,"1825"],"2210":["57",0,"2209"],"2231":["57",0,"2230"],"2256":["57",0,"2255"],"2293":["57",0,"2292"],"2364":["57",1,"2363"],"2403":["57",0,"2402"],"2474":["57",0,"2473"],"2513":["57",0,"2512"],"2584":["57",0,"2583"],"2623":["57",0,"2622"],"2694":["57",0,"2693"],"2733":["57",0,"2732"],"2804":["57",0,"2803"],"2843":["57",0,"2842"],"2914":["57",0,"2913"],"3027":["57",0,"3026"],"3049":["57",0,"3048"],"3071":["57",0,"3070"],"3093":["57",0,"3092"],"3115":["57",0,"3114"],"3137":["57",0,"3136"],"3159":["57",0,"3158"],"3181":["57",1,"3180"],"3203":["57",0,"3202"],"3225":["57",0,"3224"],"3247":["57",0,"3246"],"3269":["57",0,"3268"],"3291":["57",0,"3290"],"3308":["57",1,"3307"],"4654":["57",0,"4653"],"4686":["57",0,"4685"],"4926":["57",0,"4925"],"1285":["58",0,"1282",["1286"]],"1305":["58",3,"1302",["1306"]],"1423":["58",3,"1420",["1424"]],"4008":["58",1,"4005",["4009"]],"1286":["60",0,"1285",["1287"]],"1306":["60",2,"1305",["1307","1308","1309"]],"1424":["60",1,"1423",["1425","1426","1427"]],"4009":["60",0,"4008",["4010"]],"1280":["61",0,"1279"],"4003":["61",0,"4002"],"1231":["62",0,"1228",["1232"]],"1326":["62",1,"1323",["1327"]],"4448":["62",1,"4445",["4449"]],"4645":["62",0,"4642",["4646"]],"4647":["62",1,"4642",["4648"]],"4737":["62",1,"4734",["4738"]],"4811":["62",0,"4808",["4812"]],"4976":["62",0,"4973",["4977"]],"1042":["70",10,"1041",["1043","1145"]],"1041":["73",35,"952",["1042","1158","1164","1165","1166","1167","1168","1169","1175"]],"29":["83",1,"28",["30"]],"44":["83",0,"43",["45"]],"63":["83",0,"62",["64"]],"532":["83",1,"531",["533"]],"542":["83",0,"541",["543"]],"552":["83",1,"551",["553"]],"563":["83",0,"562",["564"]],"830":["83",0,"829",["831"]],"863":["83",0,"862",["864"]],"971":["83",0,"970",["972"]],"992":["83",1,"991",["993"]],"1211":["83",0,"1210",["1212"]],"1242":["83",0,"1241",["1243"]],"1255":["83",0,"1254",["1256"]],"1265":["83",0,"1264",["1266"]],"1270":["83",0,"1269",["1271"]],"1312":["83",0,"1311",["1313"]],"1340":["83",0,"1339",["1341"]],"1360":["83",0,"1359",["1361"]],"1370":["83",0,"1369",["1371"]],"1430":["83",0,"1429",["1431"]],"1677":["83",0,"1676",["1678"]],"1687":["83",0,"1686",["1688"]],"1702":["83",0,"1701",["1703"]],"1745":["83",0,"1744",["1746"]],"1749":["83",0,"1748",["1750"]],"1800":["83",0,"1799",["1801"]],"1808":["83",0,"1807",["1809"]],"1818":["83",0,"1817",["1819"]],"1830":["83",1,"1829",["1831"]],"1888":["83",0,"1887",["1889"]],"1892":["83",0,"1891",["1893"]],"1904":["83",0,"1903",["1905"]],"1908":["83",0,"1907",["1909"]],"1919":["83",0,"1918",["1920"]],"1923":["83",0,"1922",["1924"]],"1935":["83",0,"1934",["1936"]],"1939":["83",0,"1938",["1940"]],"2118":["83",0,"2117",["2119"]],"2128":["83",0,"2127",["2129"]],"2148":["83",0,"2147",["2149"]],"2160":["83",0,"2159",["2161"]],"2214":["83",0,"2213",["2215"]],"2220":["83",1,"2219",["2221"]],"2235":["83",0,"2234",["2236"]],"2260":["83",0,"2259",["2261"]],"2272":["83",0,"2271",["2273"]],"2282":["83",0,"2281",["2283"]],"2297":["83",0,"2296",["2298"]],"2310":["83",0,"2309",["2311"]],"2356":["83",1,"2355",["2357"]],"2368":["83",0,"2367",["2369"]],"2381":["83",0,"2380",["2382"]],"2392":["83",0,"2391",["2393"]],"2407":["83",0,"2406",["2408"]],"2420":["83",1,"2419",["2421"]],"2466":["83",0,"2465",["2467"]],"2478":["83",0,"2477",["2479"]],"2491":["83",1,"2490",["2492"]],"2502":["83",0,"2501",["2503"]],"2517":["83",0,"2516",["2518"]],"2530":["83",1,"2529",["2531"]],"2576":["83",0,"2575",["2577"]],"2588":["83",0,"2587",["2589"]],"2601":["83",0,"2600",["2602"]],"2612":["83",0,"2611",["2613"]],"2627":["83",0,"2626",["2628"]],"2640":["83",0,"2639",["2641"]],"2686":["83",0,"2685",["2687"]],"2698":["83",0,"2697",["2699"]],"2711":["83",0,"2710",["2712"]],"2722":["83",0,"2721",["2723"]],"2737":["83",0,"2736",["2738"]],"2750":["83",0,"2749",["2751"]],"2796":["83",0,"2795",["2797"]],"2808":["83",0,"2807",["2809"]],"2821":["83",0,"2820",["2822"]],"2832":["83",0,"2831",["2833"]],"2847":["83",0,"2846",["2848"]],"2860":["83",0,"2859",["2861"]],"2906":["83",0,"2905",["2907"]],"2918":["83",0,"2917",["2919"]],"2931":["83",0,"2930",["2932"]],"2941":["83",0,"2940",["2942"]],"2953":["83",0,"2952",["2954"]],"2965":["83",0,"2964",["2966"]],"2978":["83",0,"2977",["2979"]],"3000":["83",0,"2999",["3001"]],"3016":["83",0,"3015",["3017"]],"3022":["83",0,"3021",["3023"]],"3031":["83",0,"3030",["3032"]],"3038":["83",0,"3037",["3039"]],"3044":["83",0,"3043",["3045"]],"3053":["83",0,"3052",["3054"]],"3060":["83",0,"3059",["3061"]],"3066":["83",0,"3065",["3067"]],"3075":["83",0,"3074",["3076"]],"3082":["83",1,"3081",["3083"]],"3088":["83",0,"3087",["3089"]],"3097":["83",0,"3096",["3098"]],"3104":["83",0,"3103",["3105"]],"3110":["83",0,"3109",["3111"]],"3119":["83",0,"3118",["3120"]],"3126":["83",0,"3125",["3127"]],"3132":["83",0,"3131",["3133"]],"3141":["83",0,"3140",["3142"]],"3148":["83",0,"3147",["3149"]],"3154":["83",0,"3153",["3155"]],"3163":["83",0,"3162",["3164"]],"3170":["83",0,"3169",["3171"]],"3176":["83",1,"3175",["3177"]],"3185":["83",1,"3184",["3186"]],"3192":["83",0,"3191",["3193"]],"3198":["83",0,"3197",["3199"]],"3207":["83",0,"3206",["3208"]],"3214":["83",0,"3213",["3215"]],"3220":["83",0,"3219",["3221"]],"3229":["83",0,"3228",["3230"]],"3236":["83",0,"3235",["3237"]],"3242":["83",0,"3241",["3243"]],"3251":["83",0,"3250",["3252"]],"3258":["83",0,"3257",["3259"]],"3264":["83",0,"3263",["3265"]],"3273":["83",0,"3272",["3274"]],"3280":["83",0,"3279",["3281"]],"3286":["83",0,"3285",["3287"]],"3295":["83",0,"3294",["3296"]],"3302":["83",0,"3301",["3303"]],"3312":["83",1,"3311",["3313"]],"3322":["83",0,"3321",["3323"]],"3328":["83",0,"3327",["3329"]],"3356":["83",0,"3355",["3357"]],"3379":["83",0,"3378",["3380"]],"3388":["83",0,"3387",["3389"]],"3402":["83",0,"3401",["3403"]],"3414":["83",0,"3413",["3415"]],"3424":["83",0,"3423",["3425"]],"3436":["83",0,"3435",["3437"]],"3449":["83",0,"3448",["3450"]],"3459":["83",0,"3458",["3460"]],"3468":["83",0,"3467",["3469"]],"3484":["83",0,"3483",["3485"]],"3489":["83",0,"3488",["3490"]],"3503":["83",0,"3502",["3504"]],"3518":["83",0,"3517",["3519"]],"3674":["83",0,"3673",["3675"]],"3678":["83",0,"3677",["3679"]],"3693":["83",0,"3692",["3694"]],"3702":["83",0,"3701",["3703"]],"3706":["83",0,"3705",["3707"]],"3720":["83",0,"3719",["3721"]],"3734":["83",1,"3733",["3735"]],"3743":["83",1,"3742",["3744"]],"3747":["83",0,"3746",["3748"]],"3761":["83",0,"3760",["3762"]],"3775":["83",0,"3774",["3776"]],"3784":["83",0,"3783",["3785"]],"3788":["83",0,"3787",["3789"]],"3802":["83",0,"3801",["3803"]],"3816":["83",0,"3815",["3817"]],"3825":["83",0,"3824",["3826"]],"3829":["83",0,"3828",["3830"]],"3843":["83",0,"3842",["3844"]],"3857":["83",0,"3856",["3858"]],"3866":["83",0,"3865",["3867"]],"3870":["83",1,"3869",["3871"]],"3884":["83",0,"3883",["3885"]],"3893":["83",0,"3892",["3894"]],"3897":["83",0,"3896",["3898"]],"3912":["83",0,"3911",["3913"]],"3919":["83",0,"3918",["3920"]],"4042":["83",0,"4041",["4043"]],"4046":["83",0,"4045",["4047"]],"4060":["83",1,"4059",["4061"]],"4081":["83",0,"4080",["4082"]],"4088":["83",1,"4087",["4089"]],"4092":["83",0,"4091",["4093"]],"4269":["83",0,"4268",["4270"]],"4279":["83",0,"4278",["4280"]],"4510":["83",0,"4509",["4511"]],"4520":["83",0,"4519",["4521"]],"4560":["83",0,"4559",["4561"]],"4625":["83",1,"4624",["4626"]],"4658":["83",0,"4657",["4659"]],"4690":["83",0,"4689",["4691"]],"4707":["83",0,"4706",["4708"]],"4722":["83",0,"4721",["4723"]],"4741":["83",0,"4740",["4742"]],"4930":["83",0,"4929",["4931"]],"4940":["83",0,"4939",["4941"]],"4956":["83",0,"4955",["4957"]],"4998":["83",0,"4997",["4999"]],"1":["84",1,null],"30":["84",0,"29"],"39":["84",0,null],"45":["84",0,"44"],"49":["84",1,null,["50","52"]],"64":["84",0,"63"],"106":["84",0,null],"168":["84",0,"109"],"226":["84",0,null],"288":["84",0,"229"],"346":["84",0,null],"408":["84",0,"349"],"466":["84",0,null],"524":["84",0,"469"],"533":["84",0,"532"],"543":["84",0,"542"],"549":["84",2,"469",["550"]],"553":["84",0,"552"],"564":["84",0,"563"],"615":["84",0,"569"],"680":["84",0,"569"],"745":["84",0,"569"],"803":["84",0,"569"],"825":["84",0,"469"],"831":["84",0,"830"],"842":["84",0,null],"846":["84",1,null,["847","849"]],"864":["84",0,"863"],"960":["84",0,"952",["961","963"]],"972":["84",0,"971"],"993":["84",1,"992"],"1169":["84",0,"1041",["1170","1172"]],"1189":["84",1,null,["1190","1192"]],"1208":["84",1,"1197",["1209"]],"1212":["84",0,"1211"],"1217":["84",1,"1197",["1218","1220"]],"1243":["84",0,"1242"],"1252":["84",1,"1251",["1253"]],"1256":["84",0,"1255"],"1266":["84",0,"1265"],"1271":["84",0,"1270"],"1291":["84",0,"1290",["1292","1294"]],"1300":["84",0,"1290"],"1313":["84",0,"1312"],"1341":["84",0,"1340"],"1347":["84",0,null,["1348","1349"]],"1361":["84",0,"1360"],"1371":["84",0,"1370"],"1386":["84",0,"1383"],"1409":["84",1,"1408",["1410","1412"]],"1418":["84",0,"1408"],"1431":["84",0,"1430"],"1449":["84",0,"1445"],"1633":["84",0,"1622"],"1642":["84",0,"1641"],"1672":["84",0,"1622"],"1678":["84",0,"1677"],"1684":["84",0,"1622"],"1688":["84",0,"1687"],"1703":["84",0,"1702"],"1712":["84",0,"1622"],"1715":["84",0,"1713"],"1719":["84",0,"1713"],"1723":["84",0,"1713"],"1727":["84",0,"1713"],"1731":["84",0,"1713"],"1735":["84",0,"1713"],"1739":["84",0,"1622"],"1744":["84",1,"1622",["1745","1747"]],"1746":["84",0,"1745"],"1750":["84",0,"1749"],"1759":["84",0,"1756"],"1801":["84",0,"1800"],"1809":["84",0,"1808"],"1819":["84",0,"1818"],"1831":["84",1,"1830"],"1853":["84",0,"1756"],"1887":["84",2,"1622",["1888","1890"]],"1889":["84",0,"1888"],"1893":["84",0,"1892"],"1903":["84",1,"1622",["1904","1906"]],"1905":["84",0,"1904"],"1909":["84",0,"1908"],"1918":["84",1,"1622",["1919","1921"]],"1920":["84",0,"1919"],"1924":["84",0,"1923"],"1934":["84",2,"1622",["1935","1937"]],"1936":["84",0,"1935"],"1940":["84",0,"1939"],"1956":["84",0,"1952"],"2106":["84",0,"2103"],"2119":["84",0,"2118"],"2129":["84",0,"2128"],"2149":["84",0,"2148"],"2161":["84",0,"2160"],"2167":["84",1,"2121",["2168","2170"]],"2215":["84",0,"2214"],"2221":["84",0,"2220"],"2236":["84",0,"2235"],"2261":["84",0,"2260"],"2273":["84",0,"2272"],"2283":["84",0,"2282"],"2298":["84",0,"2297"],"2311":["84",0,"2310"],"2336":["84",0,"2306"],"2342":["84",0,"2339"],"2357":["84",0,"2356"],"2369":["84",0,"2368"],"2382":["84",0,"2381"],"2393":["84",0,"2392"],"2408":["84",0,"2407"],"2421":["84",0,"2420"],"2446":["84",0,"2416"],"2452":["84",0,"2449"],"2467":["84",0,"2466"],"2479":["84",0,"2478"],"2492":["84",1,"2491"],"2503":["84",0,"2502"],"2518":["84",0,"2517"],"2531":["84",0,"2530"],"2556":["84",0,"2526"],"2562":["84",0,"2559"],"2577":["84",0,"2576"],"2589":["84",0,"2588"],"2602":["84",0,"2601"],"2613":["84",0,"2612"],"2628":["84",0,"2627"],"2641":["84",0,"2640"],"2666":["84",0,"2636"],"2672":["84",0,"2669"],"2687":["84",0,"2686"],"2699":["84",0,"2698"],"2712":["84",0,"2711"],"2723":["84",0,"2722"],"2738":["84",0,"2737"],"2751":["84",0,"2750"],"2776":["84",0,"2746"],"2782":["84",0,"2779"],"2797":["84",0,"2796"],"2809":["84",0,"2808"],"2822":["84",0,"2821"],"2833":["84",0,"2832"],"2848":["84",0,"2847"],"2861":["84",0,"2860"],"2886":["84",0,"2856"],"2892":["84",0,"2889"],"2907":["84",0,"2906"],"2919":["84",0,"2918"],"2932":["84",0,"2931"],"2942":["84",0,"2941"],"2954":["84",0,"2953"],"2966":["84",0,"2965"],"2979":["84",0,"2978"],"3001":["84",0,"3000"],"3017":["84",0,"3016"],"3023":["84",0,"3022"],"3032":["84",0,"3031"],"3039":["84",0,"3038"],"3045":["84",0,"3044"],"3054":["84",0,"3053"],"3061":["84",0,"3060"],"3067":["84",0,"3066"],"3076":["84",0,"3075"],"3083":["84",0,"3082"],"3089":["84",0,"3088"],"3098":["84",0,"3097"],"3105":["84",0,"3104"],"3111":["84",0,"3110"],"3120":["84",0,"3119"],"3127":["84",0,"3126"],"3133":["84",0,"3132"],"3142":["84",0,"3141"],"3149":["84",0,"3148"],"3155":["84",0,"3154"],"3164":["84",0,"3163"],"3171":["84",0,"3170"],"3177":["84",0,"3176"],"3186":["84",0,"3185"],"3193":["84",0,"3192"],"3199":["84",0,"3198"],"3208":["84",0,"3207"],"3215":["84",0,"3214"],"3221":["84",0,"3220"],"3230":["84",0,"3229"],"3237":["84",0,"3236"],"3243":["84",0,"3242"],"3252":["84",0,"3251"],"3259":["84",0,"3258"],"3265":["84",0,"3264"],"3274":["84",0,"3273"],"3281":["84",0,"3280"],"3287":["84",0,"3286"],"3296":["84",0,"3295"],"3303":["84",0,"3302"],"3313":["84",1,"3312"],"3323":["84",0,"3322"],"3329":["84",0,"3328"],"3357":["84",0,"3356"],"3380":["84",0,"3379"],"3389":["84",0,"3388"],"3403":["84",0,"3402"],"3415":["84",0,"3414"],"3425":["84",0,"3424"],"3437":["84",0,"3436"],"3450":["84",0,"3449"],"3460":["84",0,"3459"],"3469":["84",0,"3468"],"3485":["84",0,"3484"],"3490":["84",0,"3489"],"3504":["84",0,"3503"],"3519":["84",0,"3518"],"3573":["84",1,"3530"],"3576":["84",0,"3574"],"3580":["84",0,"3574"],"3584":["84",0,"3574"],"3588":["84",0,"3574"],"3592":["84",0,"3574"],"3596":["84",0,"3530"],"3673":["84",1,"1622",["3674","3676"]],"3675":["84",0,"3674"],"3679":["84",0,"3678"],"3688":["84",0,"3687"],"3694":["84",0,"3693"],"3701":["84",1,"3687",["3702","3704"]],"3703":["84",0,"3702"],"3707":["84",0,"3706"],"3721":["84",0,"3720"],"3729":["84",0,"3728"],"3735":["84",0,"3734"],"3742":["84",2,"3728",["3743","3745"]],"3744":["84",0,"3743"],"3748":["84",0,"3747"],"3762":["84",0,"3761"],"3770":["84",0,"3769"],"3776":["84",0,"3775"],"3783":["84",2,"3769",["3784","3786"]],"3785":["84",0,"3784"],"3789":["84",0,"3788"],"3803":["84",0,"3802"],"3811":["84",0,"3810"],"3817":["84",0,"3816"],"3824":["84",2,"3810",["3825","3827"]],"3826":["84",0,"3825"],"3830":["84",0,"3829"],"3844":["84",0,"3843"],"3852":["84",0,"3851"],"3858":["84",0,"3857"],"3865":["84",2,"3851",["3866","3868"]],"3867":["84",0,"3866"],"3871":["84",0,"3870"],"3885":["84",0,"3884"],"3892":["84",1,"1622",["3893","3895"]],"3894":["84",0,"3893"],"3898":["84",0,"3897"],"3913":["84",0,"3912"],"3920":["84",0,"3919"],"3985":["84",1,"3984",["3986","3987"]],"3988":["84",0,"3984",["3989","3991"]],"4029":["84",0,"3915"],"4035":["84",0,"4032"],"4041":["84",2,"1622",["4042","4044"]],"4043":["84",0,"4042"],"4047":["84",0,"4046"],"4057":["84",0,"1622"],"4061":["84",0,"4060"],"4082":["84",0,"4081"],"4087":["84",2,"1622",["4088","4090"]],"4089":["84",0,"4088"],"4093":["84",0,"4092"],"4264":["84",0,"4199"],"4266":["84",1,"4265",["4267"]],"4270":["84",0,"4269"],"4280":["84",0,"4279"],"4346":["84",0,"4285"],"4380":["84",1,"4199",["4381","4383"]],"4492":["84",0,"4460"],"4495":["84",0,"4493"],"4499":["84",0,"4493"],"4503":["84",0,"4493"],"4507":["84",0,"4460"],"4511":["84",0,"4510"],"4521":["84",0,"4520"],"4550":["84",1,"4549",["4551","4553"]],"4561":["84",0,"4560"],"4584":["84",1,null,["4585","4587"]],"4603":["84",1,null,["4604","4606"]],"4622":["84",2,"4611",["4623"]],"4626":["84",1,"4625"],"4631":["84",1,"4611",["4632","4634"]],"4659":["84",0,"4658"],"4691":["84",0,"4690"],"4708":["84",0,"4707"],"4723":["84",0,"4722"],"4742":["84",0,"4741"],"4905":["84",0,"4873"],"4908":["84",0,"4906"],"4912":["84",0,"4906"],"4916":["84",0,"4906"],"4920":["84",0,"4873"],"4923":["84",0,"4921"],"4931":["84",0,"4930"],"4937":["84",1,"4873"],"4941":["84",0,"4940"],"4953":["84",1,"4873",["4954"]],"4957":["84",0,"4956"],"4962":["84",119,"4873",["4963","4965"]],"4999":["84",0,"4998"],"5045":["84",0,"5011"],"1299":["86",0,"1298"],"1417":["86",0,"1416"],"2166":["86",0,"2121"],"2269":["86",0,"2268"],"2377":["86",0,"2376"],"2487":["86",0,"2486"],"2597":["86",0,"2596"],"2707":["86",0,"2706"],"2817":["86",0,"2816"],"2927":["86",0,"2926"],"3012":["86",0,"3011"],"3352":["86",0,"3351"],"3411":["86",0,"3410"],"3480":["86",0,"3479"],"4276":["86",0,"4275"],"4703":["86",0,"4702"],"1298":["87",1,"1290",["1299"]],"1357":["87",0,null],"1416":["87",0,"1408",["1417"]],"2268":["87",0,"2263",["2269"]],"2376":["87",0,"2371",["2377"]],"2486":["87",0,"2481",["2487"]],"2596":["87",0,"2591",["2597"]],"2706":["87",0,"2701",["2707"]],"2816":["87",0,"2811",["2817"]],"2926":["87",0,"2921",["2927"]],"3011":["87",0,"3006",["3012"]],"3351":["87",0,"3346",["3352"]],"3410":["87",0,"3405",["3411"]],"3479":["87",0,"3474",["3480"]],"4275":["87",0,"4265",["4276"]],"4702":["87",0,"4697",["4703"]],"28":["88",1,"23",["29","31"]],"43":["88",0,"40",["44","46"]],"62":["88",1,"57",["63","65"]],"531":["88",1,"525",["532","534"]],"541":["88",0,"535",["542","544"]],"551":["88",1,"550",["552","554","555"]],"562":["88",1,"558",["563","565"]],"829":["88",0,"826",["830","832"]],"862":["88",0,"853",["863","865"]],"970":["88",0,"967",["971","973"]],"991":["88",1,"986",["992","994"]],"1210":["88",0,"1209",["1211","1213","1214"]],"1241":["88",0,"1236",["1242","1244"]],"1254":["88",1,"1253",["1255","1257","1258"]],"1264":["88",0,"1263",["1265","1267"]],"1269":["88",1,"1268",["1270","1272","1273"]],"1311":["88",1,"1290",["1312","1314"]],"1339":["88",1,"1334",["1340","1342"]],"1359":["88",0,"1358",["1360","1362","1363"]],"1369":["88",0,"1368",["1370","1372"]],"1429":["88",1,"1408",["1430","1432"]],"1676":["88",0,"1673",["1677","1679"]],"1686":["88",0,"1685",["1687","1689","1690"]],"1701":["88",0,"1694",["1702","1704"]],"1748":["88",0,"1747",["1749","1751","1752"]],"1799":["88",0,"1794",["1800","1802"]],"1807":["88",1,"1806",["1808","1810"]],"1817":["88",0,"1811",["1818","1820"]],"1829":["88",1,"1824",["1830","1832"]],"1891":["88",0,"1890",["1892","1894","1895"]],"1907":["88",0,"1906",["1908","1910","1911"]],"1922":["88",0,"1921",["1923","1925","1926"]],"1938":["88",1,"1937",["1939","1941","1942"]],"2117":["88",0,"2112",["2118","2120"]],"2127":["88",0,"2122",["2128","2130"]],"2147":["88",0,"2146",["2148","2150","2151"]],"2159":["88",0,"2158",["2160","2162","2163"]],"2213":["88",0,"2208",["2214","2216"]],"2219":["88",1,"2218",["2220","2222"]],"2234":["88",1,"2229",["2235","2237"]],"2259":["88",1,"2254",["2260","2262"]],"2271":["88",0,"2263",["2272","2274"]],"2281":["88",0,"2280",["2282","2284"]],"2296":["88",0,"2291",["2297","2299"]],"2309":["88",0,"2308",["2310","2312"]],"2355":["88",1,"2354",["2356","2358"]],"2367":["88",1,"2362",["2368","2370"]],"2380":["88",0,"2371",["2381","2383"]],"2391":["88",0,"2390",["2392","2394"]],"2406":["88",0,"2401",["2407","2409"]],"2419":["88",1,"2418",["2420","2422"]],"2465":["88",0,"2464",["2466","2468"]],"2477":["88",0,"2472",["2478","2480"]],"2490":["88",1,"2481",["2491","2493"]],"2501":["88",0,"2500",["2502","2504"]],"2516":["88",0,"2511",["2517","2519"]],"2529":["88",1,"2528",["2530","2532"]],"2575":["88",0,"2574",["2576","2578"]],"2587":["88",1,"2582",["2588","2590"]],"2600":["88",0,"2591",["2601","2603"]],"2611":["88",0,"2610",["2612","2614"]],"2626":["88",0,"2621",["2627","2629"]],"2639":["88",0,"2638",["2640","2642"]],"2685":["88",0,"2684",["2686","2688"]],"2697":["88",0,"2692",["2698","2700"]],"2710":["88",0,"2701",["2711","2713"]],"2721":["88",0,"2720",["2722","2724"]],"2736":["88",0,"2731",["2737","2739"]],"2749":["88",0,"2748",["2750","2752"]],"2795":["88",0,"2794",["2796","2798"]],"2807":["88",0,"2802",["2808","2810"]],"2820":["88",0,"2811",["2821","2823"]],"2831":["88",1,"2830",["2832","2834"]],"2846":["88",1,"2841",["2847","2849"]],"2859":["88",0,"2858",["2860","2862"]],"2905":["88",0,"2904",["2906","2908"]],"2917":["88",0,"2912",["2918","2920"]],"2930":["88",0,"2921",["2931","2933"]],"2940":["88",1,"2939",["2941","2943","2944"]],"2952":["88",1,"2951",["2953","2955","2956"]],"2964":["88",0,"2963",["2965","2967","2968"]],"2977":["88",1,"2976",["2978","2980","2981"]],"2999":["88",1,"2998",["3000","3002","3003"]],"3015":["88",0,"3006",["3016","3018"]],"3021":["88",0,"3020",["3022","3024"]],"3030":["88",1,"3025",["3031","3033"]],"3037":["88",0,"3036",["3038","3040"]],"3043":["88",1,"3042",["3044","3046"]],"3052":["88",1,"3047",["3053","3055"]],"3059":["88",0,"3058",["3060","3062"]],"3065":["88",0,"3064",["3066","3068"]],"3074":["88",0,"3069",["3075","3077"]],"3081":["88",1,"3080",["3082","3084"]],"3087":["88",0,"3086",["3088","3090"]],"3096":["88",0,"3091",["3097","3099"]],"3103":["88",0,"3102",["3104","3106"]],"3109":["88",0,"3108",["3110","3112"]],"3118":["88",0,"3113",["3119","3121"]],"3125":["88",0,"3124",["3126","3128"]],"3131":["88",0,"3130",["3132","3134"]],"3140":["88",0,"3135",["3141","3143"]],"3147":["88",0,"3146",["3148","3150"]],"3153":["88",0,"3152",["3154","3156"]],"3162":["88",0,"3157",["3163","3165"]],"3169":["88",1,"3168",["3170","3172"]],"3175":["88",1,"3174",["3176","3178"]],"3184":["88",1,"3179",["3185","3187"]],"3191":["88",1,"3190",["3192","3194"]],"3197":["88",0,"3196",["3198","3200"]],"3206":["88",0,"3201",["3207","3209"]],"3213":["88",1,"3212",["3214","3216"]],"3219":["88",0,"3218",["3220","3222"]],"3228":["88",1,"3223",["3229","3231"]],"3235":["88",0,"3234",["3236","3238"]],"3241":["88",0,"3240",["3242","3244"]],"3250":["88",0,"3245",["3251","3253"]],"3257":["88",0,"3256",["3258","3260"]],"3263":["88",0,"3262",["3264","3266"]],"3272":["88",0,"3267",["3273","3275"]],"3279":["88",1,"3278",["3280","3282"]],"3285":["88",0,"3284",["3286","3288"]],"3294":["88",0,"3289",["3295","3297"]],"3301":["88",0,"3300",["3302","3304"]],"3311":["88",1,"3306",["3312","3314"]],"3321":["88",0,"3315",["3322","3324"]],"3327":["88",0,"3326",["3328","3330","3331"]],"3355":["88",0,"3346",["3356","3358"]],"3378":["88",0,"3377",["3379","3381"]],"3387":["88",0,"3386",["3388","3390","3391"]],"3401":["88",0,"3394",["3402","3404"]],"3413":["88",0,"3405",["3414","3416"]],"3423":["88",0,"3422",["3424","3426","3427"]],"3435":["88",0,"3434",["3436","3438","3439"]],"3448":["88",0,"3442",["3449","3451"]],"3458":["88",0,"3457",["3459","3461"]],"3467":["88",0,"3466",["3468","3470","3471"]],"3483":["88",0,"3474",["3484","3486"]],"3488":["88",0,"3487",["3489","3491","3492"]],"3502":["88",0,"3501",["3503","3505","3506"]],"3517":["88",0,"3511",["3518","3520"]],"3677":["88",0,"3676",["3678","3680","3681"]],"3692":["88",0,"3689",["3693","3695"]],"3705":["88",0,"3704",["3706","3708","3709"]],"3719":["88",0,"3712",["3720","3722"]],"3733":["88",1,"3730",["3734","3736"]],"3746":["88",0,"3745",["3747","3749","3750"]],"3760":["88",0,"3753",["3761","3763"]],"3774":["88",0,"3771",["3775","3777"]],"3787":["88",0,"3786",["3788","3790","3791"]],"3801":["88",0,"3794",["3802","3804"]],"3815":["88",1,"3812",["3816","3818"]],"3828":["88",1,"3827",["3829","3831","3832"]],"3842":["88",0,"3835",["3843","3845"]],"3856":["88",0,"3853",["3857","3859"]],"3869":["88",1,"3868",["3870","3872","3873"]],"3883":["88",0,"3876",["3884","3886"]],"3896":["88",0,"3895",["3897","3899","3900"]],"3911":["88",0,"3903",["3912","3914"]],"3918":["88",0,"3917",["3919","3921"]],"4045":["88",1,"4044",["4046","4048","4049"]],"4059":["88",1,"4058",["4060","4062","4063"]],"4080":["88",0,"4066",["4081","4083"]],"4091":["88",0,"4090",["4092","4094","4095"]],"4268":["88",0,"4267",["4269","4271","4272"]],"4278":["88",0,"4265",["4279","4281"]],"4509":["88",2,"4508",["4510","4512","4513"]],"4519":["88",1,"4518",["4520","4522","4523"]],"4559":["88",0,"4557",["4560","4562"]],"4624":["88",1,"4623",["4625","4627","4628"]],"4657":["88",0,"4652",["4658","4660"]],"4689":["88",0,"4684",["4690","4692"]],"4706":["88",0,"4697",["4707","4709"]],"4721":["88",0,"4719",["4722","4724"]],"4740":["88",0,"4739",["4741","4743","4744"]],"4929":["88",0,"4924",["4930","4932"]],"4939":["88",0,"4938",["4940","4942","4943"]],"4955":["88",0,"4954",["4956","4958","4959"]],"4997":["88",0,"4989",["4998","5000"]],"32":["89",0,"22",["33"]],"66":["89",0,"55",["67"]],"108":["89",11,"107",["109"]],"228":["89",11,"227",["229"]],"348":["89",11,"347",["349"]],"468":["89",52,"467",["469"]],"568":["89",34,"567",["569"]],"920":["89",4,"919",["921"]],"1007":["89",4,"1006",["1008"]],"1196":["89",5,"1195",["1197"]],"1245":["89",0,"1235",["1246"]],"1343":["89",0,"1332",["1344"]],"1382":["89",1,"1381",["1383"]],"1438":["89",380,"1437",["1439"]],"1565":["89",5,"1564",["1566"]],"1621":["89",350,"1620",["1622"]],"1705":["89",0,"1622",["1706"]],"1755":["89",18,"1622",["1756"]],"1899":["89",0,"1898",["1900"]],"1930":["89",1,"1929",["1931"]],"1946":["89",242,"1945",["1947"]],"2102":["89",1,"2099",["2103"]],"2174":["89",0,"2121",["2175"]],"2179":["89",0,"2178",["2180"]],"2338":["89",1,"2337",["2339"]],"2448":["89",1,"2447",["2449"]],"2558":["89",1,"2557",["2559"]],"2668":["89",1,"2667",["2669"]],"2778":["89",1,"2777",["2779"]],"2888":["89",1,"2887",["2889"]],"2971":["89",0,"2111",["2972"]],"2984":["89",0,"2111",["2985"]],"3529":["89",21,"3528",["3530"]],"3618":["89",6,"3617",["3619"]],"3724":["89",0,"3723",["3725"]],"3765":["89",1,"3764",["3766"]],"3806":["89",0,"3805",["3807"]],"3847":["89",0,"3846",["3848"]],"3888":["89",0,"3887",["3889"]],"4031":["89",1,"4030",["4032"]],"4053":["89",0,"4052",["4054"]],"4115":["89",5,"4114",["4116"]],"4165":["89",4,"4164",["4166"]],"4204":["89",3,"4203",["4205"]],"4254":["89",0,"4253",["4255"]],"4284":["89",10,"4283",["4285"]],"4399":["89",8,"4398",["4400"]],"4459":["89",21,"4458",["4460"]],"4610":["89",8,"4609",["4611"]],"4661":["89",0,"4651",["4662"]],"4693":["89",1,"4683",["4694"]],"4749":["89",7,"4748",["4750"]],"4822":["89",5,"4821",["4823"]],"4872":["89",152,"4871",["4873"]],"4933":["89",0,"4921",["4934"]],"4946":["89",0,"4873",["4947"]],"5010":["89",13,"5009",["5011"]],"1262":["91",0,"1261",["1263"]],"1367":["91",1,"1366",["1368"]],"1805":["91",1,"1756",["1806"]],"2217":["91",1,"2111",["2218"]],"2279":["91",1,"2111",["2280"]],"2307":["91",0,"2306",["2308"]],"2353":["91",1,"2352",["2354"]],"2389":["91",0,"2111",["2390"]],"2417":["91",1,"2416",["2418"]],"2463":["91",0,"2462",["2464"]],"2499":["91",0,"2111",["2500"]],"2527":["91",1,"2526",["2528"]],"2573":["91",0,"2572",["2574"]],"2609":["91",0,"2111",["2610"]],"2637":["91",0,"2636",["2638"]],"2683":["91",1,"2682",["2684"]],"2719":["91",1,"2111",["2720"]],"2747":["91",0,"2746",["2748"]],"2793":["91",0,"2792",["2794"]],"2829":["91",1,"2111",["2830"]],"2857":["91",1,"2856",["2858"]],"2903":["91",0,"2902",["2904"]],"3019":["91",1,"2111",["3020"]],"3035":["91",0,"3034",["3036"]],"3041":["91",1,"2111",["3042"]],"3057":["91",1,"3056",["3058"]],"3063":["91",0,"2111",["3064"]],"3079":["91",1,"3078",["3080"]],"3085":["91",0,"2111",["3086"]],"3101":["91",1,"3100",["3102"]],"3107":["91",0,"2111",["3108"]],"3123":["91",0,"3122",["3124"]],"3129":["91",1,"2111",["3130"]],"3145":["91",0,"3144",["3146"]],"3151":["91",1,"2111",["3152"]],"3167":["91",1,"3166",["3168"]],"3173":["91",1,"2111",["3174"]],"3189":["91",1,"3188",["3190"]],"3195":["91",0,"2111",["3196"]],"3211":["91",1,"3210",["3212"]],"3217":["91",0,"2111",["3218"]],"3233":["91",0,"3232",["3234"]],"3239":["91",1,"2111",["3240"]],"3255":["91",1,"3254",["3256"]],"3261":["91",0,"2111",["3262"]],"3277":["91",1,"3276",["3278"]],"3283":["91",0,"2111",["3284"]],"3299":["91",0,"3298",["3300"]],"3376":["91",0,"3375",["3377"]],"3456":["91",0,"3455",["3457"]],"3916":["91",0,"3915",["3917"]],"1261":["92",0,"1251",["1262"]],"1366":["92",1,null,["1367"]],"2352":["92",1,"2111",["2353"]],"2462":["92",0,"2111",["2463"]],"2572":["92",0,"2111",["2573"]],"2682":["92",1,"2111",["2683"]],"2792":["92",0,"2111",["2793"]],"2902":["92",0,"2111",["2903"]],"3034":["92",0,"2111",["3035"]],"3056":["92",1,"2111",["3057"]],"3078":["92",1,"2111",["3079"]],"3100":["92",1,"2111",["3101"]],"3122":["92",0,"2111",["3123"]],"3144":["92",0,"2111",["3145"]],"3166":["92",1,"2111",["3167"]],"3188":["92",1,"2111",["3189"]],"3210":["92",1,"2111",["3211"]],"3232":["92",0,"2111",["3233"]],"3254":["92",1,"2111",["3255"]],"3276":["92",1,"2111",["3277"]],"3298":["92",0,"2111",["3299"]],"3375":["92",1,"3305",["3376"]],"3455":["93",0,"3305",["3456"]],"1263":["94",0,"1262",["1264"]],"1368":["94",0,"1367",["1369"]],"1806":["94",1,"1805",["1807"]],"2218":["94",1,"2217",["2219"]],"2280":["94",1,"2279",["2281"]],"2308":["94",0,"2307",["2309"]],"2354":["94",1,"2353",["2355"]],"2390":["94",0,"2389",["2391"]],"2418":["94",1,"2417",["2419"]],"2464":["94",0,"2463",["2465"]],"2500":["94",0,"2499",["2501"]],"2528":["94",1,"2527",["2529"]],"2574":["94",0,"2573",["2575"]],"2610":["94",0,"2609",["2611"]],"2638":["94",0,"2637",["2639"]],"2684":["94",1,"2683",["2685"]],"2720":["94",0,"2719",["2721"]],"2748":["94",0,"2747",["2749"]],"2794":["94",0,"2793",["2795"]],"2830":["94",1,"2829",["2831"]],"2858":["94",1,"2857",["2859"]],"2904":["94",0,"2903",["2905"]],"3020":["94",0,"3019",["3021"]],"3036":["94",0,"3035",["3037"]],"3042":["94",1,"3041",["3043"]],"3058":["94",1,"3057",["3059"]],"3064":["94",0,"3063",["3065"]],"3080":["94",1,"3079",["3081"]],"3086":["94",0,"3085",["3087"]],"3102":["94",0,"3101",["3103"]],"3108":["94",0,"3107",["3109"]],"3124":["94",0,"3123",["3125"]],"3130":["94",0,"3129",["3131"]],"3146":["94",0,"3145",["3147"]],"3152":["94",1,"3151",["3153"]],"3168":["94",1,"3167",["3169"]],"3174":["94",1,"3173",["3175"]],"3190":["94",1,"3189",["3191"]],"3196":["94",0,"3195",["3197"]],"3212":["94",1,"3211",["3213"]],"3218":["94",0,"3217",["3219"]],"3234":["94",0,"3233",["3235"]],"3240":["94",1,"3239",["3241"]],"3256":["94",0,"3255",["3257"]],"3262":["94",0,"3261",["3263"]],"3278":["94",1,"3277",["3279"]],"3284":["94",0,"3283",["3285"]],"3300":["94",0,"3299",["3301"]],"3377":["94",0,"3376",["3378"]],"3457":["94",0,"3456",["3458"]],"3917":["94",0,"3916",["3918"]],"1289":["96",0,"1251"],"2950":["96",0,"2111"],"2962":["96",0,"2111"],"2975":["96",0,"2111"],"3421":["96",0,"3305"],"3433":["96",0,"3305"],"3500":["96",0,"3305"],"557":["97",0,"556"],"1216":["97",0,"1215"],"1260":["97",0,"1259"],"1275":["97",0,"1274"],"1365":["97",0,"1364"],"1692":["97",1,"1691"],"1754":["97",0,"1753"],"1897":["97",0,"1896"],"1913":["97",0,"1912"],"1928":["97",0,"1927"],"1944":["97",0,"1943"],"2153":["97",0,"2152"],"2165":["97",0,"2164"],"2946":["97",0,"2945"],"2958":["97",0,"2957"],"2970":["97",0,"2969"],"2983":["97",0,"2982"],"3005":["97",0,"3004"],"3333":["97",0,"3332"],"3335":["97",0,"3334"],"3337":["97",1,"3336"],"3339":["97",0,"3338"],"3341":["97",0,"3340"],"3343":["97",0,"3342"],"3345":["97",1,"3344"],"3393":["97",0,"3392"],"3429":["97",0,"3428"],"3441":["97",0,"3440"],"3473":["97",0,"3472"],"3494":["97",0,"3493"],"3496":["97",0,"3495"],"3508":["97",0,"3507"],"3510":["97",0,"3509"],"3683":["97",0,"3682"],"3711":["97",0,"3710"],"3752":["97",0,"3751"],"3793":["97",0,"3792"],"3834":["97",0,"3833"],"3875":["97",0,"3874"],"3902":["97",0,"3901"],"4051":["97",1,"4050"],"4065":["97",0,"4064"],"4097":["97",0,"4096"],"4274":["97",0,"4273"],"4515":["97",0,"4514"],"4525":["97",0,"4524"],"4630":["97",0,"4629"],"4746":["97",0,"4745"],"4945":["97",0,"4944"],"4961":["97",0,"4960"],"868":["101",1,"866",["869","870"]],"893":["101",1,"890",["894","895"]],"900":["101",1,"897",["901","902"]],"907":["101",1,"904",["908","909"]],"976":["101",0,"974",["977","978"]],"1375":["101",1,"1373",["1376","1377"]],"1381":["101",1,"1379",["1382"]],"1454":["101",1,"1452",["1455","1456"]],"1461":["101",1,"1459",["1462","1463"]],"1468":["101",1,"1466",["1469","1470"]],"1475":["101",1,"1473",["1476","1477"]],"1482":["101",1,"1480",["1483","1484"]],"1489":["101",0,"1487",["1490","1491"]],"1496":["101",0,"1494",["1497","1498"]],"1503":["101",1,"1501",["1504","1505"]],"1510":["101",1,"1508",["1511","1512"]],"1517":["101",1,"1515",["1518","1519"]],"1524":["101",0,"1522",["1525","1526"]],"1643":["101",0,"1641",["1644","1645"]],"1680":["101",0,"1622",["1681","1682"]],"1740":["101",1,"1622",["1741","1742"]],"1762":["101",1,"1760",["1763","1764","1766","1767"]],"1772":["101",2,"1770",["1773","1774","1777","1778"]],"1856":["101",1,"1854",["1857","1858","1860","1861"]],"1866":["101",0,"1864",["1867","1868"]],"1961":["101",1,"1959",["1962","1963"]],"1968":["101",1,"1966",["1969","1970","1973","1974"]],"1979":["101",1,"1977",["1980","1981"]],"1986":["101",1,"1984",["1987","1988"]],"1993":["101",0,"1991",["1994","1995"]],"2000":["101",0,"1998",["2001","2002"]],"2007":["101",0,"2005",["2008","2009"]],"2014":["101",1,"2012",["2015","2016","2019"]],"2024":["101",0,"2022",["2025","2026"]],"2031":["101",1,"2029",["2032","2033"]],"2038":["101",1,"2036",["2039","2040"]],"2045":["101",1,"2043",["2046","2047"]],"2052":["101",0,"2050",["2053","2054"]],"2133":["101",1,"2131",["2134","2135","2138","2139"]],"2156":["101",1,"2154",["2157"]],"2185":["101",1,"2183",["2186","2187","2190","2191"]],"2196":["101",0,"2194",["2197","2198"]],"2203":["101",0,"2201",["2204","2205"]],"2225":["101",1,"2223",["2226","2227"]],"2240":["101",1,"2238",["2241","2242","2244","2245"]],"2287":["101",1,"2285",["2288","2289"]],"2302":["101",1,"2300",["2303","2304"]],"2315":["101",0,"2313",["2316","2317"]],"2321":["101",1,"2319",["2322","2323"]],"2337":["101",1,"2306",["2338"]],"2397":["101",0,"2395",["2398","2399"]],"2412":["101",0,"2410",["2413","2414"]],"2425":["101",0,"2423",["2426","2427"]],"2431":["101",0,"2429",["2432","2433"]],"2447":["101",1,"2416",["2448"]],"2507":["101",1,"2505",["2508","2509"]],"2522":["101",1,"2520",["2523","2524"]],"2535":["101",0,"2533",["2536","2537"]],"2541":["101",0,"2539",["2542","2543"]],"2557":["101",1,"2526",["2558"]],"2617":["101",1,"2615",["2618","2619"]],"2632":["101",1,"2630",["2633","2634"]],"2645":["101",0,"2643",["2646","2647"]],"2651":["101",1,"2649",["2652","2653"]],"2667":["101",1,"2636",["2668"]],"2727":["101",1,"2725",["2728","2729"]],"2742":["101",1,"2740",["2743","2744"]],"2755":["101",1,"2753",["2756","2757"]],"2761":["101",0,"2759",["2762","2763"]],"2777":["101",1,"2746",["2778"]],"2837":["101",0,"2835",["2838","2839"]],"2852":["101",0,"2850",["2853","2854"]],"2865":["101",0,"2863",["2866","2867"]],"2871":["101",0,"2869",["2872","2873"]],"2887":["101",1,"2856",["2888"]],"2990":["101",1,"2988",["2991","2992"]],"3597":["101",0,"3530",["3598","3599"]],"3696":["101",1,"3687",["3697","3698"]],"3737":["101",0,"3728",["3738","3739"]],"3778":["101",1,"3769",["3779","3780"]],"3819":["101",0,"3810",["3820","3821"]],"3860":["101",1,"3851",["3861","3862"]],"3924":["101",1,"3922",["3925","3926","3928","3929"]],"3934":["101",1,"3932",["3935","3936","3939","3940"]],"3945":["101",0,"3943",["3946","3947"]],"3952":["101",1,"3950",["3953","3954"]],"3959":["101",1,"3957",["3960","3961"]],"3966":["101",0,"3964",["3967","3968"]],"3973":["101",0,"3971",["3974","3975"]],"4030":["101",2,"3915",["4031"]],"4238":["101",0,"4236",["4239","4240"]],"4244":["101",1,"4242",["4245","4246","4249","4250"]],"4370":["101",1,"4368",["4371","4372"]],"4376":["101",0,"4374",["4377","4378"]],"4390":["101",1,"4199",["4391","4392"]],"4450":["101",0,"4199",["4451","4452"]],"4516":["101",0,"4460",["4517"]],"4813":["101",0,null,["4814","4815"]],"4863":["101",1,null,["4864","4865"]],"169":["108",0,"109",["170"]],"289":["108",1,"229",["290"]],"409":["108",1,"349",["410"]],"616":["108",1,"569",["617"]],"681":["108",0,"569",["682"]],"746":["108",1,"569",["747"]],"804":["108",0,"569",["805"]],"873":["108",0,null,["874"]],"911":["108",0,null,["912"]],"998":["108",3,"952",["999"]],"1351":["108",3,null,["1352"]],"1396":["108",0,null,["1397"]],"1402":["108",1,null,["1403"]],"1606":["108",1,"1559",["1607"]],"1788":["108",0,"1756",["1789"]],"1836":["108",2,"1756",["1837"]],"1878":["108",1,"1756",["1879"]],"2142":["108",1,"2121",["2143"]],"2248":["108",1,"2111",["2249"]],"2326":["108",1,"2306",["2327"]],"2436":["108",0,"2416",["2437"]],"2546":["108",0,"2526",["2547"]],"2656":["108",1,"2636",["2657"]],"2766":["108",1,"2746",["2767"]],"2876":["108",1,"2856",["2877"]],"3980":["108",0,"3915",["3981"]],"4013":["108",1,"3915",["4014"]],"4019":["108",1,"3915",["4020"]],"4347":["108",0,"4285",["4348"]],"177":["112",1,"109",["178","180"]],"297":["112",0,"229",["298","300"]],"417":["112",0,"349",["418","420"]],"545":["112",2,"469",["546","548"]],"624":["112",0,"569",["625","627"]],"689":["112",1,"569",["690","692"]],"754":["112",0,"569",["755","757"]],"812":["112",1,"569",["813","815"]],"1328":["112",2,"1251",["1329","1331"]],"1612":["112",0,"1559",["1613","1615"]],"1781":["112",0,"1756",["1782"]],"1784":["112",1,"1756",["1785","1787"]],"1821":["112",0,"1756",["1822"]],"1833":["112",0,"1756",["1834"]],"1871":["112",1,"1756",["1872"]],"1874":["112",0,"1756",["1875","1877"]],"1915":["112",1,"1914",["1916"]],"2099":["112",1,"2098",["2100","2102"]],"2107":["112",1,"2103",["2108","2110"]],"2275":["112",0,"2111",["2276","2278"]],"2332":["112",0,"2306",["2333","2335"]],"2348":["112",0,"2111",["2349","2351"]],"2359":["112",0,"2111",["2360"]],"2384":["112",1,"2111",["2385","2387","2388"]],"2442":["112",1,"2416",["2443","2445"]],"2458":["112",1,"2111",["2459","2461"]],"2469":["112",0,"2111",["2470"]],"2494":["112",0,"2111",["2495","2497","2498"]],"2552":["112",0,"2526",["2553","2555"]],"2568":["112",0,"2111",["2569","2571"]],"2579":["112",0,"2111",["2580"]],"2604":["112",1,"2111",["2605","2607","2608"]],"2662":["112",0,"2636",["2663","2665"]],"2678":["112",1,"2111",["2679","2681"]],"2689":["112",0,"2111",["2690"]],"2714":["112",0,"2111",["2715","2717","2718"]],"2772":["112",0,"2746",["2773","2775"]],"2788":["112",1,"2111",["2789","2791"]],"2799":["112",1,"2111",["2800"]],"2824":["112",1,"2111",["2825","2827","2828"]],"2882":["112",0,"2856",["2883","2885"]],"2898":["112",1,"2111",["2899","2901"]],"2909":["112",1,"2111",["2910"]],"2934":["112",1,"2111",["2935","2937","2938"]],"2947":["112",1,"2111",["2948"]],"2959":["112",1,"2111",["2960"]],"2995":["112",0,"2111",["2996"]],"3382":["112",1,"3305",["3383","3385"]],"3417":["112",1,"3305",["3418","3420"]],"3430":["112",0,"3305",["3431"]],"3452":["112",1,"3305",["3453"]],"3462":["112",1,"3305",["3463","3465"]],"3497":["112",5,"3305",["3498"]],"3521":["112",1,"3305",["3522"]],"3684":["112",0,"1622",["3685"]],"4025":["112",0,"3915",["4026","4028"]],"4084":["112",0,"1622",["4085"]],"4355":["112",1,"4285",["4356","4358"]],"4563":["112",1,"4542",["4564","4566"]],"4567":["112",4,"4542",["4568","4570"]],"4571":["112",1,"4542",["4572","4574"]],"173":["113",2,"109",["174","176"]],"293":["113",2,"229",["294","296"]],"413":["113",2,"349",["414","416"]],"620":["113",0,"569",["621","623"]],"685":["113",1,"569",["686","688"]],"750":["113",0,"569",["751","753"]],"808":["113",1,"569",["809","811"]],"3359":["113",3,"3325",["3360","3362","3363","3364","3365","3366","3367","3368","3369","3370","3371","3372","3373","3374"]],"4160":["113",1,"4159",["4161","4163"]],"4351":["113",1,"4285",["4352","4354"]],"4538":["113",2,"4537",["4539","4541"]],"4710":["113",2,null,["4711","4713","4714"]],"4715":["113",1,null,["4716","4718"]],"4725":["113",1,null,["4726","4728"]],"5001":["113",3,null,["5002","5004"]],"5005":["113",1,null,["5006","5008"]],"1803":["115",0,"1756"],"1804":["115",0,"1756"],"1176":["117",1,"1175",["1177"]],"1555":["117",1,"1445",["1556"]],"1650":["117",1,"1641",["1651"]],"2094":["117",1,"1952",["2095"]],"5030":["117",1,"5011",["5031"]],"2":["118",0,null,["3"]],"1177":["118",0,"1176",["1178"]],"1433":["118",1,null,["1434"]],"1634":["119",0,"1622",["1635","1636","1639","1640"]],"4590":["119",0,null,["4591","4592","4595"]],"5024":["119",1,"5011",["5025","5026","5029"]],"5046":["119",1,"5011",["5047","5048","5051","5052"]],"107":["122",11,null,["108"]],"227":["122",11,null,["228"]],"347":["122",11,null,["348"]],"467":["122",53,null,["468"]],"567":["122",34,"566",["568"]],"919":["122",4,"915",["920"]],"1006":["122",4,"952",["1007"]],"1195":["122",5,null,["1196"]],"1564":["122",5,"1560",["1565"]],"1620":["122",350,"1616",["1621"]],"3528":["122",21,"3524",["3529"]],"3617":["122",6,"3613",["3618"]],"4114":["122",5,"4110",["4115"]],"4164":["122",4,null,["4165"]],"4203":["122",3,"4199",["4204"]],"4283":["122",10,"4282",["4284"]],"4398":["122",9,"4394",["4399"]],"4458":["122",21,"4454",["4459"]],"4609":["122",8,null,["4610"]],"4748":["122",7,"4747",["4749"]],"4821":["122",5,"4817",["4822"]],"4871":["122",152,"4867",["4872"]],"5009":["122",13,null,["5010"]],"869":["123",0,"868"],"894":["123",0,"893"],"901":["123",0,"900"],"908":["123",0,"907"],"977":["123",0,"976"],"1376":["123",0,"1375"],"1387":["123",0,"1383"],"1391":["123",0,"1383"],"1455":["123",0,"1454"],"1462":["123",1,"1461"],"1469":["123",0,"1468"],"1476":["123",0,"1475"],"1483":["123",0,"1482"],"1490":["123",0,"1489"],"1497":["123",0,"1496"],"1504":["123",1,"1503"],"1511":["123",0,"1510"],"1518":["123",0,"1517"],"1525":["123",0,"1524"],"1644":["123",0,"1643"],"1681":["123",0,"1680"],"1741":["123",0,"1740"],"1763":["123",0,"1762"],"1773":["123",0,"1772"],"1857":["123",0,"1856"],"1867":["123",0,"1866"],"1962":["123",0,"1961"],"1969":["123",0,"1968"],"1980":["123",0,"1979"],"1987":["123",0,"1986"],"1994":["123",0,"1993"],"2001":["123",0,"2000"],"2008":["123",0,"2007"],"2015":["123",1,"2014"],"2025":["123",0,"2024"],"2032":["123",0,"2031"],"2039":["123",0,"2038"],"2046":["123",0,"2045"],"2053":["123",0,"2052"],"2134":["123",0,"2133"],"2157":["123",0,"2156"],"2186":["123",0,"2185"],"2197":["123",0,"2196"],"2204":["123",0,"2203"],"2226":["123",0,"2225"],"2241":["123",0,"2240"],"2288":["123",0,"2287"],"2303":["123",0,"2302"],"2316":["123",0,"2315"],"2322":["123",0,"2321"],"2343":["123",0,"2339"],"2347":["123",0,"2339"],"2398":["123",0,"2397"],"2413":["123",0,"2412"],"2426":["123",0,"2425"],"2432":["123",0,"2431"],"2453":["123",0,"2449"],"2457":["123",0,"2449"],"2508":["123",0,"2507"],"2523":["123",0,"2522"],"2536":["123",0,"2535"],"2542":["123",0,"2541"],"2563":["123",0,"2559"],"2567":["123",0,"2559"],"2618":["123",0,"2617"],"2633":["123",1,"2632"],"2646":["123",0,"2645"],"2652":["123",0,"2651"],"2673":["123",0,"2669"],"2677":["123",0,"2669"],"2728":["123",0,"2727"],"2743":["123",0,"2742"],"2756":["123",1,"2755"],"2762":["123",0,"2761"],"2783":["123",0,"2779"],"2787":["123",0,"2779"],"2838":["123",0,"2837"],"2853":["123",0,"2852"],"2866":["123",0,"2865"],"2872":["123",0,"2871"],"2893":["123",0,"2889"],"2897":["123",0,"2889"],"2991":["123",0,"2990"],"3598":["123",0,"3597"],"3697":["123",0,"3696"],"3738":["123",0,"3737"],"3779":["123",0,"3778"],"3820":["123",0,"3819"],"3861":["123",0,"3860"],"3925":["123",0,"3924"],"3935":["123",1,"3934"],"3946":["123",0,"3945"],"3953":["123",0,"3952"],"3960":["123",0,"3959"],"3967":["123",0,"3966"],"3974":["123",0,"3973"],"4036":["123",0,"4032"],"4040":["123",0,"4032"],"4239":["123",0,"4238"],"4245":["123",1,"4244"],"4371":["123",0,"4370"],"4377":["123",0,"4376"],"4391":["123",0,"4390"],"4451":["123",0,"4450"],"4517":["123",0,"4516"],"4814":["123",0,"4813"],"4864":["123",0,"4863"],"566":["128",34,"469",["567"]],"4282":["128",10,"4199",["4283"]],"4747":["129",7,null,["4748"]],"1175":["135",2,"1041",["1176"]],"550":["152",2,"549",["551","556"]],"1209":["152",1,"1208",["1210","1215"]],"1253":["152",1,"1252",["1254","1259"]],"1268":["152",1,"1251",["1269","1274"]],"1358":["152",1,null,["1359","1364"]],"1685":["152",1,"1622",["1686","1691"]],"1747":["152",1,"1744",["1748","1753"]],"1890":["152",1,"1887",["1891","1896"]],"1906":["152",1,"1903",["1907","1912"]],"1921":["152",1,"1918",["1922","1927"]],"1937":["152",2,"1934",["1938","1943"]],"2146":["152",1,"2121",["2147","2152"]],"2158":["152",1,"2121",["2159","2164"]],"2939":["152",1,"2111",["2940","2945"]],"2951":["152",1,"2111",["2952","2957"]],"2963":["152",1,"2111",["2964","2969"]],"2976":["152",1,"2111",["2977","2982"]],"2998":["152",1,"2111",["2999","3004"]],"3326":["152",9,"3325",["3327","3332","3334","3336","3338","3340","3342","3344"]],"3386":["152",1,"3305",["3387","3392"]],"3422":["152",1,"3305",["3423","3428"]],"3434":["152",0,"3305",["3435","3440"]],"3466":["152",1,"3305",["3467","3472"]],"3487":["152",1,"3305",["3488","3493","3495"]],"3501":["152",1,"3305",["3502","3507","3509"]],"3676":["152",1,"3673",["3677","3682"]],"3704":["152",1,"3701",["3705","3710"]],"3745":["152",1,"3742",["3746","3751"]],"3786":["152",2,"3783",["3787","3792"]],"3827":["152",2,"3824",["3828","3833"]],"3868":["152",2,"3865",["3869","3874"]],"3895":["152",1,"3892",["3896","3901"]],"4044":["152",2,"4041",["4045","4050"]],"4058":["152",1,"1622",["4059","4064"]],"4090":["152",1,"4087",["4091","4096"]],"4267":["152",1,"4266",["4268","4273"]],"4508":["152",4,"4460",["4509","4514"]],"4518":["152",1,"4460",["4519","4524"]],"4623":["152",2,"4622",["4624","4629"]],"4739":["152",14,null,["4740","4745"]],"4938":["152",1,"4873",["4939","4944"]],"4954":["152",1,"4953",["4955","4960"]],"535":["154",1,"469",["536","538","539","541"]],"558":["154",1,"469",["559","561","562"]],"1694":["154",1,"1622",["1695","1697","1698","1700","1701"]],"1811":["154",1,"1756",["1812","1814","1815","1817"]],"3315":["154",2,"3305",["3316","3318","3319","3321"]],"3394":["154",1,"3305",["3395","3397","3398","3400","3401"]],"3442":["154",1,"3305",["3443","3445","3446","3448"]],"3511":["154",1,"3305",["3512","3514","3515","3517"]],"3712":["154",2,"3687",["3713","3715","3716","3718","3719"]],"3753":["154",1,"3728",["3754","3756","3757","3759","3760"]],"3794":["154",1,"3769",["3795","3797","3798","3800","3801"]],"3835":["154",1,"3810",["3836","3838","3839","3841","3842"]],"3876":["154",1,"3851",["3877","3879","3880","3882","3883"]],"3903":["154",2,"1622",["3904","3906","3907","3909","3911"]],"4066":["154",4,"1622",["4067","4069","4070","4072","4080"]],"843":["156",0,null,["844"]],"880":["156",1,null,["881"]],"883":["156",0,null,["884"]],"886":["156",1,null,["887"]],"1647":["156",1,"1641",["1648"]],"1716":["156",1,"1713",["1717"]],"1720":["156",1,"1713",["1721"]],"1724":["156",1,"1713",["1725"]],"1728":["156",1,"1713",["1729"]],"1732":["156",1,"1713",["1733"]],"1736":["156",1,"1713",["1737"]],"3577":["156",9,"3574",["3578"]],"3581":["156",1,"3574",["3582"]],"3585":["156",1,"3574",["3586"]],"3589":["156",1,"3574",["3590"]],"3593":["156",1,"3574",["3594"]],"4496":["156",1,"4493",["4497"]],"4500":["156",1,"4493",["4501"]],"4504":["156",1,"4493",["4505"]],"4909":["156",1,"4906",["4910"]],"4913":["156",1,"4906",["4914"]],"4917":["156",0,"4906",["4918"]],"40":["157",5,null,["41","42","43"]],"525":["157",2,"469",["526","527","528","529","530","531"]],"826":["157",2,"469",["827","828","829"]],"853":["157",4,null,["854","855","856","857","858","859","860","861","862"]],"967":["157",1,"952",["968","969","970"]],"1673":["157",1,"1622",["1674","1675","1676"]],"1713":["157",6,"1622",["1714","1715","1716","1719","1720","1723","1724","1727","1728","1731","1732","1735","1736"]],"2112":["157",2,"2111",["2113","2114","2115","2116","2117"]],"2122":["157",2,"2121",["2123","2124","2125","2126","2127"]],"3574":["157",13,"3530",["3575","3576","3577","3580","3581","3584","3585","3588","3589","3592","3593"]],"3689":["157",1,"3687",["3690","3691","3692"]],"3730":["157",1,"3728",["3731","3732","3733"]],"3771":["157",1,"3769",["3772","3773","3774"]],"3812":["157",1,"3810",["3813","3814","3815"]],"3853":["157",1,"3851",["3854","3855","3856"]],"4493":["157",3,"4460",["4494","4495","4496","4499","4500","4503","4504"]],"4906":["157",2,"4873",["4907","4908","4909","4912","4913","4916","4917"]],"4989":["157",4,null,["4990","4991","4992","4993","4994","4995","4996","4997"]],"2263":["159",1,"2111",["2264","2268","2270","2271"]],"2371":["159",1,"2111",["2372","2376","2378","2379","2380"]],"2481":["159",2,"2111",["2482","2486","2488","2489","2490"]],"2591":["159",1,"2111",["2592","2596","2598","2599","2600"]],"2701":["159",1,"2111",["2702","2706","2708","2709","2710"]],"2811":["159",1,"2111",["2812","2816","2818","2819","2820"]],"2921":["159",1,"2111",["2922","2926","2928","2929","2930"]],"3006":["159",2,"2111",["3007","3011","3013","3014","3015"]],"3346":["159",1,"3325",["3347","3351","3353","3354","3355"]],"3405":["159",1,"3305",["3406","3410","3412","3413"]],"3474":["159",1,"3305",["3475","3479","3481","3482","3483"]],"4265":["159",1,"4199",["4266","4275","4277","4278"]],"4697":["159",2,null,["4698","4702","4704","4705","4706"]],"4557":["161",1,"4542",["4558","4559"]],"4719":["161",0,null,["4720","4721"]],"23":["171",3,"22",["24","26","28"]],"57":["171",3,"55",["58","60","62"]],"986":["171",2,"952",["987","989","991"]],"1236":["171",2,"1235",["1237","1239","1241"]],"1334":["171",3,"1332",["1335","1337","1339"]],"1794":["171",1,"1756",["1795","1797","1799"]],"1824":["171",2,"1756",["1825","1827","1829"]],"2208":["171",2,"2111",["2209","2211","2213"]],"2229":["171",1,"2111",["2230","2232","2234"]],"2254":["171",1,"2111",["2255","2257","2259"]],"2291":["171",1,"2111",["2292","2294","2296"]],"2362":["171",2,"2111",["2363","2365","2367"]],"2401":["171",1,"2111",["2402","2404","2406"]],"2472":["171",1,"2111",["2473","2475","2477"]],"2511":["171",1,"2111",["2512","2514","2516"]],"2582":["171",1,"2111",["2583","2585","2587"]],"2621":["171",1,"2111",["2622","2624","2626"]],"2692":["171",1,"2111",["2693","2695","2697"]],"2731":["171",1,"2111",["2732","2734","2736"]],"2802":["171",1,"2111",["2803","2805","2807"]],"2841":["171",2,"2111",["2842","2844","2846"]],"2912":["171",1,"2111",["2913","2915","2917"]],"3025":["171",1,"2111",["3026","3028","3030"]],"3047":["171",1,"2111",["3048","3050","3052"]],"3069":["171",1,"2111",["3070","3072","3074"]],"3091":["171",1,"2111",["3092","3094","3096"]],"3113":["171",1,"2111",["3114","3116","3118"]],"3135":["171",1,"2111",["3136","3138","3140"]],"3157":["171",1,"2111",["3158","3160","3162"]],"3179":["171",2,"2111",["3180","3182","3184"]],"3201":["171",1,"2111",["3202","3204","3206"]],"3223":["171",2,"2111",["3224","3226","3228"]],"3245":["171",1,"2111",["3246","3248","3250"]],"3267":["171",1,"2111",["3268","3270","3272"]],"3289":["171",1,"2111",["3290","3292","3294"]],"3306":["171",3,"3305",["3307","3309","3311"]],"4652":["171",3,"4651",["4653","4655","4657"]],"4684":["171",3,"4683",["4685","4687","4689"]],"4924":["171",2,"4921",["4925","4927","4929"]],"1276":["173",5,"1251",["1277","1279","1281"]],"3995":["173",1,"3984",["3996","3998"]],"3999":["173",3,"3984",["4000","4002","4004"]],"1281":["178",3,"1276",["1282"]],"1301":["178",5,"1290",["1302"]],"1419":["178",4,"1408",["1420"]],"4004":["178",2,"3999",["4005"]],"1279":["183",1,"1276",["1280"]],"4002":["183",1,"3999",["4003"]],"4012":["185",0,"3984"],"1282":["188",2,"1281",["1283","1285","1288"]],"1302":["188",5,"1301",["1303","1305","1310"]],"1420":["188",4,"1419",["1421","1423","1428"]],"4005":["188",2,"4004",["4006","4008","4011"]],"1290":["189",7,"1251",["1291","1298","1300","1301","1311"]],"1408":["189",6,null,["1409","1416","1418","1419","1429"]],"1227":["194",1,"1197",["1228"]],"1321":["194",2,"1251",["1322"]],"4444":["194",2,"4440",["4445"]],"4641":["194",2,"4611",["4642"]],"4733":["194",1,"4729",["4734"]],"4807":["194",2,"4803",["4808"]],"4972":["194",1,"4873",["4973"]],"1315":["219",20,"1251",["1316"]],"1223":["222",0,"1197",["1224","1226"]],"1317":["222",1,"1251",["1318","1320"]],"4386":["222",0,"4199",["4387","4389"]],"4440":["222",2,"4199",["4441","4443","4444"]],"4637":["222",0,"4611",["4638","4640"]],"4729":["222",2,null,["4730","4732","4733"]],"4803":["222",2,null,["4804","4806","4807"]],"4968":["222",1,"4873",["4969","4971"]],"1437":["240",380,null,["1438"]],"4253":["240",0,"4199",["4254"]],"866":["241",1,null,["867","868"]],"890":["241",1,null,["891","893"]],"897":["241",1,null,["898","900"]],"904":["241",1,null,["905","907"]],"974":["241",1,"952",["975","976"]],"1373":["241",1,null,["1374","1375"]],"1379":["241",1,null,["1380","1381"]],"1452":["241",1,"1451",["1453","1454"]],"1459":["241",4,"1451",["1460","1461"]],"1466":["241",1,"1451",["1467","1468"]],"1473":["241",1,"1451",["1474","1475"]],"1480":["241",1,"1451",["1481","1482"]],"1487":["241",0,"1451",["1488","1489"]],"1494":["241",1,"1451",["1495","1496"]],"1501":["241",1,"1451",["1502","1503"]],"1508":["241",1,"1451",["1509","1510"]],"1515":["241",1,"1451",["1516","1517"]],"1522":["241",0,"1451",["1523","1524"]],"1760":["241",1,"1756",["1761","1762"]],"1770":["241",2,"1756",["1771","1772"]],"1854":["241",1,"1756",["1855","1856"]],"1864":["241",1,"1756",["1865","1866"]],"1959":["241",1,"1958",["1960","1961"]],"1966":["241",1,"1958",["1967","1968"]],"1977":["241",1,"1958",["1978","1979"]],"1984":["241",1,"1958",["1985","1986"]],"1991":["241",1,"1958",["1992","1993"]],"1998":["241",0,"1958",["1999","2000"]],"2005":["241",1,"1958",["2006","2007"]],"2012":["241",1,"1958",["2013","2014"]],"2022":["241",1,"1958",["2023","2024"]],"2029":["241",1,"1958",["2030","2031"]],"2036":["241",1,"1958",["2037","2038"]],"2043":["241",1,"1958",["2044","2045"]],"2050":["241",0,"1958",["2051","2052"]],"2131":["241",1,"2121",["2132","2133"]],"2154":["241",1,"2121",["2155","2156"]],"2183":["241",1,"2111",["2184","2185"]],"2194":["241",1,"2111",["2195","2196"]],"2201":["241",0,"2111",["2202","2203"]],"2223":["241",1,"2111",["2224","2225"]],"2238":["241",1,"2111",["2239","2240"]],"2285":["241",1,"2111",["2286","2287"]],"2300":["241",1,"2111",["2301","2302"]],"2313":["241",1,"2306",["2314","2315"]],"2319":["241",1,"2306",["2320","2321"]],"2395":["241",1,"2111",["2396","2397"]],"2410":["241",1,"2111",["2411","2412"]],"2423":["241",0,"2416",["2424","2425"]],"2429":["241",0,"2416",["2430","2431"]],"2505":["241",1,"2111",["2506","2507"]],"2520":["241",1,"2111",["2521","2522"]],"2533":["241",0,"2526",["2534","2535"]],"2539":["241",1,"2526",["2540","2541"]],"2615":["241",1,"2111",["2616","2617"]],"2630":["241",1,"2111",["2631","2632"]],"2643":["241",0,"2636",["2644","2645"]],"2649":["241",1,"2636",["2650","2651"]],"2725":["241",1,"2111",["2726","2727"]],"2740":["241",1,"2111",["2741","2742"]],"2753":["241",1,"2746",["2754","2755"]],"2759":["241",1,"2746",["2760","2761"]],"2835":["241",0,"2111",["2836","2837"]],"2850":["241",0,"2111",["2851","2852"]],"2863":["241",1,"2856",["2864","2865"]],"2869":["241",0,"2856",["2870","2871"]],"2988":["241",1,"2111",["2989","2990"]],"3922":["241",1,"3915",["3923","3924"]],"3932":["241",1,"3915",["3933","3934"]],"3943":["241",1,"3915",["3944","3945"]],"3950":["241",1,"3915",["3951","3952"]],"3957":["241",1,"3915",["3958","3959"]],"3964":["241",0,"3915",["3965","3966"]],"3971":["241",1,"3915",["3972","3973"]],"4236":["241",0,"4199",["4237","4238"]],"4242":["241",1,"4199",["4243","4244"]],"4368":["241",1,"4199",["4369","4370"]],"4374":["241",0,"4199",["4375","4376"]],"3984":["245",5,"3915",["3985","3988","3995","3999","4012"]],"4549":["246",1,"4542",["4550"]],"1898":["248",0,"1622",["1899"]],"1914":["249",1,"1622",["1915"]],"1929":["251",1,"1622",["1930"]],"1945":["252",242,"1622",["1946"]],"2178":["252",0,"2121",["2179"]],"3723":["253",0,"3687",["3724"]],"3764":["254",1,"3728",["3765"]],"3805":["255",0,"3769",["3806"]],"3846":["256",0,"3810",["3847"]],"3887":["257",0,"3851",["3888"]],"2306":["258",8,"2111",["2307","2313","2319","2325","2326","2332","2336","2337"]],"2416":["258",7,"2111",["2417","2423","2429","2435","2436","2442","2446","2447"]],"2526":["258",7,"2111",["2527","2533","2539","2545","2546","2552","2556","2557"]],"2636":["258",6,"2111",["2637","2643","2649","2655","2656","2662","2666","2667"]],"2746":["258",6,"2111",["2747","2753","2759","2765","2766","2772","2776","2777"]],"2856":["258",7,"2111",["2857","2863","2869","2875","2876","2882","2886","2887"]],"3915":["258",17,"1622",["3916","3922","3932","3943","3950","3957","3964","3971","3978","3979","3980","3984","4013","4019","4025","4029","4030"]],"4052":["259",0,"1622",["4053"]],"4801":["265",1,null,["4802"]],"867":["266",0,"866"],"891":["266",0,"890",["892"]],"898":["266",0,"897",["899"]],"905":["266",0,"904",["906"]],"975":["266",1,"974"],"1374":["266",0,"1373"],"1380":["266",0,"1379"],"1453":["266",0,"1452"],"1460":["266",0,"1459"],"1467":["266",0,"1466"],"1474":["266",0,"1473"],"1481":["266",0,"1480"],"1488":["266",0,"1487"],"1495":["266",0,"1494"],"1502":["266",0,"1501"],"1509":["266",0,"1508"],"1516":["266",0,"1515"],"1523":["266",0,"1522"],"1761":["266",0,"1760"],"1771":["266",0,"1770"],"1855":["266",0,"1854"],"1865":["266",0,"1864"],"1960":["266",0,"1959"],"1967":["266",0,"1966"],"1978":["266",0,"1977"],"1985":["266",0,"1984"],"1992":["266",0,"1991"],"1999":["266",0,"1998"],"2006":["266",0,"2005"],"2013":["266",0,"2012"],"2023":["266",1,"2022"],"2030":["266",0,"2029"],"2037":["266",0,"2036"],"2044":["266",0,"2043"],"2051":["266",0,"2050"],"2132":["266",0,"2131"],"2155":["266",0,"2154"],"2184":["266",0,"2183"],"2195":["266",0,"2194"],"2202":["266",0,"2201"],"2224":["266",0,"2223"],"2239":["266",0,"2238"],"2286":["266",0,"2285"],"2301":["266",0,"2300"],"2314":["266",0,"2313"],"2320":["266",0,"2319"],"2396":["266",0,"2395"],"2411":["266",0,"2410"],"2424":["266",0,"2423"],"2430":["266",0,"2429"],"2506":["266",0,"2505"],"2521":["266",0,"2520"],"2534":["266",0,"2533"],"2540":["266",0,"2539"],"2616":["266",0,"2615"],"2631":["266",0,"2630"],"2644":["266",0,"2643"],"2650":["266",0,"2649"],"2726":["266",0,"2725"],"2741":["266",0,"2740"],"2754":["266",0,"2753"],"2760":["266",0,"2759"],"2836":["266",0,"2835"],"2851":["266",0,"2850"],"2864":["266",0,"2863"],"2870":["266",0,"2869"],"2989":["266",0,"2988"],"3923":["266",0,"3922"],"3933":["266",0,"3932"],"3944":["266",0,"3943"],"3951":["266",0,"3950"],"3958":["266",0,"3957"],"3965":["266",0,"3964"],"3972":["266",0,"3971"],"4237":["266",0,"4236"],"4243":["266",0,"4242"],"4369":["266",0,"4368"],"4375":["266",0,"4374"],"3979":["267",0,"3915"],"4542":["270",9,"4199",["4543","4549","4557","4563","4567","4571"]],"1641":["273",2,"1622",["1642","1643","1647","1650"]],"952":["274",49,"915",["953","959","960","967","974","980","981","982","983","984","985","986","995","996","997","998","1004","1006","1039","1040","1041"]],"915":["275",54,null,["916","917","919","952","1181","1182"]],"4199":["275",249,null,["4200","4201","4203","4236","4242","4253","4264","4265","4282","4368","4374","4380","4386","4390","4394","4440","4450","4454","4537","4542","4575","4576"]],"1251":["287",40,null,["1252","1261","1268","1276","1289","1290","1315","1317","1321","1328"]],"4159":["288",1,null,["4160"]],"4537":["288",2,"4199",["4538"]],"4596":["290",0,null],"55":["291",3,null,["56","57","66"]],"1332":["291",3,null,["1333","1334","1343"]],"4921":["291",2,"4873",["4922","4923","4924","4933"]],"22":["292",3,null,["23","32"]],"1235":["292",2,null,["1236","1245"]],"4651":["292",3,null,["4652","4661"]],"4683":["292",4,null,["4684","4693"]],"47":["293",0,null,["48"]],"1249":["293",1,null,["1250"]],"4665":["293",0,null,["4666"]],"21":["294",0,null],"48":["294",0,"47"],"56":["294",0,"55"],"1250":["294",0,"1249"],"1333":["294",0,"1332"],"4666":["294",0,"4665"],"4682":["294",0,null],"4922":["294",0,"4921"],"3728":["303",6,"1622",["3729","3730","3737","3741","3742","3753","3764"]],"3687":["320",5,"1622",["3688","3689","3696","3700","3701","3712","3723"]],"2098":["355",197,"1952",["2099","2111"]],"3325":["356",14,"3305",["3326","3346","3359"]],"3305":["357",41,"2111",["3306","3315","3325","3375","3382","3386","3394","3405","3417","3421","3422","3430","3433","3434","3442","3452","3455","3462","3466","3474","3487","3497","3500","3501","3511","3521"]],"2111":["358",196,"2098",["2112","2121","2183","2194","2201","2208","2217","2223","2229","2238","2248","2254","2263","2275","2279","2285","2291","2300","2306","2348","2352","2359","2362","2371","2384","2389","2395","2401","2410","2416","2458","2462","2469","2472","2481","2494","2499","2505","2511","2520","2526","2568","2572","2579","2582","2591","2604","2609","2615","2621","2630","2636","2678","2682","2689","2692","2701","2714","2719","2725","2731","2740","2746","2788","2792","2799","2802","2811","2824","2829","2835","2841","2850","2856","2898","2902","2909","2912","2921","2934","2939","2947","2950","2951","2959","2962","2963","2971","2975","2976","2984","2988","2995","2998","3006","3019","3025","3034","3041","3047","3056","3063","3069","3078","3085","3091","3100","3107","3113","3122","3129","3135","3144","3151","3157","3166","3173","3179","3188","3195","3201","3210","3217","3223","3232","3239","3245","3254","3261","3267","3276","3283","3289","3298","3305"]],"2121":["360",8,"2111",["2122","2131","2142","2146","2154","2158","2166","2167","2174","2178"]],"1952":["362",241,"1947",["1953","1956","1957","2057","2094","2098","3524","3612","3613"]],"1957":["363",12,"1952",["1958"]],"3612":["365",0,"1952"],"3524":["373",21,"1952",["3525","3528","3610"]],"3613":["373",6,"1952",["3614","3617","3668"]],"1559":["387",7,"1445",["1560","1606","1612"]],"1693":["388",0,"1622"],"3700":["388",0,"3687"],"3741":["388",0,"3728"],"3782":["388",0,"3769"],"3823":["388",0,"3810"],"3864":["388",0,"3851"],"1445":["389",380,"1439",["1446","1449","1450","1529","1555","1559","1616","4109","4110"]],"1450":["390",12,"1445",["1451"]],"4109":["392",0,"1445"],"4263":["392",0,"4255"],"4260":["395",0,"4255",["4261"]],"4261":["396",0,"4260",["4262"]],"1560":["400",5,"1559",["1561","1564","1604"]],"1616":["400",351,"1445",["1617","1620","4107"]],"4110":["400",5,"1445",["4111","4114","4154"]],"4394":["400",130,"4199",["4395","4398","4438"]],"4454":["400",22,"4199",["4455","4458","4535"]],"4817":["400",6,null,["4818","4821","4861"]],"4867":["400",153,null,["4868","4871","4987"]],"3851":["419",5,"1622",["3852","3853","3860","3864","3865","3876","3887"]],"3769":["433",5,"1622",["3770","3771","3778","3782","3783","3794","3805"]],"3810":["446",6,"1622",["3811","3812","3819","3823","3824","3835","3846"]]},"graphs":["1","2","6","9","12","15","18","21","22","36","39","40","47","49","55","70","73","76","78","80","82","84","87","90","93","96","99","101","103","106","107","190","193","196","198","200","202","204","207","210","213","216","219","221","223","226","227","310","313","316","318","320","322","324","327","330","333","336","339","341","343","346","347","430","433","436","438","440","442","444","447","450","453","456","459","461","463","466","467","842","843","846","853","866","872","873","877","878","879","880","883","886","889","890","897","904","911","915","1183","1186","1189","1195","1235","1249","1251","1332","1347","1350","1351","1357","1358","1366","1373","1379","1392","1393","1394","1395","1396","1402","1408","1433","1437","4159","4164","4199","4577","4578","4581","4584","4590","4596","4597","4600","4603","4609","4651","4665","4667","4670","4673","4676","4679","4682","4683","4697","4710","4715","4719","4725","4729","4739","4747","4801","4803","4813","4817","4863","4867","4989","5001","5005","5009"]} --------------------------------------------------------------------------------