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
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
{
  "0000": {
    "postcode": "4460000",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "",
    "town_kana": "",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0001": {
    "postcode": "4460001",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "里町",
    "town_kana": "サトチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0002": {
    "postcode": "4460002",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "橋目町",
    "town_kana": "ハシメチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0003": {
    "postcode": "4460003",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "柿さき町",
    "town_kana": "カキサキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0004": {
    "postcode": "4460004",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "尾崎町",
    "town_kana": "オザキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0005": {
    "postcode": "4460005",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "宇頭茶屋町",
    "town_kana": "ウトウチャヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0006": {
    "postcode": "4460006",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "浜屋町",
    "town_kana": "ハマヤチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0007": {
    "postcode": "4460007",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "東栄町",
    "town_kana": "トウエイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0008": {
    "postcode": "4460008",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0011": {
    "postcode": "4460011",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "北山崎町",
    "town_kana": "キタヤマザキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0012": {
    "postcode": "4460012",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "西別所町",
    "town_kana": "ニシベッショチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0013": {
    "postcode": "4460013",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "東別所町",
    "town_kana": "ヒガシベッショチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0014": {
    "postcode": "4460014",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "別郷町",
    "town_kana": "ベツゴウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0015": {
    "postcode": "4460015",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "高木町",
    "town_kana": "タカギチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0016": {
    "postcode": "4460016",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "山崎町",
    "town_kana": "ヤマザキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0017": {
    "postcode": "4460017",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "大岡町",
    "town_kana": "オオオカチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0018": {
    "postcode": "4460018",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "東新町",
    "town_kana": "トウシンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0019": {
    "postcode": "4460019",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "新明町",
    "town_kana": "シンメイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0021": {
    "postcode": "4460021",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "法連町",
    "town_kana": "ホウレンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0022": {
    "postcode": "4460022",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "浜富町",
    "town_kana": "ハマトミチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0023": {
    "postcode": "4460023",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "上条町",
    "town_kana": "ジョウジョウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0024": {
    "postcode": "4460024",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "河野町",
    "town_kana": "カワノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0025": {
    "postcode": "4460025",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "古井町",
    "town_kana": "フルイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0026": {
    "postcode": "4460026",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "安城町",
    "town_kana": "アンジョウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0027": {
    "postcode": "4460027",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "東明町",
    "town_kana": "トウメイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0031": {
    "postcode": "4460031",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "朝日町",
    "town_kana": "アサヒマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0032": {
    "postcode": "4460032",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "御幸本町",
    "town_kana": "ミユキホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0033": {
    "postcode": "4460033",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "日の出町",
    "town_kana": "ヒノデチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0034": {
    "postcode": "4460034",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "南町",
    "town_kana": "ミナミマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0035": {
    "postcode": "4460035",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "錦町",
    "town_kana": "ニシキマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0036": {
    "postcode": "4460036",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "小堤町",
    "town_kana": "コヅツミチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0037": {
    "postcode": "4460037",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "相生町",
    "town_kana": "アイオイチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0038": {
    "postcode": "4460038",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "末広町",
    "town_kana": "スエヒロチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0039": {
    "postcode": "4460039",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "花ノ木町",
    "town_kana": "ハナノキチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0041": {
    "postcode": "4460041",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0042": {
    "postcode": "4460042",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "大山町",
    "town_kana": "オオヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0043": {
    "postcode": "4460043",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "城南町",
    "town_kana": "ジョウナンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0044": {
    "postcode": "4460044",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "百石町",
    "town_kana": "ヒャッコクチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0045": {
    "postcode": "4460045",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "横山町",
    "town_kana": "ヨコヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0046": {
    "postcode": "4460046",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "赤松町",
    "town_kana": "アカマツチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0051": {
    "postcode": "4460051",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "箕輪町",
    "town_kana": "ミノワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0052": {
    "postcode": "4460052",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "福釜町",
    "town_kana": "フカマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0053": {
    "postcode": "4460053",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "高棚町",
    "town_kana": "タカタナチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0054": {
    "postcode": "4460054",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "二本木町",
    "town_kana": "ニホンギチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0055": {
    "postcode": "4460055",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "緑町",
    "town_kana": "ミドリチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0056": {
    "postcode": "4460056",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城町",
    "town_kana": "ミカワアンジョウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0057": {
    "postcode": "4460057",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城東町",
    "town_kana": "ミカワアンジョウヒガシマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0058": {
    "postcode": "4460058",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城南町",
    "town_kana": "ミカワアンジョウミナミマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0059": {
    "postcode": "4460059",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城本町",
    "town_kana": "ミカワアンジョウホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0061": {
    "postcode": "4460061",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "新田町",
    "town_kana": "シンデンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0062": {
    "postcode": "4460062",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "明治本町",
    "town_kana": "メイジホンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0063": {
    "postcode": "4460063",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "昭和町",
    "town_kana": "ショウワチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0064": {
    "postcode": "4460064",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "弁天町",
    "town_kana": "ベンテンチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0065": {
    "postcode": "4460065",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "大東町",
    "town_kana": "ダイトウチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0066": {
    "postcode": "4460066",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "池浦町",
    "town_kana": "イケウラチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0071": {
    "postcode": "4460071",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今池町",
    "town_kana": "イマイケチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0072": {
    "postcode": "4460072",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "住吉町",
    "town_kana": "スミヨシチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0073": {
    "postcode": "4460073",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "篠目町",
    "town_kana": "ササメチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0074": {
    "postcode": "4460074",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "井杭山町",
    "town_kana": "イグイヤマチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0075": {
    "postcode": "4460075",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "二本木新町",
    "town_kana": "ニホンギシンマチ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "0076": {
    "postcode": "4460076",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "美園町",
    "town_kana": "ミソノチョウ",
    "street": null,
    "office_name": null,
    "office_name_kana": null
  },
  "8501": {
    "postcode": "4468501",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": "18−23",
    "office_name": "安城市役所",
    "office_name_kana": "アンジヨウシヤクシヨ"
  },
  "8502": {
    "postcode": "4468502",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "住吉町",
    "town_kana": "スミヨシチョウ",
    "street": "3丁目11−8",
    "office_name": "株式会社 マキタ",
    "office_name_kana": "カブシキガイシヤ マキタ"
  },
  "8503": {
    "postcode": "4468503",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "篠目町",
    "town_kana": "ササメチョウ",
    "street": "井山3",
    "office_name": "アンデン 株式会社",
    "office_name_kana": "アンデン カブシキガイシヤ"
  },
  "8504": {
    "postcode": "4468504",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今池町",
    "town_kana": "イマイケチョウ",
    "street": "3丁目1−36",
    "office_name": "株式会社 イノアックコーポレーション 安城事業所",
    "office_name_kana": "カブシキガイシヤ イノアツクコ-ポレ-シヨン アンジヨウジギヨウシヨ"
  },
  "8505": {
    "postcode": "4468505",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "小堤町",
    "town_kana": "コヅツミチョウ",
    "street": "9−6",
    "office_name": "三浦電気 株式会社",
    "office_name_kana": "ミウラデンキ カブシキガイシヤ"
  },
  "8506": {
    "postcode": "4468506",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": "東向山6番地の1",
    "office_name": "愛知県経済農業協同組合連合会 西三河センター",
    "office_name_kana": "アイチケンケイザイノウギヨウキヨウドウクミアイレンゴウカイ ニシミカワセンタ-"
  },
  "8507": {
    "postcode": "4468507",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "高棚町",
    "town_kana": "タカタナチョウ",
    "street": "新道1",
    "office_name": "株式会社 デンソー 高棚製作所",
    "office_name_kana": "カブシキガイシヤ デンソ- タカタナセイサクシヨ"
  },
  "8508": {
    "postcode": "4468508",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": "7番10号",
    "office_name": "愛知県西三河県税事務所 安城県税センター",
    "office_name_kana": "アイチケンニシミカワケンゼイジムシヨ アンジヨウケンゼイセンタ-"
  },
  "8511": {
    "postcode": "4468511",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "里町",
    "town_kana": "サトチョウ",
    "street": "長根2−1",
    "office_name": "株式会社 デンソー 安城製作所",
    "office_name_kana": "カブシキガイシヤ デンソ- アンジヨウセイサクシヨ"
  },
  "8512": {
    "postcode": "4468512",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": "16−1",
    "office_name": "安城商工会議所",
    "office_name_kana": "アンジヨウシヨウコウカイギシヨ"
  },
  "8514": {
    "postcode": "4468514",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "柿碕町",
    "town_kana": null,
    "street": "東山25",
    "office_name": "タツミ商事 株式会社 豊田支店",
    "office_name_kana": "タツミシヨウジ カブシキガイシヤ トヨタシテン"
  },
  "8515": {
    "postcode": "4468515",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": "東向山7番地41",
    "office_name": "キャタピラーウエストジャパン 株式会社",
    "office_name_kana": "キヤタピラ-ウエストジヤパン カブシキガイシヤ"
  },
  "8517": {
    "postcode": "4468517",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "横山町",
    "town_kana": "ヨコヤマチョウ",
    "street": "下毛賀知93",
    "office_name": "衣浦東部保健所 安城支所",
    "office_name_kana": "キヌウラトウブホケンジヨ アンジヨウシシヨ"
  },
  "8518": {
    "postcode": "4468518",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "福釜町",
    "town_kana": "フカマチョウ",
    "street": "河原18",
    "office_name": "株式会社 クオリ",
    "office_name_kana": "カブシキガイシヤ クオリ"
  },
  "8520": {
    "postcode": "4468520",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": "12−28",
    "office_name": "株式会社 ムロコーポレーション",
    "office_name_kana": "カブシキガイシヤ ムロコ-ポレ-シヨン"
  },
  "8521": {
    "postcode": "4468521",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "高棚町",
    "town_kana": "タカタナチョウ",
    "street": "土井ノ内123番地",
    "office_name": "ユケン工業 株式会社 高棚工場",
    "office_name_kana": "ユケンコウギヨウ カブシキガイシヤ タカタナコウジヨウ"
  },
  "8522": {
    "postcode": "4468522",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": "4丁目14−24",
    "office_name": "万能工業 株式会社",
    "office_name_kana": "マンノウコウギヨウ カブシキガイシヤ"
  },
  "8523": {
    "postcode": "4468523",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "横山町",
    "town_kana": "ヨコヤマチョウ",
    "street": "大山田中79−3",
    "office_name": "三河日産自動車 株式会社",
    "office_name_kana": "ミカワニツサンジドウシヤ カブシキガイシヤ"
  },
  "8525": {
    "postcode": "4468525",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "桜町",
    "town_kana": "サクラマチ",
    "street": "20−6",
    "office_name": "森永製菓 株式会社 中京工場",
    "office_name_kana": "モリナガセイカ カブシキガイシヤ チユウキヨウコウジヨウ"
  },
  "8526": {
    "postcode": "4468526",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "横山町",
    "town_kana": "ヨコヤマチョウ",
    "street": "毛賀知24−2",
    "office_name": "安城簡易裁判所",
    "office_name_kana": "アンジヨウカンイサイバンシヨ"
  },
  "8533": {
    "postcode": "4468533",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城東町",
    "town_kana": "ミカワアンジョウヒガシマチ",
    "street": "1丁目18番地1",
    "office_name": "株式会社 ユーハイム",
    "office_name_kana": "カブシキガイシヤ ユ-ハイム"
  },
  "8535": {
    "postcode": "4468535",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城東町",
    "town_kana": "ミカワアンジョウヒガシマチ",
    "street": "1丁目6−28",
    "office_name": "株式会社 SKコーポレーション",
    "office_name_kana": "カブシキガイシヤ エスケイコ-ポレ-シヨン"
  },
  "8540": {
    "postcode": "4468540",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城町",
    "town_kana": "ミカワアンジョウチョウ",
    "street": "1丁目4−4",
    "office_name": "カリツー 株式会社",
    "office_name_kana": "カリツ- カブシキガイシヤ"
  },
  "8550": {
    "postcode": "4468550",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "三河安城町",
    "town_kana": "ミカワアンジョウチョウ",
    "street": "1丁目8番地4",
    "office_name": "一般財団法人 杉浦地域医療振興財団",
    "office_name_kana": "イツパンザイダンホウジン スギウラチイキイリヨウシンコウザイダン"
  },
  "8555": {
    "postcode": "4468555",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "二本木新町",
    "town_kana": "ニホンギシンマチ",
    "street": "2丁目1−3",
    "office_name": "山崎製パン 株式会社 安城工場",
    "office_name_kana": "ヤマザキセイパン カブシキガイシヤ アンジヨウコウジヨウ"
  },
  "8558": {
    "postcode": "4468558",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": "東向山7",
    "office_name": "豊臣機工 株式会社",
    "office_name_kana": "トヨトミキコウ カブシキガイシヤ"
  },
  "8585": {
    "postcode": "4468585",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "今本町",
    "town_kana": "イマホンマチ",
    "street": "4丁目7−3",
    "office_name": "碧海信用金庫事務センター",
    "office_name_kana": "ヘキカイシンヨウキンコジムセンタ-"
  },
  "8588": {
    "postcode": "4468588",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "新明町",
    "town_kana": "シンメイチョウ",
    "street": "27−7",
    "office_name": "大見工業 株式会社",
    "office_name_kana": "オオミコウギヨウ カブシキガイシヤ"
  },
  "8601": {
    "postcode": "4468601",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "御幸本町",
    "town_kana": "ミユキホンマチ",
    "street": "9−6(安城郵便局私書箱第1号)",
    "office_name": "あいち中央農業 協同組合",
    "office_name_kana": "アイチチユウオウノウギヨウ キヨウドウクミアイ"
  },
  "8602": {
    "postcode": "4468602",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "安城町",
    "town_kana": "アンジョウチョウ",
    "street": "東広畔28",
    "office_name": "愛知県 厚生農業協同組合連合会 安城更生病院",
    "office_name_kana": "アイチケン コウセイノウギヨウキヨウドウクミアイレンゴウカイ アンジヨウコウセイビヨウイン"
  },
  "8635": {
    "postcode": "4468635",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "小堤町",
    "town_kana": "コヅツミチョウ",
    "street": "4丁目25(安城郵便局私書箱第35号)",
    "office_name": "安城学園高等学校",
    "office_name_kana": "アンジヨウガクエンコウトウガツコウ"
  },
  "8641": {
    "postcode": "4468641",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "大東町",
    "town_kana": "ダイトウチョウ",
    "street": "9−13",
    "office_name": "倉敷紡績 株式会社 安城工場",
    "office_name_kana": "クラシキボウセキ カブシキガイシヤ アンジヨウコウジヨウ"
  },
  "8686": {
    "postcode": "4468686",
    "prefecture": "愛知県",
    "prefecture_kana": "アイチケン",
    "prefecture_code": 23,
    "city": "安城市",
    "city_kana": "アンジョウシ",
    "town": "御幸本町",
    "town_kana": "ミユキホンマチ",
    "street": "15−1(安城郵便局私書箱第33号)",
    "office_name": "碧海信用金庫",
    "office_name_kana": "ヘキカイシンヨウキンコ"
  }
}