This repository was archived by the owner on Jul 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlsa_test_adminer.sql
More file actions
5359 lines (5325 loc) · 308 KB
/
lsa_test_adminer.sql
File metadata and controls
5359 lines (5325 loc) · 308 KB
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
-- Adminer 4.7.7 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `accessibility`;
CREATE TABLE `accessibility` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`sortorder` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `accessibility` (`id`, `name`, `sortorder`) VALUES
(1, 'Consideration for my mobility aid (e.g. cane, walker or wheelchiar)', 3),
(2, 'Accessible parking', 8),
(3, 'Reserved seating', 9),
(4, 'Assistance at the buffet', 7),
(5, 'CART (Communication Access Realtime Translation) services', 2),
(6, 'American Sign Language interpreter services', 1),
(7, 'A large-print commemorative program', 6),
(8, 'My guide/service dog to attend with me', 5),
(9, 'My personal assistant to attend with me', 4);
DROP TABLE IF EXISTS `awards`;
CREATE TABLE `awards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`abbreviation` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`milestone_id` int(11) DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`options` text COLLATE utf8_unicode_ci,
`personalized` tinyint(4) DEFAULT '0',
`active` tinyint(4) DEFAULT '1',
PRIMARY KEY (`id`),
KEY `milestone_key` (`milestone_id`),
CONSTRAINT `awards_ibfk_1` FOREIGN KEY (`milestone_id`) REFERENCES `milestones` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `awards` (`id`, `name`, `abbreviation`, `milestone_id`, `description`, `image`, `options`, `personalized`, `active`) VALUES
(1, 'Cross® Pen', 'Pen', 1, 'This Cross® Calais chrome and blue lacquer rollerball pen is lightweight with a bold profile. It comes in a box with 25 Years engraved on the lid of the pen.\r\n25 year certificate', 'cross-pen-2.jpg', '[]', 0, 1),
(2, 'Bugatti® writing case and tablet holder', 'Case', 1, 'This recycled and synthetic leather case has 25 Years debossed on the front. The zippered closure keeps your tablet secure during transport, and adjustable brackets hold most tablet models, including three sizes of iPad (tablet is not included). The cover includes a pocket for a smartphone, USB and pen holders, card slots, an ID window and writing pad.\r\n\r\nSize: 10 3/4\" H X 9\" W', 'bugatti-writing-case.jpg', '[]', 0, 1),
(3, 'Passport and luggage tag set', 'Passport', 1, 'This genuine black leather passport holder and luggage tag has 25 Years debossed on the front. It has a magnetic closure. ', 'passport-luggage-thumb.jpg', '[]', 0, 1),
(4, 'Pearl earrings', 'Earrings', 1, 'These sterling silver, fresh water pearl earrings have an accent of gold. They are made in Vancouver, B.C. by Howling Dog Artisan Jewellery.\r\n\r\nSize: 2.5 cm L x 1 cm W\r\n\r\nNote: Due to the nature of this award, engraving is not possible.', 'pearlearringthumb.jpg', '[]', 0, 1),
(5, 'Appalachian Sherpa blanket', 'Blanket', 2, 'This high-end plush blanket has 30 Years embroidered on the corner. It’s made of faux suede on one side and soft Sherpa fleece on the other.\r\n\r\nSize: 60\" L x 50\" W', 'blanket.jpg', '[]', 0, 1),
(6, 'Howard Miller® Colonnade clock', 'Clock', 2, 'This bold optical crystal, carriage-style clock has In recognition of thirty years of service engraved on front plate. It features a black glass center panel and a white dial with black Roman numerals and hour markers surrounded by a polished silver-tone bezel.\r\n\r\nSize: 6.75\" H (17 cm) x 6.25\" W (16 cm)', 'clock.jpg', '[]', 0, 1),
(7, 'Epiphany III framed art print', 'Print', 2, 'This stunning photograph by B.C. artist Marvin Pelkey is printed on fine art paper and comes matted in a black frame. The frame has In recognition of thirty years of service engraved on a plaque.\r\n\r\nSize: 16” H x 16” W', '30yearprint-epiphany-sm.jpg', '[]', 0, 1),
(8, 'Sterling silver earrings', 'Earrings', 2, 'These sterling silver drop earrings are individually handcrafted by B.C. artists Nancy Dawson and Vincent Henson of Silver Eagles Design Studio in Alert Bay. They come in a box with In recognition of thirty years of service engraved on the top.\r\n\r\nSize: 2.75 cm L x 2 cm W\r\n\r\nNote: These earrings are designed to coordinate with the 35 year sterling silver bracelet.', 'silverearringsthumb.jpg', '[]', 0, 1),
(9, 'Bulova® watch', 'Watch', 3, 'This watch features the BC Coat of Arms on the dial and your name and 35 Years is engraved on the back of the watch face. It comes in a choice of gold, silver or two-toned watch face with a plated strap, or a black or brown leather strap. ', 'Watches-group-thumb.png', '[{\"name\":\"Size\",\"type\":\"choice\",\"values\":[\"Small (women\'s) = 29 mm watch face, 14 mm strap width\",\"Large (men\'s) = 38 mm watch face, 20 mm strap width\"]},{\"name\":\"Watch Colour\",\"type\":\"choice\",\"values\":[\"Gold\",\"Silver\"]},{\"name\":\"Strap Colour\",\"type\":\"choice\",\"values\":[\"Matching\",\"Black\",\"Brown\"]},{\"name\":\"Engravement\",\"type\":\"text\",\"values\":[],\"maxlength\":\"33\"}]', 1, 1),
(10, 'Bushnell® Prime binoculars', 'Binoculars', 3, 'The Bushnell® Prime 8x42 binocular is the perfect blend of magnification and field of view, allowing easy viewing of moving animals and birds. The EXO barrier and fully multi coated optics deliver bright images in any weather conditions. The Prime binoculars feature Bushnell’s newest and best protective lens coating that molecularly bonds to the glass, repelling water, oil, dust, debris and preventing scratches. With IPX7 waterproof construction, O-ring sealed optics stay dry inside, when immersed in three feet of water for up to 30 minutes. They come with a soft case.\n\nConfiguration = 8 x 42mm\nField of View 350/117 (ft.@1000 yrds/m@1000m)\nClose Focus = 10F/3M\nWeight = 23.3 oz (660 gm)\n\nNote: Due to the nature of this award, engraving is not possible.', '35yearbinoculars-sm.png', '[]', 0, 1),
(11, 'Blue Flower Bouquet glass vase', 'Vase', 3, 'Each of these unique glass vases are hand-blown by B.C. artist Robert Held in Parksville.\n\nSize:11.5\" H\n\nNote: Due to the nature of this gift, engraving is not possible.', 'vase-thumb.jpg', '[]', 0, 1),
(12, 'Sterling silver bracelet', 'Bracelet', 3, 'This sterling silver bracelet has a 14 kt yellow gold insert. It is handcrafted by B.C. artists Nancy Dawson and Vincent Henson of Silver Eagles Design Studio in Alert Bay. It comes in a box with In recognition of thirty five years of service engraved on the top.', 'bracelet-1-thumb.jpg', '[{\"name\":\"Size\",\"type\":\"choice\",\"values\":[\"Size A: fits 6 1/2 to 7 1/2 inch wrists\",\"Size B: fits 7 1/2 to 8 1/2 inch wrists\"]}]', 0, 1),
(13, 'Ergo® Napoleon Beauty mantle clock', 'Clock', 4, 'This clock features a wood frame in solids and veneers in a warm oak finish with burl accents. It has In recognition of forty years of service engraved on front plate. A brass finish bezel surrounds the dial. It has rich chimes which you can adjust to your preference (quarterly Westminster, quarterly Ava Maria, hourly Westminster or hourly/half hour strike).\r\n\r\nSize: 20\" H x 10\" W', 'napoleonclock-thumb.jpg', '[]', 0, 1),
(14, 'Genuine diamond pendant and chain', 'Pendant', 4, 'This necklace features a 10 kt white gold, four claw pendant and 18 inch box chain. The round brilliant cut diamonds are .20-carat total weight. It comes in a box with In recognition of forty years of service engraved on the top.', 'diamondnecklace-thumb.png', '[]', 0, 1),
(15, 'Genuine diamond stud earrings', 'Earrings', 4, 'These earrings are 14 kt white gold stud earrings featuring round brilliant cut diamonds that are .25 carat total weight. They come in a box with In recognition of forty years of service engraved on the top.', 'diamondearrings2.jpg', '[]', 0, 1),
(16, 'Blue Flower Bouquet glass bowl', 'Bowl', 4, 'Each of these unique glass bowls are hand-blown by B.C. artist Robert Held in Parksville.\r\n\r\nSize: 7\" H\r\n\r\nNote: Due to the nature of this award, engraving is not possible.', 'bowl40yearcopy-thumb.jpg', '[]', 0, 1),
(17, 'Forest Cove framed art print', 'Print', 4, 'This colourful landscape print was originally painted by artist Michaela Davidson, from Lake Cowichan, B.C. The artwork is presented in a matted green frame with In recognition of forty years of service engraved on a plaque.\r\n\r\nSize: 16\" H x 14\" W ', '40yearprint-forestcove-sm.jpg', '[]', 0, 1),
(18, 'Howard Miller® \"Park\" Clock', 'Clock', 5, 'Walnut wood finish, chiming wall clock with elegant roman numerals and gold tone accent hands. Quartz battery movement. Comes with an engraved plate “In recognition of forty-five years of service.”\r\nSize: 19 ½” H x 10” W ', 'howard-miller-clock-park.png', '[]', 0, 1),
(19, 'Thule® Subterra Luggage', 'Luggage', 5, 'This durable luggage from Thule® is made from water-resistant materials. The tough, oversized wheels and V-Tubing telescoping handles make for smooth and easy transport. It has a divided main compartment to separate clothes and has top, side and bottom grab handles. Complies with carry-on requirements for most airlines.\r\nSize: 21.7”L x 13.8”W x 7.9” H ', 'thule-luggage.png', '[]', 0, 1),
(20, 'Carson® Telescope', 'Telescope', 5, 'Refractor telescope with a 70mm short tube wide angle scope. Comes with an adjustable tabletop tripod and carrying case. D3 Silver Medallion.\r\nSpecs: focal length of 350mm, 45 degree diagonal, power range of 14x 116.6x.', 'carson-telescope.png', '[]', 0, 1),
(21, 'White Diamond Stud Earrings', 'Earrings', 5, 'These brilliant round cut diamonds are set in 14 kt. white gold with four white gold claws and butterfly backs. Comes with an engraved plate on the presentation box, “In recognition of forty-five years of service.”\r\nWeight: pair of diamonds is .30 ct. t.w.', 'white-diamond-stud-earings.png', '[]', 0, 1),
(22, 'Sterling Silver Gemstone Set', 'Gemstones', 6, 'Stunning sterling silver pendant necklace and earrings with blue topaz, peridot, and amethyst stones. Comes with an engraved plate on the presentation box, “In recognition of fifty years of service.”\r\nLength: 18”', 'sterling-silver-gemstone-set.jpg', '[]', 0, 1),
(23, 'Crystal Pitcher and Glass Set', 'Crystal', 6, 'Chesley, lead free crystal, 50 oz. water pitcher. Comes with four matching high ball glasses, 13 oz.\r\nWeight: 9 lbs.', 'crystal-pitcher-glass-set.jpg', '[]', 0, 1),
(24, 'Citizen® Axiom Eco-Drive Watch (mens)', 'Watch', 6, 'Black dial with black leather strap. Has date feature and is splash resistant. Comes in stainless steel case.\r\nSize of face: 40 mm diameter', 'citizen-watch.jpg', '[]', 0, 1),
(25, 'Bulova® \"Yarmouth\" Clock', 'Clock', 6, 'Bulova wall clock with thermometer and hygrometer. Comes in a beautiful walnut finish and has an engraved plate, “In recognition of fifty years of service.”\r\nSize: 17 ¼ \"H x 10 ¾” W x 3“ D', 'bulova-clock-yarmouth.jpg', '[]', 0, 1);
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `categories` (`id`, `name`) VALUES
(1, 'Her Honour'),
(2, 'Official Party'),
(3, 'Premier'),
(4, 'Minister'),
(5, 'Minister of State'),
(6, 'Director of Ceremonies'),
(7, 'Deputy Minister'),
(8, 'Associate Deputy Minister'),
(9, 'Assistant Deputy Minister'),
(10, 'Executive Director'),
(11, 'Human Resource Director'),
(12, 'Long Service Awards Contact');
DROP TABLE IF EXISTS `ceremonies`;
CREATE TABLE `ceremonies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`registration_year` int(11) DEFAULT NULL,
`night` int(11) DEFAULT NULL,
`date` datetime DEFAULT NULL,
`notes` text COLLATE utf8_unicode_ci,
`attending` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `ceremonies` (`id`, `registration_year`, `night`, `date`, `notes`, `attending`) VALUES
(1, 2019, 1, '2019-10-10 19:30:00', NULL, '[]'),
(2, 2019, 2, '2019-10-11 19:30:00', NULL, '[]'),
(3, 2019, 3, '2019-10-12 19:30:00', NULL, '[]'),
(4, 2020, 1, '2021-02-05 19:30:00', NULL, '[{\"ministry\":\"2\",\"milestone\":[3,4],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"11\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"-1\",\"type\":\"1\"},\"name\":[],\"processed\":true},{\"ministry\":\"13\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"name\":{\"start\":\"A\",\"end\":\"L\"},\"processed\":true}]'),
(5, 2020, 2, '2021-02-06 19:30:00', NULL, '[{\"ministry\":\"11\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"1997\",\"type\":\"0\"},\"processed\":true}]'),
(6, 2020, 3, '2021-02-11 19:30:00', NULL, '[{\"ministry\":\"12\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"19\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true}]'),
(7, 2020, 4, '2021-02-12 19:30:00', NULL, '[{\"ministry\":\"14\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"9\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"2\",\"milestone\":[1,2,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true}]'),
(8, 2020, 5, '2021-02-13 19:30:00', NULL, '[{\"ministry\":\"3\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"5\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"15\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"17\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true},{\"ministry\":\"7\",\"milestone\":[1,2,3,4,5,6],\"city\":{\"id\":\"\",\"type\":\"\"},\"processed\":true}]'),
(9, 2020, 6, '2021-02-17 19:30:00', NULL, '[]'),
(10, 2020, 7, '2021-02-18 19:30:00', NULL, '[]'),
(11, 2020, 8, '2021-02-19 19:30:00', NULL, '[]'),
(12, 2020, 9, '2021-02-20 19:30:00', NULL, '[]'),
(13, 2020, 10, '2021-02-25 19:30:00', NULL, '[]'),
(14, 2020, 11, '2021-02-26 19:30:00', NULL, '[]'),
(15, 2020, 12, '2021-02-27 19:30:00', NULL, '[]'),
(16, 2021, 12, '2021-10-15 19:30:00', NULL, '[]');
DROP TABLE IF EXISTS `cities`;
CREATE TABLE `cities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `cities` (`id`, `name`) VALUES
(1, '\'Ksan'),
(2, '12 Mile'),
(3, '40 Mile Flats'),
(4, '70 Mile'),
(5, '70 Mile House'),
(6, '93 Mile'),
(7, '100 Mile House'),
(8, '105 Mile House'),
(9, '108 Mile Ranch'),
(10, '111 Mile House'),
(11, '114 Mile House'),
(12, '122 Mile House'),
(13, '127 Mile House'),
(14, '141 Mile House'),
(15, '150 Mile House'),
(16, 'A:mai'),
(17, 'Aa-at-sow-is'),
(18, 'Abbotsford'),
(19, 'Aberdeen'),
(20, 'Acous'),
(21, 'Adams Lake'),
(22, 'Agassiz'),
(23, 'Agate'),
(24, 'Ah:tliish'),
(25, 'Ahbau'),
(26, 'Ahousat'),
(27, 'Ainsworth Hot Springs'),
(28, 'Aiyansh'),
(29, 'Ak:tiis'),
(30, 'Alamo'),
(31, 'Albas'),
(32, 'Alberni'),
(33, 'Albert Canyon'),
(34, 'Albert Head'),
(35, 'Albion'),
(36, 'Albreda'),
(37, 'Alder Creek'),
(38, 'Aldergrove'),
(39, 'Alert Bay'),
(40, 'Alexandria'),
(41, 'Alexis Creek'),
(42, 'Aleza Lake'),
(43, 'Alice Arm'),
(44, 'Alice Siding'),
(45, 'Alkali Lake'),
(46, 'Allenby'),
(47, 'Alliford Bay'),
(48, 'Allison Lake'),
(49, 'Almond Gardens'),
(50, 'Alpine Meadows'),
(51, 'Alta Lake'),
(52, 'Altamont'),
(53, 'Altona'),
(54, 'Alvin'),
(55, 'Ambleside'),
(56, 'Amsbury'),
(57, 'Anaconda'),
(58, 'Anahim Lake'),
(59, 'Anaqtl\'a'),
(60, 'Anderson'),
(61, 'Andimaul'),
(62, 'Anglemont'),
(63, 'Angusmac'),
(64, 'Anmore'),
(65, 'Annacis'),
(66, 'Anniedale'),
(67, 'Annis'),
(68, 'Anvil Island'),
(69, 'Anyox'),
(70, 'Anzac'),
(71, 'Apex Mountain'),
(72, 'Appledale'),
(73, 'Applegrove'),
(74, 'Arbutus Ridge'),
(75, 'Arden Park'),
(76, 'Ardmore'),
(77, 'Argenta'),
(78, 'Armstrong'),
(79, 'Armstrong Junction'),
(80, 'Arnold'),
(81, 'Arras'),
(82, 'Arrow Creek'),
(83, 'Arrow Park'),
(84, 'Arrowhead'),
(85, 'Arrowsmith'),
(86, 'Arrowview Heights'),
(87, 'Ashcroft'),
(88, 'Ashton Creek'),
(89, 'Aspen Grove'),
(90, 'Atbara'),
(91, 'Atchelitz'),
(92, 'Athalmer'),
(93, 'Atlin'),
(94, 'Atluck'),
(95, 'Atnarko'),
(96, 'Attachie'),
(97, 'Austin Heights'),
(98, 'Australian'),
(99, 'Avola'),
(100, 'Azouzetta'),
(101, 'Azu Ski Village'),
(102, 'Baker'),
(103, 'Baker Creek'),
(104, 'Baldonnel'),
(105, 'Baldy Hughes'),
(106, 'Balfour'),
(107, 'Balmoral'),
(108, 'Balmoral Beach'),
(109, 'Bamberton'),
(110, 'Bamfield'),
(111, 'Bankeir'),
(112, 'Barkerville'),
(113, 'Barlow'),
(114, 'Barlow Creek'),
(115, 'Barnet'),
(116, 'Barnhartvale'),
(117, 'Barnston Island'),
(118, 'Barrett'),
(119, 'Barrett Lake'),
(120, 'Barriere'),
(121, 'Barrowtown'),
(122, 'Basford'),
(123, 'Basque'),
(124, 'Bastion Bay'),
(125, 'Batchelor Hills'),
(126, 'Baynes Lake'),
(127, 'Beach Grove'),
(128, 'Beachcomber Bay'),
(129, 'Bear Camp'),
(130, 'Bear Creek'),
(131, 'Bear Flat'),
(132, 'Bear Lake'),
(133, 'Bear Mountain'),
(134, 'Beasley'),
(135, 'Beaton'),
(136, 'Beatton'),
(137, 'Beatton Ranch'),
(138, 'Beaver Cove'),
(139, 'Beaver Creek'),
(140, 'Beaver Falls'),
(141, 'Beaver Lake'),
(142, 'Beaver Pass House'),
(143, 'Beaver Point'),
(144, 'Beaverdell'),
(145, 'Beaverley'),
(146, 'Beavermouth'),
(147, 'Becher House'),
(148, 'Bedwell Harbour'),
(149, 'Belcarra'),
(150, 'Bell II'),
(151, 'Bella Bella'),
(152, 'Bella Coola'),
(153, 'Belleview'),
(154, 'Bellos'),
(155, 'Belmont Park'),
(156, 'Belvedere'),
(157, 'Ben-My-Chree'),
(158, 'Bend'),
(159, 'Benledi'),
(160, 'Bennett'),
(161, 'Benson Lake'),
(162, 'Benvoulin'),
(163, 'Beresford'),
(164, 'Bergs'),
(165, 'Beryl Prairie'),
(166, 'Bessborough'),
(167, 'Bestwick'),
(168, 'Bevan'),
(169, 'Big Bar Creek'),
(170, 'Big Bay'),
(171, 'Big Creek'),
(172, 'Big Eddy'),
(173, 'Big Lake Ranch'),
(174, 'Big White'),
(175, 'Billings'),
(176, 'Billings Bay'),
(177, 'Birch Island'),
(178, 'Birchbank'),
(179, 'Birchdale'),
(180, 'Birchland Manor'),
(181, 'Birken'),
(182, 'Black Creek'),
(183, 'Black Pines'),
(184, 'Blackcomb'),
(185, 'Blackloam'),
(186, 'Blackpool'),
(187, 'Blackwater'),
(188, 'Blaeberry'),
(189, 'Blake'),
(190, 'Blakeburn'),
(191, 'Blewett'),
(192, 'Blind Bay'),
(193, 'Blind Channel'),
(194, 'Bliss Landing'),
(195, 'Bloedel'),
(196, 'Blowhole'),
(197, 'Blubber Bay'),
(198, 'Blucher Hall'),
(199, 'Blue Hills'),
(200, 'Blue River'),
(201, 'Blue River East'),
(202, 'Blue River West'),
(203, 'Blue Springs'),
(204, 'Blueberry Creek'),
(205, 'Blueridge'),
(206, 'Boat Basin'),
(207, 'Boat Harbour'),
(208, 'Bob Quinn Lake'),
(209, 'Bold Point'),
(210, 'Bond'),
(211, 'Bonnet Hill'),
(212, 'Bonnington Falls'),
(213, 'Boothroyd'),
(214, 'Boring Ranch'),
(215, 'Boston Bar'),
(216, 'Boston Flats'),
(217, 'Boswell'),
(218, 'Bouchie Lake'),
(219, 'Boulder'),
(220, 'Boulder City'),
(221, 'Boundary Bay'),
(222, 'Boundary Falls'),
(223, 'Boundary Road'),
(224, 'Bowen Bay'),
(225, 'Bowen Island'),
(226, 'Bowser'),
(227, 'Box Lake'),
(228, 'Brackendale'),
(229, 'Bradner'),
(230, 'Brady Ranch'),
(231, 'Braeloch'),
(232, 'Braemar Heights'),
(233, 'Braeside'),
(234, 'Bralorne'),
(235, 'Brandon'),
(236, 'Brandywine'),
(237, 'Brem River'),
(238, 'Brentwood Bay'),
(239, 'Brentwood Park'),
(240, 'Brew Bay'),
(241, 'Brexton'),
(242, 'Briar Ridge'),
(243, 'Bridal Falls'),
(244, 'Bridesville'),
(245, 'Bridge'),
(246, 'Bridge Lake'),
(247, 'Bridgeport'),
(248, 'Bridgeview'),
(249, 'Brigade Lake'),
(250, 'Brighouse'),
(251, 'Brighton Beach'),
(252, 'Brilliant'),
(253, 'Brisco'),
(254, 'Britannia Beach'),
(255, 'British Properties'),
(256, 'Broadmoor'),
(257, 'Broadview'),
(258, 'Brocklehurst'),
(259, 'Broman Lake'),
(260, 'Brookmere'),
(261, 'Brookswood'),
(262, 'Brouse'),
(263, 'Brownsville'),
(264, 'Brunette Creek'),
(265, 'Brunswick'),
(266, 'Brunswick Beach'),
(267, 'Bryn'),
(268, 'Buccaneer Bay'),
(269, 'Buckhorn'),
(270, 'Buckingham Heights'),
(271, 'Buckinghorse River'),
(272, 'Buckley Bay'),
(273, 'Buffalo Creek'),
(274, 'Buick'),
(275, 'Bulkley Canyon'),
(276, 'Bulkley House'),
(277, 'Bull Harbour'),
(278, 'Bull River'),
(279, 'Bungalow G'),
(280, 'Buntzen Bay'),
(281, 'Burke Road'),
(282, 'Burkeville'),
(283, 'Burnaby'),
(284, 'Burnaby Heights'),
(285, 'Burns Lake'),
(286, 'Burquitlam'),
(287, 'Burton'),
(288, 'Butedale'),
(289, 'Cache Creek'),
(290, 'Cadboro Bay'),
(291, 'Caesars'),
(292, 'Cahilty'),
(293, 'Caithness'),
(294, 'Cale'),
(295, 'Callison Ranch'),
(296, 'Cambie'),
(297, 'Camborne'),
(298, 'Cameron Heights'),
(299, 'Cameron Lake'),
(300, 'Camp Artaban'),
(301, 'Camp McKinney'),
(302, 'Campbell Creek'),
(303, 'Campbell Island'),
(304, 'Campbell River'),
(305, 'Campbellton'),
(306, 'Canal Flats'),
(307, 'Canford'),
(308, 'Canim'),
(309, 'Canim Lake'),
(310, 'Canoe'),
(311, 'Canoe River'),
(312, 'Canyon'),
(313, 'Canyon Alpine'),
(314, 'Canyon Heights'),
(315, 'Canyon Hot Springs'),
(316, 'Capilano Highlands'),
(317, 'Capitol Hill'),
(318, 'Cariboo'),
(319, 'Cariboo Meadows'),
(320, 'Carlin'),
(321, 'Carlson'),
(322, 'Carmi'),
(323, 'Carnaby'),
(324, 'Carp'),
(325, 'Carraholly'),
(326, 'Carrolls Landing'),
(327, 'Carrs'),
(328, 'Carson'),
(329, 'Cascade'),
(330, 'Cascade Heights'),
(331, 'Casino'),
(332, 'Cassiar'),
(333, 'Cassidy'),
(334, 'Cassin'),
(335, 'Castle Rock'),
(336, 'Castledale'),
(337, 'Castlegar'),
(338, 'Caswell'),
(339, 'Cathedral'),
(340, 'Caulfeild'),
(341, 'Cawston'),
(342, 'Caycuse'),
(343, 'Cecil Lake'),
(344, 'Cedar'),
(345, 'Cedar Grove'),
(346, 'Cedardale'),
(347, 'Cedarside'),
(348, 'Cedarvale'),
(349, 'Ceepeecee'),
(350, 'Celista'),
(351, 'Central Saanich'),
(352, 'Centreville'),
(353, 'CFB Chilliwack'),
(354, 'Cha cha tsi tsi us'),
(355, 'Chaatl'),
(356, 'Chamiss Bay'),
(357, 'Chap-is'),
(358, 'Chapman Camp'),
(359, 'Chapmans'),
(360, 'Charella Garden'),
(361, 'Charles'),
(362, 'Charlie Lake'),
(363, 'Charlotte Lake'),
(364, 'Chase'),
(365, 'Chase River'),
(366, 'Chasm'),
(367, 'Chaumox'),
(368, 'Cheakamus'),
(369, 'Cheam View'),
(370, 'Cheekye'),
(371, 'Chemainus'),
(372, 'Chenatha'),
(373, 'Chequis'),
(374, 'Cherry Creek'),
(375, 'Cherryville'),
(376, 'Cheslatta'),
(377, 'Chetarpe'),
(378, 'Chetwynd'),
(379, 'Chezacut'),
(380, 'Chilanko Forks'),
(381, 'Chilcotin Forest'),
(382, 'Chilliwack'),
(383, 'China Bar'),
(384, 'Chineside'),
(385, 'Chinook Cove'),
(386, 'Choate'),
(387, 'Chopaka'),
(388, 'Christian Valley'),
(389, 'Christina Lake'),
(390, 'Chu Chua'),
(391, 'Chumata'),
(392, 'Church House'),
(393, 'Chute Lake'),
(394, 'Cinema'),
(395, 'Cinnabar Valley'),
(396, 'Cisco'),
(397, 'Clairmont'),
(398, 'Clanwilliam'),
(399, 'Clapperton'),
(400, 'Clayburn'),
(401, 'Clayhurst'),
(402, 'Clayoquot'),
(403, 'Clearbrook'),
(404, 'Clearwater'),
(405, 'Clemina East'),
(406, 'Clemina West'),
(407, 'Clemretta'),
(408, 'Cleveland Park'),
(409, 'Cliffside'),
(410, 'Clinton'),
(411, 'Clo-oose'),
(412, 'Clode'),
(413, 'Cloverdale'),
(414, 'Clutus'),
(415, 'Coal Harbour'),
(416, 'Coal River'),
(417, 'Coalmont'),
(418, 'Cobble Hill'),
(419, 'Cody'),
(420, 'Cokato'),
(421, 'Coldspring House'),
(422, 'Coldstream'),
(423, 'Coldwell Beach'),
(424, 'Colebank'),
(425, 'Colebrook'),
(426, 'College Heights'),
(427, 'Collettville'),
(428, 'Colleymount'),
(429, 'Colquitz'),
(430, 'Columbia Gardens'),
(431, 'Colvalli'),
(432, 'Colwood'),
(433, 'Comer'),
(434, 'Commodore Heights'),
(435, 'Comox'),
(436, 'Connaught Heights'),
(437, 'Conrad'),
(438, 'Coombe'),
(439, 'Coombs'),
(440, 'Cooper Creek'),
(441, 'Copper Creek'),
(442, 'Copper Mountain'),
(443, 'Coquitlam'),
(444, 'Corbin'),
(445, 'Cordova Bay'),
(446, 'Corra Linn'),
(447, 'Cortes Bay'),
(448, 'Cosy Cove'),
(449, 'Cottonwood'),
(450, 'Cotwood'),
(451, 'Courtenay'),
(452, 'Coutlee'),
(453, 'Cove Cliff'),
(454, 'Cowans Point'),
(455, 'Cowichan Bay'),
(456, 'Cowichan Station'),
(457, 'Coykendahl'),
(458, 'Coyle'),
(459, 'Cracroft'),
(460, 'Craigellachie'),
(461, 'Cranberry'),
(462, 'Cranberry Junction'),
(463, 'Cranbrook'),
(464, 'Crawford Bay'),
(465, 'Creekside'),
(466, 'Creighton Valley'),
(467, 'Crescent'),
(468, 'Crescent Bay'),
(469, 'Crescent Beach'),
(470, 'Crescent Spur'),
(471, 'Crescent Valley'),
(472, 'Creston'),
(473, 'Criss Creek'),
(474, 'Crofton'),
(475, 'Crowsnest'),
(476, 'Croydon'),
(477, 'Crysdale'),
(478, 'Cultus Lake'),
(479, 'Cumberland'),
(480, 'Cumshewa'),
(481, 'Curzon'),
(482, 'Cypress Park'),
(483, 'D\'Arcy'),
(484, 'Dadens'),
(485, 'Dallas'),
(486, 'Danskin'),
(487, 'Darfield'),
(488, 'Darrell Bay'),
(489, 'Dartmoor'),
(490, 'Dashwood'),
(491, 'Davidson'),
(492, 'Davis Bay'),
(493, 'Dawson Creek'),
(494, 'Dawsons Landing'),
(495, 'Days Ranch'),
(496, 'Deadwood'),
(497, 'Dease Lake'),
(498, 'Decker Lake'),
(499, 'Deekyakus'),
(500, 'Deep Bay'),
(501, 'Deep Cove'),
(502, 'Deep Creek'),
(503, 'Deer Park'),
(504, 'Deerholme'),
(505, 'Defot'),
(506, 'Deka Lake'),
(507, 'Delbrook'),
(508, 'Delkatla'),
(509, 'Delta'),
(510, 'Demean'),
(511, 'Denman Island'),
(512, 'Dentville'),
(513, 'Departure Bay'),
(514, 'Deroche'),
(515, 'Devine'),
(516, 'Dewdney'),
(517, 'Dewey'),
(518, 'Digby Island'),
(519, 'Dochsupple'),
(520, 'Dodge Cove'),
(521, 'Doe River'),
(522, 'Dog Creek'),
(523, 'Dogwood Valley'),
(524, 'Doig River'),
(525, 'Dokie'),
(526, 'Dokie Siding'),
(527, 'Dollarton'),
(528, 'Dolphin Beach'),
(529, 'Dome Creek'),
(530, 'Donald'),
(531, 'Donald Landing'),
(532, 'Donnely Landing'),
(533, 'Dookqua'),
(534, 'Doriston'),
(535, 'Dorreen'),
(536, 'Dot'),
(537, 'Douglas'),
(538, 'Douglas Lake'),
(539, 'Downie'),
(540, 'Dragon'),
(541, 'Drewry'),
(542, 'Driftwood Creek'),
(543, 'Dry Gulch'),
(544, 'Drynoch'),
(545, 'DuBose'),
(546, 'Duck Range'),
(547, 'Dufferin'),
(548, 'Dugan Lake'),
(549, 'Dunbar-Southlands'),
(550, 'Duncan'),
(551, 'Duncan Bay'),
(552, 'Duncanby Landing'),
(553, 'Dundarave'),
(554, 'Dunkley'),
(555, 'Dunsmuir'),
(556, 'Dunster'),
(557, 'Durieu'),
(558, 'Eagle Bay'),
(559, 'Eagle Bluff'),
(560, 'Eagle Creek'),
(561, 'Eagle Harbour'),
(562, 'Eagle Heights'),
(563, 'Eagle Ridge'),
(564, 'Eagle Run'),
(565, 'Earls Cove'),
(566, 'East Arrow Park'),
(567, 'East Gate'),
(568, 'East Kelowna'),
(569, 'East Osoyoos'),
(570, 'East Pine'),
(571, 'East Sooke'),
(572, 'East Trail'),
(573, 'East Wellington'),
(574, 'Eastbourne'),
(575, 'Eastburn'),
(576, 'Eastgate'),
(577, 'Echo Bay'),
(578, 'Ecoole'),
(579, 'Eddontenajon'),
(580, 'Eddy'),
(581, 'Edelweiss'),
(582, 'Edgewater'),
(583, 'Edgewood'),
(584, 'Egmont'),
(585, 'Ehatisaht'),
(586, 'Eholt'),
(587, 'Ekins Point'),
(588, 'Ekwan'),
(589, 'Elephant Crossing'),
(590, 'Elgin'),
(591, 'Elk Bay'),
(592, 'Elk Prairie'),
(593, 'Elkford'),
(594, 'Elko'),
(595, 'Elkview'),
(596, 'Elleh'),
(597, 'Ellison'),
(598, 'Elphinstone'),
(599, 'Encombe'),
(600, 'Endako'),
(601, 'Engen'),
(602, 'Engineer'),
(603, 'Enterprise'),
(604, 'Erickson'),
(605, 'Erie'),
(606, 'Errington'),
(607, 'Esler'),
(608, 'Esperanza'),
(609, 'Esquimalt'),
(610, 'Essondale'),
(611, 'Estevan Point'),
(612, 'Evans'),
(613, 'Evelyn'),
(614, 'Ewing'),
(615, 'Exeter'),
(616, 'Exlou'),
(617, 'Exstew'),
(618, 'Extension'),
(619, 'Fair Harbour'),
(620, 'Fairbridge'),
(621, 'Fairfield'),
(622, 'Fairmont'),
(623, 'Fairmont Hot Springs'),
(624, 'Fairview'),
(625, 'Falkland'),
(626, 'Falls'),
(627, 'Falls Creek'),
(628, 'False Bay'),
(629, 'Fanny Bay'),
(630, 'Farmington'),
(631, 'Farrell Creek'),
(632, 'Farron'),
(633, 'Faulder'),
(634, 'Fauquier'),
(635, 'Federal Ranch'),
(636, 'Fellers Heights'),
(637, 'Fenwick'),
(638, 'Ferguson'),
(639, 'Fern Ridge'),
(640, 'Ferndale'),
(641, 'Fernie'),
(642, 'Fernlee'),
(643, 'Fernwood'),
(644, 'Field'),
(645, 'Fife'),
(646, 'Fifth Cabin'),
(647, 'Fill'),
(648, 'Finmoore'),
(649, 'Fintry'),
(650, 'Fireside'),
(651, 'Firvale'),
(652, 'Fitzwilliam'),
(653, 'Five Mile'),
(654, 'Flat Creek'),
(655, 'Flathead'),
(656, 'Flatrock'),
(657, 'Fleetwood'),
(658, 'Fleming'),
(659, 'Floods'),
(660, 'Flying U'),
(661, 'Fontas'),
(662, 'Forde'),
(663, 'Fording'),
(664, 'Foreman'),
(665, 'Forest Grove'),
(666, 'Forest Hills'),
(667, 'Forest Knolls'),
(668, 'Forestdale'),
(669, 'Fort Babine'),
(670, 'Fort Fraser'),
(671, 'Fort Langley'),
(672, 'Fort Nelson'),
(673, 'Fort Rupert'),
(674, 'Fort St. James'),
(675, 'Fort St. John'),
(676, 'Fort Steele'),
(677, 'Fort Ware'),
(678, 'Foss'),
(679, 'Foster'),
(680, 'Fosthall'),
(681, 'Fountain'),
(682, 'Fountain Valley'),
(683, 'Fourth Cabin'),
(684, 'Fowler'),
(685, 'Fraine'),
(686, 'Frames'),
(687, 'Franklin Camp'),
(688, 'François Lake'),
(689, 'Fraser'),
(690, 'Fraser Heights'),
(691, 'Fraser Lake'),
(692, 'Fraser Mills'),
(693, 'Fraser River Junction'),
(694, 'Fraserview'),
(695, 'Frederick'),
(696, 'French Creek'),
(697, 'Fruitvale'),
(698, 'Fry Creek'),
(699, 'Fulford Harbour'),
(700, 'Furry Creek'),
(701, 'Gabriola'),
(702, 'Galena'),
(703, 'Galena Bay'),
(704, 'Galiano'),
(705, 'Galloway'),
(706, 'Gambier Harbour'),
(707, 'Gang Ranch'),
(708, 'Ganges'),
(709, 'Garbitt'),
(710, 'Garden Bay'),
(711, 'Garden Village'),
(712, 'Garibaldi'),
(713, 'Garibaldi Estates'),
(714, 'Garibaldi Highlands'),
(715, 'Garnet Valley'),
(716, 'Gates'),
(717, 'Gateway'),
(718, 'Gellatly'),
(719, 'Genelle'),
(720, 'Genoa Bay'),
(721, 'George River'),
(722, 'Georgetown Mills'),
(723, 'Germansen Landing'),
(724, 'Gerrard'),
(725, 'Gibbs'),
(726, 'Gibraltar'),
(727, 'Gibson Creek'),
(728, 'Gibsons'),
(729, 'Gifford'),
(730, 'Gillies Bay'),
(731, 'Gilpin'),
(732, 'Gingolx'),
(733, 'Giscome'),
(734, 'Gitanyow'),
(735, 'Gitlaxksiip'),
(736, 'Gitwinksihlkw'),
(737, 'Glacier'),
(738, 'Glade'),
(739, 'Gladwin'),
(740, 'Gleam'),
(741, 'Glen Fraser'),
(742, 'Glen Lake'),
(743, 'Glen Valley'),
(744, 'Glen Vowell'),
(745, 'Glenannan'),
(746, 'Glenbank'),
(747, 'Glenbrooke North'),
(748, 'Glendale'),
(749, 'Gleneagles'),
(750, 'Gleneden'),
(751, 'Glenemma'),
(752, 'Glenlily'),
(753, 'Glenmerry'),
(754, 'Glenmore'),
(755, 'Glenogle'),
(756, 'Glenora'),
(757, 'Glenrosa'),
(758, 'Glentanna'),
(759, 'Goat River'),
(760, 'Goatfell'),
(761, 'Gold Bridge'),
(762, 'Gold River'),
(763, 'Golden'),
(764, 'Goldstream'),
(765, 'Good Hope'),
(766, 'Good Hope Lake'),
(767, 'Goodlow'),
(768, 'Goose Bay'),
(769, 'Gordon Head'),
(770, 'Gordon River'),
(771, 'Gosnell'),
(772, 'Graham'),
(773, 'Gramsons'),
(774, 'Grand Forks'),
(775, 'Grand Haven'),
(776, 'Grand Rapids'),
(777, 'Grand Trunk'),
(778, 'Granduc'),
(779, 'Grandview'),
(780, 'Grandview Bench'),
(781, 'Grandview-Woodlands'),
(782, 'Granisle'),
(783, 'Granite'),
(784, 'Granite Bay'),
(785, 'Granite Falls'),
(786, 'Grant Brook'),
(787, 'Grantham'),
(788, 'Granthams Landing'),
(789, 'Grasmere'),
(790, 'Grassy Plains'),
(791, 'Gravelle Ferry'),
(792, 'Gray Creek'),
(793, 'Great Central'),
(794, 'Greata'),
(795, 'Greeley'),
(796, 'Green Cove'),
(797, 'Green River'),
(798, 'Greendale'),
(799, 'Greenhills'),
(800, 'Greening'),
(801, 'Greenwood'),
(802, 'Griffith'),
(803, 'Grindrod'),
(804, 'Groundbirch'),
(805, 'Guildford'),
(806, 'Gundy'),
(807, 'Gutah'),
(808, 'Gyproc'),
(809, 'Hagensborg'),
(810, 'Hagwilget'),
(811, 'Haig'),
(812, 'Haina'),
(813, 'Haisla'),
(814, 'Halfmoon Bay'),
(815, 'Halfway Ranch'),
(816, 'Hall'),
(817, 'Halliday'),
(818, 'Hanceville'),
(819, 'Haney'),
(820, 'Hansard'),
(821, 'Happy Valley'),
(822, 'Harbour Chines'),
(823, 'Harbour Village'),
(824, 'Hardwicke Island'),
(825, 'Harmac'),
(826, 'Harmer'),
(827, 'Harrison Hot Springs'),
(828, 'Harrison Mills'),
(829, 'Harrogate'),
(830, 'Harrop'),
(831, 'Hart'),
(832, 'Hart Highlands'),
(833, 'Hartley Bay'),
(834, 'Harvey'),
(835, 'Hasler Flat'),
(836, 'Hastings-Sunrise'),
(837, 'Hatzic'),
(838, 'Hawks'),
(839, 'Haysport'),
(840, 'Hayward'),
(841, 'Hazelmere'),
(842, 'Hazelton'),
(843, 'Headquarters'),
(844, 'Health Bay'),
(845, 'Hecate'),
(846, 'Hector'),
(847, 'Hedley'),
(848, 'Heffley Creek'),
(849, 'Hells Gate'),
(850, 'Hemlock Valley'),
(851, 'Hendrix Lake'),
(852, 'Heriot Bay'),
(853, 'Hesquiat'),
(854, 'Heydon Bay'),
(855, 'Hi\'tatis'),
(856, 'Hickethier Ranch'),
(857, 'Hicks'),
(858, 'Highlands'),
(859, 'Hiina\'is'),
(860, 'Hillbank'),
(861, 'Hillcrest'),
(862, 'Hilliers'),
(863, 'Hills'),
(864, 'Hilltop'),
(865, 'Hippa'),
(866, 'Hisnit'),
(867, 'Hitacu'),
(868, 'Hiusta Meadow'),
(869, 'Hixon'),
(870, 'Hkusam'),
(871, 'Hodda'),
(872, 'Holberg'),
(873, 'Hollyburn'),