imap-processing 0.7.0__py3-none-any.whl → 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (172) hide show
  1. imap_processing/__init__.py +1 -1
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/excel_to_xtce.py +36 -2
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +1 -1
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +145 -30
  6. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +36 -36
  7. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +136 -9
  8. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +14 -0
  9. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +63 -1
  10. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +9 -0
  11. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +14 -7
  12. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +577 -235
  13. imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +326 -0
  14. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +33 -23
  15. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +24 -28
  16. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +1 -0
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +137 -79
  18. imap_processing/cdf/config/imap_variable_schema.yaml +13 -0
  19. imap_processing/cdf/imap_cdf_manager.py +31 -27
  20. imap_processing/cdf/utils.py +3 -5
  21. imap_processing/cli.py +25 -14
  22. imap_processing/codice/codice_l1a.py +153 -63
  23. imap_processing/codice/constants.py +10 -10
  24. imap_processing/codice/decompress.py +10 -11
  25. imap_processing/codice/utils.py +1 -0
  26. imap_processing/glows/l1a/glows_l1a.py +1 -2
  27. imap_processing/glows/l1b/glows_l1b.py +3 -3
  28. imap_processing/glows/l1b/glows_l1b_data.py +59 -37
  29. imap_processing/glows/l2/glows_l2_data.py +123 -0
  30. imap_processing/hi/l1a/hi_l1a.py +4 -4
  31. imap_processing/hi/l1a/histogram.py +107 -109
  32. imap_processing/hi/l1a/science_direct_event.py +92 -225
  33. imap_processing/hi/l1b/hi_l1b.py +85 -11
  34. imap_processing/hi/l1c/hi_l1c.py +23 -1
  35. imap_processing/hi/packet_definitions/TLM_HI_COMBINED_SCI.xml +3994 -0
  36. imap_processing/hi/utils.py +1 -1
  37. imap_processing/hit/hit_utils.py +221 -0
  38. imap_processing/hit/l0/constants.py +118 -0
  39. imap_processing/hit/l0/decom_hit.py +100 -156
  40. imap_processing/hit/l1a/hit_l1a.py +170 -184
  41. imap_processing/hit/l1b/hit_l1b.py +33 -153
  42. imap_processing/ialirt/l0/process_codicelo.py +153 -0
  43. imap_processing/ialirt/l0/process_hit.py +5 -5
  44. imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +281 -0
  45. imap_processing/ialirt/process_ephemeris.py +212 -0
  46. imap_processing/idex/idex_l1a.py +65 -84
  47. imap_processing/idex/idex_l1b.py +192 -0
  48. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -0
  49. imap_processing/idex/packet_definitions/idex_packet_definition.xml +97 -595
  50. imap_processing/lo/l0/decompression_tables/decompression_tables.py +17 -1
  51. imap_processing/lo/l0/lo_science.py +45 -13
  52. imap_processing/lo/l1a/lo_l1a.py +76 -8
  53. imap_processing/lo/packet_definitions/lo_xtce.xml +8344 -1849
  54. imap_processing/mag/l0/decom_mag.py +4 -3
  55. imap_processing/mag/l1a/mag_l1a.py +12 -13
  56. imap_processing/mag/l1a/mag_l1a_data.py +1 -2
  57. imap_processing/mag/l1b/mag_l1b.py +90 -7
  58. imap_processing/spice/geometry.py +156 -16
  59. imap_processing/spice/time.py +144 -2
  60. imap_processing/swapi/l1/swapi_l1.py +4 -4
  61. imap_processing/swapi/l2/swapi_l2.py +1 -1
  62. imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +1535 -446
  63. imap_processing/swe/l1b/swe_l1b_science.py +8 -8
  64. imap_processing/swe/l2/swe_l2.py +134 -17
  65. imap_processing/tests/ccsds/test_data/expected_output.xml +2 -1
  66. imap_processing/tests/ccsds/test_excel_to_xtce.py +4 -4
  67. imap_processing/tests/cdf/test_imap_cdf_manager.py +0 -10
  68. imap_processing/tests/codice/conftest.py +1 -17
  69. imap_processing/tests/codice/data/imap_codice_l0_raw_20241110_v001.pkts +0 -0
  70. imap_processing/tests/codice/test_codice_l0.py +8 -2
  71. imap_processing/tests/codice/test_codice_l1a.py +127 -107
  72. imap_processing/tests/codice/test_codice_l1b.py +1 -0
  73. imap_processing/tests/codice/test_decompress.py +7 -7
  74. imap_processing/tests/conftest.py +100 -58
  75. imap_processing/tests/glows/conftest.py +6 -0
  76. imap_processing/tests/glows/test_glows_l1b.py +9 -9
  77. imap_processing/tests/glows/test_glows_l1b_data.py +9 -9
  78. imap_processing/tests/hi/test_data/l0/H90_NHK_20241104.bin +0 -0
  79. imap_processing/tests/hi/test_data/l0/H90_sci_cnt_20241104.bin +0 -0
  80. imap_processing/tests/hi/test_data/l0/H90_sci_de_20241104.bin +0 -0
  81. imap_processing/tests/hi/test_data/l1a/imap_hi_l1a_45sensor-de_20250415_v000.cdf +0 -0
  82. imap_processing/tests/hi/test_hi_l1b.py +73 -3
  83. imap_processing/tests/hi/test_hi_l1c.py +10 -2
  84. imap_processing/tests/hi/test_l1a.py +31 -58
  85. imap_processing/tests/hi/test_science_direct_event.py +58 -0
  86. imap_processing/tests/hi/test_utils.py +4 -3
  87. imap_processing/tests/hit/test_data/sci_sample1.ccsds +0 -0
  88. imap_processing/tests/hit/{test_hit_decom.py → test_decom_hit.py} +95 -36
  89. imap_processing/tests/hit/test_hit_l1a.py +299 -179
  90. imap_processing/tests/hit/test_hit_l1b.py +231 -24
  91. imap_processing/tests/hit/test_hit_utils.py +218 -0
  92. imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +89 -0
  93. imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +29 -0
  94. imap_processing/tests/ialirt/test_data/l0/apid01152.tlm +0 -0
  95. imap_processing/tests/ialirt/test_data/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  96. imap_processing/tests/ialirt/unit/test_process_codicelo.py +106 -0
  97. imap_processing/tests/ialirt/unit/test_process_ephemeris.py +109 -0
  98. imap_processing/tests/ialirt/unit/test_process_hit.py +9 -6
  99. imap_processing/tests/idex/conftest.py +2 -2
  100. imap_processing/tests/idex/imap_idex_l0_raw_20231214_v001.pkts +0 -0
  101. imap_processing/tests/idex/impact_14_tof_high_data.txt +4444 -4444
  102. imap_processing/tests/idex/test_idex_l0.py +4 -4
  103. imap_processing/tests/idex/test_idex_l1a.py +8 -2
  104. imap_processing/tests/idex/test_idex_l1b.py +126 -0
  105. imap_processing/tests/lo/test_lo_l1a.py +7 -16
  106. imap_processing/tests/lo/test_lo_science.py +69 -5
  107. imap_processing/tests/lo/test_pkts/imap_lo_l0_raw_20240803_v002.pkts +0 -0
  108. imap_processing/tests/lo/validation_data/Instrument_FM1_T104_R129_20240803_ILO_SCI_DE_dec_DN_with_fills.csv +1999 -0
  109. imap_processing/tests/mag/imap_mag_l1a_norm-magi_20251017_v001.cdf +0 -0
  110. imap_processing/tests/mag/test_mag_l1b.py +97 -7
  111. imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +3 -1
  112. imap_processing/tests/spice/test_geometry.py +115 -9
  113. imap_processing/tests/spice/test_time.py +135 -6
  114. imap_processing/tests/swapi/test_swapi_decom.py +75 -69
  115. imap_processing/tests/swapi/test_swapi_l1.py +4 -4
  116. imap_processing/tests/swe/conftest.py +33 -0
  117. imap_processing/tests/swe/l1_validation/swe_l0_unpacked-data_20240510_v001_VALIDATION_L1B_v3.dat +4332 -0
  118. imap_processing/tests/swe/test_swe_l1b.py +29 -8
  119. imap_processing/tests/swe/test_swe_l2.py +64 -8
  120. imap_processing/tests/test_utils.py +2 -2
  121. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -3314
  122. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E12.cdf +0 -0
  123. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E24.cdf +0 -0
  124. imap_processing/tests/ultra/unit/test_de.py +113 -0
  125. imap_processing/tests/ultra/unit/test_spatial_utils.py +125 -0
  126. imap_processing/tests/ultra/unit/test_ultra_l1b.py +27 -3
  127. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +31 -10
  128. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +55 -35
  129. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +10 -68
  130. imap_processing/ultra/constants.py +12 -3
  131. imap_processing/ultra/l1b/de.py +168 -30
  132. imap_processing/ultra/l1b/ultra_l1b_annotated.py +24 -10
  133. imap_processing/ultra/l1b/ultra_l1b_extended.py +46 -80
  134. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +60 -144
  135. imap_processing/ultra/utils/spatial_utils.py +221 -0
  136. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/METADATA +15 -14
  137. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/RECORD +142 -139
  138. imap_processing/cdf/cdf_attribute_manager.py +0 -322
  139. imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +0 -246
  140. imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  141. imap_processing/hi/l0/decom_hi.py +0 -24
  142. imap_processing/hi/packet_definitions/hi_packet_definition.xml +0 -482
  143. imap_processing/hit/l0/data_classes/housekeeping.py +0 -240
  144. imap_processing/hit/l0/data_classes/science_packet.py +0 -259
  145. imap_processing/hit/l0/utils/hit_base.py +0 -57
  146. imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +0 -246
  147. imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  148. imap_processing/tests/cdf/test_cdf_attribute_manager.py +0 -353
  149. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
  150. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
  151. imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
  152. imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
  153. imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
  154. imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
  155. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
  156. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
  157. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
  158. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
  159. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
  160. imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
  161. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
  162. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
  163. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
  164. imap_processing/tests/hi/test_decom.py +0 -55
  165. imap_processing/tests/hi/test_l1a_sci_de.py +0 -72
  166. imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
  167. imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
  168. /imap_processing/{hi/l0/__init__.py → tests/glows/test_glows_l2_data.py} +0 -0
  169. /imap_processing/tests/hit/test_data/{imap_hit_l0_hk_20100105_v001.pkts → imap_hit_l0_raw_20100105_v001.pkts} +0 -0
  170. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/LICENSE +0 -0
  171. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/WHEEL +0 -0
  172. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1999 @@
1
+ SHCOARSE,COINCIDENCE_TYPE,DE_TIME,ESA_STEP,MODE,TOF0,TOF1,TOF2,TOF3,CKSM,POS
2
+ 460400745,0,3486,1,1,168,65535,108,70,8,255
3
+ 460400745,0,2231,1,1,170,65535,112,70,6,255
4
+ 460400745,0,2608,1,1,178,65535,102,50,12,255
5
+ 460400745,0,3536,1,1,166,65535,102,74,6,255
6
+ 460400745,0,3298,1,0,798,448,444,68,255,255
7
+ 460400745,0,3275,1,1,186,65535,116,44,12,255
8
+ 460400745,13,3672,1,0,65535,65535,116,65535,255,255
9
+ 460400745,0,4066,1,1,164,65535,108,68,8,255
10
+ 460400745,0,3718,1,0,1012,584,526,68,255,255
11
+ 460400745,0,3889,1,0,1030,600,494,38,255,255
12
+ 460400745,0,3118,1,1,174,65535,110,70,4,255
13
+ 460400745,0,3620,1,1,200,65535,106,68,8,255
14
+ 460400745,0,3534,1,0,898,494,500,66,255,255
15
+ 460400745,0,3842,1,1,180,65535,122,68,6,255
16
+ 460400745,0,3714,1,1,166,65535,106,68,6,255
17
+ 460400745,0,1718,1,1,184,65535,102,46,10,255
18
+ 460400745,0,3954,1,1,182,65535,108,42,10,255
19
+ 460400745,0,3744,1,1,184,65535,108,46,12,255
20
+ 460400745,0,3665,1,1,170,65535,108,70,6,255
21
+ 460400745,0,3806,1,0,864,476,484,68,255,255
22
+ 460400745,0,3672,1,1,166,65535,108,68,8,255
23
+ 460400745,0,3484,1,0,1032,664,470,70,255,255
24
+ 460400745,0,4068,1,1,178,65535,104,74,8,255
25
+ 460400745,0,3902,1,1,170,65535,110,70,6,255
26
+ 460400745,0,3926,1,1,164,65535,106,68,8,255
27
+ 460400745,0,3850,1,1,180,65535,100,42,12,255
28
+ 460400745,0,3017,1,0,834,470,432,40,255,255
29
+ 460400745,0,3875,1,1,176,65535,100,44,12,255
30
+ 460400745,0,3195,1,0,962,584,444,40,255,255
31
+ 460400745,0,4035,1,1,186,65535,118,42,12,255
32
+ 460400745,0,1613,1,1,218,65535,116,44,10,255
33
+ 460400745,0,3610,1,1,204,65535,106,42,10,255
34
+ 460400745,0,3839,1,1,168,65535,114,70,6,255
35
+ 460400745,0,3637,1,1,166,65535,104,68,10,255
36
+ 460400745,0,2750,1,1,168,65535,108,70,6,255
37
+ 460400745,0,3542,1,1,168,65535,114,70,6,255
38
+ 460400745,0,3643,1,1,172,65535,118,68,10,255
39
+ 460400745,0,2900,1,0,894,560,426,64,255,255
40
+ 460400745,0,2235,1,1,164,65535,100,68,6,255
41
+ 460400745,0,4033,1,1,168,65535,112,68,8,255
42
+ 460400745,0,3434,1,1,184,65535,124,42,10,255
43
+ 460400745,0,4001,1,1,166,65535,110,70,6,255
44
+ 460400745,0,3932,1,1,180,65535,110,40,10,255
45
+ 460400745,0,3924,1,1,168,65535,106,70,6,255
46
+ 460400745,0,3482,1,1,170,65535,112,70,8,255
47
+ 460400745,0,3698,1,1,186,65535,106,46,12,255
48
+ 460400745,0,3478,1,1,172,65535,114,68,6,255
49
+ 460400745,0,3220,1,1,172,65535,118,70,8,255
50
+ 460400745,0,3530,1,1,144,65535,124,66,8,255
51
+ 460400745,0,3746,1,0,1006,588,516,68,255,255
52
+ 460400745,0,3770,1,1,182,65535,110,44,10,255
53
+ 460400745,0,2753,1,1,154,65535,100,66,10,255
54
+ 460400745,0,3689,1,1,168,65535,116,68,8,255
55
+ 460400745,0,79,1,1,166,65535,106,70,6,255
56
+ 460400745,0,3131,1,1,176,65535,108,70,6,255
57
+ 460400745,0,3558,1,1,148,65535,112,70,8,255
58
+ 460400745,0,3448,1,1,152,65535,102,66,8,255
59
+ 460400745,0,4055,1,1,182,65535,108,42,12,255
60
+ 460400745,0,2453,1,1,138,65535,86,68,8,255
61
+ 460400745,10,870,1,1,65535,846,65535,65535,255,1
62
+ 460400745,0,3743,2,1,164,65535,120,68,8,255
63
+ 460400745,0,3117,2,1,170,65535,106,68,6,255
64
+ 460400745,0,2586,2,1,168,65535,106,68,8,255
65
+ 460400745,0,4082,2,1,186,65535,106,42,10,255
66
+ 460400745,0,3229,2,0,1066,686,452,42,255,255
67
+ 460400745,0,3459,2,0,950,528,518,68,255,255
68
+ 460400745,10,3561,2,1,65535,54,65535,65535,255,0
69
+ 460400745,0,2337,2,1,176,65535,104,72,6,255
70
+ 460400745,10,3180,2,1,65535,128,65535,65535,255,1
71
+ 460400745,0,2262,2,1,166,65535,110,70,8,255
72
+ 460400745,0,4080,2,1,178,65535,114,72,8,255
73
+ 460400745,0,3844,2,0,936,544,490,70,255,255
74
+ 460400745,6,3366,2,1,180,65535,65535,65535,255,1
75
+ 460400745,0,3011,2,1,180,65535,106,44,10,255
76
+ 460400745,6,4017,2,1,34,65535,65535,65535,255,3
77
+ 460400745,13,4020,2,0,65535,65535,496,65535,255,255
78
+ 460400745,10,3792,2,1,65535,62,65535,65535,255,1
79
+ 460400745,6,3666,2,1,176,65535,65535,65535,255,0
80
+ 460400745,6,2653,2,1,134,65535,65535,65535,255,2
81
+ 460400745,6,219,2,1,8,65535,65535,65535,255,2
82
+ 460400745,0,1966,2,1,184,65535,110,44,10,255
83
+ 460400745,0,3828,2,1,182,65535,112,42,10,255
84
+ 460400745,10,2218,2,1,65535,50,65535,65535,255,2
85
+ 460400745,0,3564,2,1,194,65535,104,52,10,255
86
+ 460400745,0,3738,2,1,164,65535,116,70,6,255
87
+ 460400745,13,3448,2,0,65535,65535,492,65535,255,255
88
+ 460400745,0,1786,2,1,180,65535,104,48,12,255
89
+ 460400745,0,2999,2,1,168,65535,108,70,6,255
90
+ 460400745,0,3946,2,1,166,65535,114,70,8,255
91
+ 460400745,0,3982,2,1,168,65535,102,72,6,255
92
+ 460400745,0,3297,2,1,184,65535,122,40,10,255
93
+ 460400745,0,3444,2,1,166,65535,106,68,8,255
94
+ 460400745,0,2743,2,1,172,65535,118,68,8,255
95
+ 460400745,0,3943,2,1,162,65535,98,66,8,255
96
+ 460400745,0,4070,2,1,186,65535,114,42,10,255
97
+ 460400745,0,3499,2,0,818,472,444,70,255,255
98
+ 460400745,0,4079,2,0,848,810,108,42,255,255
99
+ 460400745,0,3503,2,1,166,65535,100,68,6,255
100
+ 460400745,0,2741,2,1,168,65535,100,72,6,255
101
+ 460400745,0,3662,2,1,188,65535,104,44,10,255
102
+ 460400745,0,3358,2,1,180,65535,112,42,10,255
103
+ 460400745,0,2367,2,1,172,65535,118,68,4,255
104
+ 460400745,0,4078,2,0,1326,862,538,44,255,255
105
+ 460400745,0,3997,2,0,1030,594,530,66,255,255
106
+ 460400745,0,3726,2,1,158,65535,98,70,8,255
107
+ 460400745,0,4043,2,1,186,65535,120,40,10,255
108
+ 460400745,0,3591,2,1,182,65535,112,42,10,255
109
+ 460400745,0,3988,2,1,178,65535,98,42,14,255
110
+ 460400745,0,3037,2,1,180,65535,106,44,10,255
111
+ 460400745,0,3419,2,0,1242,818,522,68,255,255
112
+ 460400745,0,4016,2,1,168,65535,104,70,8,255
113
+ 460400745,0,3695,2,0,1636,218,500,66,255,255
114
+ 460400745,0,3867,2,1,180,65535,110,68,6,255
115
+ 460400745,0,3491,3,1,184,65535,118,42,12,255
116
+ 460400745,0,3460,3,1,174,65535,114,68,8,255
117
+ 460400745,0,3231,3,1,168,65535,110,68,6,255
118
+ 460400745,0,3797,3,1,182,65535,110,46,10,255
119
+ 460400745,0,3964,3,1,170,65535,110,68,6,255
120
+ 460400745,0,3386,3,1,168,65535,104,68,8,255
121
+ 460400745,0,2113,3,1,170,65535,116,68,8,255
122
+ 460400745,0,4043,3,1,168,65535,104,76,8,255
123
+ 460400745,0,3987,3,1,168,65535,116,72,6,255
124
+ 460400745,0,3331,3,1,170,65535,102,70,8,255
125
+ 460400745,0,2876,3,0,730,434,390,68,255,255
126
+ 460400745,0,4040,3,0,1110,644,566,68,255,255
127
+ 460400745,0,3644,3,1,164,65535,104,70,8,255
128
+ 460400745,0,3920,3,1,178,65535,112,42,10,255
129
+ 460400745,0,3988,3,1,180,65535,122,44,10,255
130
+ 460400745,0,3235,3,1,178,65535,102,50,10,255
131
+ 460400745,0,2593,3,1,178,65535,102,42,10,255
132
+ 460400745,0,2076,3,1,178,65535,104,44,12,255
133
+ 460400745,0,4050,3,0,820,480,406,40,255,255
134
+ 460400745,0,3986,3,1,202,65535,112,34,12,255
135
+ 460400745,0,3861,3,1,178,65535,106,50,8,255
136
+ 460400745,0,2859,3,1,174,65535,114,68,8,255
137
+ 460400745,0,2440,3,0,1034,636,508,80,255,255
138
+ 460400745,0,3791,3,1,180,65535,102,40,10,255
139
+ 460400745,0,3910,3,1,162,65535,104,68,8,255
140
+ 460400745,0,2798,3,1,172,65535,106,68,6,255
141
+ 460400745,0,3968,3,1,170,65535,100,74,8,255
142
+ 460400745,6,1905,3,1,132,65535,65535,65535,255,2
143
+ 460400745,0,3692,3,1,206,65535,118,44,10,255
144
+ 460400745,0,3425,3,1,164,65535,102,72,10,255
145
+ 460400745,0,3117,3,0,1414,854,658,66,255,255
146
+ 460400745,0,3406,3,1,168,65535,98,68,6,255
147
+ 460400745,0,2942,3,1,168,65535,110,70,6,255
148
+ 460400745,10,3234,3,1,65535,144,65535,65535,255,0
149
+ 460400745,6,3404,3,1,32,65535,65535,65535,255,2
150
+ 460400745,13,4035,3,0,65535,65535,104,65535,255,255
151
+ 460400745,6,3227,3,1,0,65535,65535,65535,255,2
152
+ 460400745,10,3981,3,1,65535,138,65535,65535,255,0
153
+ 460400745,6,3707,3,1,38,65535,65535,65535,255,3
154
+ 460400745,6,2897,3,1,42,65535,65535,65535,255,2
155
+ 460400745,0,3767,3,1,184,65535,116,50,8,255
156
+ 460400745,0,3543,3,1,168,65535,114,70,8,255
157
+ 460400745,0,3392,3,1,170,65535,106,40,10,255
158
+ 460400745,0,3757,3,1,180,65535,108,42,10,255
159
+ 460400745,6,3812,3,1,18,65535,65535,65535,255,3
160
+ 460400745,6,3155,3,1,172,65535,65535,65535,255,0
161
+ 460400745,0,762,3,1,188,65535,108,42,10,255
162
+ 460400745,6,3965,3,1,188,65535,65535,65535,255,1
163
+ 460400745,0,3122,3,1,184,65535,106,48,12,255
164
+ 460400745,0,3681,3,0,1366,860,604,70,255,255
165
+ 460400745,6,4092,3,1,92,65535,65535,65535,255,2
166
+ 460400745,0,4001,3,1,170,65535,104,70,6,255
167
+ 460400745,0,3757,3,1,178,65535,114,42,10,255
168
+ 460400745,0,271,3,1,178,65535,112,42,12,255
169
+ 460400745,0,3726,3,1,170,65535,102,70,6,255
170
+ 460400745,0,2038,3,1,184,65535,116,42,12,255
171
+ 460400745,0,3839,3,0,1210,734,576,68,255,255
172
+ 460400745,13,4014,4,0,65535,65535,98,65535,255,255
173
+ 460400745,0,3453,4,1,162,65535,102,68,8,255
174
+ 460400745,0,2949,4,1,166,65535,110,70,6,255
175
+ 460400745,0,2770,4,0,800,430,436,42,255,255
176
+ 460400745,0,3341,4,1,166,65535,104,72,8,255
177
+ 460400745,0,3823,4,1,178,65535,114,42,10,255
178
+ 460400745,0,4087,4,0,1084,678,478,42,255,255
179
+ 460400745,0,3258,4,1,166,65535,116,70,6,255
180
+ 460400745,13,3915,4,0,65535,65535,98,65535,255,255
181
+ 460400745,0,3762,4,0,1214,736,576,68,255,255
182
+ 460400745,0,3728,4,0,1006,684,422,68,255,255
183
+ 460400745,0,2330,4,1,182,65535,100,44,12,255
184
+ 460400745,0,4084,4,1,168,65535,108,70,6,255
185
+ 460400745,0,3001,4,1,176,65535,112,68,6,255
186
+ 460400745,0,4047,4,0,882,508,470,68,255,255
187
+ 460400745,0,3853,4,1,168,65535,112,70,10,255
188
+ 460400745,0,4038,4,0,798,450,442,68,255,255
189
+ 460400745,0,4032,4,0,14,30,32,44,255,255
190
+ 460400745,0,2823,4,1,168,65535,102,70,8,255
191
+ 460400745,0,3728,4,0,926,560,466,68,255,255
192
+ 460400745,0,3924,4,0,858,486,462,64,255,255
193
+ 460400745,0,3477,4,1,166,65535,104,72,6,255
194
+ 460400745,0,3293,4,0,900,528,470,68,255,255
195
+ 460400745,0,4047,4,0,942,522,514,66,255,255
196
+ 460400745,0,3854,4,1,192,65535,114,42,12,255
197
+ 460400745,0,3492,4,1,162,65535,98,70,4,255
198
+ 460400745,0,4074,4,1,172,65535,122,72,8,255
199
+ 460400745,0,2765,4,1,176,65535,100,78,10,255
200
+ 460400745,0,3277,4,0,894,490,502,68,255,255
201
+ 460400745,0,3605,4,1,162,65535,98,70,6,255
202
+ 460400745,0,3426,4,1,164,65535,102,70,8,255
203
+ 460400745,0,3596,4,1,168,65535,108,66,8,255
204
+ 460400745,0,3795,4,1,164,65535,102,70,6,255
205
+ 460400745,0,3906,4,1,166,65535,100,72,8,255
206
+ 460400745,0,3998,4,1,152,65535,82,42,12,255
207
+ 460400745,0,3813,4,0,1936,428,582,64,255,255
208
+ 460400745,0,386,4,0,992,554,510,44,255,255
209
+ 460400745,0,3746,4,0,1168,776,484,62,255,255
210
+ 460400745,0,4088,4,0,952,516,504,40,255,255
211
+ 460400745,0,3966,4,1,170,65535,106,72,4,255
212
+ 460400745,0,4022,4,0,804,472,428,70,255,255
213
+ 460400745,13,3769,4,0,65535,65535,102,65535,255,255
214
+ 460400745,0,3987,4,0,798,328,534,40,255,255
215
+ 460400745,13,3913,4,0,65535,65535,422,65535,255,255
216
+ 460400745,0,3535,4,1,162,65535,102,70,8,255
217
+ 460400745,0,3418,4,1,166,65535,104,68,8,255
218
+ 460400745,0,3591,4,0,838,502,430,66,255,255
219
+ 460400745,6,4081,4,1,174,65535,65535,65535,255,0
220
+ 460400745,0,3559,4,1,166,65535,98,72,8,255
221
+ 460400745,13,3385,4,0,65535,65535,420,65535,255,255
222
+ 460400745,0,3945,4,1,174,65535,98,46,10,255
223
+ 460400745,0,3423,4,1,176,65535,98,44,10,255
224
+ 460400745,13,3853,4,0,65535,65535,0,65535,255,255
225
+ 460400745,0,3395,4,0,926,536,488,68,255,255
226
+ 460400745,6,4008,4,1,188,65535,65535,65535,255,1
227
+ 460400745,0,39,4,1,160,65535,104,68,6,255
228
+ 460400745,10,2863,4,1,65535,38,65535,65535,255,0
229
+ 460400745,10,3605,4,1,65535,26,65535,65535,255,3
230
+ 460400745,0,3407,4,1,164,65535,112,68,8,255
231
+ 460400745,6,4002,5,1,10,65535,65535,65535,255,2
232
+ 460400745,6,3867,5,1,12,65535,65535,65535,255,2
233
+ 460400745,6,3834,5,1,2,65535,65535,65535,255,2
234
+ 460400745,6,3006,5,1,210,65535,65535,65535,255,2
235
+ 460400745,10,205,5,1,65535,32,65535,65535,255,3
236
+ 460400745,6,3648,5,1,8,65535,65535,65535,255,2
237
+ 460400745,6,3021,5,1,26,65535,65535,65535,255,2
238
+ 460400745,6,2984,5,1,34,65535,65535,65535,255,3
239
+ 460400745,13,2755,5,0,65535,65535,96,65535,255,255
240
+ 460400745,0,2909,5,0,1158,718,538,68,255,255
241
+ 460400745,10,1945,5,1,65535,138,65535,65535,255,0
242
+ 460400745,6,3774,5,1,22,65535,65535,65535,255,2
243
+ 460400745,6,3180,5,1,14,65535,65535,65535,255,2
244
+ 460400745,6,3340,5,1,2,65535,65535,65535,255,2
245
+ 460400745,10,4018,5,1,65535,158,65535,65535,255,0
246
+ 460400745,0,3294,5,1,160,65535,98,70,6,255
247
+ 460400745,0,3252,5,1,162,65535,96,68,10,255
248
+ 460400745,0,4011,5,1,182,65535,118,40,10,255
249
+ 460400745,0,3638,5,1,198,65535,100,44,10,255
250
+ 460400745,0,3035,5,0,894,528,460,68,255,255
251
+ 460400745,0,3948,5,1,166,65535,90,72,8,255
252
+ 460400745,0,3941,5,0,882,470,478,40,255,255
253
+ 460400745,0,1631,5,0,862,486,472,68,255,255
254
+ 460400745,0,3976,5,0,914,500,444,2,255,255
255
+ 460400745,0,3134,5,1,162,65535,98,70,8,255
256
+ 460400745,0,3340,5,0,976,30,1012,42,255,255
257
+ 460400745,0,3962,5,0,1440,918,598,42,255,255
258
+ 460400745,0,4077,5,1,160,65535,94,72,8,255
259
+ 460400745,0,3988,5,1,166,65535,100,70,6,255
260
+ 460400745,0,4076,5,1,162,65535,98,70,6,255
261
+ 460400745,0,4003,5,0,932,550,478,68,255,255
262
+ 460400745,0,3503,5,0,800,484,416,70,255,255
263
+ 460400745,0,3648,5,1,186,65535,100,46,10,255
264
+ 460400745,0,3584,5,0,1234,740,594,68,255,255
265
+ 460400745,0,4093,5,1,174,65535,96,44,10,255
266
+ 460400745,0,3560,5,1,158,65535,92,70,6,255
267
+ 460400745,0,3652,5,1,168,65535,104,70,6,255
268
+ 460400745,0,3870,5,0,1188,868,414,66,255,255
269
+ 460400745,0,3797,5,1,162,65535,94,72,10,255
270
+ 460400745,0,1393,5,1,172,65535,94,44,12,255
271
+ 460400745,0,3540,5,1,204,65535,132,44,8,255
272
+ 460400745,0,3942,5,1,168,65535,104,70,8,255
273
+ 460400745,0,4050,5,0,1222,764,530,40,255,255
274
+ 460400745,0,4083,5,1,164,65535,100,68,8,255
275
+ 460400745,0,3964,5,0,938,564,470,68,255,255
276
+ 460400745,0,3001,5,1,164,65535,102,68,6,255
277
+ 460400745,0,4064,5,0,792,450,436,68,255,255
278
+ 460400745,0,3971,5,1,164,65535,94,70,8,255
279
+ 460400745,0,3926,5,1,158,65535,92,70,6,255
280
+ 460400745,0,3894,5,1,178,65535,104,42,12,255
281
+ 460400745,0,2050,5,1,158,65535,104,68,8,255
282
+ 460400745,0,3879,5,1,170,65535,94,70,8,255
283
+ 460400745,0,3983,5,0,930,540,486,68,255,255
284
+ 460400745,0,3699,5,1,224,65535,100,68,12,255
285
+ 460400745,10,3776,6,1,65535,112,65535,65535,255,1
286
+ 460400745,0,3773,6,0,1394,952,516,40,255,255
287
+ 460400745,0,2945,6,0,1116,636,578,68,255,255
288
+ 460400745,13,3717,6,0,65535,65535,458,65535,255,255
289
+ 460400745,6,3560,6,1,744,65535,65535,65535,255,1
290
+ 460400745,13,3535,6,0,65535,65535,490,65535,255,255
291
+ 460400745,6,3199,6,1,12,65535,65535,65535,255,2
292
+ 460400745,10,3703,6,1,65535,904,65535,65535,255,2
293
+ 460400745,6,3579,6,1,12,65535,65535,65535,255,2
294
+ 460400745,6,3960,6,1,38,65535,65535,65535,255,3
295
+ 460400745,0,4069,6,1,162,65535,86,72,10,255
296
+ 460400745,6,3919,6,1,26,65535,65535,65535,255,2
297
+ 460400745,6,4051,6,1,34,65535,65535,65535,255,3
298
+ 460400745,10,3562,6,1,65535,52,65535,65535,255,1
299
+ 460400745,10,1603,6,1,65535,38,65535,65535,255,1
300
+ 460400745,0,3268,6,1,156,65535,92,68,8,255
301
+ 460400745,0,3865,6,1,158,65535,94,70,10,255
302
+ 460400745,13,3382,6,0,65535,65535,446,65535,255,255
303
+ 460400745,10,3992,6,1,65535,526,65535,65535,255,2
304
+ 460400745,0,4031,6,0,966,544,518,68,255,255
305
+ 460400745,0,3695,6,1,176,65535,104,42,10,255
306
+ 460400745,0,3872,6,1,162,65535,98,68,8,255
307
+ 460400745,0,4080,6,0,1130,756,448,42,255,255
308
+ 460400745,0,3404,6,1,160,65535,98,68,6,255
309
+ 460400745,10,2754,6,1,65535,58,65535,65535,255,0
310
+ 460400745,0,1709,6,1,160,65535,106,68,8,255
311
+ 460400745,0,2175,6,0,878,508,462,66,255,255
312
+ 460400745,0,3013,6,0,1056,662,466,42,255,255
313
+ 460400745,0,3276,6,0,640,368,336,42,255,255
314
+ 460400745,0,3938,6,0,914,520,460,38,255,255
315
+ 460400745,0,3658,6,1,164,65535,94,74,8,255
316
+ 460400745,0,3212,6,0,864,536,430,76,255,255
317
+ 460400745,0,3606,6,0,740,418,414,66,255,255
318
+ 460400745,0,2884,6,1,170,65535,94,44,12,255
319
+ 460400745,0,3961,6,0,1862,250,668,42,255,255
320
+ 460400745,0,3742,6,0,1750,826,0,66,255,255
321
+ 460400745,0,3794,6,0,808,498,404,66,255,255
322
+ 460400745,0,2892,6,0,950,560,458,42,255,255
323
+ 460400745,0,3474,6,0,886,514,468,68,255,255
324
+ 460400745,0,3021,6,1,174,65535,96,60,10,255
325
+ 460400745,0,3556,6,1,178,65535,108,44,10,255
326
+ 460400745,0,3437,6,0,1076,662,512,66,255,255
327
+ 460400745,0,3643,6,1,168,65535,172,68,6,255
328
+ 460400745,0,3312,6,0,882,480,468,40,255,255
329
+ 460400745,0,4055,7,0,840,410,458,2,255,255
330
+ 460400745,0,2464,7,0,842,502,432,66,255,255
331
+ 460400745,0,3861,7,1,156,65535,98,66,12,255
332
+ 460400745,0,3990,7,1,154,65535,92,66,10,255
333
+ 460400745,0,3826,7,1,156,65535,104,62,8,255
334
+ 460400745,6,2099,7,1,4,65535,65535,65535,255,2
335
+ 460400745,0,1684,7,1,154,65535,100,64,10,255
336
+ 460400745,0,3887,7,1,148,65535,86,66,8,255
337
+ 460400745,10,3903,7,1,65535,44,65535,65535,255,0
338
+ 460400745,0,3768,7,1,174,65535,96,44,14,255
339
+ 460400745,0,3596,7,1,170,65535,100,42,12,255
340
+ 460400745,6,2998,7,1,64,65535,65535,65535,255,2
341
+ 460400745,0,3873,7,1,154,65535,98,62,8,255
342
+ 460400745,6,2566,7,1,20,65535,65535,65535,255,3
343
+ 460400745,6,3646,7,1,898,65535,65535,65535,255,2
344
+ 460400745,13,3622,7,0,65535,65535,86,65535,255,255
345
+ 460400745,6,4004,7,1,20,65535,65535,65535,255,2
346
+ 460400745,13,3634,7,0,65535,65535,88,65535,255,255
347
+ 460400745,6,3830,7,1,152,65535,65535,65535,255,0
348
+ 460400745,0,2825,7,1,166,65535,108,42,12,255
349
+ 460400745,0,3560,7,0,846,496,444,68,255,255
350
+ 460400745,13,4007,7,0,65535,65535,82,65535,255,255
351
+ 460400745,6,2553,7,1,272,65535,65535,65535,255,2
352
+ 460400745,6,2504,7,1,248,65535,65535,65535,255,2
353
+ 460400745,6,2406,7,1,20,65535,65535,65535,255,2
354
+ 460400745,10,3992,7,1,65535,60,65535,65535,255,0
355
+ 460400745,0,3321,7,1,162,65535,88,66,8,255
356
+ 460400745,6,2786,7,1,14,65535,65535,65535,255,2
357
+ 460400745,13,3925,7,0,65535,65535,100,65535,255,255
358
+ 460400745,10,3785,7,1,65535,36,65535,65535,255,1
359
+ 460400745,6,3393,7,1,64,65535,65535,65535,255,2
360
+ 460400745,0,3795,7,1,152,65535,98,66,8,255
361
+ 460400745,0,3901,7,1,164,65535,100,38,10,255
362
+ 460400745,0,3909,7,1,148,65535,84,68,6,255
363
+ 460400745,0,3569,7,1,154,65535,102,64,10,255
364
+ 460400745,0,3916,7,1,146,65535,98,68,8,255
365
+ 460400745,0,3326,7,1,154,65535,106,66,10,255
366
+ 460400745,0,3732,7,1,154,65535,86,66,6,255
367
+ 460400745,0,3951,7,1,170,65535,88,44,12,255
368
+ 460400745,0,2196,7,1,154,65535,100,66,8,255
369
+ 460400745,0,3997,7,1,154,65535,106,70,8,255
370
+ 460400745,0,3286,7,1,148,65535,102,68,8,255
371
+ 460400745,0,2532,7,1,150,65535,102,68,10,255
372
+ 460400745,0,3468,7,1,166,65535,96,40,14,255
373
+ 460400745,0,4090,7,0,868,502,456,64,255,255
374
+ 460400745,0,3980,7,1,136,65535,72,66,10,255
375
+ 460400745,0,3834,7,1,166,65535,94,44,10,255
376
+ 460400745,0,3949,1,1,168,65535,108,68,8,255
377
+ 460400745,0,3398,1,1,182,65535,98,68,10,255
378
+ 460400745,0,3154,1,1,170,65535,114,86,6,255
379
+ 460400745,0,3945,1,1,170,65535,92,70,8,255
380
+ 460400745,6,3877,1,1,186,65535,65535,65535,255,1
381
+ 460400745,6,3411,1,1,170,65535,65535,65535,255,0
382
+ 460400745,0,2021,1,1,166,65535,114,70,6,255
383
+ 460400745,0,3766,1,1,190,65535,108,54,8,255
384
+ 460400745,0,3957,1,0,1036,596,536,68,255,255
385
+ 460400745,0,3525,1,1,172,65535,106,68,6,255
386
+ 460400745,10,4018,1,1,65535,138,65535,65535,255,0
387
+ 460400745,0,3712,1,0,938,600,432,66,255,255
388
+ 460400745,0,3835,1,0,1626,156,546,66,255,255
389
+ 460400745,0,3841,1,1,166,65535,102,68,8,255
390
+ 460400745,0,3331,1,1,162,65535,100,40,12,255
391
+ 460400745,0,3602,1,1,162,65535,102,68,8,255
392
+ 460400745,0,4012,1,1,170,65535,106,68,6,255
393
+ 460400745,0,3027,1,0,1218,770,480,2,255,255
394
+ 460400745,0,3395,1,1,164,65535,106,72,8,255
395
+ 460400745,0,2673,1,1,170,65535,110,68,6,255
396
+ 460400745,0,3919,1,1,164,65535,102,66,10,255
397
+ 460400745,0,3185,1,1,186,65535,114,52,8,255
398
+ 460400745,0,4026,1,1,202,65535,106,46,10,255
399
+ 460400745,0,3988,1,0,960,530,500,42,255,255
400
+ 460400745,0,3661,1,1,172,65535,108,70,6,255
401
+ 460400745,0,3229,1,1,148,65535,92,66,8,255
402
+ 460400745,0,1970,1,0,924,576,446,70,255,255
403
+ 460400745,0,4055,1,0,958,578,446,42,255,255
404
+ 460400745,0,4076,1,1,164,65535,106,68,6,255
405
+ 460400745,0,2758,1,1,172,65535,114,70,8,255
406
+ 460400745,0,2455,1,1,172,65535,106,74,8,255
407
+ 460400745,0,3224,1,1,170,65535,102,70,6,255
408
+ 460400745,0,3725,1,1,186,65535,112,40,12,255
409
+ 460400745,0,3889,1,1,150,65535,80,66,6,255
410
+ 460400745,0,3761,1,0,876,480,490,68,255,255
411
+ 460400745,0,3232,1,1,174,65535,112,68,8,255
412
+ 460400745,0,3659,1,1,178,65535,110,68,8,255
413
+ 460400745,0,3661,1,1,168,65535,102,72,8,255
414
+ 460400745,0,3944,1,0,1034,666,438,40,255,255
415
+ 460400745,0,3744,1,1,170,65535,112,70,6,255
416
+ 460400745,0,2033,1,0,1024,680,442,68,255,255
417
+ 460400745,0,2715,1,1,188,65535,110,46,10,255
418
+ 460400745,0,4034,1,1,140,65535,76,68,8,255
419
+ 460400745,0,2449,1,1,150,65535,94,68,10,255
420
+ 460400745,0,3014,1,0,1828,392,490,40,255,255
421
+ 460400745,0,3576,1,1,168,65535,104,72,6,255
422
+ 460400745,0,3638,1,1,170,65535,98,70,8,255
423
+ 460400745,10,3497,1,1,65535,136,65535,65535,255,0
424
+ 460400745,0,3992,1,1,146,65535,100,68,10,255
425
+ 460400745,0,64,1,1,168,65535,108,68,8,255
426
+ 460400745,13,3336,1,0,65535,65535,492,65535,255,255
427
+ 460400745,0,3762,1,1,178,65535,110,46,12,255
428
+ 460400745,0,3865,1,1,168,65535,114,70,10,255
429
+ 460400745,0,3770,1,1,182,65535,114,46,10,255
430
+ 460400745,13,4021,1,0,65535,65535,498,65535,255,255
431
+ 460400745,6,1811,1,1,38,65535,65535,65535,255,3
432
+ 460400745,0,3012,1,1,162,65535,86,76,8,255
433
+ 460400745,0,4061,1,1,164,65535,92,40,10,255
434
+ 460400745,13,3306,1,0,65535,65535,102,65535,255,255
435
+ 460400745,0,3812,2,0,1428,88,422,68,255,255
436
+ 460400745,0,3746,2,1,166,65535,102,70,6,255
437
+ 460400745,0,2733,2,1,166,65535,106,72,8,255
438
+ 460400745,0,4091,2,1,170,65535,104,70,8,255
439
+ 460400745,0,4080,2,1,178,65535,108,70,6,255
440
+ 460400745,0,3550,2,1,164,65535,98,70,8,255
441
+ 460400745,13,3381,2,0,65535,65535,114,65535,255,255
442
+ 460400745,0,2698,2,1,182,65535,104,42,12,255
443
+ 460400745,0,2475,2,1,172,65535,112,68,8,255
444
+ 460400745,0,4029,2,1,170,65535,114,70,6,255
445
+ 460400745,10,3974,2,1,65535,148,65535,65535,255,0
446
+ 460400745,10,3233,2,1,65535,46,65535,65535,255,0
447
+ 460400745,0,3504,2,1,178,65535,108,44,8,255
448
+ 460400745,6,3965,2,1,30,65535,65535,65535,255,2
449
+ 460400745,13,4015,2,0,65535,65535,98,65535,255,255
450
+ 460400745,6,3706,2,1,32,65535,65535,65535,255,3
451
+ 460400745,6,2958,2,1,42,65535,65535,65535,255,3
452
+ 460400745,13,3621,2,0,65535,65535,112,65535,255,255
453
+ 460400745,6,3226,2,1,164,65535,65535,65535,255,2
454
+ 460400745,6,2947,2,1,522,65535,65535,65535,255,2
455
+ 460400745,6,3760,2,1,192,65535,65535,65535,255,2
456
+ 460400745,10,3999,2,1,65535,126,65535,65535,255,1
457
+ 460400745,0,3072,2,1,188,65535,110,74,6,255
458
+ 460400745,0,2519,2,1,186,65535,116,70,8,255
459
+ 460400745,6,3550,2,1,184,65535,65535,65535,255,0
460
+ 460400745,6,3689,2,1,30,65535,65535,65535,255,3
461
+ 460400745,0,4056,2,1,172,65535,110,68,6,255
462
+ 460400745,0,4074,2,1,166,65535,104,68,8,255
463
+ 460400745,13,3934,2,0,65535,65535,110,65535,255,255
464
+ 460400745,0,3997,2,1,166,65535,98,68,6,255
465
+ 460400745,0,3476,2,1,180,65535,108,72,6,255
466
+ 460400745,0,3961,2,1,166,65535,106,68,10,255
467
+ 460400745,0,3962,2,1,168,65535,110,66,8,255
468
+ 460400745,0,3836,2,1,176,65535,102,42,10,255
469
+ 460400745,0,3520,2,1,168,65535,98,74,8,255
470
+ 460400745,0,3975,2,1,176,65535,104,42,12,255
471
+ 460400745,0,4001,2,1,168,65535,104,70,8,255
472
+ 460400745,0,2709,2,1,180,65535,110,42,12,255
473
+ 460400745,0,3842,2,1,172,65535,120,68,8,255
474
+ 460400745,0,4046,2,1,166,65535,104,70,10,255
475
+ 460400745,0,4077,2,1,182,65535,114,42,10,255
476
+ 460400745,0,2936,2,1,168,65535,106,70,8,255
477
+ 460400745,0,3232,2,0,1122,666,556,68,255,255
478
+ 460400745,0,4092,2,1,176,65535,104,70,6,255
479
+ 460400745,0,4054,2,1,170,65535,114,66,8,255
480
+ 460400745,13,3466,2,0,65535,65535,108,65535,255,255
481
+ 460400745,0,2539,2,1,168,65535,108,70,6,255
482
+ 460400745,0,2008,2,1,168,65535,110,70,8,255
483
+ 460400745,0,3734,3,1,166,65535,102,68,10,255
484
+ 460400745,0,2418,3,1,182,65535,106,42,10,255
485
+ 460400745,0,3263,3,1,164,65535,100,70,6,255
486
+ 460400745,0,2516,3,1,178,65535,100,46,14,255
487
+ 460400745,0,3370,3,1,162,65535,114,68,8,255
488
+ 460400745,0,2443,3,1,176,65535,110,68,6,255
489
+ 460400745,0,3876,3,1,166,65535,102,70,8,255
490
+ 460400745,0,3131,3,1,170,65535,100,72,8,255
491
+ 460400745,0,3650,3,1,166,65535,114,68,6,255
492
+ 460400745,0,3920,3,1,184,65535,104,44,10,255
493
+ 460400745,0,3591,3,1,182,65535,114,40,10,255
494
+ 460400745,0,2927,3,1,176,65535,104,42,10,255
495
+ 460400745,0,3269,3,1,180,65535,112,40,10,255
496
+ 460400745,0,3544,3,1,164,65535,104,68,8,255
497
+ 460400745,0,2267,3,1,168,65535,98,70,8,255
498
+ 460400745,0,3345,3,1,170,65535,102,70,6,255
499
+ 460400745,0,4079,3,0,1176,794,466,56,255,255
500
+ 460400745,0,3988,3,0,1016,602,510,68,255,255
501
+ 460400745,0,1475,3,1,178,65535,106,42,12,255
502
+ 460400745,0,3231,3,1,178,65535,106,72,8,255
503
+ 460400745,0,3992,3,1,170,65535,94,46,10,255
504
+ 460400745,0,3745,3,1,168,65535,110,72,6,255
505
+ 460400745,0,3427,3,1,180,65535,112,70,8,255
506
+ 460400745,13,3881,3,0,65535,65535,94,65535,255,255
507
+ 460400745,0,2060,3,1,154,65535,90,66,10,255
508
+ 460400745,0,2968,3,1,172,65535,104,72,6,255
509
+ 460400745,0,3959,3,1,166,65535,110,68,10,255
510
+ 460400745,10,2857,3,1,65535,136,65535,65535,255,0
511
+ 460400745,13,3729,3,0,65535,65535,72,65535,255,255
512
+ 460400745,10,3457,3,1,65535,68,65535,65535,255,0
513
+ 460400745,13,3497,3,0,65535,65535,620,65535,255,255
514
+ 460400745,13,4087,3,0,65535,65535,566,65535,255,255
515
+ 460400745,0,3750,3,1,166,65535,102,68,6,255
516
+ 460400745,10,3791,3,1,65535,46,65535,65535,255,2
517
+ 460400745,10,4047,3,1,65535,140,65535,65535,255,0
518
+ 460400745,13,3850,3,0,65535,65535,622,65535,255,255
519
+ 460400745,6,2926,3,1,30,65535,65535,65535,255,3
520
+ 460400745,0,3151,3,0,848,524,388,40,255,255
521
+ 460400745,6,4044,3,1,162,65535,65535,65535,255,0
522
+ 460400745,13,3743,3,0,65535,65535,112,65535,255,255
523
+ 460400745,13,3760,3,0,65535,65535,94,65535,255,255
524
+ 460400745,10,2358,3,1,65535,156,65535,65535,255,0
525
+ 460400745,0,2361,3,1,182,65535,110,42,12,255
526
+ 460400745,13,3886,3,0,65535,65535,102,65535,255,255
527
+ 460400745,0,3451,3,1,168,65535,106,68,8,255
528
+ 460400745,13,3785,3,0,65535,65535,104,65535,255,255
529
+ 460400745,6,2351,3,1,24,65535,65535,65535,255,2
530
+ 460400745,0,2709,3,1,180,65535,114,40,12,255
531
+ 460400745,0,3753,3,1,178,65535,100,44,10,255
532
+ 460400745,0,3967,3,1,156,65535,104,70,6,255
533
+ 460400745,0,2667,3,1,178,65535,110,44,8,255
534
+ 460400745,0,3769,3,1,170,65535,108,70,6,255
535
+ 460400745,0,3591,3,1,186,65535,114,42,10,255
536
+ 460400745,13,3319,4,0,65535,65535,120,65535,255,255
537
+ 460400745,0,4009,4,1,156,65535,92,68,8,255
538
+ 460400745,0,3487,4,1,164,65535,106,70,10,255
539
+ 460400745,10,3953,4,1,65535,28,65535,65535,255,1
540
+ 460400745,13,3099,4,0,65535,65535,100,65535,255,255
541
+ 460400745,0,4010,4,1,168,65535,108,70,6,255
542
+ 460400745,0,3494,4,1,164,65535,100,70,8,255
543
+ 460400745,0,3648,4,1,184,65535,106,42,12,255
544
+ 460400745,13,3657,4,0,65535,65535,88,65535,255,255
545
+ 460400745,13,4045,4,0,65535,65535,100,65535,255,255
546
+ 460400745,10,3088,4,1,65535,38,65535,65535,255,1
547
+ 460400745,0,3788,4,1,166,65535,106,68,8,255
548
+ 460400745,10,3528,4,1,65535,490,65535,65535,255,0
549
+ 460400745,0,4065,4,1,156,65535,92,66,6,255
550
+ 460400745,6,3972,4,1,4,65535,65535,65535,255,2
551
+ 460400745,0,3913,4,0,882,448,500,40,255,255
552
+ 460400745,0,3800,4,0,1232,880,424,40,255,255
553
+ 460400745,0,1394,4,1,166,65535,100,70,6,255
554
+ 460400745,0,4020,4,0,894,504,484,66,255,255
555
+ 460400745,0,3424,4,1,184,65535,108,42,12,255
556
+ 460400745,0,3984,4,1,162,65535,100,68,8,255
557
+ 460400745,10,2673,4,1,65535,42,65535,65535,255,1
558
+ 460400745,0,3486,4,1,164,65535,100,70,8,255
559
+ 460400745,0,3816,4,0,854,488,464,70,255,255
560
+ 460400745,0,4036,4,0,760,404,418,38,255,255
561
+ 460400745,0,3080,4,1,162,65535,104,68,6,255
562
+ 460400745,0,3201,4,1,174,65535,118,70,8,255
563
+ 460400745,0,3490,4,0,982,576,502,68,255,255
564
+ 460400745,0,3473,4,0,970,538,526,66,255,255
565
+ 460400745,0,3555,4,0,1022,608,506,64,255,255
566
+ 460400745,0,3822,4,1,178,65535,106,44,12,255
567
+ 460400745,0,3648,4,1,166,65535,106,68,8,255
568
+ 460400745,0,3562,4,0,784,460,418,68,255,255
569
+ 460400745,0,3484,4,1,164,65535,106,70,8,255
570
+ 460400745,0,2082,4,1,162,65535,120,66,6,255
571
+ 460400745,0,2699,4,1,178,65535,100,50,12,255
572
+ 460400745,0,3956,4,1,166,65535,98,70,8,255
573
+ 460400745,0,3927,4,1,170,65535,92,48,12,255
574
+ 460400745,0,3721,4,1,164,65535,108,68,8,255
575
+ 460400745,0,3126,4,1,166,65535,98,72,8,255
576
+ 460400745,0,3613,4,0,1040,596,538,66,255,255
577
+ 460400745,13,3075,4,0,65535,65535,488,65535,255,255
578
+ 460400745,0,3469,4,1,170,65535,106,72,8,255
579
+ 460400745,13,3165,4,0,65535,65535,106,65535,255,255
580
+ 460400745,6,3075,4,1,188,65535,65535,65535,255,1
581
+ 460400745,10,2455,4,1,65535,6,65535,65535,255,1
582
+ 460400745,13,3971,4,0,65535,65535,520,65535,255,255
583
+ 460400745,6,3282,4,1,6,65535,65535,65535,255,2
584
+ 460400745,6,4079,4,1,184,65535,65535,65535,255,1
585
+ 460400745,10,3252,4,1,65535,40,65535,65535,255,1
586
+ 460400745,13,3657,4,0,65535,65535,478,65535,255,255
587
+ 460400745,0,2965,4,0,814,458,422,42,255,255
588
+ 460400745,6,4053,5,1,20,65535,65535,65535,255,2
589
+ 460400745,6,4036,5,1,516,65535,65535,65535,255,2
590
+ 460400745,10,4026,5,1,65535,44,65535,65535,255,1
591
+ 460400745,6,3712,5,1,166,65535,65535,65535,255,0
592
+ 460400745,6,2222,5,1,4,65535,65535,65535,255,2
593
+ 460400745,6,3929,5,1,200,65535,65535,65535,255,0
594
+ 460400745,10,1506,5,1,65535,34,65535,65535,255,1
595
+ 460400745,6,3716,5,1,4,65535,65535,65535,255,2
596
+ 460400745,13,3738,5,0,65535,65535,556,65535,255,255
597
+ 460400745,13,3236,5,0,65535,65535,542,65535,255,255
598
+ 460400745,6,3338,5,1,22,65535,65535,65535,255,2
599
+ 460400745,13,4020,5,0,65535,65535,484,65535,255,255
600
+ 460400745,13,3407,5,0,65535,65535,92,65535,255,255
601
+ 460400745,0,3982,5,0,1406,60,426,68,255,255
602
+ 460400745,10,3770,5,1,65535,36,65535,65535,255,1
603
+ 460400745,0,3867,5,1,174,65535,94,50,10,255
604
+ 460400745,0,3968,5,1,160,65535,98,68,8,255
605
+ 460400745,0,3953,5,0,878,520,426,40,255,255
606
+ 460400745,0,2936,5,0,756,438,414,70,255,255
607
+ 460400745,0,3828,5,0,960,544,516,70,255,255
608
+ 460400745,0,3912,5,0,976,522,522,40,255,255
609
+ 460400745,0,3770,5,1,170,65535,104,70,8,255
610
+ 460400745,0,3468,5,0,890,422,534,40,255,255
611
+ 460400745,0,3300,5,0,768,404,454,64,255,255
612
+ 460400745,0,2902,5,0,910,554,446,62,255,255
613
+ 460400745,0,3394,5,0,1122,720,498,62,255,255
614
+ 460400745,0,1808,5,0,748,434,410,68,255,255
615
+ 460400745,0,3946,5,0,762,442,418,72,255,255
616
+ 460400745,0,4028,5,1,162,65535,92,78,6,255
617
+ 460400745,0,3828,5,0,910,518,486,66,255,255
618
+ 460400745,0,3783,5,0,830,468,458,68,255,255
619
+ 460400745,0,3726,5,0,998,586,508,66,255,255
620
+ 460400745,0,3768,5,1,238,65535,114,36,8,255
621
+ 460400745,0,2087,5,0,898,494,500,66,255,255
622
+ 460400745,0,3198,5,0,750,422,394,40,255,255
623
+ 460400745,0,3543,5,1,166,65535,104,66,8,255
624
+ 460400745,0,2902,5,0,1038,618,516,66,255,255
625
+ 460400745,0,3300,5,1,166,65535,98,74,8,255
626
+ 460400745,0,2336,5,1,164,65535,98,72,8,255
627
+ 460400745,0,3300,5,0,968,592,472,68,255,255
628
+ 460400745,0,3754,5,0,1086,680,472,38,255,255
629
+ 460400745,6,34,5,1,152,65535,65535,65535,255,2
630
+ 460400745,0,3371,5,0,888,494,486,64,255,255
631
+ 460400745,0,4094,5,1,160,65535,94,68,8,255
632
+ 460400745,0,3497,5,0,1486,90,474,64,255,255
633
+ 460400745,10,3746,5,1,65535,40,65535,65535,255,1
634
+ 460400745,0,3917,5,1,162,65535,98,72,6,255
635
+ 460400745,6,3742,5,1,930,65535,65535,65535,255,1
636
+ 460400745,6,3532,5,1,178,65535,65535,65535,255,0
637
+ 460400745,13,3866,6,0,65535,65535,846,65535,255,255
638
+ 460400745,13,2437,6,0,65535,65535,396,65535,255,255
639
+ 460400745,6,3821,6,1,26,65535,65535,65535,255,2
640
+ 460400745,6,3882,6,1,156,65535,65535,65535,255,0
641
+ 460400745,6,4062,6,1,18,65535,65535,65535,255,2
642
+ 460400745,10,2912,6,1,65535,24,65535,65535,255,0
643
+ 460400745,10,4075,6,1,65535,36,65535,65535,255,1
644
+ 460400745,6,2732,6,1,168,65535,65535,65535,255,0
645
+ 460400745,10,3974,6,1,65535,556,65535,65535,255,0
646
+ 460400745,6,3988,6,1,14,65535,65535,65535,255,2
647
+ 460400745,10,3968,6,1,65535,164,65535,65535,255,0
648
+ 460400745,6,3171,6,1,18,65535,65535,65535,255,2
649
+ 460400745,6,3870,6,1,1598,65535,65535,65535,255,0
650
+ 460400745,6,3486,6,1,146,65535,65535,65535,255,2
651
+ 460400745,0,3344,6,0,756,398,424,40,255,255
652
+ 460400745,6,3945,6,1,18,65535,65535,65535,255,2
653
+ 460400745,0,4008,6,0,894,508,454,40,255,255
654
+ 460400745,13,170,6,0,65535,65535,2,65535,255,255
655
+ 460400745,13,3988,6,0,65535,65535,98,65535,255,255
656
+ 460400745,13,2796,6,0,65535,65535,364,65535,255,255
657
+ 460400745,0,2531,6,0,856,536,390,44,255,255
658
+ 460400745,6,3776,6,1,0,65535,65535,65535,255,3
659
+ 460400745,0,2957,6,0,870,478,488,66,255,255
660
+ 460400745,0,3204,6,0,1292,880,482,40,255,255
661
+ 460400745,0,3845,6,1,162,65535,90,66,6,255
662
+ 460400745,13,3651,6,0,65535,65535,534,65535,255,255
663
+ 460400745,0,3957,6,1,196,65535,100,2,16,255
664
+ 460400745,0,1315,6,0,838,476,430,40,255,255
665
+ 460400745,0,3256,6,1,172,65535,92,50,10,255
666
+ 460400745,0,3830,6,0,708,380,392,40,255,255
667
+ 460400745,0,3914,6,0,730,436,388,68,255,255
668
+ 460400745,0,3039,6,0,854,492,446,60,255,255
669
+ 460400745,0,4009,6,0,1042,600,510,38,255,255
670
+ 460400745,0,3149,6,1,162,65535,100,68,8,255
671
+ 460400745,0,3766,6,0,1186,716,568,68,255,255
672
+ 460400745,0,3630,6,1,166,65535,96,42,12,255
673
+ 460400745,0,3995,6,1,172,65535,100,42,10,255
674
+ 460400745,0,3176,6,0,1048,604,514,40,255,255
675
+ 460400745,0,2775,7,0,900,550,422,46,255,255
676
+ 460400745,0,3699,7,1,154,65535,100,66,8,255
677
+ 460400745,0,3925,7,1,150,65535,94,66,10,255
678
+ 460400745,10,3888,7,1,65535,64,65535,65535,255,0
679
+ 460400745,0,4045,7,1,146,65535,110,68,10,255
680
+ 460400745,13,3521,7,0,65535,65535,414,65535,255,255
681
+ 460400745,0,3464,7,1,172,65535,112,42,10,255
682
+ 460400745,6,3194,7,1,12,65535,65535,65535,255,3
683
+ 460400745,10,3853,7,1,65535,114,65535,65535,255,1
684
+ 460400745,13,3631,7,0,65535,65535,102,65535,255,255
685
+ 460400745,0,2145,7,1,154,65535,96,66,10,255
686
+ 460400745,6,2959,7,1,152,65535,65535,65535,255,0
687
+ 460400745,13,1634,7,0,65535,65535,96,65535,255,255
688
+ 460400745,10,3846,7,1,65535,62,65535,65535,255,0
689
+ 460400745,6,1911,7,1,24,65535,65535,65535,255,2
690
+ 460400745,13,2707,7,0,65535,65535,102,65535,255,255
691
+ 460400745,6,3505,7,1,8,65535,65535,65535,255,2
692
+ 460400745,6,2340,7,1,16,65535,65535,65535,255,2
693
+ 460400745,13,3869,7,0,65535,65535,926,65535,255,255
694
+ 460400745,13,3791,7,0,65535,65535,76,65535,255,255
695
+ 460400745,10,3325,7,1,65535,142,65535,65535,255,0
696
+ 460400745,0,3084,7,1,140,65535,78,66,8,255
697
+ 460400745,0,3233,7,0,848,464,480,68,255,255
698
+ 460400745,6,3929,7,1,14,65535,65535,65535,255,2
699
+ 460400745,6,3587,7,1,154,65535,65535,65535,255,0
700
+ 460400745,0,3381,7,1,180,65535,110,40,10,255
701
+ 460400745,0,3420,7,1,158,65535,78,42,8,255
702
+ 460400745,0,2719,7,1,138,65535,76,66,8,255
703
+ 460400745,0,3424,7,1,162,65535,90,76,6,255
704
+ 460400745,0,4065,7,1,156,65535,114,68,10,255
705
+ 460400745,0,3170,7,1,142,65535,100,68,10,255
706
+ 460400745,0,2072,7,1,172,65535,104,42,10,255
707
+ 460400745,0,3850,7,0,1256,840,514,68,255,255
708
+ 460400745,0,2723,7,1,164,65535,86,50,8,255
709
+ 460400745,0,3849,7,1,180,65535,106,48,10,255
710
+ 460400745,0,3161,7,0,1194,798,484,58,255,255
711
+ 460400745,0,3686,1,1,174,65535,108,68,6,255
712
+ 460400745,0,3790,1,1,188,65535,110,46,10,255
713
+ 460400745,0,3858,1,0,1072,692,474,64,255,255
714
+ 460400745,0,3957,1,1,180,65535,110,42,12,255
715
+ 460400745,13,3016,1,0,65535,65535,84,65535,255,255
716
+ 460400745,6,3879,1,1,16,65535,65535,65535,255,2
717
+ 460400745,0,3819,1,0,746,348,490,68,255,255
718
+ 460400745,6,3995,1,1,174,65535,65535,65535,255,0
719
+ 460400745,0,4016,1,0,858,498,456,70,255,255
720
+ 460400745,0,3887,1,1,188,65535,112,44,10,255
721
+ 460400745,6,4022,1,1,164,65535,65535,65535,255,0
722
+ 460400745,13,4048,1,0,65535,65535,106,65535,255,255
723
+ 460400745,0,3727,1,0,1110,668,516,40,255,255
724
+ 460400745,0,3651,1,1,168,65535,114,68,6,255
725
+ 460400745,13,3371,1,0,65535,65535,108,65535,255,255
726
+ 460400745,0,3014,1,1,156,65535,92,66,10,255
727
+ 460400745,0,1151,1,0,894,490,500,68,255,255
728
+ 460400745,0,3394,1,1,144,65535,90,68,10,255
729
+ 460400745,0,3341,1,1,188,65535,118,44,10,255
730
+ 460400745,0,3434,1,1,184,65535,110,42,10,255
731
+ 460400745,0,2678,1,0,904,572,426,66,255,255
732
+ 460400745,0,3614,1,1,184,65535,112,42,10,255
733
+ 460400745,0,3170,1,1,154,65535,110,68,8,255
734
+ 460400745,0,4028,1,1,170,65535,102,46,12,255
735
+ 460400745,0,3463,1,1,162,65535,94,40,10,255
736
+ 460400745,0,3639,1,1,172,65535,100,44,12,255
737
+ 460400745,0,3397,1,0,1204,306,978,52,255,255
738
+ 460400745,0,2833,1,1,156,65535,86,72,6,255
739
+ 460400745,0,2595,1,1,178,65535,118,50,10,255
740
+ 460400745,0,3635,1,1,160,65535,102,70,8,255
741
+ 460400745,0,3565,1,1,164,65535,106,68,8,255
742
+ 460400745,0,3633,1,1,184,65535,112,42,10,255
743
+ 460400745,0,3968,1,1,184,65535,104,46,12,255
744
+ 460400745,0,3467,1,1,150,65535,80,70,6,255
745
+ 460400745,0,3928,1,0,1014,620,490,68,255,255
746
+ 460400745,0,4094,1,1,176,65535,108,72,6,255
747
+ 460400745,0,3957,1,1,182,65535,114,44,10,255
748
+ 460400745,0,2516,1,1,184,65535,106,42,12,255
749
+ 460400745,0,4088,1,1,156,65535,98,76,6,255
750
+ 460400745,0,2977,1,1,166,65535,106,72,8,255
751
+ 460400745,10,3283,1,1,65535,44,65535,65535,255,0
752
+ 460400745,0,3286,1,1,168,65535,96,48,12,255
753
+ 460400745,0,2067,1,1,144,65535,76,68,10,255
754
+ 460400745,13,3777,1,0,65535,65535,104,65535,255,255
755
+ 460400745,0,3779,1,1,152,65535,96,68,10,255
756
+ 460400745,0,3619,1,1,158,65535,92,68,8,255
757
+ 460400745,0,4038,1,1,180,65535,102,42,10,255
758
+ 460400745,6,3669,1,1,160,65535,65535,65535,255,0
759
+ 460400745,0,1385,1,0,972,582,482,62,255,255
760
+ 460400745,13,3905,1,0,65535,65535,102,65535,255,255
761
+ 460400745,13,3658,1,0,65535,65535,104,65535,255,255
762
+ 460400745,0,3369,1,1,164,65535,98,68,10,255
763
+ 460400745,0,4056,1,1,152,65535,102,64,10,255
764
+ 460400745,0,3740,1,1,152,65535,90,64,10,255
765
+ 460400745,10,4000,1,1,65535,60,65535,65535,255,1
766
+ 460400745,6,40,1,1,190,65535,65535,65535,255,1
767
+ 460400745,6,4019,1,1,908,65535,65535,65535,255,1
768
+ 460400745,0,3690,2,1,166,65535,116,68,8,255
769
+ 460400745,0,3080,2,1,162,65535,112,68,10,255
770
+ 460400745,10,3975,2,1,65535,36,65535,65535,255,1
771
+ 460400745,0,2509,2,1,170,65535,128,70,8,255
772
+ 460400745,10,3631,2,1,65535,488,65535,65535,255,0
773
+ 460400745,0,3807,2,1,172,65535,114,70,6,255
774
+ 460400745,0,3698,2,0,750,342,500,68,255,255
775
+ 460400745,10,1213,2,1,65535,134,65535,65535,255,0
776
+ 460400745,13,156,2,0,65535,65535,504,65535,255,255
777
+ 460400745,13,2966,2,0,65535,65535,542,65535,255,255
778
+ 460400745,13,4032,2,0,65535,65535,110,65535,255,255
779
+ 460400745,6,3014,2,1,6,65535,65535,65535,255,2
780
+ 460400745,13,3883,2,0,65535,65535,102,65535,255,255
781
+ 460400745,13,3592,2,0,65535,65535,548,65535,255,255
782
+ 460400745,10,3559,2,1,65535,148,65535,65535,255,0
783
+ 460400745,13,3277,2,0,65535,65535,644,65535,255,255
784
+ 460400745,10,3363,2,1,65535,44,65535,65535,255,1
785
+ 460400745,13,1338,2,0,65535,65535,420,65535,255,255
786
+ 460400745,10,3926,2,1,65535,498,65535,65535,255,0
787
+ 460400745,0,3478,2,1,178,65535,106,42,10,255
788
+ 460400745,0,1508,2,1,168,65535,108,72,4,255
789
+ 460400745,10,4038,2,1,65535,172,65535,65535,255,0
790
+ 460400745,0,4086,2,1,164,65535,106,68,8,255
791
+ 460400745,10,1287,2,1,65535,138,65535,65535,255,0
792
+ 460400745,0,4019,2,0,1018,584,502,40,255,255
793
+ 460400745,0,4017,2,1,166,65535,110,70,8,255
794
+ 460400745,0,3907,2,1,186,65535,106,42,12,255
795
+ 460400745,0,3300,2,0,914,524,488,68,255,255
796
+ 460400745,0,3141,2,1,166,65535,102,68,6,255
797
+ 460400745,0,345,2,1,184,65535,102,42,10,255
798
+ 460400745,0,3264,2,0,852,484,436,42,255,255
799
+ 460400745,0,3794,2,0,796,418,442,40,255,255
800
+ 460400745,0,3063,2,1,184,65535,104,44,12,255
801
+ 460400745,0,2320,2,1,168,65535,114,68,6,255
802
+ 460400745,0,3808,2,1,188,65535,106,58,10,255
803
+ 460400745,0,3533,2,0,1450,8,498,44,255,255
804
+ 460400745,0,3825,2,0,1170,702,566,66,255,255
805
+ 460400745,0,2966,2,1,166,65535,106,70,8,255
806
+ 460400745,13,3785,2,0,65535,65535,102,65535,255,255
807
+ 460400745,0,3650,2,1,168,65535,110,70,6,255
808
+ 460400745,0,2982,2,1,168,65535,102,70,8,255
809
+ 460400745,0,3856,3,1,184,65535,112,44,12,255
810
+ 460400745,0,3738,3,1,168,65535,108,72,8,255
811
+ 460400745,0,3990,3,1,174,65535,110,68,8,255
812
+ 460400745,0,2841,3,1,168,65535,116,70,6,255
813
+ 460400745,0,3395,3,1,176,65535,100,76,10,255
814
+ 460400745,0,2921,3,1,178,65535,112,40,12,255
815
+ 460400745,0,2522,3,1,174,65535,106,72,6,255
816
+ 460400745,0,3361,3,1,162,65535,104,2,16,255
817
+ 460400745,0,3535,3,0,1408,8,484,70,255,255
818
+ 460400745,0,3949,3,0,904,580,418,66,255,255
819
+ 460400745,0,3771,3,0,866,484,448,40,255,255
820
+ 460400745,0,3597,3,1,164,65535,108,68,8,255
821
+ 460400745,0,3765,3,1,164,65535,96,70,8,255
822
+ 460400745,0,4090,3,1,184,65535,120,68,6,255
823
+ 460400745,0,2074,3,1,184,65535,108,46,12,255
824
+ 460400745,0,3995,3,1,166,65535,114,70,8,255
825
+ 460400745,13,3569,3,0,65535,65535,108,65535,255,255
826
+ 460400745,0,2940,3,1,168,65535,106,70,8,255
827
+ 460400745,0,3401,3,0,804,478,420,68,255,255
828
+ 460400745,0,2181,3,1,164,65535,106,68,8,255
829
+ 460400745,0,3010,3,1,166,65535,98,70,10,255
830
+ 460400745,0,2733,3,1,166,65535,100,66,8,255
831
+ 460400745,0,3853,3,0,1462,990,572,64,255,255
832
+ 460400745,6,4090,3,1,32,65535,65535,65535,255,3
833
+ 460400745,0,2078,3,1,410,65535,174,4,0,255
834
+ 460400745,0,4080,3,1,212,65535,96,70,12,255
835
+ 460400745,6,3705,3,1,186,65535,65535,65535,255,1
836
+ 460400745,6,3596,3,1,184,65535,65535,65535,255,1
837
+ 460400745,6,3891,3,1,22,65535,65535,65535,255,2
838
+ 460400745,6,3965,3,1,36,65535,65535,65535,255,2
839
+ 460400745,6,1975,3,1,170,65535,65535,65535,255,0
840
+ 460400745,10,3055,3,1,65535,142,65535,65535,255,0
841
+ 460400745,10,3856,3,1,65535,142,65535,65535,255,0
842
+ 460400745,6,3413,3,1,8,65535,65535,65535,255,2
843
+ 460400745,6,3943,3,1,166,65535,65535,65535,255,0
844
+ 460400745,10,2343,3,1,65535,442,65535,65535,255,0
845
+ 460400745,0,3578,3,1,180,65535,118,66,8,255
846
+ 460400745,13,4094,3,0,65535,65535,468,65535,255,255
847
+ 460400745,6,3805,3,1,16,65535,65535,65535,255,2
848
+ 460400745,0,3831,3,1,170,65535,114,70,8,255
849
+ 460400745,0,3661,3,0,788,414,464,66,255,255
850
+ 460400745,0,1912,3,1,164,65535,104,70,6,255
851
+ 460400745,0,3999,3,1,212,65535,118,50,8,255
852
+ 460400745,0,2760,3,1,166,65535,102,68,6,255
853
+ 460400745,0,3610,3,1,184,65535,108,74,10,255
854
+ 460400745,0,3736,4,1,170,65535,102,70,6,255
855
+ 460400745,0,4090,4,1,162,65535,114,68,6,255
856
+ 460400745,13,2576,4,0,65535,65535,424,65535,255,255
857
+ 460400745,6,3033,4,1,184,65535,65535,65535,255,1
858
+ 460400745,0,3401,4,0,898,496,494,62,255,255
859
+ 460400745,0,2309,4,1,174,65535,104,68,8,255
860
+ 460400745,13,3735,4,0,65535,65535,102,65535,255,255
861
+ 460400745,10,3707,4,1,65535,140,65535,65535,255,1
862
+ 460400745,10,2304,4,1,65535,40,65535,65535,255,1
863
+ 460400745,10,3555,4,1,65535,8,65535,65535,255,0
864
+ 460400745,0,3284,4,1,164,65535,102,70,6,255
865
+ 460400745,10,3199,4,1,65535,40,65535,65535,255,0
866
+ 460400745,6,3852,4,1,766,65535,65535,65535,255,0
867
+ 460400745,13,3065,4,0,65535,65535,538,65535,255,255
868
+ 460400745,0,4058,4,1,166,65535,106,70,6,255
869
+ 460400745,0,3755,4,1,172,65535,124,66,6,255
870
+ 460400745,0,2442,4,1,172,65535,104,70,4,255
871
+ 460400745,0,3087,4,1,166,65535,106,68,8,255
872
+ 460400745,0,3982,4,0,1166,768,496,66,255,255
873
+ 460400745,0,3903,4,0,762,424,410,44,255,255
874
+ 460400745,6,3512,4,1,180,65535,65535,65535,255,1
875
+ 460400745,0,4034,4,1,182,65535,108,44,10,255
876
+ 460400745,0,3414,4,0,982,546,514,48,255,255
877
+ 460400745,0,3777,4,1,176,65535,126,68,8,255
878
+ 460400745,0,4028,4,0,906,536,464,68,255,255
879
+ 460400745,0,3291,4,0,1104,662,540,68,255,255
880
+ 460400745,0,3478,4,1,166,65535,104,68,10,255
881
+ 460400745,0,3763,4,1,116,65535,104,58,16,255
882
+ 460400745,0,3575,4,0,1050,630,518,68,255,255
883
+ 460400745,0,4095,4,0,832,516,412,68,255,255
884
+ 460400745,0,3437,4,1,178,65535,100,40,14,255
885
+ 460400745,0,2884,4,0,2,38,2,34,255,255
886
+ 460400745,6,2367,4,1,24,65535,65535,65535,255,3
887
+ 460400745,6,3831,4,1,502,65535,65535,65535,255,2
888
+ 460400745,0,3768,4,1,162,65535,98,70,8,255
889
+ 460400745,0,3622,4,1,182,65535,110,40,10,255
890
+ 460400745,10,3895,4,1,65535,156,65535,65535,255,0
891
+ 460400745,0,3955,4,1,166,65535,106,68,8,255
892
+ 460400745,0,2016,4,0,936,504,530,68,255,255
893
+ 460400745,0,3827,4,1,164,65535,96,72,8,255
894
+ 460400745,6,4091,4,1,162,65535,65535,65535,255,0
895
+ 460400745,13,3716,4,0,65535,65535,112,65535,255,255
896
+ 460400745,10,3882,4,1,65535,18,65535,65535,255,1
897
+ 460400745,6,3879,4,1,14,65535,65535,65535,255,2
898
+ 460400745,13,4089,4,0,65535,65535,592,65535,255,255
899
+ 460400745,13,1865,4,0,65535,65535,474,65535,255,255
900
+ 460400745,10,3543,4,1,65535,22,65535,65535,255,1
901
+ 460400745,13,3502,4,0,65535,65535,110,65535,255,255
902
+ 460400745,13,3653,5,0,65535,65535,568,65535,255,255
903
+ 460400745,6,3290,5,1,8,65535,65535,65535,255,2
904
+ 460400745,10,2620,5,1,65535,14,65535,65535,255,1
905
+ 460400745,10,3917,5,1,65535,40,65535,65535,255,2
906
+ 460400745,6,3682,5,1,24,65535,65535,65535,255,2
907
+ 460400745,10,3371,5,1,65535,54,65535,65535,255,2
908
+ 460400745,10,3995,5,1,65535,44,65535,65535,255,0
909
+ 460400745,0,2816,5,1,160,65535,94,70,6,255
910
+ 460400745,6,3724,5,1,172,65535,65535,65535,255,0
911
+ 460400745,0,3626,5,1,166,65535,110,68,6,255
912
+ 460400745,0,4062,5,1,164,65535,98,70,10,255
913
+ 460400745,6,2741,5,1,28,65535,65535,65535,255,2
914
+ 460400745,0,66,5,0,788,464,402,54,255,255
915
+ 460400745,0,2216,5,1,174,65535,94,44,12,255
916
+ 460400745,0,4050,5,0,1670,192,532,42,255,255
917
+ 460400745,0,3885,5,0,1190,650,634,66,255,255
918
+ 460400745,0,3131,5,0,1094,650,518,44,255,255
919
+ 460400745,0,3892,5,1,180,65535,102,46,12,255
920
+ 460400745,0,3976,5,1,160,65535,100,68,8,255
921
+ 460400745,10,3470,5,1,65535,44,65535,65535,255,1
922
+ 460400745,0,2586,5,0,916,532,476,62,255,255
923
+ 460400745,0,3208,5,0,902,528,466,66,255,255
924
+ 460400745,0,4072,5,1,174,65535,98,44,12,255
925
+ 460400745,0,4038,5,1,164,65535,96,70,8,255
926
+ 460400745,0,4089,5,0,946,512,528,68,255,255
927
+ 460400745,0,3924,5,1,188,65535,120,40,8,255
928
+ 460400745,0,3631,5,0,820,468,450,70,255,255
929
+ 460400745,13,3143,5,0,65535,65535,522,65535,255,255
930
+ 460400745,0,3440,5,0,894,498,494,70,255,255
931
+ 460400745,0,3950,5,0,814,442,440,44,255,255
932
+ 460400745,0,1460,5,0,768,348,512,68,255,255
933
+ 460400745,0,3980,5,1,160,65535,92,70,6,255
934
+ 460400745,0,3100,5,1,172,65535,104,72,6,255
935
+ 460400745,0,3811,5,0,1088,622,562,68,255,255
936
+ 460400745,0,3876,5,0,824,476,444,70,255,255
937
+ 460400745,10,3664,5,1,65535,138,65535,65535,255,1
938
+ 460400745,10,3578,5,1,65535,48,65535,65535,255,1
939
+ 460400745,0,3997,5,0,1158,638,590,42,255,255
940
+ 460400745,0,3467,5,0,1030,568,532,42,255,255
941
+ 460400745,13,3994,5,0,65535,65535,14,65535,255,255
942
+ 460400745,10,3676,5,1,65535,44,65535,65535,255,1
943
+ 460400745,13,3967,5,0,65535,65535,414,65535,255,255
944
+ 460400745,10,4073,5,1,65535,48,65535,65535,255,1
945
+ 460400745,13,3907,6,0,65535,65535,488,65535,255,255
946
+ 460400745,13,3841,6,0,65535,65535,502,65535,255,255
947
+ 460400745,6,3650,6,1,916,65535,65535,65535,255,0
948
+ 460400745,6,2968,6,1,4,65535,65535,65535,255,2
949
+ 460400745,13,2752,6,0,65535,65535,576,65535,255,255
950
+ 460400745,10,3507,6,1,65535,38,65535,65535,255,1
951
+ 460400745,13,4076,6,0,65535,65535,520,65535,255,255
952
+ 460400745,13,3669,6,0,65535,65535,86,65535,255,255
953
+ 460400745,0,1851,6,0,856,500,446,64,255,255
954
+ 460400745,6,2950,6,1,160,65535,65535,65535,255,0
955
+ 460400745,10,3547,6,1,65535,526,65535,65535,255,3
956
+ 460400745,10,4025,6,1,65535,152,65535,65535,255,0
957
+ 460400745,10,3631,6,1,65535,156,65535,65535,255,0
958
+ 460400745,0,3323,6,1,174,65535,110,42,10,255
959
+ 460400745,10,1774,6,1,65535,40,65535,65535,255,1
960
+ 460400745,0,3607,6,1,170,65535,88,50,10,255
961
+ 460400745,13,86,6,0,65535,65535,480,65535,255,255
962
+ 460400745,0,2096,6,0,910,568,440,68,255,255
963
+ 460400745,13,4067,6,0,65535,65535,462,65535,255,255
964
+ 460400745,0,4030,6,1,178,65535,100,44,12,255
965
+ 460400745,0,3310,6,0,898,522,446,42,255,255
966
+ 460400745,13,3801,6,0,65535,65535,254,65535,255,255
967
+ 460400745,10,2310,6,1,65535,128,65535,65535,255,0
968
+ 460400745,0,885,6,0,1084,608,566,62,255,255
969
+ 460400745,0,4025,6,0,966,560,474,40,255,255
970
+ 460400745,0,4048,6,0,1012,620,488,68,255,255
971
+ 460400745,0,4021,6,0,778,456,414,68,255,255
972
+ 460400745,0,3639,6,0,886,498,452,38,255,255
973
+ 460400745,0,3823,6,0,870,488,446,40,255,255
974
+ 460400745,0,2453,6,0,740,444,390,70,255,255
975
+ 460400745,0,1349,6,1,162,65535,94,68,8,255
976
+ 460400745,6,2899,7,1,40,65535,65535,65535,255,3
977
+ 460400745,0,3881,7,1,154,65535,94,66,6,255
978
+ 460400745,6,3125,7,1,12,65535,65535,65535,255,3
979
+ 460400745,10,3683,7,1,65535,132,65535,65535,255,0
980
+ 460400745,0,439,7,1,150,65535,88,66,8,255
981
+ 460400745,13,3666,7,0,65535,65535,98,65535,255,255
982
+ 460400745,0,20,7,0,926,524,496,66,255,255
983
+ 460400745,10,3232,7,1,65535,156,65535,65535,255,0
984
+ 460400745,10,3627,7,1,65535,8,65535,65535,255,1
985
+ 460400745,10,3580,7,1,65535,50,65535,65535,255,0
986
+ 460400745,13,3839,7,0,65535,65535,100,65535,255,255
987
+ 460400745,13,3378,7,0,65535,65535,360,65535,255,255
988
+ 460400745,13,3639,7,0,65535,65535,440,65535,255,255
989
+ 460400745,13,778,7,0,65535,65535,104,65535,255,255
990
+ 460400745,6,3313,7,1,8,65535,65535,65535,255,2
991
+ 460400745,6,4053,7,1,26,65535,65535,65535,255,3
992
+ 460400745,13,3143,7,0,65535,65535,148,65535,255,255
993
+ 460400745,10,3137,7,1,65535,38,65535,65535,255,1
994
+ 460400745,13,2789,7,0,65535,65535,88,65535,255,255
995
+ 460400745,10,4040,7,1,65535,42,65535,65535,255,1
996
+ 460400745,0,2747,7,1,158,65535,82,46,8,255
997
+ 460400745,10,4019,7,1,65535,46,65535,65535,255,0
998
+ 460400745,0,3058,7,1,158,65535,96,68,8,255
999
+ 460400745,0,3638,7,1,156,65535,106,66,8,255
1000
+ 460400745,0,2618,7,1,150,65535,100,68,8,255
1001
+ 460400745,0,3862,7,1,150,65535,100,66,8,255
1002
+ 460400745,0,3320,7,1,156,65535,96,66,8,255
1003
+ 460400745,0,3943,7,1,150,65535,100,66,10,255
1004
+ 460400745,0,3904,7,1,154,65535,86,68,8,255
1005
+ 460400745,0,4090,1,1,148,65535,96,66,12,255
1006
+ 460400745,0,4013,1,1,178,65535,118,44,10,255
1007
+ 460400745,10,4072,1,1,65535,46,65535,65535,255,0
1008
+ 460400745,0,4090,1,1,192,65535,116,54,10,255
1009
+ 460400745,6,3842,1,1,54,65535,65535,65535,255,3
1010
+ 460400745,0,4090,1,1,172,65535,116,68,8,255
1011
+ 460400745,6,3956,1,1,166,65535,65535,65535,255,0
1012
+ 460400745,6,3226,1,1,168,65535,65535,65535,255,0
1013
+ 460400745,0,2902,1,1,188,65535,120,40,10,255
1014
+ 460400745,13,2753,1,0,65535,65535,114,65535,255,255
1015
+ 460400745,6,4072,1,1,184,65535,65535,65535,255,0
1016
+ 460400745,0,3863,1,1,168,65535,106,68,6,255
1017
+ 460400745,0,3946,1,1,168,65535,104,72,8,255
1018
+ 460400745,10,3936,1,1,65535,136,65535,65535,255,0
1019
+ 460400745,0,3955,1,1,166,65535,104,40,10,255
1020
+ 460400745,13,2650,1,0,65535,65535,96,65535,255,255
1021
+ 460400745,6,2875,1,1,184,65535,65535,65535,255,1
1022
+ 460400745,0,3956,1,1,152,65535,98,66,10,255
1023
+ 460400745,0,2962,1,1,180,65535,116,42,12,255
1024
+ 460400745,0,3526,1,1,156,65535,100,74,8,255
1025
+ 460400745,0,3598,1,0,1270,870,476,44,255,255
1026
+ 460400745,0,3044,1,0,798,458,434,68,255,255
1027
+ 460400745,0,3920,1,0,732,408,420,68,255,255
1028
+ 460400745,0,3280,1,0,978,540,534,68,255,255
1029
+ 460400745,0,3773,1,1,172,65535,94,44,10,255
1030
+ 460400745,0,4037,1,1,154,65535,108,66,8,255
1031
+ 460400745,13,3438,1,0,65535,65535,120,65535,255,255
1032
+ 460400745,0,3348,1,1,146,65535,106,68,8,255
1033
+ 460400745,0,3752,1,1,178,65535,104,44,10,255
1034
+ 460400745,0,4091,1,1,150,65535,104,66,10,255
1035
+ 460400745,0,621,1,1,150,65535,98,66,10,255
1036
+ 460400745,0,3774,1,1,148,65535,94,66,12,255
1037
+ 460400745,13,3215,1,0,65535,65535,114,65535,255,255
1038
+ 460400745,0,3597,1,0,802,468,430,70,255,255
1039
+ 460400745,0,2547,1,0,828,478,448,70,255,255
1040
+ 460400745,0,2989,1,1,168,65535,110,72,6,255
1041
+ 460400745,0,3943,1,1,156,65535,100,66,8,255
1042
+ 460400745,0,3525,1,0,866,496,436,38,255,255
1043
+ 460400745,0,3049,1,1,166,65535,98,42,14,255
1044
+ 460400745,6,4022,1,1,166,65535,65535,65535,255,0
1045
+ 460400745,13,3741,1,0,65535,65535,112,65535,255,255
1046
+ 460400745,13,3539,1,0,65535,65535,88,65535,255,255
1047
+ 460400745,0,3047,1,1,158,65535,106,72,8,255
1048
+ 460400745,0,4014,1,1,156,65535,98,38,12,255
1049
+ 460400745,0,3531,1,0,832,488,436,64,255,255
1050
+ 460400745,6,3801,1,1,742,65535,65535,65535,255,0
1051
+ 460400745,6,4028,1,1,498,65535,65535,65535,255,2
1052
+ 460400745,13,3933,1,0,65535,65535,286,65535,255,255
1053
+ 460400745,13,3611,1,0,65535,65535,96,65535,255,255
1054
+ 460400745,0,3974,1,0,830,516,410,70,255,255
1055
+ 460400745,13,3882,1,0,65535,65535,108,65535,255,255
1056
+ 460400745,0,3930,1,1,154,65535,92,66,8,255
1057
+ 460400745,6,3998,1,1,8,65535,65535,65535,255,2
1058
+ 460400745,6,2820,1,1,14,65535,65535,65535,255,2
1059
+ 460400745,13,2702,1,0,65535,65535,114,65535,255,255
1060
+ 460400745,10,3522,2,1,65535,148,65535,65535,255,0
1061
+ 460400745,10,2219,2,1,65535,148,65535,65535,255,0
1062
+ 460400745,6,1903,2,1,182,65535,65535,65535,255,1
1063
+ 460400745,13,3132,2,0,65535,65535,104,65535,255,255
1064
+ 460400745,6,3887,2,1,842,65535,65535,65535,255,0
1065
+ 460400745,0,3953,2,1,170,65535,110,70,8,255
1066
+ 460400745,13,4024,2,0,65535,65535,104,65535,255,255
1067
+ 460400745,10,2710,2,1,65535,26,65535,65535,255,1
1068
+ 460400745,6,3953,2,1,8,65535,65535,65535,255,2
1069
+ 460400745,13,3784,2,0,65535,65535,410,65535,255,255
1070
+ 460400745,13,4026,2,0,65535,65535,628,65535,255,255
1071
+ 460400745,10,3910,2,1,65535,132,65535,65535,255,1
1072
+ 460400745,13,3921,2,0,65535,65535,102,65535,255,255
1073
+ 460400745,6,3990,2,1,170,65535,65535,65535,255,0
1074
+ 460400745,13,430,2,0,65535,65535,580,65535,255,255
1075
+ 460400745,13,3054,2,0,65535,65535,112,65535,255,255
1076
+ 460400745,0,3853,2,1,168,65535,108,72,6,255
1077
+ 460400745,6,3351,2,1,174,65535,65535,65535,255,1
1078
+ 460400745,0,3439,2,0,768,424,412,42,255,255
1079
+ 460400745,0,3933,2,1,164,65535,100,70,6,255
1080
+ 460400745,0,3344,2,1,180,65535,106,46,14,255
1081
+ 460400745,0,3542,2,1,174,65535,108,70,6,255
1082
+ 460400745,0,3916,2,1,182,65535,106,42,12,255
1083
+ 460400745,0,3852,2,0,868,492,470,66,255,255
1084
+ 460400745,0,3557,2,1,166,65535,106,70,6,255
1085
+ 460400745,0,4058,2,1,168,65535,114,70,8,255
1086
+ 460400745,0,3116,2,1,172,65535,106,68,8,255
1087
+ 460400745,13,3426,2,0,65535,65535,96,65535,255,255
1088
+ 460400745,10,3627,2,1,65535,138,65535,65535,255,0
1089
+ 460400745,13,2075,2,0,65535,65535,100,65535,255,255
1090
+ 460400745,6,3028,2,1,168,65535,65535,65535,255,0
1091
+ 460400745,0,3615,2,1,168,65535,102,68,8,255
1092
+ 460400745,0,3112,2,1,174,65535,100,44,12,255
1093
+ 460400745,13,4029,3,0,65535,65535,122,65535,255,255
1094
+ 460400745,0,867,3,0,1052,680,476,70,255,255
1095
+ 460400745,0,3383,3,1,168,65535,104,70,6,255
1096
+ 460400745,0,1924,3,1,164,65535,104,68,8,255
1097
+ 460400745,0,4007,3,1,168,65535,106,68,8,255
1098
+ 460400745,0,3180,3,1,164,65535,106,68,8,255
1099
+ 460400745,0,3647,3,1,164,65535,108,70,8,255
1100
+ 460400745,0,3570,3,1,180,65535,114,44,10,255
1101
+ 460400745,0,3947,3,1,250,65535,174,40,6,255
1102
+ 460400745,0,3950,3,1,120,65535,54,66,12,255
1103
+ 460400745,0,3785,3,1,180,65535,106,44,10,255
1104
+ 460400745,0,3603,3,1,186,65535,120,42,10,255
1105
+ 460400745,0,3789,3,1,168,65535,100,70,8,255
1106
+ 460400745,13,3755,3,0,65535,65535,98,65535,255,255
1107
+ 460400745,0,1186,3,1,166,65535,102,68,8,255
1108
+ 460400745,13,3000,3,0,65535,65535,108,65535,255,255
1109
+ 460400745,10,3620,3,1,65535,154,65535,65535,255,0
1110
+ 460400745,0,3450,3,1,182,65535,108,46,10,255
1111
+ 460400745,0,4046,3,1,168,65535,110,70,8,255
1112
+ 460400745,0,3650,3,1,158,65535,106,70,6,255
1113
+ 460400745,0,3658,3,1,240,65535,102,40,10,255
1114
+ 460400745,0,3775,3,0,1184,754,500,40,255,255
1115
+ 460400745,0,3573,3,1,166,65535,106,70,6,255
1116
+ 460400745,13,3971,3,0,65535,65535,496,65535,255,255
1117
+ 460400745,6,3495,3,1,962,65535,65535,65535,255,0
1118
+ 460400745,13,2497,3,0,65535,65535,110,65535,255,255
1119
+ 460400745,6,2976,3,1,858,65535,65535,65535,255,0
1120
+ 460400745,6,2757,3,1,20,65535,65535,65535,255,2
1121
+ 460400745,13,3771,3,0,65535,65535,110,65535,255,255
1122
+ 460400745,10,2698,3,1,65535,126,65535,65535,255,1
1123
+ 460400745,0,4054,3,1,176,65535,106,70,6,255
1124
+ 460400745,10,2678,3,1,65535,120,65535,65535,255,1
1125
+ 460400745,6,2695,3,1,18,65535,65535,65535,255,2
1126
+ 460400745,10,3555,3,1,65535,126,65535,65535,255,1
1127
+ 460400745,6,3432,3,1,32,65535,65535,65535,255,3
1128
+ 460400745,13,2888,3,0,65535,65535,110,65535,255,255
1129
+ 460400745,0,3671,3,1,176,65535,120,66,6,255
1130
+ 460400745,0,3119,3,0,788,486,394,66,255,255
1131
+ 460400745,0,3969,3,1,186,65535,106,54,10,255
1132
+ 460400745,0,4032,4,1,158,65535,108,68,8,255
1133
+ 460400745,10,3188,4,1,65535,130,65535,65535,255,1
1134
+ 460400745,6,4086,4,1,6,65535,65535,65535,255,2
1135
+ 460400745,0,3762,4,1,384,65535,388,62,6,255
1136
+ 460400745,13,3557,4,0,65535,65535,488,65535,255,255
1137
+ 460400745,13,3787,4,0,65535,65535,462,65535,255,255
1138
+ 460400745,13,3766,4,0,65535,65535,100,65535,255,255
1139
+ 460400745,13,3578,4,0,65535,65535,282,65535,255,255
1140
+ 460400745,6,2939,4,1,162,65535,65535,65535,255,0
1141
+ 460400745,0,3105,4,1,164,65535,100,70,6,255
1142
+ 460400745,6,4085,4,1,178,65535,65535,65535,255,1
1143
+ 460400745,13,3925,4,0,65535,65535,550,65535,255,255
1144
+ 460400745,13,3980,4,0,65535,65535,104,65535,255,255
1145
+ 460400745,6,3197,4,1,54,65535,65535,65535,255,3
1146
+ 460400745,10,2476,4,1,65535,72,65535,65535,255,1
1147
+ 460400745,0,2586,4,1,168,65535,106,74,6,255
1148
+ 460400745,0,3488,4,0,1016,632,480,66,255,255
1149
+ 460400745,0,4046,4,0,1734,94,718,66,255,255
1150
+ 460400745,0,4028,4,1,168,65535,104,72,8,255
1151
+ 460400745,13,3833,4,0,65535,65535,120,65535,255,255
1152
+ 460400745,0,3116,4,0,946,550,492,68,255,255
1153
+ 460400745,0,3684,4,0,842,454,482,66,255,255
1154
+ 460400745,0,3867,4,0,900,528,466,66,255,255
1155
+ 460400745,0,4085,4,0,878,492,482,68,255,255
1156
+ 460400745,0,2592,4,0,1264,832,530,66,255,255
1157
+ 460400745,0,3522,4,0,796,460,432,70,255,255
1158
+ 460400745,0,3802,4,1,192,65535,122,44,10,255
1159
+ 460400745,0,3753,4,0,780,468,408,70,255,255
1160
+ 460400745,0,2828,4,1,168,65535,112,68,6,255
1161
+ 460400745,0,3658,4,1,156,65535,94,70,8,255
1162
+ 460400745,0,3987,4,0,922,518,502,70,255,255
1163
+ 460400745,6,3882,4,1,968,65535,65535,65535,255,0
1164
+ 460400745,13,3915,4,0,65535,65535,442,65535,255,255
1165
+ 460400745,0,4052,4,0,1050,638,510,66,255,255
1166
+ 460400745,0,3736,4,0,1568,120,530,70,255,255
1167
+ 460400745,6,2779,4,1,572,65535,65535,65535,255,2
1168
+ 460400745,0,3753,4,0,816,440,442,42,255,255
1169
+ 460400745,0,4046,4,1,162,65535,104,68,6,255
1170
+ 460400745,10,1702,4,1,65535,662,65535,65535,255,0
1171
+ 460400745,6,3682,4,1,198,65535,65535,65535,255,0
1172
+ 460400745,6,3771,4,1,164,65535,65535,65535,255,0
1173
+ 460400745,13,3918,4,0,65535,65535,746,65535,255,255
1174
+ 460400745,10,3588,4,1,65535,128,65535,65535,255,1
1175
+ 460400745,10,2490,5,1,65535,38,65535,65535,255,1
1176
+ 460400745,13,2190,5,0,65535,65535,506,65535,255,255
1177
+ 460400745,6,3981,5,1,26,65535,65535,65535,255,3
1178
+ 460400745,10,3598,5,1,65535,28,65535,65535,255,1
1179
+ 460400745,6,3968,5,1,800,65535,65535,65535,255,0
1180
+ 460400745,0,2487,5,1,166,65535,102,70,10,255
1181
+ 460400745,6,3028,5,1,746,65535,65535,65535,255,1
1182
+ 460400745,0,4075,5,0,884,530,448,68,255,255
1183
+ 460400745,0,3890,5,0,980,562,488,40,255,255
1184
+ 460400745,13,3241,5,0,65535,65535,476,65535,255,255
1185
+ 460400745,10,3938,5,1,65535,512,65535,65535,255,1
1186
+ 460400745,0,3894,5,1,174,65535,106,68,8,255
1187
+ 460400745,0,3679,5,1,164,65535,100,70,10,255
1188
+ 460400745,0,3932,5,0,1788,832,38,70,255,255
1189
+ 460400745,0,2025,5,0,1600,172,484,44,255,255
1190
+ 460400745,0,789,5,1,162,65535,100,68,6,255
1191
+ 460400745,6,3913,5,1,160,65535,65535,65535,255,0
1192
+ 460400745,10,4043,5,1,65535,30,65535,65535,255,2
1193
+ 460400745,0,3339,5,1,166,65535,102,70,8,255
1194
+ 460400745,0,3100,5,0,712,386,390,40,255,255
1195
+ 460400745,0,3877,5,1,162,65535,92,72,6,255
1196
+ 460400745,0,3714,5,0,778,454,418,68,255,255
1197
+ 460400745,0,2400,5,1,166,65535,100,66,8,255
1198
+ 460400745,0,3947,5,1,166,65535,98,70,8,255
1199
+ 460400745,0,3998,5,1,172,65535,102,68,4,255
1200
+ 460400745,10,3860,5,1,65535,52,65535,65535,255,1
1201
+ 460400745,10,3869,5,1,65535,40,65535,65535,255,2
1202
+ 460400745,0,3976,5,1,164,65535,98,76,6,255
1203
+ 460400745,0,3986,5,0,1194,714,550,42,255,255
1204
+ 460400745,0,1900,5,0,942,544,490,66,255,255
1205
+ 460400745,0,2785,5,0,1714,280,488,42,255,255
1206
+ 460400745,0,3736,5,1,164,65535,102,68,8,255
1207
+ 460400745,0,3863,5,0,1264,822,540,68,255,255
1208
+ 460400745,13,1955,5,0,65535,65535,92,65535,255,255
1209
+ 460400745,10,3766,5,1,65535,36,65535,65535,255,1
1210
+ 460400745,0,3485,5,1,198,65535,96,68,12,255
1211
+ 460400745,0,3718,5,0,716,324,484,66,255,255
1212
+ 460400745,10,3781,5,1,65535,38,65535,65535,255,1
1213
+ 460400745,6,453,5,1,906,65535,65535,65535,255,0
1214
+ 460400745,10,3722,5,1,65535,34,65535,65535,255,2
1215
+ 460400745,10,3899,6,1,65535,42,65535,65535,255,1
1216
+ 460400745,6,4080,6,1,886,65535,65535,65535,255,1
1217
+ 460400745,6,3047,6,1,46,65535,65535,65535,255,3
1218
+ 460400745,6,3432,6,1,606,65535,65535,65535,255,2
1219
+ 460400745,10,3659,6,1,65535,76,65535,65535,255,1
1220
+ 460400745,6,3090,6,1,746,65535,65535,65535,255,2
1221
+ 460400745,10,2544,6,1,65535,44,65535,65535,255,0
1222
+ 460400745,13,4051,6,0,65535,65535,40,65535,255,255
1223
+ 460400745,6,4050,6,1,836,65535,65535,65535,255,0
1224
+ 460400745,13,3710,6,0,65535,65535,498,65535,255,255
1225
+ 460400745,10,3722,6,1,65535,62,65535,65535,255,0
1226
+ 460400745,13,2135,6,0,65535,65535,494,65535,255,255
1227
+ 460400745,0,3861,6,0,1228,864,466,70,255,255
1228
+ 460400745,6,1847,6,1,822,65535,65535,65535,255,1
1229
+ 460400745,0,3068,6,0,934,504,500,42,255,255
1230
+ 460400745,13,3637,6,0,65535,65535,714,65535,255,255
1231
+ 460400745,6,3781,6,1,980,65535,65535,65535,255,1
1232
+ 460400745,6,1836,6,1,796,65535,65535,65535,255,1
1233
+ 460400745,0,3868,6,0,908,562,444,70,255,255
1234
+ 460400745,0,2706,6,1,168,65535,90,46,10,255
1235
+ 460400745,0,3357,6,0,974,572,496,66,255,255
1236
+ 460400745,0,3265,6,0,1638,236,458,44,255,255
1237
+ 460400745,10,3265,6,1,65535,152,65535,65535,255,0
1238
+ 460400745,13,3945,6,0,65535,65535,838,65535,255,255
1239
+ 460400745,0,2426,6,0,982,562,518,68,255,255
1240
+ 460400745,0,4006,6,0,834,458,442,42,255,255
1241
+ 460400745,10,3049,7,1,65535,142,65535,65535,255,0
1242
+ 460400745,0,4060,7,1,150,65535,96,68,8,255
1243
+ 460400745,10,3875,7,1,65535,58,65535,65535,255,0
1244
+ 460400745,13,4034,7,0,65535,65535,440,65535,255,255
1245
+ 460400745,0,3388,7,1,174,65535,98,52,10,255
1246
+ 460400745,13,4083,7,0,65535,65535,76,65535,255,255
1247
+ 460400745,6,3476,7,1,24,65535,65535,65535,255,2
1248
+ 460400745,10,3452,7,1,65535,116,65535,65535,255,1
1249
+ 460400745,13,3666,7,0,65535,65535,96,65535,255,255
1250
+ 460400745,13,3840,7,0,65535,65535,500,65535,255,255
1251
+ 460400745,6,3896,7,1,1236,65535,65535,65535,255,2
1252
+ 460400745,13,4079,7,0,65535,65535,100,65535,255,255
1253
+ 460400745,10,114,7,1,65535,42,65535,65535,255,1
1254
+ 460400745,6,3801,7,1,144,65535,65535,65535,255,0
1255
+ 460400745,6,3996,7,1,154,65535,65535,65535,255,0
1256
+ 460400745,13,3850,7,0,65535,65535,490,65535,255,255
1257
+ 460400745,6,3967,7,1,158,65535,65535,65535,255,0
1258
+ 460400745,13,3626,7,0,65535,65535,412,65535,255,255
1259
+ 460400745,13,4080,7,0,65535,65535,100,65535,255,255
1260
+ 460400745,6,3279,7,1,156,65535,65535,65535,255,0
1261
+ 460400745,13,3793,7,0,65535,65535,224,65535,255,255
1262
+ 460400745,0,3811,7,1,150,65535,110,68,10,255
1263
+ 460400745,0,1717,7,1,154,65535,106,66,8,255
1264
+ 460400745,10,3969,7,1,65535,128,65535,65535,255,1
1265
+ 460400745,0,2086,7,1,168,65535,110,40,10,255
1266
+ 460400745,13,3668,1,0,65535,65535,110,65535,255,255
1267
+ 460400745,0,3576,1,0,760,450,404,68,255,255
1268
+ 460400745,13,3194,1,0,65535,65535,110,65535,255,255
1269
+ 460400745,0,2002,1,1,186,65535,110,44,12,255
1270
+ 460400745,13,3457,1,0,65535,65535,630,65535,255,255
1271
+ 460400745,0,3071,1,1,194,65535,110,50,10,255
1272
+ 460400745,13,3547,1,0,65535,65535,104,65535,255,255
1273
+ 460400745,10,345,1,1,65535,18,65535,65535,255,1
1274
+ 460400745,0,2248,1,0,992,664,430,68,255,255
1275
+ 460400745,10,2606,1,1,65535,130,65535,65535,255,1
1276
+ 460400745,10,2370,1,1,65535,148,65535,65535,255,0
1277
+ 460400745,0,3445,1,1,164,65535,90,76,8,255
1278
+ 460400745,10,2933,1,1,65535,150,65535,65535,255,0
1279
+ 460400745,0,4087,1,1,140,65535,76,66,10,255
1280
+ 460400745,13,3586,1,0,65535,65535,110,65535,255,255
1281
+ 460400745,6,4067,1,1,1484,65535,65535,65535,255,0
1282
+ 460400745,0,4072,1,1,162,65535,104,66,8,255
1283
+ 460400745,0,3446,1,1,172,65535,102,68,8,255
1284
+ 460400745,0,3766,1,1,130,65535,80,66,10,255
1285
+ 460400745,0,3640,1,1,166,65535,104,40,10,255
1286
+ 460400745,0,3734,1,1,160,65535,100,40,12,255
1287
+ 460400745,0,3315,1,1,146,65535,106,70,12,255
1288
+ 460400745,13,2828,1,0,65535,65535,110,65535,255,255
1289
+ 460400745,0,3801,1,0,862,538,418,66,255,255
1290
+ 460400745,0,2985,1,1,172,65535,112,44,12,255
1291
+ 460400745,10,3824,1,1,65535,114,65535,65535,255,1
1292
+ 460400745,0,2574,1,1,156,65535,102,66,6,255
1293
+ 460400745,0,3855,1,1,152,65535,100,66,8,255
1294
+ 460400745,0,3511,1,1,154,65535,90,68,6,255
1295
+ 460400745,0,3655,1,1,156,65535,82,76,6,255
1296
+ 460400745,0,3336,1,1,192,65535,112,2,16,255
1297
+ 460400745,10,3673,1,1,65535,156,65535,65535,255,0
1298
+ 460400745,0,2964,1,1,164,65535,94,70,8,255
1299
+ 460400745,0,3700,1,0,952,590,458,68,255,255
1300
+ 460400745,0,1929,1,1,144,65535,92,66,12,255
1301
+ 460400745,0,3811,1,1,150,65535,104,66,8,255
1302
+ 460400745,0,1942,1,1,218,65535,146,70,4,255
1303
+ 460400745,0,4037,1,1,158,65535,98,66,10,255
1304
+ 460400745,13,1949,1,0,65535,65535,118,65535,255,255
1305
+ 460400745,10,3118,1,1,65535,134,65535,65535,255,1
1306
+ 460400745,13,3976,1,0,65535,65535,386,65535,255,255
1307
+ 460400745,0,1818,1,1,160,65535,104,66,6,255
1308
+ 460400745,6,3370,1,1,902,65535,65535,65535,255,0
1309
+ 460400745,0,1179,1,0,944,558,456,42,255,255
1310
+ 460400745,13,4088,1,0,65535,65535,100,65535,255,255
1311
+ 460400745,13,4021,1,0,65535,65535,100,65535,255,255
1312
+ 460400745,0,3995,1,1,152,65535,104,66,10,255
1313
+ 460400745,10,4078,1,1,65535,126,65535,65535,255,1
1314
+ 460400745,0,3661,1,1,162,65535,104,66,8,255
1315
+ 460400745,13,235,1,0,65535,65535,94,65535,255,255
1316
+ 460400745,6,3949,1,1,38,65535,65535,65535,255,3
1317
+ 460400745,6,2705,2,1,194,65535,65535,65535,255,1
1318
+ 460400745,13,1827,2,0,65535,65535,468,65535,255,255
1319
+ 460400745,10,3950,2,1,65535,156,65535,65535,255,0
1320
+ 460400745,10,3271,2,1,65535,130,65535,65535,255,1
1321
+ 460400745,13,4049,2,0,65535,65535,110,65535,255,255
1322
+ 460400745,0,3629,2,1,180,65535,106,42,10,255
1323
+ 460400745,10,2188,2,1,65535,142,65535,65535,255,0
1324
+ 460400745,13,3038,2,0,65535,65535,102,65535,255,255
1325
+ 460400745,6,1587,2,1,30,65535,65535,65535,255,3
1326
+ 460400745,6,3244,2,1,184,65535,65535,65535,255,1
1327
+ 460400745,6,4024,2,1,162,65535,65535,65535,255,0
1328
+ 460400745,6,3765,2,1,156,65535,65535,65535,255,0
1329
+ 460400745,10,3666,2,1,65535,28,65535,65535,255,1
1330
+ 460400745,0,1818,2,1,170,65535,118,68,8,255
1331
+ 460400745,13,2502,2,0,65535,65535,104,65535,255,255
1332
+ 460400745,10,3944,2,1,65535,202,65535,65535,255,3
1333
+ 460400745,0,2349,2,1,162,65535,98,68,8,255
1334
+ 460400745,0,3204,2,1,184,65535,112,42,12,255
1335
+ 460400745,0,3794,2,0,1098,626,568,68,255,255
1336
+ 460400745,0,3339,2,1,168,65535,104,70,10,255
1337
+ 460400745,0,3944,2,1,166,65535,114,68,6,255
1338
+ 460400745,0,3648,2,1,158,65535,96,68,8,255
1339
+ 460400745,0,3695,2,0,926,514,482,42,255,255
1340
+ 460400745,0,3756,2,1,164,65535,96,72,8,255
1341
+ 460400745,10,3759,2,1,65535,152,65535,65535,255,0
1342
+ 460400745,13,3902,2,0,65535,65535,104,65535,255,255
1343
+ 460400745,6,3456,2,1,166,65535,65535,65535,255,0
1344
+ 460400745,10,3660,2,1,65535,586,65535,65535,255,1
1345
+ 460400745,13,2267,2,0,65535,65535,102,65535,255,255
1346
+ 460400745,0,3587,2,1,170,65535,106,68,10,255
1347
+ 460400745,13,3854,3,0,65535,65535,108,65535,255,255
1348
+ 460400745,0,2915,3,1,178,65535,104,44,12,255
1349
+ 460400745,0,3978,3,0,794,446,438,66,255,255
1350
+ 460400745,0,2524,3,1,166,65535,98,70,8,255
1351
+ 460400745,0,4088,3,1,170,65535,106,70,8,255
1352
+ 460400745,0,3275,3,1,164,65535,104,70,8,255
1353
+ 460400745,0,3730,3,1,178,65535,106,46,8,255
1354
+ 460400745,0,3932,3,0,872,506,458,66,255,255
1355
+ 460400745,0,2484,3,1,176,65535,112,66,10,255
1356
+ 460400745,0,3455,3,1,180,65535,102,50,10,255
1357
+ 460400745,0,3562,3,0,946,536,506,68,255,255
1358
+ 460400745,6,3675,3,1,182,65535,65535,65535,255,1
1359
+ 460400745,0,1860,3,1,182,65535,116,40,8,255
1360
+ 460400745,13,4018,3,0,65535,65535,536,65535,255,255
1361
+ 460400745,0,1770,3,1,168,65535,108,68,8,255
1362
+ 460400745,10,4001,3,1,65535,50,65535,65535,255,0
1363
+ 460400745,6,3765,3,1,188,65535,65535,65535,255,1
1364
+ 460400745,0,3888,3,1,162,65535,100,70,8,255
1365
+ 460400745,0,3479,3,1,172,65535,106,74,4,255
1366
+ 460400745,0,3920,3,1,168,65535,106,68,6,255
1367
+ 460400745,0,3693,3,1,184,65535,100,70,10,255
1368
+ 460400745,13,3807,3,0,65535,65535,108,65535,255,255
1369
+ 460400745,6,2223,3,1,1886,65535,65535,65535,255,2
1370
+ 460400745,6,2261,3,1,12,65535,65535,65535,255,2
1371
+ 460400745,10,3963,3,1,65535,44,65535,65535,255,1
1372
+ 460400745,6,3049,3,1,180,65535,65535,65535,255,1
1373
+ 460400745,10,3706,3,1,65535,148,65535,65535,255,0
1374
+ 460400745,10,3835,3,1,65535,140,65535,65535,255,1
1375
+ 460400745,13,3758,3,0,65535,65535,102,65535,255,255
1376
+ 460400745,6,4088,3,1,72,65535,65535,65535,255,2
1377
+ 460400745,6,3422,3,1,168,65535,65535,65535,255,0
1378
+ 460400745,6,2745,3,1,806,65535,65535,65535,255,1
1379
+ 460400745,13,3573,3,0,65535,65535,446,65535,255,255
1380
+ 460400745,13,4079,3,0,65535,65535,106,65535,255,255
1381
+ 460400745,13,2452,3,0,65535,65535,102,65535,255,255
1382
+ 460400745,0,4082,3,0,750,408,410,42,255,255
1383
+ 460400745,0,4075,3,0,770,452,414,70,255,255
1384
+ 460400745,10,3302,4,1,65535,18,65535,65535,255,3
1385
+ 460400745,6,3575,4,1,42,65535,65535,65535,255,2
1386
+ 460400745,13,3832,4,0,65535,65535,110,65535,255,255
1387
+ 460400745,6,3444,4,1,178,65535,65535,65535,255,1
1388
+ 460400745,13,3818,4,0,65535,65535,100,65535,255,255
1389
+ 460400745,13,3876,4,0,65535,65535,518,65535,255,255
1390
+ 460400745,13,2702,4,0,65535,65535,496,65535,255,255
1391
+ 460400745,6,3898,4,1,168,65535,65535,65535,255,0
1392
+ 460400745,0,3757,4,1,164,65535,102,68,8,255
1393
+ 460400745,10,3980,4,1,65535,154,65535,65535,255,0
1394
+ 460400745,10,3364,4,1,65535,520,65535,65535,255,0
1395
+ 460400745,6,2343,4,1,178,65535,65535,65535,255,1
1396
+ 460400745,13,3653,4,0,65535,65535,484,65535,255,255
1397
+ 460400745,13,3133,4,0,65535,65535,114,65535,255,255
1398
+ 460400745,0,3564,4,1,164,65535,110,68,8,255
1399
+ 460400745,0,3495,4,1,162,65535,102,70,8,255
1400
+ 460400745,0,1990,4,0,860,482,474,70,255,255
1401
+ 460400745,0,3002,4,1,180,65535,104,42,12,255
1402
+ 460400745,13,3698,4,0,65535,65535,104,65535,255,255
1403
+ 460400745,0,3285,4,0,1340,840,572,42,255,255
1404
+ 460400745,13,2365,4,0,65535,65535,110,65535,255,255
1405
+ 460400745,10,3342,4,1,65535,16,65535,65535,255,1
1406
+ 460400745,0,840,4,1,176,65535,100,44,12,255
1407
+ 460400745,0,3746,4,0,838,472,460,68,255,255
1408
+ 460400745,0,3880,4,0,782,442,406,42,255,255
1409
+ 460400745,0,2663,4,1,172,65535,104,70,6,255
1410
+ 460400745,0,3334,4,0,862,502,452,66,255,255
1411
+ 460400745,0,3175,4,0,1662,212,526,66,255,255
1412
+ 460400745,10,2902,4,1,65535,558,65535,65535,255,1
1413
+ 460400745,13,3705,4,0,65535,65535,686,65535,255,255
1414
+ 460400745,10,1842,4,1,65535,632,65535,65535,255,0
1415
+ 460400745,13,3717,4,0,65535,65535,548,65535,255,255
1416
+ 460400745,0,2898,4,1,182,65535,102,42,14,255
1417
+ 460400745,0,3855,4,1,174,65535,98,74,6,255
1418
+ 460400745,6,3740,4,1,166,65535,65535,65535,255,0
1419
+ 460400745,0,3268,4,0,1186,800,486,70,255,255
1420
+ 460400745,0,3670,4,1,168,65535,106,68,8,255
1421
+ 460400745,13,2663,4,0,65535,65535,424,65535,255,255
1422
+ 460400745,6,3945,4,1,12,65535,65535,65535,255,2
1423
+ 460400745,13,3470,5,0,65535,65535,490,65535,255,255
1424
+ 460400745,13,2834,5,0,65535,65535,108,65535,255,255
1425
+ 460400745,10,2074,5,1,65535,478,65535,65535,255,1
1426
+ 460400745,10,2984,5,1,65535,58,65535,65535,255,0
1427
+ 460400745,6,2460,5,1,848,65535,65535,65535,255,0
1428
+ 460400745,0,3922,5,0,936,526,506,68,255,255
1429
+ 460400745,0,4067,5,0,862,556,402,70,255,255
1430
+ 460400745,13,3836,5,0,65535,65535,474,65535,255,255
1431
+ 460400745,10,2265,5,1,65535,0,65535,65535,255,1
1432
+ 460400745,6,3519,5,1,162,65535,65535,65535,255,0
1433
+ 460400745,0,3538,5,1,162,65535,96,70,8,255
1434
+ 460400745,0,4066,5,0,758,454,396,68,255,255
1435
+ 460400745,0,3764,5,0,998,550,544,70,255,255
1436
+ 460400745,10,3389,5,1,65535,60,65535,65535,255,0
1437
+ 460400745,10,3853,5,1,65535,48,65535,65535,255,0
1438
+ 460400745,6,3307,5,1,726,65535,65535,65535,255,0
1439
+ 460400745,0,3564,5,0,806,472,428,68,255,255
1440
+ 460400745,0,3923,5,1,174,65535,96,40,12,255
1441
+ 460400745,0,3900,5,0,1050,542,580,44,255,255
1442
+ 460400745,0,3953,5,1,160,65535,98,68,8,255
1443
+ 460400745,0,3673,5,1,164,65535,100,72,8,255
1444
+ 460400745,0,3197,5,1,166,65535,102,68,8,255
1445
+ 460400745,0,4059,5,0,1228,776,548,66,255,255
1446
+ 460400745,13,2722,5,0,65535,65535,488,65535,255,255
1447
+ 460400745,6,3172,5,1,190,65535,65535,65535,255,0
1448
+ 460400745,0,481,5,1,168,65535,104,66,8,255
1449
+ 460400745,0,3997,5,0,856,542,404,66,255,255
1450
+ 460400745,0,3679,5,1,166,65535,98,74,8,255
1451
+ 460400745,0,3212,5,1,164,65535,94,70,6,255
1452
+ 460400745,0,3894,5,0,882,478,500,68,255,255
1453
+ 460400745,13,3790,5,0,65535,65535,526,65535,255,255
1454
+ 460400745,13,3712,5,0,65535,65535,714,65535,255,255
1455
+ 460400745,6,3399,5,1,28,65535,65535,65535,255,3
1456
+ 460400745,0,3887,5,1,170,65535,98,80,8,255
1457
+ 460400745,6,3894,5,1,26,65535,65535,65535,255,2
1458
+ 460400745,10,2890,5,1,65535,470,65535,65535,255,0
1459
+ 460400745,13,4039,5,0,65535,65535,96,65535,255,255
1460
+ 460400745,6,3077,6,1,1338,65535,65535,65535,255,1
1461
+ 460400745,10,3110,6,1,65535,56,65535,65535,255,2
1462
+ 460400745,6,3325,6,1,46,65535,65535,65535,255,3
1463
+ 460400745,13,2794,6,0,65535,65535,478,65535,255,255
1464
+ 460400745,13,3313,6,0,65535,65535,488,65535,255,255
1465
+ 460400745,6,3943,6,1,32,65535,65535,65535,255,2
1466
+ 460400745,13,3865,6,0,65535,65535,420,65535,255,255
1467
+ 460400745,13,3025,6,0,65535,65535,440,65535,255,255
1468
+ 460400745,13,3920,6,0,65535,65535,450,65535,255,255
1469
+ 460400745,0,4013,6,0,838,476,458,68,255,255
1470
+ 460400745,10,3229,6,1,65535,152,65535,65535,255,0
1471
+ 460400745,0,3799,6,0,882,544,434,70,255,255
1472
+ 460400745,10,3693,6,1,65535,48,65535,65535,255,0
1473
+ 460400745,13,2517,6,0,65535,65535,530,65535,255,255
1474
+ 460400745,10,3970,6,1,65535,114,65535,65535,255,1
1475
+ 460400745,0,3416,6,0,788,444,416,46,255,255
1476
+ 460400745,0,3687,6,0,918,498,490,38,255,255
1477
+ 460400745,0,3734,6,0,1340,938,504,68,255,255
1478
+ 460400745,0,3944,6,0,832,494,400,36,255,255
1479
+ 460400745,10,3607,6,1,65535,58,65535,65535,255,1
1480
+ 460400745,6,3999,6,1,748,65535,65535,65535,255,1
1481
+ 460400745,0,3075,6,0,900,504,468,42,255,255
1482
+ 460400745,13,809,6,0,65535,65535,510,65535,255,255
1483
+ 460400745,10,3859,7,1,65535,380,65535,65535,255,0
1484
+ 460400745,13,2888,7,0,65535,65535,102,65535,255,255
1485
+ 460400745,10,3001,7,1,65535,594,65535,65535,255,0
1486
+ 460400745,13,3797,7,0,65535,65535,426,65535,255,255
1487
+ 460400745,6,3659,7,1,38,65535,65535,65535,255,2
1488
+ 460400745,13,3846,7,0,65535,65535,408,65535,255,255
1489
+ 460400745,13,4059,7,0,65535,65535,568,65535,255,255
1490
+ 460400745,10,3991,7,1,65535,148,65535,65535,255,0
1491
+ 460400745,13,3972,7,0,65535,65535,104,65535,255,255
1492
+ 460400745,6,3175,7,1,22,65535,65535,65535,255,2
1493
+ 460400745,6,3392,7,1,250,65535,65535,65535,255,2
1494
+ 460400745,6,3115,7,1,150,65535,65535,65535,255,0
1495
+ 460400745,13,3946,7,0,65535,65535,442,65535,255,255
1496
+ 460400745,13,2607,7,0,65535,65535,490,65535,255,255
1497
+ 460400745,10,3792,7,1,65535,126,65535,65535,255,0
1498
+ 460400745,10,3466,7,1,65535,486,65535,65535,255,0
1499
+ 460400745,6,3954,7,1,32,65535,65535,65535,255,3
1500
+ 460400745,6,3700,7,1,12,65535,65535,65535,255,0
1501
+ 460400745,10,3611,7,1,65535,54,65535,65535,255,0
1502
+ 460400745,10,3151,7,1,65535,130,65535,65535,255,0
1503
+ 460400745,13,4004,7,0,65535,65535,98,65535,255,255
1504
+ 460400745,0,2337,7,1,144,65535,92,66,8,255
1505
+ 460400745,13,3209,1,0,65535,65535,112,65535,255,255
1506
+ 460400745,13,3963,1,0,65535,65535,118,65535,255,255
1507
+ 460400745,13,2151,1,0,65535,65535,106,65535,255,255
1508
+ 460400745,6,4071,1,1,184,65535,65535,65535,255,1
1509
+ 460400745,0,3118,1,1,152,65535,98,68,10,255
1510
+ 460400745,6,3691,1,1,30,65535,65535,65535,255,2
1511
+ 460400745,13,3087,1,0,65535,65535,124,65535,255,255
1512
+ 460400745,13,3655,1,0,65535,65535,106,65535,255,255
1513
+ 460400745,10,3807,1,1,65535,158,65535,65535,255,0
1514
+ 460400745,10,3353,1,1,65535,82,65535,65535,255,2
1515
+ 460400745,6,3782,1,1,560,65535,65535,65535,255,2
1516
+ 460400745,10,3679,1,1,65535,24,65535,65535,255,1
1517
+ 460400745,0,3189,1,0,774,444,424,68,255,255
1518
+ 460400745,10,4092,1,1,65535,146,65535,65535,255,0
1519
+ 460400745,13,4005,1,0,65535,65535,100,65535,255,255
1520
+ 460400745,0,3953,1,1,144,65535,98,66,10,255
1521
+ 460400745,0,3262,1,0,706,404,388,62,255,255
1522
+ 460400745,13,3920,1,0,65535,65535,620,65535,255,255
1523
+ 460400745,0,4036,1,1,142,65535,102,68,16,255
1524
+ 460400745,0,3790,1,1,346,65535,98,56,8,255
1525
+ 460400745,0,3860,1,1,168,65535,100,42,12,255
1526
+ 460400745,6,2677,1,1,186,65535,65535,65535,255,1
1527
+ 460400745,13,3103,1,0,65535,65535,538,65535,255,255
1528
+ 460400745,10,3532,1,1,65535,146,65535,65535,255,0
1529
+ 460400745,10,3952,1,1,65535,122,65535,65535,255,1
1530
+ 460400745,13,3565,1,0,65535,65535,106,65535,255,255
1531
+ 460400745,0,3653,1,0,866,528,430,66,255,255
1532
+ 460400745,0,2428,1,0,798,448,418,42,255,255
1533
+ 460400745,0,3541,1,1,154,65535,94,68,10,255
1534
+ 460400745,0,1722,1,0,958,536,516,66,255,255
1535
+ 460400745,10,1980,1,1,65535,148,65535,65535,255,0
1536
+ 460400745,0,3965,1,1,144,65535,88,66,8,255
1537
+ 460400745,0,4054,1,0,730,382,440,66,255,255
1538
+ 460400745,0,3890,1,1,144,65535,82,68,10,255
1539
+ 460400745,0,3940,1,1,150,65535,90,66,8,255
1540
+ 460400745,10,2639,1,1,65535,154,65535,65535,255,0
1541
+ 460400745,13,3410,1,0,65535,65535,102,65535,255,255
1542
+ 460400745,13,2950,1,0,65535,65535,114,65535,255,255
1543
+ 460400745,13,3502,1,0,65535,65535,108,65535,255,255
1544
+ 460400745,13,3479,1,0,65535,65535,94,65535,255,255
1545
+ 460400745,0,3673,1,1,164,65535,104,42,12,255
1546
+ 460400745,10,3645,1,1,65535,142,65535,65535,255,0
1547
+ 460400745,13,4076,1,0,65535,65535,466,65535,255,255
1548
+ 460400745,13,2163,1,0,65535,65535,488,65535,255,255
1549
+ 460400745,6,4093,1,1,58,65535,65535,65535,255,2
1550
+ 460400745,0,3306,1,0,1100,758,438,62,255,255
1551
+ 460400745,6,3842,1,1,826,65535,65535,65535,255,0
1552
+ 460400745,10,3232,1,1,65535,150,65535,65535,255,1
1553
+ 460400745,10,3389,1,1,65535,148,65535,65535,255,0
1554
+ 460400745,13,4016,1,0,65535,65535,102,65535,255,255
1555
+ 460400745,13,3519,2,0,65535,65535,652,65535,255,255
1556
+ 460400745,10,3700,2,1,65535,52,65535,65535,255,0
1557
+ 460400745,6,3834,2,1,180,65535,65535,65535,255,1
1558
+ 460400745,13,3136,2,0,65535,65535,108,65535,255,255
1559
+ 460400745,0,2795,2,1,168,65535,108,70,6,255
1560
+ 460400745,10,3779,2,1,65535,26,65535,65535,255,3
1561
+ 460400745,10,3515,2,1,65535,152,65535,65535,255,0
1562
+ 460400745,10,2656,2,1,65535,142,65535,65535,255,0
1563
+ 460400745,10,3367,2,1,65535,34,65535,65535,255,1
1564
+ 460400745,6,3847,2,1,164,65535,65535,65535,255,0
1565
+ 460400745,13,3689,2,0,65535,65535,728,65535,255,255
1566
+ 460400745,0,3842,2,1,140,65535,74,70,8,255
1567
+ 460400745,6,3544,2,1,172,65535,65535,65535,255,0
1568
+ 460400745,10,3766,2,1,65535,144,65535,65535,255,0
1569
+ 460400745,0,3317,2,1,166,65535,106,68,8,255
1570
+ 460400745,0,4064,2,0,1116,686,524,62,255,255
1571
+ 460400745,13,3891,2,0,65535,65535,110,65535,255,255
1572
+ 460400745,0,2976,2,1,168,65535,112,68,6,255
1573
+ 460400745,0,4018,2,1,186,65535,106,42,10,255
1574
+ 460400745,0,2388,2,1,182,65535,106,48,10,255
1575
+ 460400745,6,3927,2,1,12,65535,65535,65535,255,2
1576
+ 460400745,0,2553,2,1,176,65535,110,70,8,255
1577
+ 460400745,10,2676,2,1,65535,144,65535,65535,255,0
1578
+ 460400745,13,4026,2,0,65535,65535,104,65535,255,255
1579
+ 460400745,6,3479,2,1,168,65535,65535,65535,255,0
1580
+ 460400745,6,4006,2,1,52,65535,65535,65535,255,1
1581
+ 460400745,13,3645,2,0,65535,65535,104,65535,255,255
1582
+ 460400745,6,3915,2,1,1454,65535,65535,65535,255,1
1583
+ 460400745,10,3921,3,1,65535,50,65535,65535,255,0
1584
+ 460400745,0,4017,3,1,170,65535,120,68,8,255
1585
+ 460400745,0,3484,3,1,158,65535,90,66,6,255
1586
+ 460400745,0,3321,3,0,710,302,470,38,255,255
1587
+ 460400745,0,3740,3,1,164,65535,112,72,6,255
1588
+ 460400745,0,2726,3,0,1206,734,572,68,255,255
1589
+ 460400745,0,3053,3,1,164,65535,112,68,6,255
1590
+ 460400745,0,1055,3,1,162,65535,104,68,8,255
1591
+ 460400745,0,2883,3,1,184,65535,100,42,12,255
1592
+ 460400745,0,3776,3,1,170,65535,112,68,8,255
1593
+ 460400745,0,3746,3,1,186,65535,110,42,10,255
1594
+ 460400745,10,3551,3,1,65535,152,65535,65535,255,0
1595
+ 460400745,0,3679,3,1,164,65535,98,68,8,255
1596
+ 460400745,6,4064,3,1,164,65535,65535,65535,255,0
1597
+ 460400745,0,2807,3,1,178,65535,110,44,10,255
1598
+ 460400745,10,3587,3,1,65535,134,65535,65535,255,1
1599
+ 460400745,6,3966,3,1,174,65535,65535,65535,255,1
1600
+ 460400745,10,2904,3,1,65535,70,65535,65535,255,0
1601
+ 460400745,6,4011,3,1,1764,65535,65535,65535,255,2
1602
+ 460400745,6,3954,3,1,24,65535,65535,65535,255,3
1603
+ 460400745,0,3869,3,1,166,65535,102,68,8,255
1604
+ 460400745,10,4006,3,1,65535,24,65535,65535,255,0
1605
+ 460400745,10,2905,3,1,65535,138,65535,65535,255,0
1606
+ 460400745,6,3715,3,1,168,65535,65535,65535,255,0
1607
+ 460400745,6,3662,3,1,170,65535,65535,65535,255,0
1608
+ 460400745,13,3835,3,0,65535,65535,484,65535,255,255
1609
+ 460400745,10,4003,3,1,65535,136,65535,65535,255,0
1610
+ 460400745,6,3097,3,1,164,65535,65535,65535,255,0
1611
+ 460400745,10,3779,3,1,65535,20,65535,65535,255,1
1612
+ 460400745,13,3563,3,0,65535,65535,542,65535,255,255
1613
+ 460400745,13,3633,3,0,65535,65535,98,65535,255,255
1614
+ 460400745,13,2658,3,0,65535,65535,102,65535,255,255
1615
+ 460400745,13,3810,3,0,65535,65535,514,65535,255,255
1616
+ 460400745,13,3187,3,0,65535,65535,108,65535,255,255
1617
+ 460400745,10,3747,3,1,65535,138,65535,65535,255,0
1618
+ 460400745,0,1604,3,1,172,65535,112,66,6,255
1619
+ 460400745,13,3960,4,0,65535,65535,110,65535,255,255
1620
+ 460400745,13,3691,4,0,65535,65535,756,65535,255,255
1621
+ 460400745,6,3056,4,1,12,65535,65535,65535,255,2
1622
+ 460400745,10,2416,4,1,65535,30,65535,65535,255,1
1623
+ 460400745,0,4079,4,0,950,540,506,70,255,255
1624
+ 460400745,13,3598,4,0,65535,65535,102,65535,255,255
1625
+ 460400745,6,4021,4,1,166,65535,65535,65535,255,0
1626
+ 460400745,6,3713,4,1,182,65535,65535,65535,255,1
1627
+ 460400745,10,1808,4,1,65535,130,65535,65535,255,0
1628
+ 460400745,13,3821,4,0,65535,65535,566,65535,255,255
1629
+ 460400745,0,2835,4,1,174,65535,104,74,6,255
1630
+ 460400745,0,2101,4,1,166,65535,172,68,8,255
1631
+ 460400745,0,3787,4,0,1010,576,502,40,255,255
1632
+ 460400745,0,3359,4,1,164,65535,106,66,8,255
1633
+ 460400745,6,3825,4,1,172,65535,65535,65535,255,0
1634
+ 460400745,0,2348,4,0,798,488,402,66,255,255
1635
+ 460400745,13,3733,4,0,65535,65535,958,65535,255,255
1636
+ 460400745,10,4078,4,1,65535,152,65535,65535,255,0
1637
+ 460400745,0,1724,4,0,820,484,432,68,255,255
1638
+ 460400745,0,3738,4,0,1154,444,778,42,255,255
1639
+ 460400745,6,3071,4,1,166,65535,65535,65535,255,0
1640
+ 460400745,0,3652,4,0,770,370,498,72,255,255
1641
+ 460400745,0,3589,4,1,166,65535,98,70,8,255
1642
+ 460400745,0,3853,4,1,172,65535,106,68,8,255
1643
+ 460400745,10,3703,4,1,65535,44,65535,65535,255,1
1644
+ 460400745,10,2199,4,1,65535,146,65535,65535,255,0
1645
+ 460400745,10,3409,4,1,65535,564,65535,65535,255,0
1646
+ 460400745,10,3159,4,1,65535,46,65535,65535,255,1
1647
+ 460400745,10,3366,4,1,65535,812,65535,65535,255,1
1648
+ 460400745,6,3762,4,1,46,65535,65535,65535,255,3
1649
+ 460400745,13,4025,4,0,65535,65535,102,65535,255,255
1650
+ 460400745,6,3484,4,1,76,65535,65535,65535,255,2
1651
+ 460400745,6,2038,4,1,40,65535,65535,65535,255,2
1652
+ 460400745,10,2803,4,1,65535,134,65535,65535,255,1
1653
+ 460400745,6,3532,4,1,12,65535,65535,65535,255,2
1654
+ 460400745,13,3750,5,0,65535,65535,94,65535,255,255
1655
+ 460400745,13,3963,5,0,65535,65535,90,65535,255,255
1656
+ 460400745,6,3676,5,1,22,65535,65535,65535,255,2
1657
+ 460400745,10,890,5,1,65535,26,65535,65535,255,2
1658
+ 460400745,0,3873,5,0,898,494,498,64,255,255
1659
+ 460400745,13,4010,5,0,65535,65535,418,65535,255,255
1660
+ 460400745,10,3492,5,1,65535,166,65535,65535,255,0
1661
+ 460400745,10,3893,5,1,65535,26,65535,65535,255,1
1662
+ 460400745,10,3608,5,1,65535,32,65535,65535,255,1
1663
+ 460400745,0,3618,5,1,162,65535,100,70,8,255
1664
+ 460400745,13,2716,5,0,65535,65535,88,65535,255,255
1665
+ 460400745,6,3328,5,1,1164,65535,65535,65535,255,0
1666
+ 460400745,10,3888,5,1,65535,40,65535,65535,255,2
1667
+ 460400745,6,2597,5,1,164,65535,65535,65535,255,0
1668
+ 460400745,10,3483,5,1,65535,44,65535,65535,255,1
1669
+ 460400745,0,2731,5,1,166,65535,92,88,6,255
1670
+ 460400745,0,3961,5,0,1122,610,584,44,255,255
1671
+ 460400745,0,3966,5,0,1236,858,474,66,255,255
1672
+ 460400745,0,4086,5,1,370,65535,314,68,2,255
1673
+ 460400745,0,3841,5,0,768,428,406,42,255,255
1674
+ 460400745,0,3677,5,1,184,65535,106,44,10,255
1675
+ 460400745,13,3785,5,0,65535,65535,14,65535,255,255
1676
+ 460400745,6,3836,5,1,164,65535,65535,65535,255,1
1677
+ 460400745,13,3758,5,0,65535,65535,104,65535,255,255
1678
+ 460400745,0,4053,5,0,800,464,434,70,255,255
1679
+ 460400745,0,3299,5,1,180,65535,102,42,12,255
1680
+ 460400745,6,3953,5,1,26,65535,65535,65535,255,3
1681
+ 460400745,0,2499,5,1,162,65535,100,70,6,255
1682
+ 460400745,13,3831,5,0,65535,65535,84,65535,255,255
1683
+ 460400745,10,3781,5,1,65535,112,65535,65535,255,0
1684
+ 460400745,10,3707,5,1,65535,40,65535,65535,255,1
1685
+ 460400745,0,3507,5,1,162,65535,94,70,6,255
1686
+ 460400745,10,3659,5,1,65535,34,65535,65535,255,3
1687
+ 460400745,13,3404,5,0,65535,65535,524,65535,255,255
1688
+ 460400745,6,1306,5,1,28,65535,65535,65535,255,3
1689
+ 460400745,13,3412,6,0,65535,65535,470,65535,255,255
1690
+ 460400745,6,3341,6,1,22,65535,65535,65535,255,2
1691
+ 460400745,13,4071,6,0,65535,65535,510,65535,255,255
1692
+ 460400745,13,2817,6,0,65535,65535,606,65535,255,255
1693
+ 460400745,10,3708,6,1,65535,36,65535,65535,255,0
1694
+ 460400745,13,3376,6,0,65535,65535,404,65535,255,255
1695
+ 460400745,6,3934,6,1,32,65535,65535,65535,255,2
1696
+ 460400745,0,4055,6,0,722,436,378,68,255,255
1697
+ 460400745,13,1877,6,0,65535,65535,604,65535,255,255
1698
+ 460400745,6,3668,6,1,40,65535,65535,65535,255,2
1699
+ 460400745,13,2821,6,0,65535,65535,464,65535,255,255
1700
+ 460400745,13,3982,6,0,65535,65535,448,65535,255,255
1701
+ 460400745,10,3626,6,1,65535,232,65535,65535,255,2
1702
+ 460400745,0,3230,6,0,950,534,512,68,255,255
1703
+ 460400745,0,3936,6,0,832,486,440,68,255,255
1704
+ 460400745,0,3750,6,0,1034,630,478,44,255,255
1705
+ 460400745,0,4038,6,1,190,65535,96,44,10,255
1706
+ 460400745,13,3924,6,0,65535,65535,482,65535,255,255
1707
+ 460400745,10,3444,6,1,65535,46,65535,65535,255,1
1708
+ 460400745,0,3303,6,1,192,65535,110,44,0,255
1709
+ 460400745,10,2804,6,1,65535,546,65535,65535,255,0
1710
+ 460400745,13,2368,7,0,65535,65535,108,65535,255,255
1711
+ 460400745,6,3560,7,1,970,65535,65535,65535,255,1
1712
+ 460400745,10,2630,7,1,65535,40,65535,65535,255,0
1713
+ 460400745,13,3588,7,0,65535,65535,454,65535,255,255
1714
+ 460400745,6,3134,7,1,40,65535,65535,65535,255,3
1715
+ 460400745,6,3961,7,1,1688,65535,65535,65535,255,0
1716
+ 460400745,10,3432,7,1,65535,424,65535,65535,255,0
1717
+ 460400745,10,4033,7,1,65535,140,65535,65535,255,0
1718
+ 460400745,13,4048,7,0,65535,65535,490,65535,255,255
1719
+ 460400745,10,3610,7,1,65535,140,65535,65535,255,0
1720
+ 460400745,13,3133,7,0,65535,65535,86,65535,255,255
1721
+ 460400745,13,4007,7,0,65535,65535,92,65535,255,255
1722
+ 460400745,10,143,7,1,65535,144,65535,65535,255,0
1723
+ 460400745,10,2540,7,1,65535,152,65535,65535,255,0
1724
+ 460400745,13,3794,7,0,65535,65535,4,65535,255,255
1725
+ 460400745,6,3976,7,1,46,65535,65535,65535,255,3
1726
+ 460400745,6,3486,7,1,150,65535,65535,65535,255,0
1727
+ 460400745,10,3869,7,1,65535,30,65535,65535,255,0
1728
+ 460400745,13,4056,7,0,65535,65535,86,65535,255,255
1729
+ 460400745,0,4077,7,1,154,65535,106,68,10,255
1730
+ 460400745,13,3876,1,0,65535,65535,104,65535,255,255
1731
+ 460400745,13,3715,1,0,65535,65535,112,65535,255,255
1732
+ 460400745,10,3455,1,1,65535,140,65535,65535,255,0
1733
+ 460400745,4,3520,1,1,172,65535,462,65535,255,0
1734
+ 460400745,13,3871,1,0,65535,65535,472,65535,255,255
1735
+ 460400745,13,3959,1,0,65535,65535,116,65535,255,255
1736
+ 460400745,10,4055,1,1,65535,534,65535,65535,255,1
1737
+ 460400745,10,2049,1,1,65535,136,65535,65535,255,0
1738
+ 460400745,10,2348,1,1,65535,624,65535,65535,255,0
1739
+ 460400745,10,1963,1,1,65535,44,65535,65535,255,2
1740
+ 460400745,10,3753,1,1,65535,138,65535,65535,255,0
1741
+ 460400745,13,2395,1,0,65535,65535,118,65535,255,255
1742
+ 460400745,0,3908,1,1,176,65535,102,48,10,255
1743
+ 460400745,6,756,1,1,204,65535,65535,65535,255,2
1744
+ 460400745,13,2471,1,0,65535,65535,608,65535,255,255
1745
+ 460400745,0,3659,1,1,138,65535,74,68,10,255
1746
+ 460400745,0,3761,1,1,170,65535,92,60,10,255
1747
+ 460400745,0,3902,1,1,148,65535,90,68,6,255
1748
+ 460400745,13,4032,1,0,65535,65535,114,65535,255,255
1749
+ 460400745,0,3963,1,1,162,65535,88,46,12,255
1750
+ 460400745,6,3972,1,1,148,65535,65535,65535,255,0
1751
+ 460400745,10,3925,1,1,65535,150,65535,65535,255,0
1752
+ 460400745,13,4011,1,0,65535,65535,460,65535,255,255
1753
+ 460400745,6,4005,1,1,0,65535,65535,65535,255,2
1754
+ 460400745,6,3161,1,1,32,65535,65535,65535,255,3
1755
+ 460400745,0,4023,1,1,158,65535,104,68,6,255
1756
+ 460400745,12,4001,1,1,65535,65535,520,65535,255,1
1757
+ 460400745,6,3603,1,1,168,65535,65535,65535,255,0
1758
+ 460400745,13,2404,1,0,65535,65535,346,65535,255,255
1759
+ 460400745,13,3850,1,0,65535,65535,440,65535,255,255
1760
+ 460400745,0,3955,1,0,786,464,418,70,255,255
1761
+ 460400745,0,1945,1,1,194,65535,100,50,10,255
1762
+ 460400745,0,3622,1,0,914,564,446,68,255,255
1763
+ 460400745,6,3847,1,1,1006,65535,65535,65535,255,0
1764
+ 460400745,6,4059,1,1,1382,65535,65535,65535,255,0
1765
+ 460400745,10,3441,1,1,65535,570,65535,65535,255,0
1766
+ 460400745,10,4061,1,1,65535,130,65535,65535,255,0
1767
+ 460400745,6,4074,1,1,200,65535,65535,65535,255,2
1768
+ 460400745,10,3628,1,1,65535,154,65535,65535,255,0
1769
+ 460400745,13,4012,1,0,65535,65535,560,65535,255,255
1770
+ 460400745,13,2202,1,0,65535,65535,100,65535,255,255
1771
+ 460400745,10,3893,1,1,65535,124,65535,65535,255,0
1772
+ 460400745,0,3880,1,1,160,65535,104,38,10,255
1773
+ 460400745,6,3690,1,1,152,65535,65535,65535,255,0
1774
+ 460400745,6,3670,2,1,182,65535,65535,65535,255,1
1775
+ 460400745,13,3405,2,0,65535,65535,106,65535,255,255
1776
+ 460400745,6,3702,2,1,46,65535,65535,65535,255,3
1777
+ 460400745,10,3444,2,1,65535,152,65535,65535,255,0
1778
+ 460400745,10,3887,2,1,65535,142,65535,65535,255,0
1779
+ 460400745,6,3994,2,1,36,65535,65535,65535,255,2
1780
+ 460400745,13,3750,2,0,65535,65535,132,65535,255,255
1781
+ 460400745,13,3542,2,0,65535,65535,108,65535,255,255
1782
+ 460400745,6,3984,2,1,16,65535,65535,65535,255,2
1783
+ 460400745,13,3986,2,0,65535,65535,112,65535,255,255
1784
+ 460400745,13,4079,2,0,65535,65535,106,65535,255,255
1785
+ 460400745,6,2688,2,1,174,65535,65535,65535,255,0
1786
+ 460400745,10,3321,2,1,65535,144,65535,65535,255,1
1787
+ 460400745,13,2006,2,0,65535,65535,520,65535,255,255
1788
+ 460400745,0,3550,2,1,180,65535,110,48,10,255
1789
+ 460400745,0,2897,2,1,176,65535,102,46,10,255
1790
+ 460400745,13,2661,2,0,65535,65535,472,65535,255,255
1791
+ 460400745,0,3653,2,0,700,64,728,68,255,255
1792
+ 460400745,0,3399,2,0,1952,198,790,24,255,255
1793
+ 460400745,0,3445,2,1,166,65535,102,70,8,255
1794
+ 460400745,6,3335,2,1,166,65535,65535,65535,255,0
1795
+ 460400745,0,3134,2,1,168,65535,100,72,8,255
1796
+ 460400745,6,3153,2,1,178,65535,65535,65535,255,0
1797
+ 460400745,6,2653,2,1,864,65535,65535,65535,255,0
1798
+ 460400745,6,3915,2,1,184,65535,65535,65535,255,1
1799
+ 460400745,6,4094,2,1,186,65535,65535,65535,255,1
1800
+ 460400745,13,3863,2,0,65535,65535,110,65535,255,255
1801
+ 460400745,6,3929,2,1,182,65535,65535,65535,255,1
1802
+ 460400745,13,3913,3,0,65535,65535,578,65535,255,255
1803
+ 460400745,0,3221,3,1,164,65535,106,70,8,255
1804
+ 460400745,6,3019,3,1,0,65535,65535,65535,255,2
1805
+ 460400745,0,3989,3,1,166,65535,110,70,6,255
1806
+ 460400745,0,3563,3,1,190,65535,106,72,10,255
1807
+ 460400745,0,1629,3,1,164,65535,108,68,6,255
1808
+ 460400745,0,3552,3,1,168,65535,100,72,8,255
1809
+ 460400745,0,3265,3,1,168,65535,112,72,8,255
1810
+ 460400745,13,3322,3,0,65535,65535,522,65535,255,255
1811
+ 460400745,0,3289,3,1,170,65535,108,70,8,255
1812
+ 460400745,10,3805,3,1,65535,8,65535,65535,255,1
1813
+ 460400745,13,2132,3,0,65535,65535,98,65535,255,255
1814
+ 460400745,0,3805,3,1,170,65535,114,70,6,255
1815
+ 460400745,10,3064,3,1,65535,32,65535,65535,255,1
1816
+ 460400745,13,3936,3,0,65535,65535,114,65535,255,255
1817
+ 460400745,10,3413,3,1,65535,130,65535,65535,255,1
1818
+ 460400745,13,3376,3,0,65535,65535,378,65535,255,255
1819
+ 460400745,10,2976,3,1,65535,156,65535,65535,255,0
1820
+ 460400745,6,3592,3,1,58,65535,65535,65535,255,3
1821
+ 460400745,10,2061,3,1,65535,618,65535,65535,255,0
1822
+ 460400745,13,4091,3,0,65535,65535,104,65535,255,255
1823
+ 460400745,10,2949,3,1,65535,132,65535,65535,255,1
1824
+ 460400745,13,3185,3,0,65535,65535,108,65535,255,255
1825
+ 460400745,6,3203,3,1,34,65535,65535,65535,255,2
1826
+ 460400745,13,3585,3,0,65535,65535,520,65535,255,255
1827
+ 460400745,6,3564,3,1,172,65535,65535,65535,255,1
1828
+ 460400745,6,3550,3,1,182,65535,65535,65535,255,1
1829
+ 460400745,6,2943,3,1,18,65535,65535,65535,255,2
1830
+ 460400745,13,3021,3,0,65535,65535,532,65535,255,255
1831
+ 460400745,10,4061,3,1,65535,34,65535,65535,255,0
1832
+ 460400745,13,3003,3,0,65535,65535,878,65535,255,255
1833
+ 460400745,13,4057,3,0,65535,65535,108,65535,255,255
1834
+ 460400745,13,4029,3,0,65535,65535,104,65535,255,255
1835
+ 460400745,10,2563,3,1,65535,48,65535,65535,255,0
1836
+ 460400745,0,3279,3,0,830,448,430,24,255,255
1837
+ 460400745,6,3867,4,1,166,65535,65535,65535,255,0
1838
+ 460400745,10,4028,4,1,65535,148,65535,65535,255,0
1839
+ 460400745,10,3970,4,1,65535,460,65535,65535,255,0
1840
+ 460400745,13,3166,4,0,65535,65535,114,65535,255,255
1841
+ 460400745,0,3045,4,1,164,65535,100,68,6,255
1842
+ 460400745,13,3118,4,0,65535,65535,104,65535,255,255
1843
+ 460400745,10,3698,4,1,65535,44,65535,65535,255,1
1844
+ 460400745,10,1710,4,1,65535,732,65535,65535,255,1
1845
+ 460400745,6,3869,4,1,34,65535,65535,65535,255,2
1846
+ 460400745,0,2220,4,0,1274,816,554,64,255,255
1847
+ 460400745,0,2303,4,0,1062,624,536,68,255,255
1848
+ 460400745,0,3920,4,1,168,65535,98,70,6,255
1849
+ 460400745,13,3982,4,0,65535,65535,466,65535,255,255
1850
+ 460400745,13,2342,4,0,65535,65535,624,65535,255,255
1851
+ 460400745,0,3282,4,0,1100,744,432,44,255,255
1852
+ 460400745,13,3990,4,0,65535,65535,102,65535,255,255
1853
+ 460400745,10,3807,4,1,65535,152,65535,65535,255,0
1854
+ 460400745,0,3814,4,0,892,470,490,40,255,255
1855
+ 460400745,0,4002,4,0,900,488,480,40,255,255
1856
+ 460400745,10,3238,4,1,65535,496,65535,65535,255,0
1857
+ 460400745,0,309,4,0,796,460,430,70,255,255
1858
+ 460400745,0,3949,4,0,798,464,430,70,255,255
1859
+ 460400745,6,3082,4,1,194,65535,65535,65535,255,2
1860
+ 460400745,13,3727,4,0,65535,65535,474,65535,255,255
1861
+ 460400745,10,3610,4,1,65535,140,65535,65535,255,1
1862
+ 460400745,13,3576,4,0,65535,65535,120,65535,255,255
1863
+ 460400745,6,3408,4,1,880,65535,65535,65535,255,0
1864
+ 460400745,13,3114,4,0,65535,65535,418,65535,255,255
1865
+ 460400745,6,3493,4,1,168,65535,65535,65535,255,0
1866
+ 460400745,10,2948,4,1,65535,154,65535,65535,255,0
1867
+ 460400745,13,3753,4,0,65535,65535,484,65535,255,255
1868
+ 460400745,6,3499,4,1,8,65535,65535,65535,255,2
1869
+ 460400745,10,4041,5,1,65535,6,65535,65535,255,1
1870
+ 460400745,13,3044,5,0,65535,65535,406,65535,255,255
1871
+ 460400745,6,3177,5,1,16,65535,65535,65535,255,2
1872
+ 460400745,13,281,5,0,65535,65535,96,65535,255,255
1873
+ 460400745,10,4087,5,1,65535,42,65535,65535,255,2
1874
+ 460400745,10,3984,5,1,65535,32,65535,65535,255,1
1875
+ 460400745,6,3514,5,1,160,65535,65535,65535,255,0
1876
+ 460400745,0,2634,5,0,994,652,442,68,255,255
1877
+ 460400745,13,3224,5,0,65535,65535,756,65535,255,255
1878
+ 460400745,13,3232,5,0,65535,65535,472,65535,255,255
1879
+ 460400745,13,3888,5,0,65535,65535,592,65535,255,255
1880
+ 460400745,6,3981,5,1,18,65535,65535,65535,255,2
1881
+ 460400745,13,3751,5,0,65535,65535,456,65535,255,255
1882
+ 460400745,0,3124,5,0,904,534,466,68,255,255
1883
+ 460400745,0,3443,5,1,158,65535,84,78,6,255
1884
+ 460400745,6,1449,5,1,0,65535,65535,65535,255,1
1885
+ 460400745,0,2375,5,0,732,408,394,42,255,255
1886
+ 460400745,0,4077,5,0,864,504,454,66,255,255
1887
+ 460400745,13,3465,5,0,65535,65535,508,65535,255,255
1888
+ 460400745,6,3906,5,1,954,65535,65535,65535,255,1
1889
+ 460400745,10,3689,5,1,65535,30,65535,65535,255,1
1890
+ 460400745,10,2947,5,1,65535,148,65535,65535,255,0
1891
+ 460400745,0,4062,5,1,162,65535,96,70,8,255
1892
+ 460400745,0,2704,5,0,744,398,412,40,255,255
1893
+ 460400745,13,3967,5,0,65535,65535,714,65535,255,255
1894
+ 460400745,13,3937,5,0,65535,65535,496,65535,255,255
1895
+ 460400745,13,3884,5,0,65535,65535,92,65535,255,255
1896
+ 460400745,13,4032,5,0,65535,65535,524,65535,255,255
1897
+ 460400745,10,3415,5,1,65535,34,65535,65535,255,1
1898
+ 460400745,0,3448,5,1,180,65535,112,40,10,255
1899
+ 460400745,10,3577,5,1,65535,162,65535,65535,255,0
1900
+ 460400745,10,3088,5,1,65535,52,65535,65535,255,0
1901
+ 460400745,6,4061,5,1,10,65535,65535,65535,255,2
1902
+ 460400745,6,997,6,1,970,65535,65535,65535,255,2
1903
+ 460400745,10,3727,6,1,65535,48,65535,65535,255,0
1904
+ 460400745,13,3671,6,0,65535,65535,432,65535,255,255
1905
+ 460400745,6,922,6,1,1342,65535,65535,65535,255,1
1906
+ 460400745,6,3797,6,1,836,65535,65535,65535,255,0
1907
+ 460400745,13,244,6,0,65535,65535,480,65535,255,255
1908
+ 460400745,6,3921,6,1,200,65535,65535,65535,255,0
1909
+ 460400745,10,3672,6,1,65535,50,65535,65535,255,0
1910
+ 460400745,10,3959,6,1,65535,40,65535,65535,255,0
1911
+ 460400745,6,4035,6,1,948,65535,65535,65535,255,0
1912
+ 460400745,13,3895,6,0,65535,65535,550,65535,255,255
1913
+ 460400745,0,3798,6,0,1052,628,500,46,255,255
1914
+ 460400745,0,3010,6,0,178,142,98,76,255,255
1915
+ 460400745,0,3837,6,0,830,450,478,70,255,255
1916
+ 460400745,0,3873,6,1,476,65535,460,38,2,255
1917
+ 460400745,13,569,6,0,65535,65535,462,65535,255,255
1918
+ 460400745,10,4023,6,1,65535,40,65535,65535,255,1
1919
+ 460400745,0,3419,6,0,1132,698,502,40,255,255
1920
+ 460400745,13,3937,6,0,65535,65535,476,65535,255,255
1921
+ 460400745,6,3536,7,1,174,65535,65535,65535,255,1
1922
+ 460400745,10,3584,7,1,65535,42,65535,65535,255,1
1923
+ 460400745,13,3671,7,0,65535,65535,234,65535,255,255
1924
+ 460400745,6,3831,7,1,146,65535,65535,65535,255,0
1925
+ 460400745,13,3613,7,0,65535,65535,110,65535,255,255
1926
+ 460400745,6,3734,7,1,152,65535,65535,65535,255,0
1927
+ 460400745,13,3586,7,0,65535,65535,92,65535,255,255
1928
+ 460400745,10,3213,7,1,65535,118,65535,65535,255,1
1929
+ 460400745,6,3399,7,1,156,65535,65535,65535,255,0
1930
+ 460400745,6,3997,7,1,168,65535,65535,65535,255,1
1931
+ 460400745,10,4023,7,1,65535,62,65535,65535,255,0
1932
+ 460400745,13,3965,7,0,65535,65535,444,65535,255,255
1933
+ 460400745,6,3546,7,1,146,65535,65535,65535,255,0
1934
+ 460400745,10,3424,7,1,65535,130,65535,65535,255,0
1935
+ 460400745,13,3196,7,0,65535,65535,92,65535,255,255
1936
+ 460400745,10,2981,7,1,65535,452,65535,65535,255,0
1937
+ 460400745,10,3994,7,1,65535,62,65535,65535,255,1
1938
+ 460400745,10,3548,7,1,65535,6,65535,65535,255,1
1939
+ 460400745,10,3934,7,1,65535,112,65535,65535,255,1
1940
+ 460400745,6,2647,7,1,150,65535,65535,65535,255,0
1941
+ 460400745,10,3740,1,1,65535,142,65535,65535,255,0
1942
+ 460400745,6,3993,1,1,1334,65535,65535,65535,255,0
1943
+ 460400745,6,3917,1,1,10,65535,65535,65535,255,2
1944
+ 460400745,6,2581,1,1,148,65535,65535,65535,255,0
1945
+ 460400745,13,3673,1,0,65535,65535,532,65535,255,255
1946
+ 460400745,13,4073,1,0,65535,65535,104,65535,255,255
1947
+ 460400745,6,3444,1,1,168,65535,65535,65535,255,0
1948
+ 460400745,13,3602,1,0,65535,65535,524,65535,255,255
1949
+ 460400745,6,4061,1,1,174,65535,65535,65535,255,0
1950
+ 460400745,6,3826,1,1,166,65535,65535,65535,255,0
1951
+ 460400745,13,2738,1,0,65535,65535,108,65535,255,255
1952
+ 460400745,10,3509,1,1,65535,132,65535,65535,255,0
1953
+ 460400745,0,3755,1,0,726,458,366,70,255,255
1954
+ 460400745,0,3952,1,0,882,514,458,62,255,255
1955
+ 460400745,0,4035,1,0,1220,836,456,42,255,255
1956
+ 460400745,6,2708,1,1,172,65535,65535,65535,255,0
1957
+ 460400745,0,3933,1,1,166,65535,108,68,8,255
1958
+ 460400745,10,4059,1,1,65535,60,65535,65535,255,0
1959
+ 460400745,13,3722,1,0,65535,65535,106,65535,255,255
1960
+ 460400745,10,4051,1,1,65535,138,65535,65535,255,0
1961
+ 460400745,10,2718,1,1,65535,94,65535,65535,255,0
1962
+ 460400745,10,3426,1,1,65535,116,65535,65535,255,1
1963
+ 460400745,0,310,1,1,160,65535,98,68,10,255
1964
+ 460400745,13,2079,1,0,65535,65535,108,65535,255,255
1965
+ 460400745,13,3974,1,0,65535,65535,798,65535,255,255
1966
+ 460400745,13,4077,1,0,65535,65535,112,65535,255,255
1967
+ 460400745,6,2491,1,1,160,65535,65535,65535,255,0
1968
+ 460400745,0,2899,1,1,168,65535,96,40,12,255
1969
+ 460400745,0,3671,1,0,968,606,458,68,255,255
1970
+ 460400745,0,4001,1,1,174,65535,104,40,10,255
1971
+ 460400745,10,3657,1,1,65535,62,65535,65535,255,0
1972
+ 460400745,13,3727,1,0,65535,65535,482,65535,255,255
1973
+ 460400745,10,3962,1,1,65535,138,65535,65535,255,2
1974
+ 460400745,13,3212,1,0,65535,65535,104,65535,255,255
1975
+ 460400745,6,4090,1,1,154,65535,65535,65535,255,0
1976
+ 460400745,10,3231,1,1,65535,930,65535,65535,255,1
1977
+ 460400745,10,3536,1,1,65535,666,65535,65535,255,0
1978
+ 460400745,6,2757,1,1,168,65535,65535,65535,255,0
1979
+ 460400745,10,3922,1,1,65535,150,65535,65535,255,0
1980
+ 460400745,13,3907,1,0,65535,65535,620,65535,255,255
1981
+ 460400745,13,1861,1,0,65535,65535,424,65535,255,255
1982
+ 460400745,10,3043,2,1,65535,28,65535,65535,255,0
1983
+ 460400745,13,3839,2,0,65535,65535,508,65535,255,255
1984
+ 460400745,6,3975,2,1,24,65535,65535,65535,255,2
1985
+ 460400745,6,3476,2,1,32,65535,65535,65535,255,2
1986
+ 460400745,10,4008,2,1,65535,2,65535,65535,255,3
1987
+ 460400745,10,1491,2,1,65535,146,65535,65535,255,0
1988
+ 460400745,6,2515,2,1,144,65535,65535,65535,255,3
1989
+ 460400745,6,3780,2,1,466,65535,65535,65535,255,0
1990
+ 460400745,13,3984,2,0,65535,65535,106,65535,255,255
1991
+ 460400745,13,3171,2,0,65535,65535,432,65535,255,255
1992
+ 460400745,13,1823,2,0,65535,65535,526,65535,255,255
1993
+ 460400745,0,3917,2,1,184,65535,108,40,10,255
1994
+ 460400745,0,3569,2,0,1630,232,482,70,255,255
1995
+ 460400745,13,3751,2,0,65535,65535,104,65535,255,255
1996
+ 460400745,13,4060,2,0,65535,65535,0,65535,255,255
1997
+ 460400745,6,2632,2,1,162,65535,65535,65535,255,0
1998
+ 460400745,0,4052,2,1,182,65535,112,40,12,255
1999
+ 460400745,13,3620,2,0,65535,65535,108,65535,255,255