-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.csv
We can't make this file beautiful and searchable because it's too large.
3742 lines (3742 loc) · 766 KB
/
5.csv
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
sa4_name_2016,sa4_code,anzsco,unempratemvmt,score00,averageannualmvmt20132016mvmt,score0001,housepiceandrentpurchaseprice,weeklyrentprice,purchasescore,rentscore,incomemedian,score,occunemp,occempscore,patentsincreasepat,increasetrade,increasenewbusiness,scorepatents,scoretrademarks,scoreentries,unemprate,unempscore,total_businesses2013,total_business2014,increasetotalbus201314,incbus_score,sa4_code,NSWscore,state,propjvinc201316,jv_score,priorityoccup_score,occupunemprate,occunempscore,numbus_industry201315mvmt,_201315mvmt
Capital Region,101,11,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,0,1,0,1.775513209,3,0.221545278,1
Capital Region,101,12,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,12.98917569,1,0,1.775513209,3,0.221545278,1
Capital Region,101,13,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,125.7944587,3,1,1.934726957,2,0.221545278,1
Capital Region,101,14,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,60.24204393,2,0,1.38456451,3,0.221545278,1
Capital Region,101,21,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,9.459459459,0,0,3.044104943,1,0.221545278,1
Capital Region,101,22,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,128.2010096,3,0,2.395599968,2,0.221545278,1
Capital Region,101,23,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,55.50151976,2,2,2.744430198,2,0.221545278,1
Capital Region,101,24,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,88.50221767,1,1,1.983106736,2,0.221545278,1
Capital Region,101,25,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,153.2659637,3,3,0.842000852,3,0.221545278,1
Capital Region,101,26,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,26.48698885,0,1,2.189164464,2,0.221545278,1
Capital Region,101,27,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,79.0922619,1,1,1.637641677,3,0.221545278,1
Capital Region,101,31,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,44.91193738,2,1,1.48376513,3,0.221545278,1
Capital Region,101,32,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,63.79310345,2,2,3.672178202,0,0.221545278,1
Capital Region,101,33,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,78.68525896,2,3,3.087091782,1,0.221545278,1
Capital Region,101,34,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,316.6219839,3,2,3.928639959,0,0.221545278,1
Capital Region,101,35,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,50.43010753,3,2,3.215717391,1,0.221545278,1
Capital Region,101,36,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,104.6106557,0,0,4.462419792,0,0.221545278,1
Capital Region,101,39,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,220.1716738,3,0,1.495232111,3,0.221545278,1
Capital Region,101,41,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,109.0305445,3,1,3.48189448,0,0.221545278,1
Capital Region,101,42,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,25.54517134,1,0,4.393815552,0,0.221545278,1
Capital Region,101,43,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,24.54258675,0,0,5.277350171,0,0.221545278,1
Capital Region,101,44,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,80.11152416,3,0,3.334412454,1,0.221545278,1
Capital Region,101,45,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,165.2380952,3,0,2.763530685,2,0.221545278,1
Capital Region,101,51,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,69.95884774,1,0,2.535082122,2,0.221545278,1
Capital Region,101,52,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,1,0,2.826080167,1,0.221545278,1
Capital Region,101,53,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,1,0,3.294490254,1,0.221545278,1
Capital Region,101,54,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,2,0,4.703538895,0,0.221545278,1
Capital Region,101,55,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,66.55328798,3,0,1.166403088,3,0.221545278,1
Capital Region,101,56,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,500,3,0,3.351366358,1,0.221545278,1
Capital Region,101,59,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,57.24381625,3,0,2.833331772,1,0.221545278,1
Capital Region,101,61,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,39.44337812,2,0,1.418062031,3,0.221545278,1
Capital Region,101,62,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,32.25806452,3,0,5.58626565,0,0.221545278,1
Capital Region,101,63,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,83.4179357,3,0,2.852111249,1,0.221545278,1
Capital Region,101,71,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,14.13612565,2,0,3.517283791,0,0.221545278,1
Capital Region,101,72,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,29.69387755,1,0,4.54891329,0,0.221545278,1
Capital Region,101,73,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,45.88744589,1,0,2.452576498,2,0.221545278,1
Capital Region,101,74,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,53.45679012,3,0,6.827084124,0,0.221545278,1
Capital Region,101,81,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,89.8989899,2,0,5.323702597,0,0.221545278,1
Capital Region,101,82,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,42.56756757,0,0,8.599890638,0,0.221545278,1
Capital Region,101,83,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,97.18309859,2,0,7.394282019,0,0.221545278,1
Capital Region,101,84,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,85.67480424,2,0,5.816067226,0,0.221545278,1
Capital Region,101,85,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,501.6216216,0,0,8.407560815,0,0.221545278,1
Capital Region,101,89,9.789173094,0,5.523974196,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,23.44086022,2,0,3.879472423,0,0.221545278,1
Central Coast,102,11,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,139.9991297,3,0,1.775513209,3,1.417221387,2
Central Coast,102,12,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,1,1,0,1.775513209,3,1.417221387,2
Central Coast,102,13,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,125.7944587,2,1,1.934726957,2,1.417221387,2
Central Coast,102,14,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,45.50128535,3,0,1.38456451,3,1.417221387,2
Central Coast,102,21,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,266.2337662,3,0,3.044104943,1,1.417221387,2
Central Coast,102,22,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,128.2010096,2,0,2.395599968,2,1.417221387,2
Central Coast,102,23,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,38.61335384,2,2,2.744430198,2,1.417221387,2
Central Coast,102,24,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,41.40798226,1,1,1.983106736,2,1.417221387,2
Central Coast,102,25,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,153.2659637,2,3,0.842000852,3,1.417221387,2
Central Coast,102,26,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,70.15429122,2,1,2.189164464,2,1.417221387,2
Central Coast,102,27,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,53.5389482,2,1,1.637641677,3,1.417221387,2
Central Coast,102,31,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,68.68217054,3,1,1.48376513,3,1.417221387,2
Central Coast,102,32,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,63.74100719,3,2,3.672178202,0,1.417221387,2
Central Coast,102,33,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,95.09493671,2,3,3.087091782,1,1.417221387,2
Central Coast,102,34,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,64.21052632,3,2,3.928639959,0,1.417221387,2
Central Coast,102,35,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,38.31775701,3,2,3.215717391,1,1.417221387,2
Central Coast,102,36,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,34.8219333,2,0,4.462419792,0,1.417221387,2
Central Coast,102,39,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,220.1716738,2,0,1.495232111,3,1.417221387,2
Central Coast,102,41,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,178.4194529,3,1,3.48189448,0,1.417221387,2
Central Coast,102,42,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,67.11349419,3,0,4.393815552,0,1.417221387,2
Central Coast,102,43,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,-16.6841553,1,0,5.277350171,0,1.417221387,2
Central Coast,102,44,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,80.11152416,1,0,3.334412454,1,1.417221387,2
Central Coast,102,45,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,100,2,0,2.763530685,2,1.417221387,2
Central Coast,102,51,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,2.535082122,2,1.417221387,2
Central Coast,102,52,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,2.826080167,1,1.417221387,2
Central Coast,102,53,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,3.294490254,1,1.417221387,2
Central Coast,102,54,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,28.89963724,2,0,4.703538895,0,1.417221387,2
Central Coast,102,55,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,87.4435411,3,0,1.166403088,3,1.417221387,2
Central Coast,102,56,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,500,3,0,3.351366358,1,1.417221387,2
Central Coast,102,59,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,62.62295082,3,0,2.833331772,1,1.417221387,2
Central Coast,102,61,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,36.69821241,3,0,1.418062031,3,1.417221387,2
Central Coast,102,62,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,32.25806452,3,0,5.58626565,0,1.417221387,2
Central Coast,102,63,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,83.4179357,1,0,2.852111249,1,1.417221387,2
Central Coast,102,71,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,66.56394453,3,0,3.517283791,0,1.417221387,2
Central Coast,102,72,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,119.8770492,3,0,4.54891329,0,1.417221387,2
Central Coast,102,73,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,119.8770492,3,0,2.452576498,2,1.417221387,2
Central Coast,102,74,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,64.35006435,3,0,6.827084124,0,1.417221387,2
Central Coast,102,81,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,35.52795031,3,0,5.323702597,0,1.417221387,2
Central Coast,102,82,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,57.66016713,3,0,8.599890638,0,1.417221387,2
Central Coast,102,83,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,0,2,0,7.394282019,0,1.417221387,2
Central Coast,102,84,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,143.3476395,3,0,5.816067226,0,1.417221387,2
Central Coast,102,85,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,6.95900858,3,0,8.407560815,0,1.417221387,2
Central Coast,102,89,4.037737832,3,-0.892699462,1,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,18.46361186,3,0,3.879472423,0,1.417221387,2
New South Wales - Central West,103,11,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,433.2935561,3,0,1.775513209,3,2.762430939,2
New South Wales - Central West,103,12,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,1,0,0,1.775513209,3,2.762430939,2
New South Wales - Central West,103,13,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,161.1739365,3,1,1.934726957,2,2.762430939,2
New South Wales - Central West,103,14,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,45.50128535,1,0,1.38456451,3,2.762430939,2
New South Wales - Central West,103,21,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,299.4708995,3,0,3.044104943,1,2.762430939,2
New South Wales - Central West,103,22,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,165.1234568,3,0,2.395599968,2,2.762430939,2
New South Wales - Central West,103,23,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,36.16843279,2,2,2.744430198,2,2.762430939,2
New South Wales - Central West,103,24,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,123.5491071,3,1,1.983106736,2,2.762430939,2
New South Wales - Central West,103,25,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,229.5609756,3,3,0.842000852,3,2.762430939,2
New South Wales - Central West,103,26,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,107.8144078,3,1,2.189164464,2,2.762430939,2
New South Wales - Central West,103,27,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,118.940754,3,1,1.637641677,3,2.762430939,2
New South Wales - Central West,103,31,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,100,3,1,1.48376513,3,2.762430939,2
New South Wales - Central West,103,32,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,63.74100719,2,2,3.672178202,0,2.762430939,2
New South Wales - Central West,103,33,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,95.09493671,1,3,3.087091782,1,2.762430939,2
New South Wales - Central West,103,34,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,64.21052632,2,2,3.928639959,0,2.762430939,2
New South Wales - Central West,103,35,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,30.92783505,1,2,3.215717391,1,2.762430939,2
New South Wales - Central West,103,36,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,34.8219333,0,0,4.462419792,0,2.762430939,2
New South Wales - Central West,103,39,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,199.1525424,3,0,1.495232111,3,2.762430939,2
New South Wales - Central West,103,41,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,178.4194529,3,1,3.48189448,0,2.762430939,2
New South Wales - Central West,103,42,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,67.11349419,0,0,4.393815552,0,2.762430939,2
New South Wales - Central West,103,43,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,-16.6841553,1,0,5.277350171,0,2.762430939,2
New South Wales - Central West,103,44,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,91.00850547,3,0,3.334412454,1,2.762430939,2
New South Wales - Central West,103,45,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,200,3,0,2.763530685,2,2.762430939,2
New South Wales - Central West,103,51,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,2.535082122,2,2.762430939,2
New South Wales - Central West,103,52,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,2.826080167,1,2.762430939,2
New South Wales - Central West,103,53,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,3.294490254,1,2.762430939,2
New South Wales - Central West,103,54,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,28.89963724,2,0,4.703538895,0,2.762430939,2
New South Wales - Central West,103,55,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,87.4435411,3,0,1.166403088,3,2.762430939,2
New South Wales - Central West,103,56,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,66.50717703,2,0,3.351366358,1,2.762430939,2
New South Wales - Central West,103,59,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,62.62295082,3,0,2.833331772,1,2.762430939,2
New South Wales - Central West,103,61,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,36.69821241,1,0,1.418062031,3,2.762430939,2
New South Wales - Central West,103,62,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,20.10928962,1,0,5.58626565,0,2.762430939,2
New South Wales - Central West,103,63,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,57.23172628,3,0,2.852111249,1,2.762430939,2
New South Wales - Central West,103,71,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,66.56394453,3,0,3.517283791,0,2.762430939,2
New South Wales - Central West,103,72,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,119.8770492,3,0,4.54891329,0,2.762430939,2
New South Wales - Central West,103,73,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,119.8770492,3,0,2.452576498,2,2.762430939,2
New South Wales - Central West,103,74,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,64.35006435,1,0,6.827084124,0,2.762430939,2
New South Wales - Central West,103,81,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,35.52795031,0,0,5.323702597,0,2.762430939,2
New South Wales - Central West,103,82,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,57.66016713,1,0,8.599890638,0,2.762430939,2
New South Wales - Central West,103,83,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,-5.123339658,1,0,7.394282019,0,2.762430939,2
New South Wales - Central West,103,84,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,143.3476395,1,0,5.816067226,0,2.762430939,2
New South Wales - Central West,103,85,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,6.95900858,0,0,8.407560815,0,2.762430939,2
New South Wales - Central West,103,89,17.01574093,0,-10.9447846,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,18.46361186,1,0,3.879472423,0,2.762430939,2
Coffs Harbour - Grafton,104,11,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,433.2935561,2,0,1.775513209,3,-3.616438356,0
Coffs Harbour - Grafton,104,12,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,500.2145923,3,0,1.775513209,3,-3.616438356,0
Coffs Harbour - Grafton,104,13,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,161.1739365,2,1,1.934726957,2,-3.616438356,0
Coffs Harbour - Grafton,104,14,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,11.54684096,1,0,1.38456451,3,-3.616438356,0
Coffs Harbour - Grafton,104,21,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,299.4708995,2,0,3.044104943,1,-3.616438356,0
Coffs Harbour - Grafton,104,22,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,165.1234568,3,0,2.395599968,2,-3.616438356,0
Coffs Harbour - Grafton,104,23,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,130.9475397,3,2,2.744430198,2,-3.616438356,0
Coffs Harbour - Grafton,104,24,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,123.5491071,2,1,1.983106736,2,-3.616438356,0
Coffs Harbour - Grafton,104,25,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,229.5609756,0,3,0.842000852,3,-3.616438356,0
Coffs Harbour - Grafton,104,26,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,120.0889248,3,1,2.189164464,2,-3.616438356,0
Coffs Harbour - Grafton,104,27,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,118.940754,2,1,1.637641677,3,-3.616438356,0
Coffs Harbour - Grafton,104,31,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,100,2,1,1.48376513,3,-3.616438356,0
Coffs Harbour - Grafton,104,32,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,21.76560122,2,2,3.672178202,0,-3.616438356,0
Coffs Harbour - Grafton,104,33,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.96674584,1,3,3.087091782,1,-3.616438356,0
Coffs Harbour - Grafton,104,34,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,9.89010989,2,2,3.928639959,0,-3.616438356,0
Coffs Harbour - Grafton,104,35,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,8.955223881,2,2,3.215717391,1,-3.616438356,0
Coffs Harbour - Grafton,104,36,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,88.31775701,3,0,4.462419792,0,-3.616438356,0
Coffs Harbour - Grafton,104,39,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,199.1525424,1,0,1.495232111,3,-3.616438356,0
Coffs Harbour - Grafton,104,41,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,122.9712859,2,1,3.48189448,0,-3.616438356,0
Coffs Harbour - Grafton,104,42,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,12.34106208,0,0,4.393815552,0,-3.616438356,0
Coffs Harbour - Grafton,104,43,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-13.05285868,1,0,5.277350171,0,-3.616438356,0
Coffs Harbour - Grafton,104,44,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,91.00850547,1,0,3.334412454,1,-3.616438356,0
Coffs Harbour - Grafton,104,45,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,200,1,0,2.763530685,2,-3.616438356,0
Coffs Harbour - Grafton,104,51,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.535082122,2,-3.616438356,0
Coffs Harbour - Grafton,104,52,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.826080167,1,-3.616438356,0
Coffs Harbour - Grafton,104,53,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,3.294490254,1,-3.616438356,0
Coffs Harbour - Grafton,104,54,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,37.71313942,3,0,4.703538895,0,-3.616438356,0
Coffs Harbour - Grafton,104,55,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,86.55126498,3,0,1.166403088,3,-3.616438356,0
Coffs Harbour - Grafton,104,56,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,20.02781641,1,0,3.351366358,1,-3.616438356,0
Coffs Harbour - Grafton,104,59,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,44.4527178,3,0,2.833331772,1,-3.616438356,0
Coffs Harbour - Grafton,104,61,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,23.71541502,3,0,1.418062031,3,-3.616438356,0
Coffs Harbour - Grafton,104,62,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,15.92039801,3,0,5.58626565,0,-3.616438356,0
Coffs Harbour - Grafton,104,63,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,57.23172628,2,0,2.852111249,1,-3.616438356,0
Coffs Harbour - Grafton,104,71,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.33538841,1,0,3.517283791,0,-3.616438356,0
Coffs Harbour - Grafton,104,72,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,4.54891329,0,-3.616438356,0
Coffs Harbour - Grafton,104,73,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,2.452576498,2,-3.616438356,0
Coffs Harbour - Grafton,104,74,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,5.614035088,2,0,6.827084124,0,-3.616438356,0
Coffs Harbour - Grafton,104,81,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.34515366,3,0,5.323702597,0,-3.616438356,0
Coffs Harbour - Grafton,104,82,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,72.15346535,3,0,8.599890638,0,-3.616438356,0
Coffs Harbour - Grafton,104,83,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,17.7920686,2,0,7.394282019,0,-3.616438356,0
Coffs Harbour - Grafton,104,84,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.8740458,3,0,5.816067226,0,-3.616438356,0
Coffs Harbour - Grafton,104,85,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-2.748091603,3,0,8.407560815,0,-3.616438356,0
Coffs Harbour - Grafton,104,89,9.789173094,0,53.32480902,3,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,24.47643979,3,0,3.879472423,0,-3.616438356,0
Far West and Orana,105,11,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,69.97782705,1,0,1.775513209,3,6.094808126,3
Far West and Orana,105,12,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,500.2145923,2,0,1.775513209,3,6.094808126,3
Far West and Orana,105,13,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.48519041,1,1,1.934726957,2,6.094808126,3
Far West and Orana,105,14,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,44.24119241,3,0,1.38456451,3,6.094808126,3
Far West and Orana,105,21,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.30965909,1,0,3.044104943,1,6.094808126,3
Far West and Orana,105,22,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,72.55301794,2,0,2.395599968,2,6.094808126,3
Far West and Orana,105,23,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,130.9475397,0,2,2.744430198,2,6.094808126,3
Far West and Orana,105,24,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,83.36414048,2,1,1.983106736,2,6.094808126,3
Far West and Orana,105,25,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,105.9595407,3,3,0.842000852,3,6.094808126,3
Far West and Orana,105,26,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,120.0889248,3,1,2.189164464,2,6.094808126,3
Far West and Orana,105,27,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,65.04132231,2,1,1.637641677,3,6.094808126,3
Far West and Orana,105,31,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,62.3119015,0,1,1.48376513,3,6.094808126,3
Far West and Orana,105,32,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,21.76560122,1,2,3.672178202,0,6.094808126,3
Far West and Orana,105,33,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.96674584,1,3,3.087091782,1,6.094808126,3
Far West and Orana,105,34,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,29.35251799,3,2,3.928639959,0,6.094808126,3
Far West and Orana,105,35,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,8.955223881,2,2,3.215717391,1,6.094808126,3
Far West and Orana,105,36,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,88.31775701,0,0,4.462419792,0,6.094808126,3
Far West and Orana,105,39,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,135.479798,3,0,1.495232111,3,6.094808126,3
Far West and Orana,105,41,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,108.3188908,3,1,3.48189448,0,6.094808126,3
Far West and Orana,105,42,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,87.60162602,3,0,4.393815552,0,6.094808126,3
Far West and Orana,105,43,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.23146474,3,0,5.277350171,0,6.094808126,3
Far West and Orana,105,44,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-15.98272138,1,0,3.334412454,1,6.094808126,3
Far West and Orana,105,45,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-10.38834951,0,0,2.763530685,2,6.094808126,3
Far West and Orana,105,51,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,2.535082122,2,6.094808126,3
Far West and Orana,105,52,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,2.826080167,1,6.094808126,3
Far West and Orana,105,53,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,3.294490254,1,6.094808126,3
Far West and Orana,105,54,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,37.71313942,2,0,4.703538895,0,6.094808126,3
Far West and Orana,105,55,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,50,0,0,1.166403088,3,6.094808126,3
Far West and Orana,105,56,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,902.3809524,3,0,3.351366358,1,6.094808126,3
Far West and Orana,105,59,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,44.4527178,1,0,2.833331772,1,6.094808126,3
Far West and Orana,105,61,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,23.71541502,1,0,1.418062031,3,6.094808126,3
Far West and Orana,105,62,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,15.92039801,2,0,5.58626565,0,6.094808126,3
Far West and Orana,105,63,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,17.56007394,2,0,2.852111249,1,6.094808126,3
Far West and Orana,105,71,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.24486508,2,0,3.517283791,0,6.094808126,3
Far West and Orana,105,72,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,119.5325543,2,0,4.54891329,0,6.094808126,3
Far West and Orana,105,73,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,119.5325543,2,0,2.452576498,2,6.094808126,3
Far West and Orana,105,74,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,43.24324324,3,0,6.827084124,0,6.094808126,3
Far West and Orana,105,81,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,48.34515366,2,0,5.323702597,0,6.094808126,3
Far West and Orana,105,82,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,72.15346535,0,0,8.599890638,0,6.094808126,3
Far West and Orana,105,83,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,17.7920686,0,0,7.394282019,0,6.094808126,3
Far West and Orana,105,84,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.8740458,2,0,5.816067226,0,6.094808126,3
Far West and Orana,105,85,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-2.748091603,1,0,8.407560815,0,6.094808126,3
Far West and Orana,105,89,9.789173094,0,40.80241089,3,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.47643979,2,0,3.879472423,0,6.094808126,3
Hunter Valley exc Newcastle,106,11,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,91.80327869,2,0,1.775513209,3,1.183219792,2
Hunter Valley exc Newcastle,106,12,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,100.3076923,2,0,1.775513209,3,1.183219792,2
Hunter Valley exc Newcastle,106,13,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,11.08094349,1,1,1.934726957,2,1.183219792,2
Hunter Valley exc Newcastle,106,14,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,44.24119241,0,0,1.38456451,3,1.183219792,2
Hunter Valley exc Newcastle,106,21,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,28.59122402,0,0,3.044104943,1,1.183219792,2
Hunter Valley exc Newcastle,106,22,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.44520977,0,0,2.395599968,2,1.183219792,2
Hunter Valley exc Newcastle,106,23,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-9.708737864,1,2,2.744430198,2,1.183219792,2
Hunter Valley exc Newcastle,106,24,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,103.898051,3,1,1.983106736,2,1.183219792,2
Hunter Valley exc Newcastle,106,25,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,105.9595407,0,3,0.842000852,3,1.183219792,2
Hunter Valley exc Newcastle,106,26,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,107.3770492,3,1,2.189164464,2,1.183219792,2
Hunter Valley exc Newcastle,106,27,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,60.02029427,1,1,1.637641677,3,1.183219792,2
Hunter Valley exc Newcastle,106,31,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,31.36966127,2,1,1.48376513,3,1.183219792,2
Hunter Valley exc Newcastle,106,32,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,8.655616943,2,2,3.672178202,0,1.183219792,2
Hunter Valley exc Newcastle,106,33,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,46.11398964,2,3,3.087091782,1,1.183219792,2
Hunter Valley exc Newcastle,106,34,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,29.35251799,2,2,3.928639959,0,1.183219792,2
Hunter Valley exc Newcastle,106,35,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,0,1,2,3.215717391,1,1.183219792,2
Hunter Valley exc Newcastle,106,36,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-9.589041096,1,0,4.462419792,0,1.183219792,2
Hunter Valley exc Newcastle,106,39,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,135.479798,1,0,1.495232111,3,1.183219792,2
Hunter Valley exc Newcastle,106,41,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,108.3188908,1,1,3.48189448,0,1.183219792,2
Hunter Valley exc Newcastle,106,42,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,87.60162602,0,0,4.393815552,0,1.183219792,2
Hunter Valley exc Newcastle,106,43,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,24.23146474,1,0,5.277350171,0,1.183219792,2
Hunter Valley exc Newcastle,106,44,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-25,0,0,3.334412454,1,1.183219792,2
Hunter Valley exc Newcastle,106,45,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-22.24215247,0,0,2.763530685,2,1.183219792,2
Hunter Valley exc Newcastle,106,51,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,2.535082122,2,1.183219792,2
Hunter Valley exc Newcastle,106,52,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,2.826080167,1,1.183219792,2
Hunter Valley exc Newcastle,106,53,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,3.294490254,1,1.183219792,2
Hunter Valley exc Newcastle,106,54,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,15.06849315,1,0,4.703538895,0,1.183219792,2
Hunter Valley exc Newcastle,106,55,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,18.8034188,2,0,1.166403088,3,1.183219792,2
Hunter Valley exc Newcastle,106,56,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,902.3809524,3,0,3.351366358,1,1.183219792,2
Hunter Valley exc Newcastle,106,59,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,27.11323764,2,0,2.833331772,1,1.183219792,2
Hunter Valley exc Newcastle,106,61,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,1.708428246,2,0,1.418062031,3,1.183219792,2
Hunter Valley exc Newcastle,106,62,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,14.07867495,1,0,5.58626565,0,1.183219792,2
Hunter Valley exc Newcastle,106,63,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,17.56007394,0,0,2.852111249,1,1.183219792,2
Hunter Valley exc Newcastle,106,71,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,24.24486508,2,0,3.517283791,0,1.183219792,2
Hunter Valley exc Newcastle,106,72,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.4501992,2,0,4.54891329,0,1.183219792,2
Hunter Valley exc Newcastle,106,73,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.4501992,2,0,2.452576498,2,1.183219792,2
Hunter Valley exc Newcastle,106,74,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,43.24324324,1,0,6.827084124,0,1.183219792,2
Hunter Valley exc Newcastle,106,81,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-7.524271845,0,0,5.323702597,0,1.183219792,2
Hunter Valley exc Newcastle,106,82,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,36.72316384,2,0,8.599890638,0,1.183219792,2
Hunter Valley exc Newcastle,106,83,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-19.93704092,1,0,7.394282019,0,1.183219792,2
Hunter Valley exc Newcastle,106,84,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,25.37313433,1,0,5.816067226,0,1.183219792,2
Hunter Valley exc Newcastle,106,85,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-31.97831978,0,0,8.407560815,0,1.183219792,2
Hunter Valley exc Newcastle,106,89,20.44766939,0,18.12418081,3,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,7.744874715,2,0,3.879472423,0,1.183219792,2
Illawarra,107,11,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,91.80327869,0,0,1.775513209,3,3.580729167,2
Illawarra,107,12,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,100.3076923,0,0,1.775513209,3,3.580729167,2
Illawarra,107,13,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,1,1,1,1.934726957,2,3.580729167,2
Illawarra,107,14,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,45.62926224,3,0,1.38456451,3,3.580729167,2
Illawarra,107,21,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,128.9516129,3,0,3.044104943,1,3.580729167,2
Illawarra,107,22,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,47.15096926,2,0,2.395599968,2,3.580729167,2
Illawarra,107,23,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,8.4609076,2,2,2.744430198,2,3.580729167,2
Illawarra,107,24,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,103.898051,2,1,1.983106736,2,3.580729167,2
Illawarra,107,25,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,61.91910499,2,3,0.842000852,3,3.580729167,2
Illawarra,107,26,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,107.3770492,1,1,2.189164464,2,3.580729167,2
Illawarra,107,27,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,74.73540457,2,1,1.637641677,3,3.580729167,2
Illawarra,107,31,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,31.36966127,1,1,1.48376513,3,3.580729167,2
Illawarra,107,32,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,23.13284865,2,2,3.672178202,0,3.580729167,2
Illawarra,107,33,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,46.11398964,0,3,3.087091782,1,3.580729167,2
Illawarra,107,34,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.45929339,3,2,3.928639959,0,3.580729167,2
Illawarra,107,35,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.429941396,1,2,3.215717391,1,3.580729167,2
Illawarra,107,36,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,9.794520548,1,0,4.462419792,0,3.580729167,2
Illawarra,107,39,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.35557987,1,0,1.495232111,3,3.580729167,2
Illawarra,107,41,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,77.74657775,2,1,3.48189448,0,3.580729167,2
Illawarra,107,42,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.19983172,1,0,4.393815552,0,3.580729167,2
Illawarra,107,43,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-8.002936858,1,0,5.277350171,0,3.580729167,2
Illawarra,107,44,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-25.52499261,1,0,3.334412454,1,3.580729167,2
Illawarra,107,45,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,17.78036026,2,0,2.763530685,2,3.580729167,2
Illawarra,107,51,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.535082122,2,3.580729167,2
Illawarra,107,52,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.826080167,1,3.580729167,2
Illawarra,107,53,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,3.294490254,1,3.580729167,2
Illawarra,107,54,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,11.91066998,1,0,4.703538895,0,3.580729167,2
Illawarra,107,55,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,21.50189087,2,0,1.166403088,3,3.580729167,2
Illawarra,107,56,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,85.13011152,3,0,3.351366358,1,3.580729167,2
Illawarra,107,59,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.11323764,1,0,2.833331772,1,3.580729167,2
Illawarra,107,61,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,2.228915663,2,0,1.418062031,3,3.580729167,2
Illawarra,107,62,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.11355311,2,0,5.58626565,0,3.580729167,2
Illawarra,107,63,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.54565061,3,0,2.852111249,1,3.580729167,2
Illawarra,107,71,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.91752577,1,0,3.517283791,0,3.580729167,2
Illawarra,107,72,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,4.54891329,0,3.580729167,2
Illawarra,107,73,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,2.452576498,2,3.580729167,2
Illawarra,107,74,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-10.44776119,1,0,6.827084124,0,3.580729167,2
Illawarra,107,81,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-3.484320557,2,0,5.323702597,0,3.580729167,2
Illawarra,107,82,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,36.72316384,2,0,8.599890638,0,3.580729167,2
Illawarra,107,83,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-19.93704092,0,0,7.394282019,0,3.580729167,2
Illawarra,107,84,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-29.18395574,1,0,5.816067226,0,3.580729167,2
Illawarra,107,85,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-4.465493911,2,0,8.407560815,0,3.580729167,2
Illawarra,107,89,7.097732883,1,-0.583042887,1,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.419354839,1,0,3.879472423,0,3.580729167,2
Mid North Coast,108,11,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,69.97782705,2,0,1.775513209,3,0.700770848,1
Mid North Coast,108,12,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,500.2145923,3,0,1.775513209,3,0.700770848,1
Mid North Coast,108,13,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,24.48519041,2,1,1.934726957,2,0.700770848,1
Mid North Coast,108,14,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,45.62926224,1,0,1.38456451,3,0.700770848,1
Mid North Coast,108,21,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,128.9516129,2,0,3.044104943,1,0.700770848,1
Mid North Coast,108,22,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,72.55301794,3,0,2.395599968,2,0.700770848,1
Mid North Coast,108,23,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,130.9475397,3,2,2.744430198,2,0.700770848,1
Mid North Coast,108,24,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,54.53815261,2,1,1.983106736,2,0.700770848,1
Mid North Coast,108,25,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,61.91910499,0,3,0.842000852,3,0.700770848,1
Mid North Coast,108,26,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,120.0889248,3,1,2.189164464,2,0.700770848,1
Mid North Coast,108,27,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,74.73540457,2,1,1.637641677,3,0.700770848,1
Mid North Coast,108,31,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,62.3119015,2,1,1.48376513,3,0.700770848,1
Mid North Coast,108,32,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,23.13284865,2,2,3.672178202,0,0.700770848,1
Mid North Coast,108,33,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,33.96674584,1,3,3.087091782,1,0.700770848,1
Mid North Coast,108,34,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,51.45929339,2,2,3.928639959,0,0.700770848,1
Mid North Coast,108,35,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,8.955223881,2,2,3.215717391,1,0.700770848,1
Mid North Coast,108,36,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,88.31775701,3,0,4.462419792,0,0.700770848,1
Mid North Coast,108,39,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,25.35557987,1,0,1.495232111,3,0.700770848,1
Mid North Coast,108,41,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,77.74657775,2,1,3.48189448,0,0.700770848,1
Mid North Coast,108,42,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,25.19983172,0,0,4.393815552,0,0.700770848,1
Mid North Coast,108,43,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-8.002936858,1,0,5.277350171,0,0.700770848,1
Mid North Coast,108,44,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-15.98272138,1,0,3.334412454,1,0.700770848,1
Mid North Coast,108,45,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,17.78036026,1,0,2.763530685,2,0.700770848,1
Mid North Coast,108,51,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,2.535082122,2,0.700770848,1
Mid North Coast,108,52,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,2.826080167,1,0.700770848,1
Mid North Coast,108,53,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,3.294490254,1,0.700770848,1
Mid North Coast,108,54,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,37.71313942,3,0,4.703538895,0,0.700770848,1
Mid North Coast,108,55,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,50,3,0,1.166403088,3,0.700770848,1
Mid North Coast,108,56,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,85.13011152,1,0,3.351366358,1,0.700770848,1
Mid North Coast,108,59,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,44.4527178,3,0,2.833331772,1,0.700770848,1
Mid North Coast,108,61,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,23.71541502,3,0,1.418062031,3,0.700770848,1
Mid North Coast,108,62,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,15.92039801,3,0,5.58626565,0,0.700770848,1
Mid North Coast,108,63,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,51.54565061,2,0,2.852111249,1,0.700770848,1
Mid North Coast,108,71,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,5.24137931,1,0,3.517283791,0,0.700770848,1
Mid North Coast,108,72,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,119.5325543,3,0,4.54891329,0,0.700770848,1
Mid North Coast,108,73,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,119.5325543,3,0,2.452576498,2,0.700770848,1
Mid North Coast,108,74,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,5.614035088,2,0,6.827084124,0,0.700770848,1
Mid North Coast,108,81,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,48.34515366,3,0,5.323702597,0,0.700770848,1
Mid North Coast,108,82,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,72.15346535,3,0,8.599890638,0,0.700770848,1
Mid North Coast,108,83,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,17.7920686,2,0,7.394282019,0,0.700770848,1
Mid North Coast,108,84,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,33.8740458,3,0,5.816067226,0,0.700770848,1
Mid North Coast,108,85,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-2.748091603,3,0,8.407560815,0,0.700770848,1
Mid North Coast,108,89,3.138371376,3,11.95457911,2,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,24.47643979,3,0,3.879472423,0,0.700770848,1
Murray,109,11,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,69.97782705,1,0,1.775513209,3,0.964630225,1
Murray,109,12,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,750.1805054,3,0,1.775513209,3,0.964630225,1
Murray,109,13,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.9231852,2,1,1.934726957,2,0.964630225,1
Murray,109,14,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,27.47440273,2,0,1.38456451,3,0.964630225,1
Murray,109,21,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,179.9450549,3,0,3.044104943,1,0.964630225,1
Murray,109,22,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,72.55301794,1,0,2.395599968,2,0.964630225,1
Murray,109,23,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,130.9475397,2,2,2.744430198,2,0.964630225,1
Murray,109,24,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.53815261,1,1,1.983106736,2,0.964630225,1
Murray,109,25,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,61.61550185,2,3,0.842000852,3,0.964630225,1
Murray,109,26,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,191.7365642,3,1,2.189164464,2,0.964630225,1
Murray,109,27,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,75.63510393,3,1,1.637641677,3,0.964630225,1
Murray,109,31,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,62.3119015,1,1,1.48376513,3,0.964630225,1
Murray,109,32,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,104.6534653,3,2,3.672178202,0,0.964630225,1
Murray,109,33,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.99121265,1,3,3.087091782,1,0.964630225,1
Murray,109,34,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.36030341,2,2,3.928639959,0,0.964630225,1
Murray,109,35,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,8.955223881,0,2,3.215717391,1,0.964630225,1
Murray,109,36,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,88.31775701,3,0,4.462419792,0,0.964630225,1
Murray,109,39,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,84.05017921,3,0,1.495232111,3,0.964630225,1
Murray,109,41,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,107.1213036,3,1,3.48189448,0,0.964630225,1
Murray,109,42,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,64.26332288,3,0,4.393815552,0,0.964630225,1
Murray,109,43,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,10.49180328,2,0,5.277350171,0,0.964630225,1
Murray,109,44,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,30.78614623,3,0,3.334412454,1,0.964630225,1
Murray,109,45,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.29425557,2,0,2.763530685,2,0.964630225,1
Murray,109,51,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.535082122,2,0.964630225,1
Murray,109,52,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.826080167,1,0.964630225,1
Murray,109,53,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,3.294490254,1,0.964630225,1
Murray,109,54,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,37.71313942,2,0,4.703538895,0,0.964630225,1
Murray,109,55,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,50,3,0,1.166403088,3,0.964630225,1
Murray,109,56,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.92172211,2,0,3.351366358,1,0.964630225,1
Murray,109,59,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.4527178,1,0,2.833331772,1,0.964630225,1
Murray,109,61,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.00293255,3,0,1.418062031,3,0.964630225,1
Murray,109,62,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.92039801,2,0,5.58626565,0,0.964630225,1
Murray,109,63,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,158.4170854,3,0,2.852111249,1,0.964630225,1
Murray,109,71,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,16.67659321,2,0,3.517283791,0,0.964630225,1
Murray,109,72,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,4.54891329,0,0.964630225,1
Murray,109,73,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,2.452576498,2,0.964630225,1
Murray,109,74,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.57348407,3,0,6.827084124,0,0.964630225,1
Murray,109,81,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,48.34515366,1,0,5.323702597,0,0.964630225,1
Murray,109,82,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,116.2790698,3,0,8.599890638,0,0.964630225,1
Murray,109,83,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,17.7920686,1,0,7.394282019,0,0.964630225,1
Murray,109,84,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.8740458,0,0,5.816067226,0,0.964630225,1
Murray,109,85,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,-2.748091603,1,0,8.407560815,0,0.964630225,1
Murray,109,89,9.789173094,0,-16.41617906,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,24.47643979,1,0,3.879472423,0,0.964630225,1
New England and North West,110,11,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,12.51141553,1,0,1.775513209,3,0.344530577,1
New England and North West,110,12,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,750.1805054,2,0,1.775513209,3,0.344530577,1
New England and North West,110,13,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.9231852,1,1,1.934726957,2,0.344530577,1
New England and North West,110,14,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.24119241,3,0,1.38456451,3,0.344530577,1
New England and North West,110,21,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,179.9450549,1,0,3.044104943,1,0.344530577,1
New England and North West,110,22,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.44520977,2,0,2.395599968,2,0.344530577,1
New England and North West,110,23,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,41.21385446,0,2,2.744430198,2,0.344530577,1
New England and North West,110,24,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,83.36414048,2,1,1.983106736,2,0.344530577,1
New England and North West,110,25,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,105.9595407,3,3,0.842000852,3,0.344530577,1
New England and North West,110,26,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,191.7365642,3,1,2.189164464,2,0.344530577,1
New England and North West,110,27,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,75.63510393,2,1,1.637641677,3,0.344530577,1
New England and North West,110,31,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-5.532503458,0,1,1.48376513,3,0.344530577,1
New England and North West,110,32,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,104.6534653,1,2,3.672178202,0,0.344530577,1
New England and North West,110,33,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.99121265,1,3,3.087091782,1,0.344530577,1
New England and North West,110,34,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,29.35251799,3,2,3.928639959,0,0.344530577,1
New England and North West,110,35,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,0,2,2,3.215717391,1,0.344530577,1
New England and North West,110,36,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,85.64814815,0,0,4.462419792,0,0.344530577,1
New England and North West,110,39,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,135.479798,3,0,1.495232111,3,0.344530577,1
New England and North West,110,41,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,108.3188908,3,1,3.48189448,0,0.344530577,1
New England and North West,110,42,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,87.60162602,3,0,4.393815552,0,0.344530577,1
New England and North West,110,43,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.23146474,3,0,5.277350171,0,0.344530577,1
New England and North West,110,44,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,30.78614623,1,0,3.334412454,1,0.344530577,1
New England and North West,110,45,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.29425557,0,0,2.763530685,2,0.344530577,1
New England and North West,110,51,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.535082122,2,0.344530577,1
New England and North West,110,52,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.826080167,1,0.344530577,1
New England and North West,110,53,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,3.294490254,1,0.344530577,1
New England and North West,110,54,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,32.73305085,2,0,4.703538895,0,0.344530577,1
New England and North West,110,55,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.30103806,0,0,1.166403088,3,0.344530577,1
New England and North West,110,56,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,902.3809524,3,0,3.351366358,1,0.344530577,1
New England and North West,110,59,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,3.760445682,1,0,2.833331772,1,0.344530577,1
New England and North West,110,61,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,39.00293255,1,0,1.418062031,3,0.344530577,1
New England and North West,110,62,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,14.07867495,2,0,5.58626565,0,0.344530577,1
New England and North West,110,63,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,158.4170854,2,0,2.852111249,1,0.344530577,1
New England and North West,110,71,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.24486508,2,0,3.517283791,0,0.344530577,1
New England and North West,110,72,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,4.54891329,0,0.344530577,1
New England and North West,110,73,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,2.452576498,2,0.344530577,1
New England and North West,110,74,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,54.57348407,3,0,6.827084124,0,0.344530577,1
New England and North West,110,81,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-7.524271845,2,0,5.323702597,0,0.344530577,1
New England and North West,110,82,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,116.2790698,0,0,8.599890638,0,0.344530577,1
New England and North West,110,83,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-37.30822873,0,0,7.394282019,0,0.344530577,1
New England and North West,110,84,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,25.37313433,2,0,5.816067226,0,0.344530577,1
New England and North West,110,85,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-31.97831978,1,0,8.407560815,0,0.344530577,1
New England and North West,110,89,5.650714543,1,28.85371416,3,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,7.744874715,2,0,3.879472423,0,0.344530577,1
Newcastle and Lake Macquarie,111,11,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,91.80327869,2,0,1.775513209,3,3.770287141,2
Newcastle and Lake Macquarie,111,12,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,100.3076923,2,0,1.775513209,3,3.770287141,2
Newcastle and Lake Macquarie,111,13,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,11.08094349,1,1,1.934726957,2,3.770287141,2
Newcastle and Lake Macquarie,111,14,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,44.24119241,0,0,1.38456451,3,3.770287141,2
Newcastle and Lake Macquarie,111,21,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,28.59122402,0,0,3.044104943,1,3.770287141,2
Newcastle and Lake Macquarie,111,22,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.44520977,0,0,2.395599968,2,3.770287141,2
Newcastle and Lake Macquarie,111,23,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.708737864,1,2,2.744430198,2,3.770287141,2
Newcastle and Lake Macquarie,111,24,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,103.898051,3,1,1.983106736,2,3.770287141,2
Newcastle and Lake Macquarie,111,25,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,105.9595407,0,3,0.842000852,3,3.770287141,2
Newcastle and Lake Macquarie,111,26,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,107.3770492,3,1,2.189164464,2,3.770287141,2
Newcastle and Lake Macquarie,111,27,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,60.02029427,1,1,1.637641677,3,3.770287141,2
Newcastle and Lake Macquarie,111,31,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,31.36966127,2,1,1.48376513,3,3.770287141,2
Newcastle and Lake Macquarie,111,32,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,8.655616943,2,2,3.672178202,0,3.770287141,2
Newcastle and Lake Macquarie,111,33,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,46.11398964,2,3,3.087091782,1,3.770287141,2
Newcastle and Lake Macquarie,111,34,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,29.35251799,2,2,3.928639959,0,3.770287141,2
Newcastle and Lake Macquarie,111,35,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,0,1,2,3.215717391,1,3.770287141,2
Newcastle and Lake Macquarie,111,36,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.589041096,1,0,4.462419792,0,3.770287141,2
Newcastle and Lake Macquarie,111,39,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,135.479798,1,0,1.495232111,3,3.770287141,2
Newcastle and Lake Macquarie,111,41,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,108.3188908,1,1,3.48189448,0,3.770287141,2
Newcastle and Lake Macquarie,111,42,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,87.60162602,0,0,4.393815552,0,3.770287141,2
Newcastle and Lake Macquarie,111,43,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.23146474,1,0,5.277350171,0,3.770287141,2
Newcastle and Lake Macquarie,111,44,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-25,0,0,3.334412454,1,3.770287141,2
Newcastle and Lake Macquarie,111,45,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-22.24215247,0,0,2.763530685,2,3.770287141,2
Newcastle and Lake Macquarie,111,51,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.535082122,2,3.770287141,2
Newcastle and Lake Macquarie,111,52,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.826080167,1,3.770287141,2
Newcastle and Lake Macquarie,111,53,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,3.294490254,1,3.770287141,2
Newcastle and Lake Macquarie,111,54,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,15.06849315,1,0,4.703538895,0,3.770287141,2
Newcastle and Lake Macquarie,111,55,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,18.8034188,2,0,1.166403088,3,3.770287141,2
Newcastle and Lake Macquarie,111,56,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,902.3809524,3,0,3.351366358,1,3.770287141,2
Newcastle and Lake Macquarie,111,59,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,27.11323764,2,0,2.833331772,1,3.770287141,2
Newcastle and Lake Macquarie,111,61,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,1.708428246,2,0,1.418062031,3,3.770287141,2
Newcastle and Lake Macquarie,111,62,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,14.07867495,1,0,5.58626565,0,3.770287141,2
Newcastle and Lake Macquarie,111,63,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,17.56007394,0,0,2.852111249,1,3.770287141,2
Newcastle and Lake Macquarie,111,71,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.24486508,2,0,3.517283791,0,3.770287141,2
Newcastle and Lake Macquarie,111,72,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,4.54891329,0,3.770287141,2
Newcastle and Lake Macquarie,111,73,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,2.452576498,2,3.770287141,2
Newcastle and Lake Macquarie,111,74,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,43.24324324,1,0,6.827084124,0,3.770287141,2
Newcastle and Lake Macquarie,111,81,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-7.524271845,0,0,5.323702597,0,3.770287141,2
Newcastle and Lake Macquarie,111,82,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,36.72316384,2,0,8.599890638,0,3.770287141,2
Newcastle and Lake Macquarie,111,83,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-19.93704092,1,0,7.394282019,0,3.770287141,2
Newcastle and Lake Macquarie,111,84,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,25.37313433,1,0,5.816067226,0,3.770287141,2
Newcastle and Lake Macquarie,111,85,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-31.97831978,0,0,8.407560815,0,3.770287141,2
Newcastle and Lake Macquarie,111,89,8.67298142,1,17.24347521,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,7.744874715,2,0,3.879472423,0,3.770287141,2
Richmond - Tweed,112,11,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,91.80327869,2,0,1.775513209,3,-2.824207493,0
Richmond - Tweed,112,12,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,500.2145923,3,0,1.775513209,3,-2.824207493,0
Richmond - Tweed,112,13,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,24.48519041,2,1,1.934726957,2,-2.824207493,0
Richmond - Tweed,112,14,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,10.71253071,1,0,1.38456451,3,-2.824207493,0
Richmond - Tweed,112,21,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,33.30965909,2,0,3.044104943,1,-2.824207493,0
Richmond - Tweed,112,22,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,72.55301794,3,0,2.395599968,2,-2.824207493,0
Richmond - Tweed,112,23,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,130.9475397,3,2,2.744430198,2,-2.824207493,0
Richmond - Tweed,112,24,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,103.898051,2,1,1.983106736,2,-2.824207493,0
Richmond - Tweed,112,25,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,20.41696621,0,3,0.842000852,3,-2.824207493,0
Richmond - Tweed,112,26,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,120.0889248,3,1,2.189164464,2,-2.824207493,0
Richmond - Tweed,112,27,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,65.04132231,2,1,1.637641677,3,-2.824207493,0
Richmond - Tweed,112,31,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,62.3119015,2,1,1.48376513,3,-2.824207493,0
Richmond - Tweed,112,32,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,21.76560122,2,2,3.672178202,0,-2.824207493,0
Richmond - Tweed,112,33,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,46.11398964,1,3,3.087091782,1,-2.824207493,0
Richmond - Tweed,112,34,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,9.89010989,2,2,3.928639959,0,-2.824207493,0
Richmond - Tweed,112,35,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,8.955223881,2,2,3.215717391,1,-2.824207493,0
Richmond - Tweed,112,36,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,88.31775701,3,0,4.462419792,0,-2.824207493,0
Richmond - Tweed,112,39,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,19.95359629,1,0,1.495232111,3,-2.824207493,0
Richmond - Tweed,112,41,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,74.83974359,2,1,3.48189448,0,-2.824207493,0
Richmond - Tweed,112,42,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,12.34106208,0,0,4.393815552,0,-2.824207493,0
Richmond - Tweed,112,43,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-13.05285868,1,0,5.277350171,0,-2.824207493,0
Richmond - Tweed,112,44,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-15.98272138,1,0,3.334412454,1,-2.824207493,0
Richmond - Tweed,112,45,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-10.38834951,1,0,2.763530685,2,-2.824207493,0
Richmond - Tweed,112,51,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,2.535082122,2,-2.824207493,0
Richmond - Tweed,112,52,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,2.826080167,1,-2.824207493,0
Richmond - Tweed,112,53,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,3.294490254,1,-2.824207493,0
Richmond - Tweed,112,54,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,37.71313942,3,0,4.703538895,0,-2.824207493,0
Richmond - Tweed,112,55,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,50,3,0,1.166403088,3,-2.824207493,0
Richmond - Tweed,112,56,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,65.07936508,1,0,3.351366358,1,-2.824207493,0
Richmond - Tweed,112,59,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,44.4527178,3,0,2.833331772,1,-2.824207493,0
Richmond - Tweed,112,61,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,23.71541502,3,0,1.418062031,3,-2.824207493,0
Richmond - Tweed,112,62,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,15.92039801,3,0,5.58626565,0,-2.824207493,0
Richmond - Tweed,112,63,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-1.572617946,2,0,2.852111249,1,-2.824207493,0
Richmond - Tweed,112,71,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,13.91752577,1,0,3.517283791,0,-2.824207493,0
Richmond - Tweed,112,72,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,119.5325543,3,0,4.54891329,0,-2.824207493,0
Richmond - Tweed,112,73,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,119.5325543,3,0,2.452576498,2,-2.824207493,0
Richmond - Tweed,112,74,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,5.614035088,2,0,6.827084124,0,-2.824207493,0
Richmond - Tweed,112,81,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,48.34515366,3,0,5.323702597,0,-2.824207493,0
Richmond - Tweed,112,82,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,72.15346535,3,0,8.599890638,0,-2.824207493,0
Richmond - Tweed,112,83,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,17.7920686,2,0,7.394282019,0,-2.824207493,0
Richmond - Tweed,112,84,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,33.8740458,3,0,5.816067226,0,-2.824207493,0
Richmond - Tweed,112,85,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-2.748091603,3,0,8.407560815,0,-2.824207493,0
Richmond - Tweed,112,89,11.6197467,0,4.145110989,2,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,24.47643979,3,0,3.879472423,0,-2.824207493,0
Riverina,113,11,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,69.97782705,1,0,1.775513209,3,-1.239866476,0
Riverina,113,12,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,750.1805054,3,0,1.775513209,3,-1.239866476,0
Riverina,113,13,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.9231852,2,1,1.934726957,2,-1.239866476,0
Riverina,113,14,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,27.47440273,2,0,1.38456451,3,-1.239866476,0
Riverina,113,21,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,179.9450549,3,0,3.044104943,1,-1.239866476,0
Riverina,113,22,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,72.55301794,1,0,2.395599968,2,-1.239866476,0
Riverina,113,23,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,130.9475397,2,2,2.744430198,2,-1.239866476,0
Riverina,113,24,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.53815261,1,1,1.983106736,2,-1.239866476,0
Riverina,113,25,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,61.61550185,2,3,0.842000852,3,-1.239866476,0
Riverina,113,26,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,191.7365642,3,1,2.189164464,2,-1.239866476,0
Riverina,113,27,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,75.63510393,3,1,1.637641677,3,-1.239866476,0
Riverina,113,31,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,62.3119015,1,1,1.48376513,3,-1.239866476,0
Riverina,113,32,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,104.6534653,3,2,3.672178202,0,-1.239866476,0
Riverina,113,33,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.99121265,1,3,3.087091782,1,-1.239866476,0
Riverina,113,34,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.36030341,2,2,3.928639959,0,-1.239866476,0
Riverina,113,35,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,8.955223881,0,2,3.215717391,1,-1.239866476,0
Riverina,113,36,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,88.31775701,3,0,4.462419792,0,-1.239866476,0
Riverina,113,39,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,84.05017921,3,0,1.495232111,3,-1.239866476,0
Riverina,113,41,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,107.1213036,3,1,3.48189448,0,-1.239866476,0
Riverina,113,42,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,64.26332288,3,0,4.393815552,0,-1.239866476,0
Riverina,113,43,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,10.49180328,2,0,5.277350171,0,-1.239866476,0
Riverina,113,44,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,30.78614623,3,0,3.334412454,1,-1.239866476,0
Riverina,113,45,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.29425557,2,0,2.763530685,2,-1.239866476,0
Riverina,113,51,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.535082122,2,-1.239866476,0
Riverina,113,52,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.826080167,1,-1.239866476,0
Riverina,113,53,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,3.294490254,1,-1.239866476,0
Riverina,113,54,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,37.71313942,2,0,4.703538895,0,-1.239866476,0
Riverina,113,55,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,50,3,0,1.166403088,3,-1.239866476,0
Riverina,113,56,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.92172211,2,0,3.351366358,1,-1.239866476,0
Riverina,113,59,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.4527178,1,0,2.833331772,1,-1.239866476,0
Riverina,113,61,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.00293255,3,0,1.418062031,3,-1.239866476,0
Riverina,113,62,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.92039801,2,0,5.58626565,0,-1.239866476,0
Riverina,113,63,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,158.4170854,3,0,2.852111249,1,-1.239866476,0
Riverina,113,71,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,16.67659321,2,0,3.517283791,0,-1.239866476,0
Riverina,113,72,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,4.54891329,0,-1.239866476,0
Riverina,113,73,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,2.452576498,2,-1.239866476,0
Riverina,113,74,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.57348407,3,0,6.827084124,0,-1.239866476,0
Riverina,113,81,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,48.34515366,1,0,5.323702597,0,-1.239866476,0
Riverina,113,82,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,116.2790698,3,0,8.599890638,0,-1.239866476,0
Riverina,113,83,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,17.7920686,1,0,7.394282019,0,-1.239866476,0
Riverina,113,84,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.8740458,0,0,5.816067226,0,-1.239866476,0
Riverina,113,85,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,-2.748091603,1,0,8.407560815,0,-1.239866476,0
Riverina,113,89,9.789173094,0,3.060151194,1,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,24.47643979,1,0,3.879472423,0,-1.239866476,0
Southern Highlands and Shoalhaven,114,11,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,1,0,1.775513209,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,12,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,750.1805054,1,0,1.775513209,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,13,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,125.7944587,3,1,1.934726957,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,14,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.37370994,2,0,1.38456451,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,21,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,179.9450549,0,0,3.044104943,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,22,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,128.2010096,3,0,2.395599968,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,23,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,41.21385446,2,2,2.744430198,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,24,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,21.42658895,1,1,1.983106736,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,25,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,153.2659637,3,3,0.842000852,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,26,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,191.7365642,0,1,2.189164464,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,27,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,75.63510393,1,1,1.637641677,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,31,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,24.98915401,2,1,1.48376513,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,32,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,104.6534653,2,2,3.672178202,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,33,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,50,2,3,3.087091782,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,34,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,30.05836576,3,2,3.928639959,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,35,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,38.31775701,3,2,3.215717391,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,36,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,85.64814815,0,0,4.462419792,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,39,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,220.1716738,3,0,1.495232111,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,41,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,109.0305445,3,1,3.48189448,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,42,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,64.26332288,1,0,4.393815552,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,43,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,10.49180328,0,0,5.277350171,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,44,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,80.11152416,3,0,3.334412454,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,45,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,100,3,0,2.763530685,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,51,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.535082122,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,52,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.826080167,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,53,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,3.294490254,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,54,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.73305085,2,0,4.703538895,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,55,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,66.55328798,3,0,1.166403088,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,56,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,500,3,0,3.351366358,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,59,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,57.24381625,3,0,2.833331772,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,61,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,39.00293255,2,0,1.418062031,3,-0.320953691,1
Southern Highlands and Shoalhaven,114,62,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.25806452,3,0,5.58626565,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,63,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,158.4170854,3,0,2.852111249,1,-0.320953691,1
Southern Highlands and Shoalhaven,114,71,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,16.67659321,2,0,3.517283791,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,72,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,4.54891329,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,73,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,2.452576498,2,-0.320953691,1
Southern Highlands and Shoalhaven,114,74,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,54.57348407,3,0,6.827084124,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,81,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,5.323702597,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,82,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,116.2790698,0,0,8.599890638,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,83,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,7.394282019,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,84,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,13.59223301,2,0,5.816067226,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,85,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-37.02956989,0,0,8.407560815,0,-0.320953691,1
Southern Highlands and Shoalhaven,114,89,4.670427519,2,95.83093401,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,12.92834891,2,0,3.879472423,0,-0.320953691,1
Sydney - Baulkham Hills and Hawkesbury,115,11,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,23.34152334,2,0,1.775513209,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,12,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,1,0,0,1.775513209,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,13,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,125.7944587,2,1,1.934726957,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,14,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,55.32359081,3,0,1.38456451,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,21,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,44.44444444,2,0,3.044104943,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,22,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,128.2010096,2,0,2.395599968,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,23,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,59.55574183,3,2,2.744430198,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,24,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,61.29032258,2,1,1.983106736,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,25,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,153.2659637,2,3,0.842000852,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,26,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,30.09463722,2,1,2.189164464,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,27,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,28.47533632,1,1,1.637641677,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,31,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,77.05627706,3,1,1.48376513,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,32,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,44.40860215,3,2,3.672178202,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,33,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,99.29824561,3,3,3.087091782,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,34,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,92.81183932,3,2,3.928639959,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,35,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,55.01858736,3,2,3.215717391,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,36,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,52.25522552,2,0,4.462419792,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,39,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,220.1716738,2,0,1.495232111,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,41,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,109.0305445,2,1,3.48189448,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,42,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,85.30612245,3,0,4.393815552,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,43,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,37.76150628,3,0,5.277350171,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,44,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,80.11152416,2,0,3.334412454,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,45,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,100,2,0,2.763530685,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,51,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,2.535082122,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,52,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,2.826080167,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,53,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,3.294490254,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,54,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,48.72685185,3,0,4.703538895,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,55,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,66.55328798,2,0,1.166403088,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,56,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,500,3,0,3.351366358,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,59,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,57.24381625,2,0,2.833331772,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,61,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,36.63101604,3,0,1.418062031,3,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,62,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,48.37872892,3,0,5.58626565,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,63,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,83.4179357,2,0,2.852111249,1,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,71,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.18944844,3,0,3.517283791,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,72,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,121.3250518,3,0,4.54891329,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,73,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,121.3250518,3,0,2.452576498,2,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,74,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,53.45679012,3,0,6.827084124,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,81,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,23.84792627,3,0,5.323702597,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,82,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,70.07874016,3,0,8.599890638,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,83,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,28.4843869,3,0,7.394282019,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,84,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,72.19589258,3,0,5.816067226,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,85,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,-13.77018044,2,0,8.407560815,0,6.195079086,3
Sydney - Baulkham Hills and Hawkesbury,115,89,6.508948988,1,7.887697236,2,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,35.57951482,3,0,3.879472423,0,6.195079086,3
Sydney - Blacktown,116,11,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,23.34152334,2,0,1.775513209,3,6.62451069,3
Sydney - Blacktown,116,12,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,0,0,0,1.775513209,3,6.62451069,3
Sydney - Blacktown,116,13,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.45209581,2,1,1.934726957,2,6.62451069,3
Sydney - Blacktown,116,14,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,55.32359081,3,0,1.38456451,3,6.62451069,3
Sydney - Blacktown,116,21,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,44.44444444,2,0,3.044104943,1,6.62451069,3
Sydney - Blacktown,116,22,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.5630713,2,0,2.395599968,2,6.62451069,3
Sydney - Blacktown,116,23,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,59.55574183,3,2,2.744430198,2,6.62451069,3
Sydney - Blacktown,116,24,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,61.29032258,2,1,1.983106736,2,6.62451069,3
Sydney - Blacktown,116,25,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,49.80031949,2,3,0.842000852,3,6.62451069,3
Sydney - Blacktown,116,26,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,30.09463722,2,1,2.189164464,2,6.62451069,3
Sydney - Blacktown,116,27,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.47533632,1,1,1.637641677,3,6.62451069,3
Sydney - Blacktown,116,31,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,77.05627706,3,1,1.48376513,3,6.62451069,3
Sydney - Blacktown,116,32,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,44.40860215,3,2,3.672178202,0,6.62451069,3
Sydney - Blacktown,116,33,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,99.29824561,3,3,3.087091782,1,6.62451069,3
Sydney - Blacktown,116,34,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,92.81183932,3,2,3.928639959,0,6.62451069,3
Sydney - Blacktown,116,35,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,55.01858736,3,2,3.215717391,1,6.62451069,3
Sydney - Blacktown,116,36,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,52.25522552,2,0,4.462419792,0,6.62451069,3
Sydney - Blacktown,116,39,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,57.23923197,2,0,1.495232111,3,6.62451069,3
Sydney - Blacktown,116,41,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,50.64575646,2,1,3.48189448,0,6.62451069,3
Sydney - Blacktown,116,42,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,85.30612245,3,0,4.393815552,0,6.62451069,3
Sydney - Blacktown,116,43,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,37.76150628,3,0,5.277350171,0,6.62451069,3
Sydney - Blacktown,116,44,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,21.71492205,2,0,3.334412454,1,6.62451069,3
Sydney - Blacktown,116,45,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,31.03448276,2,0,2.763530685,2,6.62451069,3
Sydney - Blacktown,116,51,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,2.535082122,2,6.62451069,3
Sydney - Blacktown,116,52,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,2.826080167,1,6.62451069,3
Sydney - Blacktown,116,53,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,3.294490254,1,6.62451069,3
Sydney - Blacktown,116,54,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,48.72685185,3,0,4.703538895,0,6.62451069,3
Sydney - Blacktown,116,55,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.23674476,2,0,1.166403088,3,6.62451069,3
Sydney - Blacktown,116,56,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,77.36625514,3,0,3.351366358,1,6.62451069,3
Sydney - Blacktown,116,59,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,32.63506064,2,0,2.833331772,1,6.62451069,3
Sydney - Blacktown,116,61,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.63101604,3,0,1.418062031,3,6.62451069,3
Sydney - Blacktown,116,62,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,48.37872892,3,0,5.58626565,0,6.62451069,3
Sydney - Blacktown,116,63,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,1.773533424,2,0,2.852111249,1,6.62451069,3
Sydney - Blacktown,116,71,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.18944844,3,0,3.517283791,0,6.62451069,3
Sydney - Blacktown,116,72,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,121.3250518,3,0,4.54891329,0,6.62451069,3
Sydney - Blacktown,116,73,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,121.3250518,3,0,2.452576498,2,6.62451069,3
Sydney - Blacktown,116,74,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,45.84103512,3,0,6.827084124,0,6.62451069,3
Sydney - Blacktown,116,81,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,23.84792627,3,0,5.323702597,0,6.62451069,3
Sydney - Blacktown,116,82,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,70.07874016,3,0,8.599890638,0,6.62451069,3
Sydney - Blacktown,116,83,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.4843869,3,0,7.394282019,0,6.62451069,3
Sydney - Blacktown,116,84,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,72.19589258,3,0,5.816067226,0,6.62451069,3
Sydney - Blacktown,116,85,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,-13.77018044,2,0,8.407560815,0,6.62451069,3
Sydney - Blacktown,116,89,4.897847527,2,-3.936778698,1,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,35.57951482,3,0,3.879472423,0,6.62451069,3
Sydney - City and Inner South,117,11,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,23.34152334,2,0,1.775513209,3,1.224574512,2
Sydney - City and Inner South,117,12,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,0,0,0,1.775513209,3,1.224574512,2
Sydney - City and Inner South,117,13,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.45209581,2,1,1.934726957,2,1.224574512,2
Sydney - City and Inner South,117,14,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,55.32359081,3,0,1.38456451,3,1.224574512,2
Sydney - City and Inner South,117,21,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,44.44444444,2,0,3.044104943,1,1.224574512,2
Sydney - City and Inner South,117,22,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.5630713,2,0,2.395599968,2,1.224574512,2
Sydney - City and Inner South,117,23,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,59.55574183,3,2,2.744430198,2,1.224574512,2
Sydney - City and Inner South,117,24,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,61.29032258,2,1,1.983106736,2,1.224574512,2
Sydney - City and Inner South,117,25,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,49.80031949,2,3,0.842000852,3,1.224574512,2
Sydney - City and Inner South,117,26,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,30.09463722,2,1,2.189164464,2,1.224574512,2
Sydney - City and Inner South,117,27,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.47533632,1,1,1.637641677,3,1.224574512,2
Sydney - City and Inner South,117,31,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,77.05627706,3,1,1.48376513,3,1.224574512,2
Sydney - City and Inner South,117,32,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,44.40860215,3,2,3.672178202,0,1.224574512,2
Sydney - City and Inner South,117,33,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,99.29824561,3,3,3.087091782,1,1.224574512,2
Sydney - City and Inner South,117,34,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,92.81183932,3,2,3.928639959,0,1.224574512,2
Sydney - City and Inner South,117,35,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,55.01858736,3,2,3.215717391,1,1.224574512,2
Sydney - City and Inner South,117,36,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,52.25522552,2,0,4.462419792,0,1.224574512,2
Sydney - City and Inner South,117,39,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,57.23923197,2,0,1.495232111,3,1.224574512,2
Sydney - City and Inner South,117,41,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,50.64575646,2,1,3.48189448,0,1.224574512,2
Sydney - City and Inner South,117,42,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,85.30612245,3,0,4.393815552,0,1.224574512,2
Sydney - City and Inner South,117,43,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,37.76150628,3,0,5.277350171,0,1.224574512,2
Sydney - City and Inner South,117,44,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,21.71492205,2,0,3.334412454,1,1.224574512,2
Sydney - City and Inner South,117,45,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,31.03448276,2,0,2.763530685,2,1.224574512,2
Sydney - City and Inner South,117,51,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,2.535082122,2,1.224574512,2
Sydney - City and Inner South,117,52,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,2.826080167,1,1.224574512,2
Sydney - City and Inner South,117,53,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,3.294490254,1,1.224574512,2
Sydney - City and Inner South,117,54,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,48.72685185,3,0,4.703538895,0,1.224574512,2
Sydney - City and Inner South,117,55,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.23674476,2,0,1.166403088,3,1.224574512,2
Sydney - City and Inner South,117,56,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,77.36625514,3,0,3.351366358,1,1.224574512,2
Sydney - City and Inner South,117,59,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,32.63506064,2,0,2.833331772,1,1.224574512,2
Sydney - City and Inner South,117,61,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.63101604,3,0,1.418062031,3,1.224574512,2
Sydney - City and Inner South,117,62,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,48.37872892,3,0,5.58626565,0,1.224574512,2
Sydney - City and Inner South,117,63,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,1.773533424,2,0,2.852111249,1,1.224574512,2
Sydney - City and Inner South,117,71,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.18944844,3,0,3.517283791,0,1.224574512,2
Sydney - City and Inner South,117,72,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,121.3250518,3,0,4.54891329,0,1.224574512,2
Sydney - City and Inner South,117,73,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,121.3250518,3,0,2.452576498,2,1.224574512,2
Sydney - City and Inner South,117,74,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,45.84103512,3,0,6.827084124,0,1.224574512,2
Sydney - City and Inner South,117,81,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,23.84792627,3,0,5.323702597,0,1.224574512,2
Sydney - City and Inner South,117,82,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,70.07874016,3,0,8.599890638,0,1.224574512,2
Sydney - City and Inner South,117,83,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.4843869,3,0,7.394282019,0,1.224574512,2
Sydney - City and Inner South,117,84,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,72.19589258,3,0,5.816067226,0,1.224574512,2
Sydney - City and Inner South,117,85,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,-13.77018044,2,0,8.407560815,0,1.224574512,2
Sydney - City and Inner South,117,89,4.897847527,2,-12.22075066,0,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,35.57951482,3,0,3.879472423,0,1.224574512,2
Sydney - Eastern Suburbs,118,11,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,23.34152334,2,0,1.775513209,3,4.871887405,3
Sydney - Eastern Suburbs,118,12,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,0,0,0,1.775513209,3,4.871887405,3
Sydney - Eastern Suburbs,118,13,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.45209581,2,1,1.934726957,2,4.871887405,3
Sydney - Eastern Suburbs,118,14,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,55.32359081,3,0,1.38456451,3,4.871887405,3
Sydney - Eastern Suburbs,118,21,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,44.44444444,2,0,3.044104943,1,4.871887405,3
Sydney - Eastern Suburbs,118,22,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.5630713,2,0,2.395599968,2,4.871887405,3
Sydney - Eastern Suburbs,118,23,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,59.55574183,3,2,2.744430198,2,4.871887405,3
Sydney - Eastern Suburbs,118,24,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,61.29032258,2,1,1.983106736,2,4.871887405,3
Sydney - Eastern Suburbs,118,25,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,49.80031949,2,3,0.842000852,3,4.871887405,3
Sydney - Eastern Suburbs,118,26,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,30.09463722,2,1,2.189164464,2,4.871887405,3
Sydney - Eastern Suburbs,118,27,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.47533632,1,1,1.637641677,3,4.871887405,3
Sydney - Eastern Suburbs,118,31,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,77.05627706,3,1,1.48376513,3,4.871887405,3
Sydney - Eastern Suburbs,118,32,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,44.40860215,3,2,3.672178202,0,4.871887405,3
Sydney - Eastern Suburbs,118,33,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,99.29824561,3,3,3.087091782,1,4.871887405,3
Sydney - Eastern Suburbs,118,34,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,92.81183932,3,2,3.928639959,0,4.871887405,3
Sydney - Eastern Suburbs,118,35,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,55.01858736,3,2,3.215717391,1,4.871887405,3
Sydney - Eastern Suburbs,118,36,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,52.25522552,2,0,4.462419792,0,4.871887405,3
Sydney - Eastern Suburbs,118,39,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,57.23923197,2,0,1.495232111,3,4.871887405,3
Sydney - Eastern Suburbs,118,41,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,50.64575646,2,1,3.48189448,0,4.871887405,3
Sydney - Eastern Suburbs,118,42,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,85.30612245,3,0,4.393815552,0,4.871887405,3
Sydney - Eastern Suburbs,118,43,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,37.76150628,3,0,5.277350171,0,4.871887405,3
Sydney - Eastern Suburbs,118,44,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,21.71492205,2,0,3.334412454,1,4.871887405,3
Sydney - Eastern Suburbs,118,45,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,31.03448276,2,0,2.763530685,2,4.871887405,3
Sydney - Eastern Suburbs,118,51,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,2.535082122,2,4.871887405,3
Sydney - Eastern Suburbs,118,52,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,2.826080167,1,4.871887405,3
Sydney - Eastern Suburbs,118,53,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,3.294490254,1,4.871887405,3
Sydney - Eastern Suburbs,118,54,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,48.72685185,3,0,4.703538895,0,4.871887405,3
Sydney - Eastern Suburbs,118,55,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.23674476,2,0,1.166403088,3,4.871887405,3
Sydney - Eastern Suburbs,118,56,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,77.36625514,3,0,3.351366358,1,4.871887405,3
Sydney - Eastern Suburbs,118,59,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,32.63506064,2,0,2.833331772,1,4.871887405,3
Sydney - Eastern Suburbs,118,61,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.63101604,3,0,1.418062031,3,4.871887405,3
Sydney - Eastern Suburbs,118,62,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,48.37872892,3,0,5.58626565,0,4.871887405,3
Sydney - Eastern Suburbs,118,63,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,1.773533424,2,0,2.852111249,1,4.871887405,3
Sydney - Eastern Suburbs,118,71,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.18944844,3,0,3.517283791,0,4.871887405,3
Sydney - Eastern Suburbs,118,72,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,121.3250518,3,0,4.54891329,0,4.871887405,3
Sydney - Eastern Suburbs,118,73,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,121.3250518,3,0,2.452576498,2,4.871887405,3
Sydney - Eastern Suburbs,118,74,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,45.84103512,3,0,6.827084124,0,4.871887405,3
Sydney - Eastern Suburbs,118,81,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,23.84792627,3,0,5.323702597,0,4.871887405,3
Sydney - Eastern Suburbs,118,82,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,70.07874016,3,0,8.599890638,0,4.871887405,3
Sydney - Eastern Suburbs,118,83,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.4843869,3,0,7.394282019,0,4.871887405,3
Sydney - Eastern Suburbs,118,84,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,72.19589258,3,0,5.816067226,0,4.871887405,3
Sydney - Eastern Suburbs,118,85,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,-13.77018044,2,0,8.407560815,0,4.871887405,3
Sydney - Eastern Suburbs,118,89,4.897847527,2,10.3058715,2,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,35.57951482,3,0,3.879472423,0,4.871887405,3
Sydney - Inner South West,119,11,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.34152334,2,0,1.775513209,3,11.55307528,3
Sydney - Inner South West,119,12,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,0,0,0,1.775513209,3,11.55307528,3
Sydney - Inner South West,119,13,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.45209581,2,1,1.934726957,2,11.55307528,3
Sydney - Inner South West,119,14,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.32359081,3,0,1.38456451,3,11.55307528,3
Sydney - Inner South West,119,21,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.44444444,2,0,3.044104943,1,11.55307528,3
Sydney - Inner South West,119,22,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.5630713,2,0,2.395599968,2,11.55307528,3
Sydney - Inner South West,119,23,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,59.55574183,3,2,2.744430198,2,11.55307528,3
Sydney - Inner South West,119,24,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,61.29032258,2,1,1.983106736,2,11.55307528,3
Sydney - Inner South West,119,25,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,49.80031949,2,3,0.842000852,3,11.55307528,3
Sydney - Inner South West,119,26,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,30.09463722,2,1,2.189164464,2,11.55307528,3
Sydney - Inner South West,119,27,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.47533632,1,1,1.637641677,3,11.55307528,3
Sydney - Inner South West,119,31,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.05627706,3,1,1.48376513,3,11.55307528,3
Sydney - Inner South West,119,32,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.40860215,3,2,3.672178202,0,11.55307528,3
Sydney - Inner South West,119,33,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,99.29824561,3,3,3.087091782,1,11.55307528,3
Sydney - Inner South West,119,34,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,92.81183932,3,2,3.928639959,0,11.55307528,3
Sydney - Inner South West,119,35,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.01858736,3,2,3.215717391,1,11.55307528,3
Sydney - Inner South West,119,36,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,52.25522552,2,0,4.462419792,0,11.55307528,3
Sydney - Inner South West,119,39,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,57.23923197,2,0,1.495232111,3,11.55307528,3
Sydney - Inner South West,119,41,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,50.64575646,2,1,3.48189448,0,11.55307528,3
Sydney - Inner South West,119,42,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,85.30612245,3,0,4.393815552,0,11.55307528,3
Sydney - Inner South West,119,43,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,37.76150628,3,0,5.277350171,0,11.55307528,3
Sydney - Inner South West,119,44,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,21.71492205,2,0,3.334412454,1,11.55307528,3
Sydney - Inner South West,119,45,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,31.03448276,2,0,2.763530685,2,11.55307528,3
Sydney - Inner South West,119,51,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.535082122,2,11.55307528,3
Sydney - Inner South West,119,52,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.826080167,1,11.55307528,3
Sydney - Inner South West,119,53,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,3.294490254,1,11.55307528,3
Sydney - Inner South West,119,54,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.72685185,3,0,4.703538895,0,11.55307528,3
Sydney - Inner South West,119,55,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.23674476,2,0,1.166403088,3,11.55307528,3
Sydney - Inner South West,119,56,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.36625514,3,0,3.351366358,1,11.55307528,3
Sydney - Inner South West,119,59,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,32.63506064,2,0,2.833331772,1,11.55307528,3
Sydney - Inner South West,119,61,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.63101604,3,0,1.418062031,3,11.55307528,3
Sydney - Inner South West,119,62,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.37872892,3,0,5.58626565,0,11.55307528,3
Sydney - Inner South West,119,63,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,1.773533424,2,0,2.852111249,1,11.55307528,3
Sydney - Inner South West,119,71,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.18944844,3,0,3.517283791,0,11.55307528,3
Sydney - Inner South West,119,72,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,4.54891329,0,11.55307528,3
Sydney - Inner South West,119,73,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,2.452576498,2,11.55307528,3
Sydney - Inner South West,119,74,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,45.84103512,3,0,6.827084124,0,11.55307528,3
Sydney - Inner South West,119,81,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.84792627,3,0,5.323702597,0,11.55307528,3
Sydney - Inner South West,119,82,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,70.07874016,3,0,8.599890638,0,11.55307528,3
Sydney - Inner South West,119,83,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.4843869,3,0,7.394282019,0,11.55307528,3
Sydney - Inner South West,119,84,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,72.19589258,3,0,5.816067226,0,11.55307528,3
Sydney - Inner South West,119,85,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,-13.77018044,2,0,8.407560815,0,11.55307528,3
Sydney - Inner South West,119,89,4.133551612,2,30.4264854,3,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,35.57951482,3,0,3.879472423,0,11.55307528,3
Sydney - Inner West,120,11,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,23.34152334,2,0,1.775513209,3,14.51701427,3
Sydney - Inner West,120,12,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,0,0,0,1.775513209,3,14.51701427,3
Sydney - Inner West,120,13,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.45209581,2,1,1.934726957,2,14.51701427,3
Sydney - Inner West,120,14,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,55.32359081,3,0,1.38456451,3,14.51701427,3
Sydney - Inner West,120,21,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,44.44444444,2,0,3.044104943,1,14.51701427,3
Sydney - Inner West,120,22,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.5630713,2,0,2.395599968,2,14.51701427,3
Sydney - Inner West,120,23,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,59.55574183,3,2,2.744430198,2,14.51701427,3
Sydney - Inner West,120,24,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,61.29032258,2,1,1.983106736,2,14.51701427,3
Sydney - Inner West,120,25,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,49.80031949,2,3,0.842000852,3,14.51701427,3
Sydney - Inner West,120,26,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,30.09463722,2,1,2.189164464,2,14.51701427,3
Sydney - Inner West,120,27,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.47533632,1,1,1.637641677,3,14.51701427,3
Sydney - Inner West,120,31,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,77.05627706,3,1,1.48376513,3,14.51701427,3
Sydney - Inner West,120,32,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,44.40860215,3,2,3.672178202,0,14.51701427,3
Sydney - Inner West,120,33,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,99.29824561,3,3,3.087091782,1,14.51701427,3
Sydney - Inner West,120,34,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,92.81183932,3,2,3.928639959,0,14.51701427,3
Sydney - Inner West,120,35,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,55.01858736,3,2,3.215717391,1,14.51701427,3
Sydney - Inner West,120,36,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,52.25522552,2,0,4.462419792,0,14.51701427,3
Sydney - Inner West,120,39,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,57.23923197,2,0,1.495232111,3,14.51701427,3
Sydney - Inner West,120,41,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,50.64575646,2,1,3.48189448,0,14.51701427,3
Sydney - Inner West,120,42,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,85.30612245,3,0,4.393815552,0,14.51701427,3
Sydney - Inner West,120,43,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,37.76150628,3,0,5.277350171,0,14.51701427,3
Sydney - Inner West,120,44,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,21.71492205,2,0,3.334412454,1,14.51701427,3
Sydney - Inner West,120,45,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,31.03448276,2,0,2.763530685,2,14.51701427,3
Sydney - Inner West,120,51,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,2.535082122,2,14.51701427,3
Sydney - Inner West,120,52,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,2.826080167,1,14.51701427,3
Sydney - Inner West,120,53,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,3.294490254,1,14.51701427,3
Sydney - Inner West,120,54,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,48.72685185,3,0,4.703538895,0,14.51701427,3
Sydney - Inner West,120,55,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.23674476,2,0,1.166403088,3,14.51701427,3
Sydney - Inner West,120,56,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,77.36625514,3,0,3.351366358,1,14.51701427,3
Sydney - Inner West,120,59,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,32.63506064,2,0,2.833331772,1,14.51701427,3
Sydney - Inner West,120,61,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.63101604,3,0,1.418062031,3,14.51701427,3
Sydney - Inner West,120,62,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,48.37872892,3,0,5.58626565,0,14.51701427,3
Sydney - Inner West,120,63,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,1.773533424,2,0,2.852111249,1,14.51701427,3
Sydney - Inner West,120,71,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.18944844,3,0,3.517283791,0,14.51701427,3
Sydney - Inner West,120,72,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,121.3250518,3,0,4.54891329,0,14.51701427,3
Sydney - Inner West,120,73,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,121.3250518,3,0,2.452576498,2,14.51701427,3
Sydney - Inner West,120,74,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,45.84103512,3,0,6.827084124,0,14.51701427,3
Sydney - Inner West,120,81,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,23.84792627,3,0,5.323702597,0,14.51701427,3
Sydney - Inner West,120,82,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,70.07874016,3,0,8.599890638,0,14.51701427,3
Sydney - Inner West,120,83,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.4843869,3,0,7.394282019,0,14.51701427,3
Sydney - Inner West,120,84,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,72.19589258,3,0,5.816067226,0,14.51701427,3
Sydney - Inner West,120,85,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,-13.77018044,2,0,8.407560815,0,14.51701427,3
Sydney - Inner West,120,89,8.172479746,1,-7.830989458,0,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,35.57951482,3,0,3.879472423,0,14.51701427,3
Sydney - North Sydney and Hornsby,121,11,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,23.34152334,2,0,1.775513209,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,12,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,0,0,0,1.775513209,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,13,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.45209581,2,1,1.934726957,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,14,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,55.32359081,3,0,1.38456451,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,21,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,44.44444444,2,0,3.044104943,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,22,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.5630713,2,0,2.395599968,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,23,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,59.55574183,3,2,2.744430198,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,24,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,61.29032258,2,1,1.983106736,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,25,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,49.80031949,2,3,0.842000852,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,26,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,30.09463722,2,1,2.189164464,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,27,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.47533632,1,1,1.637641677,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,31,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,77.05627706,3,1,1.48376513,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,32,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,44.40860215,3,2,3.672178202,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,33,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,99.29824561,3,3,3.087091782,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,34,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,92.81183932,3,2,3.928639959,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,35,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,55.01858736,3,2,3.215717391,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,36,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,52.25522552,2,0,4.462419792,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,39,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,57.23923197,2,0,1.495232111,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,41,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,50.64575646,2,1,3.48189448,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,42,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,85.30612245,3,0,4.393815552,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,43,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,37.76150628,3,0,5.277350171,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,44,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,21.71492205,2,0,3.334412454,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,45,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,31.03448276,2,0,2.763530685,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,51,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,2.535082122,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,52,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,2.826080167,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,53,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,3.294490254,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,54,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,48.72685185,3,0,4.703538895,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,55,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.23674476,2,0,1.166403088,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,56,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,77.36625514,3,0,3.351366358,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,59,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,32.63506064,2,0,2.833331772,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,61,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.63101604,3,0,1.418062031,3,5.873099109,3
Sydney - North Sydney and Hornsby,121,62,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,48.37872892,3,0,5.58626565,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,63,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,1.773533424,2,0,2.852111249,1,5.873099109,3
Sydney - North Sydney and Hornsby,121,71,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.18944844,3,0,3.517283791,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,72,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,121.3250518,3,0,4.54891329,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,73,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,121.3250518,3,0,2.452576498,2,5.873099109,3
Sydney - North Sydney and Hornsby,121,74,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,45.84103512,3,0,6.827084124,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,81,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,23.84792627,3,0,5.323702597,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,82,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,70.07874016,3,0,8.599890638,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,83,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.4843869,3,0,7.394282019,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,84,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,72.19589258,3,0,5.816067226,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,85,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,-13.77018044,2,0,8.407560815,0,5.873099109,3
Sydney - North Sydney and Hornsby,121,89,4.897847527,2,17.88317253,3,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,35.57951482,3,0,3.879472423,0,5.873099109,3
Sydney - Northern Beaches,122,11,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,23.34152334,2,0,1.775513209,3,3.351373855,2
Sydney - Northern Beaches,122,12,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,0,0,0,1.775513209,3,3.351373855,2
Sydney - Northern Beaches,122,13,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.45209581,2,1,1.934726957,2,3.351373855,2
Sydney - Northern Beaches,122,14,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,55.32359081,3,0,1.38456451,3,3.351373855,2
Sydney - Northern Beaches,122,21,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,44.44444444,2,0,3.044104943,1,3.351373855,2
Sydney - Northern Beaches,122,22,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.5630713,2,0,2.395599968,2,3.351373855,2
Sydney - Northern Beaches,122,23,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,59.55574183,3,2,2.744430198,2,3.351373855,2
Sydney - Northern Beaches,122,24,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,61.29032258,2,1,1.983106736,2,3.351373855,2
Sydney - Northern Beaches,122,25,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,49.80031949,2,3,0.842000852,3,3.351373855,2
Sydney - Northern Beaches,122,26,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,30.09463722,2,1,2.189164464,2,3.351373855,2
Sydney - Northern Beaches,122,27,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.47533632,1,1,1.637641677,3,3.351373855,2
Sydney - Northern Beaches,122,31,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,77.05627706,3,1,1.48376513,3,3.351373855,2
Sydney - Northern Beaches,122,32,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,44.40860215,3,2,3.672178202,0,3.351373855,2
Sydney - Northern Beaches,122,33,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,99.29824561,3,3,3.087091782,1,3.351373855,2
Sydney - Northern Beaches,122,34,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,92.81183932,3,2,3.928639959,0,3.351373855,2
Sydney - Northern Beaches,122,35,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,55.01858736,3,2,3.215717391,1,3.351373855,2
Sydney - Northern Beaches,122,36,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,52.25522552,2,0,4.462419792,0,3.351373855,2
Sydney - Northern Beaches,122,39,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,57.23923197,2,0,1.495232111,3,3.351373855,2
Sydney - Northern Beaches,122,41,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,50.64575646,2,1,3.48189448,0,3.351373855,2
Sydney - Northern Beaches,122,42,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,85.30612245,3,0,4.393815552,0,3.351373855,2
Sydney - Northern Beaches,122,43,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,37.76150628,3,0,5.277350171,0,3.351373855,2
Sydney - Northern Beaches,122,44,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,21.71492205,2,0,3.334412454,1,3.351373855,2
Sydney - Northern Beaches,122,45,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,31.03448276,2,0,2.763530685,2,3.351373855,2
Sydney - Northern Beaches,122,51,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,2.535082122,2,3.351373855,2
Sydney - Northern Beaches,122,52,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,2.826080167,1,3.351373855,2
Sydney - Northern Beaches,122,53,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,3.294490254,1,3.351373855,2
Sydney - Northern Beaches,122,54,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,48.72685185,3,0,4.703538895,0,3.351373855,2
Sydney - Northern Beaches,122,55,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.23674476,2,0,1.166403088,3,3.351373855,2
Sydney - Northern Beaches,122,56,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,77.36625514,3,0,3.351366358,1,3.351373855,2
Sydney - Northern Beaches,122,59,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,32.63506064,2,0,2.833331772,1,3.351373855,2
Sydney - Northern Beaches,122,61,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.63101604,3,0,1.418062031,3,3.351373855,2
Sydney - Northern Beaches,122,62,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,48.37872892,3,0,5.58626565,0,3.351373855,2
Sydney - Northern Beaches,122,63,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,1.773533424,2,0,2.852111249,1,3.351373855,2
Sydney - Northern Beaches,122,71,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.18944844,3,0,3.517283791,0,3.351373855,2
Sydney - Northern Beaches,122,72,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,121.3250518,3,0,4.54891329,0,3.351373855,2
Sydney - Northern Beaches,122,73,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,121.3250518,3,0,2.452576498,2,3.351373855,2
Sydney - Northern Beaches,122,74,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,45.84103512,3,0,6.827084124,0,3.351373855,2
Sydney - Northern Beaches,122,81,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,23.84792627,3,0,5.323702597,0,3.351373855,2
Sydney - Northern Beaches,122,82,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,70.07874016,3,0,8.599890638,0,3.351373855,2
Sydney - Northern Beaches,122,83,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.4843869,3,0,7.394282019,0,3.351373855,2
Sydney - Northern Beaches,122,84,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,72.19589258,3,0,5.816067226,0,3.351373855,2
Sydney - Northern Beaches,122,85,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,-13.77018044,2,0,8.407560815,0,3.351373855,2
Sydney - Northern Beaches,122,89,4.897847527,2,17.60142795,3,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,35.57951482,3,0,3.879472423,0,3.351373855,2
Sydney - Outer South West,123,11,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,23.34152334,2,0,1.775513209,3,6.555918125,3
Sydney - Outer South West,123,12,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,0,0,0,1.775513209,3,6.555918125,3
Sydney - Outer South West,123,13,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.45209581,2,1,1.934726957,2,6.555918125,3
Sydney - Outer South West,123,14,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,55.32359081,3,0,1.38456451,3,6.555918125,3
Sydney - Outer South West,123,21,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,44.44444444,2,0,3.044104943,1,6.555918125,3
Sydney - Outer South West,123,22,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.5630713,2,0,2.395599968,2,6.555918125,3
Sydney - Outer South West,123,23,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,59.55574183,3,2,2.744430198,2,6.555918125,3
Sydney - Outer South West,123,24,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,61.29032258,2,1,1.983106736,2,6.555918125,3
Sydney - Outer South West,123,25,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,49.80031949,2,3,0.842000852,3,6.555918125,3
Sydney - Outer South West,123,26,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,30.09463722,2,1,2.189164464,2,6.555918125,3
Sydney - Outer South West,123,27,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.47533632,1,1,1.637641677,3,6.555918125,3
Sydney - Outer South West,123,31,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,77.05627706,3,1,1.48376513,3,6.555918125,3
Sydney - Outer South West,123,32,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,44.40860215,3,2,3.672178202,0,6.555918125,3
Sydney - Outer South West,123,33,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,99.29824561,3,3,3.087091782,1,6.555918125,3
Sydney - Outer South West,123,34,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,92.81183932,3,2,3.928639959,0,6.555918125,3
Sydney - Outer South West,123,35,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,55.01858736,3,2,3.215717391,1,6.555918125,3
Sydney - Outer South West,123,36,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,52.25522552,2,0,4.462419792,0,6.555918125,3
Sydney - Outer South West,123,39,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,57.23923197,2,0,1.495232111,3,6.555918125,3
Sydney - Outer South West,123,41,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,50.64575646,2,1,3.48189448,0,6.555918125,3
Sydney - Outer South West,123,42,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,85.30612245,3,0,4.393815552,0,6.555918125,3
Sydney - Outer South West,123,43,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,37.76150628,3,0,5.277350171,0,6.555918125,3
Sydney - Outer South West,123,44,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,21.71492205,2,0,3.334412454,1,6.555918125,3
Sydney - Outer South West,123,45,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,31.03448276,2,0,2.763530685,2,6.555918125,3
Sydney - Outer South West,123,51,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,2.535082122,2,6.555918125,3
Sydney - Outer South West,123,52,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,2.826080167,1,6.555918125,3
Sydney - Outer South West,123,53,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,3.294490254,1,6.555918125,3
Sydney - Outer South West,123,54,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,48.72685185,3,0,4.703538895,0,6.555918125,3
Sydney - Outer South West,123,55,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.23674476,2,0,1.166403088,3,6.555918125,3
Sydney - Outer South West,123,56,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,77.36625514,3,0,3.351366358,1,6.555918125,3
Sydney - Outer South West,123,59,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,32.63506064,2,0,2.833331772,1,6.555918125,3
Sydney - Outer South West,123,61,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.63101604,3,0,1.418062031,3,6.555918125,3
Sydney - Outer South West,123,62,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,48.37872892,3,0,5.58626565,0,6.555918125,3
Sydney - Outer South West,123,63,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,1.773533424,2,0,2.852111249,1,6.555918125,3
Sydney - Outer South West,123,71,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.18944844,3,0,3.517283791,0,6.555918125,3
Sydney - Outer South West,123,72,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,121.3250518,3,0,4.54891329,0,6.555918125,3
Sydney - Outer South West,123,73,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,121.3250518,3,0,2.452576498,2,6.555918125,3
Sydney - Outer South West,123,74,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,45.84103512,3,0,6.827084124,0,6.555918125,3
Sydney - Outer South West,123,81,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,23.84792627,3,0,5.323702597,0,6.555918125,3
Sydney - Outer South West,123,82,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,70.07874016,3,0,8.599890638,0,6.555918125,3
Sydney - Outer South West,123,83,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.4843869,3,0,7.394282019,0,6.555918125,3
Sydney - Outer South West,123,84,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,72.19589258,3,0,5.816067226,0,6.555918125,3
Sydney - Outer South West,123,85,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,-13.77018044,2,0,8.407560815,0,6.555918125,3
Sydney - Outer South West,123,89,5.493158573,1,28.76584991,3,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,35.57951482,3,0,3.879472423,0,6.555918125,3
Sydney - Outer West and Blue Mountains,124,11,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,433.2935561,3,0,1.775513209,3,4.557761733,3
Sydney - Outer West and Blue Mountains,124,12,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,0,0,0,1.775513209,3,4.557761733,3
Sydney - Outer West and Blue Mountains,124,13,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,161.1739365,3,1,1.934726957,2,4.557761733,3
Sydney - Outer West and Blue Mountains,124,14,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,55.32359081,1,0,1.38456451,3,4.557761733,3
Sydney - Outer West and Blue Mountains,124,21,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,299.4708995,3,0,3.044104943,1,4.557761733,3
Sydney - Outer West and Blue Mountains,124,22,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,165.1234568,3,0,2.395599968,2,4.557761733,3
Sydney - Outer West and Blue Mountains,124,23,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,59.55574183,2,2,2.744430198,2,4.557761733,3
Sydney - Outer West and Blue Mountains,124,24,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,123.5491071,3,1,1.983106736,2,4.557761733,3
Sydney - Outer West and Blue Mountains,124,25,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,229.5609756,3,3,0.842000852,3,4.557761733,3
Sydney - Outer West and Blue Mountains,124,26,4.897847527,2,13.32944476,3,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,107.8144078,3,1,2.189164464,2,4.557761733,3