-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtrain.gdf
2037 lines (2037 loc) · 42.8 KB
/
train.gdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
nodedef>name VARCHAR,label VARCHAR
0,KitchenAbvGr
1,TotalBsmtSF
2,WoodDeckSF
3,MiscVal
4,OpenPorchSF
5,GarageYrBlt
6,2ndFlrSF
7,3SsnPorch
8,BsmtFullBath
9,GarageArea
10,Fireplaces
11,YearRemodAdd
12,BsmtFinSF1
13,LowQualFinSF
14,OverallQual
15,BedroomAbvGr
16,FullBath
17,MSSubClass
18,BsmtFinSF2
19,OverallCond
20,1stFlrSF
21,YrSold
22,MoSold
23,ScreenPorch
24,BsmtHalfBath
25,YearBuilt
26,LotArea
27,LotFrontage
28,TotRmsAbvGrd
29,GarageCars
30,MasVnrArea
31,HalfBath
32,PoolArea
33,BsmtUnfSF
34,EnclosedPorch
35,GrLivArea
36,Street_Pave
37,Street_nan
38,Utilities_NoSeWa
39,Utilities_nan
40,CentralAir_Y
41,CentralAir_nan
42,HeatingQC_Ex
43,HeatingQC_Fa
44,HeatingQC_Gd
45,HeatingQC_Po
46,HeatingQC_TA
47,HeatingQC_nan
48,Exterior2nd_AsbShng
49,Exterior2nd_AsphShn
50,Exterior2nd_Brk Cmn
51,Exterior2nd_BrkFace
52,Exterior2nd_CBlock
53,Exterior2nd_CmentBd
54,Exterior2nd_HdBoard
55,Exterior2nd_ImStucc
56,Exterior2nd_MetalSd
57,Exterior2nd_Other
58,Exterior2nd_Plywood
59,Exterior2nd_Stone
60,Exterior2nd_Stucco
61,Exterior2nd_VinylSd
62,Exterior2nd_Wd Sdng
63,Exterior2nd_Wd Shng
64,Exterior2nd_nan
65,SaleType_COD
66,SaleType_CWD
67,SaleType_Con
68,SaleType_ConLD
69,SaleType_ConLI
70,SaleType_ConLw
71,SaleType_New
72,SaleType_Oth
73,SaleType_WD
74,SaleType_nan
75,Exterior1st_AsbShng
76,Exterior1st_AsphShn
77,Exterior1st_BrkComm
78,Exterior1st_BrkFace
79,Exterior1st_CBlock
80,Exterior1st_CemntBd
81,Exterior1st_HdBoard
82,Exterior1st_ImStucc
83,Exterior1st_MetalSd
84,Exterior1st_Plywood
85,Exterior1st_Stone
86,Exterior1st_Stucco
87,Exterior1st_VinylSd
88,Exterior1st_Wd Sdng
89,Exterior1st_WdShing
90,Exterior1st_nan
91,PoolQC_Ex
92,PoolQC_Fa
93,PoolQC_Gd
94,PoolQC_nan
95,Functional_Maj1
96,Functional_Maj2
97,Functional_Min1
98,Functional_Min2
99,Functional_Mod
100,Functional_Sev
101,Functional_Typ
102,Functional_nan
103,BsmtCond_Fa
104,BsmtCond_Gd
105,BsmtCond_Po
106,BsmtCond_TA
107,BsmtCond_nan
108,Fence_GdPrv
109,Fence_GdWo
110,Fence_MnPrv
111,Fence_MnWw
112,Fence_nan
113,MSZoning_C (all)
114,MSZoning_FV
115,MSZoning_RH
116,MSZoning_RL
117,MSZoning_RM
118,MSZoning_nan
119,LotShape_IR1
120,LotShape_IR2
121,LotShape_IR3
122,LotShape_Reg
123,LotShape_nan
124,RoofStyle_Flat
125,RoofStyle_Gable
126,RoofStyle_Gambrel
127,RoofStyle_Hip
128,RoofStyle_Mansard
129,RoofStyle_Shed
130,RoofStyle_nan
131,LandSlope_Gtl
132,LandSlope_Mod
133,LandSlope_Sev
134,LandSlope_nan
135,BsmtFinType1_ALQ
136,BsmtFinType1_BLQ
137,BsmtFinType1_GLQ
138,BsmtFinType1_LwQ
139,BsmtFinType1_Rec
140,BsmtFinType1_Unf
141,BsmtFinType1_nan
142,BldgType_1Fam
143,BldgType_2fmCon
144,BldgType_Duplex
145,BldgType_Twnhs
146,BldgType_TwnhsE
147,BldgType_nan
148,BsmtExposure_Av
149,BsmtExposure_Gd
150,BsmtExposure_Mn
151,BsmtExposure_No
152,BsmtExposure_nan
153,LotConfig_Corner
154,LotConfig_CulDSac
155,LotConfig_FR2
156,LotConfig_FR3
157,LotConfig_Inside
158,LotConfig_nan
159,SaleCondition_Abnorml
160,SaleCondition_AdjLand
161,SaleCondition_Alloca
162,SaleCondition_Family
163,SaleCondition_Normal
164,SaleCondition_Partial
165,SaleCondition_nan
166,Alley_Grvl
167,Alley_Pave
168,Alley_nan
169,KitchenQual_Ex
170,KitchenQual_Fa
171,KitchenQual_Gd
172,KitchenQual_TA
173,KitchenQual_nan
174,LandContour_Bnk
175,LandContour_HLS
176,LandContour_Low
177,LandContour_Lvl
178,LandContour_nan
179,RoofMatl_ClyTile
180,RoofMatl_CompShg
181,RoofMatl_Membran
182,RoofMatl_Metal
183,RoofMatl_Roll
184,RoofMatl_Tar&Grv
185,RoofMatl_WdShake
186,RoofMatl_WdShngl
187,RoofMatl_nan
188,Electrical_FuseA
189,Electrical_FuseF
190,Electrical_FuseP
191,Electrical_Mix
192,Electrical_SBrkr
193,Electrical_nan
194,MasVnrType_BrkCmn
195,MasVnrType_BrkFace
196,MasVnrType_None
197,MasVnrType_Stone
198,MasVnrType_nan
199,GarageCond_Ex
200,GarageCond_Fa
201,GarageCond_Gd
202,GarageCond_Po
203,GarageCond_TA
204,GarageCond_nan
205,HouseStyle_1.5Fin
206,HouseStyle_1.5Unf
207,HouseStyle_1Story
208,HouseStyle_2.5Fin
209,HouseStyle_2.5Unf
210,HouseStyle_2Story
211,HouseStyle_SFoyer
212,HouseStyle_SLvl
213,HouseStyle_nan
214,Neighborhood_Blmngtn
215,Neighborhood_Blueste
216,Neighborhood_BrDale
217,Neighborhood_BrkSide
218,Neighborhood_ClearCr
219,Neighborhood_CollgCr
220,Neighborhood_Crawfor
221,Neighborhood_Edwards
222,Neighborhood_Gilbert
223,Neighborhood_IDOTRR
224,Neighborhood_MeadowV
225,Neighborhood_Mitchel
226,Neighborhood_NAmes
227,Neighborhood_NPkVill
228,Neighborhood_NWAmes
229,Neighborhood_NoRidge
230,Neighborhood_NridgHt
231,Neighborhood_OldTown
232,Neighborhood_SWISU
233,Neighborhood_Sawyer
234,Neighborhood_SawyerW
235,Neighborhood_Somerst
236,Neighborhood_StoneBr
237,Neighborhood_Timber
238,Neighborhood_Veenker
239,Neighborhood_nan
240,PavedDrive_N
241,PavedDrive_P
242,PavedDrive_Y
243,PavedDrive_nan
244,BsmtQual_Ex
245,BsmtQual_Fa
246,BsmtQual_Gd
247,BsmtQual_TA
248,BsmtQual_nan
249,FireplaceQu_Ex
250,FireplaceQu_Fa
251,FireplaceQu_Gd
252,FireplaceQu_Po
253,FireplaceQu_TA
254,FireplaceQu_nan
255,Heating_Floor
256,Heating_GasA
257,Heating_GasW
258,Heating_Grav
259,Heating_OthW
260,Heating_Wall
261,Heating_nan
262,GarageQual_Ex
263,GarageQual_Fa
264,GarageQual_Gd
265,GarageQual_Po
266,GarageQual_TA
267,GarageQual_nan
268,Foundation_BrkTil
269,Foundation_CBlock
270,Foundation_PConc
271,Foundation_Slab
272,Foundation_Stone
273,Foundation_Wood
274,Foundation_nan
275,GarageFinish_Fin
276,GarageFinish_RFn
277,GarageFinish_Unf
278,GarageFinish_nan
279,MiscFeature_Gar2
280,MiscFeature_Othr
281,MiscFeature_Shed
282,MiscFeature_TenC
283,MiscFeature_nan
284,BsmtFinType2_ALQ
285,BsmtFinType2_BLQ
286,BsmtFinType2_GLQ
287,BsmtFinType2_LwQ
288,BsmtFinType2_Rec
289,BsmtFinType2_Unf
290,BsmtFinType2_nan
291,Condition1_Artery
292,Condition1_Feedr
293,Condition1_Norm
294,Condition1_PosA
295,Condition1_PosN
296,Condition1_RRAe
297,Condition1_RRAn
298,Condition1_RRNe
299,Condition1_RRNn
300,Condition1_nan
301,Condition2_Artery
302,Condition2_Feedr
303,Condition2_Norm
304,Condition2_PosA
305,Condition2_PosN
306,Condition2_RRAe
307,Condition2_RRAn
308,Condition2_RRNn
309,Condition2_nan
310,ExterQual_Ex
311,ExterQual_Fa
312,ExterQual_Gd
313,ExterQual_TA
314,ExterQual_nan
315,ExterCond_Ex
316,ExterCond_Fa
317,ExterCond_Gd
318,ExterCond_Po
319,ExterCond_TA
320,ExterCond_nan
321,GarageType_2Types
322,GarageType_Attchd
323,GarageType_Basment
324,GarageType_BuiltIn
325,GarageType_CarPort
326,GarageType_Detchd
327,GarageType_nan
edgedef>node1 VARCHAR,node2 VARCHAR, weight DOUBLE
2,1,0.232018609129
4,1,0.247263746288
5,1,0.322445173679
5,2,0.224576991988
5,4,0.228424578772
6,4,0.208026063181
8,1,0.307350553736
9,1,0.486665463774
9,2,0.224666307179
9,4,0.241434672138
9,5,0.564567060723
10,1,0.339519323899
10,2,0.200018795759
10,9,0.269141238074
11,1,0.291065582604
11,2,0.20572592049
11,4,0.226297632683
11,5,0.642276779704
11,9,0.371599809497
12,1,0.522396051992
12,2,0.204306145237
12,8,0.649211753574
12,9,0.296970385345
12,10,0.260010920235
14,1,0.537808498612
14,2,0.238923392249
14,4,0.308818823359
14,5,0.547765844835
14,6,0.2954928792
14,9,0.562021756613
14,10,0.396765037952
14,11,0.550683924194
14,12,0.239665966179
15,6,0.502900613346
16,1,0.323722413607
16,4,0.259977425468
16,5,0.48455738672
16,6,0.421377982876
16,9,0.405656208454
16,10,0.24367050308
16,11,0.439046483872
16,14,0.550599709368
16,15,0.363251983023
17,0,0.281721040265
17,1,0.238518409315
17,6,0.30788572076
19,5,0.324296732529
20,1,0.819529975005
20,2,0.235458622784
20,4,0.211671225498
20,5,0.233449092715
20,6,0.202646181002
20,8,0.244671104248
20,9,0.489781654104
20,10,0.41053108466
20,11,0.240379267604
20,12,0.445862656092
20,14,0.476223829078
20,16,0.380637494974
20,17,0.251758351878
25,1,0.391452002066
25,2,0.224880142304
25,5,0.825667484174
25,9,0.478953819893
25,11,0.592854976344
25,12,0.249503196685
25,14,0.572322768962
25,16,0.468270787173
25,19,0.375983195607
25,20,0.2819858587
26,1,0.260833134545
26,10,0.271364009625
26,12,0.214103130706
26,20,0.299474578508
27,1,0.392074576379
27,9,0.344996724106
27,10,0.26663948256
27,12,0.23363316702
27,14,0.251645775481
27,15,0.263169915881
27,17,0.386346885345
27,20,0.457181001995
27,26,0.426095018772
28,0,0.256045408536
28,1,0.285572563726
28,4,0.234191587832
28,6,0.616422635492
28,9,0.337822120637
28,10,0.326114480177
28,14,0.427452343278
28,15,0.676619935743
28,16,0.554784253533
28,20,0.409515978867
28,27,0.35209594766
29,1,0.434584834292
29,2,0.22634213847
29,4,0.21356944559
29,5,0.588920007005
29,9,0.882475414281
29,10,0.300788766301
29,11,0.420622154943
29,12,0.224053522394
29,14,0.600670716591
29,16,0.469672043268
29,20,0.439316807991
29,25,0.537850091711
29,27,0.285690924685
29,28,0.362288570815
30,1,0.363936221774
30,5,0.25269077499
30,9,0.3730664816
30,10,0.249069612837
30,12,0.264736264714
30,14,0.411875667278
30,16,0.276832847237
30,20,0.34450074689
30,25,0.315707062436
30,28,0.280681694609
30,29,0.36420364007
31,6,0.609707300272
31,10,0.203648508095
31,14,0.273458098643
31,15,0.226651484151
31,25,0.242655910241
31,28,0.343414857541
31,29,0.219178152167
31,30,0.20144394693
32,27,0.206166775276
33,1,0.415359605182
33,8,0.422900477383
33,12,0.495251469257
33,14,0.308158926906
33,16,0.288886055487
33,18,0.20929449242
33,20,0.317987438353
33,28,0.250647061376
33,29,0.21417518975
34,5,0.297002603056
34,25,0.387267782928
35,1,0.454868202548
35,2,0.247432820519
35,4,0.330223961712
35,5,0.231196740633
35,6,0.687501064167
35,9,0.468997477323
35,10,0.461679133761
35,11,0.28738851965
35,12,0.208171130145
35,14,0.593007430029
35,15,0.521269510919
35,16,0.630011646251
35,20,0.566023968936
35,26,0.263116167167
35,27,0.402797414085
35,28,0.825489374309
35,29,0.467247418795
35,30,0.390856639738
35,31,0.415771636105
35,33,0.24025726835
40,0,0.246797200031
40,1,0.207957540814
40,5,0.319116368961
40,9,0.230740797491
40,11,0.298878021742
40,14,0.272038424106
40,25,0.3818307518
40,29,0.233725863907
42,1,0.278663891331
42,5,0.47265970174
42,9,0.303139683791
42,11,0.516286188727
42,14,0.458225273089
42,16,0.33654041904
42,20,0.206156171702
42,25,0.465356366956
42,29,0.331128854977
42,33,0.211425306549
42,35,0.255870659188
42,40,0.223381595062
43,11,0.208122963705
43,40,0.320899887956
44,42,0.451389369832
46,5,0.326290677703
46,11,0.41961390045
46,14,0.339026427534
46,16,0.25367666775
46,25,0.285737603247
46,29,0.236313128988
46,42,0.653772569252
46,44,0.286344406756
54,42,0.204465168069
58,46,0.220244326481
60,25,0.209431179003
61,5,0.533013758738
61,9,0.280273525494
61,11,0.484835777245
61,14,0.352151677276
61,16,0.303980654355
61,25,0.514608561295
61,29,0.322758822912
61,33,0.240813162613
61,42,0.455878480977
61,46,0.369484440078
61,54,0.295118176869
61,56,0.30090831419
61,58,0.238326749165
62,5,0.325996339593
62,11,0.227454545236
62,25,0.390745436738
62,61,0.28675946396
71,1,0.265643533626
71,5,0.354445899725
71,9,0.296671393643
71,11,0.325647443588
71,14,0.327411843529
71,16,0.238471388914
71,20,0.221218718344
71,25,0.346953571784
71,29,0.286289835571
71,33,0.249236039059
71,42,0.257839330021
71,61,0.280522696285
73,1,0.212851053401
73,5,0.242709700773
73,9,0.218665312248
73,14,0.225013177296
73,25,0.238463162275
73,65,0.44633295648
73,68,0.201788866799
73,71,0.773680251681
75,40,0.231706854279
75,48,0.847916666667
76,49,0.576954417056
77,50,0.533605162943
78,51,0.671889228073
79,52,1.0
80,53,0.974171084194
81,42,0.223860696759
81,46,0.213376890241
81,54,0.88327139703
81,61,0.307469815301
82,55,0.315250914569
83,25,0.209637971162
83,56,0.973065193763
83,61,0.305834742955
84,58,0.755085263686
84,61,0.205215355374
85,59,0.314816686501
86,60,0.780636597882
87,5,0.536701531208
87,9,0.278680164603
87,11,0.484530163394
87,14,0.349259518888
87,16,0.312311586109
87,19,0.202695874608
87,25,0.518734206594
87,29,0.32414267646
87,33,0.24012063336
87,42,0.457663967925
87,46,0.374643814396
87,54,0.295943222399
87,56,0.305939516343
87,58,0.232636350893
87,61,0.977524887304
87,62,0.287358453423
87,71,0.279539773957
87,81,0.312610726082
87,83,0.310948315244
87,84,0.20864656644
88,5,0.331402325353
88,11,0.204522052612
88,25,0.408663801087
88,61,0.286010376662
88,62,0.859243932833
88,87,0.29920755288
89,63,0.530954913376
91,32,0.489425858949
91,55,0.221454612943
92,32,0.535533637557
93,27,0.209386011586
93,32,0.672499116414
94,27,0.224133143317
94,32,0.989665320725
94,91,0.533605162943
94,92,0.533605162943
94,93,0.653754420736
101,95,0.362868546854
101,96,0.216183707039
101,97,0.54316801319
101,98,0.569441546266
101,99,0.375734574651
103,25,0.247947292512
103,40,0.226096344328
105,96,0.314816686501
106,1,0.221664474165
106,40,0.204610762648
106,103,0.528976341469
106,104,0.640291573187
107,0,0.282477515329
107,1,0.388799493958
107,14,0.210176989872
107,33,0.207072693468
107,40,0.204831731839
107,106,0.478306875364
108,32,0.200154356704
112,5,0.241250343701
112,16,0.2138367099
112,25,0.227768513754
112,42,0.200226158476
112,61,0.219265174865
112,87,0.222231514873
112,108,0.420349640932
112,109,0.401428277747
112,110,0.711019253353
113,36,0.254287026581
113,68,0.205658883373
114,5,0.234869049324
114,11,0.208816383517
114,25,0.237645258834
116,1,0.25737267852
116,10,0.227464580926
116,12,0.206886545823
116,17,0.343352868147
116,20,0.304731046263
116,25,0.268063836779
116,26,0.204064901647
116,27,0.346736480243
116,40,0.203230772505
116,114,0.416608375364
116,115,0.20315841543
117,1,0.247379236912
117,5,0.26784087265
117,9,0.235579784871
117,16,0.216999967401
117,17,0.277749971244
117,20,0.267029128528
117,25,0.388682526628
117,27,0.324637650519
117,29,0.221834406577
117,116,0.808585354636
119,25,0.204390053694
119,116,0.261574322666
119,117,0.229710848748
120,26,0.225160004295
121,26,0.256525866767
121,27,0.215682225559
122,10,0.203016632574
122,25,0.234500987791
122,26,0.216111474046
122,116,0.268764033633
122,117,0.242837696215
122,119,0.92595897892
122,120,0.223508840719
124,100,0.276207167022
125,1,0.254702495524
125,20,0.314131397315
125,30,0.234051107248
127,1,0.278745453961
127,12,0.213284832112
127,20,0.323994458329
127,30,0.26332539828
127,125,0.933461582369
128,49,0.215818447222
129,3,0.306668113337
131,26,0.31071060154
131,124,0.204438980236
132,131,0.908607452637
133,26,0.540379788506
133,124,0.301472542661
133,131,0.398973573639
135,33,0.210290222718
136,5,0.205822245834
136,16,0.200387796968
137,1,0.317396066338
137,5,0.439632249859
137,8,0.450440983584
137,9,0.310815453139
137,11,0.401679054111
137,12,0.497435674391
137,14,0.433448127486
137,16,0.25532652801
137,20,0.246405089555
137,25,0.479424705096
137,29,0.321159283152
137,30,0.224375857085
137,42,0.329904676899
137,46,0.238122132147
137,61,0.273141876234
137,87,0.271303682863
137,135,0.266780928196
137,136,0.212724847792
138,18,0.30221920961
139,5,0.24307820965
139,11,0.238877146738
139,25,0.209049838523
139,137,0.200513972186
140,8,0.486347853936
140,12,0.628690027464
140,33,0.602706583597
140,135,0.272154871994
140,136,0.217009904389
140,137,0.409232292778
140,139,0.204553057081
141,0,0.282477515329
141,1,0.388799493958
141,14,0.210176989872
141,33,0.207072693468
141,40,0.204831731839
141,106,0.478306875364
141,107,1.0
142,0,0.418016950445
142,17,0.817460500962
142,27,0.40198861467
142,116,0.285959907643
142,117,0.223822538968
143,0,0.357126235913
143,17,0.444510654803
143,25,0.206035932332
143,40,0.250091366255
143,142,0.332077175907
144,0,0.680843830047
144,107,0.298222811916
144,141,0.298222811916
144,142,0.433285982261
145,17,0.415158527613
145,27,0.34695834483
145,116,0.237029421193
145,142,0.392756695282
146,5,0.214976034114
146,15,0.327985938333
146,17,0.524847172735
146,25,0.238477047979
146,27,0.333076527169
146,28,0.229434041982
146,116,0.205444770053
146,142,0.656151597023
148,5,0.224084023219
148,25,0.250002859471
149,1,0.292241640487
149,8,0.26984497448
149,10,0.201936596589
149,12,0.336150961129
149,20,0.285922445677
149,26,0.278061912501
149,124,0.222404371073
149,131,0.293706594577
149,132,0.218937726236
149,133,0.222404371073
149,137,0.234254655761
151,8,0.239483190898
151,9,0.209106311225
151,12,0.236447335041
151,20,0.24743323469
151,25,0.232916632376
151,29,0.206184653496
151,107,0.221075635775
151,137,0.270027335613
151,140,0.203005858088
151,141,0.221075635775
151,148,0.579032518355
151,149,0.435836007765
151,150,0.398999513707
152,0,0.277924269108
152,1,0.384975606267
152,14,0.20466338972
152,33,0.200810360662
152,40,0.201054774626
152,106,0.470687055013
152,107,0.986407604905
152,141,0.986407604905
152,144,0.293549399129
152,151,0.224121990418
153,27,0.258379509698
154,119,0.271734652372
154,122,0.339139427912
157,119,0.209930204187
157,122,0.258159585892
157,153,0.752676899764
157,154,0.421227159531
157,155,0.292857018353
159,65,0.335665236956
161,0,0.22184203916
161,144,0.269037201055
163,71,0.64569826877
163,73,0.634322005284
163,159,0.582946530528
163,162,0.252006367974
164,1,0.26626845906
164,5,0.349327185916
164,9,0.294713766045
164,11,0.322836661367
164,14,0.323294717874
164,16,0.232766754136
164,20,0.221036528354
164,25,0.343895399201
164,29,0.282163578021
164,33,0.249314854504
164,42,0.262246557204
164,61,0.28241269211
164,71,0.986818959685
164,73,0.769559305091
164,87,0.28129993951
164,163,0.654322925633
166,5,0.239835959717
166,25,0.321378777711
166,116,0.234357844167
166,117,0.301533565026
167,114,0.445741293354
167,116,0.267166288737
168,25,0.253115225651
168,114,0.274031022799
168,116,0.358875167245
168,117,0.233814156637
168,166,0.730392783768
168,167,0.65929800036
169,1,0.360271152548
169,5,0.212516140821
169,9,0.296179786634
169,10,0.213324396941
169,11,0.237868174088
169,12,0.242038114982
169,14,0.425750359674
169,20,0.347257466047
169,25,0.20443003502
169,28,0.247357604106
169,29,0.273274737859
169,30,0.259191062795
169,35,0.30660364517
169,42,0.20744472996
169,53,0.230719326375
169,71,0.280676855422
169,80,0.22797390245
169,127,0.207776511776
169,137,0.212175277591
169,164,0.285299701728
170,9,0.200302315082
170,11,0.205775495267
170,25,0.217854425274
170,29,0.215605065359
170,40,0.300744397348
171,5,0.425989798817
171,9,0.291625993192
171,11,0.533628451753
171,14,0.409133588812
171,16,0.372641928269
171,25,0.435314869327
171,29,0.337547854025
171,35,0.226252869696
171,42,0.415288161218
171,46,0.367700104892
171,61,0.363586275493
171,87,0.366404578003
171,114,0.20941945598
171,137,0.316004767484
171,169,0.222036124048
172,1,0.311190006102
172,4,0.2213128975
172,5,0.482079719286
172,9,0.370934797424
172,11,0.576964122823
172,14,0.553890811423
172,16,0.418697518463
172,20,0.273566308689
172,25,0.45979199746
172,28,0.210427821425
172,29,0.399448958188
172,33,0.218945059515
172,35,0.350179200248
172,42,0.476880865705
172,46,0.410884773877
172,61,0.382430097651
172,71,0.27433521308
172,87,0.387794747724
172,137,0.383154117166
172,139,0.200165075835
172,164,0.273825866707
172,169,0.273026757933
172,171,0.824456522064
174,25,0.21545674174
175,131,0.256722658128
175,132,0.251520698229
176,26,0.359474567303
176,124,0.220006580483
176,131,0.492510944531
176,132,0.35113499856
176,133,0.408068411574
176,149,0.270704122509
177,26,0.256842783647
177,131,0.533652225554
177,132,0.464768353687
177,133,0.257069556857
177,149,0.221972351149
177,174,0.629912582272
177,175,0.558577782355
177,176,0.471633306733
179,1,0.301620334205
179,12,0.298604476184
179,20,0.239095088881
179,27,0.288917312733
179,32,0.311084338642
179,35,0.205660220853
179,93,0.576954417056
179,94,0.377186500713
179,121,0.315250914569
180,93,0.222624225045
180,124,0.648793549495
180,133,0.262885618181
180,149,0.244198829086
180,176,0.245752817135
181,99,0.256957115302
181,124,0.276207167022
181,133,0.276207167022
182,124,0.276207167022
182,133,0.276207167022
183,48,0.222146053506
183,75,0.222146053506
184,77,0.210928172987
184,100,0.30047628713
184,124,0.834913924148
184,180,0.647068191757
185,85,0.314816686501
185,128,0.335387978206
185,129,0.314816686501
185,180,0.435352865349
186,180,0.477069139115
188,5,0.261160538509
188,11,0.278195914517
188,14,0.212624669186
188,25,0.289875124959
188,29,0.205865216153
189,11,0.209720762379
189,40,0.334803526183
190,75,0.254905605547
190,160,0.286990469978
191,96,0.446600133489
191,105,0.706864413817
192,5,0.328287937754
192,9,0.235929371185
192,11,0.350664763234
192,14,0.260253663215
192,16,0.20461122896
192,25,0.341058415176
192,29,0.247021111978
192,40,0.344158007914
192,62,0.214168849431
192,170,0.236503342558
192,171,0.20189148979
192,188,0.853554427364
192,189,0.446633638476
194,100,0.256957115302
195,14,0.224726933779
195,25,0.275279838317
195,29,0.22233790425
195,30,0.57044696284
196,1,0.340756987251
196,5,0.331686805665
196,9,0.346989742196
196,10,0.204656756643
196,11,0.240784213245
196,12,0.23521682355
196,14,0.39795491275
196,16,0.278894994651
196,20,0.325565678435
196,25,0.426399018366
196,29,0.374556150363
196,30,0.687047773911
196,35,0.246464476144
196,127,0.222081108497
196,137,0.263164656816
196,172,0.228660755887