jpostcode_rs 0.1.4

Japanese postal code lookup library in Rust, powered by jpostcode-data
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
{
  "0000": {
    "postcode": "7210000",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0901": {
    "postcode": "7210901",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日町宇山",
    "town_kana": "カスガチョウウヤマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0902": {
    "postcode": "7210902",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日町浦上",
    "town_kana": "カスガチョウウラカミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0903": {
    "postcode": "7210903",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "坪生町",
    "town_kana": "ツボウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0904": {
    "postcode": "7210904",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "坪生町南",
    "town_kana": "ツボウチョウミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0906": {
    "postcode": "7210906",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "能島",
    "town_kana": "ノウジマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0907": {
    "postcode": "7210907",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日町",
    "town_kana": "カスガチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0908": {
    "postcode": "7210908",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日町吉田",
    "town_kana": "カスガチョウヨシダ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0911": {
    "postcode": "7210911",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "青葉台",
    "town_kana": "アオバダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0912": {
    "postcode": "7210912",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "東陽台",
    "town_kana": "トウヨウダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0913": {
    "postcode": "7210913",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "幕山台",
    "town_kana": "マクヤマダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0914": {
    "postcode": "7210914",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大谷台",
    "town_kana": "オオタニダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0915": {
    "postcode": "7210915",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "伊勢丘",
    "town_kana": "イセガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0916": {
    "postcode": "7210916",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日台",
    "town_kana": "カスガダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0917": {
    "postcode": "7210917",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日池",
    "town_kana": "カスガイケ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0921": {
    "postcode": "7210921",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町大門",
    "town_kana": "ダイモンチョウダイモン",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0922": {
    "postcode": "7210922",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町日之出丘",
    "town_kana": "ダイモンチョウヒノデオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0923": {
    "postcode": "7210923",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町野々浜",
    "town_kana": "ダイモンチョウノノハマ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0924": {
    "postcode": "7210924",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町旭",
    "town_kana": "ダイモンチョウアサヒ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0925": {
    "postcode": "7210925",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町坂里",
    "town_kana": "ダイモンチョウサカリ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0926": {
    "postcode": "7210926",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町",
    "town_kana": "ダイモンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0927": {
    "postcode": "7210927",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町津之下",
    "town_kana": "ダイモンチョウツノシタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0929": {
    "postcode": "7210929",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "城興ケ丘",
    "town_kana": "ジョウコウガオカ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0931": {
    "postcode": "7210931",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "鋼管町",
    "town_kana": "コウカンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0941": {
    "postcode": "7210941",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町北",
    "town_kana": "ヒキノチョウキタ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0942": {
    "postcode": "7210942",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町",
    "town_kana": "ヒキノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0943": {
    "postcode": "7210943",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "平成台",
    "town_kana": "ヘイセイダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0944": {
    "postcode": "7210944",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町東",
    "town_kana": "ヒキノチョウヒガシ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0945": {
    "postcode": "7210945",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町南",
    "town_kana": "ヒキノチョウミナミ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0951": {
    "postcode": "7210951",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "新浜町",
    "town_kana": "シンハマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0952": {
    "postcode": "7210952",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "曙町",
    "town_kana": "アケボノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0953": {
    "postcode": "7210953",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "一文字町",
    "town_kana": "イチモンジチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0954": {
    "postcode": "7210954",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "卸町",
    "town_kana": "オロシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0955": {
    "postcode": "7210955",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "新涯町",
    "town_kana": "シンガイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0956": {
    "postcode": "7210956",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕沖町",
    "town_kana": "ミノオキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0957": {
    "postcode": "7210957",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0958": {
    "postcode": "7210958",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "西新涯町",
    "town_kana": "ニシシンガイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0961": {
    "postcode": "7210961",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "明神町",
    "town_kana": "ミョウジンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0962": {
    "postcode": "7210962",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "東手城町",
    "town_kana": "ヒガシテシロチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0963": {
    "postcode": "7210963",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "南手城町",
    "town_kana": "ミナミテシロチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0964": {
    "postcode": "7210964",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "港町",
    "town_kana": "ミナトマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0965": {
    "postcode": "7210965",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "王子町",
    "town_kana": "オウジチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0966": {
    "postcode": "7210966",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "手城町",
    "town_kana": "テシロチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0971": {
    "postcode": "7210971",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "蔵王町",
    "town_kana": "ザオウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0972": {
    "postcode": "7210972",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "日吉台",
    "town_kana": "ヒヨシダイ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0973": {
    "postcode": "7210973",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "南蔵王町",
    "town_kana": "ミナミザオウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0974": {
    "postcode": "7210974",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "東深津町",
    "town_kana": "ヒガシフカツチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0975": {
    "postcode": "7210975",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "西深津町",
    "town_kana": "ニシフカツチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "7218501",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "6280−30",
    "office_name": "リンクス 株式会社",
    "office_name_kana": "リンクス カブシキガイシヤ"
  },
  "8502": {
    "postcode": "7218502",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町",
    "town_kana": "ヒキノチョウ",
    "street": "980−1",
    "office_name": "学校法人 広島加計学園 英数学館小学中学高等学校",
    "office_name_kana": "ガツコウホウジン ヒロシマカケガクエン エイスウガクカンシヨウガクチユウガクコウトウガツコウ"
  },
  "8505": {
    "postcode": "7218505",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "6280−10",
    "office_name": "株式会社 シーケイエス・チューキ",
    "office_name_kana": "カブシキガイシヤ シ-ケイエス・チユ-キ"
  },
  "8510": {
    "postcode": "7218510",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "鋼管町",
    "town_kana": "コウカンチョウ",
    "street": "1番地",
    "office_name": "JFEスチール 株式会社",
    "office_name_kana": "ジエイエフイ-スチ-ル カブシキガイシヤ"
  },
  "8511": {
    "postcode": "7218511",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "蔵王町",
    "town_kana": "ザオウチョウ",
    "street": "5丁目23−1",
    "office_name": "福山市民病院",
    "office_name_kana": "フクヤマシミンビヨウイン"
  },
  "8514": {
    "postcode": "7218514",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "西深津町",
    "town_kana": "ニシフカツチョウ",
    "street": "6丁目12−1",
    "office_name": "近畿中国四国農業研究センター",
    "office_name_kana": "キンキチユウゴクシコクノウギヨウケンキユウセンタ-"
  },
  "8515": {
    "postcode": "7218515",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "6544",
    "office_name": "株式会社 栄光",
    "office_name_kana": "カブシキガイシヤ エイコウ"
  },
  "8522": {
    "postcode": "7218522",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "大門町旭",
    "town_kana": "ダイモンチョウアサヒ",
    "street": "",
    "office_name": "シャープ 株式会社 LSI事業本部",
    "office_name_kana": "シヤ-プ カブシキガイシヤ エルエスアイジギヨウホンブ"
  },
  "8528": {
    "postcode": "7218528",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "南丘399−11",
    "office_name": "有限会社 柿原銘板製作所",
    "office_name_kana": "ユウゲンガイシヤ カキハラメイバンセイサクシヨ"
  },
  "8540": {
    "postcode": "7218540",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "南丘5351",
    "office_name": "早川ゴム 株式会社",
    "office_name_kana": "ハヤカワゴム カブシキガイシヤ"
  },
  "8541": {
    "postcode": "7218541",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "卸町",
    "town_kana": "オロシマチ",
    "street": "4−1",
    "office_name": "株式会社 フォーデック 福山支社",
    "office_name_kana": "カブシキガイシヤ フオ-デツク フクヤマシシヤ"
  },
  "8543": {
    "postcode": "7218543",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "曙町",
    "town_kana": "アケボノチョウ",
    "street": "2丁目3番17号",
    "office_name": "深江特殊鋼 株式会社",
    "office_name_kana": "フカエトクシユコウ カブシキガイシヤ"
  },
  "8545": {
    "postcode": "7218545",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "西深津町",
    "town_kana": "ニシフカツチョウ",
    "street": "3丁目4−1",
    "office_name": "福山暁の星学院",
    "office_name_kana": "フクヤマアケノホシガクイン"
  },
  "8550": {
    "postcode": "7218550",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "伊勢丘",
    "town_kana": "イセガオカ",
    "street": "2丁目1−1",
    "office_name": "JFE 三番館",
    "office_name_kana": "ジエイエフイ- サンバンカン"
  },
  "8551": {
    "postcode": "7218551",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "春日町",
    "town_kana": "カスガチョウ",
    "street": "5丁目14−1",
    "office_name": "広島大学附属福山中・高等学校",
    "office_name_kana": "ヒロシマダイガクフゾクフクヤマチユウ・コウトウガツコウ"
  },
  "8555": {
    "postcode": "7218555",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "東深津町",
    "town_kana": "ヒガシフカツチョウ",
    "street": "4丁目20−1",
    "office_name": "福山通運 株式会社",
    "office_name_kana": "フクヤマツウウン カブシキガイシヤ"
  },
  "8556": {
    "postcode": "7218556",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "王子町",
    "town_kana": "オウジチョウ",
    "street": "1丁目3−5",
    "office_name": "青山商事 株式会社",
    "office_name_kana": "アオヤマシヨウジ カブシキガイシヤ"
  },
  "8558": {
    "postcode": "7218558",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕沖町",
    "town_kana": "ミノオキチョウ",
    "street": "97及び95−7",
    "office_name": "池田糖化工業 株式会社",
    "office_name_kana": "イケダトウカコウギヨウ カブシキガイシヤ"
  },
  "8564": {
    "postcode": "7218564",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "曙町",
    "town_kana": "アケボノチョウ",
    "street": "1丁目8−11",
    "office_name": "トラスコ中山 株式会社 福山営業所",
    "office_name_kana": "トラスコナカヤマ カブシキガイシヤ フクヤマエイギヨウシヨ"
  },
  "8567": {
    "postcode": "7218567",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕沖町",
    "town_kana": "ミノオキチョウ",
    "street": "126",
    "office_name": "日本化薬 株式会社 福山工場",
    "office_name_kana": "ニホンカヤク カブシキガイシヤ フクヤマコウジヨウ"
  },
  "8575": {
    "postcode": "7218575",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕島町",
    "town_kana": "ミノシマチョウ",
    "street": "5378",
    "office_name": "株式会社 シギヤ精機製作所",
    "office_name_kana": "カブシキガイシヤ シギヤセイキセイサクシヨ"
  },
  "8576": {
    "postcode": "7218576",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "卸町",
    "town_kana": "オロシマチ",
    "street": "7−6",
    "office_name": "明和産業 株式会社",
    "office_name_kana": "メイワサンギヨウ カブシキガイシヤ"
  },
  "8577": {
    "postcode": "7218577",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "引野町",
    "town_kana": "ヒキノチョウ",
    "street": "2丁目44−13",
    "office_name": "アシード 株式会社",
    "office_name_kana": "アシ-ド カブシキガイシヤ"
  },
  "8585": {
    "postcode": "7218585",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "伊勢丘",
    "town_kana": "イセガオカ",
    "street": "3丁目5−1",
    "office_name": "JFE 二番館",
    "office_name_kana": "ジエイエフイ- ニバンカン"
  },
  "8586": {
    "postcode": "7218586",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "箕沖町",
    "town_kana": "ミノオキチョウ",
    "street": "105−3",
    "office_name": "藤井商事 株式会社",
    "office_name_kana": "フジイシヨウジ カブシキガイシヤ"
  },
  "8588": {
    "postcode": "7218588",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "南蔵王町",
    "town_kana": "ミナミザオウチョウ",
    "street": "4丁目5−18",
    "office_name": "社団法人 福山労働会館",
    "office_name_kana": "シヤダンホウジン フクヤマロウドウカイカン"
  },
  "8601": {
    "postcode": "7218601",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "南手城町",
    "town_kana": "ミナミテシロチョウ",
    "street": "2丁目26−1(福山東郵便局私書箱第23号)",
    "office_name": "福山瓦斯 株式会社",
    "office_name_kana": "フクヤマガス カブシキガイシヤ"
  },
  "8607": {
    "postcode": "7218607",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "曙町",
    "town_kana": "アケボノチョウ",
    "street": "1丁目12−15(福山東郵便局私書箱第4号)",
    "office_name": "株式会社 エフピコ",
    "office_name_kana": "カブシキガイシヤ エフピコ"
  },
  "8631": {
    "postcode": "7218631",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "一文字町",
    "town_kana": "イチモンジチョウ",
    "street": "14番31号(福山東郵便局私書箱第31号)",
    "office_name": "丸富 株式会社",
    "office_name_kana": "マルトミ カブシキガイシヤ"
  },
  "8688": {
    "postcode": "7218688",
    "prefecture": "広島県",
    "prefecture_kana": "ヒロシマケン",
    "prefecture_code": 34,
    "city": "福山市",
    "city_kana": "フクヤマシ",
    "town": "一文字町",
    "town_kana": "イチモンジチョウ",
    "street": "6−1(福山東郵便局私書箱第59番)",
    "office_name": "山陽染工 株式会社",
    "office_name_kana": "サンヨウセンコウ カブシキガイシヤ"
  }
}