-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIslamabad-Rawalpindi Bus Routes.kml
1205 lines (1205 loc) · 183 KB
/
Islamabad-Rawalpindi Bus Routes.kml
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
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://www.opengis.net/kml/2.2'>
<Document>
<name>Islamabad-Rawalpindi Bus Routes (Part 1)</name>
<description><![CDATA[]]></description>
<Folder>
<name>Route 1</name>
<Placemark>
<name>Directions from Constitution Ave, Islamabad, Pakistan to H/33-B Murree Rd, Rawalpindi, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.09174,33.73524,0.0 73.0915,33.73521,0.0 73.09125,33.73514,0.0 73.09106,33.73509,0.0 73.09085,33.73502,0.0 73.09063,33.73494,0.0 73.0904,33.73486,0.0 73.09019,33.73477,0.0 73.09001,33.7347,0.0 73.08975,33.73457,0.0 73.08948,33.73443,0.0 73.08885,33.73409,0.0 73.0884,33.73386,0.0 73.08805,33.73367,0.0 73.08761,33.73344,0.0 73.08601,33.7326,0.0 73.08592,33.73256,0.0 73.08588,33.73255,0.0 73.08577,33.73249,0.0 73.08557,33.73236,0.0 73.08543,33.73227,0.0 73.08518,33.73214,0.0 73.0846,33.73182,0.0 73.08332,33.73119,0.0 73.08293,33.73102,0.0 73.08256,33.73092,0.0 73.08147,33.73075,0.0 73.08033,33.73059,0.0 73.08002,33.73053,0.0 73.07968,33.73042,0.0 73.07926,33.7302,0.0 73.07789,33.72944,0.0 73.07778,33.72939,0.0 73.07776,33.72937,0.0 73.07836,33.7286,0.0 73.0784,33.72854,0.0 73.0787,33.72822,0.0 73.07912,33.72768,0.0 73.07929,33.72746,0.0 73.07961,33.72691,0.0 73.08074,33.72516,0.0 73.08191,33.72358,0.0 73.08291,33.72224,0.0 73.08314,33.72193,0.0 73.08337,33.72163,0.0 73.08399,33.7208,0.0 73.08459,33.72001,0.0 73.08523,33.71923,0.0 73.08537,33.71901,0.0 73.08547,33.71889,0.0 73.08536,33.71884,0.0 73.08477,33.71853,0.0 73.08434,33.7183,0.0 73.08368,33.71798,0.0 73.0833,33.7178,0.0 73.08279,33.71758,0.0 73.08279,33.71757,0.0 73.08279,33.71756,0.0 73.08278,33.71756,0.0 73.08278,33.71755,0.0 73.08304,33.71725,0.0 73.08346,33.71676,0.0 73.08368,33.71649,0.0 73.08458,33.71533,0.0 73.0848,33.71495,0.0 73.08486,33.71488,0.0 73.08628,33.713,0.0 73.08634,33.71292,0.0 73.08737,33.71152,0.0 73.08891,33.70949,0.0 73.08965,33.70855,0.0 73.09006,33.70801,0.0 73.09009,33.70796,0.0 73.09014,33.70785,0.0 73.09015,33.70783,0.0 73.08999,33.70777,0.0 73.08953,33.70753,0.0 73.08892,33.70721,0.0 73.08823,33.70685,0.0 73.08776,33.70661,0.0 73.08683,33.70613,0.0 73.08291,33.70409,0.0 73.08265,33.70394,0.0 73.08258,33.70388,0.0 73.08254,33.70382,0.0 73.0825,33.70374,0.0 73.08247,33.70363,0.0 73.08242,33.70344,0.0 73.08248,33.70337,0.0 73.08271,33.70305,0.0 73.0828,33.70295,0.0 73.08275,33.70291,0.0 73.08269,33.70288,0.0 73.08246,33.70276,0.0 73.07975,33.70133,0.0 73.07628,33.69954,0.0 73.07253,33.69747,0.0 73.06959,33.6959,0.0 73.06949,33.69586,0.0 73.06918,33.69572,0.0 73.06908,33.69566,0.0 73.06898,33.69561,0.0 73.06843,33.69528,0.0 73.06823,33.69514,0.0 73.06808,33.69505,0.0 73.06795,33.69493,0.0 73.06784,33.69481,0.0 73.06774,33.69469,0.0 73.06765,33.69457,0.0 73.0675,33.69439,0.0 73.06726,33.69417,0.0 73.06716,33.69411,0.0 73.06706,33.69405,0.0 73.06691,33.69395,0.0 73.0668,33.69387,0.0 73.06673,33.69381,0.0 73.06667,33.69375,0.0 73.06662,33.69369,0.0 73.06658,33.69363,0.0 73.06654,33.69356,0.0 73.06651,33.6935,0.0 73.06651,33.69348,0.0 73.06648,33.69341,0.0 73.06646,33.6933,0.0 73.06645,33.69321,0.0 73.06645,33.69313,0.0 73.06647,33.69303,0.0 73.06649,33.69297,0.0 73.06651,33.6929,0.0 73.06654,33.69283,0.0 73.06662,33.69271,0.0 73.0667,33.69263,0.0 73.06678,33.69254,0.0 73.06687,33.69243,0.0 73.06696,33.69231,0.0 73.06705,33.69218,0.0 73.06714,33.692,0.0 73.06731,33.69156,0.0 73.06744,33.69124,0.0 73.06752,33.69108,0.0 73.06774,33.69064,0.0 73.06939,33.68838,0.0 73.06973,33.68793,0.0 73.07244,33.68431,0.0 73.07289,33.68374,0.0 73.07313,33.68342,0.0 73.07431,33.68185,0.0 73.07522,33.68063,0.0 73.07603,33.67956,0.0 73.07625,33.67926,0.0 73.07631,33.67918,0.0 73.07655,33.67885,0.0 73.07663,33.67875,0.0 73.0767,33.67865,0.0 73.07717,33.67803,0.0 73.07777,33.67724,0.0 73.0781,33.6768,0.0 73.07891,33.67569,0.0 73.08344,33.66966,0.0 73.08409,33.66877,0.0 73.085,33.66755,0.0 73.0866,33.66546,0.0 73.08716,33.66472,0.0 73.08746,33.66429,0.0 73.08769,33.66414,0.0 73.0878,33.66406,0.0 73.0879,33.66401,0.0 73.08801,33.66397,0.0 73.08815,33.66395,0.0 73.08829,33.66395,0.0 73.08847,33.664,0.0 73.08859,33.66405,0.0 73.0887,33.66412,0.0 73.08876,33.66419,0.0 73.08886,33.66432,0.0 73.0889,33.66441,0.0 73.08892,33.66449,0.0 73.08892,33.66459,0.0 73.0889,33.6647,0.0 73.08883,33.66483,0.0 73.08871,33.66498,0.0 73.08862,33.66504,0.0 73.08853,33.66509,0.0 73.08838,33.66514,0.0 73.08825,33.66515,0.0 73.08812,33.66515,0.0 73.08797,33.66511,0.0 73.08787,33.66507,0.0 73.08778,33.66503,0.0 73.08746,33.66479,0.0 73.08738,33.66471,0.0 73.08716,33.66447,0.0 73.08695,33.66422,0.0 73.08666,33.66389,0.0 73.08593,33.66317,0.0 73.08542,33.66262,0.0 73.08535,33.66252,0.0 73.08521,33.66232,0.0 73.08515,33.66219,0.0 73.0851,33.66209,0.0 73.08474,33.66127,0.0 73.08433,33.66027,0.0 73.08411,33.65975,0.0 73.08393,33.65929,0.0 73.08377,33.65893,0.0 73.08363,33.65855,0.0 73.08349,33.65799,0.0 73.08334,33.65754,0.0 73.0832,33.65715,0.0 73.08303,33.65681,0.0 73.08279,33.65644,0.0 73.08244,33.65541,0.0 73.08207,33.65442,0.0 73.08173,33.65358,0.0 73.08156,33.65314,0.0 73.08122,33.65232,0.0 73.08105,33.6519,0.0 73.08065,33.65113,0.0 73.08041,33.65056,0.0 73.08029,33.65027,0.0 73.07989,33.64916,0.0 73.07985,33.64906,0.0 73.07886,33.64659,0.0 73.07799,33.6444,0.0 73.0775,33.64312,0.0 73.0771,33.64208,0.0 73.07709,33.64204,0.0 73.07707,33.642,0.0 73.07704,33.64192,0.0 73.07702,33.64185,0.0 73.077,33.6418,0.0 73.07695,33.64169,0.0 73.07693,33.64164,0.0 73.07692,33.64159,0.0 73.07689,33.64154,0.0 73.07685,33.64145,0.0 73.07684,33.64142,0.0 73.07597,33.63927,0.0 73.07555,33.63815,0.0 73.07551,33.638,0.0 73.07539,33.63772,0.0 73.07455,33.63566,0.0 73.0739,33.63404,0.0 73.0737,33.63356,0.0 73.07358,33.63327,0.0 73.07341,33.63279,0.0 73.07331,33.63253,0.0 73.07321,33.63232,0.0 73.07314,33.63215,0.0 73.07305,33.63195,0.0 73.07288,33.63165,0.0 73.07273,33.63141,0.0 73.07267,33.63132,0.0 73.07228,33.6307,0.0 73.07143,33.62944,0.0 73.071,33.62881,0.0 73.07062,33.62818,0.0 73.07051,33.62801,0.0 73.07045,33.6279,0.0 73.07045,33.62775,0.0 73.07015,33.62729,0.0 73.07004,33.62713,0.0 73.06944,33.62607,0.0 73.0694,33.62601,0.0 73.06872,33.62508,0.0 73.06759,33.62325,0.0 73.06744,33.623,0.0 73.0672,33.62265,0.0 73.06705,33.62241,0.0 73.06688,33.62207,0.0 73.06657,33.62149,0.0 73.06636,33.62105,0.0 73.0663,33.62091,0.0 73.06625,33.62068,0.0 73.0662,33.62049,0.0 73.06616,33.62029,0.0 73.0661,33.61992,0.0 73.06604,33.61954,0.0 73.06592,33.6189,0.0 73.06582,33.61829,0.0 73.06571,33.61767,0.0 73.06566,33.61747,0.0 73.06547,33.61657,0.0 73.06537,33.61606,0.0 73.06532,33.61562,0.0 73.06529,33.61535,0.0 73.06527,33.61508,0.0 73.06524,33.61481,0.0 73.06522,33.61454,0.0 73.06518,33.61424,0.0 73.06515,33.61403,0.0 73.06514,33.61384,0.0 73.06514,33.61348,0.0 73.06514,33.61315,0.0 73.06514,33.61303,0.0 73.06514,33.61283,0.0 73.06515,33.61262,0.0 73.06516,33.61221,0.0 73.06518,33.6119,0.0 73.06519,33.61176,0.0 73.06522,33.61149,0.0 73.06531,33.6107,0.0 73.06533,33.61055,0.0 73.06539,33.61002,0.0 73.06541,33.60984,0.0 73.06545,33.60962,0.0 73.0655,33.60922,0.0 73.06551,33.60913,0.0 73.06553,33.60896,0.0 73.06553,33.60885,0.0 73.06558,33.60842,0.0 73.06561,33.6082,0.0 73.06566,33.60793,0.0 73.06569,33.60767,0.0 73.06571,33.6075,0.0 73.06573,33.60733,0.0 73.06574,33.60719,0.0 73.06577,33.60693,0.0 73.06578,33.60683,0.0 73.06578,33.6067,0.0 73.06578,33.60668,0.0 73.0658,33.60656,0.0 73.06581,33.60642,0.0 73.06584,33.60633,0.0 73.06585,33.60628,0.0 73.06586,33.60622,0.0 73.06587,33.6061,0.0 73.06589,33.60594,0.0 73.06597,33.60526,0.0 73.06603,33.6049,0.0 73.06606,33.60455,0.0 73.06607,33.60433,0.0 73.06607,33.60413,0.0 73.06605,33.60388,0.0 73.066,33.60357,0.0 73.06595,33.60326,0.0 73.06592,33.6031,0.0 73.06591,33.60302,0.0 73.06589,33.60294,0.0 73.06586,33.60286,0.0 73.06581,33.60264,0.0 73.06576,33.60252,0.0 73.06572,33.60241,0.0 73.06569,33.60236,0.0 73.06567,33.60231,0.0 73.06563,33.60223,0.0 73.06558,33.60216,0.0 73.06554,33.60211,0.0 73.0654,33.60195,0.0 73.06531,33.60185,0.0 73.06524,33.60175,0.0 73.06515,33.60165,0.0 73.06506,33.60154,0.0 73.06497,33.60142,0.0 73.06481,33.60124,0.0 73.06468,33.60111,0.0 73.06458,33.60101,0.0 73.06447,33.60091,0.0 73.06434,33.60079,0.0 73.06413,33.6006,0.0 73.06393,33.60043,0.0 73.06378,33.6003,0.0 73.06369,33.60019,0.0 73.0635,33.60003,0.0 73.06337,33.59988,0.0 73.06328,33.5998,0.0 73.06282,33.59941,0.0 73.06277,33.59937,0.0 73.06273,33.59934,0.0 73.06241,33.59905,0.0 73.06066,33.59756,0.0 73.05913,33.59621,0.0 73.05856,33.59571,0.0 73.05839,33.59555,0.0 73.05818,33.59536,0.0 73.05793,33.59514,0.0 73.05705,33.59435,0.0 73.05666,33.59402,0.0 73.05658,33.59395,0.0 73.05654,33.59392,0.0 73.05647,33.59385,0.0 73.0561,33.59353,0.0 73.05607,33.5935,0.0 73.05599,33.59343,0.0 73.0558,33.59326,0.0 73.05575,33.59322,0.0 73.05559,33.59307,0.0 73.05542,33.5929,0.0 73.05532,33.59282,0.0 73.05512,33.59266,0.0 73.05492,33.59253,0.0 73.05482,33.59247,0.0 73.05391,33.59168,0.0 73.05364,33.59144,0.0 73.05358,33.59139,0.0 73.05351,33.59132,0.0 73.05339,33.59141,0.0 73.05318,33.59157,0.0 73.05254,33.59207,0.0 73.05176,33.5927,0.0 73.05128,33.59309,0.0 73.05021,33.59392,0.0 73.05017,33.59395,0.0 73.04992,33.59413,0.0 73.04982,33.59421,0.0 73.04958,33.59439,0.0 73.04821,33.59545,0.0 73.0481,33.59554,0.0 73.04784,33.59571,0.0 73.04769,33.59582,0.0 73.04655,33.59668,0.0 73.04632,33.59686,0.0 73.04624,33.59692,0.0 73.0461,33.59704,0.0 73.04576,33.59733,0.0 73.04554,33.59753,0.0 73.04532,33.59771,0.0 73.04511,33.59786,0.0 73.04501,33.59793,0.0 73.04493,33.59798,0.0 73.0449,33.598,0.0 73.04499,33.5981,0.0 73.04512,33.59821,0.0 73.04516,33.59825,0.0 73.04522,33.59829,0.0 73.04526,33.59832,0.0 73.04532,33.59836,0.0 73.04539,33.59843,0.0 73.04574,33.59872,0.0 73.0462,33.59915,0.0 73.0463,33.59923,0.0 73.04745,33.60027,0.0 73.04756,33.60034,0.0 73.04768,33.60041,0.0 73.0477,33.60051,0.0 73.04768,33.60061,0.0 73.04767,33.60062,0.0 73.04777,33.60087,0.0 73.04779,33.60101,0.0 73.04794,33.60191,0.0 73.04814,33.60304,0.0 73.04817,33.60318,0.0 73.04821,33.60316,0.0 73.04843,33.60312,0.0 73.04914,33.60299,0.0 73.04928,33.60298,0.0 73.04993,33.60289,0.0 73.05007,33.60286,0.0 73.05013,33.60289,0.0 73.05019,33.60288,0.0 73.05024,33.60285,0.0 73.05025,33.60282,0.0 73.05035,33.60285,0.0 73.05085,33.60285,0.0 73.05174,33.60283,0.0 73.05207,33.60279,0.0 73.05232,33.60276,0.0 73.05256,33.60272,0.0 73.05286,33.60269,0.0 73.05325,33.60264,0.0 73.05379,33.60255,0.0 73.05457,33.60241,0.0 73.05458,33.60241,0.0 73.05516,33.60229,0.0 73.05549,33.60219,0.0 73.05597,33.60204,0.0 73.05625,33.60196,0.0 73.05655,33.60188,0.0 73.05654,33.60184,0.0 73.05648,33.60161,0.0 73.05636,33.60121,0.0 73.05618,33.60073,0.0 73.05609,33.60047,0.0 73.05611,33.60029,0.0 73.05611,33.60025,0.0 73.05767,33.59993,0.0 73.05771,33.59991,0.0 73.05774,33.59989,0.0 73.05775,33.59988,0.0 73.05802,33.60002,0.0 73.05822,33.6001,0.0 73.05839,33.60016,0.0 73.05853,33.6002,0.0 73.05868,33.60022,0.0 73.05888,33.60023,0.0 73.05913,33.60024,0.0 73.05941,33.60025,0.0 73.06071,33.60022,0.0 73.06094,33.60023,0.0 73.06106,33.60024,0.0 73.06114,33.60025,0.0 73.0613,33.60032,0.0 73.06139,33.60037,0.0 73.06149,33.60041,0.0 73.06158,33.60044,0.0 73.06172,33.60046,0.0 73.06182,33.60046,0.0 73.06194,33.60044,0.0 73.06256,33.60028,0.0 73.06314,33.6001,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0917355,33.7352448,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Agha Khan Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0777824,33.7293856,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0830434,33.7172458,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0901389,33.7078537,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pakistan Monument Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0665069,33.693482,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Benazir Bhutto Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.085351,33.6625218,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Murree Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.055801,33.5932624,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Railway Station Stop, Rawalpindi, Punjab</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0477937,33.6010099,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>H/33-B Murree Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0631375,33.6000991,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 1-C</name>
<Placemark>
<name>Directions from Raja Bazar, Rawalpindi, Punjab to Bari Imam Complex, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.05549,33.61451,0.0 73.05549,33.61445,0.0 73.05544,33.61375,0.0 73.0554,33.61344,0.0 73.05538,33.61306,0.0 73.05538,33.61303,0.0 73.0554,33.61302,0.0 73.05542,33.61303,0.0 73.05544,33.61304,0.0 73.05549,33.61306,0.0 73.05553,33.61306,0.0 73.05575,33.61306,0.0 73.0561,33.61306,0.0 73.05725,33.6131,0.0 73.05741,33.61307,0.0 73.05761,33.61308,0.0 73.05782,33.61312,0.0 73.05833,33.61321,0.0 73.05867,33.61327,0.0 73.05893,33.61331,0.0 73.05907,33.61332,0.0 73.05927,33.61337,0.0 73.05946,33.61339,0.0 73.05962,33.61342,0.0 73.05976,33.61345,0.0 73.05999,33.61348,0.0 73.06024,33.61351,0.0 73.06044,33.61352,0.0 73.06055,33.61353,0.0 73.0608,33.61354,0.0 73.06146,33.61354,0.0 73.06184,33.61352,0.0 73.06188,33.61352,0.0 73.0622,33.61351,0.0 73.06221,33.61351,0.0 73.06278,33.61342,0.0 73.06374,33.61327,0.0 73.06382,33.6133,0.0 73.06482,33.61322,0.0 73.06485,33.61366,0.0 73.06489,33.61416,0.0 73.06507,33.61533,0.0 73.06509,33.61541,0.0 73.0651,33.61546,0.0 73.06511,33.61554,0.0 73.06514,33.61562,0.0 73.06515,33.61576,0.0 73.06526,33.61577,0.0 73.06539,33.61659,0.0 73.06543,33.61681,0.0 73.06552,33.61781,0.0 73.06588,33.61968,0.0 73.06599,33.62028,0.0 73.06606,33.6206,0.0 73.06609,33.62071,0.0 73.06615,33.62089,0.0 73.06618,33.62099,0.0 73.06632,33.62133,0.0 73.06658,33.62189,0.0 73.06669,33.62207,0.0 73.06697,33.6226,0.0 73.06712,33.62276,0.0 73.06724,33.623,0.0 73.06743,33.62329,0.0 73.06805,33.6243,0.0 73.06828,33.62464,0.0 73.0691,33.62589,0.0 73.06925,33.62609,0.0 73.06932,33.62623,0.0 73.06934,33.62638,0.0 73.06968,33.62692,0.0 73.07001,33.62743,0.0 73.07016,33.62776,0.0 73.07017,33.62777,0.0 73.07028,33.62793,0.0 73.0703,33.62796,0.0 73.07044,33.62814,0.0 73.07081,33.62873,0.0 73.07114,33.62924,0.0 73.07177,33.63019,0.0 73.07185,33.63029,0.0 73.07241,33.63115,0.0 73.07254,33.63136,0.0 73.07261,33.63146,0.0 73.07282,33.63179,0.0 73.07296,33.63204,0.0 73.07306,33.63226,0.0 73.07317,33.63249,0.0 73.07326,33.63274,0.0 73.07365,33.6338,0.0 73.07368,33.63389,0.0 73.07434,33.63548,0.0 73.07508,33.63754,0.0 73.07514,33.63768,0.0 73.07546,33.63836,0.0 73.07576,33.63908,0.0 73.07674,33.64149,0.0 73.07675,33.6415,0.0 73.07677,33.64156,0.0 73.0768,33.64163,0.0 73.07682,33.64167,0.0 73.07683,33.64171,0.0 73.07687,33.64179,0.0 73.0769,33.64188,0.0 73.07694,33.64198,0.0 73.07696,33.64202,0.0 73.07697,33.64206,0.0 73.07699,33.6421,0.0 73.07743,33.6433,0.0 73.07787,33.64449,0.0 73.07794,33.64468,0.0 73.07801,33.64486,0.0 73.07869,33.64657,0.0 73.07873,33.64668,0.0 73.07878,33.64681,0.0 73.0796,33.64882,0.0 73.07964,33.64894,0.0 73.0798,33.64937,0.0 73.07984,33.64948,0.0 73.08018,33.65029,0.0 73.08102,33.65241,0.0 73.0814,33.65329,0.0 73.0815,33.65355,0.0 73.08156,33.65372,0.0 73.08248,33.6561,0.0 73.08255,33.65636,0.0 73.0826,33.6565,0.0 73.08269,33.65684,0.0 73.08276,33.65709,0.0 73.08296,33.65753,0.0 73.08315,33.65793,0.0 73.08333,33.65823,0.0 73.08344,33.65853,0.0 73.08361,33.65897,0.0 73.08374,33.65931,0.0 73.08418,33.66029,0.0 73.0842,33.66032,0.0 73.08444,33.66083,0.0 73.08449,33.66096,0.0 73.08475,33.66164,0.0 73.08479,33.66174,0.0 73.0849,33.66195,0.0 73.08499,33.66216,0.0 73.08506,33.6623,0.0 73.08513,33.66241,0.0 73.08539,33.6628,0.0 73.08546,33.66313,0.0 73.08548,33.6632,0.0 73.08549,33.66329,0.0 73.0855,33.66337,0.0 73.08551,33.66347,0.0 73.08551,33.66356,0.0 73.08551,33.66364,0.0 73.0855,33.66371,0.0 73.08542,33.66462,0.0 73.08535,33.6664,0.0 73.08531,33.6666,0.0 73.08524,33.66677,0.0 73.08513,33.66696,0.0 73.08508,33.66713,0.0 73.08135,33.67206,0.0 73.07811,33.67638,0.0 73.07717,33.67765,0.0 73.07678,33.67818,0.0 73.07652,33.67856,0.0 73.07644,33.67867,0.0 73.07636,33.67878,0.0 73.07591,33.67937,0.0 73.07512,33.68042,0.0 73.07478,33.68087,0.0 73.07461,33.68109,0.0 73.07411,33.68175,0.0 73.07275,33.68356,0.0 73.07269,33.68364,0.0 73.07226,33.6842,0.0 73.06939,33.68801,0.0 73.06891,33.68865,0.0 73.06843,33.68932,0.0 73.0677,33.69034,0.0 73.06741,33.69069,0.0 73.06701,33.69119,0.0 73.06557,33.69312,0.0 73.06496,33.6939,0.0 73.06475,33.69419,0.0 73.06468,33.69429,0.0 73.0645,33.69454,0.0 73.06436,33.6946,0.0 73.06418,33.69468,0.0 73.06398,33.69477,0.0 73.06385,33.69482,0.0 73.0637,33.69486,0.0 73.06353,33.69489,0.0 73.06336,33.69489,0.0 73.06326,33.69488,0.0 73.06315,33.69486,0.0 73.06306,33.69483,0.0 73.06297,33.69479,0.0 73.06287,33.69473,0.0 73.0628,33.69468,0.0 73.06274,33.69463,0.0 73.06267,33.69456,0.0 73.06262,33.6945,0.0 73.06258,33.69442,0.0 73.06255,33.69434,0.0 73.06252,33.69425,0.0 73.0625,33.69416,0.0 73.06249,33.69407,0.0 73.0625,33.69395,0.0 73.06254,33.69384,0.0 73.06258,33.69377,0.0 73.06262,33.6937,0.0 73.06268,33.69361,0.0 73.06274,33.69356,0.0 73.06283,33.69349,0.0 73.06294,33.69343,0.0 73.06317,33.69333,0.0 73.06333,33.6933,0.0 73.06347,33.6933,0.0 73.06362,33.69329,0.0 73.06379,33.69331,0.0 73.0642,33.69338,0.0 73.06486,33.69376,0.0 73.0651,33.69389,0.0 73.06534,33.69401,0.0 73.06639,33.69449,0.0 73.06873,33.69573,0.0 73.06895,33.69585,0.0 73.06905,33.6959,0.0 73.0729,33.69802,0.0 73.07371,33.69835,0.0 73.07553,33.69925,0.0 73.076,33.69953,0.0 73.08224,33.70279,0.0 73.08236,33.70294,0.0 73.0824,33.70305,0.0 73.08239,33.70326,0.0 73.08231,33.70337,0.0 73.0821,33.70365,0.0 73.08203,33.70376,0.0 73.08215,33.70382,0.0 73.08225,33.70388,0.0 73.08257,33.70401,0.0 73.08284,33.70417,0.0 73.08568,33.70574,0.0 73.08671,33.70629,0.0 73.08772,33.70676,0.0 73.08814,33.70696,0.0 73.08878,33.70728,0.0 73.08936,33.70759,0.0 73.08992,33.70788,0.0 73.09009,33.70796,0.0 73.0915,33.7087,0.0 73.09234,33.70918,0.0 73.09294,33.70949,0.0 73.09309,33.70956,0.0 73.09421,33.71015,0.0 73.09522,33.71067,0.0 73.096,33.71109,0.0 73.09673,33.71146,0.0 73.09897,33.71262,0.0 73.10045,33.71335,0.0 73.10149,33.71388,0.0 73.10248,33.7144,0.0 73.10361,33.715,0.0 73.10366,33.71502,0.0 73.10547,33.71599,0.0 73.10547,33.716,0.0 73.10547,33.71601,0.0 73.10547,33.71602,0.0 73.10546,33.71602,0.0 73.10546,33.71603,0.0 73.10546,33.71604,0.0 73.10521,33.71641,0.0 73.10416,33.71789,0.0 73.10323,33.71914,0.0 73.10097,33.72204,0.0 73.10081,33.72225,0.0 73.10048,33.72268,0.0 73.10011,33.7232,0.0 73.10037,33.72334,0.0 73.10212,33.72428,0.0 73.10213,33.72429,0.0 73.10245,33.72445,0.0 73.10543,33.72602,0.0 73.10794,33.72733,0.0 73.10841,33.72757,0.0 73.10974,33.72827,0.0 73.11094,33.7289,0.0 73.11144,33.72915,0.0 73.11156,33.72922,0.0 73.11163,33.72927,0.0 73.11167,33.72931,0.0 73.11168,33.72934,0.0 73.11169,33.72936,0.0 73.11169,33.72938,0.0 73.11169,33.7294,0.0 73.1117,33.72944,0.0 73.11169,33.72947,0.0 73.11071,33.73076,0.0 73.11025,33.73138,0.0 73.10881,33.73338,0.0 73.1076,33.73501,0.0 73.10722,33.73554,0.0 73.10728,33.7357,0.0 73.10794,33.73737,0.0 73.10808,33.73773,0.0 73.10846,33.73914,0.0 73.10863,33.7398,0.0 73.10872,33.74015,0.0 73.10895,33.74109,0.0 73.10924,33.74253,0.0 73.10959,33.74385,0.0 73.10975,33.74422,0.0 73.11015,33.74423,0.0 73.1112,33.74428,0.0 73.11148,33.74429,0.0 73.11176,33.7443,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Raja Bazar, Rawalpindi, Punjab</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0554933,33.6145113,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Iqbal Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.064822,33.6132227,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Chandni chowk, Murree Road, Rawalpindi, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0718456,33.6302946,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Faizabad Stop, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0854595,33.663131,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>699 Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0887766,33.7072839,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1036556,33.7150184,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1004833,33.7226828,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bari Imam Complex, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1117557,33.7443035,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 21</name>
<Placemark>
<name>Directions from Katchery Stop, Rawalpindi, Pakistan to Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.06714,33.58284,0.0 73.06684,33.58311,0.0 73.06686,33.58334,0.0 73.06686,33.58335,0.0 73.06658,33.58359,0.0 73.0662,33.5839,0.0 73.06589,33.58412,0.0 73.06574,33.5843,0.0 73.06568,33.58441,0.0 73.0656,33.58457,0.0 73.06553,33.58474,0.0 73.06555,33.5848,0.0 73.06556,33.58484,0.0 73.06561,33.58498,0.0 73.06576,33.58541,0.0 73.06593,33.58587,0.0 73.06598,33.58607,0.0 73.066,33.58628,0.0 73.066,33.58647,0.0 73.06597,33.58683,0.0 73.06596,33.58688,0.0 73.06594,33.58708,0.0 73.06591,33.58727,0.0 73.06587,33.5876,0.0 73.066,33.58761,0.0 73.06604,33.58726,0.0 73.0661,33.58684,0.0 73.06613,33.58663,0.0 73.06613,33.58639,0.0 73.06612,33.5862,0.0 73.0661,33.58597,0.0 73.066,33.58561,0.0 73.06601,33.58547,0.0 73.06604,33.58537,0.0 73.06613,33.58528,0.0 73.0662,33.58522,0.0 73.06629,33.58518,0.0 73.06641,33.58517,0.0 73.06724,33.58537,0.0 73.06788,33.58553,0.0 73.06816,33.5856,0.0 73.06851,33.58568,0.0 73.06949,33.58588,0.0 73.07021,33.58602,0.0 73.07068,33.58609,0.0 73.07102,33.58614,0.0 73.07182,33.58623,0.0 73.07229,33.5863,0.0 73.07262,33.58636,0.0 73.07294,33.58645,0.0 73.07316,33.58654,0.0 73.0734,33.58664,0.0 73.07362,33.58676,0.0 73.07383,33.5869,0.0 73.07405,33.58708,0.0 73.07537,33.58819,0.0 73.07548,33.5883,0.0 73.07583,33.58861,0.0 73.07619,33.58893,0.0 73.0764,33.58912,0.0 73.07672,33.58934,0.0 73.07709,33.58956,0.0 73.07827,33.59032,0.0 73.07913,33.59086,0.0 73.0792,33.59098,0.0 73.07926,33.59106,0.0 73.07931,33.59115,0.0 73.07935,33.59124,0.0 73.07939,33.59132,0.0 73.07942,33.5914,0.0 73.07944,33.59147,0.0 73.07946,33.59159,0.0 73.07946,33.5917,0.0 73.07944,33.59184,0.0 73.0794,33.59198,0.0 73.07932,33.59216,0.0 73.07924,33.59229,0.0 73.07915,33.59241,0.0 73.07905,33.5926,0.0 73.07895,33.59281,0.0 73.07889,33.593,0.0 73.07885,33.59315,0.0 73.07882,33.59336,0.0 73.07881,33.59355,0.0 73.07882,33.5938,0.0 73.0789,33.59453,0.0 73.07913,33.59652,0.0 73.07915,33.59668,0.0 73.0792,33.59684,0.0 73.07929,33.59713,0.0 73.07943,33.59745,0.0 73.07957,33.5977,0.0 73.07966,33.59784,0.0 73.07976,33.59798,0.0 73.07996,33.59823,0.0 73.08019,33.59845,0.0 73.08044,33.59867,0.0 73.08069,33.59885,0.0 73.08097,33.59903,0.0 73.08126,33.59917,0.0 73.0813,33.59919,0.0 73.08156,33.59931,0.0 73.08191,33.59944,0.0 73.08218,33.59952,0.0 73.08243,33.59957,0.0 73.08269,33.59962,0.0 73.0829,33.59964,0.0 73.0832,33.59967,0.0 73.0861,33.59995,0.0 73.08756,33.60008,0.0 73.08862,33.60018,0.0 73.0887,33.60018,0.0 73.08923,33.60023,0.0 73.09048,33.60037,0.0 73.09125,33.60046,0.0 73.09295,33.60069,0.0 73.09317,33.60076,0.0 73.09338,33.60087,0.0 73.09383,33.60114,0.0 73.09681,33.60325,0.0 73.0973,33.60365,0.0 73.09759,33.60386,0.0 73.09766,33.60392,0.0 73.09913,33.60494,0.0 73.0995,33.60522,0.0 73.1001,33.60564,0.0 73.10059,33.60599,0.0 73.10114,33.60636,0.0 73.10584,33.60966,0.0 73.10592,33.6097,0.0 73.10597,33.60973,0.0 73.10604,33.60977,0.0 73.10612,33.60979,0.0 73.10618,33.60981,0.0 73.10626,33.60983,0.0 73.10635,33.60985,0.0 73.10642,33.60986,0.0 73.10647,33.60986,0.0 73.10653,33.60986,0.0 73.10658,33.60986,0.0 73.10663,33.60987,0.0 73.10669,33.60987,0.0 73.10676,33.60985,0.0 73.10686,33.60983,0.0 73.10694,33.6098,0.0 73.10804,33.6094,0.0 73.11292,33.60756,0.0 73.11316,33.60747,0.0 73.11434,33.60704,0.0 73.11464,33.60692,0.0 73.11488,33.60681,0.0 73.11981,33.60456,0.0 73.12007,33.60445,0.0 73.12032,33.60432,0.0 73.12075,33.60409,0.0 73.12376,33.60247,0.0 73.12426,33.60219,0.0 73.12454,33.60204,0.0 73.12478,33.60191,0.0 73.12505,33.6018,0.0 73.12542,33.6017,0.0 73.12573,33.60164,0.0 73.12618,33.60157,0.0 73.12643,33.60158,0.0 73.12675,33.60162,0.0 73.12708,33.60169,0.0 73.12738,33.60177,0.0 73.1277,33.60187,0.0 73.1279,33.60194,0.0 73.12813,33.60203,0.0 73.12845,33.6022,0.0 73.12871,33.60239,0.0 73.12892,33.60256,0.0 73.12909,33.60271,0.0 73.12935,33.60303,0.0 73.13003,33.60413,0.0 73.13016,33.60437,0.0 73.13047,33.60486,0.0 73.13059,33.60515,0.0 73.1306,33.60523,0.0 73.13061,33.6053,0.0 73.1306,33.60538,0.0 73.1306,33.60546,0.0 73.13058,33.60563,0.0 73.13054,33.6058,0.0 73.1305,33.60595,0.0 73.13041,33.60615,0.0 73.13029,33.60648,0.0 73.13027,33.60658,0.0 73.12852,33.60891,0.0 73.12599,33.61234,0.0 73.12575,33.61266,0.0 73.12367,33.61537,0.0 73.12144,33.61842,0.0 73.11988,33.6205,0.0 73.11962,33.62086,0.0 73.11694,33.62444,0.0 73.11583,33.62593,0.0 73.11512,33.62688,0.0 73.11502,33.62701,0.0 73.11496,33.62715,0.0 73.11354,33.62905,0.0 73.11318,33.62953,0.0 73.11289,33.6295,0.0 73.11278,33.6295,0.0 73.11217,33.62946,0.0 73.11172,33.62947,0.0 73.11162,33.62946,0.0 73.11157,33.62945,0.0 73.11153,33.62942,0.0 73.1115,33.62936,0.0 73.11314,33.62927,0.0 73.11334,33.62926,0.0 73.11368,33.62924,0.0 73.11372,33.62924,0.0 73.11392,33.62923,0.0 73.11506,33.62919,0.0 73.11538,33.62932,0.0 73.11568,33.6294,0.0 73.11636,33.62951,0.0 73.11679,33.6296,0.0 73.11724,33.62968,0.0 73.11733,33.6297,0.0 73.11793,33.62979,0.0 73.11883,33.62993,0.0 73.11942,33.63002,0.0 73.11968,33.63005,0.0 73.11981,33.63007,0.0 73.11985,33.63008,0.0 73.12003,33.63013,0.0 73.12012,33.63014,0.0 73.12019,33.63015,0.0 73.12036,33.63016,0.0 73.12049,33.63019,0.0 73.12056,33.63022,0.0 73.12064,33.63026,0.0 73.12111,33.63067,0.0 73.1217,33.63122,0.0 73.12215,33.63169,0.0 73.12229,33.63181,0.0 73.12242,33.6319,0.0 73.12256,33.63197,0.0 73.12273,33.63205,0.0 73.12295,33.63212,0.0 73.12317,33.63217,0.0 73.12377,33.63225,0.0 73.12413,33.63231,0.0 73.12662,33.63268,0.0 73.12691,33.63273,0.0 73.12698,33.63273,0.0 73.12922,33.63313,0.0 73.12984,33.63324,0.0 73.1318,33.6336,0.0 73.13205,33.63361,0.0 73.13273,33.63365,0.0 73.13276,33.63365,0.0 73.13303,33.6337,0.0 73.13333,33.6338,0.0 73.13381,33.63398,0.0 73.13384,33.63399,0.0 73.13455,33.63426,0.0 73.13613,33.63486,0.0 73.13613,33.63487,0.0 73.1385,33.63573,0.0 73.13862,33.63578,0.0 73.14046,33.63649,0.0 73.14107,33.63677,0.0 73.14156,33.63701,0.0 73.14338,33.63774,0.0 73.14374,33.63789,0.0 73.14443,33.63811,0.0 73.14679,33.63886,0.0 73.14738,33.63905,0.0 73.14867,33.63947,0.0 73.14891,33.63953,0.0 73.14916,33.63958,0.0 73.14942,33.63963,0.0 73.14943,33.63963,0.0 73.1498,33.63966,0.0 73.15019,33.63967,0.0 73.15048,33.63965,0.0 73.15076,33.63961,0.0 73.15144,33.63949,0.0 73.15243,33.6393,0.0 73.15246,33.63929,0.0 73.15291,33.63922,0.0 73.15316,33.6392,0.0 73.15321,33.63921,0.0 73.15338,33.63921,0.0 73.15367,33.63923,0.0 73.15397,33.63927,0.0 73.15425,33.63933,0.0 73.15451,33.63939,0.0 73.15497,33.63956,0.0 73.15523,33.63965,0.0 73.15536,33.6397,0.0 73.15555,33.63983,0.0 73.15578,33.64002,0.0 73.15597,33.64024,0.0 73.15602,33.6403,0.0 73.15609,33.6404,0.0 73.15686,33.64133,0.0 73.15718,33.6417,0.0 73.15736,33.64186,0.0 73.15759,33.64203,0.0 73.15795,33.64222,0.0 73.15804,33.64227,0.0 73.15937,33.64275,0.0 73.16179,33.64357,0.0 73.16197,33.64363,0.0 73.16252,33.64386,0.0 73.16364,33.64422,0.0 73.16366,33.64424,0.0 73.16371,33.64427,0.0 73.16373,33.64429,0.0 73.16375,33.64432,0.0 73.16377,33.64435,0.0 73.16378,33.64439,0.0 73.16379,33.64444,0.0 73.16223,33.64768,0.0 73.16116,33.64991,0.0 73.16102,33.65017,0.0 73.16083,33.65047,0.0 73.16068,33.65065,0.0 73.1605,33.65089,0.0 73.1604,33.65101,0.0 73.16025,33.65118,0.0 73.16001,33.65139,0.0 73.1597,33.65167,0.0 73.15949,33.65184,0.0 73.15914,33.65207,0.0 73.15826,33.65259,0.0 73.15819,33.65263,0.0 73.15749,33.653,0.0 73.15732,33.65309,0.0 73.15567,33.654,0.0 73.15527,33.65425,0.0 73.15504,33.65445,0.0 73.15476,33.65473,0.0 73.15449,33.65504,0.0 73.15428,33.6553,0.0 73.15411,33.65556,0.0 73.15395,33.65587,0.0 73.15381,33.6562,0.0 73.15372,33.65652,0.0 73.15365,33.6569,0.0 73.15348,33.65863,0.0 73.15347,33.65874,0.0 73.15342,33.65943,0.0 73.15324,33.66166,0.0 73.15317,33.66256,0.0 73.15315,33.66281,0.0 73.15309,33.66307,0.0 73.15299,33.66334,0.0 73.1529,33.66355,0.0 73.15281,33.66372,0.0 73.15266,33.66394,0.0 73.15218,33.6645,0.0 73.1518,33.66495,0.0 73.15115,33.66573,0.0 73.15071,33.66626,0.0 73.14868,33.66868,0.0 73.1466,33.67107,0.0 73.144,33.6742,0.0 73.14225,33.67631,0.0 73.14061,33.67825,0.0 73.13963,33.67941,0.0 73.13474,33.6852,0.0 73.13465,33.68534,0.0 73.13403,33.68604,0.0 73.13388,33.68619,0.0 73.13377,33.68627,0.0 73.13368,33.68634,0.0 73.13347,33.68649,0.0 73.13326,33.68662,0.0 73.13301,33.68676,0.0 73.13269,33.68693,0.0 73.13244,33.68703,0.0 73.13217,33.68712,0.0 73.13188,33.68719,0.0 73.13158,33.68725,0.0 73.1313,33.68728,0.0 73.13105,33.68731,0.0 73.12956,33.68752,0.0 73.12879,33.68763,0.0 73.12846,33.68766,0.0 73.1272,33.68771,0.0 73.1245,33.68774,0.0 73.12369,33.68777,0.0 73.12126,33.68801,0.0 73.12092,33.68806,0.0 73.11841,33.68826,0.0 73.11812,33.6883,0.0 73.11784,33.68835,0.0 73.11749,33.68845,0.0 73.11694,33.68861,0.0 73.11663,33.68871,0.0 73.1154,33.68903,0.0 73.11517,33.68908,0.0 73.11493,33.68912,0.0 73.11469,33.68914,0.0 73.11437,33.68914,0.0 73.11402,33.68912,0.0 73.11268,33.68899,0.0 73.11248,33.68896,0.0 73.11205,33.68892,0.0 73.11105,33.68881,0.0 73.11071,33.68875,0.0 73.11067,33.68874,0.0 73.11064,33.68872,0.0 73.11058,33.68871,0.0 73.1104,33.68862,0.0 73.11019,33.68851,0.0 73.10998,33.68837,0.0 73.10981,33.68823,0.0 73.10817,33.68662,0.0 73.10654,33.685,0.0 73.10483,33.68329,0.0 73.10459,33.68307,0.0 73.10437,33.68287,0.0 73.10405,33.68262,0.0 73.10385,33.68247,0.0 73.1037,33.68237,0.0 73.10359,33.6823,0.0 73.10355,33.68227,0.0 73.10229,33.68155,0.0 73.1021,33.68144,0.0 73.10195,33.68136,0.0 73.10051,33.6806,0.0 73.09978,33.68022,0.0 73.09885,33.67972,0.0 73.0978,33.67916,0.0 73.09723,33.67883,0.0 73.09672,33.67848,0.0 73.09636,33.67817,0.0 73.09617,33.67794,0.0 73.096,33.67762,0.0 73.09563,33.67682,0.0 73.09486,33.67517,0.0 73.09486,33.67516,0.0 73.09476,33.67493,0.0 73.09435,33.67402,0.0 73.09431,33.67395,0.0 73.09385,33.67308,0.0 73.09302,33.67152,0.0 73.09269,33.67096,0.0 73.09248,33.67067,0.0 73.09226,33.6704,0.0 73.0917,33.66975,0.0 73.09065,33.66865,0.0 73.08934,33.66704,0.0 73.08918,33.66684,0.0 73.08835,33.66593,0.0 73.08746,33.66479,0.0 73.08738,33.66471,0.0 73.08716,33.66447,0.0 73.08695,33.66422,0.0 73.08666,33.66389,0.0 73.08652,33.66365,0.0 73.08649,33.66357,0.0 73.08649,33.66351,0.0 73.08649,33.66345,0.0 73.0865,33.66339,0.0 73.08653,33.66334,0.0 73.08656,33.66328,0.0 73.08657,33.66326,0.0 73.08662,33.66321,0.0 73.08671,33.66315,0.0 73.08681,33.66311,0.0 73.08701,33.66308,0.0 73.08714,33.6631,0.0 73.08726,33.66315,0.0 73.08734,33.66321,0.0 73.08743,33.66329,0.0 73.08747,33.66338,0.0 73.08749,33.66348,0.0 73.08747,33.66361,0.0 73.08738,33.66396,0.0 73.08698,33.66452,0.0 73.08672,33.66485,0.0 73.08508,33.66713,0.0 73.08135,33.67206,0.0 73.07811,33.67638,0.0 73.07717,33.67765,0.0 73.07678,33.67818,0.0 73.07652,33.67856,0.0 73.07644,33.67867,0.0 73.07636,33.67878,0.0 73.07591,33.67937,0.0 73.07512,33.68042,0.0 73.07478,33.68087,0.0 73.07461,33.68109,0.0 73.07411,33.68175,0.0 73.07275,33.68356,0.0 73.07269,33.68364,0.0 73.07226,33.6842,0.0 73.06939,33.68801,0.0 73.06891,33.68865,0.0 73.06843,33.68932,0.0 73.0677,33.69034,0.0 73.06741,33.69069,0.0 73.06701,33.69119,0.0 73.06557,33.69312,0.0 73.06496,33.6939,0.0 73.06475,33.69419,0.0 73.06468,33.69429,0.0 73.0645,33.69454,0.0 73.06436,33.6946,0.0 73.06418,33.69468,0.0 73.06398,33.69477,0.0 73.06385,33.69482,0.0 73.0637,33.69486,0.0 73.06353,33.69489,0.0 73.06336,33.69489,0.0 73.06326,33.69488,0.0 73.06315,33.69486,0.0 73.06306,33.69483,0.0 73.06297,33.69479,0.0 73.06287,33.69473,0.0 73.0628,33.69468,0.0 73.06274,33.69463,0.0 73.06267,33.69456,0.0 73.06262,33.6945,0.0 73.06258,33.69442,0.0 73.06255,33.69434,0.0 73.06252,33.69425,0.0 73.0625,33.69416,0.0 73.06249,33.69407,0.0 73.0625,33.69395,0.0 73.06254,33.69384,0.0 73.06258,33.69377,0.0 73.06262,33.6937,0.0 73.06268,33.69361,0.0 73.06274,33.69356,0.0 73.06283,33.69349,0.0 73.06294,33.69343,0.0 73.06317,33.69333,0.0 73.06333,33.6933,0.0 73.06347,33.6933,0.0 73.06362,33.69329,0.0 73.06379,33.69331,0.0 73.0642,33.69338,0.0 73.06486,33.69376,0.0 73.0651,33.69389,0.0 73.06534,33.69401,0.0 73.06639,33.69449,0.0 73.06685,33.69473,0.0 73.06873,33.69573,0.0 73.06895,33.69585,0.0 73.06905,33.6959,0.0 73.0729,33.69802,0.0 73.07371,33.69835,0.0 73.07553,33.69925,0.0 73.076,33.69953,0.0 73.08224,33.70279,0.0 73.08236,33.70294,0.0 73.0824,33.70305,0.0 73.08239,33.70326,0.0 73.08231,33.70337,0.0 73.0821,33.70365,0.0 73.08203,33.70376,0.0 73.08215,33.70382,0.0 73.08225,33.70388,0.0 73.08257,33.70401,0.0 73.08284,33.70417,0.0 73.08568,33.70574,0.0 73.08671,33.70629,0.0 73.08772,33.70676,0.0 73.08814,33.70696,0.0 73.08878,33.70728,0.0 73.08936,33.70759,0.0 73.08992,33.70788,0.0 73.09009,33.70796,0.0 73.0915,33.7087,0.0 73.09234,33.70918,0.0 73.09294,33.70949,0.0 73.09309,33.70956,0.0 73.09421,33.71015,0.0 73.09522,33.71067,0.0 73.096,33.71109,0.0 73.09673,33.71146,0.0 73.09897,33.71262,0.0 73.10045,33.71335,0.0 73.10041,33.71339,0.0 73.0997,33.71432,0.0 73.09959,33.71448,0.0 73.09913,33.71511,0.0 73.09819,33.71637,0.0 73.09703,33.71791,0.0 73.09587,33.71946,0.0 73.09558,33.71985,0.0 73.09505,33.72054,0.0 73.09374,33.72222,0.0 73.09218,33.7243,0.0 73.09126,33.72557,0.0 73.0904,33.7267,0.0 73.08979,33.72751,0.0 73.08969,33.72764,0.0 73.0891,33.7284,0.0 73.08899,33.72854,0.0 73.08728,33.73084,0.0 73.08611,33.73241,0.0 73.08601,33.7326,0.0 73.08588,33.73272,0.0 73.08606,33.73284,0.0 73.08829,33.73399,0.0 73.08918,33.73443,0.0 73.08965,33.73468,0.0 73.08986,33.73479,0.0 73.09025,33.73496,0.0 73.09066,33.73511,0.0 73.09103,33.73523,0.0 73.09131,33.73531,0.0 73.09147,33.73535,0.0 73.09132,33.73606,0.0 73.09154,33.73607,0.0 73.09157,33.73593,0.0 73.09167,33.73545,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Katchery Stop, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0671352,33.5828436,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Airport Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1011444,33.6063609,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Islamabad Hwy, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1135414,33.6290477,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>C-3 Park Rd, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1440048,33.6741972,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Benazir Bhutto Rd, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0865626,33.663278,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kashmir Hwy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0668506,33.6947345,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>699 Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0887766,33.7072839,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ataturk Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1004133,33.7133919,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ataturk Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0937366,33.7222165,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0916689,33.7354546,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 24</name>
<Placemark>
<name>Directions from Central Jail Rawalpindi, Adyala Road, Rawalpindi to Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.04305,33.48622,0.0 73.04342,33.48674,0.0 73.04374,33.48714,0.0 73.04395,33.48737,0.0 73.04475,33.48812,0.0 73.04495,33.48834,0.0 73.04511,33.48855,0.0 73.04524,33.48879,0.0 73.0453,33.48895,0.0 73.04532,33.48909,0.0 73.04533,33.48957,0.0 73.04502,33.49413,0.0 73.0451,33.49709,0.0 73.04509,33.49761,0.0 73.04505,33.49783,0.0 73.045,33.49795,0.0 73.04479,33.49828,0.0 73.04438,33.49879,0.0 73.04414,33.49913,0.0 73.04387,33.4997,0.0 73.04369,33.5002,0.0 73.04342,33.50117,0.0 73.04318,33.50189,0.0 73.04307,33.50237,0.0 73.04306,33.50267,0.0 73.04308,33.50284,0.0 73.04313,33.50305,0.0 73.04321,33.50328,0.0 73.04336,33.5036,0.0 73.04356,33.50388,0.0 73.04374,33.50406,0.0 73.04426,33.50443,0.0 73.04466,33.50466,0.0 73.04481,33.50477,0.0 73.04503,33.50497,0.0 73.04614,33.50621,0.0 73.04654,33.50673,0.0 73.04673,33.50717,0.0 73.04683,33.50755,0.0 73.04685,33.50779,0.0 73.04683,33.50803,0.0 73.04669,33.50846,0.0 73.04669,33.50847,0.0 73.04658,33.50871,0.0 73.04651,33.50894,0.0 73.04649,33.50912,0.0 73.0465,33.5094,0.0 73.04656,33.50959,0.0 73.04668,33.50981,0.0 73.04678,33.50992,0.0 73.04792,33.51086,0.0 73.04809,33.51102,0.0 73.04823,33.5112,0.0 73.04856,33.51183,0.0 73.04862,33.51216,0.0 73.04864,33.51317,0.0 73.04866,33.51333,0.0 73.04864,33.51381,0.0 73.04865,33.51392,0.0 73.04863,33.51415,0.0 73.04852,33.51457,0.0 73.04835,33.51489,0.0 73.04726,33.51629,0.0 73.04715,33.5165,0.0 73.04704,33.51692,0.0 73.04702,33.51744,0.0 73.04733,33.52105,0.0 73.0473,33.52141,0.0 73.04721,33.52181,0.0 73.04713,33.52265,0.0 73.04716,33.52296,0.0 73.04723,33.52328,0.0 73.04759,33.52417,0.0 73.05055,33.53073,0.0 73.05169,33.53276,0.0 73.0518,33.53293,0.0 73.0521,33.53348,0.0 73.05238,33.53387,0.0 73.05284,33.53441,0.0 73.05286,33.53449,0.0 73.05311,33.53479,0.0 73.05329,33.53494,0.0 73.0537,33.53521,0.0 73.05437,33.53572,0.0 73.05438,33.53572,0.0 73.05462,33.53602,0.0 73.05473,33.53627,0.0 73.05474,33.53656,0.0 73.05473,33.53675,0.0 73.05474,33.53687,0.0 73.05471,33.53736,0.0 73.05471,33.53792,0.0 73.0546,33.53875,0.0 73.05449,33.53924,0.0 73.05423,33.54016,0.0 73.05394,33.54097,0.0 73.05382,33.54142,0.0 73.05374,33.54184,0.0 73.0536,33.54497,0.0 73.05364,33.54531,0.0 73.05377,33.54573,0.0 73.054,33.54617,0.0 73.05416,33.54643,0.0 73.05426,33.54646,0.0 73.05448,33.54687,0.0 73.0547,33.54722,0.0 73.05515,33.54808,0.0 73.05527,33.54837,0.0 73.05537,33.54855,0.0 73.0556,33.54919,0.0 73.05562,33.54922,0.0 73.0558,33.54962,0.0 73.05633,33.55132,0.0 73.05641,33.55153,0.0 73.05642,33.55154,0.0 73.05656,33.55203,0.0 73.05656,33.55204,0.0 73.05696,33.55255,0.0 73.05748,33.55313,0.0 73.05752,33.55319,0.0 73.05819,33.55392,0.0 73.05865,33.55449,0.0 73.06062,33.55659,0.0 73.06075,33.55671,0.0 73.06122,33.55723,0.0 73.06133,33.55742,0.0 73.06162,33.55782,0.0 73.06322,33.5604,0.0 73.06336,33.56059,0.0 73.06417,33.56185,0.0 73.06427,33.56209,0.0 73.06611,33.56504,0.0 73.06681,33.56605,0.0 73.06688,33.56619,0.0 73.06692,33.56632,0.0 73.06695,33.56648,0.0 73.06697,33.56677,0.0 73.06694,33.56705,0.0 73.0669,33.5672,0.0 73.06653,33.56803,0.0 73.06646,33.56822,0.0 73.06637,33.56856,0.0 73.06631,33.56888,0.0 73.06624,33.56912,0.0 73.06619,33.56923,0.0 73.06598,33.56954,0.0 73.06572,33.56983,0.0 73.06466,33.57061,0.0 73.06447,33.57086,0.0 73.06441,33.57104,0.0 73.0644,33.57105,0.0 73.06439,33.57116,0.0 73.06442,33.57136,0.0 73.06446,33.57148,0.0 73.0646,33.57176,0.0 73.06474,33.57194,0.0 73.06487,33.57208,0.0 73.0652,33.57236,0.0 73.06528,33.57245,0.0 73.06543,33.57274,0.0 73.06556,33.57318,0.0 73.06561,33.57347,0.0 73.06561,33.57357,0.0 73.06552,33.57365,0.0 73.06539,33.57373,0.0 73.06529,33.57377,0.0 73.06402,33.57389,0.0 73.0632,33.5739,0.0 73.06296,33.57393,0.0 73.0628,33.57398,0.0 73.06186,33.57437,0.0 73.06172,33.5744,0.0 73.06162,33.57441,0.0 73.06153,33.5744,0.0 73.05929,33.57388,0.0 73.05895,33.57385,0.0 73.05787,33.5739,0.0 73.0576,33.57393,0.0 73.05732,33.57401,0.0 73.05705,33.57421,0.0 73.05602,33.57517,0.0 73.05579,33.57533,0.0 73.05575,33.57534,0.0 73.05572,33.57534,0.0 73.05569,33.57535,0.0 73.05547,33.57535,0.0 73.05473,33.57528,0.0 73.05436,33.57527,0.0 73.05421,33.57529,0.0 73.054,33.57535,0.0 73.0538,33.57543,0.0 73.05371,33.57548,0.0 73.05348,33.57566,0.0 73.05333,33.5758,0.0 73.05193,33.57749,0.0 73.0517,33.57783,0.0 73.05151,33.5782,0.0 73.0512,33.57836,0.0 73.05088,33.5784,0.0 73.05032,33.57832,0.0 73.05027,33.57833,0.0 73.05014,33.57823,0.0 73.05008,33.5782,0.0 73.04991,33.57814,0.0 73.04793,33.57773,0.0 73.04771,33.57766,0.0 73.04646,33.57752,0.0 73.0464,33.57783,0.0 73.04634,33.57791,0.0 73.04217,33.57715,0.0 73.04191,33.57712,0.0 73.04161,33.57714,0.0 73.04113,33.57724,0.0 73.0407,33.57727,0.0 73.04071,33.57733,0.0 73.04078,33.57752,0.0 73.04078,33.57753,0.0 73.04087,33.57765,0.0 73.04137,33.57809,0.0 73.04166,33.57831,0.0 73.04189,33.57852,0.0 73.0422,33.57876,0.0 73.04228,33.57886,0.0 73.04235,33.579,0.0 73.04256,33.57925,0.0 73.04259,33.57927,0.0 73.04303,33.57975,0.0 73.04313,33.57988,0.0 73.04334,33.58022,0.0 73.04399,33.58142,0.0 73.04449,33.58211,0.0 73.04457,33.58226,0.0 73.04461,33.58242,0.0 73.04455,33.58253,0.0 73.04448,33.58286,0.0 73.04265,33.58287,0.0 73.04247,33.58292,0.0 73.04164,33.58341,0.0 73.04136,33.58361,0.0 73.04136,33.58362,0.0 73.0413,33.58375,0.0 73.0413,33.5839,0.0 73.04133,33.58406,0.0 73.04144,33.58434,0.0 73.04151,33.58461,0.0 73.04157,33.585,0.0 73.04173,33.58574,0.0 73.04182,33.5859,0.0 73.04195,33.58605,0.0 73.04204,33.5862,0.0 73.04215,33.5865,0.0 73.04217,33.5866,0.0 73.04214,33.58711,0.0 73.04215,33.58727,0.0 73.04217,33.58731,0.0 73.04234,33.5879,0.0 73.0428,33.58987,0.0 73.04287,33.59,0.0 73.0436,33.5911,0.0 73.04376,33.5916,0.0 73.04378,33.59171,0.0 73.0439,33.59189,0.0 73.04413,33.59212,0.0 73.04415,33.59213,0.0 73.0463,33.59397,0.0 73.04786,33.5954,0.0 73.0479,33.59546,0.0 73.0479,33.59553,0.0 73.04784,33.59567,0.0 73.04784,33.59571,0.0 73.04624,33.59692,0.0 73.04532,33.59771,0.0 73.0449,33.598,0.0 73.04499,33.5981,0.0 73.04516,33.59825,0.0 73.04532,33.59836,0.0 73.0462,33.59915,0.0 73.0461,33.59934,0.0 73.04605,33.59939,0.0 73.04565,33.59989,0.0 73.04564,33.59988,0.0 73.04378,33.59927,0.0 73.0437,33.59938,0.0 73.04138,33.60401,0.0 73.0413,33.60414,0.0 73.04123,33.60423,0.0 73.04115,33.60437,0.0 73.04108,33.60446,0.0 73.041,33.60453,0.0 73.04066,33.60469,0.0 73.04057,33.60475,0.0 73.04045,33.60479,0.0 73.04025,33.60493,0.0 73.04013,33.60508,0.0 73.04001,33.60529,0.0 73.03936,33.60677,0.0 73.0383,33.60884,0.0 73.03826,33.60895,0.0 73.03605,33.61187,0.0 73.03338,33.61498,0.0 73.0328,33.61553,0.0 73.03256,33.61571,0.0 73.03246,33.61577,0.0 73.03229,33.61582,0.0 73.03219,33.61583,0.0 73.03204,33.61582,0.0 73.0312,33.61567,0.0 73.03108,33.61567,0.0 73.03103,33.6157,0.0 73.0308,33.616,0.0 73.03073,33.61612,0.0 73.03066,33.61629,0.0 73.03064,33.61643,0.0 73.03061,33.61709,0.0 73.03062,33.61715,0.0 73.03062,33.61724,0.0 73.03059,33.6174,0.0 73.03056,33.61747,0.0 73.0305,33.61753,0.0 73.02953,33.61807,0.0 73.02957,33.61822,0.0 73.02961,33.6183,0.0 73.02917,33.61851,0.0 73.0284,33.61895,0.0 73.02803,33.61919,0.0 73.0276,33.6194,0.0 73.02753,33.61942,0.0 73.02737,33.61949,0.0 73.02645,33.62,0.0 73.02687,33.6205,0.0 73.02766,33.62067,0.0 73.02868,33.62116,0.0 73.02882,33.62126,0.0 73.02873,33.62174,0.0 73.02877,33.62202,0.0 73.02894,33.62268,0.0 73.02914,33.62382,0.0 73.02597,33.62808,0.0 73.02622,33.62804,0.0 73.02631,33.628,0.0 73.02668,33.62848,0.0 73.02691,33.62889,0.0 73.02711,33.62919,0.0 73.02727,33.62947,0.0 73.02743,33.62961,0.0 73.02801,33.6303,0.0 73.02756,33.63054,0.0 73.02757,33.63056,0.0 73.0282,33.63132,0.0 73.0283,33.6315,0.0 73.02795,33.6315,0.0 73.02756,33.63241,0.0 73.02751,33.63263,0.0 73.02751,33.63265,0.0 73.0269,33.63229,0.0 73.0267,33.6322,0.0 73.02662,33.63235,0.0 73.02637,33.63268,0.0 73.02656,33.63276,0.0 73.03507,33.63728,0.0 73.03355,33.63937,0.0 73.03277,33.64034,0.0 73.03262,33.64059,0.0 73.03155,33.6421,0.0 73.03075,33.64309,0.0 73.03079,33.64312,0.0 73.04336,33.64975,0.0 73.04831,33.65223,0.0 73.04792,33.65279,0.0 73.04793,33.6528,0.0 73.06402,33.66126,0.0 73.06317,33.66247,0.0 73.06448,33.66315,0.0 73.06387,33.66401,0.0 73.06386,33.66422,0.0 73.06383,33.66428,0.0 73.06328,33.66497,0.0 73.06286,33.66556,0.0 73.06204,33.66657,0.0 73.06172,33.66711,0.0 73.06062,33.66839,0.0 73.06013,33.66901,0.0 73.06002,33.66912,0.0 73.05918,33.67028,0.0 73.05975,33.67059,0.0 73.06007,33.67069,0.0 73.0602,33.6707,0.0 73.06079,33.67063,0.0 73.06092,33.67065,0.0 73.06104,33.67069,0.0 73.0633,33.67179,0.0 73.06353,33.67193,0.0 73.06371,33.67208,0.0 73.06436,33.67291,0.0 73.06449,33.67305,0.0 73.06471,33.6732,0.0 73.065,33.67335,0.0 73.06551,33.67367,0.0 73.06641,33.67418,0.0 73.0657,33.67513,0.0 73.06562,33.67526,0.0 73.0654,33.67578,0.0 73.06532,33.67604,0.0 73.06526,33.67646,0.0 73.06512,33.67823,0.0 73.06508,33.67943,0.0 73.06475,33.68314,0.0 73.06458,33.68383,0.0 73.06365,33.68689,0.0 73.06351,33.68744,0.0 73.06338,33.68771,0.0 73.06292,33.68844,0.0 73.062,33.68969,0.0 73.06196,33.68981,0.0 73.0619,33.68982,0.0 73.06185,33.68984,0.0 73.0618,33.68985,0.0 73.06171,33.68989,0.0 73.06159,33.68999,0.0 73.06155,33.69001,0.0 73.06146,33.69015,0.0 73.06142,33.69029,0.0 73.06143,33.69042,0.0 73.06145,33.6905,0.0 73.06148,33.69057,0.0 73.06153,33.69064,0.0 73.06159,33.6907,0.0 73.06173,33.69079,0.0 73.06182,33.69082,0.0 73.06185,33.69084,0.0 73.06188,33.69085,0.0 73.06191,33.69085,0.0 73.06194,33.69086,0.0 73.06198,33.69086,0.0 73.06201,33.69087,0.0 73.0621,33.69087,0.0 73.06216,33.69092,0.0 73.06227,33.69104,0.0 73.06235,33.69115,0.0 73.06213,33.69188,0.0 73.06187,33.69257,0.0 73.06166,33.69271,0.0 73.06156,33.69273,0.0 73.06145,33.69273,0.0 73.06135,33.69271,0.0 73.06125,33.69267,0.0 73.06085,33.69242,0.0 73.06064,33.69232,0.0 73.06043,33.69227,0.0 73.05586,33.6899,0.0 73.05579,33.69,0.0 73.0609,33.69268,0.0 73.06112,33.69287,0.0 73.06135,33.6932,0.0 73.06144,33.69337,0.0 73.06212,33.69547,0.0 73.06217,33.69571,0.0 73.06219,33.69592,0.0 73.06214,33.69637,0.0 73.06209,33.69653,0.0 73.06196,33.6968,0.0 73.06192,33.69691,0.0 73.06163,33.69723,0.0 73.05906,33.70078,0.0 73.059,33.70078,0.0 73.05897,33.70077,0.0 73.05891,33.70077,0.0 73.05887,33.70078,0.0 73.05884,33.70078,0.0 73.05881,33.70079,0.0 73.05876,33.70082,0.0 73.05873,33.70083,0.0 73.05864,33.70092,0.0 73.05863,33.70098,0.0 73.05863,33.70104,0.0 73.05868,33.70117,0.0 73.05876,33.70122,0.0 73.05886,33.70126,0.0 73.05891,33.70127,0.0 73.05903,33.70132,0.0 73.05915,33.7014,0.0 73.05921,33.70147,0.0 73.05928,33.70153,0.0 73.05826,33.70289,0.0 73.05849,33.703,0.0 73.05998,33.70094,0.0 73.06019,33.70093,0.0 73.06031,33.70094,0.0 73.06043,33.70099,0.0 73.06062,33.70113,0.0 73.06142,33.7001,0.0 73.0661,33.70252,0.0 73.06708,33.7031,0.0 73.06734,33.70329,0.0 73.06748,33.70344,0.0 73.0677,33.70362,0.0 73.06831,33.70406,0.0 73.0673,33.7054,0.0 73.06739,33.70548,0.0 73.06794,33.7058,0.0 73.06804,33.70566,0.0 73.06731,33.70664,0.0 73.06727,33.70668,0.0 73.06722,33.70675,0.0 73.06728,33.70679,0.0 73.06941,33.70791,0.0 73.0695,33.70792,0.0 73.0697,33.70785,0.0 73.07074,33.70655,0.0 73.07111,33.70673,0.0 73.07146,33.70696,0.0 73.07215,33.70777,0.0 73.07231,33.70789,0.0 73.07663,33.71013,0.0 73.07674,33.71036,0.0 73.07688,33.71055,0.0 73.07688,33.71056,0.0 73.07721,33.71074,0.0 73.0773,33.71083,0.0 73.07737,33.71096,0.0 73.07739,33.71102,0.0 73.07752,33.71123,0.0 73.07936,33.71211,0.0 73.0812,33.71306,0.0 73.08204,33.71357,0.0 73.084,33.71458,0.0 73.08467,33.71488,0.0 73.08302,33.71706,0.0 73.08265,33.71746,0.0 73.08263,33.71746,0.0 73.08263,33.71747,0.0 73.08259,33.71747,0.0 73.08258,33.71748,0.0 73.08257,33.71748,0.0 73.08256,33.71749,0.0 73.08255,33.71749,0.0 73.08255,33.7175,0.0 73.08254,33.7175,0.0 73.08254,33.71751,0.0 73.08253,33.71751,0.0 73.08253,33.71752,0.0 73.08252,33.71752,0.0 73.08252,33.71753,0.0 73.08251,33.71754,0.0 73.08251,33.71756,0.0 73.0825,33.71756,0.0 73.0825,33.7176,0.0 73.08251,33.71761,0.0 73.08251,33.71763,0.0 73.08253,33.71765,0.0 73.08253,33.71766,0.0 73.08254,33.71766,0.0 73.08254,33.71767,0.0 73.08255,33.71767,0.0 73.08256,33.71768,0.0 73.08257,33.71768,0.0 73.08257,33.71769,0.0 73.08259,33.71769,0.0 73.0826,33.7177,0.0 73.08269,33.7177,0.0 73.08269,33.71769,0.0 73.08272,33.71769,0.0 73.08272,33.71768,0.0 73.08273,33.71768,0.0 73.08274,33.71767,0.0 73.08527,33.71895,0.0 73.08058,33.72522,0.0 73.0799,33.72621,0.0 73.07922,33.72738,0.0 73.07915,33.72748,0.0 73.07904,33.72753,0.0 73.07757,33.72942,0.0 73.07825,33.72983,0.0 73.07935,33.73039,0.0 73.07961,33.7305,0.0 73.07965,33.73051,0.0 73.07976,33.73056,0.0 73.08001,33.73064,0.0 73.08256,33.73103,0.0 73.0828,33.73109,0.0 73.08304,33.73117,0.0 73.08453,33.7319,0.0 73.08537,33.73236,0.0 73.08606,33.73284,0.0 73.08986,33.73479,0.0 73.09025,33.73496,0.0 73.09103,33.73523,0.0 73.09147,33.73535,0.0 73.09132,33.73606,0.0 73.09154,33.73607,0.0 73.09166,33.7355,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Central Jail Rawalpindi, Adyala Road, Rawalpindi</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0430545,33.4862154,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>22 Chungi Road, Rawalpindi, Punjab</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0410295,33.5777864,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.026664,33.6322698,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>I-10, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0376263,33.6467312,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pothwar Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0552598,33.6566646,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pitras Bukhari Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0652969,33.6761716,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Aiwan-e-Sanat-o-Tijarat, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0603346,33.6923688,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sitara Market, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0680362,33.7056584,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0830231,33.7170624,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0916595,33.7354994,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 101</name>
<Placemark>
<name>Directions from Service Rd I 11 (South), Islamabad, Pakistan to Faisal Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.03202,33.63564,0.0 73.03373,33.63655,0.0 73.03383,33.63661,0.0 73.03492,33.6372,0.0 73.03507,33.63728,0.0 73.03519,33.63733,0.0 73.03624,33.63789,0.0 73.03834,33.639,0.0 73.03973,33.63972,0.0 73.04151,33.64063,0.0 73.04159,33.64067,0.0 73.04173,33.64075,0.0 73.04268,33.64126,0.0 73.04308,33.64146,0.0 73.04318,33.64151,0.0 73.04342,33.64121,0.0 73.0448,33.64197,0.0 73.04492,33.64203,0.0 73.04619,33.64263,0.0 73.04717,33.64315,0.0 73.04924,33.64425,0.0 73.04939,33.64432,0.0 73.05017,33.64473,0.0 73.05132,33.64533,0.0 73.05252,33.64595,0.0 73.05351,33.64647,0.0 73.05492,33.64725,0.0 73.05562,33.64762,0.0 73.05667,33.64818,0.0 73.0567,33.6482,0.0 73.05739,33.64857,0.0 73.05813,33.64894,0.0 73.05888,33.64937,0.0 73.05956,33.64973,0.0 73.0604,33.65016,0.0 73.06335,33.65171,0.0 73.0641,33.65209,0.0 73.06413,33.6521,0.0 73.06418,33.65213,0.0 73.06458,33.65234,0.0 73.06472,33.65245,0.0 73.0649,33.65251,0.0 73.06502,33.65258,0.0 73.06518,33.65267,0.0 73.06537,33.65278,0.0 73.06578,33.65292,0.0 73.06682,33.65347,0.0 73.06882,33.65456,0.0 73.06971,33.65498,0.0 73.06977,33.65502,0.0 73.06997,33.65512,0.0 73.07038,33.65532,0.0 73.07319,33.6568,0.0 73.07584,33.65823,0.0 73.07721,33.65893,0.0 73.07869,33.65973,0.0 73.07987,33.66036,0.0 73.08106,33.66109,0.0 73.08116,33.66115,0.0 73.08267,33.66208,0.0 73.08268,33.66208,0.0 73.08317,33.66243,0.0 73.08349,33.66262,0.0 73.08372,33.66273,0.0 73.08435,33.66305,0.0 73.08444,33.66312,0.0 73.08472,33.66334,0.0 73.08486,33.66346,0.0 73.08499,33.66358,0.0 73.08506,33.66367,0.0 73.08515,33.6638,0.0 73.08522,33.66392,0.0 73.08528,33.66407,0.0 73.08534,33.66428,0.0 73.08542,33.66462,0.0 73.08535,33.6664,0.0 73.08531,33.6666,0.0 73.08524,33.66677,0.0 73.08513,33.66696,0.0 73.08508,33.66713,0.0 73.08135,33.67206,0.0 73.07811,33.67638,0.0 73.07717,33.67765,0.0 73.07678,33.67818,0.0 73.07652,33.67856,0.0 73.07644,33.67867,0.0 73.07636,33.67878,0.0 73.07591,33.67937,0.0 73.07512,33.68042,0.0 73.07478,33.68087,0.0 73.07461,33.68109,0.0 73.07411,33.68175,0.0 73.07275,33.68356,0.0 73.07269,33.68364,0.0 73.07226,33.6842,0.0 73.06939,33.68801,0.0 73.06891,33.68865,0.0 73.06843,33.68932,0.0 73.0677,33.69034,0.0 73.06741,33.69069,0.0 73.06701,33.69119,0.0 73.06557,33.69312,0.0 73.06496,33.6939,0.0 73.06475,33.69419,0.0 73.06468,33.69429,0.0 73.0645,33.69454,0.0 73.06436,33.6946,0.0 73.06418,33.69468,0.0 73.06398,33.69477,0.0 73.06385,33.69482,0.0 73.0637,33.69486,0.0 73.06353,33.69489,0.0 73.06336,33.69489,0.0 73.06326,33.69488,0.0 73.06315,33.69486,0.0 73.06306,33.69483,0.0 73.06297,33.69479,0.0 73.06287,33.69473,0.0 73.0628,33.69468,0.0 73.06274,33.69463,0.0 73.06267,33.69456,0.0 73.06262,33.6945,0.0 73.06258,33.69442,0.0 73.06255,33.69434,0.0 73.06252,33.69425,0.0 73.0625,33.69416,0.0 73.06249,33.69407,0.0 73.0625,33.69395,0.0 73.06254,33.69384,0.0 73.06258,33.69377,0.0 73.06262,33.6937,0.0 73.06268,33.69361,0.0 73.06274,33.69356,0.0 73.06283,33.69349,0.0 73.06294,33.69343,0.0 73.06317,33.69333,0.0 73.06333,33.6933,0.0 73.06347,33.6933,0.0 73.06362,33.69329,0.0 73.06379,33.69331,0.0 73.0642,33.69338,0.0 73.06486,33.69376,0.0 73.0651,33.69389,0.0 73.06534,33.69401,0.0 73.06639,33.69449,0.0 73.0671,33.69487,0.0 73.06873,33.69573,0.0 73.06895,33.69585,0.0 73.06905,33.6959,0.0 73.0729,33.69802,0.0 73.07371,33.69835,0.0 73.07553,33.69925,0.0 73.076,33.69953,0.0 73.08224,33.70279,0.0 73.08236,33.70294,0.0 73.0824,33.70305,0.0 73.08239,33.70326,0.0 73.08231,33.70337,0.0 73.0821,33.70365,0.0 73.08203,33.70376,0.0 73.08215,33.70382,0.0 73.08225,33.70388,0.0 73.08257,33.70401,0.0 73.08284,33.70417,0.0 73.08568,33.70574,0.0 73.08671,33.70629,0.0 73.08772,33.70676,0.0 73.08814,33.70696,0.0 73.08878,33.70728,0.0 73.08936,33.70759,0.0 73.08968,33.70776,0.0 73.08992,33.70788,0.0 73.08975,33.70814,0.0 73.08968,33.70823,0.0 73.08948,33.70847,0.0 73.08895,33.70916,0.0 73.08821,33.71015,0.0 73.08767,33.71087,0.0 73.08702,33.71179,0.0 73.08668,33.71221,0.0 73.08638,33.71266,0.0 73.08622,33.71286,0.0 73.08617,33.71294,0.0 73.08566,33.71355,0.0 73.08534,33.71398,0.0 73.08506,33.71438,0.0 73.08473,33.7148,0.0 73.08467,33.71488,0.0 73.08444,33.7152,0.0 73.08406,33.7157,0.0 73.0837,33.71618,0.0 73.08336,33.71664,0.0 73.08313,33.71693,0.0 73.08302,33.71706,0.0 73.08265,33.71746,0.0 73.08263,33.71746,0.0 73.08263,33.71747,0.0 73.08262,33.71747,0.0 73.08261,33.71747,0.0 73.0826,33.71747,0.0 73.08259,33.71747,0.0 73.08258,33.71748,0.0 73.08257,33.71748,0.0 73.08256,33.71749,0.0 73.08255,33.71749,0.0 73.08255,33.7175,0.0 73.08254,33.7175,0.0 73.08254,33.71751,0.0 73.08253,33.71751,0.0 73.08253,33.71752,0.0 73.08252,33.71752,0.0 73.08252,33.71753,0.0 73.08251,33.71754,0.0 73.08251,33.71755,0.0 73.08251,33.71756,0.0 73.0825,33.71756,0.0 73.0825,33.71757,0.0 73.0825,33.71758,0.0 73.0825,33.71759,0.0 73.0825,33.7176,0.0 73.08251,33.71761,0.0 73.08251,33.71762,0.0 73.08251,33.71763,0.0 73.08252,33.71764,0.0 73.08253,33.71765,0.0 73.08253,33.71766,0.0 73.08254,33.71766,0.0 73.08254,33.71767,0.0 73.08255,33.71767,0.0 73.08256,33.71768,0.0 73.08257,33.71768,0.0 73.08257,33.71769,0.0 73.08258,33.71769,0.0 73.08259,33.71769,0.0 73.0826,33.7177,0.0 73.08261,33.7177,0.0 73.08262,33.7177,0.0 73.08263,33.7177,0.0 73.08264,33.7177,0.0 73.08265,33.7177,0.0 73.08266,33.7177,0.0 73.08267,33.7177,0.0 73.08268,33.7177,0.0 73.08269,33.7177,0.0 73.08269,33.71769,0.0 73.0827,33.71769,0.0 73.08271,33.71769,0.0 73.08272,33.71769,0.0 73.08272,33.71768,0.0 73.08273,33.71768,0.0 73.08274,33.71767,0.0 73.08409,33.71835,0.0 73.08527,33.71895,0.0 73.08526,33.71896,0.0 73.0845,33.71994,0.0 73.08389,33.72078,0.0 73.08375,33.72084,0.0 73.08321,33.72157,0.0 73.08294,33.72193,0.0 73.08281,33.72212,0.0 73.08267,33.72232,0.0 73.08262,33.72238,0.0 73.08282,33.72248,0.0 73.08286,33.72242,0.0 73.08313,33.72211,0.0 73.08399,33.72095,0.0 73.08399,33.7208,0.0 73.08459,33.72001,0.0 73.0845,33.71994,0.0 73.08389,33.72078,0.0 73.08337,33.72149,0.0 73.08286,33.72219,0.0 73.08189,33.7235,0.0 73.08118,33.72442,0.0 73.08058,33.72522,0.0 73.0799,33.72621,0.0 73.07922,33.72738,0.0 73.07915,33.72748,0.0 73.07904,33.72753,0.0 73.07901,33.72756,0.0 73.07856,33.72814,0.0 73.0783,33.7285,0.0 73.07779,33.72915,0.0 73.07765,33.72932,0.0 73.07744,33.7292,0.0 73.07557,33.72824,0.0 73.0738,33.72733,0.0 73.07287,33.72862,0.0 73.0708,33.72754,0.0 73.06968,33.72695,0.0 73.06782,33.72598,0.0 73.06684,33.72548,0.0 73.06673,33.72542,0.0 73.06666,33.72553,0.0 73.06612,33.72625,0.0 73.06611,33.72626,0.0 73.06602,33.72633,0.0 73.06596,33.72638,0.0 73.06588,33.72641,0.0 73.0658,33.72643,0.0 73.06571,33.72643,0.0 73.06552,33.72636,0.0 73.06536,33.72628,0.0 73.06525,33.72622,0.0 73.06501,33.72609,0.0 73.06488,33.72601,0.0 73.06476,33.72593,0.0 73.06466,33.72588,0.0 73.06134,33.72415,0.0 73.06122,33.72409,0.0 73.06031,33.72356,0.0 73.0594,33.72306,0.0 73.05834,33.72253,0.0 73.05813,33.72242,0.0 73.05774,33.72221,0.0 73.05763,33.72216,0.0 73.05715,33.72193,0.0 73.05703,33.72187,0.0 73.05693,33.72182,0.0 73.05648,33.72158,0.0 73.05617,33.72141,0.0 73.0549,33.72075,0.0 73.05428,33.72044,0.0 73.05416,33.72037,0.0 73.05341,33.71998,0.0 73.05227,33.7194,0.0 73.05214,33.71933,0.0 73.05207,33.71943,0.0 73.05202,33.71952,0.0 73.05201,33.71958,0.0 73.05163,33.71999,0.0 73.05156,33.72009,0.0 73.0515,33.72016,0.0 73.05108,33.72076,0.0 73.05066,33.72128,0.0 73.05027,33.72182,0.0 73.04983,33.72249,0.0 73.04915,33.72336,0.0 73.04836,33.72441,0.0 73.04652,33.72346,0.0 73.04462,33.72245,0.0 73.04424,33.72226,0.0 73.04406,33.72218,0.0 73.04391,33.72211,0.0 73.04383,33.72221,0.0 73.04371,33.72235,0.0 73.04012,33.72703,0.0 73.03975,33.7275,0.0 73.03961,33.72772,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Service Rd I 11 (South), Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0320163,33.6356416,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>I.J.P. Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0650223,33.6525777,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>I.J.P. Road, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0843496,33.6630485,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kashmir Hwy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0671041,33.6948686,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>699 Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.089679,33.7077582,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.083133,33.7169261,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polyclinic Hospital, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0832078,33.7215737,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Agha Khan Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0774406,33.7291956,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>College Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0569319,33.721817,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Faisal Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0396065,33.7277193,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 104</name>
<Placemark>
<name>Directions from Grand Trunk Rd, Islamabad, Pakistan to Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>72.91091,33.64986,0.0 72.91073,33.65002,0.0 72.91055,33.65016,0.0 72.91043,33.65028,0.0 72.91056,33.65039,0.0 72.91071,33.65022,0.0 72.91173,33.64935,0.0 72.91195,33.64922,0.0 72.91206,33.64913,0.0 72.9123,33.64897,0.0 72.9124,33.6489,0.0 72.91254,33.64882,0.0 72.91291,33.64864,0.0 72.91537,33.6475,0.0 72.91587,33.64726,0.0 72.91618,33.64711,0.0 72.91631,33.64703,0.0 72.91679,33.64676,0.0 72.91742,33.64637,0.0 72.91754,33.64629,0.0 72.91778,33.64613,0.0 72.91902,33.64528,0.0 72.92039,33.64434,0.0 72.92055,33.64424,0.0 72.92214,33.64306,0.0 72.92254,33.64275,0.0 72.92294,33.64246,0.0 72.92336,33.64214,0.0 72.92401,33.64162,0.0 72.9244,33.64131,0.0 72.9249,33.6409,0.0 72.92491,33.6409,0.0 72.92562,33.64029,0.0 72.92609,33.6399,0.0 72.92754,33.63861,0.0 72.92815,33.63803,0.0 72.92981,33.63632,0.0 72.93046,33.63572,0.0 72.93076,33.63548,0.0 72.93109,33.63528,0.0 72.93245,33.63459,0.0 72.93407,33.63381,0.0 72.93425,33.63372,0.0 72.9355,33.63311,0.0 72.93571,33.63301,0.0 72.93726,33.63233,0.0 72.93761,33.63223,0.0 72.93793,33.6322,0.0 72.93818,33.63218,0.0 72.93841,33.63218,0.0 72.93867,33.6322,0.0 72.93895,33.63225,0.0 72.94046,33.6325,0.0 72.9406,33.63254,0.0 72.94117,33.63263,0.0 72.94132,33.63265,0.0 72.94143,33.63267,0.0 72.94175,33.63268,0.0 72.94195,33.63268,0.0 72.94227,33.63265,0.0 72.94228,33.63265,0.0 72.94236,33.63265,0.0 72.94247,33.63265,0.0 72.94252,33.63264,0.0 72.94286,33.6326,0.0 72.9432,33.63255,0.0 72.94405,33.63227,0.0 72.94456,33.6321,0.0 72.94506,33.63193,0.0 72.94544,33.63185,0.0 72.94572,33.63182,0.0 72.9459,33.6318,0.0 72.94615,33.63175,0.0 72.94632,33.63176,0.0 72.94648,33.63178,0.0 72.94661,33.63179,0.0 72.94678,33.63183,0.0 72.94705,33.63191,0.0 72.94721,33.63197,0.0 72.9473,33.63201,0.0 72.94742,33.63206,0.0 72.9478,33.63231,0.0 72.94838,33.63278,0.0 72.94917,33.63345,0.0 72.95004,33.63416,0.0 72.95087,33.63486,0.0 72.95106,33.635,0.0 72.95128,33.63515,0.0 72.95146,33.63526,0.0 72.95169,33.63539,0.0 72.95198,33.63555,0.0 72.95233,33.63573,0.0 72.95269,33.63592,0.0 72.95304,33.6361,0.0 72.95344,33.6363,0.0 72.95475,33.637,0.0 72.95556,33.63743,0.0 72.95633,33.63782,0.0 72.95714,33.63824,0.0 72.95791,33.63866,0.0 72.95856,33.639,0.0 72.95993,33.63972,0.0 72.96036,33.63994,0.0 72.96321,33.64144,0.0 72.96362,33.64166,0.0 72.96403,33.64192,0.0 72.96421,33.64206,0.0 72.96428,33.64214,0.0 72.96429,33.64218,0.0 72.9643,33.64221,0.0 72.96432,33.64224,0.0 72.96434,33.64227,0.0 72.96436,33.6423,0.0 72.96438,33.64233,0.0 72.96441,33.64235,0.0 72.96443,33.64238,0.0 72.9645,33.6426,0.0 72.96455,33.64281,0.0 72.96456,33.64293,0.0 72.96452,33.64311,0.0 72.96444,33.64333,0.0 72.96438,33.64343,0.0 72.96426,33.64362,0.0 72.96412,33.64379,0.0 72.9641,33.64381,0.0 72.96377,33.64424,0.0 72.9636,33.64448,0.0 72.96287,33.64549,0.0 72.96259,33.64583,0.0 72.96204,33.64658,0.0 72.96188,33.64681,0.0 72.96159,33.6472,0.0 72.96103,33.64794,0.0 72.96066,33.64844,0.0 72.96064,33.64847,0.0 72.96051,33.6486,0.0 72.96072,33.64872,0.0 72.96331,33.65005,0.0 72.96354,33.65017,0.0 72.96356,33.65018,0.0 72.96395,33.65039,0.0 72.9647,33.65077,0.0 72.96658,33.65175,0.0 72.9667,33.65182,0.0 72.96678,33.65171,0.0 72.9673,33.65103,0.0 72.96794,33.65017,0.0 72.96854,33.6494,0.0 72.96888,33.64894,0.0 72.96928,33.64843,0.0 72.96956,33.64806,0.0 72.96962,33.64798,0.0 72.96998,33.64751,0.0 72.97004,33.64743,0.0 72.9703,33.64708,0.0 72.97067,33.64657,0.0 72.97129,33.64574,0.0 72.97286,33.64655,0.0 72.97444,33.64738,0.0 72.97529,33.64785,0.0 72.97647,33.64844,0.0 72.97711,33.64879,0.0 72.97785,33.64918,0.0 72.978,33.64925,0.0 72.97834,33.6494,0.0 72.97869,33.64953,0.0 72.97928,33.64972,0.0 72.97966,33.64982,0.0 72.98117,33.65023,0.0 72.98119,33.65023,0.0 72.98198,33.65055,0.0 72.9821,33.65058,0.0 72.98221,33.65059,0.0 72.98233,33.6506,0.0 72.98241,33.65059,0.0 72.98251,33.65057,0.0 72.98867,33.65381,0.0 72.98896,33.65397,0.0 72.98964,33.65433,0.0 72.99202,33.65558,0.0 72.99328,33.65623,0.0 72.99444,33.65684,0.0 72.99451,33.65692,0.0 72.99456,33.65698,0.0 72.99461,33.65706,0.0 72.99464,33.65712,0.0 72.99467,33.65718,0.0 72.99469,33.65727,0.0 72.99469,33.65736,0.0 72.99469,33.65745,0.0 72.99469,33.65754,0.0 72.99471,33.65764,0.0 72.99474,33.65774,0.0 72.99479,33.65786,0.0 72.99485,33.65797,0.0 72.99493,33.65807,0.0 72.99499,33.65816,0.0 72.99506,33.65822,0.0 72.99901,33.66029,0.0 72.99997,33.66078,0.0 73.00258,33.66215,0.0 73.00195,33.66303,0.0 73.00139,33.66376,0.0 73.00012,33.66539,0.0 72.99937,33.66637,0.0 72.99874,33.66715,0.0 72.99756,33.66657,0.0 72.99737,33.66646,0.0 72.99714,33.66636,0.0 72.99688,33.66629,0.0 72.99662,33.66627,0.0 72.99638,33.66628,0.0 72.99618,33.66633,0.0 72.996,33.66643,0.0 72.99581,33.66654,0.0 72.99564,33.66669,0.0 72.99554,33.66677,0.0 72.9953,33.66704,0.0 72.99508,33.66734,0.0 72.99505,33.66739,0.0 72.99501,33.66744,0.0 72.99469,33.66788,0.0 72.99459,33.66804,0.0 72.99474,33.66813,0.0 72.99582,33.66872,0.0 72.99646,33.66907,0.0 72.99698,33.66932,0.0 72.99712,33.66939,0.0 72.99727,33.66945,0.0 72.99893,33.67033,0.0 72.99946,33.67061,0.0 72.99961,33.67068,0.0 73.00071,33.67121,0.0 73.00085,33.67128,0.0 73.0013,33.67152,0.0 73.00148,33.67163,0.0 73.00167,33.67172,0.0 73.00187,33.6718,0.0 73.00219,33.67188,0.0 73.00253,33.67191,0.0 73.0034,33.67196,0.0 73.00417,33.67194,0.0 73.00425,33.67194,0.0 73.00463,33.67196,0.0 73.00495,33.672,0.0 73.00516,33.67201,0.0 73.00534,33.67206,0.0 73.00567,33.67219,0.0 73.00607,33.67237,0.0 73.00625,33.67246,0.0 73.00629,33.67248,0.0 73.00658,33.67258,0.0 73.00658,33.67259,0.0 73.00658,33.6726,0.0 73.00659,33.67261,0.0 73.00659,33.67262,0.0 73.0066,33.67263,0.0 73.0066,33.67264,0.0 73.00661,33.67265,0.0 73.00662,33.67266,0.0 73.00663,33.67267,0.0 73.00664,33.67267,0.0 73.00664,33.67268,0.0 73.00665,33.67269,0.0 73.00667,33.67269,0.0 73.00668,33.6727,0.0 73.0067,33.67271,0.0 73.00671,33.67271,0.0 73.00672,33.67271,0.0 73.00674,33.67271,0.0 73.00675,33.67271,0.0 73.00676,33.67271,0.0 73.00677,33.67271,0.0 73.00679,33.67271,0.0 73.0068,33.67271,0.0 73.00681,33.67271,0.0 73.00682,33.67271,0.0 73.00683,33.6727,0.0 73.00684,33.6727,0.0 73.00719,33.67284,0.0 73.00758,33.67303,0.0 73.00789,33.67322,0.0 73.00789,33.67323,0.0 73.00789,33.67324,0.0 73.0079,33.67325,0.0 73.0079,33.67326,0.0 73.00791,33.67327,0.0 73.00791,33.67328,0.0 73.00792,33.67328,0.0 73.00792,33.67329,0.0 73.00793,33.67329,0.0 73.00793,33.6733,0.0 73.00794,33.6733,0.0 73.00795,33.67331,0.0 73.00796,33.67332,0.0 73.00797,33.67332,0.0 73.00798,33.67332,0.0 73.00799,33.67333,0.0 73.008,33.67333,0.0 73.00801,33.67333,0.0 73.00802,33.67334,0.0 73.00803,33.67334,0.0 73.00809,33.67335,0.0 73.0081,33.67335,0.0 73.01007,33.67435,0.0 73.01106,33.67487,0.0 73.01163,33.67518,0.0 73.01318,33.67597,0.0 73.01331,33.67604,0.0 73.01371,33.67626,0.0 73.01412,33.67648,0.0 73.01432,33.67658,0.0 73.01466,33.67676,0.0 73.01477,33.67684,0.0 73.01479,33.67684,0.0 73.01498,33.67696,0.0 73.01527,33.67716,0.0 73.01545,33.67732,0.0 73.01566,33.67752,0.0 73.01586,33.67776,0.0 73.01608,33.67802,0.0 73.01674,33.67894,0.0 73.01741,33.6799,0.0 73.01743,33.67994,0.0 73.01753,33.6801,0.0 73.01765,33.68026,0.0 73.01781,33.68047,0.0 73.01812,33.68077,0.0 73.01835,33.68099,0.0 73.01863,33.68117,0.0 73.01877,33.68126,0.0 73.02098,33.68243,0.0 73.02256,33.68324,0.0 73.023,33.68348,0.0 73.02317,33.68358,0.0 73.02444,33.68413,0.0 73.02967,33.68692,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03007,33.6897,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03153,33.69274,0.0 73.03149,33.69279,0.0 73.03145,33.69285,0.0 73.03112,33.69331,0.0 73.0309,33.69361,0.0 73.03088,33.69364,0.0 73.03067,33.69395,0.0 73.03028,33.69446,0.0 73.0302,33.69456,0.0 73.03033,33.69465,0.0 73.03666,33.69799,0.0 73.03716,33.69825,0.0 73.03731,33.69833,0.0 73.03742,33.69838,0.0 73.0377,33.69851,0.0 73.03796,33.69864,0.0 73.03836,33.69885,0.0 73.03889,33.69907,0.0 73.04272,33.70108,0.0 73.0462,33.70293,0.0 73.0465,33.70308,0.0 73.0466,33.70313,0.0 73.04682,33.70325,0.0 73.0495,33.70466,0.0 73.05003,33.70492,0.0 73.05034,33.70507,0.0 73.05248,33.70624,0.0 73.0542,33.70716,0.0 73.05404,33.70732,0.0 73.05401,33.70738,0.0 73.054,33.70742,0.0 73.05401,33.70746,0.0 73.05403,33.70749,0.0 73.05411,33.70757,0.0 73.05424,33.70764,0.0 73.0545,33.70775,0.0 73.05423,33.70811,0.0 73.05394,33.70851,0.0 73.05393,33.70852,0.0 73.05388,33.70852,0.0 73.05385,33.70853,0.0 73.05381,33.70855,0.0 73.05378,33.70856,0.0 73.05375,33.70858,0.0 73.05373,33.7086,0.0 73.0537,33.70863,0.0 73.05368,33.70865,0.0 73.05366,33.70868,0.0 73.05365,33.7087,0.0 73.05364,33.70873,0.0 73.05363,33.70876,0.0 73.05363,33.70878,0.0 73.05363,33.70882,0.0 73.05364,33.70888,0.0 73.05365,33.70889,0.0 73.05365,33.70891,0.0 73.05367,33.70894,0.0 73.05369,33.70896,0.0 73.05371,33.70899,0.0 73.05373,33.70901,0.0 73.05375,33.70902,0.0 73.05378,33.70904,0.0 73.05381,33.70906,0.0 73.05384,33.70907,0.0 73.05387,33.70908,0.0 73.0539,33.70908,0.0 73.05393,33.70909,0.0 73.05396,33.70909,0.0 73.05402,33.70909,0.0 73.05403,33.70909,0.0 73.05452,33.70933,0.0 73.05711,33.71067,0.0 73.05741,33.71082,0.0 73.05757,33.71088,0.0 73.05823,33.71119,0.0 73.05827,33.71121,0.0 73.05866,33.71144,0.0 73.05989,33.71207,0.0 73.06156,33.71296,0.0 73.06312,33.71379,0.0 73.06326,33.71386,0.0 73.0676,33.71611,0.0 73.0685,33.71657,0.0 73.07015,33.71745,0.0 73.07048,33.71764,0.0 73.07083,33.71781,0.0 73.07107,33.71793,0.0 73.07137,33.71809,0.0 73.07146,33.71814,0.0 73.07173,33.71828,0.0 73.07196,33.71839,0.0 73.07218,33.7185,0.0 73.07223,33.71853,0.0 73.07236,33.71859,0.0 73.07256,33.71869,0.0 73.07493,33.71993,0.0 73.07582,33.7204,0.0 73.08167,33.72348,0.0 73.08181,33.72355,0.0 73.08207,33.7237,0.0 73.08345,33.72439,0.0 73.08507,33.72525,0.0 73.08826,33.72693,0.0 73.0881,33.72713,0.0 73.08761,33.72787,0.0 73.08717,33.72842,0.0 73.087,33.72863,0.0 73.08667,33.72907,0.0 73.08517,33.73106,0.0 73.0846,33.73182,0.0 73.08453,33.7319,0.0 73.08494,33.73213,0.0 73.08537,33.73236,0.0 73.08549,33.73245,0.0 73.08588,33.73272,0.0 73.08606,33.73284,0.0 73.08829,33.73399,0.0 73.08918,33.73443,0.0 73.08965,33.73468,0.0 73.08986,33.73479,0.0 73.09025,33.73496,0.0 73.09066,33.73511,0.0 73.09103,33.73523,0.0 73.09131,33.73531,0.0 73.09147,33.73535,0.0 73.09132,33.73606,0.0 73.09154,33.73607,0.0 73.09157,33.73593,0.0 73.09166,33.73549,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Grand Trunk Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9109135,33.6498628,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Street 587, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9635405,33.650171,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sachal Sarmast Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9969843,33.6693199,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sawan Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.013712,33.6762574,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0300729,33.6897001,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ibn-e-Sina Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0503407,33.7050742,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0916607,33.7354933,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 105</name>
<Placemark>
<name>Directions from Sachal Sarmast Road, Islamabad, Pakistan to 699 Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>72.99695,33.6693,0.0 72.99712,33.66939,0.0 72.99727,33.66945,0.0 72.99893,33.67033,0.0 72.99946,33.67061,0.0 72.99961,33.67068,0.0 73.00071,33.67121,0.0 73.00085,33.67128,0.0 73.0013,33.67152,0.0 73.00148,33.67163,0.0 73.00167,33.67172,0.0 73.00187,33.6718,0.0 73.00219,33.67188,0.0 73.00253,33.67191,0.0 73.0034,33.67196,0.0 73.00417,33.67194,0.0 73.00425,33.67194,0.0 73.00463,33.67196,0.0 73.00495,33.672,0.0 73.00516,33.67201,0.0 73.00534,33.67206,0.0 73.00567,33.67219,0.0 73.00607,33.67237,0.0 73.00625,33.67246,0.0 73.00629,33.67248,0.0 73.00658,33.67258,0.0 73.00658,33.67259,0.0 73.00658,33.6726,0.0 73.00659,33.67261,0.0 73.00659,33.67262,0.0 73.0066,33.67263,0.0 73.0066,33.67264,0.0 73.00661,33.67265,0.0 73.00662,33.67266,0.0 73.00663,33.67267,0.0 73.00664,33.67267,0.0 73.00664,33.67268,0.0 73.00665,33.67269,0.0 73.00667,33.67269,0.0 73.00668,33.6727,0.0 73.0067,33.67271,0.0 73.00671,33.67271,0.0 73.00672,33.67271,0.0 73.00674,33.67271,0.0 73.00675,33.67271,0.0 73.00676,33.67271,0.0 73.00677,33.67271,0.0 73.00679,33.67271,0.0 73.0068,33.67271,0.0 73.00681,33.67271,0.0 73.00682,33.67271,0.0 73.00683,33.6727,0.0 73.00684,33.6727,0.0 73.00719,33.67284,0.0 73.00758,33.67303,0.0 73.00789,33.67322,0.0 73.00789,33.67323,0.0 73.00789,33.67324,0.0 73.0079,33.67325,0.0 73.0079,33.67326,0.0 73.00791,33.67327,0.0 73.00791,33.67328,0.0 73.00792,33.67328,0.0 73.00792,33.67329,0.0 73.00793,33.67329,0.0 73.00793,33.6733,0.0 73.00794,33.6733,0.0 73.00795,33.67331,0.0 73.00796,33.67332,0.0 73.00797,33.67332,0.0 73.00798,33.67332,0.0 73.00799,33.67333,0.0 73.008,33.67333,0.0 73.00801,33.67333,0.0 73.00802,33.67334,0.0 73.00803,33.67334,0.0 73.00809,33.67335,0.0 73.0081,33.67335,0.0 73.01007,33.67435,0.0 73.01106,33.67487,0.0 73.01163,33.67518,0.0 73.01318,33.67597,0.0 73.01331,33.67604,0.0 73.01412,33.67648,0.0 73.01432,33.67658,0.0 73.01466,33.67676,0.0 73.01474,33.67682,0.0 73.01477,33.67684,0.0 73.01479,33.67684,0.0 73.01498,33.67696,0.0 73.01527,33.67716,0.0 73.01545,33.67732,0.0 73.01566,33.67752,0.0 73.01586,33.67776,0.0 73.01608,33.67802,0.0 73.01674,33.67894,0.0 73.01741,33.6799,0.0 73.01743,33.67994,0.0 73.01753,33.6801,0.0 73.01765,33.68026,0.0 73.01781,33.68047,0.0 73.01812,33.68077,0.0 73.01835,33.68099,0.0 73.01863,33.68117,0.0 73.01877,33.68126,0.0 73.02098,33.68243,0.0 73.02256,33.68324,0.0 73.023,33.68348,0.0 73.02317,33.68358,0.0 73.02444,33.68413,0.0 73.02967,33.68692,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03004,33.68974,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03261,33.69155,0.0 73.03271,33.69144,0.0 73.0329,33.69121,0.0 73.03318,33.6908,0.0 73.03328,33.69067,0.0 73.03351,33.69037,0.0 73.03354,33.69031,0.0 73.03389,33.68984,0.0 73.03397,33.68975,0.0 73.0342,33.68941,0.0 73.03425,33.68936,0.0 73.03448,33.68912,0.0 73.03458,33.68901,0.0 73.03477,33.68879,0.0 73.03513,33.6883,0.0 73.03519,33.68824,0.0 73.03714,33.68928,0.0 73.03742,33.68943,0.0 73.03842,33.68995,0.0 73.03939,33.69046,0.0 73.04035,33.69098,0.0 73.04048,33.69105,0.0 73.04134,33.69154,0.0 73.04144,33.69157,0.0 73.04153,33.69161,0.0 73.04163,33.69162,0.0 73.04173,33.69159,0.0 73.04181,33.69154,0.0 73.04208,33.69127,0.0 73.04217,33.69121,0.0 73.04224,33.69118,0.0 73.04237,33.69117,0.0 73.04247,33.69119,0.0 73.04261,33.69127,0.0 73.04265,33.69129,0.0 73.04299,33.69142,0.0 73.04335,33.69165,0.0 73.04353,33.69175,0.0 73.04428,33.69222,0.0 73.04447,33.69241,0.0 73.04462,33.6926,0.0 73.04477,33.69285,0.0 73.04485,33.69305,0.0 73.04498,33.69352,0.0 73.04499,33.69354,0.0 73.0451,33.69388,0.0 73.04515,33.69403,0.0 73.04516,33.69408,0.0 73.04532,33.69425,0.0 73.04547,33.6944,0.0 73.04593,33.6947,0.0 73.04676,33.69508,0.0 73.04735,33.69539,0.0 73.04885,33.69619,0.0 73.04897,33.69625,0.0 73.04906,33.69614,0.0 73.04919,33.69597,0.0 73.04974,33.69525,0.0 73.0498,33.69518,0.0 73.05039,33.69442,0.0 73.05045,33.69434,0.0 73.05049,33.69429,0.0 73.05091,33.69372,0.0 73.05097,33.69368,0.0 73.05099,33.69368,0.0 73.05106,33.69369,0.0 73.05118,33.69376,0.0 73.05167,33.69403,0.0 73.05169,33.69404,0.0 73.05197,33.69417,0.0 73.0521,33.69423,0.0 73.0522,33.69408,0.0 73.05241,33.69376,0.0 73.05253,33.69363,0.0 73.05266,33.69351,0.0 73.05277,33.69344,0.0 73.05308,33.69331,0.0 73.05311,33.6933,0.0 73.0533,33.69322,0.0 73.05345,33.69315,0.0 73.0536,33.69305,0.0 73.05373,33.69295,0.0 73.05384,33.6928,0.0 73.05398,33.69264,0.0 73.05399,33.69262,0.0 73.05445,33.69201,0.0 73.05455,33.69185,0.0 73.05504,33.69124,0.0 73.05532,33.69088,0.0 73.05951,33.69311,0.0 73.05995,33.69333,0.0 73.06013,33.69346,0.0 73.0602,33.69356,0.0 73.06024,33.69364,0.0 73.06027,33.69374,0.0 73.06076,33.69533,0.0 73.06094,33.69591,0.0 73.06097,33.69604,0.0 73.06097,33.6961,0.0 73.06097,33.69616,0.0 73.06093,33.69625,0.0 73.0608,33.69642,0.0 73.06066,33.69656,0.0 73.06058,33.69667,0.0 73.06104,33.6969,0.0 73.06163,33.69723,0.0 73.06128,33.69772,0.0 73.06047,33.69887,0.0 73.06036,33.69903,0.0 73.06002,33.69949,0.0 73.05963,33.70002,0.0 73.05935,33.70039,0.0 73.05906,33.70078,0.0 73.05903,33.70078,0.0 73.059,33.70078,0.0 73.05897,33.70077,0.0 73.05894,33.70077,0.0 73.05891,33.70077,0.0 73.05887,33.70078,0.0 73.05884,33.70078,0.0 73.05881,33.70079,0.0 73.05879,33.7008,0.0 73.05876,33.70082,0.0 73.05873,33.70083,0.0 73.05871,33.70085,0.0 73.05869,33.70087,0.0 73.05867,33.70089,0.0 73.05864,33.70092,0.0 73.05863,33.70098,0.0 73.05863,33.70104,0.0 73.05865,33.70109,0.0 73.05866,33.70112,0.0 73.05867,33.70114,0.0 73.05868,33.70117,0.0 73.05876,33.70122,0.0 73.05883,33.70125,0.0 73.05886,33.70126,0.0 73.05891,33.70127,0.0 73.05896,33.70129,0.0 73.05903,33.70132,0.0 73.05909,33.70136,0.0 73.05915,33.7014,0.0 73.05921,33.70147,0.0 73.05928,33.70153,0.0 73.05826,33.70289,0.0 73.05849,33.703,0.0 73.05998,33.70094,0.0 73.06019,33.70093,0.0 73.06031,33.70094,0.0 73.06043,33.70099,0.0 73.06053,33.70106,0.0 73.06062,33.70113,0.0 73.06073,33.70098,0.0 73.06142,33.7001,0.0 73.06151,33.70015,0.0 73.06213,33.70048,0.0 73.06305,33.70096,0.0 73.06361,33.70125,0.0 73.0641,33.70148,0.0 73.06485,33.70187,0.0 73.06531,33.70211,0.0 73.0661,33.70252,0.0 73.06689,33.70299,0.0 73.06708,33.7031,0.0 73.06734,33.70329,0.0 73.06748,33.70344,0.0 73.0677,33.70362,0.0 73.06778,33.70368,0.0 73.06793,33.70379,0.0 73.06831,33.70406,0.0 73.06785,33.70466,0.0 73.06758,33.70502,0.0 73.0673,33.7054,0.0 73.06708,33.70567,0.0 73.06682,33.70603,0.0 73.06659,33.70632,0.0 73.06656,33.7064,0.0 73.06661,33.70647,0.0 73.06684,33.70656,0.0 73.06712,33.7067,0.0 73.06722,33.70675,0.0 73.06728,33.70679,0.0 73.06785,33.7071,0.0 73.06798,33.70717,0.0 73.06941,33.70791,0.0 73.0695,33.70792,0.0 73.06959,33.70789,0.0 73.0697,33.70785,0.0 73.0702,33.70724,0.0 73.07074,33.70655,0.0 73.07111,33.70673,0.0 73.07132,33.70686,0.0 73.07146,33.70696,0.0 73.07163,33.70716,0.0 73.07204,33.70765,0.0 73.07215,33.70777,0.0 73.07231,33.70789,0.0 73.07265,33.70807,0.0 73.07546,33.70952,0.0 73.07647,33.71004,0.0 73.07659,33.71011,0.0 73.07663,33.71013,0.0 73.07673,33.71034,0.0 73.07674,33.71036,0.0 73.07688,33.71055,0.0 73.07688,33.71056,0.0 73.077,33.71063,0.0 73.07711,33.71069,0.0 73.07717,33.71072,0.0 73.07721,33.71074,0.0 73.0773,33.71083,0.0 73.07737,33.71096,0.0 73.07739,33.71102,0.0 73.07745,33.71112,0.0 73.07746,33.71114,0.0 73.07752,33.71123,0.0 73.0784,33.71164,0.0 73.07936,33.71211,0.0 73.08021,33.71255,0.0 73.08101,33.71297,0.0 73.0812,33.71306,0.0 73.08204,33.71357,0.0 73.08317,33.71415,0.0 73.084,33.71458,0.0 73.08467,33.71488,0.0 73.0848,33.71495,0.0 73.08486,33.71488,0.0 73.08628,33.713,0.0 73.08634,33.71292,0.0 73.08737,33.71152,0.0 73.08891,33.70949,0.0 73.08965,33.70855,0.0 73.09006,33.70801,0.0 73.09009,33.70796,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Sachal Sarmast Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9969525,33.6693045,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sawan Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0147425,33.6768227,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0300449,33.6897395,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd E, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0413359,33.6915353,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Markaz Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0504508,33.694339,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>G-8/4, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0607625,33.6953301,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sultan Bahu Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0671184,33.7067018,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0848626,33.7148839,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>699 Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0900869,33.7079582,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 110</name>
<Placemark>
<name>Directions from Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory to Bus Ada, Bhara Kahu, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.02666,33.63227,0.0 73.02662,33.63235,0.0 73.02681,33.63243,0.0 73.03012,33.63425,0.0 73.03055,33.63448,0.0 73.03084,33.63462,0.0 73.03217,33.63526,0.0 73.03294,33.63564,0.0 73.03768,33.63815,0.0 73.04029,33.63956,0.0 73.04107,33.63997,0.0 73.04146,33.64019,0.0 73.04183,33.64039,0.0 73.0433,33.64114,0.0 73.04333,33.64115,0.0 73.04308,33.64146,0.0 73.04318,33.64151,0.0 73.04378,33.64184,0.0 73.04392,33.64192,0.0 73.04547,33.64275,0.0 73.0459,33.64297,0.0 73.04658,33.64331,0.0 73.04727,33.64366,0.0 73.04833,33.64416,0.0 73.04969,33.64487,0.0 73.05125,33.64575,0.0 73.05325,33.64674,0.0 73.05346,33.64685,0.0 73.05406,33.64717,0.0 73.05457,33.64748,0.0 73.05498,33.64771,0.0 73.05522,33.6479,0.0 73.05542,33.6481,0.0 73.05563,33.64831,0.0 73.05588,33.64846,0.0 73.05615,33.64854,0.0 73.0565,33.6486,0.0 73.05671,33.64863,0.0 73.05694,33.64865,0.0 73.0573,33.64869,0.0 73.05752,33.64877,0.0 73.05825,33.64913,0.0 73.05892,33.64952,0.0 73.0591,33.64973,0.0 73.05925,33.6499,0.0 73.05941,33.65001,0.0 73.05972,33.65019,0.0 73.06106,33.65089,0.0 73.06106,33.65096,0.0 73.06192,33.65134,0.0 73.06449,33.65268,0.0 73.06458,33.65274,0.0 73.0648,33.65289,0.0 73.06482,33.65288,0.0 73.0649,33.65283,0.0 73.0651,33.65283,0.0 73.06539,33.65285,0.0 73.06578,33.65292,0.0 73.06682,33.65347,0.0 73.06882,33.65456,0.0 73.06971,33.65498,0.0 73.06977,33.65502,0.0 73.06993,33.6549,0.0 73.07031,33.6544,0.0 73.07124,33.65316,0.0 73.07154,33.65274,0.0 73.07209,33.65213,0.0 73.07228,33.65194,0.0 73.07257,33.65171,0.0 73.073,33.65139,0.0 73.07361,33.65103,0.0 73.07411,33.65079,0.0 73.07457,33.65061,0.0 73.07492,33.65051,0.0 73.07582,33.65029,0.0 73.07669,33.65006,0.0 73.07841,33.64958,0.0 73.07918,33.64935,0.0 73.07942,33.64929,0.0 73.07946,33.64929,0.0 73.07949,33.64928,0.0 73.07953,33.64928,0.0 73.0796,33.6493,0.0 73.07965,33.64931,0.0 73.07972,33.64933,0.0 73.07974,33.64934,0.0 73.07977,33.64936,0.0 73.0798,33.64937,0.0 73.07984,33.64948,0.0 73.08018,33.65029,0.0 73.08102,33.65241,0.0 73.0814,33.65329,0.0 73.0815,33.65355,0.0 73.08156,33.65372,0.0 73.08248,33.6561,0.0 73.08255,33.65636,0.0 73.0826,33.6565,0.0 73.08269,33.65684,0.0 73.08276,33.65709,0.0 73.08296,33.65753,0.0 73.08315,33.65793,0.0 73.08333,33.65823,0.0 73.08344,33.65853,0.0 73.08361,33.65897,0.0 73.08374,33.65931,0.0 73.08418,33.66029,0.0 73.0842,33.66032,0.0 73.08444,33.66083,0.0 73.08449,33.66096,0.0 73.08475,33.66164,0.0 73.08479,33.66174,0.0 73.0849,33.66195,0.0 73.08499,33.66216,0.0 73.08506,33.6623,0.0 73.08513,33.66241,0.0 73.08522,33.66254,0.0 73.08539,33.6628,0.0 73.08572,33.66321,0.0 73.08592,33.66345,0.0 73.08625,33.66383,0.0 73.08649,33.66409,0.0 73.08675,33.66449,0.0 73.08698,33.66476,0.0 73.0872,33.66502,0.0 73.08761,33.66548,0.0 73.0878,33.66569,0.0 73.08895,33.66698,0.0 73.08906,33.66711,0.0 73.08917,33.66725,0.0 73.08967,33.66779,0.0 73.08997,33.66809,0.0 73.09019,33.66833,0.0 73.09046,33.66865,0.0 73.09073,33.66894,0.0 73.09117,33.66946,0.0 73.0923,33.6707,0.0 73.09256,33.67107,0.0 73.09279,33.67146,0.0 73.093,33.67186,0.0 73.09418,33.6741,0.0 73.09456,33.67491,0.0 73.09467,33.67521,0.0 73.09473,33.67535,0.0 73.09573,33.67748,0.0 73.09586,33.67775,0.0 73.09601,33.67801,0.0 73.09613,33.67815,0.0 73.09635,33.67837,0.0 73.09659,33.67858,0.0 73.09713,33.67896,0.0 73.09953,33.68023,0.0 73.09959,33.68026,0.0 73.09979,33.68037,0.0 73.10003,33.68049,0.0 73.10048,33.68074,0.0 73.10196,33.68155,0.0 73.10343,33.68238,0.0 73.10371,33.68256,0.0 73.10401,33.68278,0.0 73.10433,33.68305,0.0 73.10468,33.68339,0.0 73.1053,33.68402,0.0 73.10562,33.68433,0.0 73.10636,33.68506,0.0 73.10728,33.686,0.0 73.10747,33.68621,0.0 73.10785,33.68658,0.0 73.10869,33.68736,0.0 73.10941,33.68807,0.0 73.10958,33.68824,0.0 73.10974,33.68842,0.0 73.10986,33.68857,0.0 73.11002,33.68879,0.0 73.11013,33.68903,0.0 73.11013,33.68905,0.0 73.11014,33.68907,0.0 73.11014,33.68909,0.0 73.11015,33.68912,0.0 73.11016,33.68914,0.0 73.11017,33.68916,0.0 73.11019,33.68917,0.0 73.11021,33.6892,0.0 73.11027,33.68925,0.0 73.11031,33.68927,0.0 73.11035,33.68929,0.0 73.1104,33.6893,0.0 73.11045,33.68931,0.0 73.1105,33.68931,0.0 73.11055,33.68931,0.0 73.1106,33.6893,0.0 73.11062,33.6893,0.0 73.11063,33.68929,0.0 73.11064,33.68929,0.0 73.11065,33.68929,0.0 73.11066,33.68928,0.0 73.11067,33.68928,0.0 73.11068,33.68927,0.0 73.11069,33.68927,0.0 73.1107,33.68927,0.0 73.11071,33.68926,0.0 73.11072,33.68925,0.0 73.11073,33.68925,0.0 73.11073,33.68924,0.0 73.11074,33.68924,0.0 73.11075,33.68923,0.0 73.11076,33.68922,0.0 73.11077,33.68921,0.0 73.11078,33.6892,0.0 73.11079,33.6892,0.0 73.1108,33.68919,0.0 73.11081,33.68918,0.0 73.11082,33.68917,0.0 73.11086,33.68912,0.0 73.11087,33.68906,0.0 73.11087,33.68905,0.0 73.11098,33.68904,0.0 73.11108,33.68902,0.0 73.11128,33.68903,0.0 73.11157,33.68904,0.0 73.11184,33.68905,0.0 73.11208,33.68905,0.0 73.11241,33.68909,0.0 73.11264,33.6891,0.0 73.11316,33.68917,0.0 73.11427,33.68926,0.0 73.11462,33.68926,0.0 73.11489,33.68924,0.0 73.11519,33.6892,0.0 73.11548,33.68914,0.0 73.11584,33.68906,0.0 73.11683,33.68884,0.0 73.11772,33.68853,0.0 73.11799,33.68847,0.0 73.11827,33.68842,0.0 73.11862,33.68837,0.0 73.11922,33.68831,0.0 73.12017,33.68823,0.0 73.12126,33.68814,0.0 73.12283,33.68794,0.0 73.12361,33.68787,0.0 73.12416,33.68784,0.0 73.12475,33.68782,0.0 73.12636,33.68781,0.0 73.12718,33.68782,0.0 73.12837,33.68778,0.0 73.12905,33.68771,0.0 73.13113,33.68746,0.0 73.13135,33.68742,0.0 73.13173,33.68737,0.0 73.13203,33.68732,0.0 73.13233,33.68725,0.0 73.13267,33.68713,0.0 73.13307,33.68695,0.0 73.13343,33.68675,0.0 73.13382,33.68649,0.0 73.13419,33.68619,0.0 73.13441,33.68596,0.0 73.13484,33.68547,0.0 73.13465,33.68534,0.0 73.13456,33.68545,0.0 73.13403,33.68604,0.0 73.13388,33.68619,0.0 73.13377,33.68627,0.0 73.13368,33.68634,0.0 73.13347,33.68649,0.0 73.13326,33.68662,0.0 73.13301,33.68676,0.0 73.13269,33.68693,0.0 73.13244,33.68703,0.0 73.13217,33.68712,0.0 73.13188,33.68719,0.0 73.13158,33.68725,0.0 73.1313,33.68728,0.0 73.13105,33.68731,0.0 73.12956,33.68752,0.0 73.12879,33.68763,0.0 73.12846,33.68766,0.0 73.1272,33.68771,0.0 73.1245,33.68774,0.0 73.12369,33.68777,0.0 73.12126,33.68801,0.0 73.12092,33.68806,0.0 73.11841,33.68826,0.0 73.11812,33.6883,0.0 73.11784,33.68835,0.0 73.11749,33.68845,0.0 73.11694,33.68861,0.0 73.11663,33.68871,0.0 73.1154,33.68903,0.0 73.11517,33.68908,0.0 73.11493,33.68912,0.0 73.11469,33.68914,0.0 73.11437,33.68914,0.0 73.11402,33.68912,0.0 73.11268,33.68899,0.0 73.11248,33.68896,0.0 73.11205,33.68892,0.0 73.11105,33.68881,0.0 73.11071,33.68875,0.0 73.11067,33.68874,0.0 73.11064,33.68872,0.0 73.11058,33.68871,0.0 73.1105,33.6887,0.0 73.11045,33.6887,0.0 73.1104,33.68871,0.0 73.11035,33.68872,0.0 73.1103,33.68874,0.0 73.11026,33.68877,0.0 73.11022,33.6888,0.0 73.11019,33.68883,0.0 73.11017,33.68887,0.0 73.11015,33.6889,0.0 73.11013,33.68895,0.0 73.11013,33.68899,0.0 73.11013,33.68903,0.0 73.11013,33.68905,0.0 73.11014,33.68907,0.0 73.11014,33.68909,0.0 73.11015,33.68912,0.0 73.11016,33.68914,0.0 73.11017,33.68916,0.0 73.11019,33.68917,0.0 73.11021,33.6892,0.0 73.11022,33.68951,0.0 73.11021,33.68986,0.0 73.11017,33.6901,0.0 73.11016,33.6903,0.0 73.11013,33.69054,0.0 73.11012,33.69081,0.0 73.11013,33.69117,0.0 73.11014,33.69137,0.0 73.11015,33.69148,0.0 73.11022,33.69268,0.0 73.11034,33.6949,0.0 73.11034,33.69495,0.0 73.11041,33.69597,0.0 73.11044,33.69641,0.0 73.11048,33.69703,0.0 73.1105,33.69784,0.0 73.11043,33.69831,0.0 73.11031,33.69873,0.0 73.10964,33.70008,0.0 73.10869,33.70201,0.0 73.1081,33.70321,0.0 73.10808,33.70326,0.0 73.10762,33.70411,0.0 73.10754,33.70429,0.0 73.10696,33.70527,0.0 73.10686,33.70545,0.0 73.10669,33.70575,0.0 73.1064,33.70626,0.0 73.10579,33.70762,0.0 73.10564,33.7079,0.0 73.10548,33.70814,0.0 73.10545,33.70818,0.0 73.10542,33.70821,0.0 73.1054,33.70824,0.0 73.10537,33.70829,0.0 73.10534,33.70834,0.0 73.10531,33.70839,0.0 73.10528,33.70844,0.0 73.10523,33.70851,0.0 73.1052,33.70858,0.0 73.10516,33.70864,0.0 73.10513,33.70871,0.0 73.10511,33.70876,0.0 73.1051,33.7088,0.0 73.10512,33.70885,0.0 73.10514,33.7089,0.0 73.10517,33.70895,0.0 73.1052,33.70899,0.0 73.10525,33.70903,0.0 73.1053,33.70907,0.0 73.10536,33.7091,0.0 73.10542,33.70912,0.0 73.10547,33.70914,0.0 73.10548,33.70914,0.0 73.10544,33.70926,0.0 73.10542,33.70933,0.0 73.10542,33.70942,0.0 73.10547,33.70966,0.0 73.10552,33.70995,0.0 73.10558,33.71016,0.0 73.10569,33.71043,0.0 73.10602,33.71109,0.0 73.10605,33.71125,0.0 73.1063,33.71141,0.0 73.10641,33.71148,0.0 73.10657,33.71156,0.0 73.10784,33.71217,0.0 73.11088,33.71358,0.0 73.11118,33.71374,0.0 73.11148,33.71393,0.0 73.11215,33.71443,0.0 73.1124,33.71461,0.0 73.11253,33.7147,0.0 73.11342,33.7152,0.0 73.11698,33.71727,0.0 73.11722,33.7174,0.0 73.11789,33.71773,0.0 73.11901,33.71836,0.0 73.11973,33.71867,0.0 73.11978,33.71869,0.0 73.11987,33.71873,0.0 73.12003,33.71878,0.0 73.12011,33.71882,0.0 73.12022,33.71885,0.0 73.12033,33.71888,0.0 73.12044,33.7189,0.0 73.12055,33.71892,0.0 73.12065,33.71893,0.0 73.12077,33.71894,0.0 73.12097,33.71894,0.0 73.12216,33.71884,0.0 73.1236,33.71871,0.0 73.12399,33.71871,0.0 73.1244,33.71873,0.0 73.12456,33.71875,0.0 73.12499,33.71883,0.0 73.12564,33.71914,0.0 73.12699,33.71994,0.0 73.12745,33.72017,0.0 73.12778,33.7203,0.0 73.1282,33.72041,0.0 73.13105,33.72093,0.0 73.13304,33.7213,0.0 73.13336,33.72139,0.0 73.13371,33.72153,0.0 73.13416,33.72177,0.0 73.13422,33.72181,0.0 73.13426,33.72183,0.0 73.13445,33.72197,0.0 73.13543,33.7228,0.0 73.13573,33.72306,0.0 73.13739,33.72449,0.0 73.13864,33.72555,0.0 73.13889,33.72574,0.0 73.13946,33.72614,0.0 73.14184,33.72774,0.0 73.14203,33.72787,0.0 73.14295,33.72851,0.0 73.14407,33.72925,0.0 73.14427,33.72936,0.0 73.14527,33.72994,0.0 73.14825,33.73158,0.0 73.14849,33.73171,0.0 73.14904,33.73202,0.0 73.15054,33.73285,0.0 73.15082,33.733,0.0 73.15099,33.73309,0.0 73.1513,33.73323,0.0 73.15165,33.73335,0.0 73.15204,33.73348,0.0 73.15293,33.7337,0.0 73.15426,33.73404,0.0 73.15532,33.73434,0.0 73.15567,33.73441,0.0 73.15596,33.73447,0.0 73.1565,33.73453,0.0 73.1568,33.73456,0.0 73.15773,33.73462,0.0 73.15883,33.73469,0.0 73.16019,33.73484,0.0 73.16128,33.73489,0.0 73.16222,33.73494,0.0 73.16337,33.73505,0.0 73.1641,33.73508,0.0 73.16456,33.73509,0.0 73.16541,33.73509,0.0 73.16638,33.73509,0.0 73.16714,33.73511,0.0 73.16747,33.73516,0.0 73.16788,33.73526,0.0 73.16836,33.73539,0.0 73.16923,33.73561,0.0 73.17012,33.73583,0.0 73.17253,33.73641,0.0 73.17255,33.73641,0.0 73.17414,33.73682,0.0 73.17444,33.73693,0.0 73.17549,33.73739,0.0 73.17567,33.73749,0.0 73.17653,33.73801,0.0 73.17763,33.73864,0.0 73.17802,33.73887,0.0 73.1781,33.73899,0.0 73.17814,33.73905,0.0 73.17819,33.73909,0.0 73.17846,33.73927,0.0 73.17873,33.73941,0.0 73.17906,33.73956,0.0 73.17915,33.73961,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.026664,33.6322698,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd ( I 9 ), Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0534645,33.6468544,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pindora Chungi Bus Stop, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.064578,33.6527394,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Stadium Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0797357,33.6493393,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Murree Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0852171,33.6625414,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Park Rd, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1345551,33.6854478,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Murree Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1342189,33.7218083,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bus Ada, Bhara Kahu, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1791531,33.7396114,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 111</name>
<Placemark>
<name>Directions from Rawat, Islamabad Capital Territory to Johar Rd, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.19698,33.48966,0.0 73.19701,33.49046,0.0 73.19708,33.49147,0.0 73.19708,33.49221,0.0 73.19704,33.49301,0.0 73.19692,33.49383,0.0 73.19687,33.49411,0.0 73.19676,33.49476,0.0 73.19671,33.49504,0.0 73.19632,33.49673,0.0 73.19591,33.49846,0.0 73.19581,33.4989,0.0 73.19566,33.49962,0.0 73.19557,33.49989,0.0 73.19547,33.50016,0.0 73.19536,33.50043,0.0 73.19519,33.50069,0.0 73.19502,33.50094,0.0 73.19482,33.50117,0.0 73.1946,33.50137,0.0 73.19436,33.50158,0.0 73.19411,33.50176,0.0 73.19366,33.50205,0.0 73.19246,33.5028,0.0 73.19178,33.50322,0.0 73.19074,33.50389,0.0 73.18829,33.50542,0.0 73.18543,33.50722,0.0 73.1854,33.50724,0.0 73.1849,33.50755,0.0 73.18353,33.5084,0.0 73.18292,33.50878,0.0 73.18102,33.50995,0.0 73.1789,33.51133,0.0 73.1789,33.51146,0.0 73.17886,33.51189,0.0 73.17885,33.512,0.0 73.17881,33.51228,0.0 73.17874,33.5125,0.0 73.17865,33.51275,0.0 73.17855,33.51317,0.0 73.17848,33.51337,0.0 73.17846,33.51359,0.0 73.17843,33.51371,0.0 73.1784,33.51411,0.0 73.17846,33.51483,0.0 73.1786,33.51532,0.0 73.17864,33.51563,0.0 73.17897,33.51829,0.0 73.17923,33.5202,0.0 73.17934,33.52106,0.0 73.17934,33.52108,0.0 73.1794,33.52153,0.0 73.17946,33.52197,0.0 73.17973,33.52415,0.0 73.17975,33.52437,0.0 73.17985,33.52524,0.0 73.17986,33.52534,0.0 73.17989,33.52554,0.0 73.17992,33.52584,0.0 73.17997,33.52628,0.0 73.17999,33.52643,0.0 73.17999,33.52646,0.0 73.18021,33.52801,0.0 73.18028,33.52857,0.0 73.18033,33.529,0.0 73.18034,33.52911,0.0 73.18049,33.53019,0.0 73.18063,33.53125,0.0 73.18081,33.53268,0.0 73.1809,33.53325,0.0 73.18091,33.53337,0.0 73.18094,33.53353,0.0 73.18103,33.53419,0.0 73.18106,33.53457,0.0 73.18107,33.53494,0.0 73.18108,33.53546,0.0 73.18103,33.5359,0.0 73.18095,33.53656,0.0 73.18088,33.53705,0.0 73.18074,33.53764,0.0 73.18054,33.53834,0.0 73.18035,33.53882,0.0 73.18033,33.53886,0.0 73.18022,33.53916,0.0 73.18003,33.53963,0.0 73.17974,33.54024,0.0 73.17969,33.54035,0.0 73.17947,33.54075,0.0 73.17905,33.54135,0.0 73.17863,33.54192,0.0 73.17831,33.54236,0.0 73.17809,33.54266,0.0 73.17766,33.54325,0.0 73.17749,33.54347,0.0 73.1772,33.54387,0.0 73.17717,33.5439,0.0 73.17605,33.54542,0.0 73.17459,33.54736,0.0 73.17377,33.54853,0.0 73.17166,33.5513,0.0 73.17148,33.55157,0.0 73.17127,33.55191,0.0 73.17122,33.55197,0.0 73.17069,33.55259,0.0 73.16921,33.55455,0.0 73.16874,33.55518,0.0 73.168,33.55616,0.0 73.16789,33.5563,0.0 73.16781,33.5564,0.0 73.16773,33.55651,0.0 73.16761,33.55669,0.0 73.16742,33.55692,0.0 73.16715,33.55731,0.0 73.16607,33.55872,0.0 73.16458,33.56072,0.0 73.16349,33.5622,0.0 73.16267,33.56329,0.0 73.16258,33.56341,0.0 73.16148,33.56491,0.0 73.16071,33.56597,0.0 73.15991,33.56701,0.0 73.15941,33.56769,0.0 73.1589,33.56836,0.0 73.15877,33.56854,0.0 73.15824,33.56923,0.0 73.15815,33.56936,0.0 73.15808,33.56944,0.0 73.15783,33.56979,0.0 73.15688,33.57105,0.0 73.15646,33.57161,0.0 73.15525,33.57322,0.0 73.15504,33.5735,0.0 73.15424,33.57459,0.0 73.15382,33.57514,0.0 73.15344,33.57568,0.0 73.15314,33.57607,0.0 73.15272,33.57664,0.0 73.15218,33.57744,0.0 73.15162,33.57819,0.0 73.15005,33.5803,0.0 73.14983,33.58058,0.0 73.14892,33.58175,0.0 73.14858,33.58219,0.0 73.14807,33.58289,0.0 73.14753,33.58357,0.0 73.14585,33.58577,0.0 73.14553,33.58622,0.0 73.1449,33.58704,0.0 73.14369,33.58871,0.0 73.14256,33.59027,0.0 73.14213,33.59085,0.0 73.1409,33.59251,0.0 73.13999,33.59374,0.0 73.13996,33.59379,0.0 73.13868,33.59546,0.0 73.13822,33.59609,0.0 73.13804,33.59634,0.0 73.13787,33.59656,0.0 73.1375,33.59702,0.0 73.13633,33.5986,0.0 73.13559,33.59959,0.0 73.13511,33.60023,0.0 73.13428,33.60133,0.0 73.13326,33.60268,0.0 73.13294,33.60311,0.0 73.13162,33.60485,0.0 73.13104,33.60555,0.0 73.13096,33.60566,0.0 73.13052,33.60623,0.0 73.13027,33.60658,0.0 73.12852,33.60891,0.0 73.12599,33.61234,0.0 73.12575,33.61266,0.0 73.12367,33.61537,0.0 73.12144,33.61842,0.0 73.11988,33.6205,0.0 73.11962,33.62086,0.0 73.11694,33.62444,0.0 73.11583,33.62593,0.0 73.11512,33.62688,0.0 73.11502,33.62701,0.0 73.11496,33.62715,0.0 73.11318,33.62953,0.0 73.11289,33.6295,0.0 73.11278,33.6295,0.0 73.11217,33.62946,0.0 73.11172,33.62947,0.0 73.11162,33.62946,0.0 73.11157,33.62945,0.0 73.11153,33.62942,0.0 73.1115,33.62936,0.0 73.11314,33.62927,0.0 73.11334,33.62926,0.0 73.11368,33.62924,0.0 73.11334,33.62926,0.0 73.11314,33.62927,0.0 73.1115,33.62936,0.0 73.11153,33.62942,0.0 73.11157,33.62945,0.0 73.11162,33.62946,0.0 73.11172,33.62947,0.0 73.11217,33.62946,0.0 73.11278,33.6295,0.0 73.11282,33.6296,0.0 73.11284,33.62967,0.0 73.11286,33.62975,0.0 73.11288,33.62993,0.0 73.11236,33.63063,0.0 73.10783,33.63664,0.0 73.10745,33.63723,0.0 73.10711,33.63768,0.0 73.10443,33.64125,0.0 73.10352,33.64247,0.0 73.10335,33.64269,0.0 73.10308,33.64303,0.0 73.1025,33.64382,0.0 73.10111,33.64564,0.0 73.09793,33.64987,0.0 73.09536,33.65335,0.0 73.09505,33.65377,0.0 73.09339,33.656,0.0 73.09305,33.65644,0.0 73.09225,33.65746,0.0 73.09106,33.65898,0.0 73.09103,33.65901,0.0 73.09058,33.65971,0.0 73.09001,33.66049,0.0 73.08993,33.66061,0.0 73.08966,33.66099,0.0 73.08937,33.66141,0.0 73.08907,33.66182,0.0 73.0888,33.66217,0.0 73.08838,33.66271,0.0 73.08738,33.66396,0.0 73.08698,33.66452,0.0 73.08672,33.66485,0.0 73.08643,33.66504,0.0 73.08635,33.66507,0.0 73.08627,33.66509,0.0 73.08619,33.6651,0.0 73.08608,33.6651,0.0 73.08599,33.66508,0.0 73.08591,33.66505,0.0 73.08584,33.66501,0.0 73.08578,33.66497,0.0 73.08573,33.66491,0.0 73.08569,33.66485,0.0 73.08565,33.66477,0.0 73.08564,33.6647,0.0 73.08564,33.66464,0.0 73.08565,33.66458,0.0 73.08568,33.66451,0.0 73.08572,33.66445,0.0 73.08576,33.6644,0.0 73.08582,33.66435,0.0 73.08589,33.6643,0.0 73.08597,33.66426,0.0 73.08604,33.66424,0.0 73.08613,33.66423,0.0 73.08621,33.66423,0.0 73.08629,33.66424,0.0 73.08637,33.66426,0.0 73.08645,33.6643,0.0 73.08675,33.66449,0.0 73.08698,33.66476,0.0 73.0872,33.66502,0.0 73.08761,33.66548,0.0 73.0878,33.66569,0.0 73.08895,33.66698,0.0 73.08906,33.66711,0.0 73.08917,33.66725,0.0 73.08967,33.66779,0.0 73.08997,33.66809,0.0 73.09019,33.66833,0.0 73.09046,33.66865,0.0 73.09073,33.66894,0.0 73.09117,33.66946,0.0 73.0923,33.6707,0.0 73.09256,33.67107,0.0 73.09279,33.67146,0.0 73.093,33.67186,0.0 73.09418,33.6741,0.0 73.09456,33.67491,0.0 73.09467,33.67521,0.0 73.09473,33.67535,0.0 73.09573,33.67748,0.0 73.09586,33.67775,0.0 73.09601,33.67801,0.0 73.09613,33.67815,0.0 73.09635,33.67837,0.0 73.09659,33.67858,0.0 73.09713,33.67896,0.0 73.09953,33.68023,0.0 73.09959,33.68026,0.0 73.09979,33.68037,0.0 73.10003,33.68049,0.0 73.10048,33.68074,0.0 73.10196,33.68155,0.0 73.10343,33.68238,0.0 73.10371,33.68256,0.0 73.10401,33.68278,0.0 73.10433,33.68305,0.0 73.10468,33.68339,0.0 73.1053,33.68402,0.0 73.10562,33.68433,0.0 73.10636,33.68506,0.0 73.10728,33.686,0.0 73.10747,33.68621,0.0 73.10785,33.68658,0.0 73.10869,33.68736,0.0 73.10941,33.68807,0.0 73.10958,33.68824,0.0 73.10974,33.68842,0.0 73.10986,33.68857,0.0 73.11002,33.68879,0.0 73.11013,33.68903,0.0 73.11013,33.68905,0.0 73.11014,33.68907,0.0 73.11014,33.68909,0.0 73.11015,33.68912,0.0 73.11016,33.68914,0.0 73.11017,33.68916,0.0 73.11019,33.68917,0.0 73.11021,33.6892,0.0 73.11027,33.68925,0.0 73.11031,33.68927,0.0 73.11035,33.68929,0.0 73.1104,33.6893,0.0 73.11045,33.68931,0.0 73.1105,33.68931,0.0 73.11055,33.68931,0.0 73.1106,33.6893,0.0 73.11062,33.6893,0.0 73.11063,33.68929,0.0 73.11064,33.68929,0.0 73.11065,33.68929,0.0 73.11066,33.68928,0.0 73.11067,33.68928,0.0 73.11068,33.68927,0.0 73.11069,33.68927,0.0 73.1107,33.68927,0.0 73.11071,33.68926,0.0 73.11072,33.68925,0.0 73.11073,33.68925,0.0 73.11073,33.68924,0.0 73.11074,33.68924,0.0 73.11075,33.68923,0.0 73.11076,33.68922,0.0 73.11077,33.68921,0.0 73.11078,33.6892,0.0 73.11079,33.6892,0.0 73.1108,33.68919,0.0 73.11081,33.68918,0.0 73.11082,33.68917,0.0 73.11086,33.68912,0.0 73.11087,33.68906,0.0 73.11087,33.68905,0.0 73.11098,33.68904,0.0 73.11108,33.68902,0.0 73.11128,33.68903,0.0 73.11157,33.68904,0.0 73.11184,33.68905,0.0 73.11208,33.68905,0.0 73.11241,33.68909,0.0 73.11264,33.6891,0.0 73.11316,33.68917,0.0 73.11427,33.68926,0.0 73.11462,33.68926,0.0 73.11489,33.68924,0.0 73.11519,33.6892,0.0 73.11548,33.68914,0.0 73.11584,33.68906,0.0 73.11683,33.68884,0.0 73.11772,33.68853,0.0 73.11799,33.68847,0.0 73.11827,33.68842,0.0 73.11862,33.68837,0.0 73.11922,33.68831,0.0 73.12017,33.68823,0.0 73.12126,33.68814,0.0 73.12283,33.68794,0.0 73.12361,33.68787,0.0 73.12416,33.68784,0.0 73.12475,33.68782,0.0 73.12636,33.68781,0.0 73.12718,33.68782,0.0 73.12837,33.68778,0.0 73.12905,33.68771,0.0 73.13113,33.68746,0.0 73.13135,33.68742,0.0 73.13173,33.68737,0.0 73.13203,33.68732,0.0 73.13233,33.68725,0.0 73.13267,33.68713,0.0 73.13307,33.68695,0.0 73.13343,33.68675,0.0 73.13382,33.68649,0.0 73.13419,33.68619,0.0 73.13441,33.68596,0.0 73.13484,33.68547,0.0 73.1398,33.67954,0.0 73.14081,33.6784,0.0 73.14234,33.67647,0.0 73.14405,33.67444,0.0 73.14415,33.67434,0.0 73.14436,33.67409,0.0 73.14538,33.67289,0.0 73.14684,33.67121,0.0 73.1466,33.67107,0.0 73.14225,33.67631,0.0 73.14061,33.67825,0.0 73.13963,33.67941,0.0 73.13474,33.6852,0.0 73.13465,33.68534,0.0 73.13403,33.68604,0.0 73.13388,33.68619,0.0 73.13377,33.68627,0.0 73.13368,33.68634,0.0 73.13347,33.68649,0.0 73.13326,33.68662,0.0 73.13301,33.68676,0.0 73.13269,33.68693,0.0 73.13244,33.68703,0.0 73.13217,33.68712,0.0 73.13188,33.68719,0.0 73.13158,33.68725,0.0 73.1313,33.68728,0.0 73.13105,33.68731,0.0 73.12956,33.68752,0.0 73.12879,33.68763,0.0 73.12846,33.68766,0.0 73.1272,33.68771,0.0 73.1245,33.68774,0.0 73.12369,33.68777,0.0 73.12126,33.68801,0.0 73.12092,33.68806,0.0 73.11841,33.68826,0.0 73.11812,33.6883,0.0 73.11784,33.68835,0.0 73.11749,33.68845,0.0 73.11694,33.68861,0.0 73.11663,33.68871,0.0 73.1154,33.68903,0.0 73.11517,33.68908,0.0 73.11493,33.68912,0.0 73.11469,33.68914,0.0 73.11437,33.68914,0.0 73.11402,33.68912,0.0 73.11268,33.68899,0.0 73.11248,33.68896,0.0 73.11205,33.68892,0.0 73.11105,33.68881,0.0 73.11071,33.68875,0.0 73.11067,33.68874,0.0 73.11064,33.68872,0.0 73.11058,33.68871,0.0 73.1104,33.68862,0.0 73.11019,33.68851,0.0 73.10998,33.68837,0.0 73.10981,33.68823,0.0 73.10817,33.68662,0.0 73.10654,33.685,0.0 73.10483,33.68329,0.0 73.10459,33.68307,0.0 73.10437,33.68287,0.0 73.10405,33.68262,0.0 73.10385,33.68247,0.0 73.1037,33.68237,0.0 73.10359,33.6823,0.0 73.10355,33.68227,0.0 73.10229,33.68155,0.0 73.1021,33.68144,0.0 73.10195,33.68136,0.0 73.10051,33.6806,0.0 73.09978,33.68022,0.0 73.09885,33.67972,0.0 73.0978,33.67916,0.0 73.09723,33.67883,0.0 73.09672,33.67848,0.0 73.09636,33.67817,0.0 73.09617,33.67794,0.0 73.096,33.67762,0.0 73.09563,33.67682,0.0 73.09486,33.67517,0.0 73.09486,33.67516,0.0 73.09476,33.67493,0.0 73.09435,33.67402,0.0 73.09431,33.67395,0.0 73.09385,33.67308,0.0 73.09302,33.67152,0.0 73.09269,33.67096,0.0 73.09248,33.67067,0.0 73.09226,33.6704,0.0 73.0917,33.66975,0.0 73.09065,33.66865,0.0 73.08934,33.66704,0.0 73.08918,33.66684,0.0 73.08835,33.66593,0.0 73.08746,33.66479,0.0 73.08738,33.66471,0.0 73.08716,33.66447,0.0 73.08695,33.66422,0.0 73.08666,33.66389,0.0 73.08652,33.66365,0.0 73.08649,33.66357,0.0 73.08649,33.66351,0.0 73.08649,33.66345,0.0 73.0865,33.66339,0.0 73.08653,33.66334,0.0 73.08657,33.66326,0.0 73.08662,33.66321,0.0 73.08671,33.66315,0.0 73.08681,33.66311,0.0 73.08701,33.66308,0.0 73.08714,33.6631,0.0 73.08726,33.66315,0.0 73.08734,33.66321,0.0 73.08743,33.66329,0.0 73.08747,33.66338,0.0 73.08749,33.66348,0.0 73.08747,33.66361,0.0 73.08746,33.66363,0.0 73.08738,33.66396,0.0 73.08698,33.66452,0.0 73.08672,33.66485,0.0 73.08508,33.66713,0.0 73.08135,33.67206,0.0 73.07811,33.67638,0.0 73.0781,33.67637,0.0 73.07808,33.67637,0.0 73.07806,33.67637,0.0 73.07804,33.67637,0.0 73.07802,33.67638,0.0 73.078,33.67639,0.0 73.07796,33.67641,0.0 73.07792,33.67644,0.0 73.07773,33.67662,0.0 73.07754,33.67678,0.0 73.07746,33.67687,0.0 73.07729,33.67701,0.0 73.07719,33.67706,0.0 73.07705,33.67709,0.0 73.07695,33.67711,0.0 73.07681,33.67711,0.0 73.07659,33.67709,0.0 73.07648,33.67706,0.0 73.07633,33.67702,0.0 73.07625,33.677,0.0 73.07617,33.67698,0.0 73.07606,33.67697,0.0 73.07592,33.67698,0.0 73.07583,33.67699,0.0 73.07574,33.67701,0.0 73.07568,33.67702,0.0 73.07562,33.67704,0.0 73.07545,33.67724,0.0 73.07521,33.6771,0.0 73.07486,33.67695,0.0 73.07458,33.67677,0.0 73.0741,33.67656,0.0 73.07357,33.67629,0.0 73.07277,33.67585,0.0 73.07179,33.67532,0.0 73.07027,33.67451,0.0 73.07017,33.67447,0.0 73.07013,33.67445,0.0 73.06746,33.67306,0.0 73.06733,33.67299,0.0 73.06641,33.67418,0.0 73.06622,33.67442,0.0 73.0657,33.67513,0.0 73.06562,33.67526,0.0 73.06555,33.67543,0.0 73.0654,33.67578,0.0 73.06532,33.67604,0.0 73.06531,33.6761,0.0 73.0653,33.67616,0.0 73.06528,33.67631,0.0 73.06526,33.67646,0.0 73.06512,33.67823,0.0 73.06508,33.67943,0.0 73.06496,33.68099,0.0 73.06482,33.68246,0.0 73.06481,33.68266,0.0 73.0648,33.68279,0.0 73.06475,33.68314,0.0 73.06458,33.68383,0.0 73.06439,33.68447,0.0 73.06431,33.68477,0.0 73.06365,33.68689,0.0 73.06355,33.68731,0.0 73.06351,33.68744,0.0 73.06338,33.68771,0.0 73.06323,33.68796,0.0 73.06292,33.68844,0.0 73.0621,33.68955,0.0 73.062,33.68969,0.0 73.06196,33.68981,0.0 73.0619,33.68982,0.0 73.06185,33.68984,0.0 73.0618,33.68985,0.0 73.06176,33.68987,0.0 73.06171,33.68989,0.0 73.06167,33.68992,0.0 73.06163,33.68995,0.0 73.06159,33.68999,0.0 73.06155,33.69001,0.0 73.06152,33.69006,0.0 73.06149,33.6901,0.0 73.06146,33.69015,0.0 73.06145,33.69019,0.0 73.06143,33.69024,0.0 73.06142,33.69029,0.0 73.06142,33.69034,0.0 73.06143,33.69042,0.0 73.06145,33.6905,0.0 73.06148,33.69057,0.0 73.06153,33.69064,0.0 73.06159,33.6907,0.0 73.06166,33.69075,0.0 73.06173,33.69079,0.0 73.06182,33.69082,0.0 73.06185,33.69084,0.0 73.06188,33.69085,0.0 73.06191,33.69085,0.0 73.06194,33.69086,0.0 73.06198,33.69086,0.0 73.06201,33.69087,0.0 73.06205,33.69087,0.0 73.0621,33.69087,0.0 73.06216,33.69092,0.0 73.06221,33.69097,0.0 73.06227,33.69104,0.0 73.06235,33.69115,0.0 73.06232,33.69128,0.0 73.06228,33.6914,0.0 73.06218,33.69169,0.0 73.06213,33.69188,0.0 73.06187,33.69257,0.0 73.06186,33.69258,0.0 73.06175,33.69265,0.0 73.06166,33.69271,0.0 73.06156,33.69273,0.0 73.06145,33.69273,0.0 73.06135,33.69271,0.0 73.06125,33.69267,0.0 73.06115,33.69261,0.0 73.06097,33.69249,0.0 73.06085,33.69242,0.0 73.06077,33.69238,0.0 73.06064,33.69232,0.0 73.06054,33.6923,0.0 73.06043,33.69227,0.0 73.06023,33.69217,0.0 73.05598,33.68996,0.0 73.05586,33.6899,0.0 73.05579,33.69,0.0 73.05552,33.69038,0.0 73.05517,33.69081,0.0 73.0549,33.69118,0.0 73.05457,33.69162,0.0 73.05442,33.69182,0.0 73.05433,33.69195,0.0 73.05392,33.69248,0.0 73.05387,33.69255,0.0 73.05382,33.69263,0.0 73.05362,33.69286,0.0 73.05342,33.69299,0.0 73.05325,33.69307,0.0 73.05303,33.69316,0.0 73.05299,33.69317,0.0 73.05274,33.69325,0.0 73.05264,33.6933,0.0 73.05256,33.69335,0.0 73.05242,33.69351,0.0 73.05232,33.69366,0.0 73.05207,33.69401,0.0 73.05197,33.69417,0.0 73.0521,33.69423,0.0 73.05245,33.69442,0.0 73.05251,33.69445,0.0 73.05311,33.69476,0.0 73.05319,33.69481,0.0 73.05322,33.69489,0.0 73.05321,33.69497,0.0 73.05187,33.69666,0.0 73.05141,33.69726,0.0 73.05133,33.69736,0.0 73.05143,33.69742,0.0 73.0532,33.69833,0.0 73.05336,33.6984,0.0 73.0535,33.69847,0.0 73.05353,33.69849,0.0 73.0561,33.69985,0.0 73.05866,33.70112,0.0 73.05867,33.70114,0.0 73.05868,33.70117,0.0 73.05865,33.70123,0.0 73.05858,33.70131,0.0 73.0584,33.70153,0.0 73.0575,33.70272,0.0 73.05538,33.70557,0.0 73.05477,33.70637,0.0 73.0547,33.7065,0.0 73.05442,33.70689,0.0 73.05439,33.70691,0.0 73.05434,33.70692,0.0 73.05427,33.70693,0.0 73.05417,33.70692,0.0 73.05408,33.70689,0.0 73.05399,33.70687,0.0 73.05264,33.70615,0.0 73.05257,33.70611,0.0 73.05107,33.70532,0.0 73.05042,33.70498,0.0 73.04667,33.70304,0.0 73.04656,33.70299,0.0 73.0465,33.70308,0.0 73.04635,33.70328,0.0 73.04595,33.70384,0.0 73.0457,33.70417,0.0 73.04553,33.70439,0.0 73.04537,33.70462,0.0 73.04476,33.70541,0.0 73.04472,33.70545,0.0 73.04468,33.70547,0.0 73.04465,33.70548,0.0 73.04461,33.70549,0.0 73.04457,33.70549,0.0 73.04454,33.70549,0.0 73.04451,33.70549,0.0 73.04447,33.70549,0.0 73.04436,33.70545,0.0 73.04411,33.70535,0.0 73.04398,33.70535,0.0 73.04268,33.70468,0.0 73.04253,33.70461,0.0 73.04244,33.70475,0.0 73.04173,33.70564,0.0 73.04123,33.7063,0.0 73.04096,33.70667,0.0 73.0408,33.70687,0.0 73.04036,33.70746,0.0 73.03988,33.70809,0.0 73.03959,33.70848,0.0 73.03949,33.70862,0.0 73.03937,33.70877,0.0 73.03889,33.70943,0.0 73.03876,33.70962,0.0 73.03833,33.71022,0.0 73.03776,33.71091,0.0 73.03749,33.71125,0.0 73.03753,33.71128,0.0 73.03761,33.71133,0.0 73.03797,33.71087,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Rawat, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1969818,33.4896586,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Khanna Pul, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1136762,33.6292385,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Park Rd, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1443592,33.6740932,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Benazir Bhutto Rd, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0874635,33.6636289,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pitras Bukhari Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0652989,33.6761562,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Pitras Bukhari Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0647966,33.6827893,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Hanna Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0533555,33.6984008,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ibn-e-Sina Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0526408,33.7061457,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Johar Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0379741,33.7108679,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 1-B-A</name>
<Placemark>
<name>Directions from Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory to Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.02666,33.63227,0.0 73.02662,33.63235,0.0 73.02681,33.63243,0.0 73.03012,33.63425,0.0 73.03055,33.63448,0.0 73.03084,33.63462,0.0 73.03217,33.63526,0.0 73.03294,33.63564,0.0 73.03768,33.63815,0.0 73.04029,33.63956,0.0 73.04107,33.63997,0.0 73.04146,33.64019,0.0 73.04183,33.64039,0.0 73.0433,33.64114,0.0 73.04333,33.64115,0.0 73.04308,33.64146,0.0 73.04318,33.64151,0.0 73.04378,33.64184,0.0 73.04357,33.64209,0.0 73.04334,33.64233,0.0 73.04312,33.64262,0.0 73.04298,33.6428,0.0 73.04277,33.64308,0.0 73.04258,33.64334,0.0 73.04228,33.64374,0.0 73.04155,33.64475,0.0 73.04124,33.64513,0.0 73.04097,33.6455,0.0 73.04073,33.64583,0.0 73.04048,33.64617,0.0 73.04024,33.64647,0.0 73.03996,33.64683,0.0 73.03971,33.64717,0.0 73.03939,33.64762,0.0 73.03937,33.64765,0.0 73.03949,33.64771,0.0 73.04079,33.64837,0.0 73.04127,33.64863,0.0 73.04209,33.64907,0.0 73.04301,33.64956,0.0 73.04336,33.64975,0.0 73.04402,33.65007,0.0 73.04468,33.65041,0.0 73.04533,33.65075,0.0 73.04689,33.65152,0.0 73.04831,33.65223,0.0 73.04923,33.65269,0.0 73.05104,33.65365,0.0 73.05188,33.65409,0.0 73.05292,33.65467,0.0 73.05473,33.65557,0.0 73.05564,33.65606,0.0 73.05519,33.65663,0.0 73.05509,33.65677,0.0 73.05437,33.65776,0.0 73.05283,33.65983,0.0 73.05189,33.66104,0.0 73.0509,33.66238,0.0 73.04985,33.66381,0.0 73.04996,33.66387,0.0 73.05261,33.66527,0.0 73.05517,33.66658,0.0 73.05643,33.66729,0.0 73.05668,33.66741,0.0 73.05679,33.66753,0.0 73.05686,33.66758,0.0 73.05724,33.66782,0.0 73.05793,33.66819,0.0 73.05822,33.66835,0.0 73.05824,33.66847,0.0 73.05825,33.66854,0.0 73.05827,33.66863,0.0 73.05827,33.66873,0.0 73.05826,33.66882,0.0 73.05826,33.66891,0.0 73.05825,33.66899,0.0 73.05798,33.66933,0.0 73.05778,33.66959,0.0 73.05623,33.67168,0.0 73.05532,33.67283,0.0 73.05452,33.67394,0.0 73.05448,33.67399,0.0 73.05373,33.67496,0.0 73.05363,33.67509,0.0 73.05294,33.67609,0.0 73.05286,33.67621,0.0 73.05283,33.67624,0.0 73.05119,33.67845,0.0 73.05117,33.67847,0.0 73.05112,33.67854,0.0 73.05074,33.67907,0.0 73.04918,33.68117,0.0 73.04897,33.68143,0.0 73.04895,33.68146,0.0 73.04894,33.68148,0.0 73.04892,33.68151,0.0 73.04892,33.68153,0.0 73.04892,33.68155,0.0 73.04892,33.68157,0.0 73.04893,33.6816,0.0 73.04897,33.68164,0.0 73.04885,33.68181,0.0 73.04874,33.68196,0.0 73.0487,33.68201,0.0 73.04866,33.68207,0.0 73.04865,33.6821,0.0 73.04865,33.68214,0.0 73.04866,33.68216,0.0 73.04825,33.68238,0.0 73.04796,33.68246,0.0 73.04782,33.6825,0.0 73.04768,33.68254,0.0 73.04756,33.68257,0.0 73.04722,33.68264,0.0 73.04691,33.6827,0.0 73.04649,33.68278,0.0 73.04603,33.68289,0.0 73.04576,33.68293,0.0 73.04557,33.68293,0.0 73.04538,33.68292,0.0 73.04522,33.68291,0.0 73.04509,33.68289,0.0 73.04482,33.68276,0.0 73.04293,33.68173,0.0 73.04288,33.68171,0.0 73.04283,33.68169,0.0 73.04279,33.68169,0.0 73.04276,33.68169,0.0 73.04272,33.68169,0.0 73.0427,33.68169,0.0 73.04268,33.6817,0.0 73.04267,33.68171,0.0 73.04265,33.68172,0.0 73.04128,33.681,0.0 73.04031,33.6805,0.0 73.03931,33.68009,0.0 73.03837,33.67962,0.0 73.03798,33.67941,0.0 73.0378,33.67932,0.0 73.03763,33.67954,0.0 73.0374,33.67988,0.0 73.03726,33.68009,0.0 73.03717,33.68019,0.0 73.03716,33.68021,0.0 73.03712,33.68026,0.0 73.03702,33.68038,0.0 73.03671,33.68083,0.0 73.03648,33.68115,0.0 73.03624,33.68148,0.0 73.0359,33.6819,0.0 73.03549,33.68246,0.0 73.0351,33.68294,0.0 73.03491,33.6832,0.0 73.03476,33.68339,0.0 73.03397,33.68455,0.0 73.03385,33.6847,0.0 73.03344,33.68518,0.0 73.03309,33.68569,0.0 73.03274,33.68616,0.0 73.03239,33.68664,0.0 73.03203,33.68712,0.0 73.03156,33.6877,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03016,33.68958,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03153,33.69274,0.0 73.03149,33.69279,0.0 73.03145,33.69285,0.0 73.03112,33.69331,0.0 73.0309,33.69361,0.0 73.03088,33.69364,0.0 73.03067,33.69395,0.0 73.03028,33.69446,0.0 73.0302,33.69456,0.0 73.03033,33.69465,0.0 73.03666,33.69799,0.0 73.03716,33.69825,0.0 73.03731,33.69833,0.0 73.03742,33.69838,0.0 73.0377,33.69851,0.0 73.03796,33.69864,0.0 73.03836,33.69885,0.0 73.03889,33.69907,0.0 73.04272,33.70108,0.0 73.0462,33.70293,0.0 73.0465,33.70308,0.0 73.0466,33.70313,0.0 73.04682,33.70325,0.0 73.0495,33.70466,0.0 73.05003,33.70492,0.0 73.05027,33.70504,0.0 73.05034,33.70507,0.0 73.05248,33.70624,0.0 73.0542,33.70716,0.0 73.05404,33.70732,0.0 73.05401,33.70738,0.0 73.054,33.70742,0.0 73.05401,33.70746,0.0 73.05403,33.70749,0.0 73.05411,33.70757,0.0 73.05424,33.70764,0.0 73.0545,33.70775,0.0 73.05423,33.70811,0.0 73.05394,33.70851,0.0 73.05393,33.70852,0.0 73.05388,33.70852,0.0 73.05385,33.70853,0.0 73.05381,33.70855,0.0 73.05378,33.70856,0.0 73.05375,33.70858,0.0 73.05373,33.7086,0.0 73.0537,33.70863,0.0 73.05368,33.70865,0.0 73.05366,33.70868,0.0 73.05365,33.7087,0.0 73.05364,33.70873,0.0 73.05363,33.70876,0.0 73.05363,33.70878,0.0 73.05363,33.70882,0.0 73.05364,33.70888,0.0 73.05365,33.70889,0.0 73.05365,33.70891,0.0 73.05367,33.70894,0.0 73.05369,33.70896,0.0 73.05371,33.70899,0.0 73.05373,33.70901,0.0 73.05375,33.70902,0.0 73.05378,33.70904,0.0 73.05381,33.70906,0.0 73.05384,33.70907,0.0 73.05387,33.70908,0.0 73.0539,33.70908,0.0 73.05393,33.70909,0.0 73.05396,33.70909,0.0 73.05402,33.70909,0.0 73.05403,33.70909,0.0 73.05452,33.70933,0.0 73.05711,33.71067,0.0 73.05741,33.71082,0.0 73.05757,33.71088,0.0 73.05823,33.71119,0.0 73.05827,33.71121,0.0 73.05866,33.71144,0.0 73.05989,33.71207,0.0 73.06156,33.71296,0.0 73.06312,33.71379,0.0 73.06326,33.71386,0.0 73.0676,33.71611,0.0 73.0685,33.71657,0.0 73.07015,33.71745,0.0 73.07048,33.71764,0.0 73.07083,33.71781,0.0 73.07107,33.71793,0.0 73.07137,33.71809,0.0 73.07146,33.71814,0.0 73.07173,33.71828,0.0 73.07196,33.71839,0.0 73.07218,33.7185,0.0 73.07223,33.71853,0.0 73.07236,33.71859,0.0 73.07256,33.71869,0.0 73.07493,33.71993,0.0 73.07582,33.7204,0.0 73.08167,33.72348,0.0 73.08181,33.72355,0.0 73.08207,33.7237,0.0 73.08345,33.72439,0.0 73.08507,33.72525,0.0 73.08826,33.72693,0.0 73.0881,33.72713,0.0 73.08761,33.72787,0.0 73.08717,33.72842,0.0 73.087,33.72863,0.0 73.08667,33.72907,0.0 73.08517,33.73106,0.0 73.0846,33.73182,0.0 73.08453,33.7319,0.0 73.08494,33.73213,0.0 73.08537,33.73236,0.0 73.08549,33.73245,0.0 73.08588,33.73272,0.0 73.08606,33.73284,0.0 73.08829,33.73399,0.0 73.08918,33.73443,0.0 73.08965,33.73468,0.0 73.08986,33.73479,0.0 73.09025,33.73496,0.0 73.09066,33.73511,0.0 73.09103,33.73523,0.0 73.09131,33.73531,0.0 73.09147,33.73535,0.0 73.09168,33.7354,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.026664,33.6322698,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Chinar Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0393899,33.6476232,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Street 6, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.055094,33.6567678,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Dalda Mill Stop, Service Road North, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0499566,33.6638701,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd E, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0537296,33.674964,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd E, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0476761,33.6825436,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0301569,33.6895816,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ibn-e-Sina Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0502695,33.7050383,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Constitution Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0916799,33.7354022,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Style id='icon-503-DB4436-nodesc-normal'>
<IconStyle>
<color>ff3644DB</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x='16' y='31' xunits='pixels' yunits='insetPixels'>
</hotSpot>
</IconStyle>
<LabelStyle>
<scale>0.0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id='icon-503-DB4436-nodesc-highlight'>
<IconStyle>
<color>ff3644DB</color>
<scale>1.1</scale>
<Icon>
<href>http://www.gstatic.com/mapspro/images/stock/503-wht-blank_maps.png</href>
</Icon>
<hotSpot x='16' y='31' xunits='pixels' yunits='insetPixels'>
</hotSpot>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id='icon-503-DB4436-nodesc'>
<Pair>
<key>normal</key>
<styleUrl>#icon-503-DB4436-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-503-DB4436-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id='line-1267FF-5-nodesc-normal'>
<LineStyle>
<color>ffFF6712</color>
<width>5</width>
</LineStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<Style id='line-1267FF-5-nodesc-highlight'>
<LineStyle>
<color>ffFF6712</color>
<width>8.0</width>
</LineStyle>
<BalloonStyle>
<text><![CDATA[<h3>$[name]</h3>]]></text>
</BalloonStyle>
</Style>
<StyleMap id='line-1267FF-5-nodesc'>
<Pair>
<key>normal</key>
<styleUrl>#line-1267FF-5-nodesc-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#line-1267FF-5-nodesc-highlight</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>Route 120</name>
<Placemark>
<name>Directions from Golra, Islamabad, Islamabad Capital Territory to Bari Imam Complex, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>72.97714,33.69322,0.0 72.97753,33.693,0.0 72.97758,33.69296,0.0 72.97761,33.69294,0.0 72.97763,33.69289,0.0 72.97763,33.69286,0.0 72.97764,33.69284,0.0 72.97765,33.69277,0.0 72.97765,33.69276,0.0 72.97765,33.69272,0.0 72.97764,33.69268,0.0 72.97764,33.69263,0.0 72.97764,33.69258,0.0 72.97763,33.69253,0.0 72.97761,33.69247,0.0 72.97753,33.69227,0.0 72.97752,33.69222,0.0 72.97751,33.69218,0.0 72.97751,33.69214,0.0 72.9775,33.6921,0.0 72.97764,33.69186,0.0 72.97778,33.69166,0.0 72.97787,33.69154,0.0 72.97792,33.69149,0.0 72.97802,33.69142,0.0 72.97812,33.69137,0.0 72.97818,33.69133,0.0 72.97833,33.69127,0.0 72.97837,33.69124,0.0 72.97849,33.69115,0.0 72.97862,33.69098,0.0 72.97868,33.69089,0.0 72.97878,33.69078,0.0 72.97887,33.69068,0.0 72.97904,33.69057,0.0 72.97914,33.69051,0.0 72.97936,33.69044,0.0 72.97952,33.69039,0.0 72.9797,33.69032,0.0 72.97982,33.69026,0.0 72.97988,33.69021,0.0 72.97992,33.69015,0.0 72.97998,33.69005,0.0 72.98001,33.68992,0.0 72.98003,33.68985,0.0 72.98004,33.68978,0.0 72.98005,33.68967,0.0 72.98005,33.68956,0.0 72.98009,33.6894,0.0 72.98015,33.6892,0.0 72.98033,33.68895,0.0 72.98174,33.68968,0.0 72.98187,33.68959,0.0 72.982,33.68954,0.0 72.98275,33.68863,0.0 72.98312,33.68816,0.0 72.98362,33.68743,0.0 72.98383,33.68714,0.0 72.98413,33.68677,0.0 72.98443,33.68632,0.0 72.98463,33.68606,0.0 72.98503,33.68548,0.0 72.98511,33.68539,0.0 72.98566,33.68469,0.0 72.98574,33.68459,0.0 72.986,33.68423,0.0 72.98626,33.68389,0.0 72.98637,33.68375,0.0 72.98651,33.68361,0.0 72.9867,33.68344,0.0 72.98682,33.68337,0.0 72.987,33.68326,0.0 72.98715,33.6832,0.0 72.9873,33.68315,0.0 72.98817,33.68292,0.0 72.98872,33.68282,0.0 72.98908,33.68277,0.0 72.98938,33.68272,0.0 72.99091,33.68249,0.0 72.99121,33.68375,0.0 72.99129,33.68398,0.0 72.9914,33.68421,0.0 72.99157,33.68448,0.0 72.99181,33.68475,0.0 72.99208,33.68501,0.0 72.99237,33.68522,0.0 72.99276,33.68543,0.0 72.99442,33.68624,0.0 72.99454,33.6863,0.0 72.9959,33.68707,0.0 72.99606,33.68709,0.0 72.9962,33.68709,0.0 72.99641,33.68706,0.0 72.99681,33.68695,0.0 72.99754,33.68673,0.0 72.99768,33.6867,0.0 72.99784,33.68671,0.0 72.99804,33.68675,0.0 73.00092,33.68834,0.0 73.00251,33.6892,0.0 73.00432,33.69019,0.0 73.00692,33.69153,0.0 73.00823,33.69222,0.0 73.01235,33.69431,0.0 73.01259,33.69441,0.0 73.01281,33.69453,0.0 73.01339,33.69484,0.0 73.01391,33.69508,0.0 73.01399,33.6952,0.0 73.01401,33.69525,0.0 73.01402,33.69531,0.0 73.01402,33.69536,0.0 73.01399,33.69541,0.0 73.01389,33.69555,0.0 73.01354,33.69603,0.0 73.01335,33.69629,0.0 73.01296,33.69681,0.0 73.0128,33.69701,0.0 73.01249,33.69744,0.0 73.01228,33.69773,0.0 73.0124,33.69779,0.0 73.01284,33.6972,0.0 73.01433,33.69531,0.0 73.01438,33.69525,0.0 73.01455,33.69503,0.0 73.01626,33.69275,0.0 73.01723,33.69145,0.0 73.01767,33.6909,0.0 73.0178,33.6907,0.0 73.01789,33.69064,0.0 73.01822,33.6905,0.0 73.01823,33.6905,0.0 73.01825,33.6905,0.0 73.01828,33.69049,0.0 73.01831,33.69049,0.0 73.01834,33.69048,0.0 73.01837,33.69047,0.0 73.0184,33.69046,0.0 73.01843,33.69045,0.0 73.01846,33.69044,0.0 73.01848,33.69042,0.0 73.01854,33.69036,0.0 73.01859,33.69029,0.0 73.01863,33.69022,0.0 73.01866,33.69017,0.0 73.01868,33.69011,0.0 73.01869,33.69003,0.0 73.01868,33.68991,0.0 73.01865,33.68982,0.0 73.01859,33.68973,0.0 73.01862,33.68965,0.0 73.01899,33.68909,0.0 73.0192,33.68879,0.0 73.01929,33.68869,0.0 73.01957,33.68832,0.0 73.02317,33.68358,0.0 73.02444,33.68413,0.0 73.02967,33.68692,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03011,33.68965,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03153,33.69274,0.0 73.03149,33.69279,0.0 73.03145,33.69285,0.0 73.03112,33.69331,0.0 73.0309,33.69361,0.0 73.03088,33.69364,0.0 73.03067,33.69395,0.0 73.03028,33.69446,0.0 73.0302,33.69456,0.0 73.03033,33.69465,0.0 73.03666,33.69799,0.0 73.03716,33.69825,0.0 73.03731,33.69833,0.0 73.03742,33.69838,0.0 73.0377,33.69851,0.0 73.03796,33.69864,0.0 73.03836,33.69885,0.0 73.03889,33.69907,0.0 73.04272,33.70108,0.0 73.0462,33.70293,0.0 73.0465,33.70308,0.0 73.0466,33.70313,0.0 73.04682,33.70325,0.0 73.0495,33.70466,0.0 73.05003,33.70492,0.0 73.05034,33.70507,0.0 73.05059,33.70521,0.0 73.05248,33.70624,0.0 73.0542,33.70716,0.0 73.05404,33.70732,0.0 73.05401,33.70738,0.0 73.054,33.70742,0.0 73.05401,33.70746,0.0 73.05403,33.70749,0.0 73.05411,33.70757,0.0 73.05424,33.70764,0.0 73.0545,33.70775,0.0 73.05423,33.70811,0.0 73.05394,33.70851,0.0 73.05393,33.70852,0.0 73.05388,33.70852,0.0 73.05385,33.70853,0.0 73.05381,33.70855,0.0 73.05378,33.70856,0.0 73.05375,33.70858,0.0 73.05373,33.7086,0.0 73.0537,33.70863,0.0 73.05368,33.70865,0.0 73.05366,33.70868,0.0 73.05365,33.7087,0.0 73.05364,33.70873,0.0 73.05363,33.70876,0.0 73.05363,33.70878,0.0 73.05363,33.70882,0.0 73.05364,33.70888,0.0 73.05365,33.70889,0.0 73.05365,33.70891,0.0 73.05367,33.70894,0.0 73.05369,33.70896,0.0 73.05371,33.70899,0.0 73.05373,33.70901,0.0 73.05375,33.70902,0.0 73.05378,33.70904,0.0 73.05381,33.70906,0.0 73.05384,33.70907,0.0 73.05387,33.70908,0.0 73.0539,33.70908,0.0 73.05393,33.70909,0.0 73.05396,33.70909,0.0 73.05402,33.70909,0.0 73.05403,33.70909,0.0 73.05408,33.70908,0.0 73.05411,33.70907,0.0 73.05415,33.70905,0.0 73.05419,33.70904,0.0 73.05422,33.70902,0.0 73.05425,33.70899,0.0 73.05428,33.70896,0.0 73.0543,33.70892,0.0 73.05431,33.7089,0.0 73.05432,33.70885,0.0 73.05433,33.70881,0.0 73.05433,33.70877,0.0 73.05432,33.70874,0.0 73.05431,33.70871,0.0 73.0546,33.70831,0.0 73.05489,33.70794,0.0 73.05519,33.70808,0.0 73.05556,33.70826,0.0 73.05579,33.70838,0.0 73.0561,33.70855,0.0 73.05616,33.70848,0.0 73.05642,33.70818,0.0 73.05644,33.70816,0.0 73.05789,33.70897,0.0 73.05809,33.70907,0.0 73.05861,33.70934,0.0 73.05873,33.7094,0.0 73.05935,33.70974,0.0 73.06081,33.71045,0.0 73.06193,33.71108,0.0 73.06236,33.7113,0.0 73.06279,33.71153,0.0 73.06364,33.71197,0.0 73.06478,33.71256,0.0 73.0649,33.71263,0.0 73.06515,33.7123,0.0 73.06538,33.71202,0.0 73.06553,33.7118,0.0 73.06566,33.71155,0.0 73.06572,33.7114,0.0 73.06575,33.71123,0.0 73.06585,33.71061,0.0 73.06589,33.71013,0.0 73.06595,33.70983,0.0 73.06601,33.70963,0.0 73.06611,33.70942,0.0 73.06659,33.7088,0.0 73.0667,33.70872,0.0 73.06695,33.70852,0.0 73.06707,33.70835,0.0 73.06798,33.70717,0.0 73.06848,33.70743,0.0 73.06941,33.70791,0.0 73.0695,33.70792,0.0 73.06959,33.70789,0.0 73.0697,33.70785,0.0 73.0702,33.70724,0.0 73.07074,33.70655,0.0 73.07111,33.70673,0.0 73.07132,33.70686,0.0 73.07146,33.70696,0.0 73.07163,33.70716,0.0 73.07204,33.70765,0.0 73.07215,33.70777,0.0 73.07231,33.70789,0.0 73.07265,33.70807,0.0 73.07546,33.70952,0.0 73.07647,33.71004,0.0 73.07659,33.71011,0.0 73.07663,33.71013,0.0 73.07673,33.71034,0.0 73.07674,33.71036,0.0 73.07688,33.71055,0.0 73.07688,33.71056,0.0 73.077,33.71063,0.0 73.07711,33.71069,0.0 73.07717,33.71072,0.0 73.07721,33.71074,0.0 73.0773,33.71083,0.0 73.07737,33.71096,0.0 73.07739,33.71102,0.0 73.07745,33.71112,0.0 73.07746,33.71114,0.0 73.07752,33.71123,0.0 73.0784,33.71164,0.0 73.07936,33.71211,0.0 73.08021,33.71255,0.0 73.08101,33.71297,0.0 73.0812,33.71306,0.0 73.08204,33.71357,0.0 73.08317,33.71415,0.0 73.084,33.71458,0.0 73.08467,33.71488,0.0 73.08444,33.7152,0.0 73.08406,33.7157,0.0 73.0837,33.71618,0.0 73.08336,33.71664,0.0 73.08302,33.71706,0.0 73.08265,33.71746,0.0 73.08263,33.71746,0.0 73.08263,33.71747,0.0 73.08262,33.71747,0.0 73.08261,33.71747,0.0 73.0826,33.71747,0.0 73.08259,33.71747,0.0 73.08258,33.71748,0.0 73.08257,33.71748,0.0 73.08256,33.71749,0.0 73.08255,33.71749,0.0 73.08255,33.7175,0.0 73.08254,33.7175,0.0 73.08254,33.71751,0.0 73.08253,33.71751,0.0 73.08253,33.71752,0.0 73.08252,33.71752,0.0 73.08252,33.71753,0.0 73.08251,33.71754,0.0 73.08251,33.71755,0.0 73.08251,33.71756,0.0 73.0825,33.71756,0.0 73.0825,33.71757,0.0 73.0825,33.71758,0.0 73.0825,33.71759,0.0 73.0825,33.7176,0.0 73.08251,33.71761,0.0 73.08251,33.71762,0.0 73.08251,33.71763,0.0 73.08252,33.71764,0.0 73.08253,33.71765,0.0 73.08253,33.71766,0.0 73.08254,33.71766,0.0 73.08254,33.71767,0.0 73.08255,33.71767,0.0 73.08256,33.71768,0.0 73.08257,33.71768,0.0 73.08257,33.71769,0.0 73.08258,33.71769,0.0 73.08259,33.71769,0.0 73.0826,33.7177,0.0 73.08261,33.7177,0.0 73.08262,33.7177,0.0 73.08263,33.7177,0.0 73.08264,33.7177,0.0 73.08265,33.7177,0.0 73.08266,33.7177,0.0 73.08267,33.7177,0.0 73.08268,33.7177,0.0 73.08269,33.7177,0.0 73.08269,33.71769,0.0 73.0827,33.71769,0.0 73.08271,33.71769,0.0 73.08272,33.71769,0.0 73.08272,33.71768,0.0 73.08273,33.71768,0.0 73.08274,33.71767,0.0 73.08275,33.71766,0.0 73.08276,33.71765,0.0 73.08277,33.71764,0.0 73.08277,33.71763,0.0 73.08278,33.71763,0.0 73.08278,33.71762,0.0 73.08278,33.71761,0.0 73.08279,33.7176,0.0 73.08279,33.71759,0.0 73.08279,33.71758,0.0 73.08279,33.71757,0.0 73.08279,33.71756,0.0 73.08278,33.71756,0.0 73.08278,33.71755,0.0 73.08323,33.71703,0.0 73.08346,33.71676,0.0 73.08368,33.71649,0.0 73.08458,33.71533,0.0 73.0848,33.71495,0.0 73.08486,33.71488,0.0 73.08628,33.713,0.0 73.08634,33.71292,0.0 73.08737,33.71152,0.0 73.08891,33.70949,0.0 73.08965,33.70855,0.0 73.09006,33.70801,0.0 73.09009,33.70796,0.0 73.0915,33.7087,0.0 73.09234,33.70918,0.0 73.09294,33.70949,0.0 73.09309,33.70956,0.0 73.09421,33.71015,0.0 73.09522,33.71067,0.0 73.096,33.71109,0.0 73.09673,33.71146,0.0 73.09897,33.71262,0.0 73.10045,33.71335,0.0 73.10149,33.71388,0.0 73.10248,33.7144,0.0 73.10284,33.71459,0.0 73.10361,33.715,0.0 73.10366,33.71502,0.0 73.10547,33.71599,0.0 73.10547,33.716,0.0 73.10547,33.71601,0.0 73.10547,33.71602,0.0 73.10546,33.71602,0.0 73.10546,33.71603,0.0 73.10546,33.71604,0.0 73.10521,33.71641,0.0 73.10416,33.71789,0.0 73.10323,33.71914,0.0 73.10097,33.72204,0.0 73.10081,33.72225,0.0 73.10048,33.72268,0.0 73.10011,33.7232,0.0 73.10037,33.72334,0.0 73.10212,33.72428,0.0 73.10213,33.72429,0.0 73.10245,33.72445,0.0 73.10543,33.72602,0.0 73.10794,33.72733,0.0 73.10841,33.72757,0.0 73.10974,33.72827,0.0 73.11094,33.7289,0.0 73.11144,33.72915,0.0 73.11156,33.72922,0.0 73.11163,33.72927,0.0 73.11167,33.72931,0.0 73.11168,33.72934,0.0 73.11169,33.72936,0.0 73.11169,33.72938,0.0 73.11169,33.7294,0.0 73.1117,33.72944,0.0 73.11169,33.72947,0.0 73.11071,33.73076,0.0 73.11025,33.73138,0.0 73.10881,33.73338,0.0 73.1076,33.73501,0.0 73.10722,33.73554,0.0 73.10728,33.7357,0.0 73.10794,33.73737,0.0 73.10808,33.73773,0.0 73.10846,33.73914,0.0 73.10863,33.7398,0.0 73.10872,33.74015,0.0 73.10895,33.74109,0.0 73.10924,33.74253,0.0 73.10959,33.74385,0.0 73.10975,33.74422,0.0 73.11015,33.74423,0.0 73.1112,33.74428,0.0 73.11148,33.74429,0.0 73.11176,33.7443,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Golra, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9771388,33.6932203,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Hillal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.98908,33.6827671,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>House No 14 Sumbal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0128081,33.6945269,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0301057,33.6896537,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ibn-e-Sina Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0505928,33.7052119,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sultan Bahu Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0684827,33.7074311,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Municipal Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0832332,33.7170266,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Khayaban-e-Suhrwardy, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1028439,33.7145928,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bari Imam Complex, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.1117557,33.7443035,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 121</name>
<Placemark>
<name>Directions from Abid Majeed Rd, Rawalpindi, Pakistan to Faisal Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.04264,33.59866,0.0 73.04262,33.59868,0.0 73.04254,33.59875,0.0 73.04104,33.59923,0.0 73.0383,33.60009,0.0 73.0366,33.6006,0.0 73.03541,33.60096,0.0 73.03463,33.6012,0.0 73.03438,33.60128,0.0 73.03432,33.60129,0.0 73.03428,33.60131,0.0 73.03375,33.60147,0.0 73.03287,33.60175,0.0 73.03038,33.60253,0.0 73.03029,33.60254,0.0 73.03023,33.60254,0.0 73.03009,33.60257,0.0 73.02987,33.60263,0.0 73.02954,33.60273,0.0 73.02937,33.60279,0.0 73.0292,33.60286,0.0 73.02912,33.6029,0.0 73.02903,33.60296,0.0 73.02811,33.60325,0.0 73.02714,33.60354,0.0 73.02528,33.60414,0.0 73.0247,33.60431,0.0 73.02388,33.60456,0.0 73.02217,33.60508,0.0 73.02175,33.60518,0.0 73.02132,33.60528,0.0 73.02076,33.60545,0.0 73.02049,33.60555,0.0 73.02024,33.60564,0.0 73.01994,33.60577,0.0 73.01942,33.60598,0.0 73.01922,33.60604,0.0 73.01799,33.60643,0.0 73.01714,33.60669,0.0 73.01647,33.60688,0.0 73.01463,33.60745,0.0 73.01454,33.60747,0.0 73.01442,33.60751,0.0 73.01414,33.60761,0.0 73.01388,33.60769,0.0 73.01365,33.60776,0.0 73.01213,33.60824,0.0 73.0115,33.60846,0.0 73.01082,33.60868,0.0 73.01048,33.60878,0.0 73.01024,33.60883,0.0 73.00997,33.60892,0.0 73.00904,33.6092,0.0 73.00852,33.60937,0.0 73.00801,33.60955,0.0 73.00719,33.60985,0.0 73.0068,33.60999,0.0 73.0058,33.61035,0.0 73.00578,33.61036,0.0 73.00525,33.61056,0.0 73.00493,33.61069,0.0 73.00471,33.61078,0.0 73.00455,33.61085,0.0 73.00442,33.6109,0.0 73.00365,33.61123,0.0 73.00305,33.61145,0.0 73.00156,33.61201,0.0 73.00131,33.61211,0.0 73.0012,33.61215,0.0 72.99972,33.61273,0.0 72.99936,33.61287,0.0 72.99847,33.61319,0.0 72.99807,33.61334,0.0 72.99773,33.61347,0.0 72.9977,33.61348,0.0 72.9973,33.61361,0.0 72.99694,33.61372,0.0 72.99629,33.61388,0.0 72.99557,33.614,0.0 72.99543,33.61402,0.0 72.99496,33.61408,0.0 72.99409,33.61419,0.0 72.99379,33.61424,0.0 72.99353,33.61428,0.0 72.99325,33.61432,0.0 72.99299,33.61436,0.0 72.99265,33.61441,0.0 72.99254,33.61442,0.0 72.99242,33.61444,0.0 72.9924,33.61444,0.0 72.9923,33.61446,0.0 72.99222,33.61447,0.0 72.99214,33.61448,0.0 72.99205,33.61449,0.0 72.99197,33.61451,0.0 72.99188,33.61453,0.0 72.99179,33.61455,0.0 72.99169,33.61457,0.0 72.99161,33.61459,0.0 72.99154,33.61461,0.0 72.99145,33.61463,0.0 72.99139,33.61465,0.0 72.99132,33.61467,0.0 72.99113,33.61473,0.0 72.99094,33.61479,0.0 72.99082,33.61483,0.0 72.99069,33.61488,0.0 72.99058,33.61492,0.0 72.99048,33.61496,0.0 72.99034,33.61501,0.0 72.99022,33.61506,0.0 72.99013,33.6151,0.0 72.98999,33.61516,0.0 72.98907,33.61567,0.0 72.98879,33.6158,0.0 72.98873,33.61584,0.0 72.98789,33.61624,0.0 72.98781,33.61627,0.0 72.98772,33.61632,0.0 72.98759,33.61638,0.0 72.9874,33.61646,0.0 72.98714,33.61655,0.0 72.98705,33.61659,0.0 72.98673,33.6167,0.0 72.98638,33.61681,0.0 72.98616,33.61689,0.0 72.98596,33.61696,0.0 72.98551,33.61712,0.0 72.98509,33.61728,0.0 72.98475,33.6174,0.0 72.98467,33.61742,0.0 72.98443,33.61749,0.0 72.98421,33.61756,0.0 72.98337,33.61778,0.0 72.98304,33.61788,0.0 72.98276,33.61796,0.0 72.98249,33.61806,0.0 72.98229,33.61815,0.0 72.98211,33.61825,0.0 72.98195,33.61834,0.0 72.98178,33.61845,0.0 72.98156,33.6186,0.0 72.98062,33.61935,0.0 72.98002,33.6198,0.0 72.97949,33.62017,0.0 72.97916,33.62038,0.0 72.97894,33.6205,0.0 72.97873,33.62062,0.0 72.97858,33.62071,0.0 72.97844,33.62079,0.0 72.97835,33.62085,0.0 72.978,33.62108,0.0 72.97766,33.62131,0.0 72.97712,33.62162,0.0 72.97619,33.62211,0.0 72.97561,33.62239,0.0 72.97523,33.62258,0.0 72.97488,33.62277,0.0 72.97469,33.62287,0.0 72.97401,33.62321,0.0 72.97222,33.62408,0.0 72.97062,33.62487,0.0 72.97004,33.62514,0.0 72.96982,33.62524,0.0 72.96958,33.62536,0.0 72.96936,33.62546,0.0 72.9692,33.62551,0.0 72.96894,33.62557,0.0 72.96843,33.62569,0.0 72.96802,33.62576,0.0 72.96758,33.62582,0.0 72.96734,33.62584,0.0 72.96712,33.62585,0.0 72.96672,33.62582,0.0 72.96623,33.62576,0.0 72.96424,33.62545,0.0 72.96113,33.62498,0.0 72.96049,33.62488,0.0 72.95884,33.62462,0.0 72.95565,33.62414,0.0 72.95435,33.62392,0.0 72.95416,33.6239,0.0 72.95417,33.62387,0.0 72.95416,33.6239,0.0 72.95388,33.62385,0.0 72.95362,33.6238,0.0 72.95326,33.62376,0.0 72.95292,33.62372,0.0 72.95259,33.62372,0.0 72.9525,33.62373,0.0 72.95208,33.62375,0.0 72.95159,33.62381,0.0 72.95128,33.62387,0.0 72.95098,33.62396,0.0 72.95057,33.62409,0.0 72.95019,33.62424,0.0 72.94992,33.62436,0.0 72.94975,33.62445,0.0 72.94957,33.62456,0.0 72.94927,33.62477,0.0 72.94639,33.62673,0.0 72.94526,33.6275,0.0 72.94539,33.6276,0.0 72.9454,33.6276,0.0 72.94574,33.62736,0.0 72.94585,33.62728,0.0 72.94604,33.62717,0.0 72.94654,33.62687,0.0 72.94936,33.62491,0.0 72.94975,33.62466,0.0 72.95009,33.62449,0.0 72.95043,33.62434,0.0 72.95073,33.62423,0.0 72.9511,33.62412,0.0 72.95142,33.62404,0.0 72.95176,33.62399,0.0 72.95228,33.62392,0.0 72.95247,33.62391,0.0 72.95274,33.62391,0.0 72.95318,33.62395,0.0 72.95369,33.62402,0.0 72.95374,33.62402,0.0 72.95383,33.62404,0.0 72.95417,33.62408,0.0 72.95442,33.62412,0.0 72.95629,33.62441,0.0 72.95813,33.62468,0.0 72.96045,33.62503,0.0 72.9607,33.62507,0.0 72.96224,33.6253,0.0 72.96405,33.62558,0.0 72.96501,33.62574,0.0 72.96603,33.62591,0.0 72.96641,33.62597,0.0 72.96686,33.62602,0.0 72.96718,33.62601,0.0 72.96759,33.62599,0.0 72.96804,33.62594,0.0 72.96842,33.62587,0.0 72.96883,33.62578,0.0 72.96911,33.6257,0.0 72.9692,33.62567,0.0 72.96952,33.62556,0.0 72.96995,33.62538,0.0 72.97245,33.62412,0.0 72.97502,33.62285,0.0 72.97505,33.62284,0.0 72.9757,33.62252,0.0 72.97628,33.62224,0.0 72.97675,33.62199,0.0 72.97728,33.62172,0.0 72.97777,33.6215,0.0 72.97823,33.62126,0.0 72.97862,33.62103,0.0 72.97868,33.621,0.0 72.97884,33.62089,0.0 72.97925,33.6206,0.0 72.97971,33.62022,0.0 72.98072,33.61944,0.0 72.98178,33.61862,0.0 72.98192,33.61853,0.0 72.98203,33.61845,0.0 72.98212,33.61839,0.0 72.98222,33.61834,0.0 72.98242,33.61823,0.0 72.98252,33.61819,0.0 72.98268,33.61812,0.0 72.98312,33.61798,0.0 72.98362,33.61785,0.0 72.98432,33.61767,0.0 72.98474,33.61756,0.0 72.98521,33.61744,0.0 72.98543,33.61739,0.0 72.98557,33.61736,0.0 72.98582,33.61728,0.0 72.98632,33.61714,0.0 72.98642,33.61711,0.0 72.98663,33.61703,0.0 72.98685,33.61694,0.0 72.98708,33.61682,0.0 72.9872,33.61676,0.0 72.98761,33.61656,0.0 72.98905,33.61584,0.0 72.98918,33.61575,0.0 72.98924,33.61577,0.0 72.98927,33.61577,0.0 72.98931,33.61576,0.0 72.9896,33.61565,0.0 72.98993,33.61551,0.0 72.99003,33.61547,0.0 72.99051,33.61527,0.0 72.99081,33.61517,0.0 72.99139,33.61499,0.0 72.99159,33.61495,0.0 72.9918,33.61491,0.0 72.992,33.61488,0.0 72.99218,33.61486,0.0 72.99238,33.61487,0.0 72.99254,33.61489,0.0 72.99272,33.61493,0.0 72.99305,33.61502,0.0 72.99317,33.61507,0.0 72.9933,33.61511,0.0 72.99338,33.61513,0.0 72.9938,33.61527,0.0 72.99393,33.61531,0.0 72.99405,33.61537,0.0 72.9946,33.61565,0.0 72.99495,33.61583,0.0 72.99504,33.61588,0.0 72.99582,33.61628,0.0 72.99606,33.61635,0.0 72.99613,33.61638,0.0 72.99787,33.6173,0.0 72.99859,33.61768,0.0 72.99859,33.61769,0.0 72.99848,33.61805,0.0 72.99882,33.61824,0.0 72.99934,33.61853,0.0 72.99988,33.61881,0.0 73.00192,33.61988,0.0 73.00214,33.61999,0.0 73.00289,33.62037,0.0 73.00521,33.62157,0.0 73.00564,33.62179,0.0 73.01032,33.62423,0.0 73.01245,33.62534,0.0 73.01619,33.62732,0.0 73.01686,33.62765,0.0 73.02136,33.63005,0.0 73.02295,33.63087,0.0 73.02341,33.63111,0.0 73.02417,33.63149,0.0 73.02637,33.63268,0.0 73.02656,33.63276,0.0 73.03007,33.63461,0.0 73.03373,33.63655,0.0 73.03383,33.63661,0.0 73.03492,33.6372,0.0 73.03507,33.63728,0.0 73.03463,33.6379,0.0 73.03445,33.63814,0.0 73.03427,33.63837,0.0 73.03409,33.63863,0.0 73.03391,33.63888,0.0 73.03373,33.63912,0.0 73.03355,33.63937,0.0 73.03323,33.63978,0.0 73.03277,33.64034,0.0 73.03262,33.64059,0.0 73.03243,33.64085,0.0 73.03226,33.64109,0.0 73.03208,33.64133,0.0 73.0319,33.64158,0.0 73.03173,33.64183,0.0 73.03155,33.6421,0.0 73.03136,33.64234,0.0 73.03117,33.64259,0.0 73.03098,33.64282,0.0 73.03075,33.64309,0.0 73.03079,33.64312,0.0 73.03682,33.6463,0.0 73.03681,33.64631,0.0 73.03649,33.64679,0.0 73.03706,33.64708,0.0 73.03751,33.6473,0.0 73.04061,33.64891,0.0 73.04093,33.64908,0.0 73.0417,33.6495,0.0 73.04272,33.65007,0.0 73.0429,33.65015,0.0 73.04383,33.65065,0.0 73.04462,33.65104,0.0 73.04652,33.65201,0.0 73.04792,33.65279,0.0 73.04793,33.6528,0.0 73.04985,33.6538,0.0 73.05229,33.6551,0.0 73.05519,33.65663,0.0 73.05567,33.65688,0.0 73.05992,33.6591,0.0 73.06239,33.66041,0.0 73.06402,33.66126,0.0 73.06343,33.66212,0.0 73.06327,33.66234,0.0 73.06321,33.66242,0.0 73.06317,33.66247,0.0 73.06161,33.66456,0.0 73.06152,33.66469,0.0 73.06165,33.66474,0.0 73.06194,33.6649,0.0 73.06199,33.66496,0.0 73.06188,33.66513,0.0 73.06161,33.66547,0.0 73.06149,33.66583,0.0 73.06149,33.66584,0.0 73.06008,33.66774,0.0 73.05874,33.66954,0.0 73.05625,33.67287,0.0 73.05575,33.67356,0.0 73.05457,33.67519,0.0 73.05422,33.67566,0.0 73.0537,33.67635,0.0 73.05358,33.67651,0.0 73.05356,33.67654,0.0 73.05349,33.67663,0.0 73.05344,33.67669,0.0 73.05326,33.67691,0.0 73.05288,33.67744,0.0 73.05234,33.67811,0.0 73.05219,33.67828,0.0 73.05166,33.67898,0.0 73.05151,33.67918,0.0 73.05141,33.67934,0.0 73.05118,33.67965,0.0 73.05097,33.67982,0.0 73.05065,33.6801,0.0 73.05033,33.68047,0.0 73.04991,33.68094,0.0 73.04971,33.68118,0.0 73.04961,33.68129,0.0 73.04936,33.68158,0.0 73.04912,33.6818,0.0 73.04891,33.68198,0.0 73.04871,33.68214,0.0 73.04866,33.68216,0.0 73.04825,33.68238,0.0 73.04796,33.68246,0.0 73.04782,33.6825,0.0 73.04756,33.68257,0.0 73.04743,33.6826,0.0 73.04722,33.68264,0.0 73.04691,33.6827,0.0 73.04649,33.68278,0.0 73.04603,33.68289,0.0 73.04576,33.68293,0.0 73.04557,33.68293,0.0 73.04538,33.68292,0.0 73.04522,33.68291,0.0 73.04509,33.68289,0.0 73.04482,33.68276,0.0 73.04293,33.68173,0.0 73.04288,33.68171,0.0 73.04283,33.68169,0.0 73.04279,33.68169,0.0 73.04276,33.68169,0.0 73.04272,33.68169,0.0 73.0427,33.68169,0.0 73.04268,33.6817,0.0 73.04267,33.68171,0.0 73.04265,33.68172,0.0 73.04128,33.681,0.0 73.04031,33.6805,0.0 73.03931,33.68009,0.0 73.03837,33.67962,0.0 73.03798,33.67941,0.0 73.0378,33.67932,0.0 73.03763,33.67954,0.0 73.0374,33.67988,0.0 73.03726,33.68009,0.0 73.03717,33.68019,0.0 73.03716,33.68021,0.0 73.03712,33.68026,0.0 73.03702,33.68038,0.0 73.03671,33.68083,0.0 73.03648,33.68115,0.0 73.03624,33.68148,0.0 73.0359,33.6819,0.0 73.03549,33.68246,0.0 73.0351,33.68294,0.0 73.03491,33.6832,0.0 73.03476,33.68339,0.0 73.03397,33.68455,0.0 73.03385,33.6847,0.0 73.03344,33.68518,0.0 73.03309,33.68569,0.0 73.03274,33.68616,0.0 73.03239,33.68664,0.0 73.03203,33.68712,0.0 73.03156,33.6877,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03009,33.68968,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03153,33.69274,0.0 73.03149,33.69279,0.0 73.03145,33.69285,0.0 73.03112,33.69331,0.0 73.0309,33.69361,0.0 73.03088,33.69364,0.0 73.03067,33.69395,0.0 73.03028,33.69446,0.0 73.0302,33.69456,0.0 73.03033,33.69465,0.0 73.03666,33.69799,0.0 73.03716,33.69825,0.0 73.03693,33.69854,0.0 73.03655,33.69904,0.0 73.0363,33.6994,0.0 73.03625,33.69947,0.0 73.03615,33.6996,0.0 73.0361,33.69966,0.0 73.03565,33.70026,0.0 73.0352,33.70085,0.0 73.03513,33.70095,0.0 73.03528,33.70103,0.0 73.03562,33.70121,0.0 73.03598,33.70138,0.0 73.03908,33.70302,0.0 73.04071,33.70384,0.0 73.04244,33.70475,0.0 73.04173,33.70564,0.0 73.04123,33.7063,0.0 73.04096,33.70667,0.0 73.0408,33.70687,0.0 73.04036,33.70746,0.0 73.03988,33.70809,0.0 73.03959,33.70848,0.0 73.03949,33.70862,0.0 73.03963,33.70868,0.0 73.03975,33.70874,0.0 73.04007,33.70891,0.0 73.04083,33.70928,0.0 73.04111,33.70943,0.0 73.04146,33.70962,0.0 73.04178,33.70979,0.0 73.04273,33.71025,0.0 73.04281,33.71029,0.0 73.04288,33.71032,0.0 73.04384,33.71081,0.0 73.04509,33.71146,0.0 73.04511,33.71147,0.0 73.04718,33.71256,0.0 73.0493,33.7137,0.0 73.04962,33.71383,0.0 73.04968,33.71389,0.0 73.04973,33.71396,0.0 73.04975,33.714,0.0 73.04977,33.71404,0.0 73.04978,33.71409,0.0 73.04978,33.71415,0.0 73.04977,33.71422,0.0 73.04911,33.7151,0.0 73.04837,33.71609,0.0 73.04811,33.71645,0.0 73.04411,33.72182,0.0 73.04391,33.72211,0.0 73.04383,33.72221,0.0 73.04371,33.72235,0.0 73.04012,33.72703,0.0 73.03975,33.7275,0.0 73.03961,33.72772,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Abid Majeed Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0426422,33.5986552,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rawalpindi - Kohat Rd, Rawalpindi, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>72.9541699,33.6238743,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd I 11 (South), Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0265612,33.6327573,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>I-10 Markaz, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0406057,33.6489065,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>I-9 Markaz, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.055673,33.6568808,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd E, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0474255,33.6826007,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0300863,33.6896811,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Kaghan Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0397476,33.7087432,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Faisal Ave, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0396065,33.7277193,0.0</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>Route 121-A</name>
<Placemark>
<name>Directions from Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory to Faisal Ave, Islamabad, Pakistan</name>
<styleUrl>#line-1267FF-5-nodesc</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>73.02666,33.63227,0.0 73.02662,33.63235,0.0 73.02681,33.63243,0.0 73.03012,33.63425,0.0 73.03055,33.63448,0.0 73.03084,33.63462,0.0 73.03217,33.63526,0.0 73.03294,33.63564,0.0 73.03768,33.63815,0.0 73.04029,33.63956,0.0 73.04107,33.63997,0.0 73.04146,33.64019,0.0 73.04183,33.64039,0.0 73.0433,33.64114,0.0 73.04333,33.64115,0.0 73.04308,33.64146,0.0 73.04318,33.64151,0.0 73.04378,33.64184,0.0 73.04357,33.64209,0.0 73.04334,33.64233,0.0 73.04312,33.64262,0.0 73.04298,33.6428,0.0 73.04277,33.64308,0.0 73.04258,33.64334,0.0 73.04228,33.64374,0.0 73.04155,33.64475,0.0 73.04124,33.64513,0.0 73.04097,33.6455,0.0 73.04073,33.64583,0.0 73.04048,33.64617,0.0 73.04024,33.64647,0.0 73.03996,33.64683,0.0 73.03971,33.64717,0.0 73.03937,33.64765,0.0 73.03949,33.64771,0.0 73.04079,33.64837,0.0 73.04127,33.64863,0.0 73.04209,33.64907,0.0 73.04301,33.64956,0.0 73.0431,33.64961,0.0 73.04336,33.64975,0.0 73.04402,33.65007,0.0 73.04468,33.65041,0.0 73.04533,33.65075,0.0 73.04689,33.65152,0.0 73.04831,33.65223,0.0 73.04923,33.65269,0.0 73.05104,33.65365,0.0 73.05188,33.65409,0.0 73.05292,33.65467,0.0 73.05473,33.65557,0.0 73.05564,33.65606,0.0 73.05567,33.65608,0.0 73.05574,33.65612,0.0 73.05698,33.65681,0.0 73.05717,33.65692,0.0 73.05904,33.65792,0.0 73.05942,33.65811,0.0 73.06023,33.65852,0.0 73.06084,33.65884,0.0 73.0626,33.6598,0.0 73.06261,33.65981,0.0 73.06313,33.6601,0.0 73.06441,33.66074,0.0 73.06443,33.66075,0.0 73.06402,33.66126,0.0 73.06343,33.66212,0.0 73.06327,33.66234,0.0 73.06321,33.66242,0.0 73.06317,33.66247,0.0 73.06161,33.66456,0.0 73.06152,33.66469,0.0 73.06165,33.66474,0.0 73.06194,33.6649,0.0 73.06199,33.66496,0.0 73.06188,33.66513,0.0 73.06161,33.66547,0.0 73.06149,33.66583,0.0 73.06149,33.66584,0.0 73.06008,33.66774,0.0 73.05874,33.66954,0.0 73.05625,33.67287,0.0 73.05575,33.67356,0.0 73.05457,33.67519,0.0 73.05422,33.67566,0.0 73.0537,33.67635,0.0 73.05358,33.67651,0.0 73.05356,33.67654,0.0 73.05349,33.67663,0.0 73.05344,33.67669,0.0 73.05326,33.67691,0.0 73.05288,33.67744,0.0 73.05234,33.67811,0.0 73.05219,33.67828,0.0 73.05166,33.67898,0.0 73.05151,33.67918,0.0 73.05141,33.67934,0.0 73.05118,33.67965,0.0 73.05097,33.67982,0.0 73.05065,33.6801,0.0 73.05033,33.68047,0.0 73.04991,33.68094,0.0 73.04971,33.68118,0.0 73.04961,33.68129,0.0 73.04936,33.68158,0.0 73.04912,33.6818,0.0 73.04891,33.68198,0.0 73.04871,33.68214,0.0 73.04866,33.68216,0.0 73.04825,33.68238,0.0 73.04796,33.68246,0.0 73.04782,33.6825,0.0 73.04757,33.68257,0.0 73.04756,33.68257,0.0 73.04722,33.68264,0.0 73.04691,33.6827,0.0 73.04649,33.68278,0.0 73.04603,33.68289,0.0 73.04576,33.68293,0.0 73.04557,33.68293,0.0 73.04538,33.68292,0.0 73.04522,33.68291,0.0 73.04509,33.68289,0.0 73.04482,33.68276,0.0 73.04293,33.68173,0.0 73.04288,33.68171,0.0 73.04283,33.68169,0.0 73.04279,33.68169,0.0 73.04276,33.68169,0.0 73.04272,33.68169,0.0 73.0427,33.68169,0.0 73.04268,33.6817,0.0 73.04267,33.68171,0.0 73.04265,33.68172,0.0 73.04128,33.681,0.0 73.04031,33.6805,0.0 73.03931,33.68009,0.0 73.03837,33.67962,0.0 73.03798,33.67941,0.0 73.0378,33.67932,0.0 73.03763,33.67954,0.0 73.0374,33.67988,0.0 73.03726,33.68009,0.0 73.03717,33.68019,0.0 73.03716,33.68021,0.0 73.03712,33.68026,0.0 73.03702,33.68038,0.0 73.03671,33.68083,0.0 73.03648,33.68115,0.0 73.03624,33.68148,0.0 73.0359,33.6819,0.0 73.03549,33.68246,0.0 73.0351,33.68294,0.0 73.03491,33.6832,0.0 73.03476,33.68339,0.0 73.03397,33.68455,0.0 73.03385,33.6847,0.0 73.03344,33.68518,0.0 73.03309,33.68569,0.0 73.03274,33.68616,0.0 73.03239,33.68664,0.0 73.03203,33.68712,0.0 73.03156,33.6877,0.0 73.03145,33.68785,0.0 73.03109,33.68834,0.0 73.03082,33.68867,0.0 73.03052,33.68907,0.0 73.03034,33.68933,0.0 73.02988,33.68997,0.0 73.02978,33.69011,0.0 73.02996,33.69019,0.0 73.03091,33.69069,0.0 73.03249,33.6915,0.0 73.03153,33.69274,0.0 73.03149,33.69279,0.0 73.03145,33.69285,0.0 73.03112,33.69331,0.0 73.0309,33.69361,0.0 73.03088,33.69364,0.0 73.03067,33.69395,0.0 73.03028,33.69446,0.0 73.0302,33.69456,0.0 73.03033,33.69465,0.0 73.03666,33.69799,0.0 73.03716,33.69825,0.0 73.03693,33.69854,0.0 73.03655,33.69904,0.0 73.0363,33.6994,0.0 73.03625,33.69947,0.0 73.03615,33.6996,0.0 73.0361,33.69966,0.0 73.03565,33.70026,0.0 73.0352,33.70085,0.0 73.03513,33.70095,0.0 73.03528,33.70103,0.0 73.03562,33.70121,0.0 73.03598,33.70138,0.0 73.03908,33.70302,0.0 73.04071,33.70384,0.0 73.04244,33.70475,0.0 73.04173,33.70564,0.0 73.04123,33.7063,0.0 73.04096,33.70667,0.0 73.0408,33.70687,0.0 73.04036,33.70746,0.0 73.03988,33.70809,0.0 73.03959,33.70848,0.0 73.03949,33.70862,0.0 73.03963,33.70868,0.0 73.04007,33.70891,0.0 73.04019,33.70896,0.0 73.04083,33.70928,0.0 73.04111,33.70943,0.0 73.04146,33.70962,0.0 73.04178,33.70979,0.0 73.04273,33.71025,0.0 73.04281,33.71029,0.0 73.04288,33.71032,0.0 73.04384,33.71081,0.0 73.04509,33.71146,0.0 73.04511,33.71147,0.0 73.04718,33.71256,0.0 73.0493,33.7137,0.0 73.04962,33.71383,0.0 73.04968,33.71389,0.0 73.04973,33.71396,0.0 73.04975,33.714,0.0 73.04977,33.71404,0.0 73.04978,33.71409,0.0 73.04978,33.71415,0.0 73.04977,33.71422,0.0 73.04911,33.7151,0.0 73.04837,33.71609,0.0 73.04811,33.71645,0.0 73.04411,33.72182,0.0 73.04391,33.72211,0.0 73.04383,33.72221,0.0 73.04371,33.72235,0.0 73.04012,33.72703,0.0 73.03975,33.7275,0.0 73.03961,33.72772,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<name>Mandi Morr, I.J.P. Road, Islamabad, Islamabad Capital Territory</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.026664,33.6322698,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Sohni Road, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.043098,33.6496068,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Street 17, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0569786,33.6568137,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Service Rd E, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>
<coordinates>73.0475736,33.6825707,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Rohtas Rd, Islamabad, Pakistan</name>
<styleUrl>#icon-503-DB4436-nodesc</styleUrl>
<Point>