customeranalytics 0.1__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.
Files changed (254) hide show
  1. customeranalytics/__init__.py +319 -0
  2. customeranalytics/configs.py +480 -0
  3. customeranalytics/data_storage_configurations/__init__.py +245 -0
  4. customeranalytics/data_storage_configurations/data_access.py +165 -0
  5. customeranalytics/data_storage_configurations/data_works_pipeline.py +207 -0
  6. customeranalytics/data_storage_configurations/es_create_index.py +544 -0
  7. customeranalytics/data_storage_configurations/logger.py +36 -0
  8. customeranalytics/data_storage_configurations/query_es.py +157 -0
  9. customeranalytics/data_storage_configurations/reports.py +684 -0
  10. customeranalytics/data_storage_configurations/schedule_data_integration.py +355 -0
  11. customeranalytics/docs/queries.yaml +245 -0
  12. customeranalytics/docs/web_configs.yaml +2 -0
  13. customeranalytics/exploratory_analysis/__init__.py +109 -0
  14. customeranalytics/exploratory_analysis/churn.py +232 -0
  15. customeranalytics/exploratory_analysis/cohorts.py +535 -0
  16. customeranalytics/exploratory_analysis/descriptive_statistics.py +470 -0
  17. customeranalytics/exploratory_analysis/funnels.py +407 -0
  18. customeranalytics/exploratory_analysis/product_analytics.py +340 -0
  19. customeranalytics/exploratory_analysis/promotion_analytics.py +299 -0
  20. customeranalytics/exploratory_analysis/rfm.py +202 -0
  21. customeranalytics/exploratory_analysis/sample_data/sample_data_avg_order_count_per_promo_per_cust.csv +99 -0
  22. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_1_search.csv +2 -0
  23. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_2_search.csv +46 -0
  24. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_3_search.csv +2 -0
  25. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_4_search.csv +2 -0
  26. customeranalytics/exploratory_analysis/sample_data/sample_data_churn.csv +2 -0
  27. customeranalytics/exploratory_analysis/sample_data/sample_data_churn_weekly.csv +10 -0
  28. customeranalytics/exploratory_analysis/sample_data/sample_data_client_feature_predicted.csv +1590 -0
  29. customeranalytics/exploratory_analysis/sample_data/sample_data_client_kpis.csv +7060 -0
  30. customeranalytics/exploratory_analysis/sample_data/sample_data_clvrfm_anomaly.csv +561 -0
  31. customeranalytics/exploratory_analysis/sample_data/sample_data_clvsegments_amount.csv +8 -0
  32. customeranalytics/exploratory_analysis/sample_data/sample_data_customer_journey.csv +18 -0
  33. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_clv.csv +103 -0
  34. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_downloads.csv +68 -0
  35. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_1_to_2.csv +66 -0
  36. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_2_to_3.csv +64 -0
  37. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_3_to_4.csv +55 -0
  38. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_dimension_values.csv +199 -0
  39. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel.csv +36 -0
  40. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel_downloads.csv +68 -0
  41. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_inorganic_ratio.csv +6070 -0
  42. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_orders.csv +57 -0
  43. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_organic_orders.csv +64 -0
  44. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_products_of_sales.csv +12574 -0
  45. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_discount.csv +64 -0
  46. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_revenue.csv +6070 -0
  47. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly.csv +6 -0
  48. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly_2.csv +118 -0
  49. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver.csv +47 -0
  50. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_kpis.csv +2 -0
  51. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_weekday_hour.csv +25 -0
  52. customeranalytics/exploratory_analysis/sample_data/sample_data_dfunnel_anomaly.csv +118 -0
  53. customeranalytics/exploratory_analysis/sample_data/sample_data_dimension_kpis.csv +199 -0
  54. customeranalytics/exploratory_analysis/sample_data/sample_data_dorders_anomaly.csv +85 -0
  55. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_clusters.csv +6 -0
  56. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_recency.csv +3740 -0
  57. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel.csv +25 -0
  58. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel_downloads.csv +25 -0
  59. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_inorganic_ratio.csv +2353 -0
  60. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_orders.csv +25 -0
  61. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_organic_orders.csv +2353 -0
  62. customeranalytics/exploratory_analysis/sample_data/sample_data_inorganic_orders_per_promotion_per_day.csv +6070 -0
  63. customeranalytics/exploratory_analysis/sample_data/sample_data_kpis.csv +2 -0
  64. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_clusters.csv +6 -0
  65. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_frequency.csv +3740 -0
  66. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel.csv +5 -0
  67. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel_downloads.csv +5 -0
  68. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_orders.csv +4 -0
  69. customeranalytics/exploratory_analysis/sample_data/sample_data_most_combined_products.csv +11 -0
  70. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_categories.csv +11 -0
  71. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_products.csv +11 -0
  72. customeranalytics/exploratory_analysis/sample_data/sample_data_order_and_payment_amount_differences.csv +91 -0
  73. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare.csv +101 -0
  74. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare_weekday_hour.csv +25 -0
  75. customeranalytics/exploratory_analysis/sample_data/sample_data_product_kpis.csv +201 -0
  76. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_accept.csv +11 -0
  77. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_reject.csv +7 -0
  78. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_accept.csv +11 -0
  79. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_reject.csv +11 -0
  80. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_comparison.csv +91 -0
  81. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_kpis.csv +99 -0
  82. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_number_of_customer.csv +99 -0
  83. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_accept.csv +81 -0
  84. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_reject.csv +11 -0
  85. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_accept.csv +55 -0
  86. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_reject.csv +37 -0
  87. customeranalytics/exploratory_analysis/sample_data/sample_data_purchase_amount_distribution.csv +22 -0
  88. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_clusters.csv +6 -0
  89. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_monetary.csv +3740 -0
  90. customeranalytics/exploratory_analysis/sample_data/sample_data_rfm.csv +2001 -0
  91. customeranalytics/exploratory_analysis/sample_data/sample_data_ride.csv +101 -0
  92. customeranalytics/exploratory_analysis/sample_data/sample_data_ride_weekday_hour.csv +25 -0
  93. customeranalytics/exploratory_analysis/sample_data/sample_data_segmentation.csv +11 -0
  94. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_amount.csv +10 -0
  95. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_orders.csv +9 -0
  96. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_amount.csv +10 -0
  97. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_orders.csv +11 -0
  98. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_amount.csv +10 -0
  99. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_orders.csv +10 -0
  100. customeranalytics/exploratory_analysis/sample_data/sample_data_user_counts_per_order_seq.csv +47 -0
  101. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_order_per_user.csv +13 -0
  102. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_payment_amount.csv +13 -0
  103. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_session_per_user.csv +13 -0
  104. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_downloads.csv +13 -0
  105. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_1_to_2.csv +13 -0
  106. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_2_to_3.csv +13 -0
  107. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_3_to_4.csv +12 -0
  108. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel.csv +25 -0
  109. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel_downloads.csv +25 -0
  110. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_orders.csv +10 -0
  111. customeranalytics/ml_process/__init__.py +64 -0
  112. customeranalytics/ml_process/ab_test.py +615 -0
  113. customeranalytics/ml_process/anomaly_detection.py +456 -0
  114. customeranalytics/ml_process/clv_prediction.py +301 -0
  115. customeranalytics/ml_process/customer_segmentation.py +354 -0
  116. customeranalytics/ml_process/delivery_analytics.py +754 -0
  117. customeranalytics/utils.py +186 -0
  118. customeranalytics/web/app/__init__.py +37 -0
  119. customeranalytics/web/app/base/__init__.py +9 -0
  120. customeranalytics/web/app/base/forms.py +16 -0
  121. customeranalytics/web/app/base/models.py +43 -0
  122. customeranalytics/web/app/base/routes.py +126 -0
  123. customeranalytics/web/app/base/static/assets/css/app.css +20 -0
  124. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff +0 -0
  125. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff2 +0 -0
  126. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff +0 -0
  127. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff2 +0 -0
  128. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff +0 -0
  129. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff2 +0 -0
  130. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff +0 -0
  131. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff2 +0 -0
  132. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff +0 -0
  133. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff2 +0 -0
  134. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff +0 -0
  135. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  136. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff +0 -0
  137. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff2 +0 -0
  138. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff +0 -0
  139. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 +0 -0
  140. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff +0 -0
  141. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff2 +0 -0
  142. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff +0 -0
  143. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff2 +0 -0
  144. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff +0 -0
  145. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff2 +0 -0
  146. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff +0 -0
  147. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff2 +0 -0
  148. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff +0 -0
  149. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff2 +0 -0
  150. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff +0 -0
  151. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff2 +0 -0
  152. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff +0 -0
  153. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff2 +0 -0
  154. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff +0 -0
  155. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  156. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff +0 -0
  157. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff2 +0 -0
  158. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff +0 -0
  159. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff2 +0 -0
  160. customeranalytics/web/app/base/static/assets/fonts/Inter-italic.var.woff2 +0 -0
  161. customeranalytics/web/app/base/static/assets/fonts/Inter-upright.var.woff2 +0 -0
  162. customeranalytics/web/app/base/static/assets/fonts/Inter.var.woff2 +0 -0
  163. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.eot +0 -0
  164. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.svg +3570 -0
  165. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.ttf +0 -0
  166. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff +0 -0
  167. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff2 +0 -0
  168. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.eot +0 -0
  169. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.svg +801 -0
  170. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.ttf +0 -0
  171. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff +0 -0
  172. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff2 +0 -0
  173. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.eot +0 -0
  174. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.svg +5028 -0
  175. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.ttf +0 -0
  176. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff +0 -0
  177. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff2 +0 -0
  178. customeranalytics/web/app/base/static/assets/img/avatars/avatar-1.png +0 -0
  179. customeranalytics/web/app/base/static/assets/img/avatars/avatar-2.png +0 -0
  180. customeranalytics/web/app/base/static/assets/img/avatars/avatar-3.png +0 -0
  181. customeranalytics/web/app/base/static/assets/img/avatars/avatar-4.png +0 -0
  182. customeranalytics/web/app/base/static/assets/img/avatars/avatar-5.png +0 -0
  183. customeranalytics/web/app/base/static/assets/img/avatars/info.jpeg +0 -0
  184. customeranalytics/web/app/base/static/assets/img/icons/customanality.png +0 -0
  185. customeranalytics/web/app/base/static/assets/img/icons/icon-48x48.png +0 -0
  186. customeranalytics/web/app/base/static/assets/js/app.js +2 -0
  187. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE +566 -0
  188. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE.txt +556 -0
  189. customeranalytics/web/app/base/static/assets/js/modules/bootstrap.js +15 -0
  190. customeranalytics/web/app/base/static/assets/js/modules/chartjs.js +4 -0
  191. customeranalytics/web/app/base/static/assets/js/modules/feather.js +8 -0
  192. customeranalytics/web/app/base/static/assets/js/modules/flatpickr.js +4 -0
  193. customeranalytics/web/app/base/static/assets/js/modules/moment.js +4 -0
  194. customeranalytics/web/app/base/static/assets/js/modules/sidebar.js +23 -0
  195. customeranalytics/web/app/base/static/assets/js/modules/theme.js +16 -0
  196. customeranalytics/web/app/base/templates/accounts/login.html +81 -0
  197. customeranalytics/web/app/base/templates/accounts/register.html +80 -0
  198. customeranalytics/web/app/base/templates/includes/footer.html +28 -0
  199. customeranalytics/web/app/base/templates/includes/navigation.html +51 -0
  200. customeranalytics/web/app/base/templates/includes/scripts.html +3 -0
  201. customeranalytics/web/app/base/templates/includes/sidebar.html +146 -0
  202. customeranalytics/web/app/base/templates/layouts/base-fullscreen.html +36 -0
  203. customeranalytics/web/app/base/templates/layouts/base.html +84 -0
  204. customeranalytics/web/app/base/util.py +30 -0
  205. customeranalytics/web/app/home/__init__.py +9 -0
  206. customeranalytics/web/app/home/forms.py +1039 -0
  207. customeranalytics/web/app/home/models.py +438 -0
  208. customeranalytics/web/app/home/profiles.py +310 -0
  209. customeranalytics/web/app/home/routes.py +386 -0
  210. customeranalytics/web/app/home/search.py +288 -0
  211. customeranalytics/web/app/home/static/assets/img/avatars/avatar-1.png +0 -0
  212. customeranalytics/web/app/home/static/assets/img/avatars/avatar-2.png +0 -0
  213. customeranalytics/web/app/home/static/assets/img/avatars/avatar-3.png +0 -0
  214. customeranalytics/web/app/home/static/assets/img/avatars/avatar-4.png +0 -0
  215. customeranalytics/web/app/home/static/assets/img/avatars/avatar-5.png +0 -0
  216. customeranalytics/web/app/home/static/assets/img/icons/customanality.png +0 -0
  217. customeranalytics/web/app/home/static/assets/img/icons/icon-48x48.png +0 -0
  218. customeranalytics/web/app/home/templates/abtest-product.html +280 -0
  219. customeranalytics/web/app/home/templates/abtest-promotion.html +362 -0
  220. customeranalytics/web/app/home/templates/abtest-segments.html +298 -0
  221. customeranalytics/web/app/home/templates/add-data-delivery.html +184 -0
  222. customeranalytics/web/app/home/templates/add-data-product.html +177 -0
  223. customeranalytics/web/app/home/templates/add-data-purchase.html +392 -0
  224. customeranalytics/web/app/home/templates/anomaly.html +261 -0
  225. customeranalytics/web/app/home/templates/clv.html +211 -0
  226. customeranalytics/web/app/home/templates/cohorts.html +308 -0
  227. customeranalytics/web/app/home/templates/customer-segmentation.html +308 -0
  228. customeranalytics/web/app/home/templates/data-es.html +152 -0
  229. customeranalytics/web/app/home/templates/data-execute.html +397 -0
  230. customeranalytics/web/app/home/templates/delivery.html +404 -0
  231. customeranalytics/web/app/home/templates/funnel-customer.html +240 -0
  232. customeranalytics/web/app/home/templates/funnel-session.html +236 -0
  233. customeranalytics/web/app/home/templates/index.html +524 -0
  234. customeranalytics/web/app/home/templates/index2.html +515 -0
  235. customeranalytics/web/app/home/templates/page-403.html +46 -0
  236. customeranalytics/web/app/home/templates/page-404.html +45 -0
  237. customeranalytics/web/app/home/templates/page-500.html +45 -0
  238. customeranalytics/web/app/home/templates/pages-blank.html +33 -0
  239. customeranalytics/web/app/home/templates/pages-sign-in.html +67 -0
  240. customeranalytics/web/app/home/templates/pages-sign-up.html +61 -0
  241. customeranalytics/web/app/home/templates/product.html +203 -0
  242. customeranalytics/web/app/home/templates/profile.html +1009 -0
  243. customeranalytics/web/app/home/templates/rfm.html +254 -0
  244. customeranalytics/web/app/home/templates/search.html +167 -0
  245. customeranalytics/web/app/home/templates/settings.html +205 -0
  246. customeranalytics/web/app/home/templates/stats-desc.html +230 -0
  247. customeranalytics/web/app/home/templates/stats-purchase.html +221 -0
  248. customeranalytics/web/config.py +30 -0
  249. customeranalytics/web/db.sqlite3 +0 -0
  250. customeranalytics/web/run.py +30 -0
  251. customeranalytics-0.1.dist-info/METADATA +1102 -0
  252. customeranalytics-0.1.dist-info/RECORD +254 -0
  253. customeranalytics-0.1.dist-info/WHEEL +4 -0
  254. customeranalytics-0.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,3740 @@
1
+ monetary,frequency,segments_numeric
2
+ 45.17,726.0,11.0
3
+ 37.51,2108.0,3.0
4
+ 28.15,505.0,1.0
5
+ 18.642500000000002,400.0,1.0
6
+ 19.905,1815.0,11.0
7
+ 40.64,517.0,2.0
8
+ 38.78,467.0,10.0
9
+ 29.057499999999997,326.0,7.0
10
+ 35.412499999999994,801.0,5.0
11
+ 37.02,600.0,2.0
12
+ 33.915,557.0,2.0
13
+ 29.08,757.0,
14
+ 34.644999999999996,173.0,11.0
15
+ 29.035,647.0,1.0
16
+ 43.2,1585.0,4.0
17
+ 16.427500000000002,2080.0,11.0
18
+ 23.0375,964.0,1.0
19
+ 30.2375,642.0,7.0
20
+ 25.54,954.0,1.0
21
+ 42.2375,1957.0,3.0
22
+ 35.16,1616.0,
23
+ 31.295,901.0,5.0
24
+ 26.987499999999997,1964.0,3.0
25
+ 38.572500000000005,1694.0,
26
+ 44.5225,1631.0,3.0
27
+ 20.085,11.0,1.0
28
+ 25.675,1052.0,1.0
29
+ 30.854999999999997,1303.0,3.0
30
+ 30.4375,1027.0,1.0
31
+ 46.355000000000004,1075.0,11.0
32
+ 31.028333333333336,627.0,1.0
33
+ 26.339999999999996,1004.0,2.0
34
+ 41.9875,996.0,11.0
35
+ 24.375,555.0,1.0
36
+ 46.2625,91.0,11.0
37
+ 27.96,1394.0,11.0
38
+ 28.665,39.0,10.0
39
+ 14.807500000000001,624.0,10.0
40
+ 32.0325,275.0,1.0
41
+ 50.275000000000006,1178.0,11.0
42
+ 16.975,246.0,7.0
43
+ 25.07,1636.0,11.0
44
+ 36.739999999999995,552.0,2.0
45
+ 22.674999999999997,793.0,1.0
46
+ 40.815,1001.0,2.0
47
+ 42.045,601.0,10.0
48
+ 32.35,1544.0,5.0
49
+ 25.682499999999997,375.0,1.0
50
+ 38.667500000000004,1850.0,3.0
51
+ 30.150000000000002,466.0,10.0
52
+ 25.1175,275.0,1.0
53
+ 30.975,722.0,5.0
54
+ 31.0875,1576.0,3.0
55
+ 38.605000000000004,527.0,2.0
56
+ 35.1125,1534.0,3.0
57
+ 55.917500000000004,985.0,11.0
58
+ 39.595,374.0,10.0
59
+ 23.765,45.0,1.0
60
+ 28.1625,1321.0,11.0
61
+ 19.674999999999997,60.0,1.0
62
+ 36.4225,1039.0,2.0
63
+ 33.7025,573.0,11.0
64
+ 13.2475,436.0,1.0
65
+ 32.58,797.0,1.0
66
+ 17.065,151.0,0.0
67
+ 22.59,827.0,1.0
68
+ 33.94,1055.0,2.0
69
+ 26.14,361.0,1.0
70
+ 28.4725,393.0,
71
+ 21.2675,2211.0,3.0
72
+ 20.22,318.0,1.0
73
+ 33.2525,744.0,
74
+ 21.93,558.0,1.0
75
+ 29.0625,396.0,7.0
76
+ 30.425,1520.0,5.0
77
+ 25.1525,1709.0,11.0
78
+ 37.5325,1889.0,3.0
79
+ 27.325000000000003,271.0,1.0
80
+ 24.585,417.0,1.0
81
+ 40.1725,21.0,10.0
82
+ 28.474999999999998,749.0,1.0
83
+ 27.775,47.0,1.0
84
+ 34.2675,1158.0,2.0
85
+ 35.015,681.0,2.0
86
+ 16.735,974.0,1.0
87
+ 31.037499999999998,647.0,1.0
88
+ 29.0,910.0,1.0
89
+ 35.89,150.0,10.0
90
+ 13.677499999999998,247.0,1.0
91
+ 20.5475,821.0,1.0
92
+ 27.87,216.0,7.0
93
+ 20.21,444.0,1.0
94
+ 27.7,1095.0,1.0
95
+ 42.3225,742.0,11.0
96
+ 39.2425,192.0,10.0
97
+ 28.095000000000002,1971.0,11.0
98
+ 40.225,1465.0,3.0
99
+ 32.93333333333333,1125.0,1.0
100
+ 17.994999999999997,1988.0,3.0
101
+ 37.8325,287.0,
102
+ 12.287500000000001,267.0,1.0
103
+ 31.2375,736.0,1.0
104
+ 30.6675,333.0,7.0
105
+ 41.8625,460.0,11.0
106
+ 39.317499999999995,1907.0,3.0
107
+ 34.67,1046.0,2.0
108
+ 25.23,1707.0,3.0
109
+ 30.5125,385.0,1.0
110
+ 21.79,315.0,1.0
111
+ 29.705,170.0,1.0
112
+ 21.225,198.0,1.0
113
+ 43.557500000000005,1136.0,11.0
114
+ 35.71,2124.0,
115
+ 27.8475,111.0,1.0
116
+ 34.545,273.0,11.0
117
+ 32.4275,115.0,1.0
118
+ 41.225,817.0,2.0
119
+ 10.6475,143.0,1.0
120
+ 16.955,1119.0,1.0
121
+ 23.85,1276.0,11.0
122
+ 22.525,1033.0,1.0
123
+ 15.875,370.0,1.0
124
+ 29.619999999999997,1606.0,
125
+ 28.259999999999998,1205.0,3.0
126
+ 13.3475,54.0,7.0
127
+ 33.7625,379.0,11.0
128
+ 37.1525,1206.0,
129
+ 23.8275,64.0,1.0
130
+ 51.8675,192.0,10.0
131
+ 45.0275,1703.0,3.0
132
+ 43.66,509.0,11.0
133
+ 24.405,1909.0,11.0
134
+ 19.534999999999997,514.0,1.0
135
+ 29.177500000000002,58.0,1.0
136
+ 34.7175,731.0,2.0
137
+ 26.725,1595.0,11.0
138
+ 33.26,176.0,1.0
139
+ 40.11,1347.0,2.0
140
+ 27.8375,296.0,1.0
141
+ 25.805,1280.0,
142
+ 21.43,962.0,1.0
143
+ 30.299999999999997,194.0,1.0
144
+ 29.18,2567.0,
145
+ 29.575,785.0,1.0
146
+ 35.072500000000005,654.0,2.0
147
+ 39.18,393.0,2.0
148
+ 26.335,29.0,10.0
149
+ 46.620000000000005,1594.0,3.0
150
+ 27.975,1806.0,11.0
151
+ 26.2825,219.0,3.0
152
+ 25.96,1146.0,1.0
153
+ 35.685,1790.0,4.0
154
+ 22.130000000000003,951.0,1.0
155
+ 37.645,1808.0,
156
+ 35.39,742.0,2.0
157
+ 36.807500000000005,413.0,1.0
158
+ 12.6275,983.0,1.0
159
+ 37.7575,2303.0,3.0
160
+ 27.535000000000004,44.0,1.0
161
+ 36.3225,1269.0,3.0
162
+ 11.7525,94.0,1.0
163
+ 26.5775,629.0,2.0
164
+ 24.677500000000002,1631.0,11.0
165
+ 23.424999999999997,75.0,1.0
166
+ 31.115000000000002,552.0,10.0
167
+ 30.64,916.0,1.0
168
+ 28.8825,381.0,
169
+ 40.7075,841.0,2.0
170
+ 29.5325,976.0,1.0
171
+ 28.93,1289.0,11.0
172
+ 28.915,1008.0,1.0
173
+ 38.565,445.0,10.0
174
+ 14.647499999999999,1411.0,11.0
175
+ 23.9775,635.0,10.0
176
+ 28.0875,182.0,10.0
177
+ 44.885000000000005,654.0,11.0
178
+ 27.57,660.0,7.0
179
+ 15.622499999999999,1110.0,1.0
180
+ 25.5425,216.0,10.0
181
+ 29.332500000000003,558.0,2.0
182
+ 16.1625,272.0,0.0
183
+ 35.0225,1240.0,1.0
184
+ 31.1175,51.0,10.0
185
+ 35.962500000000006,289.0,2.0
186
+ 34.699999999999996,417.0,11.0
187
+ 32.504999999999995,2157.0,11.0
188
+ 46.7025,986.0,11.0
189
+ 15.7375,1679.0,11.0
190
+ 37.435,267.0,10.0
191
+ 30.5,780.0,5.0
192
+ 23.549999999999997,723.0,7.0
193
+ 26.005000000000003,92.0,1.0
194
+ 38.69,2137.0,3.0
195
+ 23.3325,695.0,7.0
196
+ 33.125,446.0,10.0
197
+ 29.634999999999998,1371.0,
198
+ 19.325000000000003,1188.0,11.0
199
+ 36.595,502.0,11.0
200
+ 39.942499999999995,114.0,2.0
201
+ 28.815,1138.0,1.0
202
+ 32.24,414.0,1.0
203
+ 20.575,435.0,10.0
204
+ 25.715,753.0,7.0
205
+ 28.3,348.0,1.0
206
+ 28.5225,387.0,10.0
207
+ 51.075,468.0,11.0
208
+ 24.2675,1711.0,
209
+ 35.260000000000005,1553.0,4.0
210
+ 27.5075,568.0,1.0
211
+ 37.0,95.0,2.0
212
+ 17.3575,135.0,
213
+ 30.267500000000002,827.0,1.0
214
+ 28.2175,277.0,10.0
215
+ 43.3225,980.0,11.0
216
+ 25.9375,1162.0,1.0
217
+ 31.5325,839.0,1.0
218
+ 23.57,544.0,
219
+ 34.376666666666665,303.5,10.0
220
+ 31.5925,1823.0,3.0
221
+ 23.535,2301.0,3.0
222
+ 24.625,292.0,1.0
223
+ 40.345,667.0,2.0
224
+ 16.857499999999998,1322.0,11.0
225
+ 15.399999999999999,2494.0,3.0
226
+ 13.4325,588.0,1.0
227
+ 15.7775,17.0,8.0
228
+ 23.4575,1048.0,1.0
229
+ 22.6075,174.0,10.0
230
+ 35.7175,97.0,2.0
231
+ 22.9025,526.0,10.0
232
+ 29.669999999999998,448.0,7.0
233
+ 32.2175,984.0,1.0
234
+ 23.027500000000003,953.0,1.0
235
+ 33.485,1328.0,5.0
236
+ 17.895,69.0,0.0
237
+ 37.0975,270.0,2.0
238
+ 31.752499999999998,464.0,1.0
239
+ 40.18,653.0,2.0
240
+ 22.46,630.0,
241
+ 26.845,1080.0,7.0
242
+ 35.7075,1785.0,
243
+ 37.0325,22.0,7.0
244
+ 18.12,43.0,8.0
245
+ 47.805,1668.0,3.0
246
+ 38.43,519.0,2.0
247
+ 31.93,995.0,5.0
248
+ 26.207500000000003,1032.0,
249
+ 34.0925,1205.0,3.0
250
+ 26.720000000000002,1789.0,11.0
251
+ 23.1625,445.0,10.0
252
+ 28.737499999999997,1809.0,3.0
253
+ 25.945,193.0,1.0
254
+ 22.9975,383.0,10.0
255
+ 8.4925,787.0,7.0
256
+ 28.442500000000003,2089.0,3.0
257
+ 32.057500000000005,1131.0,2.0
258
+ 24.65,1536.0,3.0
259
+ 35.3175,94.0,10.0
260
+ 23.134999999999998,1387.0,11.0
261
+ 41.3125,457.0,11.0
262
+ 33.955,78.0,2.0
263
+ 40.425,142.0,2.0
264
+ 28.384999999999998,2282.0,3.0
265
+ 40.1525,986.0,2.0
266
+ 28.294999999999998,397.0,10.0
267
+ 28.8175,760.0,5.0
268
+ 30.9825,104.0,10.0
269
+ 24.7175,862.0,7.0
270
+ 14.875,852.0,7.0
271
+ 31.052500000000002,908.0,1.0
272
+ 22.43,2042.0,7.0
273
+ 24.1725,510.0,1.0
274
+ 35.075,49.0,2.0
275
+ 28.94,1343.0,3.0
276
+ 43.8775,1851.0,3.0
277
+ 14.307500000000001,1362.0,
278
+ 28.54,261.0,7.0
279
+ 37.5125,359.0,2.0
280
+ 28.555,1232.0,5.0
281
+ 29.13,801.0,
282
+ 16.0975,269.0,7.0
283
+ 21.41,2334.0,3.0
284
+ 18.1075,264.0,8.0
285
+ 18.9725,1210.0,
286
+ 32.49,1233.0,11.0
287
+ 22.5975,2319.0,3.0
288
+ 50.462500000000006,129.0,11.0
289
+ 22.802500000000002,653.0,1.0
290
+ 36.144999999999996,897.0,5.0
291
+ 37.565,1680.0,4.0
292
+ 31.122500000000002,114.0,1.0
293
+ 17.68,762.0,7.0
294
+ 19.465,1700.0,3.0
295
+ 30.333333333333332,892.0,1.0
296
+ 36.9375,983.0,2.0
297
+ 39.1875,1078.0,2.0
298
+ 25.0675,1817.0,11.0
299
+ 23.615000000000002,1387.0,11.0
300
+ 38.47,622.0,11.0
301
+ 24.785,2110.0,3.0
302
+ 23.125,202.0,1.0
303
+ 21.165,2441.0,3.0
304
+ 33.3925,704.0,1.0
305
+ 20.1375,341.0,7.0
306
+ 43.92,527.0,11.0
307
+ 27.707500000000003,864.0,1.0
308
+ 39.4375,750.0,2.0
309
+ 17.919999999999998,170.0,0.0
310
+ 14.91,2180.0,3.0
311
+ 14.850000000000001,844.0,1.0
312
+ 8.455,1804.0,11.0
313
+ 29.2375,1120.0,7.0
314
+ 22.189999999999998,839.0,1.0
315
+ 23.4975,457.0,10.0
316
+ 41.650000000000006,1404.0,4.0
317
+ 29.6075,314.0,10.0
318
+ 53.2525,1712.0,4.0
319
+ 36.35,652.0,11.0
320
+ 34.537499999999994,189.0,11.0
321
+ 30.9075,68.0,1.0
322
+ 43.2025,1650.0,
323
+ 34.69,596.6666666666666,2.0
324
+ 30.740000000000002,1630.0,5.0
325
+ 27.979999999999997,1374.0,5.0
326
+ 20.384999999999998,194.0,1.0
327
+ 37.1125,104.0,10.0
328
+ 22.2225,2058.0,3.0
329
+ 42.3425,218.0,10.0
330
+ 22.197499999999998,510.0,
331
+ 25.255,229.0,7.0
332
+ 35.4725,727.0,2.0
333
+ 21.655,1905.0,11.0
334
+ 31.35,230.0,7.0
335
+ 47.849999999999994,2337.0,3.0
336
+ 40.4525,227.0,10.0
337
+ 26.6575,1175.0,1.0
338
+ 30.3875,1147.0,1.0
339
+ 15.6325,263.0,
340
+ 24.5925,5.0,10.0
341
+ 45.019999999999996,432.0,10.0
342
+ 38.0025,146.0,2.0
343
+ 42.37,1846.0,4.0
344
+ 21.25,1906.0,11.0
345
+ 27.002499999999998,441.0,7.0
346
+ 39.125,315.0,2.0
347
+ 30.0125,1436.0,11.0
348
+ 41.935,1880.0,3.0
349
+ 38.72,518.0,2.0
350
+ 22.84,1712.0,3.0
351
+ 36.364999999999995,755.0,5.0
352
+ 28.5225,171.0,10.0
353
+ 38.6025,1436.0,4.0
354
+ 38.629999999999995,1079.0,
355
+ 31.369999999999997,1010.0,1.0
356
+ 37.455,158.0,2.0
357
+ 43.8525,382.0,11.0
358
+ 21.6725,2215.0,3.0
359
+ 41.04,300.0,2.0
360
+ 30.8675,2144.0,3.0
361
+ 18.135,1001.0,1.0
362
+ 26.8575,1109.0,7.0
363
+ 34.57,546.0,2.0
364
+ 16.6075,161.0,1.0
365
+ 29.36,1647.0,5.0
366
+ 48.6975,128.0,11.0
367
+ 27.372500000000002,959.0,7.0
368
+ 36.745000000000005,2045.0,3.0
369
+ 42.91,807.0,11.0
370
+ 31.042499999999997,680.0,1.0
371
+ 20.575,547.0,1.0
372
+ 39.2975,104.0,2.0
373
+ 28.4975,2013.0,3.0
374
+ 40.3825,698.0,11.0
375
+ 25.544999999999998,685.0,7.0
376
+ 40.4775,468.0,2.0
377
+ 33.6575,605.0,11.0
378
+ 33.3225,705.0,1.0
379
+ 33.7725,99.0,2.0
380
+ 32.2525,1982.0,3.0
381
+ 33.285,1646.0,3.0
382
+ 24.4625,1729.0,11.0
383
+ 16.68,1030.0,7.0
384
+ 14.575,656.0,1.0
385
+ 24.475,583.0,7.0
386
+ 27.4375,997.0,1.0
387
+ 19.9925,1516.0,3.0
388
+ 24.245,547.0,1.0
389
+ 36.8725,1367.0,4.0
390
+ 23.15,1507.0,11.0
391
+ 31.965000000000003,1556.0,3.0
392
+ 25.2675,191.0,10.0
393
+ 30.455,1785.0,11.0
394
+ 40.5975,1486.0,4.0
395
+ 22.5275,1103.0,7.0
396
+ 20.2225,1505.0,3.0
397
+ 29.9075,633.0,1.0
398
+ 23.447499999999998,274.0,1.0
399
+ 41.192499999999995,1534.0,3.0
400
+ 39.8825,1430.0,3.0
401
+ 40.275,180.0,2.0
402
+ 24.865000000000002,23.0,10.0
403
+ 32.335,1244.0,11.0
404
+ 36.5275,227.0,2.0
405
+ 22.8725,27.0,10.0
406
+ 14.997499999999999,530.0,7.0
407
+ 32.9875,1015.0,1.0
408
+ 36.4875,989.0,2.0
409
+ 30.182499999999997,1885.0,11.0
410
+ 19.57,867.0,1.0
411
+ 36.58,2111.0,4.0
412
+ 28.409999999999997,379.0,1.0
413
+ 31.025000000000002,1034.0,5.0
414
+ 28.6475,1003.0,1.0
415
+ 15.987499999999999,478.0,7.0
416
+ 41.2875,1071.0,2.0
417
+ 28.165,25.0,7.0
418
+ 35.150000000000006,378.0,11.0
419
+ 17.46,474.0,1.0
420
+ 26.294999999999998,1144.0,1.0
421
+ 25.425,66.0,1.0
422
+ 27.1675,1942.0,3.0
423
+ 31.96,9.0,10.0
424
+ 23.0125,13.0,10.0
425
+ 38.745000000000005,480.0,2.0
426
+ 29.729999999999997,19.0,1.0
427
+ 38.27166666666667,1096.5,2.0
428
+ 19.619999999999997,2053.0,3.0
429
+ 37.894999999999996,441.0,2.0
430
+ 30.335,108.0,7.0
431
+ 43.0275,827.0,11.0
432
+ 23.9125,1072.0,1.0
433
+ 39.3775,137.0,10.0
434
+ 28.82166666666667,514.5,7.0
435
+ 35.442499999999995,1022.0,1.0
436
+ 23.245,2041.0,11.0
437
+ 19.197499999999998,1772.0,3.0
438
+ 42.4075,1401.0,2.0
439
+ 21.770000000000003,212.0,1.0
440
+ 37.224999999999994,121.0,10.0
441
+ 21.384999999999998,1255.0,3.0
442
+ 27.245,934.0,7.0
443
+ 27.6175,2097.0,11.0
444
+ 20.112499999999997,870.0,7.0
445
+ 31.49,1113.0,5.0
446
+ 17.4225,867.0,1.0
447
+ 34.0375,434.0,2.0
448
+ 32.085,1586.0,5.0
449
+ 34.28,1187.0,4.0
450
+ 35.3525,1566.0,4.0
451
+ 28.2525,2042.0,11.0
452
+ 29.720000000000002,470.0,1.0
453
+ 33.8,1832.0,1.0
454
+ 29.177500000000002,5.0,1.0
455
+ 29.4925,43.0,1.0
456
+ 25.1075,2682.0,
457
+ 20.622500000000002,262.0,1.0
458
+ 27.44,636.0,7.0
459
+ 29.5475,477.0,1.0
460
+ 24.4575,46.0,1.0
461
+ 23.1875,231.0,1.0
462
+ 36.5975,733.0,5.0
463
+ 37.305,186.0,10.0
464
+ 31.335,527.0,10.0
465
+ 29.095,642.0,1.0
466
+ 23.3,1446.0,11.0
467
+ 40.2825,200.0,11.0
468
+ 35.2125,657.0,10.0
469
+ 46.075,1895.0,4.0
470
+ 25.32,1495.0,11.0
471
+ 25.9725,368.0,7.0
472
+ 28.509999999999998,815.0,1.0
473
+ 20.491666666666664,1076.5,1.0
474
+ 16.72,2396.0,3.0
475
+ 29.045,890.0,1.0
476
+ 26.44,254.0,1.0
477
+ 27.6,1200.0,3.0
478
+ 33.8725,987.0,5.0
479
+ 18.67,1424.0,11.0
480
+ 24.835,2562.0,
481
+ 18.48,255.0,8.0
482
+ 33.785,1908.0,
483
+ 28.3975,641.0,1.0
484
+ 42.855000000000004,669.0,11.0
485
+ 41.1525,753.0,10.0
486
+ 34.397499999999994,820.0,11.0
487
+ 30.3925,1283.0,3.0
488
+ 21.565,70.0,10.0
489
+ 28.705,210.0,7.0
490
+ 14.575,131.0,7.0
491
+ 12.89,278.0,1.0
492
+ 18.5825,1587.0,3.0
493
+ 31.314999999999998,472.0,7.0
494
+ 46.53,2108.0,4.0
495
+ 32.385,1338.0,11.0
496
+ 25.605,731.0,1.0
497
+ 21.615000000000002,1146.0,1.0
498
+ 28.7725,1510.0,11.0
499
+ 20.065,792.0,1.0
500
+ 51.5225,1176.0,11.0
501
+ 46.695,180.0,10.0
502
+ 20.84,390.0,1.0
503
+ 26.5275,394.0,1.0
504
+ 21.4725,1120.0,1.0
505
+ 26.207499999999996,999.0,1.0
506
+ 29.939999999999998,1381.0,5.0
507
+ 39.7175,827.0,2.0
508
+ 15.982499999999998,1914.0,3.0
509
+ 27.7175,872.0,1.0
510
+ 30.6225,254.0,10.0
511
+ 23.92,1580.0,3.0
512
+ 40.805,1798.0,4.0
513
+ 20.0625,563.0,1.0
514
+ 39.067499999999995,1553.0,4.0
515
+ 20.262500000000003,1752.0,11.0
516
+ 29.235,937.0,1.0
517
+ 27.285000000000004,737.0,1.0
518
+ 25.055,740.0,1.0
519
+ 29.085,409.0,
520
+ 22.8,1658.0,1.0
521
+ 31.93,200.0,10.0
522
+ 19.502499999999998,764.0,1.0
523
+ 26.525,1019.0,1.0
524
+ 27.6125,1289.0,3.0
525
+ 40.6025,123.0,2.0
526
+ 48.7975,1579.0,4.0
527
+ 40.6475,1317.0,3.0
528
+ 18.6475,470.0,1.0
529
+ 29.9575,2445.0,1.0
530
+ 27.455000000000002,1697.0,3.0
531
+ 25.285,593.0,1.0
532
+ 30.7125,1090.0,1.0
533
+ 36.29,147.0,10.0
534
+ 39.0,567.0,11.0
535
+ 30.25,489.0,7.0
536
+ 34.7325,913.0,2.0
537
+ 55.805,480.0,11.0
538
+ 19.545,931.0,1.0
539
+ 24.1175,859.0,7.0
540
+ 25.7525,164.0,1.0
541
+ 24.87,1441.0,
542
+ 35.7325,770.0,2.0
543
+ 34.2025,1319.0,4.0
544
+ 20.5,597.0,1.0
545
+ 30.752499999999998,1834.0,11.0
546
+ 33.1425,406.0,7.0
547
+ 32.2375,169.0,7.0
548
+ 28.987499999999997,448.0,7.0
549
+ 30.1575,884.0,1.0
550
+ 16.817500000000003,519.0,1.0
551
+ 23.8925,260.0,10.0
552
+ 39.05,906.0,2.0
553
+ 33.29,1101.0,5.0
554
+ 20.127499999999998,134.0,1.0
555
+ 32.745,1085.0,1.0
556
+ 32.199999999999996,147.0,10.0
557
+ 32.005,157.0,10.0
558
+ 18.3075,1089.0,1.0
559
+ 26.7325,788.0,1.0
560
+ 29.9025,1512.0,5.0
561
+ 21.945,1379.0,3.0
562
+ 29.195,689.0,10.0
563
+ 37.332499999999996,1107.0,2.0
564
+ 27.8675,387.0,7.0
565
+ 39.72,1838.0,3.0
566
+ 41.9025,253.0,11.0
567
+ 26.5,598.0,7.0
568
+ 41.792500000000004,1457.0,3.0
569
+ 16.6825,1940.0,11.0
570
+ 23.214999999999996,1900.0,3.0
571
+ 33.4775,198.0,7.0
572
+ 21.085,1881.0,11.0
573
+ 25.7575,1302.0,11.0
574
+ 28.785000000000004,383.0,1.0
575
+ 28.095,41.0,10.0
576
+ 19.1375,1160.0,1.0
577
+ 38.485,776.0,5.0
578
+ 33.6025,210.0,1.0
579
+ 22.314999999999998,501.0,10.0
580
+ 35.3425,1187.0,4.0
581
+ 29.415,570.0,1.0
582
+ 23.4825,1035.0,1.0
583
+ 24.735,170.0,
584
+ 18.235,1943.0,3.0
585
+ 28.0475,939.0,5.0
586
+ 35.864999999999995,1245.0,5.0
587
+ 33.2475,32.0,10.0
588
+ 26.445,2307.0,3.0
589
+ 23.375,668.0,1.0
590
+ 16.16,743.0,1.0
591
+ 26.4125,2363.0,
592
+ 31.6175,725.0,1.0
593
+ 26.3575,988.0,1.0
594
+ 21.887500000000003,155.0,1.0
595
+ 24.6675,88.0,10.0
596
+ 29.9925,983.0,5.0
597
+ 25.442500000000003,209.0,1.0
598
+ 39.45,413.0,11.0
599
+ 27.16,181.0,10.0
600
+ 27.3075,344.0,1.0
601
+ 41.0275,552.0,11.0
602
+ 28.1325,2076.0,
603
+ 28.565,1251.0,3.0
604
+ 21.7825,1574.0,3.0
605
+ 16.9,1851.0,11.0
606
+ 32.3075,2128.0,3.0
607
+ 30.415,78.0,1.0
608
+ 29.1025,184.0,10.0
609
+ 47.665,1559.0,
610
+ 21.3825,85.0,7.0
611
+ 28.6475,1072.0,1.0
612
+ 39.942499999999995,525.0,2.0
613
+ 17.18,456.0,1.0
614
+ 34.8925,1079.0,2.0
615
+ 24.82,245.0,1.0
616
+ 14.0325,209.0,0.0
617
+ 29.5775,1474.0,3.0
618
+ 16.974999999999998,733.0,1.0
619
+ 26.869999999999997,948.0,1.0
620
+ 23.3075,696.0,1.0
621
+ 23.55,658.0,10.0
622
+ 30.35,758.0,1.0
623
+ 29.2125,361.0,10.0
624
+ 25.4525,11.0,10.0
625
+ 37.584999999999994,96.0,2.0
626
+ 30.72,2342.0,
627
+ 34.2975,524.0,11.0
628
+ 33.855000000000004,129.0,2.0
629
+ 26.365,301.0,
630
+ 19.31,1018.0,7.0
631
+ 37.045,988.0,2.0
632
+ 44.3675,316.0,11.0
633
+ 33.97,470.0,10.0
634
+ 32.644999999999996,187.0,1.0
635
+ 36.114999999999995,2507.0,3.0
636
+ 23.130000000000003,706.0,1.0
637
+ 29.44,161.0,1.0
638
+ 28.939999999999998,848.0,1.0
639
+ 43.385000000000005,610.0,11.0
640
+ 30.2925,394.0,1.0
641
+ 35.96,954.0,2.0
642
+ 29.4075,1410.0,
643
+ 24.1325,313.0,7.0
644
+ 28.5275,636.0,10.0
645
+ 8.1725,382.0,10.0
646
+ 26.729999999999997,984.0,1.0
647
+ 29.34,1270.0,3.0
648
+ 32.5275,741.0,1.0
649
+ 29.622500000000002,646.0,7.0
650
+ 47.7825,743.0,
651
+ 26.89,116.0,10.0
652
+ 17.5825,598.0,10.0
653
+ 27.637500000000003,1083.0,
654
+ 40.825,598.0,2.0
655
+ 29.619999999999997,526.0,10.0
656
+ 18.63,132.0,7.0
657
+ 25.6525,196.0,7.0
658
+ 24.7725,815.0,1.0
659
+ 49.1175,1628.0,3.0
660
+ 22.287499999999998,1390.0,11.0
661
+ 24.395,1181.0,1.0
662
+ 43.775000000000006,723.0,11.0
663
+ 26.23,1745.0,3.0
664
+ 16.975,1653.0,3.0
665
+ 30.552500000000002,627.0,1.0
666
+ 29.03,682.0,1.0
667
+ 19.35,1108.0,1.0
668
+ 37.875,2532.0,3.0
669
+ 43.0475,946.0,11.0
670
+ 37.7975,335.0,2.0
671
+ 26.832500000000003,427.0,1.0
672
+ 14.821666666666665,940.0,1.0
673
+ 47.05,1301.0,4.0
674
+ 13.16,136.0,8.0
675
+ 47.5025,575.0,10.0
676
+ 13.302499999999998,65.0,1.0
677
+ 18.7825,97.0,7.0
678
+ 16.29,885.0,7.0
679
+ 10.48,190.0,1.0
680
+ 28.09,254.0,10.0
681
+ 25.825,540.0,1.0
682
+ 24.3875,1317.0,
683
+ 36.8225,116.0,11.0
684
+ 39.75,987.0,5.0
685
+ 35.065,348.0,2.0
686
+ 13.5125,887.0,7.0
687
+ 29.2425,1678.0,3.0
688
+ 39.677499999999995,333.0,10.0
689
+ 29.080000000000002,454.0,1.0
690
+ 37.475,1206.0,5.0
691
+ 23.46,1343.0,11.0
692
+ 45.615,2133.0,4.0
693
+ 32.815,1091.0,
694
+ 26.98,846.0,
695
+ 26.775,2281.0,1.0
696
+ 28.247500000000002,1171.0,1.0
697
+ 26.96,32.0,10.0
698
+ 34.2575,2262.0,
699
+ 37.89,1523.0,3.0
700
+ 25.4225,35.0,1.0
701
+ 25.055,414.0,7.0
702
+ 25.6075,387.0,1.0
703
+ 22.4,342.0,10.0
704
+ 29.6875,2194.0,2.0
705
+ 24.275,1016.0,7.0
706
+ 25.82,698.0,1.0
707
+ 47.4725,261.0,11.0
708
+ 45.035,1037.0,11.0
709
+ 35.2075,413.0,2.0
710
+ 27.822499999999998,1276.0,11.0
711
+ 31.7725,212.0,7.0
712
+ 49.1,1224.0,4.0
713
+ 36.2025,1682.0,4.0
714
+ 30.895,1139.0,1.0
715
+ 20.1675,1244.0,3.0
716
+ 31.862499999999997,2138.0,3.0
717
+ 22.7575,508.0,1.0
718
+ 16.735,1819.0,3.0
719
+ 30.342499999999998,97.0,1.0
720
+ 40.957499999999996,897.0,2.0
721
+ 34.775,447.0,10.0
722
+ 27.18,816.0,7.0
723
+ 41.655,1868.0,3.0
724
+ 22.817500000000003,379.0,7.0
725
+ 46.697500000000005,238.0,11.0
726
+ 38.004999999999995,1726.0,4.0
727
+ 27.1075,581.0,1.0
728
+ 35.325,1630.0,3.0
729
+ 25.67,1310.0,11.0
730
+ 21.155,665.0,1.0
731
+ 26.052500000000002,10.0,1.0
732
+ 28.002499999999998,807.0,5.0
733
+ 37.0325,1324.0,
734
+ 25.065,1041.0,1.0
735
+ 37.815,607.0,2.0
736
+ 21.62,1070.0,1.0
737
+ 15.06,1756.0,11.0
738
+ 25.095,1320.0,11.0
739
+ 13.91,598.0,1.0
740
+ 25.9975,57.0,7.0
741
+ 31.405,511.0,1.0
742
+ 21.61,1096.0,1.0
743
+ 28.375,1191.0,11.0
744
+ 29.16,1033.0,5.0
745
+ 28.04,37.0,1.0
746
+ 12.685,2053.0,11.0
747
+ 24.4675,452.0,1.0
748
+ 41.7725,866.0,11.0
749
+ 25.2175,433.0,1.0
750
+ 32.315,721.0,1.0
751
+ 19.942500000000003,147.0,7.0
752
+ 25.23,1961.0,11.0
753
+ 29.11,525.0,7.0
754
+ 39.5425,26.0,2.0
755
+ 17.375,1419.0,11.0
756
+ 28.29,199.0,7.0
757
+ 25.24,644.0,2.0
758
+ 35.2325,1889.0,4.0
759
+ 31.3125,2037.0,
760
+ 14.4875,2367.0,3.0
761
+ 30.2725,748.0,1.0
762
+ 28.8725,254.0,7.0
763
+ 35.72,861.0,5.0
764
+ 19.875,223.0,8.0
765
+ 25.957500000000003,1124.0,1.0
766
+ 30.5625,1265.0,3.0
767
+ 35.56,904.0,5.0
768
+ 37.2775,676.0,2.0
769
+ 27.9425,2012.0,3.0
770
+ 26.735,245.0,
771
+ 37.835,1847.0,3.0
772
+ 34.1,895.0,1.0
773
+ 48.705,1586.0,4.0
774
+ 41.0475,210.0,2.0
775
+ 21.7175,663.0,7.0
776
+ 16.2125,192.0,3.0
777
+ 20.197499999999998,1007.0,7.0
778
+ 27.795,1627.0,5.0
779
+ 36.067499999999995,165.0,11.0
780
+ 38.6225,967.0,2.0
781
+ 14.465,815.0,7.0
782
+ 19.5025,363.0,10.0
783
+ 29.307499999999997,1917.0,3.0
784
+ 36.56999999999999,548.0,2.0
785
+ 14.5475,644.0,1.0
786
+ 26.950000000000003,114.0,1.0
787
+ 26.0225,146.0,10.0
788
+ 22.5075,457.0,7.0
789
+ 27.53,276.0,10.0
790
+ 29.445,1129.0,1.0
791
+ 30.387500000000003,16.0,1.0
792
+ 24.395,521.0,10.0
793
+ 33.9975,1630.0,3.0
794
+ 33.572500000000005,1244.0,11.0
795
+ 16.945,456.0,7.0
796
+ 14.59,335.0,1.0
797
+ 24.64,1009.0,7.0
798
+ 20.125,396.0,1.0
799
+ 42.245,1070.0,11.0
800
+ 24.052500000000002,737.0,1.0
801
+ 27.3475,1333.0,11.0
802
+ 53.197500000000005,175.0,10.0
803
+ 28.3675,473.0,1.0
804
+ 31.6175,1366.0,
805
+ 21.772499999999997,1346.0,11.0
806
+ 42.754999999999995,972.0,11.0
807
+ 46.004999999999995,1738.0,4.0
808
+ 22.244999999999997,17.0,
809
+ 28.97166666666666,62.31578947368421,1.0
810
+ 21.590000000000003,9.5,1.0
811
+ 17.947499999999998,36.0,0.0
812
+ 30.6375,44.0,1.0
813
+ 39.41,56.0,2.0
814
+ 24.585,7.0,
815
+ 30.80426829268293,60.85,1.0
816
+ 28.738139534883725,57.404761904761905,1.0
817
+ 31.673658536585364,59.525,1.0
818
+ 23.005,13.0,1.0
819
+ 32.202299999999994,47.87755102040816,1.0
820
+ 28.887500000000003,33.0,1.0
821
+ 41.57,17.0,
822
+ 30.652499999999996,7.0,1.0
823
+ 32.150735294117645,72.78787878787878,1.0
824
+ 29.6725,9.0,
825
+ 29.81833333333334,17.5,1.0
826
+ 29.98097826086957,51.644444444444446,1.0
827
+ 30.10166666666667,16.0,1.0
828
+ 28.9975,18.666666666666668,1.0
829
+ 31.25,18.0,1.0
830
+ 22.8125,34.0,1.0
831
+ 31.613297872340436,52.69565217391305,1.0
832
+ 32.895,21.0,1.0
833
+ 25.475,14.0,1.0
834
+ 30.70125,14.0,1.0
835
+ 35.980000000000004,12.0,2.0
836
+ 29.04,11.0,1.0
837
+ 18.8525,43.0,0.0
838
+ 27.644166666666667,58.1219512195122,1.0
839
+ 32.48886363636363,56.27906976744186,1.0
840
+ 25.284999999999997,11.0,
841
+ 35.37636363636364,53.93023255813954,2.0
842
+ 27.233235294117645,63.27272727272727,1.0
843
+ 30.303974358974354,60.18421052631579,1.0
844
+ 25.575,20.5,1.0
845
+ 31.447499999999998,27.0,1.0
846
+ 29.924222222222227,52.13636363636363,1.0
847
+ 27.164069767441863,57.95238095238095,1.0
848
+ 40.0625,10.0,2.0
849
+ 28.14,15.0,
850
+ 32.11872549019607,47.92,1.0
851
+ 28.334183673469386,50.333333333333336,1.0
852
+ 31.485113636363643,53.06976744186046,1.0
853
+ 29.21484848484848,67.375,1.0
854
+ 38.22,17.0,2.0
855
+ 24.555428571428575,69.05882352941177,1.0
856
+ 28.656744186046506,56.80952380952381,1.0
857
+ 29.50637499999999,59.53846153846154,1.0
858
+ 30.5029347826087,53.266666666666666,1.0
859
+ 31.837099999999992,47.816326530612244,1.0
860
+ 30.946020408163257,48.645833333333336,1.0
861
+ 40.625,1.0,2.0
862
+ 26.472209302325584,53.95238095238095,1.0
863
+ 12.877500000000001,31.0,1.0
864
+ 29.5438888888889,63.285714285714285,1.0
865
+ 29.119999999999997,71.0,1.0
866
+ 28.86562500000001,49.91489361702128,1.0
867
+ 28.741860465116286,58.166666666666664,1.0
868
+ 28.661666666666665,16.5,1.0
869
+ 28.842926829268297,55.15,1.0
870
+ 29.648333333333337,29.5,1.0
871
+ 31.10333333333333,53.93181818181818,1.0
872
+ 34.7775,42.0,2.0
873
+ 28.862499999999997,8.0,1.0
874
+ 38.9875,5.0,
875
+ 26.814999999999998,36.0,1.0
876
+ 37.165,22.5,2.0
877
+ 26.979999999999997,9.0,
878
+ 28.3,15.0,1.0
879
+ 29.112448979591846,50.4375,1.0
880
+ 40.81166666666667,10.5,2.0
881
+ 29.6425,12.0,1.0
882
+ 27.682735849056602,47.0,1.0
883
+ 16.64,11.0,0.0
884
+ 37.5125,63.0,2.0
885
+ 29.37946808510639,50.82608695652174,1.0
886
+ 36.180888888888894,50.97727272727273,2.0
887
+ 32.24675675675676,67.5,1.0
888
+ 23.384999999999998,54.0,1.0
889
+ 21.4375,30.0,1.0
890
+ 30.14833333333333,8.0,1.0
891
+ 48.2475,21.0,
892
+ 18.189999999999998,0.0,0.0
893
+ 29.14532608695652,52.13333333333333,1.0
894
+ 29.653703703703698,45.886792452830186,1.0
895
+ 28.8575,12.0,1.0
896
+ 18.0825,9.0,0.0
897
+ 27.55468085106383,52.56521739130435,1.0
898
+ 25.788220338983056,41.10344827586207,1.0
899
+ 42.07666666666666,24.5,11.0
900
+ 21.342499999999998,34.0,
901
+ 30.029204545454537,54.23255813953488,1.0
902
+ 39.495000000000005,33.0,2.0
903
+ 27.280595238095234,56.41463414634146,1.0
904
+ 29.76848484848485,71.5625,1.0
905
+ 16.243333333333336,9.0,
906
+ 27.903333333333332,9.5,1.0
907
+ 17.572499999999998,21.0,0.0
908
+ 13.040000000000001,10.0,0.0
909
+ 28.363295454545458,49.906976744186046,1.0
910
+ 33.254999999999995,42.0,1.0
911
+ 24.380000000000003,12.0,1.0
912
+ 37.183571428571426,56.292682926829265,2.0
913
+ 20.9825,63.0,1.0
914
+ 31.2301388888889,68.28571428571429,1.0
915
+ 32.64175,62.05128205128205,1.0
916
+ 30.663222222222224,54.56818181818182,1.0
917
+ 28.642291666666654,51.659574468085104,1.0
918
+ 28.73,9.5,1.0
919
+ 25.11,17.0,1.0
920
+ 28.772391304347824,49.93333333333333,1.0
921
+ 27.011938775510206,50.1875,1.0
922
+ 27.39322916666666,51.212765957446805,1.0
923
+ 14.63,23.0,0.0
924
+ 41.870000000000005,21.0,11.0
925
+ 26.31930232558139,57.714285714285715,1.0
926
+ 28.65166666666667,32.0,1.0
927
+ 46.417500000000004,13.0,
928
+ 31.53309090909091,44.24074074074074,1.0
929
+ 22.012500000000003,33.0,1.0
930
+ 37.02375,17.0,2.0
931
+ 22.80666666666667,18.5,1.0
932
+ 35.2025,18.333333333333332,2.0
933
+ 32.745000000000005,17.0,1.0
934
+ 32.545,7.0,1.0
935
+ 32.56181818181819,56.06976744186046,1.0
936
+ 30.974404761904765,59.707317073170735,1.0
937
+ 29.05375,12.666666666666666,1.0
938
+ 31.7953409090909,53.53488372093023,1.0
939
+ 26.94234042553192,49.08695652173913,1.0
940
+ 30.720000000000002,29.0,1.0
941
+ 27.67390243902439,58.8,1.0
942
+ 27.565306122448984,50.0625,1.0
943
+ 17.481666666666666,27.0,0.0
944
+ 33.4425,59.75675675675676,1.0
945
+ 27.540999999999997,59.38461538461539,1.0
946
+ 32.18022727272727,55.30232558139535,1.0
947
+ 29.00309523809524,56.36585365853659,1.0
948
+ 32.65,4.0,1.0
949
+ 40.17166666666666,14.5,2.0
950
+ 35.3425,53.0,2.0
951
+ 20.1,26.0,0.0
952
+ 23.542499999999997,23.0,1.0
953
+ 28.075,37.0,
954
+ 23.423333333333336,32.0,1.0
955
+ 25.803452380952383,56.78048780487805,1.0
956
+ 29.32111111111111,54.63636363636363,1.0
957
+ 38.15125,15.666666666666666,2.0
958
+ 15.5975,28.0,0.0
959
+ 24.197499999999998,5.0,1.0
960
+ 25.305,5.0,1.0
961
+ 48.935,12.0,
962
+ 17.5475,15.0,0.0
963
+ 25.6375,26.0,1.0
964
+ 28.113809523809522,54.0,1.0
965
+ 26.95,14.0,1.0
966
+ 32.77,14.0,
967
+ 31.65236111111111,65.91428571428571,1.0
968
+ 30.119468085106387,52.67391304347826,1.0
969
+ 37.27271739130435,52.888888888888886,2.0
970
+ 36.75,5.5,2.0
971
+ 41.150000000000006,44.0,2.0
972
+ 33.67,16.0,2.0
973
+ 18.18,9.0,0.0
974
+ 30.495348837209306,57.76190476190476,1.0
975
+ 30.72666666666667,19.0,1.0
976
+ 28.93418604651163,56.523809523809526,1.0
977
+ 26.838749999999997,58.69230769230769,1.0
978
+ 21.93,38.0,1.0
979
+ 29.2675,6.0,1.0
980
+ 32.88833333333333,15.5,1.0
981
+ 33.58922222222222,51.09090909090909,1.0
982
+ 29.348804347826093,51.93333333333333,1.0
983
+ 30.544069767441854,55.214285714285715,1.0
984
+ 31.498846153846152,61.31578947368421,1.0
985
+ 21.465000000000003,15.5,1.0
986
+ 28.704000000000004,68.3529411764706,1.0
987
+ 20.043333333333333,27.5,0.0
988
+ 29.933513513513507,64.97222222222223,1.0
989
+ 29.3675,32.0,1.0
990
+ 33.006842105263146,60.24324324324324,1.0
991
+ 16.259999999999998,13.0,0.0
992
+ 24.002499999999998,11.0,
993
+ 11.625,13.0,0.0
994
+ 39.33,11.0,
995
+ 35.57833333333334,15.5,2.0
996
+ 20.6725,14.0,0.0
997
+ 28.350128205128193,60.21052631578947,1.0
998
+ 21.683333333333334,27.5,1.0
999
+ 35.4675,5.0,2.0
1000
+ 35.49,45.0,2.0
1001
+ 32.91435897435897,63.39473684210526,1.0
1002
+ 31.67641304347826,51.86666666666667,1.0
1003
+ 28.92833333333333,27.0,1.0
1004
+ 31.47984375,75.80645161290323,1.0
1005
+ 24.9175,33.0,1.0
1006
+ 29.897941176470596,48.7,1.0
1007
+ 34.435,32.0,2.0
1008
+ 31.43386363636364,55.13953488372093,1.0
1009
+ 20.127499999999998,37.0,0.0
1010
+ 22.705,12.0,1.0
1011
+ 25.255714285714287,55.926829268292686,1.0
1012
+ 35.4525,6.0,
1013
+ 23.295,18.0,1.0
1014
+ 28.564310344827582,81.85714285714286,1.0
1015
+ 30.037499999999998,36.0,1.0
1016
+ 28.73326086956522,51.2,1.0
1017
+ 29.435641025641026,62.921052631578945,1.0
1018
+ 31.356428571428577,57.0,1.0
1019
+ 23.9,46.0,1.0
1020
+ 27.793571428571425,56.829268292682926,1.0
1021
+ 14.015,19.0,0.0
1022
+ 31.0475,31.0,1.0
1023
+ 36.54,46.0,2.0
1024
+ 29.63315217391305,53.06666666666667,1.0
1025
+ 29.339791666666667,51.1063829787234,1.0
1026
+ 29.070555555555565,55.52272727272727,1.0
1027
+ 31.06681818181818,54.25581395348837,1.0
1028
+ 38.655,59.0,2.0
1029
+ 27.424508196721316,39.81666666666667,1.0
1030
+ 23.9975,10.0,
1031
+ 36.91,11.0,2.0
1032
+ 26.57697674418604,57.23809523809524,1.0
1033
+ 30.999999999999996,49.520833333333336,1.0
1034
+ 38.685,23.0,2.0
1035
+ 22.197499999999998,13.0,1.0
1036
+ 16.66166666666667,24.5,0.0
1037
+ 30.873333333333335,28.0,1.0
1038
+ 19.4825,28.0,0.0
1039
+ 29.63378378378378,66.86111111111111,1.0
1040
+ 10.9525,2.0,
1041
+ 27.369318181818183,54.44186046511628,1.0
1042
+ 30.54291666666666,50.319148936170215,1.0
1043
+ 30.875,26.0,1.0
1044
+ 28.814607843137257,46.1,1.0
1045
+ 29.744326923076926,47.529411764705884,1.0
1046
+ 28.1475,67.0,1.0
1047
+ 28.53644736842105,59.351351351351354,1.0
1048
+ 30.537222222222226,69.6,1.0
1049
+ 28.377499999999998,19.0,1.0
1050
+ 31.579999999999995,84.14814814814815,1.0
1051
+ 26.828699999999994,48.42857142857143,1.0
1052
+ 21.7375,30.0,1.0
1053
+ 53.825,27.0,11.0
1054
+ 29.86452830188678,45.67307692307692,1.0
1055
+ 17.637500000000003,21.0,0.0
1056
+ 22.1375,47.0,1.0
1057
+ 21.2775,56.0,1.0
1058
+ 19.556250000000002,14.333333333333334,0.0
1059
+ 35.082499999999996,26.0,2.0
1060
+ 14.753333333333332,17.5,0.0
1061
+ 18.66,29.0,0.0
1062
+ 21.715,15.0,
1063
+ 30.45487804878049,60.225,1.0
1064
+ 29.730000000000004,43.509433962264154,1.0
1065
+ 36.915,7.0,
1066
+ 28.44714285714286,57.951219512195124,1.0
1067
+ 28.97,22.5,1.0
1068
+ 38.42000000000001,16.5,2.0
1069
+ 30.41114583333334,50.02127659574468,1.0
1070
+ 30.81426829268291,57.5,1.0
1071
+ 27.354456521739127,47.6,1.0
1072
+ 29.89577777777778,54.79545454545455,1.0
1073
+ 30.543382352941173,68.48484848484848,1.0
1074
+ 25.96866666666667,52.81818181818182,1.0
1075
+ 32.2675,16.0,
1076
+ 36.6825,7.0,2.0
1077
+ 28.1025,13.0,1.0
1078
+ 29.00476190476191,58.170731707317074,1.0
1079
+ 37.21,35.0,2.0
1080
+ 30.72073170731706,59.125,1.0
1081
+ 40.68,43.0,2.0
1082
+ 28.65794117647059,48.64,1.0
1083
+ 28.552500000000002,34.0,1.0
1084
+ 23.490000000000002,40.0,1.0
1085
+ 34.79,8.0,
1086
+ 27.26175438596492,43.05357142857143,1.0
1087
+ 42.535,65.0,11.0
1088
+ 30.592567567567574,65.38888888888889,1.0
1089
+ 17.523333333333337,25.5,0.0
1090
+ 28.257500000000004,62.83783783783784,1.0
1091
+ 35.4,42.0,2.0
1092
+ 33.81666666666666,9.0,
1093
+ 18.375,3.0,
1094
+ 26.415434782608692,53.08888888888889,1.0
1095
+ 30.472111111111126,54.18181818181818,1.0
1096
+ 30.696590909090904,53.906976744186046,1.0
1097
+ 30.351538461538464,62.73684210526316,1.0
1098
+ 7.34,10.0,0.0
1099
+ 33.1475,40.0,1.0
1100
+ 53.565,15.0,11.0
1101
+ 41.68666666666667,23.5,11.0
1102
+ 29.78705882352941,47.2,1.0
1103
+ 22.6575,34.0,
1104
+ 50.227500000000006,24.0,11.0
1105
+ 30.960833333333333,56.58536585365854,1.0
1106
+ 38.0775,9.0,
1107
+ 26.6525,18.0,1.0
1108
+ 28.817500000000003,2.0,
1109
+ 33.310138888888886,68.14285714285714,1.0
1110
+ 29.015,22.0,1.0
1111
+ 36.235,14.0,2.0
1112
+ 25.904387755102036,49.520833333333336,1.0
1113
+ 27.973333333333333,14.5,1.0
1114
+ 27.413499999999992,58.794871794871796,1.0
1115
+ 29.519000000000005,69.5,1.0
1116
+ 27.996625,58.717948717948715,1.0
1117
+ 20.873333333333335,26.0,1.0
1118
+ 24.456666666666667,16.0,1.0
1119
+ 35.06166666666667,9.5,2.0
1120
+ 36.675,29.0,2.0
1121
+ 29.88008771929825,42.357142857142854,1.0
1122
+ 33.3325,18.0,1.0
1123
+ 27.34,11.0,
1124
+ 28.632702702702698,67.58333333333333,1.0
1125
+ 27.005,9.0,1.0
1126
+ 29.766444444444446,52.52272727272727,1.0
1127
+ 30.45439024390244,61.175,1.0
1128
+ 30.330000000000002,56.75609756097561,1.0
1129
+ 29.12,9.0,1.0
1130
+ 30.313333333333333,17.5,1.0
1131
+ 35.305,7.0,2.0
1132
+ 42.9225,2.0,
1133
+ 29.304399999999998,47.46938775510204,1.0
1134
+ 27.265,24.0,1.0
1135
+ 29.6,10.0,1.0
1136
+ 29.53636363636364,53.0,1.0
1137
+ 31.51,49.583333333333336,1.0
1138
+ 32.429574468085114,50.108695652173914,1.0
1139
+ 29.59702380952381,58.146341463414636,1.0
1140
+ 42.1375,11.0,11.0
1141
+ 26.795545454545447,44.55555555555556,1.0
1142
+ 40.71,5.0,2.0
1143
+ 28.62141509433962,46.36538461538461,1.0
1144
+ 28.735999999999994,49.10204081632653,1.0
1145
+ 38.9725,9.0,
1146
+ 27.57283783783783,66.88888888888889,1.0
1147
+ 32.30822916666667,50.95744680851064,1.0
1148
+ 34.069021739130434,49.55555555555556,2.0
1149
+ 44.635,16.0,11.0
1150
+ 40.205,7.0,2.0
1151
+ 31.962500000000002,11.0,1.0
1152
+ 28.10520833333334,51.59574468085106,1.0
1153
+ 45.19,33.0,11.0
1154
+ 20.0925,6.0,0.0
1155
+ 33.77723404255319,50.93478260869565,2.0
1156
+ 29.395,4.0,
1157
+ 25.877499999999998,20.0,1.0
1158
+ 29.947499999999998,6.0,
1159
+ 33.343333333333334,30.5,1.0
1160
+ 29.4625,51.31111111111111,1.0
1161
+ 26.597727272727273,55.325581395348834,1.0
1162
+ 28.45,8.0,1.0
1163
+ 29.370975609756105,55.8,1.0
1164
+ 27.095545454545466,43.907407407407405,1.0
1165
+ 29.7425,9.0,
1166
+ 30.490425531914898,52.30434782608695,1.0
1167
+ 31.41300000000001,49.38775510204081,1.0
1168
+ 31.554459459459455,67.13888888888889,1.0
1169
+ 30.328068181818182,53.86046511627907,1.0
1170
+ 28.838297872340434,48.93478260869565,1.0
1171
+ 18.923333333333332,24.0,0.0
1172
+ 30.88616279069768,55.904761904761905,1.0
1173
+ 24.415000000000003,22.5,1.0
1174
+ 28.932083333333342,64.54285714285714,1.0
1175
+ 26.5175,20.0,1.0
1176
+ 31.486341463414636,59.95,1.0
1177
+ 28.9795,49.57142857142857,1.0
1178
+ 32.03076086956521,54.13333333333333,1.0
1179
+ 35.7775,9.0,2.0
1180
+ 32.992,54.5,1.0
1181
+ 13.29,34.0,0.0
1182
+ 33.03645161290322,77.16666666666667,1.0
1183
+ 35.230000000000004,3.0,
1184
+ 27.96614583333333,49.91489361702128,1.0
1185
+ 26.18,32.0,1.0
1186
+ 33.501666666666665,30.5,1.0
1187
+ 28.205,13.0,1.0
1188
+ 20.0325,46.0,0.0
1189
+ 29.953999999999997,61.97435897435897,1.0
1190
+ 23.74,33.0,1.0
1191
+ 16.7225,19.0,0.0
1192
+ 23.6525,70.0,1.0
1193
+ 31.052272727272733,73.0625,1.0
1194
+ 27.371666666666666,8.5,1.0
1195
+ 31.424545454545463,55.2093023255814,1.0
1196
+ 28.52,7.0,1.0
1197
+ 31.550000000000004,66.0,1.0
1198
+ 24.79691176470588,73.0,1.0
1199
+ 19.623333333333335,21.0,0.0
1200
+ 28.23767441860465,57.785714285714285,1.0
1201
+ 31.2775,13.0,1.0
1202
+ 37.82,10.0,2.0
1203
+ 30.7225,29.0,1.0
1204
+ 30.805760869565212,54.13333333333333,1.0
1205
+ 30.470540540540544,62.55555555555556,1.0
1206
+ 29.996250000000003,19.333333333333332,1.0
1207
+ 31.24010416666667,51.51063829787234,1.0
1208
+ 28.653863636363635,55.69767441860465,1.0
1209
+ 29.60179487179488,62.81578947368421,1.0
1210
+ 29.06726190476191,58.853658536585364,1.0
1211
+ 28.547399999999996,49.06122448979592,1.0
1212
+ 32.464999999999996,19.5,1.0
1213
+ 32.04666666666666,20.5,1.0
1214
+ 38.50833333333333,26.0,2.0
1215
+ 30.74,25.0,1.0
1216
+ 29.049130434782615,51.71111111111111,1.0
1217
+ 18.48375,10.666666666666666,0.0
1218
+ 42.9725,7.0,11.0
1219
+ 35.3925,68.0,2.0
1220
+ 29.889605263157897,57.567567567567565,1.0
1221
+ 30.32460000000001,47.93877551020408,1.0
1222
+ 28.41023809523809,54.63414634146341,1.0
1223
+ 28.786702127659577,51.21739130434783,1.0
1224
+ 28.503292682926823,57.0,1.0
1225
+ 35.26,41.0,2.0
1226
+ 35.62166666666666,31.0,2.0
1227
+ 31.758205128205127,61.3421052631579,1.0
1228
+ 26.55833333333334,61.18421052631579,1.0
1229
+ 27.98,52.0,1.0
1230
+ 34.615,16.0,2.0
1231
+ 29.186176470588236,46.94,1.0
1232
+ 22.855,11.5,1.0
1233
+ 34.16166666666667,21.0,2.0
1234
+ 34.36347222222221,61.65714285714286,2.0
1235
+ 13.790000000000001,17.0,0.0
1236
+ 31.236020408163263,50.479166666666664,1.0
1237
+ 31.053369565217398,52.0,1.0
1238
+ 31.3925,60.0,1.0
1239
+ 16.645,0.0,0.0
1240
+ 36.575,51.0,2.0
1241
+ 30.216190476190473,58.4390243902439,1.0
1242
+ 29.20021276595745,52.369565217391305,1.0
1243
+ 27.934519230769233,46.96078431372549,1.0
1244
+ 26.471666666666664,11.0,1.0
1245
+ 28.864375,49.340425531914896,1.0
1246
+ 29.07630434782607,53.0,1.0
1247
+ 26.939431818181813,56.83720930232558,1.0
1248
+ 31.289666666666665,80.6896551724138,1.0
1249
+ 31.27577586206896,42.0,1.0
1250
+ 25.849999999999998,5.0,
1251
+ 20.237499999999997,8.0,0.0
1252
+ 27.418452380952377,54.31707317073171,1.0
1253
+ 26.5625,8.0,1.0
1254
+ 29.79425531914893,52.06521739130435,1.0
1255
+ 29.246315789473687,63.972972972972975,1.0
1256
+ 19.223333333333333,27.0,0.0
1257
+ 34.15927083333333,50.06382978723404,2.0
1258
+ 32.37340909090909,55.69767441860465,1.0
1259
+ 30.751511627906982,56.73809523809524,1.0
1260
+ 28.502111111111116,50.70454545454545,1.0
1261
+ 24.0175,29.0,1.0
1262
+ 30.419250000000005,62.0,1.0
1263
+ 23.8125,15.666666666666666,1.0
1264
+ 28.831666666666667,20.0,1.0
1265
+ 28.60244680851064,48.108695652173914,1.0
1266
+ 30.0325,14.0,1.0
1267
+ 33.8575,5.0,2.0
1268
+ 28.817307692307693,47.3921568627451,1.0
1269
+ 28.302500000000002,13.0,1.0
1270
+ 34.94308510638298,51.108695652173914,2.0
1271
+ 44.3825,7.0,
1272
+ 31.159534883720934,55.88095238095238,1.0
1273
+ 22.3325,16.0,1.0
1274
+ 36.9425,4.0,2.0
1275
+ 31.23,22.0,1.0
1276
+ 31.20500000000001,52.41304347826087,1.0
1277
+ 31.827083333333334,50.765957446808514,1.0
1278
+ 34.76440476190477,59.21951219512195,2.0
1279
+ 52.23833333333334,12.5,11.0
1280
+ 12.6825,15.0,0.0
1281
+ 25.888552631578943,64.35135135135135,1.0
1282
+ 22.189,15.25,1.0
1283
+ 30.025454545454547,53.04651162790697,1.0
1284
+ 27.36770833333333,51.04255319148936,1.0
1285
+ 29.110000000000007,49.083333333333336,1.0
1286
+ 29.60523255813952,54.833333333333336,1.0
1287
+ 15.825,18.0,
1288
+ 28.459300000000006,49.3469387755102,1.0
1289
+ 29.009729729729735,66.38888888888889,1.0
1290
+ 20.9175,6.0,
1291
+ 35.2525,7.0,2.0
1292
+ 29.15833333333333,11.5,1.0
1293
+ 24.2425,15.0,1.0
1294
+ 29.00357142857143,57.4390243902439,1.0
1295
+ 27.707653061224484,48.625,1.0
1296
+ 21.82,24.0,1.0
1297
+ 31.009999999999998,15.0,1.0
1298
+ 28.436333333333327,54.31818181818182,1.0
1299
+ 26.9425,8.0,
1300
+ 31.83297297297297,64.5,1.0
1301
+ 42.3,19.0,11.0
1302
+ 30.636739130434773,51.44444444444444,1.0
1303
+ 25.386666666666667,23.0,1.0
1304
+ 29.559166666666677,56.073170731707314,1.0
1305
+ 41.212500000000006,13.0,2.0
1306
+ 27.775,8.0,1.0
1307
+ 29.11722222222222,45.264150943396224,1.0
1308
+ 31.961315789473677,64.54054054054055,1.0
1309
+ 29.151250000000005,69.65714285714286,1.0
1310
+ 14.487499999999999,10.0,
1311
+ 30.479615384615386,47.529411764705884,1.0
1312
+ 28.877875,59.61538461538461,1.0
1313
+ 26.792500000000004,54.093023255813954,1.0
1314
+ 31.885937499999994,45.51063829787234,1.0
1315
+ 25.569565217391304,53.2,1.0
1316
+ 30.8125,16.0,1.0
1317
+ 39.92166666666666,6.5,
1318
+ 32.550104166666664,49.95744680851064,1.0
1319
+ 13.5075,18.0,0.0
1320
+ 28.915000000000003,7.0,
1321
+ 19.8675,7.0,0.0
1322
+ 29.800405405405407,60.333333333333336,1.0
1323
+ 28.9856862745098,47.54,1.0
1324
+ 27.916666666666668,50.234042553191486,1.0
1325
+ 39.9925,4.0,2.0
1326
+ 17.55625,12.666666666666666,0.0
1327
+ 43.129999999999995,16.0,11.0
1328
+ 30.48,25.0,1.0
1329
+ 31.476808510638314,52.69565217391305,1.0
1330
+ 32.480588235294114,72.60606060606061,1.0
1331
+ 29.130116279069764,58.04761904761905,1.0
1332
+ 51.1075,4.0,11.0
1333
+ 50.9075,20.0,11.0
1334
+ 22.55666666666667,27.0,1.0
1335
+ 13.0775,41.0,0.0
1336
+ 30.91233333333334,54.13636363636363,1.0
1337
+ 32.3575,10.0,
1338
+ 28.74357142857142,48.354166666666664,1.0
1339
+ 28.985,10.0,1.0
1340
+ 32.546710526315785,63.2972972972973,1.0
1341
+ 26.268387096774187,76.66666666666667,1.0
1342
+ 39.5125,30.0,2.0
1343
+ 29.746666666666666,26.5,1.0
1344
+ 25.442051282051278,59.68421052631579,1.0
1345
+ 24.425,19.0,1.0
1346
+ 29.96999999999999,62.05128205128205,1.0
1347
+ 32.400568181818194,55.69767441860465,1.0
1348
+ 31.485869565217396,51.77777777777778,1.0
1349
+ 25.39375,16.0,1.0
1350
+ 34.97552631578947,63.189189189189186,2.0
1351
+ 28.753369565217394,52.53333333333333,1.0
1352
+ 19.53,19.0,0.0
1353
+ 19.822499999999998,8.0,0.0
1354
+ 31.7875,16.0,1.0
1355
+ 29.588229166666654,49.702127659574465,1.0
1356
+ 31.766923076923085,61.28947368421053,1.0
1357
+ 25.0525,17.0,
1358
+ 27.973750000000003,12.333333333333334,1.0
1359
+ 29.465476190476195,58.26829268292683,1.0
1360
+ 27.995348837209296,53.80952380952381,1.0
1361
+ 32.17657142857143,67.5,1.0
1362
+ 18.445,10.0,0.0
1363
+ 21.7175,25.0,1.0
1364
+ 28.145,19.0,1.0
1365
+ 29.84499999999999,58.794871794871796,1.0
1366
+ 39.1025,17.333333333333332,2.0
1367
+ 29.26033333333333,52.90909090909091,1.0
1368
+ 27.823333333333334,22.5,1.0
1369
+ 29.817500000000003,53.0,1.0
1370
+ 43.817499999999995,10.0,
1371
+ 36.7875,7.0,2.0
1372
+ 32.705,26.0,1.0
1373
+ 31.120319148936176,53.02173913043478,1.0
1374
+ 30.39154761904762,57.90243902439025,1.0
1375
+ 33.22,28.0,1.0
1376
+ 35.879999999999995,15.0,
1377
+ 25.7525,3.0,1.0
1378
+ 27.581590909090906,56.627906976744185,1.0
1379
+ 29.495,37.0,1.0
1380
+ 27.012500000000003,17.0,1.0
1381
+ 29.551956521739132,51.955555555555556,1.0
1382
+ 29.299999999999997,21.0,
1383
+ 29.700131578947374,62.83783783783784,1.0
1384
+ 45.3425,45.0,11.0
1385
+ 20.192500000000003,30.0,0.0
1386
+ 32.00405405405406,66.94444444444444,1.0
1387
+ 46.504999999999995,32.0,11.0
1388
+ 26.475,32.0,1.0
1389
+ 18.315,9.5,0.0
1390
+ 31.277297297297302,65.38888888888889,1.0
1391
+ 29.088414634146336,59.5,1.0
1392
+ 27.63829268292683,58.95,1.0
1393
+ 27.267187499999995,72.58064516129032,1.0
1394
+ 12.8925,3.0,0.0
1395
+ 31.064166666666665,47.59574468085106,1.0
1396
+ 33.8975,8.0,
1397
+ 38.555,3.0,2.0
1398
+ 29.81846153846154,58.28947368421053,1.0
1399
+ 24.886666666666667,26.0,1.0
1400
+ 29.42,5.0,
1401
+ 26.4025,7.0,
1402
+ 31.425102040816334,50.0,1.0
1403
+ 8.23,13.0,0.0
1404
+ 41.7025,13.0,11.0
1405
+ 29.496022727272734,54.69767441860465,1.0
1406
+ 29.189999999999998,9.0,
1407
+ 28.64723684210527,66.27027027027027,1.0
1408
+ 38.3775,8.0,2.0
1409
+ 29.23718749999999,51.1063829787234,1.0
1410
+ 39.9375,4.0,2.0
1411
+ 36.879999999999995,7.0,
1412
+ 28.399772727272737,54.83720930232558,1.0
1413
+ 30.91608108108108,65.66666666666667,1.0
1414
+ 31.683461538461536,63.526315789473685,1.0
1415
+ 33.33157407407408,43.37735849056604,1.0
1416
+ 27.53051020408163,48.958333333333336,1.0
1417
+ 36.7125,20.0,2.0
1418
+ 26.209999999999994,52.95348837209303,1.0
1419
+ 27.66011627906977,56.404761904761905,1.0
1420
+ 30.442000000000014,43.01851851851852,1.0
1421
+ 20.255000000000003,24.0,0.0
1422
+ 29.115000000000002,7.0,1.0
1423
+ 15.865,8.0,0.0
1424
+ 36.678333333333335,23.5,2.0
1425
+ 47.769999999999996,11.0,11.0
1426
+ 30.07848837209303,55.785714285714285,1.0
1427
+ 29.565,19.0,1.0
1428
+ 29.230609756097554,58.825,1.0
1429
+ 29.976511627906984,56.595238095238095,1.0
1430
+ 28.50326923076923,46.6078431372549,1.0
1431
+ 26.4125,18.0,
1432
+ 27.276071428571424,86.51851851851852,1.0
1433
+ 16.5225,11.0,
1434
+ 32.63414634146341,58.925,1.0
1435
+ 26.116666666666664,19.0,1.0
1436
+ 28.00566666666666,52.59090909090909,1.0
1437
+ 36.6175,20.0,2.0
1438
+ 32.28542553191489,51.82608695652174,1.0
1439
+ 31.467653061224507,50.8125,1.0
1440
+ 25.39,30.5,1.0
1441
+ 28.921250000000004,62.743589743589745,1.0
1442
+ 38.526666666666664,9.5,2.0
1443
+ 16.7775,40.0,0.0
1444
+ 15.51,15.0,0.0
1445
+ 22.9775,15.0,1.0
1446
+ 18.9125,40.0,0.0
1447
+ 34.89,15.0,2.0
1448
+ 25.87602941176471,70.33333333333333,1.0
1449
+ 31.424555555555557,51.79545454545455,1.0
1450
+ 29.855,26.5,1.0
1451
+ 29.110000000000003,7.0,1.0
1452
+ 36.962500000000006,17.0,2.0
1453
+ 30.915350877192974,41.285714285714285,1.0
1454
+ 31.74478723404255,52.08695652173913,1.0
1455
+ 18.768333333333334,16.0,0.0
1456
+ 31.31770833333333,48.808510638297875,1.0
1457
+ 28.79437499999999,50.57446808510638,1.0
1458
+ 32.599512195121946,56.8,1.0
1459
+ 21.145,5.0,1.0
1460
+ 28.121219512195122,57.525,1.0
1461
+ 28.7425,4.0,1.0
1462
+ 31.697400000000002,48.63265306122449,1.0
1463
+ 30.502763157894737,65.97297297297297,1.0
1464
+ 29.872391304347808,53.71111111111111,1.0
1465
+ 24.6725,69.0,1.0
1466
+ 31.435000000000002,16.0,1.0
1467
+ 24.5,14.0,
1468
+ 14.232500000000002,13.0,
1469
+ 22.586666666666662,12.5,1.0
1470
+ 39.60125,17.666666666666668,2.0
1471
+ 28.447624999999995,62.61538461538461,1.0
1472
+ 33.589999999999996,9.0,1.0
1473
+ 29.387500000000003,48.91836734693877,1.0
1474
+ 28.26976744186047,53.666666666666664,1.0
1475
+ 18.549999999999997,7.0,0.0
1476
+ 37.45,10.0,2.0
1477
+ 27.8775,10.0,1.0
1478
+ 37.010000000000005,16.0,2.0
1479
+ 20.572499999999998,33.0,0.0
1480
+ 17.765,19.5,0.0
1481
+ 31.384047619047607,57.21951219512195,1.0
1482
+ 26.548548387096773,75.16666666666667,1.0
1483
+ 24.7575,36.0,1.0
1484
+ 26.606666666666666,27.5,1.0
1485
+ 37.5525,21.0,2.0
1486
+ 32.99948717948718,55.36842105263158,1.0
1487
+ 26.354583333333334,40.67796610169491,1.0
1488
+ 29.46614583333333,51.12765957446808,1.0
1489
+ 29.91854166666667,48.42553191489362,1.0
1490
+ 31.258240740740735,43.58490566037736,1.0
1491
+ 28.58094339622642,44.09615384615385,1.0
1492
+ 37.885000000000005,10.0,2.0
1493
+ 33.69754901960784,48.18,2.0
1494
+ 35.835,15.5,2.0
1495
+ 32.81377551020409,49.375,1.0
1496
+ 29.0175,12.0,
1497
+ 44.89,9.0,11.0
1498
+ 27.914803921568627,48.18,1.0
1499
+ 28.55666666666667,50.5531914893617,1.0
1500
+ 16.5225,48.0,0.0
1501
+ 30.843076923076918,47.35294117647059,1.0
1502
+ 21.8125,15.0,1.0
1503
+ 30.835849056603774,45.51923076923077,1.0
1504
+ 25.303500000000003,47.89795918367347,1.0
1505
+ 44.115,6.0,
1506
+ 19.38,9.0,0.0
1507
+ 27.59957446808511,49.43478260869565,1.0
1508
+ 45.8925,7.0,11.0
1509
+ 45.0575,13.0,11.0
1510
+ 37.495,14.0,2.0
1511
+ 33.2675,8.0,1.0
1512
+ 34.52333333333333,11.0,2.0
1513
+ 29.103536585365855,60.05,1.0
1514
+ 25.57166666666667,9.0,1.0
1515
+ 29.606410256410246,64.13157894736842,1.0
1516
+ 49.735,17.0,11.0
1517
+ 32.97333333333333,18.5,1.0
1518
+ 48.1075,6.0,
1519
+ 30.630384615384617,61.921052631578945,1.0
1520
+ 25.685,35.0,1.0
1521
+ 38.455,7.0,2.0
1522
+ 39.53666666666667,29.0,2.0
1523
+ 28.103333333333335,34.0,1.0
1524
+ 26.46892156862745,48.48,1.0
1525
+ 32.46,8.0,1.0
1526
+ 38.74375,16.0,2.0
1527
+ 31.988717948717948,50.18421052631579,1.0
1528
+ 30.147619047619052,57.390243902439025,1.0
1529
+ 21.85666666666667,18.0,1.0
1530
+ 40.5375,25.0,2.0
1531
+ 28.93255813953488,57.666666666666664,1.0
1532
+ 27.197499999999998,37.0,1.0
1533
+ 30.182333333333325,53.63636363636363,1.0
1534
+ 14.267500000000002,6.0,
1535
+ 29.75871794871795,63.6578947368421,1.0
1536
+ 16.00375,15.0,0.0
1537
+ 51.932500000000005,63.0,11.0
1538
+ 31.376666666666665,28.0,1.0
1539
+ 28.481666666666666,13.0,1.0
1540
+ 28.11,10.0,1.0
1541
+ 17.32,15.0,
1542
+ 31.283541666666668,51.91489361702128,1.0
1543
+ 27.567500000000003,69.0,1.0
1544
+ 27.27,14.0,1.0
1545
+ 43.4875,16.0,
1546
+ 25.2175,16.0,
1547
+ 30.569318181818186,54.627906976744185,1.0
1548
+ 31.007159090909102,55.23255813953488,1.0
1549
+ 22.55,13.5,1.0
1550
+ 28.6625,71.0,1.0
1551
+ 29.151739130434787,51.6,1.0
1552
+ 30.587840909090914,46.7906976744186,1.0
1553
+ 29.520000000000003,21.0,
1554
+ 29.080121951219514,60.725,1.0
1555
+ 20.2325,30.0,0.0
1556
+ 29.33,18.0,1.0
1557
+ 28.353333333333335,19.5,1.0
1558
+ 26.472500000000004,17.0,1.0
1559
+ 26.588750000000005,51.61702127659574,1.0
1560
+ 33.7325,42.0,2.0
1561
+ 29.93344444444444,51.54545454545455,1.0
1562
+ 29.494069767441868,55.404761904761905,1.0
1563
+ 31.950000000000003,48.0,1.0
1564
+ 18.028333333333336,9.5,
1565
+ 24.785,60.05,1.0
1566
+ 14.605,11.0,0.0
1567
+ 30.08579545454546,56.27906976744186,1.0
1568
+ 24.365000000000002,27.0,1.0
1569
+ 31.056136363636366,54.76744186046512,1.0
1570
+ 17.342,15.25,0.0
1571
+ 27.55348837209302,55.833333333333336,1.0
1572
+ 31.095,9.0,
1573
+ 29.788333333333338,5.0,1.0
1574
+ 38.42,35.0,2.0
1575
+ 21.694999999999997,7.0,1.0
1576
+ 19.015,21.0,0.0
1577
+ 28.995,41.0,1.0
1578
+ 32.40914893617021,50.65217391304348,1.0
1579
+ 18.2225,48.0,0.0
1580
+ 36.4825,25.0,
1581
+ 28.305,14.0,1.0
1582
+ 24.18,10.0,1.0
1583
+ 24.7325,10.0,
1584
+ 25.954761904761913,58.58536585365854,1.0
1585
+ 29.228229166666665,48.87234042553192,1.0
1586
+ 23.8125,14.0,
1587
+ 17.67,10.0,0.0
1588
+ 27.064142857142862,69.20588235294117,1.0
1589
+ 31.248947368421053,61.16216216216216,1.0
1590
+ 23.6925,18.0,1.0
1591
+ 27.28,10.0,
1592
+ 16.073333333333334,6.5,
1593
+ 25.272857142857145,66.76470588235294,1.0
1594
+ 52.275,68.0,11.0
1595
+ 23.259999999999998,40.0,1.0
1596
+ 31.244565217391308,50.62222222222222,1.0
1597
+ 32.59344444444445,55.18181818181818,1.0
1598
+ 44.2475,6.0,11.0
1599
+ 32.76192307692307,62.1578947368421,1.0
1600
+ 36.733333333333334,18.5,2.0
1601
+ 29.797542372881342,40.62068965517241,1.0
1602
+ 29.92,16.0,
1603
+ 29.880000000000003,16.0,
1604
+ 21.711666666666662,8.0,1.0
1605
+ 30.707375000000003,61.05128205128205,1.0
1606
+ 28.837500000000002,54.95348837209303,1.0
1607
+ 27.084000000000003,66.73529411764706,1.0
1608
+ 21.68,26.0,1.0
1609
+ 30.173365384615376,46.90196078431372,1.0
1610
+ 34.692499999999995,39.0,2.0
1611
+ 27.28,15.0,
1612
+ 29.4675,19.0,1.0
1613
+ 31.162954545454536,55.81395348837209,1.0
1614
+ 34.946666666666665,27.0,2.0
1615
+ 15.594999999999999,24.5,0.0
1616
+ 39.8275,14.0,2.0
1617
+ 29.970975609756092,57.925,1.0
1618
+ 21.8125,13.0,1.0
1619
+ 29.424605263157893,64.29729729729729,1.0
1620
+ 36.915,8.0,2.0
1621
+ 29.80666666666667,6.5,1.0
1622
+ 26.97306818181818,54.093023255813954,1.0
1623
+ 26.73223404255319,52.67391304347826,1.0
1624
+ 28.129999999999995,48.95918367346939,1.0
1625
+ 29.705288461538466,47.13725490196079,1.0
1626
+ 31.197499999999998,20.0,1.0
1627
+ 30.320188679245284,45.82692307692308,1.0
1628
+ 43.25,33.0,11.0
1629
+ 41.580000000000005,11.0,11.0
1630
+ 30.10758333333333,40.728813559322035,1.0
1631
+ 27.2075,40.0,1.0
1632
+ 29.490937499999987,51.744680851063826,1.0
1633
+ 25.005,15.0,1.0
1634
+ 29.653421052631582,64.70270270270271,1.0
1635
+ 26.135,38.0,1.0
1636
+ 30.521363636363628,54.76744186046512,1.0
1637
+ 28.283125000000002,51.12765957446808,1.0
1638
+ 24.55,20.5,1.0
1639
+ 28.60370967741935,80.16666666666667,1.0
1640
+ 33.73,15.0,2.0
1641
+ 22.802500000000002,11.0,
1642
+ 18.4975,15.0,0.0
1643
+ 29.692386363636363,55.41860465116279,1.0
1644
+ 29.438749999999995,68.34285714285714,1.0
1645
+ 30.975480769230767,45.88235294117647,1.0
1646
+ 16.775,16.0,0.0
1647
+ 32.58857142857143,41.92727272727273,1.0
1648
+ 36.644999999999996,25.0,2.0
1649
+ 29.083545454545447,40.870370370370374,1.0
1650
+ 38.735,34.0,2.0
1651
+ 36.6,7.0,2.0
1652
+ 38.151666666666664,24.5,2.0
1653
+ 30.1375,21.0,1.0
1654
+ 22.3175,4.0,1.0
1655
+ 23.4175,20.0,1.0
1656
+ 30.435000000000002,15.0,
1657
+ 26.565,12.0,1.0
1658
+ 31.665,5.0,1.0
1659
+ 25.12,28.0,1.0
1660
+ 32.557500000000005,23.0,1.0
1661
+ 43.88,37.0,11.0
1662
+ 37.4475,38.0,2.0
1663
+ 30.201909090909094,43.51851851851852,1.0
1664
+ 19.305,13.0,
1665
+ 36.54,8.0,
1666
+ 27.97694444444444,67.14285714285714,1.0
1667
+ 36.178333333333335,20.0,2.0
1668
+ 29.009999999999998,14.0,
1669
+ 33.093333333333334,12.5,1.0
1670
+ 29.29,56.325581395348834,1.0
1671
+ 31.081666666666667,8.0,
1672
+ 32.725,51.0,1.0
1673
+ 17.403333333333332,22.0,0.0
1674
+ 30.034625,62.17948717948718,1.0
1675
+ 29.027674418604658,57.30952380952381,1.0
1676
+ 33.05986486486487,62.083333333333336,1.0
1677
+ 22.896666666666665,25.5,1.0
1678
+ 30.235,10.0,1.0
1679
+ 17.8875,24.0,0.0
1680
+ 19.55,6.0,0.0
1681
+ 15.963333333333333,18.5,0.0
1682
+ 27.7125,41.0,1.0
1683
+ 28.985689655172415,82.85714285714286,1.0
1684
+ 24.14,26.0,1.0
1685
+ 35.1925,2.0,2.0
1686
+ 25.689999999999998,22.0,1.0
1687
+ 16.79,13.0,0.0
1688
+ 31.235,10.0,1.0
1689
+ 31.644302325581403,56.54761904761905,1.0
1690
+ 29.995978260869553,49.13333333333333,1.0
1691
+ 33.6225,6.0,1.0
1692
+ 28.76759615384614,47.3921568627451,1.0
1693
+ 31.956875000000007,49.97872340425532,1.0
1694
+ 29.219897959183665,48.833333333333336,1.0
1695
+ 22.125,8.0,1.0
1696
+ 55.66,8.0,
1697
+ 33.390392156862745,45.06,1.0
1698
+ 19.075000000000003,41.0,0.0
1699
+ 40.0075,10.0,2.0
1700
+ 29.466499999999996,61.43589743589744,1.0
1701
+ 25.035000000000004,64.2,1.0
1702
+ 34.1225,32.0,2.0
1703
+ 30.396571428571423,64.05882352941177,1.0
1704
+ 26.654047619047613,56.68292682926829,1.0
1705
+ 32.32,23.5,1.0
1706
+ 27.325438596491235,40.410714285714285,1.0
1707
+ 26.19755813953488,56.88095238095238,1.0
1708
+ 28.18769230769231,44.86274509803921,1.0
1709
+ 30.058048780487812,59.95,1.0
1710
+ 26.7125,42.0,1.0
1711
+ 38.605,17.0,2.0
1712
+ 36.1,46.0,2.0
1713
+ 33.82333333333333,20.0,2.0
1714
+ 37.852500000000006,37.0,2.0
1715
+ 26.97838235294117,71.0909090909091,1.0
1716
+ 30.569499999999998,47.244897959183675,1.0
1717
+ 29.83585365853659,58.175,1.0
1718
+ 29.90079545454545,56.83720930232558,1.0
1719
+ 34.582499999999996,4.0,2.0
1720
+ 30.399130434782606,50.666666666666664,1.0
1721
+ 20.635,50.0,0.0
1722
+ 27.240204081632648,50.291666666666664,1.0
1723
+ 30.1775,56.0,1.0
1724
+ 21.93,13.0,1.0
1725
+ 31.525700000000008,48.795918367346935,1.0
1726
+ 27.665555555555564,69.82857142857142,1.0
1727
+ 29.383488372093034,57.73809523809524,1.0
1728
+ 28.943888888888882,51.95454545454545,1.0
1729
+ 26.12243243243243,64.05555555555556,1.0
1730
+ 32.37764705882352,71.57575757575758,1.0
1731
+ 31.99333333333333,22.0,1.0
1732
+ 42.64,24.0,11.0
1733
+ 31.153333333333336,14.0,1.0
1734
+ 28.15413461538461,46.1764705882353,1.0
1735
+ 29.6075,39.0,1.0
1736
+ 31.492631578947375,63.729729729729726,1.0
1737
+ 38.4125,13.0,
1738
+ 29.053000000000008,60.43589743589744,1.0
1739
+ 30.72141304347826,52.46666666666667,1.0
1740
+ 30.891046511627902,56.166666666666664,1.0
1741
+ 27.23060975609756,57.7,1.0
1742
+ 30.693452380952387,58.68292682926829,1.0
1743
+ 30.258648648648652,62.138888888888886,1.0
1744
+ 28.0175,18.0,
1745
+ 37.73,47.0,2.0
1746
+ 31.6714,49.714285714285715,1.0
1747
+ 19.8625,26.0,0.0
1748
+ 35.150000000000006,17.0,
1749
+ 19.131666666666668,17.5,0.0
1750
+ 36.285,24.0,2.0
1751
+ 27.518829787234036,52.26086956521739,1.0
1752
+ 16.53,10.5,0.0
1753
+ 20.0975,63.0,0.0
1754
+ 25.2925,21.0,1.0
1755
+ 23.14,45.0,1.0
1756
+ 23.4775,9.0,
1757
+ 30.072419354838708,76.73333333333333,1.0
1758
+ 32.75255813953488,58.166666666666664,1.0
1759
+ 28.151249999999997,13.333333333333334,1.0
1760
+ 28.198666666666664,51.81818181818182,1.0
1761
+ 35.75833333333333,16.0,2.0
1762
+ 36.3325,30.0,2.0
1763
+ 29.50228571428572,64.17647058823529,1.0
1764
+ 27.064999999999998,55.674418604651166,1.0
1765
+ 28.793749999999996,58.94871794871795,1.0
1766
+ 33.9725,40.0,2.0
1767
+ 32.37053571428571,88.74074074074075,1.0
1768
+ 33.287,49.142857142857146,1.0
1769
+ 30.7425,15.0,
1770
+ 28.90478723404254,51.02173913043478,1.0
1771
+ 30.163000000000007,55.06818181818182,1.0
1772
+ 17.1625,16.0,0.0
1773
+ 29.825,6.5,1.0
1774
+ 31.42634615384616,45.6078431372549,1.0
1775
+ 29.3875,16.0,1.0
1776
+ 24.708000000000002,13.0,1.0
1777
+ 21.558333333333334,14.0,1.0
1778
+ 26.961944444444452,64.17142857142858,1.0
1779
+ 29.25369047619047,58.19512195121951,1.0
1780
+ 28.483522727272735,56.13953488372093,1.0
1781
+ 29.38631578947368,63.432432432432435,1.0
1782
+ 29.235,14.0,1.0
1783
+ 20.93,24.0,1.0
1784
+ 15.217500000000001,58.0,0.0
1785
+ 30.629787234042556,51.5,1.0
1786
+ 29.680000000000003,16.5,1.0
1787
+ 31.956794871794866,62.921052631578945,1.0
1788
+ 29.88204545454545,55.093023255813954,1.0
1789
+ 30.327435897435898,63.1578947368421,1.0
1790
+ 33.125,23.0,1.0
1791
+ 31.216052631578947,59.91891891891892,1.0
1792
+ 31.735147058823532,68.24242424242425,1.0
1793
+ 29.415416666666673,67.74285714285715,1.0
1794
+ 14.235,53.0,0.0
1795
+ 30.816749999999995,61.30769230769231,1.0
1796
+ 30.34,28.0,1.0
1797
+ 17.325,28.0,0.0
1798
+ 30.198333333333334,18.5,1.0
1799
+ 32.208720930232566,55.023809523809526,1.0
1800
+ 25.331046511627914,54.404761904761905,1.0
1801
+ 26.515,28.0,1.0
1802
+ 22.6075,5.0,1.0
1803
+ 32.95,8.0,1.0
1804
+ 28.454255319148924,51.06521739130435,1.0
1805
+ 28.87848837209302,58.04761904761905,1.0
1806
+ 29.71051282051282,60.81578947368421,1.0
1807
+ 31.020348837209298,53.714285714285715,1.0
1808
+ 30.707403846153845,47.90196078431372,1.0
1809
+ 28.6075,3.0,
1810
+ 28.141162790697678,57.19047619047619,1.0
1811
+ 23.15,19.0,1.0
1812
+ 30.012346938775526,46.520833333333336,1.0
1813
+ 22.528333333333336,30.0,1.0
1814
+ 46.175,57.0,11.0
1815
+ 26.209047619047617,57.09756097560975,1.0
1816
+ 28.98884615384615,60.10526315789474,1.0
1817
+ 30.76242424242424,72.71875,1.0
1818
+ 39.839999999999996,15.0,
1819
+ 27.660952380952374,59.390243902439025,1.0
1820
+ 31.960789473684205,62.24324324324324,1.0
1821
+ 29.553900000000013,46.673469387755105,1.0
1822
+ 30.26803921568628,45.98,1.0
1823
+ 14.7725,14.0,0.0
1824
+ 32.36922413793103,42.75438596491228,1.0
1825
+ 27.644479166666667,50.93617021276596,1.0
1826
+ 29.695833333333333,68.91428571428571,1.0
1827
+ 29.638382352941182,71.3030303030303,1.0
1828
+ 14.079999999999998,7.5,0.0
1829
+ 28.117244897959182,47.333333333333336,1.0
1830
+ 42.807500000000005,20.0,11.0
1831
+ 32.06053191489361,52.47826086956522,1.0
1832
+ 32.3025,11.0,1.0
1833
+ 31.22,4.5,1.0
1834
+ 27.881666666666664,9.0,1.0
1835
+ 17.215,4.0,0.0
1836
+ 23.025000000000002,7.5,1.0
1837
+ 19.868333333333336,27.0,0.0
1838
+ 26.682499999999997,14.0,1.0
1839
+ 26.0,25.0,1.0
1840
+ 31.79347222222223,66.68571428571428,1.0
1841
+ 31.721734693877554,50.479166666666664,1.0
1842
+ 29.676805555555557,65.37142857142857,1.0
1843
+ 28.22176470588235,47.54,1.0
1844
+ 28.9375,38.0,1.0
1845
+ 24.70375,17.666666666666668,1.0
1846
+ 30.165595238095243,57.02439024390244,1.0
1847
+ 27.30895348837209,56.142857142857146,1.0
1848
+ 27.9747,48.6530612244898,1.0
1849
+ 23.35,17.0,1.0
1850
+ 29.377830188679248,46.13461538461539,1.0
1851
+ 30.0625,18.0,1.0
1852
+ 30.314313725490194,46.52,1.0
1853
+ 29.235468749999995,75.06451612903226,1.0
1854
+ 28.05919642857142,42.72727272727273,1.0
1855
+ 31.524711538461546,46.6078431372549,1.0
1856
+ 27.48598039215687,48.92,1.0
1857
+ 29.96009615384616,44.84313725490196,1.0
1858
+ 33.8375,15.0,
1859
+ 33.946666666666665,19.0,2.0
1860
+ 16.433333333333334,11.5,0.0
1861
+ 22.822499999999998,34.0,1.0
1862
+ 29.873055555555556,43.22641509433962,1.0
1863
+ 43.2175,21.0,11.0
1864
+ 31.80115384615385,54.26315789473684,1.0
1865
+ 28.81688888888889,54.09090909090909,1.0
1866
+ 24.957500000000003,66.0,1.0
1867
+ 21.247500000000002,33.0,1.0
1868
+ 30.34320512820512,63.94736842105263,1.0
1869
+ 26.578699999999998,47.36734693877551,1.0
1870
+ 29.15522727272727,54.44186046511628,1.0
1871
+ 28.8525,8.0,1.0
1872
+ 24.935000000000002,8.0,1.0
1873
+ 12.52,25.0,0.0
1874
+ 29.749166666666667,64.17142857142858,1.0
1875
+ 25.087096774193547,69.56666666666666,1.0
1876
+ 22.555,19.0,
1877
+ 31.181097560975616,60.075,1.0
1878
+ 28.095,26.0,1.0
1879
+ 33.03170454545454,55.325581395348834,1.0
1880
+ 21.7675,43.0,1.0
1881
+ 37.4075,11.0,
1882
+ 30.14489130434782,54.355555555555554,1.0
1883
+ 44.81,19.0,
1884
+ 10.0525,9.0,
1885
+ 52.8875,13.0,11.0
1886
+ 25.53125,14.333333333333334,1.0
1887
+ 29.8875,4.0,1.0
1888
+ 26.86,22.0,1.0
1889
+ 29.15142857142857,49.708333333333336,1.0
1890
+ 28.604625,58.41025641025641,1.0
1891
+ 25.816666666666666,25.5,1.0
1892
+ 27.79313725490196,48.86,1.0
1893
+ 42.6975,23.0,11.0
1894
+ 19.903333333333332,21.5,0.0
1895
+ 38.1125,8.0,
1896
+ 29.0475,10.0,1.0
1897
+ 30.597499999999997,5.0,1.0
1898
+ 16.93,15.0,0.0
1899
+ 28.095113636363635,54.02325581395349,1.0
1900
+ 26.3375,3.0,1.0
1901
+ 26.47,13.0,
1902
+ 29.349574468085102,50.04347826086956,1.0
1903
+ 28.623148148148147,45.56603773584906,1.0
1904
+ 25.055,51.0,1.0
1905
+ 40.1875,44.0,2.0
1906
+ 28.22666666666667,10.5,
1907
+ 33.81395348837209,52.904761904761905,2.0
1908
+ 25.21,33.0,1.0
1909
+ 27.254375,51.51063829787234,1.0
1910
+ 29.75321428571428,57.073170731707314,1.0
1911
+ 28.168906250000003,77.19354838709677,1.0
1912
+ 27.926025641025646,54.86842105263158,1.0
1913
+ 30.228191489361695,48.369565217391305,1.0
1914
+ 31.219019607843144,47.88,1.0
1915
+ 32.2525,25.0,1.0
1916
+ 25.136666666666667,12.5,1.0
1917
+ 31.790918367346936,50.75,1.0
1918
+ 28.86295918367346,49.416666666666664,1.0
1919
+ 32.3625,25.0,1.0
1920
+ 24.7325,24.0,1.0
1921
+ 39.343333333333334,33.0,2.0
1922
+ 28.825138888888887,62.714285714285715,1.0
1923
+ 30.08829545454545,53.69767441860465,1.0
1924
+ 28.935,7.0,1.0
1925
+ 27.195100000000004,48.265306122448976,1.0
1926
+ 28.82670212765958,50.45652173913044,1.0
1927
+ 23.3625,20.0,
1928
+ 36.45,26.0,
1929
+ 30.885609756097548,58.575,1.0
1930
+ 29.741111111111113,53.65909090909091,1.0
1931
+ 28.363777777777777,55.06818181818182,1.0
1932
+ 29.48456521739131,53.15555555555556,1.0
1933
+ 28.8025,6.0,1.0
1934
+ 31.38870370370371,45.075471698113205,1.0
1935
+ 21.82125,15.666666666666666,1.0
1936
+ 29.5765306122449,49.270833333333336,1.0
1937
+ 29.826315789473682,63.108108108108105,1.0
1938
+ 28.5775,10.0,1.0
1939
+ 31.0613725490196,47.76,1.0
1940
+ 38.55,5.0,2.0
1941
+ 33.435,8.0,
1942
+ 38.775,41.0,
1943
+ 24.427500000000002,15.0,
1944
+ 27.599199999999986,47.30612244897959,1.0
1945
+ 29.407424242424245,74.34375,1.0
1946
+ 27.69009090909091,44.0,1.0
1947
+ 31.63124999999999,42.836363636363636,1.0
1948
+ 27.4275,4.0,1.0
1949
+ 31.60773584905661,47.73076923076923,1.0
1950
+ 25.535,11.0,1.0
1951
+ 31.710096153846163,46.35294117647059,1.0
1952
+ 31.263333333333332,19.5,1.0
1953
+ 20.2825,43.0,0.0
1954
+ 20.913333333333334,10.0,1.0
1955
+ 26.9125,25.0,1.0
1956
+ 29.380204081632655,50.3125,1.0
1957
+ 30.418902439024382,53.7,1.0
1958
+ 37.205,34.0,2.0
1959
+ 34.108857142857154,68.61764705882354,2.0
1960
+ 22.1075,17.0,1.0
1961
+ 28.76775862068967,40.175438596491226,1.0
1962
+ 26.4225,13.0,1.0
1963
+ 46.5325,21.0,11.0
1964
+ 32.3925,17.666666666666668,1.0
1965
+ 26.48,19.0,1.0
1966
+ 10.05,6.0,0.0
1967
+ 32.0975,42.0,1.0
1968
+ 32.4275,25.0,1.0
1969
+ 40.197500000000005,13.0,2.0
1970
+ 26.560000000000002,10.0,1.0
1971
+ 31.62921052631579,63.7027027027027,1.0
1972
+ 28.739285714285707,53.24390243902439,1.0
1973
+ 27.322499999999998,58.0,1.0
1974
+ 21.055,6.0,1.0
1975
+ 30.11825581395349,58.785714285714285,1.0
1976
+ 32.435,25.0,
1977
+ 32.57474358974358,62.71052631578947,1.0
1978
+ 25.218333333333334,20.0,1.0
1979
+ 45.325,42.0,11.0
1980
+ 42.197500000000005,2.0,11.0
1981
+ 25.7,46.0,1.0
1982
+ 30.93,20.0,
1983
+ 25.229166666666668,11.0,1.0
1984
+ 37.540000000000006,39.0,2.0
1985
+ 22.69666666666667,32.0,1.0
1986
+ 33.63363636363636,53.46511627906977,1.0
1987
+ 32.21340909090909,51.25581395348837,1.0
1988
+ 9.219999999999999,42.0,
1989
+ 30.141442307692316,44.705882352941174,1.0
1990
+ 28.3475,19.0,1.0
1991
+ 30.62738095238095,53.53658536585366,1.0
1992
+ 15.497499999999999,47.0,0.0
1993
+ 39.095,26.0,2.0
1994
+ 21.785,14.0,1.0
1995
+ 27.608947368421056,65.43243243243244,1.0
1996
+ 42.1,48.0,11.0
1997
+ 23.37,29.0,1.0
1998
+ 30.08666666666667,25.5,1.0
1999
+ 26.9825,19.0,1.0
2000
+ 29.774705882352936,35.701492537313435,1.0
2001
+ 34.36833333333333,25.5,2.0
2002
+ 28.903984374999997,37.301587301587304,1.0
2003
+ 28.893947368421053,62.891891891891895,1.0
2004
+ 37.44,2.0,2.0
2005
+ 35.905,10.0,2.0
2006
+ 31.345,55.0,1.0
2007
+ 28.675138888888892,65.37142857142857,1.0
2008
+ 29.552500000000002,19.666666666666668,1.0
2009
+ 39.9225,34.0,2.0
2010
+ 41.115,27.0,2.0
2011
+ 33.7725,26.0,2.0
2012
+ 35.8225,38.0,2.0
2013
+ 32.38519999999999,48.83673469387755,1.0
2014
+ 31.459673913043474,52.022222222222226,1.0
2015
+ 26.4125,22.0,1.0
2016
+ 9.530000000000001,46.0,0.0
2017
+ 41.555,7.0,
2018
+ 20.814999999999998,37.0,0.0
2019
+ 42.4425,6.0,11.0
2020
+ 26.834999999999997,24.5,1.0
2021
+ 30.352708333333325,50.57446808510638,1.0
2022
+ 28.585256410256413,60.39473684210526,1.0
2023
+ 33.4154,48.142857142857146,1.0
2024
+ 26.26269230769231,47.35294117647059,1.0
2025
+ 22.18166666666667,11.0,
2026
+ 29.526666666666667,52.18181818181818,1.0
2027
+ 45.88,59.0,11.0
2028
+ 25.43,40.0,1.0
2029
+ 28.5475,21.0,1.0
2030
+ 25.137500000000003,13.0,1.0
2031
+ 41.42,2.0,2.0
2032
+ 33.77,21.0,2.0
2033
+ 33.5,23.0,1.0
2034
+ 34.625,20.0,
2035
+ 27.279999999999994,51.53333333333333,1.0
2036
+ 29.764591836734688,49.979166666666664,1.0
2037
+ 24.155,2.0,
2038
+ 30.5,12.0,1.0
2039
+ 28.726595744680854,51.78260869565217,1.0
2040
+ 27.110487804878044,55.925,1.0
2041
+ 28.962352941176476,71.0,1.0
2042
+ 20.455,3.0,0.0
2043
+ 39.3925,20.0,2.0
2044
+ 29.153260869565226,53.51111111111111,1.0
2045
+ 26.72344827586207,41.91228070175438,1.0
2046
+ 32.056000000000004,53.0,1.0
2047
+ 29.4575,65.0,1.0
2048
+ 38.8475,6.0,2.0
2049
+ 29.553030303030305,68.8125,1.0
2050
+ 31.460888888888885,54.70454545454545,1.0
2051
+ 31.079124999999998,61.61538461538461,1.0
2052
+ 33.116395348837216,55.42857142857143,1.0
2053
+ 31.715897435897432,58.78947368421053,1.0
2054
+ 24.009999999999998,9.0,
2055
+ 28.693461538461534,61.5,1.0
2056
+ 22.0375,34.0,1.0
2057
+ 29.89776595744681,45.04347826086956,1.0
2058
+ 38.795,20.0,2.0
2059
+ 26.79927083333334,50.5531914893617,1.0
2060
+ 35.1975,16.0,2.0
2061
+ 21.939999999999998,44.0,1.0
2062
+ 27.45771739130435,52.111111111111114,1.0
2063
+ 32.2325,27.0,1.0
2064
+ 19.92,43.0,0.0
2065
+ 30.580568181818183,54.372093023255815,1.0
2066
+ 30.731951219512194,59.25,1.0
2067
+ 33.793749999999996,20.333333333333332,2.0
2068
+ 28.482499999999998,43.0,1.0
2069
+ 27.08531914893616,51.34782608695652,1.0
2070
+ 20.036666666666665,7.0,
2071
+ 20.67125,9.0,0.0
2072
+ 25.3375,32.0,1.0
2073
+ 30.195760869565216,53.4,1.0
2074
+ 35.27,65.0,2.0
2075
+ 38.27833333333333,12.5,2.0
2076
+ 32.92,23.0,1.0
2077
+ 19.8125,45.0,0.0
2078
+ 33.355000000000004,15.0,1.0
2079
+ 22.697499999999998,39.0,1.0
2080
+ 30.112499999999997,24.0,1.0
2081
+ 31.09906976744185,54.833333333333336,1.0
2082
+ 27.880000000000003,15.0,1.0
2083
+ 22.895,15.0,1.0
2084
+ 27.5775,21.666666666666668,1.0
2085
+ 30.518409090909095,55.55813953488372,1.0
2086
+ 34.18243902439024,59.025,2.0
2087
+ 19.03,12.0,0.0
2088
+ 34.2375,22.0,2.0
2089
+ 34.041458333333345,51.319148936170215,2.0
2090
+ 17.3425,11.0,
2091
+ 36.0,49.0,2.0
2092
+ 18.515,20.0,0.0
2093
+ 28.08301886792454,45.46153846153846,1.0
2094
+ 23.7175,14.0,1.0
2095
+ 24.155,14.0,
2096
+ 13.6025,48.0,0.0
2097
+ 24.016666666666666,19.0,1.0
2098
+ 29.61159574468086,50.891304347826086,1.0
2099
+ 29.83086956521739,53.48888888888889,1.0
2100
+ 26.271176470588237,47.92,1.0
2101
+ 25.380000000000003,7.0,
2102
+ 40.5275,16.0,2.0
2103
+ 38.1175,29.0,2.0
2104
+ 19.975,24.0,0.0
2105
+ 23.935,39.0,1.0
2106
+ 25.138333333333332,14.5,1.0
2107
+ 27.620810810810816,63.111111111111114,1.0
2108
+ 28.932558139534887,57.666666666666664,1.0
2109
+ 25.509999999999998,22.0,1.0
2110
+ 21.4675,35.0,1.0
2111
+ 27.579326923076923,47.31372549019608,1.0
2112
+ 32.435,13.0,1.0
2113
+ 32.91642857142856,49.645833333333336,1.0
2114
+ 25.678625000000004,57.87179487179487,1.0
2115
+ 27.430394736842107,64.78378378378379,1.0
2116
+ 27.6825,17.0,1.0
2117
+ 38.9975,64.0,2.0
2118
+ 24.9725,36.0,1.0
2119
+ 31.696938775510198,48.104166666666664,1.0
2120
+ 25.4675,10.0,
2121
+ 32.341081081081086,67.25,1.0
2122
+ 30.303499999999993,59.97435897435897,1.0
2123
+ 47.585,24.0,11.0
2124
+ 29.692179487179484,61.5,1.0
2125
+ 29.41671428571429,70.0,1.0
2126
+ 30.320326086956523,50.77777777777778,1.0
2127
+ 27.71697368421053,59.67567567567568,1.0
2128
+ 17.145,34.0,0.0
2129
+ 31.667499999999997,32.0,
2130
+ 38.6475,30.0,2.0
2131
+ 35.29510638297872,51.608695652173914,2.0
2132
+ 45.644999999999996,7.0,11.0
2133
+ 29.50595744680851,50.15217391304348,1.0
2134
+ 29.5625,25.0,1.0
2135
+ 32.28274509803921,47.62,1.0
2136
+ 31.320531914893625,50.108695652173914,1.0
2137
+ 28.82358490566038,44.23076923076923,1.0
2138
+ 34.86833333333333,11.0,2.0
2139
+ 26.68,15.0,1.0
2140
+ 29.75945652173914,51.62222222222222,1.0
2141
+ 31.941666666666663,54.77272727272727,1.0
2142
+ 40.4775,3.0,2.0
2143
+ 30.937547169811303,44.32692307692308,1.0
2144
+ 29.102894736842106,41.44642857142857,1.0
2145
+ 23.229999999999997,7.0,1.0
2146
+ 29.55369999999999,47.10204081632653,1.0
2147
+ 36.765,9.0,2.0
2148
+ 37.79166666666667,18.0,2.0
2149
+ 27.84010416666666,51.276595744680854,1.0
2150
+ 29.291666666666668,58.48780487804878,1.0
2151
+ 29.62,29.0,1.0
2152
+ 28.25967391304348,53.333333333333336,1.0
2153
+ 28.851250000000004,50.787234042553195,1.0
2154
+ 27.202375,61.84615384615385,1.0
2155
+ 21.0275,11.0,1.0
2156
+ 30.663333333333338,19.5,1.0
2157
+ 30.765,14.0,1.0
2158
+ 36.945,47.0,2.0
2159
+ 32.505625,77.29032258064517,1.0
2160
+ 12.6175,42.0,0.0
2161
+ 15.754999999999999,11.0,0.0
2162
+ 29.326525423728807,41.63793103448276,1.0
2163
+ 23.465,32.0,1.0
2164
+ 11.85,18.0,0.0
2165
+ 27.4925,6.0,1.0
2166
+ 18.13,12.0,0.0
2167
+ 20.5975,6.0,
2168
+ 28.054021739130434,49.644444444444446,1.0
2169
+ 28.941250000000004,20.333333333333332,1.0
2170
+ 29.669999999999998,59.0,1.0
2171
+ 38.8875,17.0,2.0
2172
+ 35.6575,16.0,2.0
2173
+ 47.6925,18.0,
2174
+ 28.767000000000007,59.38461538461539,1.0
2175
+ 37.41,13.0,
2176
+ 26.784999999999997,17.666666666666668,1.0
2177
+ 36.982,14.75,2.0
2178
+ 29.924634146341454,58.325,1.0
2179
+ 21.75833333333333,4.0,1.0
2180
+ 28.67810810810812,65.08333333333333,1.0
2181
+ 28.381000000000007,60.333333333333336,1.0
2182
+ 30.188431372549026,43.02,1.0
2183
+ 30.000312500000007,49.97872340425532,1.0
2184
+ 25.71,21.0,
2185
+ 29.988552631578955,60.37837837837838,1.0
2186
+ 28.85055555555555,54.09090909090909,1.0
2187
+ 35.36,22.0,2.0
2188
+ 29.60029411764706,73.81818181818181,1.0
2189
+ 24.54,17.0,1.0
2190
+ 26.605,10.0,1.0
2191
+ 30.96010638297872,50.869565217391305,1.0
2192
+ 30.477065217391303,53.68888888888889,1.0
2193
+ 29.23780487804878,58.8,1.0
2194
+ 31.038229166666657,50.297872340425535,1.0
2195
+ 25.9525,10.0,1.0
2196
+ 26.082500000000003,54.0,1.0
2197
+ 31.973260869565216,53.55555555555556,1.0
2198
+ 31.3125,40.0,
2199
+ 26.783152173913045,50.77777777777778,1.0
2200
+ 31.77375,60.666666666666664,1.0
2201
+ 28.545,28.0,1.0
2202
+ 27.594069767441855,56.523809523809526,1.0
2203
+ 30.33109756097561,56.325,1.0
2204
+ 29.035,9.0,
2205
+ 27.213611111111113,64.85714285714286,1.0
2206
+ 24.8275,5.0,1.0
2207
+ 35.961666666666666,23.5,2.0
2208
+ 17.031,16.25,0.0
2209
+ 34.54,10.0,2.0
2210
+ 26.7575,25.0,1.0
2211
+ 32.62616279069767,57.30952380952381,1.0
2212
+ 39.62833333333334,26.0,2.0
2213
+ 28.80109589041096,33.27777777777778,1.0
2214
+ 30.669222222222228,55.36363636363637,1.0
2215
+ 24.7,12.5,1.0
2216
+ 29.178181818181816,56.906976744186046,1.0
2217
+ 34.5625,19.333333333333332,2.0
2218
+ 32.0525,38.0,1.0
2219
+ 30.572499999999998,6.0,
2220
+ 31.500897435897425,59.60526315789474,1.0
2221
+ 34.875,9.0,2.0
2222
+ 21.682499999999997,51.0,1.0
2223
+ 27.147555555555552,53.29545454545455,1.0
2224
+ 28.796764705882353,73.51515151515152,1.0
2225
+ 29.732959183673465,50.25,1.0
2226
+ 29.214130434782597,51.888888888888886,1.0
2227
+ 28.8375,21.0,1.0
2228
+ 18.2775,30.0,
2229
+ 23.4775,22.0,1.0
2230
+ 40.06,22.0,2.0
2231
+ 23.52,23.0,
2232
+ 38.8625,0.0,
2233
+ 18.834999999999997,19.0,0.0
2234
+ 32.375975609756104,57.1,1.0
2235
+ 30.75882978723404,51.15217391304348,1.0
2236
+ 30.383928571428562,43.32727272727273,1.0
2237
+ 22.9975,7.0,1.0
2238
+ 30.285,5.0,
2239
+ 20.880000000000003,12.0,1.0
2240
+ 28.5975,27.0,1.0
2241
+ 26.002236842105265,56.486486486486484,1.0
2242
+ 26.4453488372093,50.404761904761905,1.0
2243
+ 33.415,13.0,1.0
2244
+ 29.9925,43.0,1.0
2245
+ 28.455,19.0,1.0
2246
+ 31.355540540540545,60.083333333333336,1.0
2247
+ 29.278409090909097,56.395348837209305,1.0
2248
+ 33.1,5.0,1.0
2249
+ 31.002692307692307,61.73684210526316,1.0
2250
+ 27.85308823529412,72.21212121212122,1.0
2251
+ 30.8375,26.0,1.0
2252
+ 40.95125,20.333333333333332,2.0
2253
+ 23.8425,7.0,1.0
2254
+ 24.947499999999998,43.0,1.0
2255
+ 38.61833333333333,16.5,2.0
2256
+ 35.895,57.0,2.0
2257
+ 28.375,8.0,1.0
2258
+ 21.785,28.0,1.0
2259
+ 27.47365853658537,58.775,1.0
2260
+ 32.17629629629629,42.16981132075472,1.0
2261
+ 36.0875,18.0,2.0
2262
+ 18.9725,1.0,
2263
+ 30.031666666666666,23.0,1.0
2264
+ 29.9725,31.0,1.0
2265
+ 27.145,6.0,
2266
+ 27.706097560975618,59.3,1.0
2267
+ 27.830487804878043,57.85,1.0
2268
+ 34.19444444444444,89.15384615384616,2.0
2269
+ 23.903333333333332,8.0,1.0
2270
+ 34.6979761904762,59.4390243902439,2.0
2271
+ 30.738962264150953,46.05769230769231,1.0
2272
+ 25.615000000000002,13.0,
2273
+ 31.439183673469387,49.270833333333336,1.0
2274
+ 29.060731707317068,58.675,1.0
2275
+ 36.2475,38.0,2.0
2276
+ 27.1025,17.0,1.0
2277
+ 36.35785714285714,50.104166666666664,2.0
2278
+ 23.3125,8.0,1.0
2279
+ 17.7625,8.0,0.0
2280
+ 29.227954545454534,56.44186046511628,1.0
2281
+ 29.83442857142857,71.08823529411765,1.0
2282
+ 29.844534883720936,57.73809523809524,1.0
2283
+ 36.55,8.0,2.0
2284
+ 20.045,20.0,0.0
2285
+ 32.16472727272727,43.092592592592595,1.0
2286
+ 31.893023255813954,57.642857142857146,1.0
2287
+ 27.826428571428565,50.729166666666664,1.0
2288
+ 34.435,33.0,
2289
+ 32.075609756097556,58.7,1.0
2290
+ 26.412073170731706,56.575,1.0
2291
+ 24.427500000000002,57.0,1.0
2292
+ 27.155,0.0,
2293
+ 44.07,64.0,11.0
2294
+ 45.38249999999999,15.0,
2295
+ 29.23673076923078,46.86274509803921,1.0
2296
+ 27.048255813953478,56.76190476190476,1.0
2297
+ 37.2575,47.0,2.0
2298
+ 32.27141304347826,53.355555555555554,1.0
2299
+ 17.8975,92.0,
2300
+ 42.55500000000001,11.0,
2301
+ 29.85,5.0,1.0
2302
+ 37.582499999999996,18.0,2.0
2303
+ 27.86744186046512,57.142857142857146,1.0
2304
+ 37.675,45.0,2.0
2305
+ 31.70083333333334,57.5609756097561,1.0
2306
+ 27.95955555555556,54.63636363636363,1.0
2307
+ 30.565340909090914,53.674418604651166,1.0
2308
+ 19.200000000000003,29.0,
2309
+ 31.8,21.0,1.0
2310
+ 32.1263888888889,67.11428571428571,1.0
2311
+ 23.93166666666667,9.0,
2312
+ 33.6525,14.0,2.0
2313
+ 32.1935,61.64102564102564,1.0
2314
+ 30.202346938775506,48.666666666666664,1.0
2315
+ 38.915,46.0,2.0
2316
+ 29.96,20.0,1.0
2317
+ 25.905,44.0,1.0
2318
+ 29.8525,45.0,1.0
2319
+ 49.055,8.0,11.0
2320
+ 31.29012195121951,58.45,1.0
2321
+ 30.64011363636363,55.44186046511628,1.0
2322
+ 27.886052631578963,42.160714285714285,1.0
2323
+ 28.916071428571428,58.609756097560975,1.0
2324
+ 29.736574074074063,43.056603773584904,1.0
2325
+ 40.4,15.0,2.0
2326
+ 26.92545454545453,55.74418604651163,1.0
2327
+ 27.0625,20.0,
2328
+ 34.835,40.0,2.0
2329
+ 28.325000000000003,15.0,1.0
2330
+ 30.802888888888887,54.45454545454545,1.0
2331
+ 20.3325,8.0,0.0
2332
+ 27.442500000000003,15.0,1.0
2333
+ 29.689999999999998,24.0,1.0
2334
+ 28.5529,47.51020408163265,1.0
2335
+ 23.026666666666667,7.5,1.0
2336
+ 34.754999999999995,13.0,2.0
2337
+ 27.018604651162786,56.30952380952381,1.0
2338
+ 28.952840909090902,53.883720930232556,1.0
2339
+ 27.744,13.25,1.0
2340
+ 30.29337209302326,55.38095238095238,1.0
2341
+ 30.222073170731708,59.2,1.0
2342
+ 27.346666666666664,24.0,1.0
2343
+ 25.799883720930236,53.76190476190476,1.0
2344
+ 30.273557692307683,47.411764705882355,1.0
2345
+ 28.032874999999997,61.15384615384615,1.0
2346
+ 41.8825,7.0,11.0
2347
+ 26.2275,12.0,
2348
+ 35.822500000000005,60.0,2.0
2349
+ 28.176899999999996,49.285714285714285,1.0
2350
+ 24.633333333333336,21.0,1.0
2351
+ 29.349666666666675,52.13636363636363,1.0
2352
+ 29.38743902439024,59.25,1.0
2353
+ 23.6175,14.0,1.0
2354
+ 18.33,22.0,
2355
+ 27.412500000000005,49.8936170212766,1.0
2356
+ 26.913589743589746,60.44736842105263,1.0
2357
+ 15.34,44.0,0.0
2358
+ 31.447499999999998,14.0,
2359
+ 34.3125,17.666666666666668,2.0
2360
+ 32.0796511627907,56.42857142857143,1.0
2361
+ 29.65365853658537,59.65,1.0
2362
+ 29.840853658536584,60.175,1.0
2363
+ 26.109222222222233,53.20454545454545,1.0
2364
+ 30.102894736842103,43.392857142857146,1.0
2365
+ 27.311304347826084,52.93333333333333,1.0
2366
+ 27.7925,53.0,1.0
2367
+ 31.72855555555555,54.5,1.0
2368
+ 26.82,12.0,
2369
+ 28.224142857142855,68.32352941176471,1.0
2370
+ 27.995978260869556,51.2,1.0
2371
+ 29.14726190476191,56.926829268292686,1.0
2372
+ 34.13833333333333,9.5,2.0
2373
+ 27.575100000000006,42.44897959183673,1.0
2374
+ 30.051956521739132,52.333333333333336,1.0
2375
+ 19.95,34.0,0.0
2376
+ 29.598333333333333,25.5,1.0
2377
+ 26.085,6.0,
2378
+ 29.159999999999993,48.86,1.0
2379
+ 30.0075,53.0,1.0
2380
+ 38.5275,10.0,2.0
2381
+ 21.91,12.0,1.0
2382
+ 28.566222222222223,55.18181818181818,1.0
2383
+ 25.259999999999998,30.0,1.0
2384
+ 31.87190476190476,55.97560975609756,1.0
2385
+ 29.827558139534883,58.23809523809524,1.0
2386
+ 29.450416666666666,67.45714285714286,1.0
2387
+ 32.39,49.041666666666664,1.0
2388
+ 41.1575,30.0,2.0
2389
+ 37.1175,49.0,2.0
2390
+ 20.2325,30.0,0.0
2391
+ 21.265,16.333333333333332,1.0
2392
+ 18.33,53.0,0.0
2393
+ 30.19666666666667,18.0,1.0
2394
+ 27.626511627906982,57.19047619047619,1.0
2395
+ 36.515,9.0,2.0
2396
+ 27.90911764705882,47.12,1.0
2397
+ 27.94978723404256,51.608695652173914,1.0
2398
+ 23.811666666666667,11.0,1.0
2399
+ 42.474999999999994,10.0,11.0
2400
+ 28.24952380952381,57.609756097560975,1.0
2401
+ 28.42,25.0,1.0
2402
+ 29.663207547169808,46.76923076923077,1.0
2403
+ 32.25,23.0,1.0
2404
+ 16.69333333333333,17.5,0.0
2405
+ 22.377499999999998,3.0,1.0
2406
+ 32.46,11.0,1.0
2407
+ 25.176666666666666,24.0,1.0
2408
+ 38.85,12.0,2.0
2409
+ 38.167500000000004,56.0,2.0
2410
+ 27.48,62.0,1.0
2411
+ 31.365000000000002,16.0,1.0
2412
+ 26.33333333333334,51.1063829787234,1.0
2413
+ 33.89486111111111,65.57142857142857,2.0
2414
+ 35.0175,15.0,2.0
2415
+ 32.42380952380953,57.09756097560975,1.0
2416
+ 24.099886363636358,56.25581395348837,1.0
2417
+ 28.7725,6.0,
2418
+ 31.630000000000003,34.0,1.0
2419
+ 24.28,10.0,
2420
+ 29.632040816326523,49.229166666666664,1.0
2421
+ 27.22,12.0,1.0
2422
+ 30.916249999999998,17.333333333333332,1.0
2423
+ 30.701785714285716,58.8780487804878,1.0
2424
+ 29.644999999999996,75.45161290322581,1.0
2425
+ 28.24,35.5,1.0
2426
+ 28.082500000000003,45.0,1.0
2427
+ 31.631750000000004,59.8974358974359,1.0
2428
+ 29.23,68.12121212121212,1.0
2429
+ 50.129999999999995,36.0,11.0
2430
+ 31.84536585365854,59.15,1.0
2431
+ 31.321666666666665,58.78048780487805,1.0
2432
+ 28.235813953488375,57.904761904761905,1.0
2433
+ 34.8825,10.0,2.0
2434
+ 27.79472972972974,66.0,1.0
2435
+ 36.7975,17.0,2.0
2436
+ 26.92833333333333,12.0,1.0
2437
+ 41.39666666666667,10.0,2.0
2438
+ 29.990000000000002,10.0,1.0
2439
+ 35.559999999999995,103.5,2.0
2440
+ 28.342888888888886,53.22727272727273,1.0
2441
+ 27.287727272727263,55.93023255813954,1.0
2442
+ 23.268333333333334,16.5,1.0
2443
+ 30.566538461538467,61.05263157894737,1.0
2444
+ 32.31333333333333,28.0,1.0
2445
+ 27.11954545454545,54.55813953488372,1.0
2446
+ 30.994999999999997,42.0,1.0
2447
+ 29.179074074074077,91.03846153846153,1.0
2448
+ 32.1084375,51.57446808510638,1.0
2449
+ 30.4225,5.0,1.0
2450
+ 23.177500000000002,10.0,
2451
+ 46.475,35.0,11.0
2452
+ 31.05666666666667,5.0,1.0
2453
+ 31.817500000000003,39.0,1.0
2454
+ 18.06833333333333,16.5,0.0
2455
+ 21.42833333333333,28.5,1.0
2456
+ 24.7475,39.0,1.0
2457
+ 32.925,28.0,1.0
2458
+ 31.56028571428572,66.02941176470588,1.0
2459
+ 28.575100000000006,43.265306122448976,1.0
2460
+ 35.0925,26.0,2.0
2461
+ 37.754999999999995,35.0,
2462
+ 21.0175,22.0,
2463
+ 34.7825,12.0,2.0
2464
+ 32.74,7.0,1.0
2465
+ 25.947972972972966,67.5,1.0
2466
+ 29.066714285714287,69.3529411764706,1.0
2467
+ 31.125,6.0,1.0
2468
+ 31.56779069767441,56.166666666666664,1.0
2469
+ 29.373243243243248,60.0,1.0
2470
+ 44.16,3.0,
2471
+ 29.97375,20.0,1.0
2472
+ 30.140568181818175,52.395348837209305,1.0
2473
+ 23.0325,33.0,1.0
2474
+ 19.23,14.0,0.0
2475
+ 29.171515151515155,75.1875,1.0
2476
+ 32.58617647058824,48.14,1.0
2477
+ 26.334891304347824,52.44444444444444,1.0
2478
+ 30.730121951219516,58.975,1.0
2479
+ 31.770816326530603,49.958333333333336,1.0
2480
+ 28.50940476190476,57.41463414634146,1.0
2481
+ 30.81,69.48484848484848,1.0
2482
+ 32.37887500000001,61.794871794871796,1.0
2483
+ 21.38,14.5,1.0
2484
+ 16.425,13.666666666666666,0.0
2485
+ 41.272499999999994,7.0,
2486
+ 20.1875,33.0,0.0
2487
+ 25.9925,18.0,1.0
2488
+ 27.060000000000002,40.0,1.0
2489
+ 27.325,6.0,1.0
2490
+ 28.108625,57.92307692307692,1.0
2491
+ 41.806666666666665,14.5,11.0
2492
+ 29.701399999999992,47.10204081632653,1.0
2493
+ 27.822499999999998,19.0,1.0
2494
+ 30.325555555555557,68.74285714285715,1.0
2495
+ 33.0675,10.0,
2496
+ 30.682916666666667,46.851063829787236,1.0
2497
+ 31.2075,25.0,1.0
2498
+ 30.69333333333333,12.0,1.0
2499
+ 16.77,15.0,
2500
+ 30.068365384615383,47.31372549019608,1.0
2501
+ 25.311444444444437,55.11363636363637,1.0
2502
+ 29.78513888888889,58.714285714285715,1.0
2503
+ 30.685624999999995,61.8974358974359,1.0
2504
+ 27.2125,4.0,1.0
2505
+ 30.060000000000013,61.94444444444444,1.0
2506
+ 33.04977777777777,50.75,1.0
2507
+ 29.246874999999992,50.680851063829785,1.0
2508
+ 29.979736842105265,61.32432432432432,1.0
2509
+ 25.236842105263154,60.78378378378378,1.0
2510
+ 28.659130434782607,53.31111111111111,1.0
2511
+ 33.80478260869565,52.48888888888889,2.0
2512
+ 46.083,12.5,11.0
2513
+ 28.490000000000002,21.0,1.0
2514
+ 26.965,22.5,1.0
2515
+ 30.46262500000001,61.48717948717949,1.0
2516
+ 22.6,24.0,1.0
2517
+ 22.8825,21.0,1.0
2518
+ 17.2225,30.0,0.0
2519
+ 29.0575,42.96363636363636,1.0
2520
+ 28.05115384615385,63.21052631578947,1.0
2521
+ 23.80333333333333,13.0,1.0
2522
+ 7.535,7.0,0.0
2523
+ 34.8275,5.0,2.0
2524
+ 28.624090909090906,72.0625,1.0
2525
+ 29.718522727272713,54.83720930232558,1.0
2526
+ 33.705,18.0,
2527
+ 28.936111111111106,53.88636363636363,1.0
2528
+ 30.869404761904757,56.31707317073171,1.0
2529
+ 30.03375,55.116279069767444,1.0
2530
+ 32.00657407407407,44.301886792452834,1.0
2531
+ 31.39627659574468,50.15217391304348,1.0
2532
+ 30.100869565217405,53.13333333333333,1.0
2533
+ 18.496666666666666,27.5,0.0
2534
+ 31.869749999999993,62.666666666666664,1.0
2535
+ 32.504999999999995,20.0,1.0
2536
+ 31.014999999999993,47.88,1.0
2537
+ 28.76511627906977,53.04761904761905,1.0
2538
+ 31.405,5.0,1.0
2539
+ 24.933333333333334,13.0,1.0
2540
+ 21.3875,13.0,
2541
+ 31.25666666666667,53.68181818181818,1.0
2542
+ 26.415,42.0,1.0
2543
+ 39.427499999999995,22.0,
2544
+ 19.5375,22.0,
2545
+ 31.373771929824564,42.535714285714285,1.0
2546
+ 38.74625,16.333333333333332,2.0
2547
+ 32.81814285714285,66.1470588235294,1.0
2548
+ 28.77536585365853,60.325,1.0
2549
+ 33.21776315789474,65.72972972972973,1.0
2550
+ 29.539999999999996,57.38095238095238,1.0
2551
+ 26.067500000000003,3.0,
2552
+ 29.197499999999998,44.0,1.0
2553
+ 32.947361111111114,68.85714285714286,1.0
2554
+ 32.817499999999995,60.0,1.0
2555
+ 32.276666666666664,61.81578947368421,1.0
2556
+ 29.659999999999997,29.0,1.0
2557
+ 19.9625,2.0,0.0
2558
+ 20.4775,5.0,
2559
+ 28.469444444444438,54.56818181818182,1.0
2560
+ 23.53833333333333,26.0,1.0
2561
+ 45.225,15.0,
2562
+ 28.16529411764706,68.81818181818181,1.0
2563
+ 30.655,17.5,1.0
2564
+ 36.435,15.0,2.0
2565
+ 26.865,22.0,1.0
2566
+ 38.5975,8.0,2.0
2567
+ 15.518333333333333,26.0,0.0
2568
+ 28.83,15.0,1.0
2569
+ 33.3125,33.0,1.0
2570
+ 30.1075,2.0,1.0
2571
+ 25.73,9.0,
2572
+ 31.90314814814815,45.64150943396226,1.0
2573
+ 30.695930232558137,56.285714285714285,1.0
2574
+ 17.4675,3.0,0.0
2575
+ 38.0775,12.0,2.0
2576
+ 23.1025,14.0,
2577
+ 18.241666666666664,21.5,0.0
2578
+ 25.65125,14.666666666666666,1.0
2579
+ 19.9075,1.0,0.0
2580
+ 28.603977272727267,53.95348837209303,1.0
2581
+ 30.206704545454556,56.16279069767442,1.0
2582
+ 25.141666666666666,32.5,1.0
2583
+ 32.3975,36.0,1.0
2584
+ 29.405666666666672,77.06896551724138,1.0
2585
+ 30.200000000000003,10.0,1.0
2586
+ 30.68364864864865,61.80555555555556,1.0
2587
+ 29.099891304347832,49.93333333333333,1.0
2588
+ 27.980595238095248,55.80487804878049,1.0
2589
+ 27.690000000000005,60.575,1.0
2590
+ 26.852826086956522,52.355555555555554,1.0
2591
+ 29.443555555555562,55.34090909090909,1.0
2592
+ 20.27,21.0,0.0
2593
+ 32.53666666666667,22.5,1.0
2594
+ 25.525,63.0,1.0
2595
+ 36.832499999999996,37.0,2.0
2596
+ 29.450675675675676,64.05555555555556,1.0
2597
+ 45.6525,19.0,
2598
+ 19.1375,13.0,0.0
2599
+ 26.89255555555556,53.72727272727273,1.0
2600
+ 26.908170731707315,60.3,1.0
2601
+ 30.72662790697675,56.45238095238095,1.0
2602
+ 25.5175,6.0,
2603
+ 28.94988095238095,58.170731707317074,1.0
2604
+ 27.468,82.6896551724138,1.0
2605
+ 25.945,5.0,1.0
2606
+ 24.887244897959178,49.104166666666664,1.0
2607
+ 31.418552631578958,58.83783783783784,1.0
2608
+ 32.6975,5.0,1.0
2609
+ 27.90448717948718,62.63157894736842,1.0
2610
+ 19.8425,13.0,0.0
2611
+ 24.755,22.0,1.0
2612
+ 35.9125,6.0,2.0
2613
+ 30.180000000000007,11.25,1.0
2614
+ 17.365,2.0,0.0
2615
+ 30.79345238095238,58.26829268292683,1.0
2616
+ 28.875975609756104,58.7,1.0
2617
+ 29.867567567567566,66.77777777777777,1.0
2618
+ 30.9640243902439,60.225,1.0
2619
+ 25.725,7.0,
2620
+ 31.064999999999998,15.0,1.0
2621
+ 32.118750000000006,56.56410256410256,1.0
2622
+ 27.387307692307694,62.921052631578945,1.0
2623
+ 26.675,7.0,1.0
2624
+ 38.417500000000004,10.0,2.0
2625
+ 31.815399999999986,46.87755102040816,1.0
2626
+ 26.465,5.0,2.0
2627
+ 20.513333333333332,17.5,0.0
2628
+ 32.3942372881356,41.13793103448276,1.0
2629
+ 25.77921875,75.70967741935483,1.0
2630
+ 25.265,6.0,1.0
2631
+ 24.898333333333337,10.5,1.0
2632
+ 31.21450980392157,47.32,1.0
2633
+ 34.769999999999996,5.0,1.0
2634
+ 24.425,21.0,1.0
2635
+ 32.0925,24.0,1.0
2636
+ 25.546093750000004,77.80645161290323,1.0
2637
+ 28.36208333333333,50.659574468085104,1.0
2638
+ 21.498333333333335,27.5,1.0
2639
+ 27.353048780487804,60.3,1.0
2640
+ 19.997500000000002,15.0,0.0
2641
+ 42.5175,9.0,11.0
2642
+ 27.067500000000003,8.0,1.0
2643
+ 27.29740384615384,46.72549019607843,1.0
2644
+ 31.615,30.5,1.0
2645
+ 29.54666666666667,43.58490566037736,1.0
2646
+ 36.23125,18.0,2.0
2647
+ 28.084999999999997,20.5,1.0
2648
+ 28.281976744186046,55.11904761904762,1.0
2649
+ 29.790468749999995,74.64516129032258,1.0
2650
+ 31.97622222222222,54.90909090909091,1.0
2651
+ 31.30077777777777,54.68181818181818,1.0
2652
+ 27.139431818181823,55.116279069767444,1.0
2653
+ 32.92,53.04347826086956,1.0
2654
+ 29.01476190476191,57.4390243902439,1.0
2655
+ 31.622500000000002,29.0,1.0
2656
+ 31.195000000000004,10.5,1.0
2657
+ 21.880000000000003,5.0,1.0
2658
+ 33.335,7.0,1.0
2659
+ 23.047500000000003,17.0,1.0
2660
+ 30.88,13.0,
2661
+ 45.935,18.0,11.0
2662
+ 30.38088888888889,51.5,1.0
2663
+ 28.849749999999993,61.58974358974359,1.0
2664
+ 35.6625,27.0,2.0
2665
+ 33.44738095238095,58.51219512195122,1.0
2666
+ 9.675,35.0,0.0
2667
+ 30.974999999999998,28.0,1.0
2668
+ 20.451666666666668,12.5,0.0
2669
+ 24.200138888888894,66.94285714285714,1.0
2670
+ 26.456666666666667,13.0,1.0
2671
+ 30.71666666666667,13.5,1.0
2672
+ 29.11744186046511,56.095238095238095,1.0
2673
+ 28.1825,9.0,
2674
+ 30.167129629629624,45.283018867924525,1.0
2675
+ 45.3,5.0,11.0
2676
+ 37.3125,7.0,2.0
2677
+ 35.5525,14.0,
2678
+ 29.82530612244899,50.458333333333336,1.0
2679
+ 31.278953488372085,57.11904761904762,1.0
2680
+ 28.155425531914887,52.891304347826086,1.0
2681
+ 29.8017924528302,43.01923076923077,1.0
2682
+ 15.8275,10.0,0.0
2683
+ 19.8225,3.0,0.0
2684
+ 37.293749999999996,21.333333333333332,2.0
2685
+ 29.859625,62.666666666666664,1.0
2686
+ 29.092105263157894,65.1891891891892,1.0
2687
+ 29.573899999999995,49.08163265306123,1.0
2688
+ 41.39666666666667,7.5,2.0
2689
+ 35.2225,18.0,
2690
+ 21.854999999999997,36.0,1.0
2691
+ 19.008333333333333,26.0,0.0
2692
+ 24.224999999999998,47.0,1.0
2693
+ 39.86,26.0,2.0
2694
+ 30.620526315789473,59.4054054054054,1.0
2695
+ 26.725,15.0,1.0
2696
+ 28.861666666666675,50.191489361702125,1.0
2697
+ 30.2025,14.0,
2698
+ 28.149651162790697,56.595238095238095,1.0
2699
+ 26.585,43.0,1.0
2700
+ 32.639210526315786,62.486486486486484,1.0
2701
+ 35.1325,10.0,2.0
2702
+ 30.87,38.0,1.0
2703
+ 31.955000000000002,30.0,1.0
2704
+ 22.97,38.0,1.0
2705
+ 28.073289473684213,64.45945945945945,1.0
2706
+ 30.830263157894734,42.92857142857143,1.0
2707
+ 24.6925,12.0,1.0
2708
+ 29.755609756097556,55.325,1.0
2709
+ 29.62878048780488,57.225,1.0
2710
+ 27.87329545454546,55.95348837209303,1.0
2711
+ 31.54,8.0,1.0
2712
+ 27.66707317073171,57.45,1.0
2713
+ 27.8125,32.0,1.0
2714
+ 33.31951612903225,75.7,1.0
2715
+ 35.961666666666666,13.0,
2716
+ 29.696707317073166,59.55,1.0
2717
+ 30.02329545454546,56.02325581395349,1.0
2718
+ 29.322714285714294,71.97058823529412,1.0
2719
+ 26.94,2.0,1.0
2720
+ 45.510000000000005,24.0,11.0
2721
+ 29.9625,7.0,
2722
+ 25.18,5.0,1.0
2723
+ 32.2875,5.0,1.0
2724
+ 31.310000000000002,21.0,1.0
2725
+ 22.451666666666664,28.0,1.0
2726
+ 31.349999999999994,67.55555555555556,1.0
2727
+ 28.0,17.0,
2728
+ 29.779782608695655,52.08888888888889,1.0
2729
+ 28.8407,48.95918367346939,1.0
2730
+ 24.86,15.0,
2731
+ 39.9975,19.0,2.0
2732
+ 24.6425,23.0,1.0
2733
+ 23.716666666666665,19.5,1.0
2734
+ 13.885,20.0,0.0
2735
+ 30.1575,13.0,1.0
2736
+ 31.268,48.44897959183673,1.0
2737
+ 30.265,3.0,1.0
2738
+ 36.6275,12.0,2.0
2739
+ 31.3125,58.4390243902439,1.0
2740
+ 31.02290322580645,75.83333333333333,1.0
2741
+ 25.994142857142855,65.79411764705883,1.0
2742
+ 28.585,17.0,1.0
2743
+ 23.01,19.0,1.0
2744
+ 30.026333333333326,52.72727272727273,1.0
2745
+ 26.708448275862064,80.71428571428571,1.0
2746
+ 24.799767441860467,57.142857142857146,1.0
2747
+ 27.2053125,48.340425531914896,1.0
2748
+ 25.565384615384612,62.18421052631579,1.0
2749
+ 26.248673469387754,49.145833333333336,1.0
2750
+ 29.403928571428565,59.78048780487805,1.0
2751
+ 30.515,12.0,1.0
2752
+ 42.0325,6.0,
2753
+ 35.821666666666665,20.0,2.0
2754
+ 40.37833333333334,31.5,1.0
2755
+ 20.299999999999997,13.0,0.0
2756
+ 28.4775,20.0,1.0
2757
+ 30.60166666666667,31.5,1.0
2758
+ 27.316770833333326,47.680851063829785,1.0
2759
+ 29.252499999999998,3.0,
2760
+ 26.62,22.0,1.0
2761
+ 30.629599999999996,48.59183673469388,1.0
2762
+ 28.131999999999998,61.46153846153846,1.0
2763
+ 29.924433962264153,45.01923076923077,1.0
2764
+ 28.905681818181804,52.04651162790697,1.0
2765
+ 39.653749999999995,12.0,2.0
2766
+ 33.69842105263157,63.75675675675676,2.0
2767
+ 32.4275,52.0,1.0
2768
+ 34.70333333333333,27.5,2.0
2769
+ 24.383749999999996,51.148936170212764,1.0
2770
+ 26.450116279069768,57.23809523809524,1.0
2771
+ 29.42134146341463,51.95,1.0
2772
+ 28.99098039215686,46.52,1.0
2773
+ 27.63035714285714,57.292682926829265,1.0
2774
+ 27.24,10.0,1.0
2775
+ 30.90833333333333,24.0,1.0
2776
+ 29.473000000000003,16.5,1.0
2777
+ 31.24445945945946,65.63888888888889,1.0
2778
+ 31.87589743589744,63.973684210526315,1.0
2779
+ 40.7875,16.0,2.0
2780
+ 28.0247619047619,58.829268292682926,1.0
2781
+ 30.519615384615385,44.411764705882355,1.0
2782
+ 28.794807692307693,47.588235294117645,1.0
2783
+ 22.755,15.5,1.0
2784
+ 13.985,8.0,0.0
2785
+ 12.105,18.0,0.0
2786
+ 21.13333333333333,11.5,1.0
2787
+ 35.72,15.0,2.0
2788
+ 28.696447368421044,62.4054054054054,1.0
2789
+ 25.721666666666664,12.0,1.0
2790
+ 28.44,43.763636363636365,1.0
2791
+ 18.975,16.0,
2792
+ 30.71469387755102,49.041666666666664,1.0
2793
+ 29.410086206896544,42.421052631578945,1.0
2794
+ 26.412755102040816,49.5,1.0
2795
+ 25.6575,6.0,
2796
+ 18.5,16.0,0.0
2797
+ 35.525,35.0,2.0
2798
+ 28.416363636363634,65.84375,1.0
2799
+ 29.078571428571422,48.895833333333336,1.0
2800
+ 16.9625,1.0,
2801
+ 37.595,30.0,
2802
+ 27.880113636363635,55.58139534883721,1.0
2803
+ 30.6804347826087,53.51111111111111,1.0
2804
+ 33.36738095238096,56.146341463414636,1.0
2805
+ 35.541666666666664,10.5,2.0
2806
+ 29.22,6.0,1.0
2807
+ 33.53333333333334,9.0,1.0
2808
+ 41.865,9.5,11.0
2809
+ 23.1675,26.0,1.0
2810
+ 30.03527027027027,67.08333333333333,1.0
2811
+ 31.46604166666667,49.723404255319146,1.0
2812
+ 43.82875,19.333333333333332,11.0
2813
+ 26.075,20.5,1.0
2814
+ 27.716874999999998,61.666666666666664,1.0
2815
+ 28.85343750000001,49.97872340425532,1.0
2816
+ 29.754743589743587,61.55263157894737,1.0
2817
+ 31.00790909090909,43.592592592592595,1.0
2818
+ 33.345921052631574,63.7027027027027,1.0
2819
+ 29.212023809523803,55.1219512195122,1.0
2820
+ 30.590833333333336,51.51063829787234,1.0
2821
+ 29.835555555555555,67.88571428571429,1.0
2822
+ 32.25681818181818,54.116279069767444,1.0
2823
+ 16.2,16.0,0.0
2824
+ 31.148875000000004,58.51282051282051,1.0
2825
+ 28.5125,25.0,1.0
2826
+ 28.979999999999993,49.1875,1.0
2827
+ 29.009027777777778,70.0,1.0
2828
+ 45.6675,21.0,11.0
2829
+ 40.33,27.0,2.0
2830
+ 29.051521739130433,52.62222222222222,1.0
2831
+ 30.015,36.0,1.0
2832
+ 18.325,34.0,0.0
2833
+ 25.5575,30.0,1.0
2834
+ 31.7009375,49.48936170212766,1.0
2835
+ 24.1025,5.0,1.0
2836
+ 27.8625,11.0,1.0
2837
+ 32.833452380952394,59.36585365853659,1.0
2838
+ 24.39,11.0,1.0
2839
+ 32.87033333333334,54.09090909090909,1.0
2840
+ 34.1075,15.0,2.0
2841
+ 29.060188679245293,46.05769230769231,1.0
2842
+ 21.23,66.0,1.0
2843
+ 25.6625,38.0,1.0
2844
+ 28.23288888888889,53.18181818181818,1.0
2845
+ 25.112820512820512,62.60526315789474,1.0
2846
+ 27.115000000000002,9.0,
2847
+ 29.390731707317077,57.525,1.0
2848
+ 27.180116279069765,51.404761904761905,1.0
2849
+ 21.1425,29.0,1.0
2850
+ 27.479999999999997,3.0,1.0
2851
+ 28.065,24.0,1.0
2852
+ 28.807261904761905,56.31707317073171,1.0
2853
+ 32.1834693877551,48.833333333333336,1.0
2854
+ 29.879404761904766,59.073170731707314,1.0
2855
+ 29.0,4.0,
2856
+ 27.928552631578942,63.027027027027025,1.0
2857
+ 29.591511627906975,54.45238095238095,1.0
2858
+ 46.980000000000004,38.0,11.0
2859
+ 30.39963414634147,58.7,1.0
2860
+ 31.625357142857144,58.53658536585366,1.0
2861
+ 17.7725,23.0,0.0
2862
+ 39.96125,12.333333333333334,2.0
2863
+ 27.94034090909091,55.44186046511628,1.0
2864
+ 27.653333333333336,30.0,1.0
2865
+ 30.71488372093024,56.26190476190476,1.0
2866
+ 44.59,9.5,11.0
2867
+ 17.87,9.0,0.0
2868
+ 26.408039215686273,46.96,1.0
2869
+ 31.87027027027027,60.916666666666664,1.0
2870
+ 34.486428571428576,55.78048780487805,2.0
2871
+ 34.132763157894736,65.08108108108108,2.0
2872
+ 33.2625,8.0,1.0
2873
+ 22.465,9.0,1.0
2874
+ 33.04329545454546,56.116279069767444,1.0
2875
+ 36.3375,15.0,2.0
2876
+ 27.3075,3.0,1.0
2877
+ 31.288111111111125,53.54545454545455,1.0
2878
+ 28.605,34.0,1.0
2879
+ 45.625,42.0,11.0
2880
+ 25.775000000000002,7.0,
2881
+ 27.850510204081626,49.729166666666664,1.0
2882
+ 47.19333333333333,18.0,
2883
+ 31.7225,12.0,
2884
+ 39.31,28.5,2.0
2885
+ 30.641944444444448,42.528301886792455,1.0
2886
+ 18.9225,17.0,0.0
2887
+ 25.16727272727272,55.13953488372093,1.0
2888
+ 39.03,5.0,2.0
2889
+ 31.93614583333334,50.46808510638298,1.0
2890
+ 29.868,48.97959183673469,1.0
2891
+ 20.981666666666666,16.0,1.0
2892
+ 26.052051282051284,61.473684210526315,1.0
2893
+ 29.430400000000006,49.61224489795919,1.0
2894
+ 31.602613636363643,55.58139534883721,1.0
2895
+ 29.71010638297873,51.58695652173913,1.0
2896
+ 28.4925,24.0,1.0
2897
+ 25.619999999999997,4.0,1.0
2898
+ 26.684000000000005,13.75,1.0
2899
+ 38.48875,14.0,2.0
2900
+ 34.55,15.0,
2901
+ 26.320909090909087,56.7906976744186,1.0
2902
+ 29.24325581395349,56.214285714285715,1.0
2903
+ 25.933265306122443,49.5625,1.0
2904
+ 32.16295081967213,38.516666666666666,1.0
2905
+ 30.481666666666666,16.0,1.0
2906
+ 29.167499999999997,13.0,1.0
2907
+ 29.63163043478261,53.53333333333333,1.0
2908
+ 27.24777777777778,53.77272727272727,1.0
2909
+ 28.36,15.0,
2910
+ 26.911666666666665,15.0,1.0
2911
+ 30.227307692307694,62.76315789473684,1.0
2912
+ 27.94459459459459,62.72222222222222,1.0
2913
+ 31.331666666666667,19.5,1.0
2914
+ 21.155,19.0,1.0
2915
+ 30.439999999999998,7.0,1.0
2916
+ 31.579324324324322,64.55555555555556,1.0
2917
+ 22.785,7.0,1.0
2918
+ 18.9675,11.0,0.0
2919
+ 36.41166666666667,20.5,2.0
2920
+ 30.940952380952385,57.5609756097561,1.0
2921
+ 8.0625,14.0,0.0
2922
+ 39.22,4.0,2.0
2923
+ 30.900270270270276,66.58333333333333,1.0
2924
+ 29.46272727272727,44.407407407407405,1.0
2925
+ 30.4825,54.0,1.0
2926
+ 31.590000000000003,16.5,1.0
2927
+ 28.54461538461539,63.3421052631579,1.0
2928
+ 24.054204545454546,56.27906976744186,1.0
2929
+ 30.691100000000006,48.95918367346939,1.0
2930
+ 40.395,18.0,2.0
2931
+ 30.236734693877544,47.9375,1.0
2932
+ 27.009999999999998,10.0,1.0
2933
+ 32.6425,16.0,
2934
+ 31.63618421052631,64.21621621621621,1.0
2935
+ 29.08,36.0,1.0
2936
+ 25.445,12.0,1.0
2937
+ 15.155,32.0,0.0
2938
+ 41.18333333333334,19.5,2.0
2939
+ 31.984500000000004,61.8974358974359,1.0
2940
+ 19.326666666666668,28.0,0.0
2941
+ 27.088749999999997,44.18181818181818,1.0
2942
+ 30.867236842105275,62.5945945945946,1.0
2943
+ 28.45662162162163,65.63888888888889,1.0
2944
+ 32.50397435897436,67.57894736842105,1.0
2945
+ 13.74,36.0,0.0
2946
+ 26.0,50.0,1.0
2947
+ 38.165,10.5,2.0
2948
+ 29.061326530612252,50.583333333333336,1.0
2949
+ 29.70675675675676,65.58333333333333,1.0
2950
+ 29.078378378378375,67.41666666666667,1.0
2951
+ 56.004999999999995,3.0,11.0
2952
+ 37.355,41.0,2.0
2953
+ 30.52352272727272,52.325581395348834,1.0
2954
+ 27.398214285714282,58.292682926829265,1.0
2955
+ 30.329418604651185,55.88095238095238,1.0
2956
+ 26.4875,10.0,1.0
2957
+ 28.778269230769236,45.31372549019608,1.0
2958
+ 31.308026315789473,63.86486486486486,1.0
2959
+ 32.455,37.0,1.0
2960
+ 33.042500000000004,32.0,1.0
2961
+ 34.19795918367347,48.854166666666664,2.0
2962
+ 30.39095238095239,52.58536585365854,1.0
2963
+ 32.5496052631579,62.67567567567568,1.0
2964
+ 28.95588235294117,48.44,1.0
2965
+ 30.539245283018875,47.0,1.0
2966
+ 38.035,36.0,2.0
2967
+ 32.403333333333336,14.0,1.0
2968
+ 30.332195121951212,60.275,1.0
2969
+ 25.3125,7.0,1.0
2970
+ 25.125,25.5,1.0
2971
+ 12.8525,13.0,0.0
2972
+ 27.12375,13.333333333333334,1.0
2973
+ 40.995000000000005,39.0,2.0
2974
+ 29.505131578947367,64.94594594594595,1.0
2975
+ 29.938333333333333,35.0,1.0
2976
+ 31.902358490566026,45.57692307692308,1.0
2977
+ 26.204545454545453,56.06976744186046,1.0
2978
+ 27.82,2.0,1.0
2979
+ 31.196874999999995,58.69230769230769,1.0
2980
+ 30.587790697674414,55.595238095238095,1.0
2981
+ 22.15,16.0,
2982
+ 28.050238095238093,54.390243902439025,1.0
2983
+ 14.07,33.0,0.0
2984
+ 32.089999999999996,64.89189189189189,1.0
2985
+ 30.2756862745098,47.98,1.0
2986
+ 33.010333333333335,54.95454545454545,1.0
2987
+ 44.155,40.0,11.0
2988
+ 27.094893617021267,53.0,1.0
2989
+ 35.655,62.0,2.0
2990
+ 38.0275,22.0,2.0
2991
+ 29.393375,59.46153846153846,1.0
2992
+ 29.13656862745098,46.92,1.0
2993
+ 32.94499999999999,45.6530612244898,1.0
2994
+ 31.8375,21.0,1.0
2995
+ 26.991630434782614,50.666666666666664,1.0
2996
+ 33.2525,16.0,1.0
2997
+ 29.965,10.0,1.0
2998
+ 20.98,8.0,1.0
2999
+ 21.371666666666666,34.0,1.0
3000
+ 32.28960784313726,46.44,1.0
3001
+ 17.4875,6.0,
3002
+ 32.405,21.0,1.0
3003
+ 29.668333333333333,5.5,1.0
3004
+ 28.1,14.0,
3005
+ 31.905921052631577,63.13513513513514,1.0
3006
+ 19.1675,25.0,0.0
3007
+ 36.504999999999995,11.0,2.0
3008
+ 33.788333333333334,9.4,2.0
3009
+ 12.072500000000002,6.0,0.0
3010
+ 27.54846153846154,61.55263157894737,1.0
3011
+ 31.257111111111108,54.88636363636363,1.0
3012
+ 37.7625,17.0,
3013
+ 30.8975,13.0,
3014
+ 50.288333333333334,16.5,11.0
3015
+ 28.68488888888889,54.79545454545455,1.0
3016
+ 28.416578947368418,61.2972972972973,1.0
3017
+ 29.13265957446809,52.30434782608695,1.0
3018
+ 24.3575,27.0,1.0
3019
+ 42.9975,36.0,
3020
+ 28.67095744680851,51.08695652173913,1.0
3021
+ 27.3625,24.0,1.0
3022
+ 29.128902439024387,59.025,1.0
3023
+ 28.084042553191484,53.08695652173913,1.0
3024
+ 22.55,20.0,1.0
3025
+ 39.8725,6.0,2.0
3026
+ 27.571568627450983,47.76,1.0
3027
+ 35.900000000000006,64.0,2.0
3028
+ 26.858205128205125,63.94736842105263,1.0
3029
+ 29.5524358974359,61.63157894736842,1.0
3030
+ 26.343114754098355,40.6,1.0
3031
+ 15.8525,57.0,0.0
3032
+ 25.015,12.0,
3033
+ 31.771666666666672,5.5,1.0
3034
+ 32.554583333333326,63.114285714285714,1.0
3035
+ 26.93602040816327,48.875,1.0
3036
+ 32.98166666666666,14.0,1.0
3037
+ 29.387564102564102,60.526315789473685,1.0
3038
+ 27.719871794871803,60.3421052631579,1.0
3039
+ 29.9725,21.0,1.0
3040
+ 36.105000000000004,12.0,
3041
+ 30.269148936170197,51.58695652173913,1.0
3042
+ 14.96,5.0,0.0
3043
+ 30.606000000000005,53.47727272727273,1.0
3044
+ 19.825,5.0,0.0
3045
+ 20.58,17.0,0.0
3046
+ 33.485,15.0,1.0
3047
+ 29.622446808510634,48.391304347826086,1.0
3048
+ 25.398750000000003,15.666666666666666,1.0
3049
+ 31.743918918918915,62.44444444444444,1.0
3050
+ 23.180000000000003,24.5,1.0
3051
+ 24.447,13.5,1.0
3052
+ 25.210340909090913,55.55813953488372,1.0
3053
+ 29.482619047619046,59.073170731707314,1.0
3054
+ 44.682500000000005,15.666666666666666,11.0
3055
+ 14.881666666666666,20.5,0.0
3056
+ 22.65,14.0,1.0
3057
+ 30.0953,49.63265306122449,1.0
3058
+ 31.71,20.0,
3059
+ 46.355,63.0,11.0
3060
+ 29.110333333333337,53.93181818181818,1.0
3061
+ 28.98583333333333,58.75609756097561,1.0
3062
+ 30.57845238095238,49.48780487804878,1.0
3063
+ 25.07,8.0,
3064
+ 25.85,56.0,1.0
3065
+ 23.105,17.0,1.0
3066
+ 32.901666666666664,8.0,
3067
+ 42.56,25.0,11.0
3068
+ 39.475,7.333333333333333,
3069
+ 27.24326530612246,49.583333333333336,1.0
3070
+ 29.184727272727276,42.7962962962963,1.0
3071
+ 26.6525,14.0,1.0
3072
+ 32.6078409090909,55.18604651162791,1.0
3073
+ 42.9625,57.0,11.0
3074
+ 29.67744186046512,55.333333333333336,1.0
3075
+ 29.544418604651163,56.57142857142857,1.0
3076
+ 29.254358974358976,57.78947368421053,1.0
3077
+ 30.48671428571428,67.41176470588235,1.0
3078
+ 30.970789473684206,65.13513513513513,1.0
3079
+ 27.954583333333318,50.765957446808514,1.0
3080
+ 30.998333333333335,10.0,1.0
3081
+ 31.351100000000002,47.69387755102041,1.0
3082
+ 26.06625,22.333333333333332,1.0
3083
+ 22.5925,19.0,1.0
3084
+ 30.34,19.0,1.0
3085
+ 29.309512195121947,58.95,1.0
3086
+ 24.89,17.0,1.0
3087
+ 31.21574468085106,52.04347826086956,1.0
3088
+ 29.800454545454546,52.72093023255814,1.0
3089
+ 27.5375,8.0,1.0
3090
+ 30.495699999999996,48.795918367346935,1.0
3091
+ 36.345,16.0,2.0
3092
+ 30.895000000000003,3.0,1.0
3093
+ 29.73219512195123,60.375,1.0
3094
+ 24.002499999999998,7.0,
3095
+ 26.302125,60.61538461538461,1.0
3096
+ 28.921999999999993,53.09090909090909,1.0
3097
+ 27.015,9.0,1.0
3098
+ 29.853522727272722,56.27906976744186,1.0
3099
+ 33.791666666666664,23.5,2.0
3100
+ 32.88133333333334,53.75,1.0
3101
+ 25.490000000000002,8.0,1.0
3102
+ 37.905,14.0,2.0
3103
+ 33.7,39.0,2.0
3104
+ 31.135454545454557,55.44186046511628,1.0
3105
+ 31.57264705882353,71.51515151515152,1.0
3106
+ 18.502499999999998,21.0,0.0
3107
+ 42.0225,7.0,11.0
3108
+ 30.31,26.0,1.0
3109
+ 33.1425,11.0,1.0
3110
+ 26.1625,15.666666666666666,1.0
3111
+ 26.4325,17.0,1.0
3112
+ 17.822499999999998,11.666666666666666,0.0
3113
+ 29.9745652173913,34.86764705882353,1.0
3114
+ 30.86877777777777,52.20454545454545,1.0
3115
+ 28.93674418604651,56.714285714285715,1.0
3116
+ 16.27,64.0,0.0
3117
+ 30.466749999999998,61.53846153846154,1.0
3118
+ 29.425000000000004,48.108695652173914,1.0
3119
+ 23.1175,22.0,1.0
3120
+ 32.1525,2.0,1.0
3121
+ 34.745,3.0,
3122
+ 30.160487804878052,59.05,1.0
3123
+ 31.1675,26.0,1.0
3124
+ 25.540000000000003,18.5,1.0
3125
+ 21.1475,1.0,1.0
3126
+ 30.046808510638304,46.04347826086956,1.0
3127
+ 34.2475,13.0,2.0
3128
+ 46.9675,48.0,11.0
3129
+ 15.1275,6.0,0.0
3130
+ 36.903333333333336,11.5,2.0
3131
+ 32.53972972972972,65.75,1.0
3132
+ 28.512272727272727,54.46511627906977,1.0
3133
+ 28.052040816326535,50.708333333333336,1.0
3134
+ 30.052500000000002,34.0,1.0
3135
+ 40.3575,47.0,2.0
3136
+ 28.875,44.648148148148145,1.0
3137
+ 47.2675,14.0,11.0
3138
+ 27.022499999999997,28.0,1.0
3139
+ 30.955476190476208,56.292682926829265,1.0
3140
+ 30.52968085106384,51.15217391304348,1.0
3141
+ 33.958793103448286,75.5,2.0
3142
+ 23.3975,51.0,1.0
3143
+ 19.3525,7.0,0.0
3144
+ 28.71805555555556,43.64150943396226,1.0
3145
+ 36.35166666666667,11.5,2.0
3146
+ 19.818333333333335,17.0,0.0
3147
+ 39.3275,19.0,2.0
3148
+ 13.059999999999999,18.0,0.0
3149
+ 41.8625,20.0,11.0
3150
+ 18.025,28.0,
3151
+ 40.7325,24.0,2.0
3152
+ 46.495,4.0,11.0
3153
+ 32.87543859649123,42.57142857142857,1.0
3154
+ 28.380000000000003,18.0,
3155
+ 29.65973684210526,64.37837837837837,1.0
3156
+ 11.4575,2.0,
3157
+ 37.775,55.0,2.0
3158
+ 29.8125,56.0,1.0
3159
+ 14.815,10.0,
3160
+ 25.630000000000003,56.0,1.0
3161
+ 27.93611111111111,54.47727272727273,1.0
3162
+ 29.711250000000007,54.83720930232558,1.0
3163
+ 49.201666666666675,9.5,11.0
3164
+ 25.2675,20.666666666666668,1.0
3165
+ 16.689999999999998,43.0,0.0
3166
+ 30.8075,24.0,1.0
3167
+ 37.9325,48.0,2.0
3168
+ 32.66486842105263,63.7027027027027,1.0
3169
+ 46.2275,51.0,11.0
3170
+ 27.32,17.0,1.0
3171
+ 27.157575757575763,73.1875,1.0
3172
+ 28.2375,10.0,1.0
3173
+ 26.565714285714282,44.2,1.0
3174
+ 25.497500000000002,60.0,1.0
3175
+ 32.27983870967741,77.33333333333333,1.0
3176
+ 31.13385416666667,51.8936170212766,1.0
3177
+ 27.374249999999996,59.46153846153846,1.0
3178
+ 28.856666666666666,22.5,1.0
3179
+ 12.475,31.0,0.0
3180
+ 30.981166666666663,81.41379310344827,1.0
3181
+ 36.364999999999995,26.5,2.0
3182
+ 27.52905405405405,63.25,1.0
3183
+ 31.903750000000002,18.333333333333332,1.0
3184
+ 29.385,13.0,1.0
3185
+ 29.43488636363637,52.58139534883721,1.0
3186
+ 18.463333333333335,14.0,0.0
3187
+ 26.957499999999996,194.0,
3188
+ 35.06,46.0,2.0
3189
+ 30.103829787234044,52.21739130434783,1.0
3190
+ 22.697499999999998,6.0,1.0
3191
+ 27.362222222222226,54.02272727272727,1.0
3192
+ 31.3557,49.142857142857146,1.0
3193
+ 20.22,8.0,0.0
3194
+ 25.11,5.0,1.0
3195
+ 27.87618421052631,65.16216216216216,1.0
3196
+ 38.985,34.0,2.0
3197
+ 28.52116666666667,81.79310344827586,1.0
3198
+ 13.77,5.0,0.0
3199
+ 36.537499999999994,18.0,2.0
3200
+ 26.958333333333332,20.5,1.0
3201
+ 48.1175,7.0,11.0
3202
+ 29.6,58.048780487804876,1.0
3203
+ 27.965,11.0,1.0
3204
+ 22.008750000000003,16.333333333333332,1.0
3205
+ 29.8689423076923,47.294117647058826,1.0
3206
+ 27.819722222222225,66.62857142857143,1.0
3207
+ 32.81,4.0,1.0
3208
+ 29.955,12.0,1.0
3209
+ 47.21,21.0,11.0
3210
+ 31.86337500000001,60.97435897435897,1.0
3211
+ 37.72,28.0,2.0
3212
+ 31.525000000000002,26.5,1.0
3213
+ 32.04833333333334,7.0,1.0
3214
+ 30.909545454545455,67.0,1.0
3215
+ 34.85,45.0,2.0
3216
+ 43.225,30.0,11.0
3217
+ 26.974428571428575,67.3529411764706,1.0
3218
+ 28.254024390243902,59.25,1.0
3219
+ 29.784886363636375,50.30232558139535,1.0
3220
+ 32.18000000000001,14.666666666666666,1.0
3221
+ 25.11,35.0,1.0
3222
+ 38.415,39.0,2.0
3223
+ 34.67,17.0,2.0
3224
+ 26.234750000000002,60.84615384615385,1.0
3225
+ 22.017500000000002,15.0,1.0
3226
+ 31.055,2.0,
3227
+ 8.785,31.0,0.0
3228
+ 32.3425,4.0,
3229
+ 30.626309523809535,58.1219512195122,1.0
3230
+ 15.424999999999999,15.0,0.0
3231
+ 29.95990000000001,48.83673469387755,1.0
3232
+ 28.596666666666664,32.0,1.0
3233
+ 20.245,13.5,0.0
3234
+ 13.635000000000002,42.0,0.0
3235
+ 34.70666666666667,19.0,
3236
+ 30.336363636363636,55.2093023255814,1.0
3237
+ 42.120000000000005,11.666666666666666,11.0
3238
+ 23.912499999999998,46.0,1.0
3239
+ 36.885,21.0,2.0
3240
+ 37.8825,29.0,2.0
3241
+ 28.73,7.5,1.0
3242
+ 14.785,19.0,0.0
3243
+ 25.82,3.0,
3244
+ 25.814999999999998,10.0,1.0
3245
+ 17.422500000000003,20.666666666666668,0.0
3246
+ 40.30166666666667,29.5,2.0
3247
+ 16.3375,32.0,0.0
3248
+ 34.89,40.0,2.0
3249
+ 27.869999999999997,14.0,1.0
3250
+ 22.622500000000002,11.0,1.0
3251
+ 19.665,13.0,0.0
3252
+ 28.2275,10.0,
3253
+ 27.241176470588233,64.66666666666667,1.0
3254
+ 27.778333333333332,58.8421052631579,1.0
3255
+ 24.893333333333334,24.5,1.0
3256
+ 26.913181818181826,55.2093023255814,1.0
3257
+ 23.169999999999998,17.0,1.0
3258
+ 34.196666666666665,23.5,2.0
3259
+ 17.71,11.0,0.0
3260
+ 30.170980392156867,48.68,1.0
3261
+ 17.17166666666667,21.0,0.0
3262
+ 35.2025,64.0,2.0
3263
+ 28.296666666666667,22.5,1.0
3264
+ 15.815000000000001,13.0,
3265
+ 28.108999999999998,52.93181818181818,1.0
3266
+ 27.833703703703705,45.264150943396224,1.0
3267
+ 31.037857142857135,50.583333333333336,1.0
3268
+ 22.1075,17.0,1.0
3269
+ 38.29,12.0,2.0
3270
+ 29.18320512820512,60.31578947368421,1.0
3271
+ 28.22784090909091,53.627906976744185,1.0
3272
+ 28.78833333333333,31.0,1.0
3273
+ 26.12792452830189,44.55769230769231,1.0
3274
+ 31.464512195121948,57.2,1.0
3275
+ 28.354594594594598,66.69444444444444,1.0
3276
+ 33.3125,12.0,1.0
3277
+ 33.14369565217392,53.17777777777778,1.0
3278
+ 30.509078947368423,63.729729729729726,1.0
3279
+ 31.542499999999997,17.0,1.0
3280
+ 11.6875,16.0,0.0
3281
+ 34.9875,13.0,2.0
3282
+ 16.645,9.0,0.0
3283
+ 29.689761904761912,57.97560975609756,1.0
3284
+ 15.7425,9.0,0.0
3285
+ 12.36,13.0,0.0
3286
+ 30.473717948717947,61.026315789473685,1.0
3287
+ 31.212444444444447,50.40909090909091,1.0
3288
+ 19.525,52.0,0.0
3289
+ 19.965,8.0,0.0
3290
+ 30.2775,4.0,1.0
3291
+ 32.305,11.0,
3292
+ 28.625,5.0,1.0
3293
+ 34.41173913043479,52.82222222222222,2.0
3294
+ 28.947325581395358,52.095238095238095,1.0
3295
+ 31.934000000000005,11.5,1.0
3296
+ 32.36333333333334,10.0,1.0
3297
+ 29.677500000000002,13.0,1.0
3298
+ 26.98909090909091,50.674418604651166,1.0
3299
+ 29.665,3.0,
3300
+ 32.305,14.0,1.0
3301
+ 29.555500000000002,59.1025641025641,1.0
3302
+ 27.823292682926827,60.25,1.0
3303
+ 32.54338235294117,64.96969696969697,1.0
3304
+ 27.31791666666667,65.77142857142857,1.0
3305
+ 39.614999999999995,43.0,2.0
3306
+ 28.52655555555555,53.95454545454545,1.0
3307
+ 38.3,17.0,2.0
3308
+ 27.920434782608694,52.51111111111111,1.0
3309
+ 36.145,15.0,2.0
3310
+ 28.39333333333333,9.5,1.0
3311
+ 28.834736842105258,65.54054054054055,1.0
3312
+ 11.6075,54.0,0.0
3313
+ 30.77159574468086,52.17391304347826,1.0
3314
+ 30.044767441860465,56.357142857142854,1.0
3315
+ 20.395,17.0,0.0
3316
+ 28.16166666666666,56.65853658536585,1.0
3317
+ 29.592272727272736,72.59375,1.0
3318
+ 35.66,16.0,2.0
3319
+ 28.599433962264147,44.69230769230769,1.0
3320
+ 26.8375,12.0,
3321
+ 37.715,23.0,2.0
3322
+ 32.24,9.5,1.0
3323
+ 22.645,5.0,1.0
3324
+ 28.6825,35.0,1.0
3325
+ 12.127500000000001,31.0,0.0
3326
+ 24.728333333333335,15.5,1.0
3327
+ 31.975243902439015,60.175,1.0
3328
+ 14.43,24.0,0.0
3329
+ 30.134361702127656,51.23913043478261,1.0
3330
+ 32.86,8.0,1.0
3331
+ 33.6025,17.0,1.0
3332
+ 20.197499999999998,10.0,0.0
3333
+ 29.186025641025637,61.31578947368421,1.0
3334
+ 27.585,12.0,1.0
3335
+ 32.00424528301886,45.5,1.0
3336
+ 28.484555555555563,49.68181818181818,1.0
3337
+ 32.8095,62.23076923076923,1.0
3338
+ 30.533874999999995,60.30769230769231,1.0
3339
+ 27.514999999999993,63.36842105263158,1.0
3340
+ 28.902500000000003,30.0,1.0
3341
+ 35.587500000000006,40.0,
3342
+ 32.216944444444444,64.34285714285714,1.0
3343
+ 32.44326086956521,53.82222222222222,1.0
3344
+ 42.6275,16.0,11.0
3345
+ 31.071999999999996,52.94871794871795,1.0
3346
+ 19.1625,46.0,0.0
3347
+ 20.5625,18.0,0.0
3348
+ 31.8875,55.0,1.0
3349
+ 21.494999999999997,11.0,
3350
+ 30.700465116279073,56.976190476190474,1.0
3351
+ 35.2775,5.0,
3352
+ 27.9625,65.65714285714286,1.0
3353
+ 26.13,6.0,1.0
3354
+ 43.432500000000005,22.0,11.0
3355
+ 32.034680851063825,51.391304347826086,1.0
3356
+ 16.04,45.0,0.0
3357
+ 27.361666666666668,33.0,1.0
3358
+ 29.72943181818181,52.46511627906977,1.0
3359
+ 30.73,22.5,1.0
3360
+ 23.5825,6.0,1.0
3361
+ 29.606125,62.23076923076923,1.0
3362
+ 35.3575,29.0,2.0
3363
+ 28.579857142857144,69.44117647058823,1.0
3364
+ 33.9875,33.0,2.0
3365
+ 28.737407407407414,43.320754716981135,1.0
3366
+ 21.12,6.0,
3367
+ 29.07405405405406,60.861111111111114,1.0
3368
+ 36.156666666666666,31.5,2.0
3369
+ 32.8625,55.0,1.0
3370
+ 21.65,3.0,1.0
3371
+ 29.933255813953487,57.023809523809526,1.0
3372
+ 34.69,25.0,2.0
3373
+ 34.9725,7.0,2.0
3374
+ 41.665,22.0,
3375
+ 17.6875,8.0,
3376
+ 25.7275,18.0,1.0
3377
+ 50.8825,6.0,11.0
3378
+ 22.253333333333334,17.5,1.0
3379
+ 17.6475,16.0,0.0
3380
+ 39.15833333333333,16.5,2.0
3381
+ 31.660480769230762,46.745098039215684,1.0
3382
+ 33.3925,22.0,1.0
3383
+ 32.67666666666667,67.37142857142857,1.0
3384
+ 26.121829268292686,57.1,1.0
3385
+ 25.2725,28.0,1.0
3386
+ 31.62557142857143,70.29411764705883,1.0
3387
+ 28.331931818181825,56.093023255813954,1.0
3388
+ 20.01,37.0,0.0
3389
+ 24.175,6.0,1.0
3390
+ 34.61,5.0,2.0
3391
+ 28.802999999999994,49.15909090909091,1.0
3392
+ 32.085,17.0,1.0
3393
+ 29.6525,15.0,
3394
+ 15.504999999999999,6.0,0.0
3395
+ 28.185000000000002,56.05128205128205,1.0
3396
+ 33.141666666666666,24.0,1.0
3397
+ 36.805,14.0,
3398
+ 18.3075,12.0,
3399
+ 40.2575,12.0,2.0
3400
+ 30.86195121951219,59.125,1.0
3401
+ 28.57756410256411,63.026315789473685,1.0
3402
+ 17.33,17.0,0.0
3403
+ 32.67,12.666666666666666,1.0
3404
+ 33.80777777777778,65.02857142857142,2.0
3405
+ 29.768333333333334,28.5,1.0
3406
+ 18.935000000000002,5.0,0.0
3407
+ 24.1,8.0,
3408
+ 31.37958333333334,47.212765957446805,1.0
3409
+ 31.16275510204082,49.6875,1.0
3410
+ 31.846219512195116,58.5,1.0
3411
+ 31.149489795918363,47.916666666666664,1.0
3412
+ 23.08625,14.0,1.0
3413
+ 38.4475,2.0,2.0
3414
+ 32.823,49.224489795918366,1.0
3415
+ 29.0775,54.0,1.0
3416
+ 23.365000000000002,25.0,1.0
3417
+ 37.675,4.0,2.0
3418
+ 30.1625,27.0,1.0
3419
+ 12.875,4.0,
3420
+ 32.405,23.5,1.0
3421
+ 21.77,2.0,1.0
3422
+ 29.4575,10.0,
3423
+ 26.80666666666667,23.5,1.0
3424
+ 44.11,30.0,11.0
3425
+ 32.325,7.0,
3426
+ 25.72361111111112,63.82857142857143,1.0
3427
+ 29.3125,20.0,1.0
3428
+ 22.215,12.666666666666666,1.0
3429
+ 31.976666666666663,16.5,1.0
3430
+ 26.47,11.5,1.0
3431
+ 44.322500000000005,7.0,11.0
3432
+ 18.9675,6.0,0.0
3433
+ 29.03974999999999,58.8974358974359,1.0
3434
+ 29.672812500000003,50.744680851063826,1.0
3435
+ 27.47244186046512,53.26190476190476,1.0
3436
+ 22.4875,9.0,1.0
3437
+ 26.122500000000002,17.0,1.0
3438
+ 30.167386363636357,55.883720930232556,1.0
3439
+ 32.41297619047621,56.75609756097561,1.0
3440
+ 27.897685185185193,44.886792452830186,1.0
3441
+ 31.00637931034483,83.85714285714286,1.0
3442
+ 33.589999999999996,32.5,1.0
3443
+ 40.70666666666667,27.5,2.0
3444
+ 33.5725,41.0,1.0
3445
+ 24.6275,3.0,1.0
3446
+ 30.92142857142857,58.8780487804878,1.0
3447
+ 32.50321428571427,58.97560975609756,1.0
3448
+ 29.415,54.72727272727273,1.0
3449
+ 29.17,16.666666666666668,1.0
3450
+ 30.87488095238095,54.63414634146341,1.0
3451
+ 27.675,24.0,1.0
3452
+ 33.715,14.0,
3453
+ 26.959999999999997,31.0,1.0
3454
+ 20.0925,40.0,0.0
3455
+ 39.197500000000005,37.0,2.0
3456
+ 31.317500000000003,11.0,1.0
3457
+ 23.03,32.0,1.0
3458
+ 34.69,21.5,2.0
3459
+ 24.06,7.0,1.0
3460
+ 21.61,17.0,1.0
3461
+ 29.76855555555556,53.72727272727273,1.0
3462
+ 21.8,25.0,1.0
3463
+ 38.51666666666667,20.5,2.0
3464
+ 32.5225,4.0,1.0
3465
+ 29.58,21.0,1.0
3466
+ 28.375,8.5,
3467
+ 31.411808510638302,52.17391304347826,1.0
3468
+ 29.21436363636364,39.18518518518518,1.0
3469
+ 39.635,32.0,2.0
3470
+ 26.375,23.0,1.0
3471
+ 32.016666666666666,27.0,1.0
3472
+ 28.908749999999998,48.95744680851064,1.0
3473
+ 28.536627906976744,55.57142857142857,1.0
3474
+ 30.1075,3.0,1.0
3475
+ 26.71946808510639,51.93478260869565,1.0
3476
+ 29.25418604651162,56.857142857142854,1.0
3477
+ 39.92,23.5,2.0
3478
+ 27.613714285714288,66.0,1.0
3479
+ 22.112499999999997,4.0,1.0
3480
+ 30.854999999999997,57.095238095238095,1.0
3481
+ 29.203548387096774,79.5,1.0
3482
+ 29.729999999999997,11.0,
3483
+ 16.82,26.0,0.0
3484
+ 24.383333333333336,10.0,1.0
3485
+ 37.0375,2.0,2.0
3486
+ 26.27,10.0,
3487
+ 27.96928571428571,42.56363636363636,1.0
3488
+ 30.199166666666663,55.46341463414634,1.0
3489
+ 12.9225,5.0,
3490
+ 28.053444444444448,50.0,1.0
3491
+ 29.480952380952388,58.19512195121951,1.0
3492
+ 28.372500000000002,39.0,1.0
3493
+ 29.509456521739136,52.24444444444445,1.0
3494
+ 22.39833333333333,32.5,1.0
3495
+ 25.13,46.0,1.0
3496
+ 30.441222222222223,54.20454545454545,1.0
3497
+ 27.257142857142856,57.68292682926829,1.0
3498
+ 28.43355263157895,63.513513513513516,1.0
3499
+ 18.044999999999998,20.0,0.0
3500
+ 32.732934782608694,52.91111111111111,1.0
3501
+ 29.651836734693884,49.75,1.0
3502
+ 29.3030612244898,49.270833333333336,1.0
3503
+ 32.05398148148149,42.81132075471698,1.0
3504
+ 26.7459375,50.46808510638298,1.0
3505
+ 28.6,7.0,1.0
3506
+ 33.22727272727273,53.97674418604651,1.0
3507
+ 18.267500000000002,18.0,
3508
+ 28.780660377358497,46.73076923076923,1.0
3509
+ 34.4625,15.0,
3510
+ 28.2,9.0,1.0
3511
+ 31.640227272727273,55.58139534883721,1.0
3512
+ 34.195609756097554,60.425,2.0
3513
+ 30.837169811320752,45.55769230769231,1.0
3514
+ 25.557499999999997,13.0,1.0
3515
+ 29.6067,49.61224489795919,1.0
3516
+ 29.780666666666665,53.36363636363637,1.0
3517
+ 57.417500000000004,36.0,11.0
3518
+ 29.415789473684203,42.19642857142857,1.0
3519
+ 27.14,32.0,1.0
3520
+ 29.65872093023256,56.404761904761905,1.0
3521
+ 31.942653061224487,47.333333333333336,1.0
3522
+ 27.703958333333336,50.787234042553195,1.0
3523
+ 23.785,13.0,1.0
3524
+ 26.07,1.0,1.0
3525
+ 37.1075,15.0,
3526
+ 32.82628205128205,56.81578947368421,1.0
3527
+ 38.9525,12.0,2.0
3528
+ 29.387692307692298,45.8235294117647,1.0
3529
+ 30.566707317073167,58.425,1.0
3530
+ 31.72635135135135,67.22222222222223,1.0
3531
+ 20.46,42.0,0.0
3532
+ 32.165,11.0,
3533
+ 30.35904761904762,59.46341463414634,1.0
3534
+ 28.94159574468085,52.08695652173913,1.0
3535
+ 30.53,56.425,1.0
3536
+ 29.9614423076923,43.509803921568626,1.0
3537
+ 32.92,9.0,1.0
3538
+ 30.1825,5.0,
3539
+ 28.7175,45.0,1.0
3540
+ 29.671750000000003,60.38461538461539,1.0
3541
+ 32.949999999999996,44.0,1.0
3542
+ 24.347499999999997,2.0,
3543
+ 28.1672972972973,61.916666666666664,1.0
3544
+ 29.848200000000002,49.08163265306123,1.0
3545
+ 35.75125,9.0,2.0
3546
+ 28.854899999999997,49.46938775510204,1.0
3547
+ 37.0775,44.0,2.0
3548
+ 21.215,11.0,
3549
+ 35.6675,34.0,2.0
3550
+ 36.0175,15.0,2.0
3551
+ 36.980000000000004,11.0,2.0
3552
+ 29.975294117647053,72.45454545454545,1.0
3553
+ 22.4425,24.0,1.0
3554
+ 31.181836734693864,49.6875,1.0
3555
+ 30.4525,8.0,1.0
3556
+ 27.9825,27.0,1.0
3557
+ 21.155,15.0,1.0
3558
+ 26.347954545454545,54.7906976744186,1.0
3559
+ 31.819999999999997,16.0,
3560
+ 25.03333333333333,19.5,1.0
3561
+ 38.515,26.0,2.0
3562
+ 36.712500000000006,6.0,2.0
3563
+ 23.810000000000002,22.0,1.0
3564
+ 33.22957446808511,52.21739130434783,1.0
3565
+ 30.537547169811315,44.36538461538461,1.0
3566
+ 27.38333333333333,28.0,1.0
3567
+ 27.028026315789468,63.270270270270274,1.0
3568
+ 33.525,10.0,1.0
3569
+ 21.8775,9.0,1.0
3570
+ 14.018333333333333,16.0,
3571
+ 28.601666666666656,44.18867924528302,1.0
3572
+ 26.829047619047618,56.75609756097561,1.0
3573
+ 25.662499999999998,15.0,1.0
3574
+ 20.327499999999997,36.0,0.0
3575
+ 32.51160377358491,44.80769230769231,1.0
3576
+ 33.53333333333333,8.0,1.0
3577
+ 30.425,16.0,1.0
3578
+ 32.177499999999995,59.56410256410256,1.0
3579
+ 31.41045454545454,75.84375,1.0
3580
+ 23.86875,13.666666666666666,1.0
3581
+ 29.025250000000007,62.30769230769231,1.0
3582
+ 30.92,29.0,1.0
3583
+ 27.28351351351351,63.80555555555556,1.0
3584
+ 33.207499999999996,4.0,1.0
3585
+ 17.77,4.0,
3586
+ 49.894999999999996,59.0,11.0
3587
+ 36.8725,54.0,2.0
3588
+ 28.2575,17.0,1.0
3589
+ 32.49338235294118,71.0,1.0
3590
+ 33.0125,70.0,1.0
3591
+ 30.49020833333334,49.340425531914896,1.0
3592
+ 24.921666666666667,17.5,1.0
3593
+ 29.067352941176477,65.57575757575758,1.0
3594
+ 28.43311111111111,54.18181818181818,1.0
3595
+ 30.312058823529416,72.51515151515152,1.0
3596
+ 39.5375,17.0,2.0
3597
+ 29.356777777777783,55.27272727272727,1.0
3598
+ 32.322500000000005,8.0,
3599
+ 40.42,8.0,2.0
3600
+ 31.50074468085106,49.84782608695652,1.0
3601
+ 30.019999999999996,18.0,1.0
3602
+ 23.263333333333332,9.5,1.0
3603
+ 28.032272727272723,56.04651162790697,1.0
3604
+ 29.777857142857133,49.208333333333336,1.0
3605
+ 25.790000000000003,30.5,1.0
3606
+ 24.224999999999998,22.333333333333332,1.0
3607
+ 40.345,58.0,2.0
3608
+ 24.001176470588234,69.60606060606061,1.0
3609
+ 29.757358490566045,46.59615384615385,1.0
3610
+ 23.119999999999997,10.0,
3611
+ 27.30202127659574,51.54347826086956,1.0
3612
+ 26.081744186046503,56.666666666666664,1.0
3613
+ 41.1,15.333333333333334,2.0
3614
+ 24.438333333333333,25.5,1.0
3615
+ 28.71402439024391,60.2,1.0
3616
+ 30.441627906976745,57.666666666666664,1.0
3617
+ 25.737499999999997,26.0,1.0
3618
+ 29.165,11.0,1.0
3619
+ 30.486250000000002,72.09677419354838,1.0
3620
+ 28.442926829268288,53.925,1.0
3621
+ 36.88249999999999,35.0,
3622
+ 28.71,56.0,1.0
3623
+ 24.991794871794873,63.71052631578947,1.0
3624
+ 27.561862745098043,46.56,1.0
3625
+ 22.439999999999998,6.0,1.0
3626
+ 32.04152173913043,53.266666666666666,1.0
3627
+ 32.3025,9.0,1.0
3628
+ 30.009124999999994,61.205128205128204,1.0
3629
+ 15.461666666666668,26.5,0.0
3630
+ 42.67666666666667,32.0,11.0
3631
+ 33.555,19.0,
3632
+ 28.967702702702706,59.77777777777778,1.0
3633
+ 46.26,15.0,
3634
+ 35.677499999999995,33.0,2.0
3635
+ 21.551666666666666,23.0,1.0
3636
+ 28.297000000000004,48.04081632653061,1.0
3637
+ 29.902499999999996,6.0,1.0
3638
+ 35.32125,18.333333333333332,2.0
3639
+ 29.618152173913053,52.75555555555555,1.0
3640
+ 31.508421052631576,65.48648648648648,1.0
3641
+ 22.905,45.0,1.0
3642
+ 32.8675,15.0,
3643
+ 28.9625,24.0,1.0
3644
+ 41.36,22.0,2.0
3645
+ 16.9825,36.0,0.0
3646
+ 23.6725,27.0,1.0
3647
+ 29.078461538461543,55.8421052631579,1.0
3648
+ 28.6,28.0,1.0
3649
+ 22.247500000000002,18.0,1.0
3650
+ 28.680813953488375,52.904761904761905,1.0
3651
+ 29.646250000000002,62.23076923076923,1.0
3652
+ 33.320540540540534,65.22222222222223,1.0
3653
+ 27.3275,24.0,1.0
3654
+ 32.74592105263159,64.48648648648648,1.0
3655
+ 31.021666666666665,22.0,1.0
3656
+ 29.93536585365854,60.025,1.0
3657
+ 26.687894736842107,65.35135135135135,1.0
3658
+ 19.7525,10.0,0.0
3659
+ 35.178333333333335,14.5,2.0
3660
+ 50.45,49.0,11.0
3661
+ 29.31940476190476,59.5609756097561,1.0
3662
+ 21.3425,35.0,
3663
+ 37.2975,20.0,
3664
+ 28.63191489361702,49.82608695652174,1.0
3665
+ 21.82,4.0,1.0
3666
+ 27.6925,13.0,1.0
3667
+ 17.695,39.0,0.0
3668
+ 30.80073170731707,55.025,1.0
3669
+ 30.30216981132076,44.90384615384615,1.0
3670
+ 43.425,29.0,11.0
3671
+ 23.174999999999997,36.0,1.0
3672
+ 23.70625,7.666666666666667,1.0
3673
+ 37.015,27.0,
3674
+ 22.8975,67.0,1.0
3675
+ 29.77522222222222,52.52272727272727,1.0
3676
+ 31.139699999999994,49.57142857142857,1.0
3677
+ 21.747500000000002,5.0,
3678
+ 16.82,30.0,0.0
3679
+ 31.659999999999997,21.0,
3680
+ 20.7375,32.0,0.0
3681
+ 30.16341463414635,57.4,1.0
3682
+ 23.7225,11.666666666666666,1.0
3683
+ 29.736562500000005,50.659574468085104,1.0
3684
+ 27.275,20.0,1.0
3685
+ 31.112499999999994,45.31372549019608,1.0
3686
+ 31.379148936170218,51.21739130434783,1.0
3687
+ 19.86,10.0,0.0
3688
+ 27.05617021276597,51.28260869565217,1.0
3689
+ 27.580660377358488,45.80769230769231,1.0
3690
+ 31.947948717948723,62.6578947368421,1.0
3691
+ 27.520625,44.680851063829785,1.0
3692
+ 24.965000000000003,22.0,1.0
3693
+ 30.005,5.5,1.0
3694
+ 31.889021739130424,52.77777777777778,1.0
3695
+ 16.14,6.0,0.0
3696
+ 29.3025,12.0,1.0
3697
+ 31.543207547169814,45.34615384615385,1.0
3698
+ 28.756304347826084,54.24444444444445,1.0
3699
+ 25.284999999999997,26.5,1.0
3700
+ 32.39010869565218,53.48888888888889,1.0
3701
+ 35.7775,5.0,2.0
3702
+ 45.7125,16.0,11.0
3703
+ 47.97,7.0,11.0
3704
+ 39.8475,29.0,2.0
3705
+ 27.879456521739133,53.355555555555554,1.0
3706
+ 29.6,19.0,
3707
+ 28.882023809523805,54.24390243902439,1.0
3708
+ 30.456666666666667,10.5,1.0
3709
+ 35.36666666666667,14.0,2.0
3710
+ 27.778928571428576,58.829268292682926,1.0
3711
+ 26.99833333333332,46.26,1.0
3712
+ 15.3675,44.0,0.0
3713
+ 30.647083333333338,40.67796610169491,1.0
3714
+ 25.6,23.0,1.0
3715
+ 50.96666666666667,25.5,11.0
3716
+ 25.35625000000001,58.46153846153846,1.0
3717
+ 23.627499999999998,8.0,1.0
3718
+ 33.76499999999999,22.5,2.0
3719
+ 28.211666666666662,29.0,1.0
3720
+ 24.1575,4.0,1.0
3721
+ 26.35,13.0,
3722
+ 30.852555555555554,53.29545454545455,1.0
3723
+ 27.322777777777773,69.4,1.0
3724
+ 20.085,20.0,0.0
3725
+ 20.776249999999997,18.0,0.0
3726
+ 29.87776595744681,49.69565217391305,1.0
3727
+ 29.705000000000002,26.0,1.0
3728
+ 29.329705882352936,46.64,1.0
3729
+ 29.95122448979592,47.041666666666664,1.0
3730
+ 37.32625,9.0,2.0
3731
+ 27.99877358490565,44.69230769230769,1.0
3732
+ 28.474680851063845,51.04347826086956,1.0
3733
+ 33.58060975609755,59.05,1.0
3734
+ 31.825,45.0,
3735
+ 27.967205882352946,71.48484848484848,1.0
3736
+ 20.563333333333333,4.5,0.0
3737
+ 25.884999999999998,12.0,
3738
+ 27.317500000000003,33.0,1.0
3739
+ 31.26719512195121,56.7,1.0
3740
+ 21.349999999999998,81.5,0.0