forked from sunillarsson/sunillarsson.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
4592 lines (4548 loc) · 122 KB
/
Copy pathapp.js
File metadata and controls
4592 lines (4548 loc) · 122 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
var eigo = [
n5 = [
"day/sun/Japan",
"one",
"country",
"person",
"year",
"large/big",
"ten",
"two",
"book/present/main/true/real/counter for long things",
"in/inside/middle/mean/center",
"long/leader",
"exit/leave",
"three",
"time/hour",
"going/journey",
"see/hopes/chances/idea/opinion/look at/visible",
"month/moon",
"behind/back/later",
"in front/before",
"life/genuine/birth",
"five",
"interval/space",
"above/up",
"east",
"four",
"now",
"gold",
"nine",
"enter/insert",
"study/learning/science",
"tall/high/expensive",
"circle/yen/round",
"child/sign of the rat/11PM-1AM/first sign of Chinese zodiac",
"outside",
"eight",
"six",
"below/down/descend/give/low/inferior",
"come/due/next/cause/become",
"spirit/mind",
"little/small",
"seven",
"mountain",
"tale/talk",
"woman/female",
"north",
"noon/sign of the horse/11AM-1PM/seventh sign of Chinese zodiac",
"hundred",
"write",
"before/ahead/previous/future/precedence",
"name/noted/distinguished/reputation",
"stream/river",
"thousand",
"water",
"half/middle/odd number/semi-/part-",
"male",
"west/Spain",
"electricity",
"exam/school/printing/proof/correction",
"word/speech/language",
"soil/earth/ground/Turkey",
"tree/wood",
"hear/ask/listen",
"eat/food",
"car",
"what",
"south",
"ten thousand",
"every",
"white",
"heavens/sky/imperial",
"mama/mother",
"fire",
"right",
"read",
"friend",
"left",
"rest/day off/retire/sleep",
"father",
"rain"
],
n4 = [
"meeting/meet/party/association/interview/join",
"same/agree/equal",
"matter/thing/fact/business/reason/possibly",
"oneself",
"company/firm/office/association/shrine",
"discharge/departure/publish/emit/start from/disclose",
"someone/person",
"ground/earth",
"business/vocation/arts/performance",
"direction/person/alternative",
"new",
"location/place",
"employee/member/number/the one in charge",
"stand up",
"open/unfold/unseal",
"hand",
"power/strong/strain/bear up/exert",
"question/ask/problem",
"substitute/change/convert/replace/period/age/generation/charge/rate/fee",
"bright/light",
"move/motion/change/confusion/shift/shake",
"capital/10**16",
"eye/class/look/insight/experience/care/favor",
"traffic/pass through/avenue/commute/counter for letters",
"say",
"logic/arrangement/reason/justice/truth",
"body/substance/object/reality/counter for images",
"rice field/rice paddy",
"lord/chief/master/main thing/principal",
"topic/subject",
"idea/mind/heart/taste/thought/desire/care/liking",
"negative/non-/bad/ugly/clumsy",
"make/production/prepare/build",
"utilize/business/service/use/employ",
"degrees/occurrence/time/counter for occurrences",
"strong",
"public/prince/official/governmental",
"hold/have",
"plains/field/rustic/civilian life",
"by means of/because/in view of/compared with",
"think",
"house/home",
"generation/world/society/public",
"many/frequent/much",
"correct/justice/righteous/10**40",
"relax/cheap/low/quiet/rested/contented/peaceful",
"Inst./institution/temple/mansion/school",
"heart/mind/spirit",
"world",
"teach/faith/doctrine",
"sentence/literature/style/art/decoration/figures/plan",
"beginning/former time/origin",
"heavy/heap up/pile up/nest of boxes/-fold",
"near/early/akin/tantamount",
"consider/think over",
"brush-stroke/picture",
"sea/ocean",
"sell",
"know/wisdom",
"road-way/street/district/journey/course/moral/teachings",
"gather/meet/congregate/swarm/flock",
"separate/branch off/diverge/fork/another/extra/specially",
"thing/object/matter",
"use",
"goods/refinement/dignity/article/counter for meal courses",
"plot/plan/scheme/measure",
"death/die",
"special",
"private/I/me",
"commence/begin",
"morning/dynasty/regime/epoch/period/(North) Korea",
"carry/luck/destiny/fate/lot/transport/progress/advance",
"end/finish",
"pedestal/a stand/counter for machines and vehicles",
"wide/broad/spacious",
"dwell/reside/live/inhabit",
"true/reality/Buddhist sect",
"possess/have/exist/happen/occur/approx",
"mouth",
"few/little",
"village/town/block/street",
"fee/materials",
"craft/construction",
"build",
"empty/sky/void/vacant/vacuum",
"hurry/emergency/sudden/steep",
"stop/halt",
"escort/send",
"cut/cutoff/be sharp",
"revolve/turn around/change",
"polish/study of/sharpen",
"leg/foot/be sufficient/counter for pairs of footwear",
"research/study",
"music/comfort/ease",
"rouse/wake up/get up",
"don/arrive/wear/counter for suits of clothing",
"store/shop",
"ill/sick",
"substance/quality/matter/temperament",
"wait/depend on",
"test/try/attempt/experiment/ordeal",
"tribe/family",
"silver",
"early/fast",
"reflect/reflection/projection",
"parent/intimacy/relative/familiarity/dealer (cards)",
"verification/effect/testing",
"England/English",
"doctor/medicine",
"attend/doing/official/serve",
"gone/past/quit/leave/elapse/eliminate/divorce",
"flavor/taste",
"copy/be photographed/describe",
"character/letter/word/section of village",
"solution/answer",
"night/evening",
"sound/noise",
"pour/irrigate/shed (tears)/flow into/concentrate on/notes/comment/annotate",
"homecoming/arrive at/lead to/result in",
"old",
"song/sing",
"buy",
"bad/vice/rascal/false/evil/wrong",
"map/drawing/plan/unexpected/accidentally",
"week",
"room/apartment/chamber/greenhouse/cellar",
"walk/counter for steps",
"wind/air/style/manner",
"paper",
"black",
"flower",
"springtime/spring (season)",
"red",
"blue/green",
"building/mansion/large building/palace",
"roof/house/shop/dealer/seller",
"color",
"run",
"autumn",
"summer",
"learn",
"station",
"ocean/western style",
"trip/travel",
"clothing/admit/obey/discharge",
"evening",
"borrow/rent",
"weekday",
"drink/smoke/take",
"meat",
"lend",
"public chamber/hall",
"bird/chicken",
"meal/boiled rice",
"exertion",
"winter",
"daytime/noon",
"tea",
"younger brother/faithful service to elders",
"cow",
"fish",
"elder brother/big brother",
"dog",
"younger sister",
"elder sister",
"Sino-/China"
],
n3 = [
"politics/government",
"deliberation/consultation/debate/consideration",
"people/nation/subjects",
"take along/lead/join/connect/party/gang/clique",
"vis-a-vis/opposite/even/equal/versus/anti-/compare",
"section/bureau/dept/class/copy/part/portion/counter for copies of a newspaper or magazine",
"fit/suit/join/0.1",
"market/city/town",
"inside/within/between/among/house/home",
"inter-/mutual/together/each other/minister of state/councillor/aspect/phase/physiognomy",
"determine/fix/establish/decide",
"-times/round/game/revolve/counter for occurrences",
"elect/select/choose/prefer",
"rice/USA/metre",
"reality/truth",
"connection/barrier/gateway/involve/concerning",
"decide/fix/agree upon/appoint",
"whole/entire/all/complete/fulfill",
"surface/table/chart/diagram",
"war/battle/match",
"sutra/longitude/pass thru/expire/warp",
"utmost/most/extreme",
"present/existing/actual",
"tune/tone/meter/key (music)/writing style/prepare/exorcise/investigate",
"change/take the form of/influence/enchant/delude/-ization",
"hit/right/appropriate/himself",
"promise/approximately/shrink",
"neck",
"method/law/rule/principle/model/system",
"sex/gender/nature",
"need/main point/essence/pivot/key to",
"system/law/rule",
"reign/be at peace/calm down/subdue/quell/govt/cure/heal/rule/conserve",
"task/duties",
"turn into/become/get/grow/elapse/reach",
"period/time/date/term",
"take/fetch/take up",
"metropolis/capital",
"harmony/Japanese style/peace/soften/Japan",
"mechanism/opportunity/occasion/machine/airplane",
"even/flat/peace",
"add/addition/increase/join/include/Canada",
"accept/undergo/answer (phone)/take/get/catch/receive",
"continue/series/sequel",
"advance/proceed/progress/promote",
"number/strength/fate/law/figures",
"scribe/account/narrative",
"first time/beginning",
"finger/point to/indicate/put into/play (chess)/measure (ruler)",
"authority/power/rights",
"branch/support/sustain",
"products/bear/give birth/yield/childbirth/native/property",
"spot/point/mark/speck/decimal point",
"report/news/reward/retribution",
"finish/come to an end/excusable/need not",
"lively/resuscitation/being helped/living",
"meadow/original/primitive/field/plain/prairie/tundra/wilderness",
"together/both/neither/all/and/alike/with",
"gain/get/find/earn/acquire/can/may/able to/profit/advantage/benefit",
"unravel/notes/key/explanation/understanding/untie/undo/solve/answer/cancel/absolve/explain/minute",
"mingle/mixing/association/coming & going",
"assets/resources/capital/funds/data/be conducive to/contribute to",
"beforehand/previous/myself/I",
"yonder/facing/beyond/confront/defy/tend toward/approach",
"occasion/side/edge/verge/dangerous/adventurous/indecent/time/when",
"victory/win/prevail/excel",
"mask/face/features/surface",
"revelation/tell/inform/announce",
"anti-",
"judgement/signature/stamp/seal",
"acknowledge/witness/discern/recognize/appreciate/believe",
"nonplussed/three/going/coming/visiting/visit/be defeated/die/be madly in love",
"profit/advantage/benefit",
"association/braid/plait/construct/assemble/unite/cooperate/grapple",
"faith/truth/fidelity/trust",
"exist/outskirts/suburbs/located in",
"affair/case/matter/item",
"side/lean/oppose/regret",
"responsibility/duty/term/entrust to/appoint",
"pull/tug/jerk/admit/install/quote/refer to",
"request/want/wish for/require/demand",
"place",
"next/order/sequence",
"yesterday/previous",
"argument/discourse",
"bureaucrat/the government",
"increase/add/augment/gain/promote",
"person in charge/connection/duty/concern oneself",
"emotion/feeling/sensation",
"feelings/emotion/passion/sympathy/circumstances/facts",
"throw/discard/abandon/launch into/join/invest in/hurl/give up/sell at a loss",
"show/indicate/point out/express/display",
"unusual/change/strange",
"strike/hit/knock/pound/dozen",
"straightaway/honesty/frankness/fix/repair",
"both/old Japanese coin/counter for vehicles/two",
"style/ceremony/rite/function/method/system/form/expression",
"assurance/firm/tight/hard/solid/confirm/clear/evident",
"fruit/reward/carry out/achieve/complete/end/finish/succeed",
"contain/form/looks",
"invariably/certain/inevitable",
"performance/act/play/render/stage",
"year-end/age/occasion/opportunity",
"contend/dispute/argue",
"discuss/talk",
"ability/talent/skill/capacity",
"rank/grade/throne/crown/about/some",
"placement/put/set/deposit/leave behind/keep/employ/pawn",
"current/a sink/flow/forfeit",
"status/rank/capacity/character/case (law/ grammar)",
"doubt/distrust/be suspicious/question",
"overdo/exceed/go beyond/error",
"bureau/board/office/affair/conclusion/court lady/lady-in-waiting/her apartment",
"set free/release/fire/shoot/emit/banish/liberate",
"usual/ordinary/normal/regular",
"status quo/conditions/circumstances/form/appearance",
"ball/sphere",
"post/employment/work",
"bestow/participate in/give/award/impart/provide/cause/gift/godsend",
"submit/offer/present/serve (meal)/accompany",
"duty/war/campaign/drafted labor/office/service/role",
"posture/build/pretend",
"proportion/comparatively/divide/cut/separate/split",
"expense/cost/spend/consume/waste",
"adhere/attach/refer to/append",
"wherefore/a reason",
"rumor/opinion/theory",
"difficult/impossible/trouble/accident/defect",
"tenderness/excel/surpass/actor/superiority/gentleness",
"husband/man",
"income/obtain/reap/pay/supply/store",
"severance/decline/refuse/apologize/warn/dismiss/prohibit/decision/judgement/cutting",
"stone",
"difference/differ",
"extinguish/blow out/turn off/neutralize/cancel",
"gods/mind/soul",
"turn/number in a series",
"standard/measure",
"art/technique/skill/means/trick/resources/magic",
"equip/provision/preparation",
"home/house/residence/our house/my husband",
"harm/injury",
"distribute/spouse/exile/rationing",
"admonish/commandment",
"bring up/grow up/raise/rear",
"seat/mat/occasion/place",
"call on/visit/look up/offer sympathy",
"ride/power/multiplication/record/counter for vehicles/board/mount/join",
"remainder/leftover/balance",
"concept/think/idea/thought",
"voice",
"wish/sense/idea/thought/feeling/desire/attention",
"help/rescue/assist",
"labor/thank for/reward for/toil/trouble",
"example/custom/usage/precedent",
"sort of thing/so/if so/in that case/well",
"limit/restrict/to best of ability",
"chase/drive away/follow/pursue/meanwhile",
"make a deal/selling/dealing in/merchant",
"leaf/plane/lobe/needle/blade/spear/counter for flat things/fragment/piece",
"transmit/go along/walk along/follow/report/communicate/legend/tradition",
"work/(kokuji)",
"shape/form/style",
"scenery/view",
"fall/drop/come down",
"fond/pleasing/like something",
"retreat/withdraw/retire/resign/repel/expel/reject",
"head/counter for large animals",
"defeat/negative/-/minus/bear/owe/assume a responsibility",
"transit/ford/ferry/cross/import/deliver/diameter/migrate",
"lose/error/fault/disadvantage/loss",
"distinction/difference/variation/discrepancy/margin/balance",
"end/close/tip/powder/posterity",
"guard/protect/defend/obey",
"young/if/perhaps/possibly/low number/immature",
"species/kind/class/variety/seed",
"beauty/beautiful",
"fate/command/decree/destiny/life/appoint",
"blessing/fortune/luck/wealth",
"ambition/full moon/hope/desire/aspire to/expect",
"un-/mistake/negative/injustice/non-",
"outlook/look/appearance/condition/view",
"guess/presume/surmise/judge/understand",
"grade/steps/stairs",
"sideways/side/horizontal/width/woof",
"deep/heighten/intensify/strengthen",
"have the honor to/sign of the monkey/3-5PM/ninth sign of Chinese zodiac",
"Esq./way/manner/situation/polite suffix",
"property/money/wealth/assets",
"harbor",
"discriminating/know/write",
"call/call out to/invite",
"accomplished/reach/arrive/attain",
"good/pleasing/skilled",
"climate/season/weather",
"extent/degree/law/formula/distance/limits/amount",
"full/enough/pride/satisfy",
"failure/defeat/reversal",
"price/cost/value",
"stab/protruding/thrusting/thrust/pierce/prick",
"ray/light",
"path/route/road/distance",
"department/course/section",
"volume/product (x*y)/acreage/contents/pile up/stack/load/amass",
"other/another/the others",
"dispose/manage/deal with/sentence/condemn/act/behave/place",
"plump/thick/big around",
"guest/visitor/customer/client",
"negate/no/noes/refuse/decline/deny",
"expert/teacher/master/army/war",
"ascend/climb up",
"easy/ready to/simple/fortune-telling/divination",
"quick/fast",
"suppose/be aware of/believe/feel",
"fly/skip (pages)/scatter",
"kill/murder/butcher/slice off/split/diminish/reduce/spoil",
"nickname/number/item/title/pseudonym/name/call",
"simple/one/single/merely",
"squat/seat/cushion/gathering/sit",
"rend/rip/tear/break/destroy/defeat/frustrate",
"exclude/division (x/3)/remove/abolish/cancel/except",
"perfect/completion/end",
"descend/precipitate/fall/surrender",
"blame/condemn/censure",
"catch/capture",
"dangerous/fear/uneasy",
"salary/wage/gift/allow/grant/bestow on",
"suffering/trial/worry/hardship/feel bitter/scowl",
"welcome/meet/greet",
"park/garden/yard/farm",
"tool/utensil/means/possess/ingredients/counter for armor/ suits/ sets of furniture",
"resign/word/term/expression",
"cause/factor/be associated with/depend on/be limited to",
"horse",
"love/affection/favourite",
"wealth/enrich/abundant",
"he/that/the",
"un-/not yet/hitherto/still/even now/sign of the ram/1-3PM/eighth sign of Chinese zodiac",
"dance/flit/circle/wheel",
"deceased/the late/dying/perish",
"cool/cold (beer/ person)/chill",
"suitable/occasional/rare/qualified/capable",
"lady/woman/wife/bride",
"draw near/stop in/bring near/gather/collect/send/forward",
"crowded/mixture/in bulk/included/(kokuji)",
"face/expression",
"sort/kind/variety/class/genus",
"too much/myself/surplus/other/remainder",
"king/rule/magnate",
"return/answer/fade/repay",
"wife/spouse",
"stature/height/back/behind/disobey/defy/go back on/rebel",
"heat/temperature/fever/mania/passion",
"inn/lodging/relay station/dwell/lodge/be pregnant/home/dwelling",
"medicine/chemical/enamel/gunpowder/benefit",
"precipitous/inaccessible place/impregnable position/steep place/sharp eyes",
"trust/request",
"memorize/learn/remember/awake/sober up",
"ship/boat",
"route/way/road",
"permit/approve",
"slip out/extract/pull out/pilfer/quote/remove/omit",
"convenience",
"detain/fasten/halt/stop",
"guilt/sin/crime/fault/blame/offense",
"toil/diligent/as much as possible",
"refined/ghost/fairy/energy/vitality/semen/excellence/purity/skill",
"scatter/disperse/spend/squander",
"quiet",
"marriage",
"rejoice/take pleasure in",
"floating/float/rise to surface",
"discontinue/beyond/sever/cut off/abstain/interrupt/suppress",
"happiness/blessing/fortune",
"push/stop/check/subdue/attach/seize/weight/shove/press/seal/do in spite of",
"overthrow/fall/collapse/drop/break down",
"etc./and so forth/class (first)/quality/equal/similar",
"old man/old age/grow old",
"bend/music/melody/composition/pleasure/injustice/fault/curve/crooked/perverse/lean",
"pay/clear out/prune/banish/dispose of",
"courtyard/garden/yard",
"junior/emptiness/vanity/futility/uselessness/ephemeral thing/gang/set/party/people",
"diligence/become employed/serve",
"slow/late/back/later",
"reside/to be/exist/live with",
"miscellaneous",
"beckon/invite/summon/engage",
"quandary/become distressed/annoyed",
"lack/gap/fail",
"grow late/night watch/sit up late/of course",
"engrave/cut fine/chop/hash/mince/time/carving",
"approve/praise/title or inscription on picture/assist/agree with",
"embrace/hug/hold in arms",
"crime/sin/offense",
"fear/dread/awe",
"breath/respiration/son/interest (on money)",
"distant/far",
"re-/return/revert/resume/restore/go backwards",
"petition/request/vow/wish/hope",
"picture/drawing/painting/sketch",
"surpass/cross over/move to/exceed/Vietnam",
"longing/covetousness/greed/passion/desire/craving",
"pain/hurt/damage/bruise",
"laugh",
"mutually/reciprocally/together",
"bundle/sheaf/ream/tie in bundles/govern/manage/control",
"becoming/resemble/counterfeit/imitate/suitable",
"file/row/rank/tier/column",
"grope/search/look for",
"escape/flee/shirk/evade/set free",
"play",
"astray/be perplexed/in doubt/lost/err/illusion",
"dream/vision/illusion",
"old boy/name-suffix",
"closed/shut",
"thong/beginning/inception/end/cord/strap",
"fold/break/fracture/bend/yield/submit",
"grass/weeds/herbs/pasture/write/draft",
"livelihood/make a living/spend time",
"sake/alcohol",
"jail cell/grieve/sad/deplore/regret",
"clear up",
"hang/suspend/depend/arrive at/tax/pour",
"arrival/proceed/reach/attain/result in",
"lie down/sleep/rest/bed/remain unsold",
"darkness/disappear/shade/informal/grow dark/be blinded",
"steal/rob/pilfer",
"suck/imbibe/inhale/sip",
"sunshine/yang principle/positive/male/heaven/daytime",
"honorable/manipulate/govern",
"tooth/cog",
"forget",
"snow",
"blow/breathe/puff/emit/smoke",
"daughter/girl",
"mistake/err/do wrong/mislead",
"wash/inquire into/probe",
"accustomed/get used to/become experienced",
"salute/bow/ceremony/thanks/remuneration",
"window/pane",
"once upon a time/antiquity/old times",
"poverty/poor",
"angry/be offended",
"ancestor/pioneer/founder",
"swim",
"counter for cupfuls/wine glass/glass/toast",
"exhausted/tire/weary",
"all/everything",
"chirp/cry/bark/sound/ring/echo/honk",
"abdomen/belly/stomach",
"smoke",
"sleep/die/sleepy",
"dreadful/be frightened/fearful",
"ear",
"place on the head/receive/top of head/top/summit/peak",
"box/chest/case/bin/railway car",
"nightfall/night",
"cold",
"hair of the head",
"busy/occupied/restless",
"genius/years old/cubic shaku",
"shoes",
"shame/dishonor",
"accidentally/even number/couple/man & wife/same kind",
"admirable/greatness/remarkable/conceited/famous/excellent",
"cat",
"how many/how much/how far/how long"
],
n2 = [
"party/faction/clique",
"co-/cooperation",
"general/whole/all/full/total",
"ward/district",
"jurisdiction/dominion/territory/fief/reign",
"prefecture",
"establishment/provision/prepare",
"reformation/change/modify/mend/renew/examine/inspect/search",
"borough/urban prefecture/govt office/representative body/storehouse",
"investigate",
"committee/entrust to/leave to/devote/discard",
"army/force/troops/war/battle",
"group/association",
"each/every/either",
"island",
"leather/become serious/skin/hide/pelt",
"town/village",
"forces/energy/military strength",
"dwindle/decrease/reduce/decline/curtail/get hungry",
"again/twice/second time",
"tax/duty",
"occupation/camp/perform/build/conduct (business)",
"compare/race/ratio/Philipines",
"ward off/defend/protect/resist",
"supplement/supply/make good/offset/compensate/assistant/learner",
"boundary/border/region",
"guidance/leading/conduct/usher",
"vice-/duplicate/copy",
"calculate/divining/number/abacus/probability",
"transport/send/be inferior",
"mention/state/speak/relate",
"line/track",
"agriculture/farmers",
"state/province",
"warrior/military/chivalry/arms",
"elephant/pattern after/imitate/image/shape/sign (of the times)",
"range/region/limits/stage/level",
"forehead/tablet/plaque/framed picture/sum/amount/volume",
"Europe",
"shouldering/carry/raise/bear",
"semi-/correspond to/proportionate to/conform/imitate",
"prize/reward/praise",
"environs/boundary/border/vicinity",
"create/make/structure/physique",
"incur/cover/veil/brood over/shelter/wear/put on/be exposed (film)/receiving",
"skill/art/craft/ability/feat/performance/vocation/arts",
"lower/short/humble",
"restore/return to/revert/resume",
"shift/move/change/drift/catch (cold/ fire)/pass into",
"individual/counter for articles and military units",
"gates",
"chapter/lesson/section/department/division/counter for chapters (of a book)",
"brain/memory",
"poles/settlement/conclusion/end/highest rank/electric poles/very/extremely/most/highly/10**48",
"include/bear in mind/understand/cherish",
"storehouse/hide/own/have/possess",
"quantity/measure/weight/amount/consider/estimate/surmise",
"mould/type/model",
"condition/situation",
"needle/pin/staple/stinger",
"specialty/exclusive/mainly/solely",
"valley",
"history/chronicle",
"storey/stair/counter for storeys of a building",
"pipe/tube/wind instrument/drunken talk",
"soldier/private/troops/army/warfare/strategy/tactics",
"touch/contact/adjoin/piece together",
"dainty/get thin/taper/slender/narrow",
"merit/efficacy/efficiency/benefit",
"round/full/month/perfection/-ship/pills/make round/roll up/curl up/seduce/explain away",
"gulf/bay/inlet",
"record",
"focus/government ministry/conserve",
"old times/old things/old friend/former/ex-",
"bridge",
"beach",
"circumference/circuit/lap",
"lumber/log/timber/wood/talent",
"door",
"center/middle",
"ticket",
"compilation/knit/plait/braid/twist/editing/completed poem/part of a book",
"search/look for/locate",
"bamboo",
"transcend/super-/ultra-",
"row/and/besides/as well as/line up/rank with/rival/equal",
"heal/cure",
"pick/take/fetch/take up",
"forest/woods",
"emulate/compete with/bid/sell at auction/bout/contest/race",
"jammed in/shellfish/mediate/concern oneself with",
"root/radical/head (pimple)",
"marketing/sell/trade",
"curriculum/continuation/passage of time",
"leader/commander/general/admiral/or/and again/soon/from now on/just about",
"hanging scroll/width",
"carrier/carry/all",
"trade/exchange",
"lecture/club/association",
"grove/forest",
"attire/dress/pretend/disguise/profess",
"various/many/several/together",
"drama/play",
"river",
"navigate/sail/cruise/fly",
"iron",
"newborn babe/child/young of animals",
"prohibition/ban/forbid",
"stamp/seal/mark/imprint/symbol/emblem/trademark/evidence/souvenir/India",
"inverted/reverse/opposite/wicked",
"interchange/period/charge/change?",
"long time/old story",
"short/brevity/fault/defect/weak point",
"oil/fat",
"outburst/rave/fret/force/violence/cruelty/outrage",
"wheel/ring/circle/link/loop/counter for wheels and flowers",
"fortune-telling/divining/forecasting/occupy/hold/have/get/take",
"plant",
"pure/purify/cleanse/exorcise/Manchu dynasty",
"double/twice/times/fold",
"level/average",
"hundred million/10**8",
"pressure/push/overwhelm/oppress/dominate",
"technique/art/craft/performance/acting/trick/stunt",
"signature/govt office/police station",
"expand/stretch/extend/lengthen/increase",
"halt/stopping",
"bomb/burst open/pop/split",
"land/six",
"jewel/ball",
"waves/billows/Poland",
"sash/belt/obi/zone/region",
"prolong/stretching",
"feathers/counter for birds/ rabbits",
"harden/set/clot/curdle",
"rule/follow/based on/model after",
"riot/war/disorder/disturb",
"universal/wide(ly)/generally/Prussia",
"fathom/plan/scheme/measure",
"bountiful/excellent/rich",
"thick/heavy/rich/kind/cordial/brazen/shameless",
"age",
"surround/besiege/store/paling/enclosure/encircle/preserve/keep",
"graduate/soldier/private/die",
"abbreviation/omission/outline/shorten/capture/plunder",
"acquiesce/hear/listen to/be informed/receive",
"obey/order/turn/right/docility/occasion",
"boulder/rock/cliff",
"practice/gloss/train/drill/polish/refine",
"lightly/trifling/unimportant",
"complete/finish",
"government office",
"castle",
"afflicted/disease/suffer from/be ill",
"stratum/social class/layer/story/floor",
"printing block/printing plate/edition/impression/label",
"orders/ancient laws/command/decree",
"angle/corner/square/horn/antlers",
"entwine/coil around/get caught in",
"damage/loss/disadvantage/hurt/injure",
"recruit/campaign/gather (contributions)/enlist/grow violent",
"back/amidst/in/reverse/inside/palm/sole/rear/lining/wrong side",
"Buddha/the dead/France",
"exploits/unreeling cocoons",
"fabricate/build/construct",
"freight/goods/property",
"mix/blend/confuse",
"rise up",
"pond/cistern/pool/reservoir",
"blood",
"warm",
"seasons",
"star/spot/dot/mark",
"eternity/long/lengthy",
"renowned/publish/write/remarkable/phenomenal/put on/don/wear/arrival/finish (race)/counter for suit",
"document/records",
"warehouse/storehouse",
"publish/carve/engrave",
"statue/picture/image/figure/portrait",
"incense/smell/perfume",
"slope/incline/hill",
"bottom/sole/depth/bottom price/base/kind/sort",
"linen/cloth",
"Buddhist temple",
"eaves/roof/house/heaven",
"gigantic/big/large/great",
"quake/shake/tremble/quiver/shiver",
"hope/beg/request/pray/beseech/Greece/dilute (acid)/rare/few/phenomenal",
"contact/touch/feel/hit/proclaim/announce/conflict",
"reliant/depend on/consequently/therefore/due to",
"enroll/domiciliary register/membership",
"dirty/pollute/disgrace/rape/defile",
"sheet of.../counter for flat thin objects or sheets",
"duplicate/double/compound/multiple",
"mail/stagecoach stop",
"go-between/relationship",
"flourish/prosperity/honor/glory/splendor",
"tag/paper money/counter for bonds/placard/bid",
"plank/board/plate/stage",
"skeleton/bone/remains/frame",
"lean/incline/tilt/trend/wane/sink/ruin/bias",
"deliver/reach/arrive/report/notify/forward",
"scroll/volume/book/part/roll up/wind up/tie/coil/counter for texts (or book scrolls)",
"burn/blaze/glow",
"tracks/mark/print/impression",
"wrap/pack up/cover/conceal",
"stop-over/reside in/resident",
"weak/frail",
"introduce/inherit/help",
"employ/hire",
"exchange/spare/substitute/per-",
"deposit/custody/leave with/entrust to",
"bake/burning",
"simplicity/brevity",
"badge/chapter/composition/poem/design",
"entrails/viscera/bowels",
"rhythm/law/regulation/gauge/control",
"presents/send/give to/award to/confer on/presenting something",
"illuminate/shine/compare/bashful",
"dilute/thin/weak (tea)",
"flock/group/crowd/herd/swarm/cluster",
"second (1/60 minute)",
"heart/interior",
"packed/close/pressed/reprove/rebuke/blame",
"pair/set/comparison/counter for pairs",
"thorn/pierce/stab/prick/sting/calling card",
"genuine/purity/innocence/net (profit)",
"the following/next",
"cheerful/pleasant/agreeable/comfortable",
"one-sided/leaf/sheet",
"awe/respect/honor/revere",
"trouble/worry/in pain/distress/illness",
"spring/fountain",
"pelt/skin/hide/leather",
"fishing/fishery",
"laid waste/rough/rude/wild",
"savings/store/lay in/keep/wear mustache",
"stiff/hard",
"bury/be filled up/embedded",
"pillar/post/cylinder/support",
"ritual/offer prayers/celebrate/deify/enshrine/worship",
"sack/bag/pouch",
"writing brush/writing/painting brush/handwriting",
"instruction/Japanese character reading/explanation/read",
"bathe/be favored with/bask in",
"juvenile/child",
"treasure/wealth/valuables",
"seal/closing",
"bosom/breast/chest/heart/feelings",
"sand",
"salt",
"intelligent/wise/wisdom/cleverness",
"arm/ability/talent",
"portent/10**12/trillion/sign/omen/symptoms",
"bed/floor/padding/tatami",
"fur/hair/feather/down",
"green",
"revered/valuable/precious/noble/exalted",
"celebrate/congratulate",
"tender/weakness/gentleness/softness",
"Mr./hall/mansion/palace/temple/lord",
"concentrated/thick/dark/undiluted",
"fluid/liquid/juice/sap/secretion",
"garment/clothes/dressing",
"shoulder",
"zero/spill/overflow/nothing/cipher",
"infancy/childhood",
"baggage/shoulder-pole load/bear (a burden)/shoulder (a gun)/load/cargo/freight",
"overnight/put up at/ride at anchor/3-day stay",
"yellow",
"sweet/coax/pamper/be content/sugary",
"retainer/subject",
"shallow/superficial/frivolous/wretched/shameful",
"sweep/brush",
"cloud",
"dig/delve/excavate",
"discard/throw away/abandon/resign/reject/sacrifice",
"soft",
"sink/be submerged/subside/be depressed/aloes",
"frozen/congeal/refrigerate",
"milk/breasts",
"romance/in love/yearn for/miss/darling",
"crimson/deep red",
"outskirts/suburbs/rural area",
"loins/hips/waist/low wainscoting",
"charcoal/coal",
"jump/dance/leap/skip",
"tome/counter for books/volume",
"courage/cheer up/be in high spirits/bravery/heroism",
"contraption/fetter/machine/instrument",
"vegetable/side dish/greens",
"rare/curious/strange",
"egg/ovum/spawn/roe",
"lake",
"consume/eat/drink/smoke/receive (a blow)",
"dry/parch",
"insect/bug/temper",
"printing/print",
"hot water/bath/hot spring",
"melt/dissolve/thaw",
"mineral/ore",
"tears/sympathy",
"equal/head/counter for small animals/roll of cloth",
"grandchild/descendants",
"pointed/sharpness/edge/weapon/sharp/violent",
"bough/branch/twig/limb",
"paint/plaster/daub/smear/coating",
"flats/counter for houses/eaves",
"poison/virus/venom/germ/harm/injury/spite",
"shout/exclaim/yell",
"worship/adore/pray to",
"icicle/ice/hail/freeze/congeal",
"drought/dry/dessicate/drink up/heaven/emperor",
"rod/stick/cane/pole/club/line",
"pray/wish",
"pick up/gather/find/go on foot/ten",
"flour/powder/dust",
"thread",
"cotton",
"sweat/perspire",
"copper",
"damp/wet/moist",
"flower pot/bottle/vial/jar/jug/vat/urn",
"blossom/bloom",
"seduce/call/send for/wear/put on/ride in/buy/eat/drink/catch (cold)",
"tin can/container",
"vessels/counter for ships/fish/birds/arrows/one of a pair",
"fat/grease/tallow/lard/rosin/gum/tar",
"steam/heat/sultry/foment/get musty",
"texture/skin/body/grain",
"till/plow/cultivate",
"dull/slow/foolish/blunt",
"mud/mire/adhere to/be attached to",
"corner/nook",
"lamp/a light/light/counter for lights",
"spicy/bitter/hot/acrid",
"grind/polish/scour/improve/brush (teeth)",
"barley/wheat",
"surname",
"cylinder/pipe/tube/gun barrel/sleeve",
"nose/snout",
"grains/drop/counter for tiny particles",
"part of speech/words/poetry",
"stomach/paunch/crop/craw",
"tatami mat/counter for tatami mats/fold/shut up/do away with",
"skin/body/grain/texture/disposition",
"desk/table",
"laundry/wash/pour on/rinse",
"pagoda/tower/steeple",
"ashes/puckery juice/cremate",
"seethe/boil/ferment/uproar/breed",
"candy/cakes/fruit",
"cap/headgear",
"wither/die/dry up/be seasoned",
"refreshing/nice and cool",
"boat/ship",
"shellfish",
"token/sign/mark/tally/charm",
"hate/detest",
"dish/a helping/plate",
"agreement/consent/comply with",
"parch/dry up",
"livestock/domestic fowl and animals",
"pinch/between",
"cloudy weather/cloud up",
"drip/drop",
"pay respects/visit/ask/inquire/question/implore"
],
n1 = [
"family name/surname/clan",
"overall/relationship/ruling/governing",
"protect/guarantee/keep/preserve/sustain/support",
"No./residence",
"tie/bind/contract/join/organize/do up hair/fasten",
"faction/group/party/clique/sect/school",
"plan/suggestion/draft/ponder/fear/proposition/idea/expectation/bill/worry",
"scheme/plan/policy/step/means",
"fundamentals/radical (chem)/counter for machines/foundation",
"value/price",
"propose/take along/carry in hand",