forked from codernaut/citizenconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db-export.json
13793 lines (13793 loc) · 464 KB
/
db-export.json
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
{
"Notifications" : {
"-L2H3Pg7eDRoN-0g4r18" : {
"date" : "Sunday, January 2, 2018, 7:20:36 PM",
"description" : "One dish and lights out timing (10 pm) shall be ensured in all marriage halls and marquees in Islamabad",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F26166956_1792951177671667_8052678258838445607_n.jpg?alt=media&token=7a7be032-045b-4798-9cd7-e5713d3c4dfa",
"tag" : "Notification"
},
"-L2H4Bp4Ycwh4cjU8PoL" : {
"date" : "Sunday, January 1, 2018, 7:20:35 PM",
"description" : "Secretary Islamabad transport authority checked illegal gas cylinders in commercial vehicles across different routes of Islamabad. Special emphasis was on school vans using unauthorised gas cylinders.",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F26165959_1795809853785758_5858196113896138596_n.jpg?alt=media&token=6020cbed-a713-4189-9ff4-a20dab51bb72",
"tag" : "Notification"
},
"-L2H4o-uT8tCMPFfoSdX" : {
"date" : "Sunday, December 29, 2018, 7:20:35 PM",
"description" : "ڈرائیونگ کے دوران فون استعمال کرنا ٹریفک قوانین کی خلاف ورزی ہے۔ کیا آپ جانتے ہیں؟",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F26165942_2036560126584584_2529644298638800203_n.png?alt=media&token=2481dafb-7232-430b-839c-e28ba7eb2c4b",
"tag" : "Notification"
},
"-L2H8YMe7prYyXl-E3Q6" : {
"date" : "Sunday, December 6, 2018, 7:20:35 PM",
"description" : "#ICTP #Islamabad #Pakistan #Police #Community #Policing #PoliceAwamSaathSaath #SayNoToCrime #SultanAzamTemur",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F25348273_1673310979373844_4978971774741682903_n.png?alt=media&token=4d7e3ce4-a535-4903-87cc-2655c4dd60b8",
"tag" : "Notification"
},
"-L2H9U68utiJA1gWf20j" : {
"date" : "Sunday, January 7th, 2018, 7:20:35 PM",
"description" : "Please don't text and drive",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F16807041_1457723234261090_4049825633115603401_n.jpg?alt=media&token=5a996ae0-35c9-4b5d-a8ca-aa834eb7cfd3",
"tag" : "Notification"
},
"-L2HC5Wvv_aDA085fq3C" : {
"date" : "Sunday, January 7th, 2018, 7:20:35 PM",
"description" : "Diversion Plan for PPP Jalsa on 05 Dec 2017",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F24301419_1767526869947390_3700853723509264782_n.jpg?alt=media&token=cd39e61d-08ff-4d1e-a975-2d66cca83ab2",
"tag" : "Notification"
},
"-L2Q1aFq93Frd2lVSnsR" : {
"date" : "Tuesday, January 9th, 2018, 1:09:38 PM",
"description" : "Inspection schedule of all Cooperative societies by Islamabad Cooperative Department Inspectors",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F24774991_1372554769540678_6117878115393220146_n.jpg?alt=media&token=8d1b3a39-0f0b-43be-bddb-d8b6fcd5593c",
"tag" : "Notification"
},
"-L2RYORpGB6D09--lfZS" : {
"date" : "Tuesday, January 9th, 2018, 8:12:33 PM",
"description" : "#share2aware #ICTP #Islamabadpolice #Pakistan #Goglobal #Safecity #CommunityPolicing",
"filePath" : "https://firebasestorage.googleapis.com/v0/b/citizenconnect-ed5fa.appspot.com/o/Notifications%2F26678481_1695983470439928_1934978333735513308_o.jpg?alt=media&token=fe70114c-0b34-498d-8334-ccf6da33b1d7",
"tag" : "Notification"
}
},
"dataset" : [ {
"data" : [ {
"Address" : "Plot No.15, St. No.17, Korang Town Extension-I",
"Name" : "Trade Leaders"
}, {
"Address" : "Office No.5, Ist Floor Rose-1 Plaza, I-8 Markaz",
"Name" : "Amgomed"
}, {
"Address" : "Office No.5, 3rd Floor, M.B. Plaza I-8 Markaz",
"Name" : "Revive Health Care Distributors"
}, {
"Address" : "Office No.6, 3rd Floor, Al-Jannat Arcade G-11 Markaz",
"Name" : "Seasons Pharmaceutical Distributors"
}, {
"Address" : "Shop No.01, Near Darbar Baba Walayat Shah, Noor Pur Shahan Bari Imam",
"Name" : "Medizone Medical Store"
}, {
"Address" : "Pharmacy PIMS Hospital Compound G-8/3",
"Name" : "Pharmax Pak (Pvt) Ltd"
}, {
"Address" : "Shop No.G-8, Al-Habib Plaza, Ghouri Town, Phase-4-B",
"Name" : "Qamar Pharmacy"
}, {
"Address" : "Shop No.9, Al-Hameed Mall, Lower Ground Floor, G-11 Markaz",
"Name" : "Swat Pharmacy"
}, {
"Address" : "Shaheen Town, Main Shareefabad Road, Ghouri Town, Phase-5-A",
"Name" : "A.H. Pharmacy"
}, {
"Address" : "Plot No.3, St.3, A-Block Main Soan Avenue, Soan Garden",
"Name" : "SMDC Pharmacy"
}, {
"Address" : "Lehtrar Road, Tarlai Kalan",
"Name" : "Al-Hamza Medical Store"
}, {
"Address" : "Office No.2, Ist Floor Marble Plaza, I-9 Markaz",
"Name" : "Medinex Distributor"
}, {
"Address" : "Fateh Jang Road, Benazir Chowk, Tarnol",
"Name" : "Shafaq Pharmacy"
}, {
"Address" : "Basement Hall No.3, Al-Hameed Centre, Sector G-11 Markaz",
"Name" : "D.Watson Pharmacy"
}, {
"Address" : "Shop No.1, 2, & 3, Awami Trade Centre, Sector G-9 Markaz",
"Name" : "D.Watson Pharmacy"
}, {
"Address" : "Seeri Sarial Shah Allah Ditta Road, D-13",
"Name" : "Shifa health Pharmacy"
}, {
"Address" : "Shop No.9, Plot No.3-N, Mandair Palace I-10 Markaz",
"Name" : "Shifa Medical Store"
}, {
"Address" : "Plot No.2-D, Bazar No.5, Shop No.6-G, Ground Floor, G-13/3",
"Name" : "Al-Shahid Pharmacy"
}, {
"Address" : "Plot No.5-N, St. 1, Industrial Area, I-10/3",
"Name" : "UDL Distribution Pvt Limited"
}, {
"Address" : "Main Murree Road, Opp. Col Aman Ullah Road, Barakau",
"Name" : "Universal Pharmacy"
}, {
"Address" : "Al-Fateh Departmental Store, Centaurs Centres Mall, Jinnah Avenue Blue Area",
"Name" : "Al-Bari Pharmacy"
}, {
"Address" : "Saif Health Care, Shop No.103, Ist Floor, 2020-Kulsum Plaza, Blue Area",
"Name" : "KIH Pharmacy"
}, {
"Address" : "Shop No.7, Mundair Palace Plot No.3-N, Ground Floor",
"Name" : "D.I Luqman Pharmacy"
}, {
"Address" : "Taj Plaza, F-8 Markaz",
"Name" : "Bharia Pharmacy-II"
}, {
"Address" : "Friends Arcade G-13/1",
"Name" : "Lioyds Pharmacy"
}, {
"Address" : "City Arcade, I-8 Markaz",
"Name" : "Drug Source Pharmacy"
}, {
"Address" : "Food Market, F-7/3-3",
"Name" : "New Madni Medical Store"
}, {
"Address" : "Col. Amanullah Road, Barakau",
"Name" : "Paradize Medical Store"
}, {
"Address" : "Nisar Market, Barma Stop",
"Name" : "Hamdard Medical Store"
}, {
"Address" : "Ground Floor, Golra More",
"Name" : "Quaid-e-Azam International Hospital Pharmacy"
}, {
"Address" : "4th Floor, Golra More",
"Name" : "Quaid-e-Azam International Hospital Pharmacy"
}, {
"Address" : "Trammari Chowk",
"Name" : "G. A. Pharmacy"
}, {
"Address" : "Main Bani Gala Road",
"Name" : "Hashir Pharmacy"
}, {
"Address" : "Simply Dam Road, Barakau",
"Name" : "Uzair Medical Store"
}, {
"Address" : "Nai Abadi Barakau",
"Name" : "Bio Life Medical Store"
}, {
"Address" : "Dhoke Abbasi Tarnol",
"Name" : "Al-Jannat Medical Store"
}, {
"Address" : "Motor Way Choke Shaheen Abad",
"Name" : "Shayyan Medical Store"
}, {
"Address" : "Main Bazar, Golra",
"Name" : "Najeeb Medical Store"
}, {
"Address" : "Rewat",
"Name" : "Noor Medical Store Main Bazar"
}, {
"Address" : "Soan Garden",
"Name" : "Baber Pharmacy"
}, {
"Address" : "G-11 Markaz",
"Name" : "Al-Rehman Pharmacy"
}, {
"Address" : "double road G-13/1",
"Name" : "Rite Aid Pharmacy"
}, {
"Address" : "G-8 Markaz",
"Name" : "Akram Pharmacy"
}, {
"Address" : "G-8 Markaz",
"Name" : "Ameer Pharmacy"
}, {
"Address" : "Ali Plaza, Bani Gala",
"Name" : "Ali Pharmacy"
}, {
"Address" : "OGDCL Medical Centre, F-8 Markaz",
"Name" : "Shifa Pharmacy"
}, {
"Address" : "OGDCL Health Office, Blue Area",
"Name" : "Shifa Pharmacy"
}, {
"Address" : "Bharia Town, Phase-2",
"Name" : "Al-Zainab Pharmacy"
}, {
"Address" : "Dhoke Abbasi, Tarnol",
"Name" : "Khidmat Medical Store"
}, {
"Address" : "Jawa Road, Rewat",
"Name" : "Al-Jawad Medical Store"
}, {
"Address" : "Pind Paracha G-14",
"Name" : "Zam Zam Medical Store"
}, {
"Address" : "Jhangi Syeddan",
"Name" : "Ejaz Medical Store"
}, {
"Address" : "Islamabad.",
"Name" : "Life Medical Store G-9 Markaz"
}, {
"Address" : "Jawa Road, Rewat",
"Name" : "Saghar Pharmacy"
}, {
"Address" : "Madina Town, Ali Pur",
"Name" : "Mian G. Medical Store"
}, {
"Address" : "G-8 Markaz",
"Name" : "Shaheen Pharmacy"
}, {
"Address" : "Main Bazar, G.T. Road, Rewat",
"Name" : "Shahbaz Pharmacy"
}, {
"Address" : "Golra More",
"Name" : "Care Plus Pharmacy"
}, {
"Address" : "Margalla Town",
"Name" : "Yousaf Zai Medical Store"
}, {
"Address" : "Shahzad Town",
"Name" : "Capital Medical Store"
}, {
"Address" : "Aabpara",
"Name" : "Zahid Medical Store"
}, {
"Address" : "Maroof International Hospital, F-10 Markaz",
"Name" : "Maroof Pharmacy"
}, {
"Address" : "Tarlai Kalan",
"Name" : "Sarfraz Pharmacy"
}, {
"Address" : "Ground Floor, Golra More",
"Name" : "Quaid-e-Azam International Hospital"
}, {
"Address" : "Lehtrar Road, Khana Dak",
"Name" : "New City Medical Store"
}, {
"Address" : "Zeeshan Plaza, G-8 Markaz",
"Name" : "Abbasi Pharmacy"
}, {
"Address" : "G-11/2",
"Name" : "BDH Pharmacy"
}, {
"Address" : "Huma Plaza, Blue Area",
"Name" : "Federal Pharmacy"
}, {
"Address" : "AN Arcade G-13/1",
"Name" : "Health Pharmacy"
}, {
"Address" : "Murree Road, Barakau",
"Name" : "Gulzar Pharmacy"
}, {
"Address" : "Punjab Market, G-13/4",
"Name" : "Mediway Pharmacy"
}, {
"Address" : "G-8 Markaz",
"Name" : "Kashmir Pharmacy"
}, {
"Address" : "G-7/4",
"Name" : "Islamic International Dental Hospital Medical Store"
}, {
"Address" : "I-10/3",
"Name" : "Drug Services"
}, {
"Address" : "Jawa Road, Rewat",
"Name" : "New Ali Pharmacy"
}, {
"Address" : "G-8 Markaz",
"Name" : "J. Sariya Medical Store"
}, {
"Address" : "T.Chowk, Rewat",
"Name" : "I & K Pharmacy I&K International hospital"
}, {
"Address" : "Super Market, F-6 Markaz",
"Name" : "Medi Plus Pharmacy"
}, {
"Address" : "Near Mari Gas Building, G-10/4",
"Name" : "Shifa Pharmacy"
}, {
"Address" : "Madina Market, F-8/2",
"Name" : "Surgical Medical Store"
}, {
"Address" : "Sector E-11/3",
"Name" : "Najeeb Pharmacy"
}, {
"Address" : "Family Health Hospital, I-10/4",
"Name" : "Malik Traders Pharmacy"
}, {
"Address" : "Jinnah Arcade, Sector G-13/2",
"Name" : "MHK Pharmacy"
}, {
"Address" : "Aabpara Market",
"Name" : "Bharia Pharmacy-III"
}, {
"Address" : "Golra Sharif",
"Name" : "Ghousia Medical Store"
}, {
"Address" : "Memorial Hospital Ali Pur",
"Name" : "Begum Jan Pharmacy"
}, {
"Address" : "NORI Hospital, G-8/3",
"Name" : "Noori Patients Welfare Society Pharmacy"
}, {
"Address" : "Industrial & Trading Centre, G-9/4",
"Name" : "Al-Kamran Medical Store"
}, {
"Address" : "Ahmed Town, Barakau",
"Name" : "The District Medical Store"
}, {
"Address" : "Millinum Plaza, G-15 Markaz",
"Name" : "Shafi Pharmacy"
}, {
"Address" : "Jawa Road, Rewat",
"Name" : "New Makkah Medical Store"
}, {
"Address" : "Phulgran Stop, Murree Express Way",
"Name" : "The Diabetes Centre Pharmacy"
}, {
"Address" : "Near Sabzi Mandi, I-11/4",
"Name" : "Muller & Phipps Pakistan Pvt Ltd"
}, {
"Address" : "F-10 Markaz",
"Name" : "D. Watson Chemist"
}, {
"Address" : "I-8 Markaz",
"Name" : "Pharmacons Pharmacy"
}, {
"Address" : "Fateh jang Road, Tarnol",
"Name" : "Rahim Medical Store"
}, {
"Address" : "Blue Area China Chowk",
"Name" : "Jehangir Pharmacy"
}, {
"Address" : "I-9 Markaz",
"Name" : "Ideal Pharmacy"
}, {
"Address" : "Kiran Plaza, F-8 Markaz",
"Name" : "Islamabad Specialist Clinic Pharmacy"
}, {
"Address" : "Hajvery Plaza, Blue Area",
"Name" : "Four Star Pharmacy"
}, {
"Address" : "Main Murree Road, Barakau",
"Name" : "D. Watson Pharmacy"
}, {
"Address" : "Sector I-10/3",
"Name" : "D.S. Pharma Distributor"
}, {
"Address" : "Noor Pur Shahan, Barri Imam",
"Name" : "New Zafar Medical Store"
}, {
"Address" : "I-10-/3",
"Name" : "Parazelsus Pakistan (Pvt) Ltd"
}, {
"Address" : "Murree Road, Barakau",
"Name" : "Amin Pharmacy"
}, {
"Address" : "Allah Dad, G-8 Markaz",
"Name" : "Waheed Pharmacy"
}, {
"Address" : "Deen Pavilion Blue Area",
"Name" : "D. Watson Pharmacy"
}, {
"Address" : "I-9 Markaz",
"Name" : "Ms/. Tariq Medical Store"
}, {
"Address" : "I & T Centre, G-9/4",
"Name" : "Elixir Medical Store"
}, {
"Address" : "Civic Centre, Melody Market",
"Name" : "Truworth Pharmacy"
}, {
"Address" : "Block-7 G-6 Main Civic Centre, Melody Market",
"Name" : "Truworth Distributor"
}, {
"Address" : "Benazir Chowk, Fateh Jang Road, Tarnol",
"Name" : "Haris Medical Store"
}, {
"Address" : "Noor Pur Shahan, Barri Imam",
"Name" : "Marwat Medical Store"
}, {
"Address" : "Madina Pharmacy",
"Name" : "Arneca International Distributor"
}, {
"Address" : "Al-Nafees Hospital, Ali Pur Farash",
"Name" : "Omar Pharmacy"
}, {
"Address" : "Sector E-14",
"Name" : "Subhan Medical Store"
}, {
"Address" : "PWD Housing Society",
"Name" : "Pharmacy-Z Medical Store"
}, {
"Address" : "61-Jinnah Avenue",
"Name" : "Islamabad Clinic Servicing Infertile Couples Pvt Ltd Pharmacy"
}, {
"Address" : "Shop No.5, Pervaiz Plaza, G-6/1-1",
"Name" : "BaB Medical Store"
}, {
"Address" : "Sector-J, DHA Phase-II",
"Name" : "Yashfi Pharmacy"
}, {
"Address" : "Sector E-11/2",
"Name" : "Redx Pharmacy"
}, {
"Address" : "Kashmir Arcade, Blue Area",
"Name" : "D.Watson Pharmacy"
}, {
"Address" : "Trammari Chowk, Tarlai",
"Name" : "Anum Medical Store"
}, {
"Address" : "Sector G-12",
"Name" : "Dehan Medical Store"
}, {
"Address" : "Jagiot Road, Ali Pur",
"Name" : "Al-Tahir Medical Store"
}, {
"Address" : "Gondal Plaza, Fazal-e-Haq Road",
"Name" : "Talha Medical Store"
}, {
"Address" : "I-10/3",
"Name" : "Premier Agencies Distributor"
}, {
"Address" : "Shaheen Market, I-10/1",
"Name" : "Star Medical Store"
}, {
"Address" : "Sangum Town, Khanna Dak",
"Name" : "Sajjad Medical Store"
}, {
"Address" : "Dherik Mohri, Near Golra Railway Station",
"Name" : "Ch. Brothers Medical Store"
}, {
"Address" : "Gondal Plaza, Blue Area",
"Name" : "City Medical Store"
}, {
"Address" : "Fazal-e-Haq Road",
"Name" : "Shaban Pharmacy"
}, {
"Address" : "Korang Shopping Centre, Korang",
"Name" : "Korang Medical Store"
}, {
"Address" : "Ali Trust Khanna Dak",
"Name" : "Rawal Pharmacy"
}, {
"Address" : "I & T Centre, G-9/4",
"Name" : "Khalid Medical Store"
}, {
"Address" : "Margalla Town",
"Name" : "Amin Medical Store"
}, {
"Address" : "Sharjah Centre, Sector G-10 Markaz",
"Name" : "Lifetec Distributor"
}, {
"Address" : "Murree Road, Barakau",
"Name" : "Nazir Medical Store"
}, {
"Address" : "Khanna Pull",
"Name" : "Al-Barkah Medical Store"
}, {
"Address" : "I&T Centre, G-9/4",
"Name" : "Umer Medical Store"
}, {
"Address" : "Main Blue Ward, Ghouri Town, Phase-5",
"Name" : "Your’s Pharmacy"
}, {
"Address" : "Rehmat Centre, I-8 Markaz",
"Name" : "Spidel International Distributors"
}, {
"Address" : "Main Road, I-0 Markaz",
"Name" : "Maham Pharmacy"
}, {
"Address" : "School Road, Super Market, F-6",
"Name" : "Shaheen Pharmacy"
}, {
"Address" : "Margalla Town, Phase-I",
"Name" : "GKB Distribuor"
}, {
"Address" : "Rana Market, F-7/2",
"Name" : "Dewash Medical Store"
}, {
"Address" : "Bhera Pull, Barakau",
"Name" : "Galyat Medical Store"
}, {
"Address" : "Sector G-12",
"Name" : "Sheraz Medical Store"
}, {
"Address" : "I-9 Markaz",
"Name" : "Islamabad Pharmacy"
}, {
"Address" : "I-10/3",
"Name" : "Vety Care (Pvt) Ltd Distributors"
}, {
"Address" : "Sitara Market, G-7 Markaz",
"Name" : "Kazim Medical Store"
}, {
"Address" : "Pindorian, Khanna Kak",
"Name" : "Al-Karam Medical Store"
}, {
"Address" : "Yamaha Chowk, Model Town",
"Name" : "Eterna International (Pvt) Ltd Distributors"
}, {
"Address" : "Jinnah Avenue Centurus Shopping Mall F-8/1",
"Name" : "Nelson Pharmacy"
}, {
"Address" : "MB City Mall Plaza, I-8 Markaz",
"Name" : "B.F. Pharmacy"
}, {
"Address" : "Friends Arcade F-17",
"Name" : "Faisal Pharma Distributors"
}, {
"Address" : "Chatta Bakhtawar",
"Name" : "Al-Rashid Medical Store"
}, {
"Address" : "Patiala Centre, Blue Area",
"Name" : "Shaheen Pharmacy"
}, {
"Address" : "Khan Akber Town, New Shakriyal",
"Name" : "Shahid Medical Store"
}, {
"Address" : "School Road, F-6 Super market",
"Name" : "D. Watson Pharmacy"
}, {
"Address" : "Panther Plaza, F-8 Markaz",
"Name" : "New Islamabad Pharmacy"
}, {
"Address" : "I & T Centre, G-9/4",
"Name" : "Al-Muslim Pharmacy"
}, {
"Address" : "Golra Railway Station",
"Name" : "Adil Medical Store"
}, {
"Address" : "Tarlai Kalan",
"Name" : "Al-Khizer Medical Store"
}, {
"Address" : "Tarlai Kalan",
"Name" : "Awan Medical Store"
}, {
"Address" : "Muhammadia Plaza, Main Civic Centre, Melody Market",
"Name" : "Saif Pharmacy"
}, {
"Address" : "Raja Farman Ali Road, Khanna Dak",
"Name" : "Al-Siddique Distributor"
}, {
"Address" : "Ali Plaza, I-10 Markaz",
"Name" : "Safe Medical Store"
}, {
"Address" : "I-9 Markaz",
"Name" : "Danish Pharmacy"
}, {
"Address" : "Janjua Market, Naib Abadi, Ali Pur",
"Name" : "Baig Medical Store"
}, {
"Address" : "Rupail Plaza, I-10 Markaz",
"Name" : "Medicare Medical Store"
}, {
"Address" : "KRL Flat, Peshawar Road, Jhangi Syedan",
"Name" : "Talha Medical Store"
}, {
"Address" : "Mohallah Shaheen Abad, Chungi No.26",
"Name" : "Al-Shifa Medical Store"
}, {
"Address" : "Sowan Camp",
"Name" : "Bilal Medical Store"
}, {
"Address" : "Sambli Dam Road, Barakau",
"Name" : "New Health Care Pharmacy"
}, {
"Address" : "Bewal Market, G-9 Markaz",
"Name" : "Adnan Medical Store"
}, {
"Address" : "Burma Town, Near Khanna Dak",
"Name" : "Al-Makkah Pharmacy"
}, {
"Address" : "Akber Hospital Tarnol",
"Name" : "Akber Medical Store"
}, {
"Address" : "FGH, Chak Shahzad",
"Name" : "Al-Salah Fair Price Pharmacy"
}, {
"Address" : "NIH Market, Chak Shahzad",
"Name" : "Waleed Medical Store"
}, {
"Address" : "Khyber Plaza, Blue Area",
"Name" : "Delight Medical Store"
}, {
"Address" : "Ground Floor, Rajgan, T. Chowk, Rewat",
"Name" : "Imperative Life Care Services"
}, {
"Address" : "Gharkar Market",
"Name" : "New Rajput Medical Store"
}, {
"Address" : "Sngjani",
"Name" : "Zeeshan Medical Store"
}, {
"Address" : "Khan Market, Sngjani",
"Name" : "Bisma Medical Store"
}, {
"Address" : "Khanna Dak",
"Name" : "Al-Falah Medical Store"
}, {
"Address" : "Khanna Dak, Near Ali Trust College",
"Name" : "Sohan Vet Medical Store"
}, {
"Address" : "Mushtaq Mansion, Blue Area",
"Name" : "Al-Habib Pharmacy"
}, {
"Address" : "Amir Plaza, I-10 Markaz",
"Name" : "Max Pharmaceuticals Distributor"
}, {
"Address" : "I-10/3",
"Name" : "Ali Gohar & Company (Pvt) Ltd"
}, {
"Address" : "Railway Crossing Tarnol",
"Name" : "Umer Medical Store"
}, {
"Address" : "I-10/2",
"Name" : "Al-Fateh Medical Store"
}, {
"Address" : "I-10/3",
"Name" : "Novartis Pharmacy Pakistan"
}, {
"Address" : "I-9 Markaz",
"Name" : "Hashim Pharmacy"
}, {
"Address" : "Karachi Company G-9 Markaz",
"Name" : "Al-Faiz Medical Store"
}, {
"Address" : "I-8 Markaz",
"Name" : "The Drug Source Distributor"
}, {
"Address" : "PAF Complex",
"Name" : "Shaheen Pharmacy"
}, {
"Address" : "Athal Chowk Barakau",
"Name" : "Naeem Medical Store"
}, {
"Address" : "Main G.T. Road, Sangjani",
"Name" : "Al-Falah Pharmacy"
}, {
"Address" : "Babu Jee Shopping Mall Golra Sharif",
"Name" : "Health One Pharmacy"
}, {
"Address" : "I&T Centre, Peshawar More, G-9/4",
"Name" : "Tahir Medical Store"
}, {
"Address" : "Model Town Hummak",
"Name" : "Haji Medicine Co. Distributor"
}, {
"Address" : "Jamp Stop, Sihala Bagh",
"Name" : "Al-Haris Medical Store"
}, {
"Address" : "Shop NO.1, Ghouri Town, Phase-1, Khanna East",
"Name" : "Al-Majeed Pharmacy"
}, {
"Address" : "Bismillah Plaza, G-8 Markaz",
"Name" : "Unique Medical Store"
}, {
"Address" : "I-9/3",
"Name" : "Pharmanet Distributor"
}, {
"Address" : "Melody Market",
"Name" : "Al-Saleh Pharmacy"
}, {
"Address" : "VIP Ghouri Town",
"Name" : "New Kamran Medical Store"
}, {
"Address" : "Hassan Arcade, F-11 Markaz",
"Name" : "Shaheen Pharmacy"
}, {
"Address" : "I-8 Mughal Market",
"Name" : "Al-Hafeez Medical Store"
}, {
"Address" : "Industrial Triangle Kahuta Road",
"Name" : "Global Pharmaceuticals Pvt Ltd Distributors"
}, {
"Address" : "Simpli Dam Road, Barakau",
"Name" : "Awan Medical Store"
}, {
"Address" : "Athal Chowk Barkau",
"Name" : "Abbasi Medical Store"
}, {
"Address" : "Nai Abadi Barakau",
"Name" : "Zia Medical store"
}, {
"Address" : "Al-Baber Centre, F-8 Markaz",
"Name" : "Lifeaid Pharmacy"
}, {
"Address" : "Sector F-17 Markaz",
"Name" : "New Abdullah Pharmacy"
}, {
"Address" : "Main Road Pak PWD Housing Lihi Bher Islamabad.",
"Name" : "Hassan Pharmacy"
}, {
"Address" : "Rehmat Plaza, I-10 Markaz",
"Name" : "Al-Haram Medical Store"
}, {
"Address" : "Bani Gala",
"Name" : "Rajput Pharmacy"
}, {
"Address" : "Tarammri Chowk, Irfan Abad, Tarlai",
"Name" : "M.S. Pharmacy"
}, {
"Address" : "Shahnawaz G-11 Markaz",
"Name" : "Al-Amin Pharmacy"
}, {
"Address" : "I-9 Markaz",
"Name" : "Omer Traders Pharmacy"
}, {
"Address" : "Bostan Plaza, Bani Gala",
"Name" : "Eman Medical Store"
}, {
"Address" : "F-11/2",
"Name" : "Roche Pakistan Limited"
}, {
"Address" : "Al-Habib Main Murree Road, Barakau",
"Name" : "Umer Medical Store"
}, {
"Address" : "Iqbal Town, Service Road",
"Name" : "Al-Rehman Medical Store"
}, {
"Address" : "Near Jamia Masjid Al-Rehman, Blue Area",
"Name" : "Blue Area Medical Store"
}, {
"Address" : "I-9/3",
"Name" : "Promed Distributors"
}, {
"Address" : "Khanna Dak",
"Name" : "Khawar Medical Store"
}, {
"Address" : "Awan Plaza, Sector G-8 Markaz",
"Name" : "Pakistan Pharmacy"
}, {
"Address" : "Kashif Plaza, G-8 Markaz",
"Name" : "A.S.M. Pharmaceuticals Distribution"
}, {
"Address" : "Sector G-12 Islamabad.",
"Name" : "Saalim Medical Store"
}, {
"Address" : "PINSTECH Shopping Centre, Nilore",
"Name" : "Omair Medical Store"
}, {
"Address" : "I&T Centre, G-10/1",
"Name" : "Memon Medical Store"
}, {
"Address" : "Golra More",
"Name" : "Ideal Medical Store"
}, {
"Address" : "Salman Market, F-11/2",
"Name" : "Healing Medical Store"
}, {
"Address" : "Jinnah Super Market, F-7 Markaz",
"Name" : "Legal Pharmacy"
}, {
"Address" : "Rawal Town",
"Name" : "Healers Medical Store"
}, {
"Address" : "F-8 Markaz",
"Name" : "Ali Pharmacy Inaptient Pharmacy"
}, {
"Address" : "PWD Housing Society",
"Name" : "Shifa Pharmacy"
}, {
"Address" : "Power Market, Sector G-10/4",
"Name" : "Waqar Medical Store"
}, {
"Address" : "G-8 Markaz",
"Name" : "Neotech Pharmaceuticals Distributors"
}, {
"Address" : "Jannat Arcade, G-11 Markaz",
"Name" : "Mustafa Medical Store"
}, {
"Address" : "Basement Asad Plaza, Lehtrar Road, Khanna Pull",
"Name" : "Harmain Pharmacy"
}, {
"Address" : "Kiani Road, Barakau",
"Name" : "Mahnoor Medical Store"
}, {
"Address" : "Jawa Road, Rewat",
"Name" : "Khurram Medical Store"
}, {
"Address" : "near Police Station Fateh Jang Road, Tarnol",
"Name" : "Kashmir Medical Store"
}, {
"Address" : "G-7 Markaz",
"Name" : "Owais Medical Store"
}, {
"Address" : "NPF Sector 0-9",
"Name" : "Pak Greens Medical Store"
}, {
"Address" : "Shahpur Barakau",
"Name" : "Safi Medical Store"
}, {
"Address" : "Fateh Jang Road, Tarnol",
"Name" : "Tamman Medical Store"
}, {
"Address" : "Sultan Plaza, Gani Gala",
"Name" : "Vigilant Veterinary Services (Pvt) Limited"
}, {
"Address" : "Fazal-e-Haq Road, Ratta Mansion Plaza, Blue Area",
"Name" : "Islamabad Pharmacy"
}, {
"Address" : "Kohsar Cinema Building G-7 Markaz",
"Name" : "Kohsar Medical Store"
}, {
"Address" : "Adjacement PIA Building Blue Area",
"Name" : "Nostrum Pharma Distributor"
}, {
"Address" : "Zeeshan Plaza, G-8 Markaz",
"Name" : "Capital Medical Store"
}, {
"Address" : "E-11/3",
"Name" : "Al-Madina Medical Store"
}, {
"Address" : "Main Bazar, Sihala",
"Name" : "Atif Medical Store"
}, {
"Address" : "Korang Town",
"Name" : "Al-Shifa Pharmacy"
}, {
"Address" : "Grond Floor, Select One Plaza, F-11 Markaz",
"Name" : "Boots Pharmacy"
}, {
"Address" : "Islamabad Arcade, G-11 Markaz",
"Name" : "Azam Trading Services"
}, {
"Address" : "I-9/3",
"Name" : "United Distributor"
}, {
"Address" : "Sara Hospital, Simly Dam Road, Barakau",
"Name" : "Sara Medical Store"
}, {
"Address" : "Jawa Road, Main Bazar, Rewat",
"Name" : "Imran Medical Store"
}, {
"Address" : "Main Commercial soan Garden",
"Name" : "Safeway Pharmacy"
}, {
"Address" : "E-11/1",
"Name" : "Ali Medical Store"
}, {
"Address" : "Express Way Koral Chowk",
"Name" : "Al-Makkah Medical Store"
}, {
"Address" : "12-M Plaza, G-8 Markaz",
"Name" : "Medicine Square Medical Store"
}, {
"Address" : "Doctor’s Cooperative Housing Society Sector 09",
"Name" : "Shaffi Pharmacy"
}, {
"Address" : "Wasif Plaza, Murree Road, Barakau",
"Name" : "Manzoor Medical Store"
}, {
"Address" : "Near Noor Hospital, Fateh Jang Road, Tarnol",
"Name" : "Noor Pharmacy"
}, {
"Address" : "Shifa international hospital, H-8/4",
"Name" : "Shifa International Distribution Services"
}, {
"Address" : "G-9 Markaz",
"Name" : "New Medi Fair Medical Store"
}, {
"Address" : "National Police Foundation 0-9 Islamabad.",
"Name" : "IHGC Medical Store"
}, {
"Address" : "Main Murree Road, Barakau",
"Name" : "Barakau Medical Store"
}, {
"Address" : "Ameen Plaza, Lehtrar Road",
"Name" : "Umer Medical Store"
}, {
"Address" : "PAEC General Hospital, H-11/4",
"Name" : "PAEC Foundation Pharmacy"
}, {
"Address" : "Nai Abadi, Barakau",
"Name" : "Chinar Medical Store"
}, {
"Address" : "Awan Plaza, G-8 Markaz",
"Name" : "Dawn Pharmacy"
}, {
"Address" : "Begum Plaza, West Blue Area",
"Name" : "Medi System International"
}, {
"Address" : "Pir Sohawa Chowk, Morian",
"Name" : "New Farooqi Medical Store"
}, {
"Address" : "Maxim Arcade, Jeddah Town",
"Name" : "Skyline Distributor"
}, {
"Address" : "Sambli Dam road, Barakau",
"Name" : "Dhanyal Medical Store"
}, {
"Address" : "VIP Ghouri Town, Khanna East",
"Name" : "Kamran & Sons Medical Store"
}, {
"Address" : "Simly Dam Road, Barakau",
"Name" : "Bharakau Community Pharmacy"
}, {
"Address" : "Al-Amin Plaza, Lehtrar Road, Khanna Pul",
"Name" : "Zaman Distributors"
}, {
"Address" : "Main G.T. Road, Tarnol",
"Name" : "Adeel Medical Store"
}, {
"Address" : "Abdullah Market Lehtrar Road, Khanna Pull",
"Name" : "Zahid Medical Store"
}, {
"Address" : "Rashid Arcade Main PWD Road, Pakistan Town",
"Name" : "Javed Pharmacy"
}, {
"Address" : "Jinnah Avenue Blue Area",
"Name" : "Mubashir Medical Store"
}, {
"Address" : "Ahmed Arcade, Ghouri Town, Phase-4-A",
"Name" : "Baber’s Pharmacy"
}, {
"Address" : "70-E Blue Area",
"Name" : "Mubashir Medical Store"
}, {
"Address" : "Kazz Arcade, Sector G-15 Markaz",
"Name" : "Zyan Pharmacy"
}, {
"Address" : "Naval Complex E-8",
"Name" : "Mr. Chemist Plus Medical Store"
}, {
"Address" : "I-9/3",
"Name" : "Abbott Laboratories Pak Limited"
}, {
"Address" : "Fortune Arcade Phase-5, Bahria town",
"Name" : "D. Watson Pharmacy"
}, {
"Address" : "Plot No.244-A, I-9/3",
"Name" : "Zaheer Pharma"
}, {
"Address" : "Ground Floor, Main Road, Class-III, G-13/1",
"Name" : "New Life Pharmacy"
}, {
"Address" : "F-10 Markaz",
"Name" : "In patient Pharmacy Maroof International hospital"
}, {
"Address" : "Main Bazar Rewat",
"Name" : "Asif Medi Plus Medical Store"
}, {
"Address" : "Sohan Garden Housing Society",
"Name" : "Medix Plus Medical Store"
}, {
"Address" : "Near Dhoke Malyar Adjacent Motorway Chowk",
"Name" : "Azam Medical Store"
}, {
"Address" : "21-E Huma Plaza, Blue Area",
"Name" : "S & j Distributors"
}, {
"Address" : "Inside Family Health Hospital, I-10/4",
"Name" : "Imran Pharmacy"
}, {
"Address" : "Double Road, PWD",
"Name" : "Sadaqat Medical Store"
}, {
"Address" : "Aziz Market, I-9/1",
"Name" : "Shaigan Pharmacy"
}, {
"Address" : "Sheraz Market, Sector G-10/3",
"Name" : "Rahat Medical Store"
}, {
"Address" : "Kamran Shopping Centre, Aabpara Market",
"Name" : "Malik Medical Store"
}, {
"Address" : "Sharjah Centre, G-10 Markaz",
"Name" : "Medgate Services Pharmaceuticals Distributor"
}, {
"Address" : "Ali Pur",
"Name" : "Ali Pur Medical Store"
}, {
"Address" : "Basement Hall No.3, 4, Time Square Plaza, F-11 Markaz",
"Name" : "D. Watson Pharmacy"
}, {
"Address" : "Al-Huda Town Ahad Plaza, Lehtrar Road, Satra Meel",
"Name" : "Ahmed Medical Store"
}, {
"Address" : "Shop No.4, Mehran Plaza, G-9 Markaz",
"Name" : "Jamal Medical Store"
}, {
"Address" : "Naval Shopping Centre",
"Name" : "Raza Health Care Pharmacy"
}, {
"Address" : "Near Sohan Union Council, Sohan",
"Name" : "Al-Hamd Medical Store"
}, {
"Address" : "Athal Chowk, Barakau",
"Name" : "Madina Pharmacy"