-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathblissdata_words.js
4680 lines (4680 loc) · 309 KB
/
blissdata_words.js
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
BLISS_WORD_DATA = {
"words": {
"aboard,on_board": ["in,inside,interior,internal","indicator_(description)","vehicle,carriage,railway_car"],
"abortion_(induced)": ["cause","miscarriage,abortion_(spontaneous)"],
"Abraham": ["man,male","multiplication","offspring,child"],
"abseiling,rappelling": ["mountain_sports","down,downward"],
"absorbent_material,sponge": ["material,raw_material,stuff","into"],
"abstention": ["decision","passivity"],
"abuse,assault,violence": ["must_(a)","intensity"],
"accept-(to)": ["get,acquire,receive-(to)","mind,intellect,reason"],
"access-(to)": ["accessibility","indicator_(action)"],
"accessibility": ["existence,being_(2)","through"],
"accessible": ["accessibility","indicator_(description)"],
"accessory": ["thing,object","and,also,plus,too","clothing,clothes,garment"],
"accident": ["error,mishap","intensity"],
"accident,chance_event": ["event,happening,occasion","minus,no,without","expectation,anticipation"],
"accordion": ["wind_instrument","back_and_forth,backward_and_forward,to_and_fro"],
"accusation": ["mouth","opposition,counter_purpose"],
"accusation_(legal),charge,prosecution": ["accusation","judgement,law_(in_combinations)"],
"accuse-(to)": ["accusation","indicator_(action)"],
"accuse_(legal),charge,prosecute-(to)": ["accusation_(legal),charge,prosecution","indicator_(action)"],
"ache": ["pain,suffering","continuance,continuation"],
"achieve-(to)": ["achievement","indicator_(action)"],
"achievement": ["effect,result","feeling,emotion,sensation","over,above,superior"],
"acne": ["group_of,much_of,many_of,quantity_of","pimple,blemish"],
"acrobat": ["person,human_being,individual,human","muscle","plan,design,method,system","eye"],
"acrobatics": ["activity,male_gender_(in_combinations)","muscle","plan,design,method,system","eye"],
"act,demonstrate_(against)-(to)": ["action,demonstration_(against)","indicator_(action)"],
"act,demonstrate_(in_favour_of)-(to)": ["action,demonstration_(in_favour_of)","indicator_(action)"],
"act_in_favour_of_(legal)-(to)": ["action,demonstration_(in_favour_of)","indicator_(action)","judgement,law_(in_combinations)"],
"action,demonstration_(against)": ["activity,male_gender_(in_combinations)","opposition,counter_purpose"],
"action,demonstration_(in_favour_of)": ["activity,male_gender_(in_combinations)","purpose"],
"active,actively": ["activity,male_gender_(in_combinations)","indicator_(description)"],
"activity_centre": ["house,building,dwelling,residence","activity,male_gender_(in_combinations)"],
"activity_centre_(children)": ["activity_centre","child,kid,youngster"],
"activity_centre_(leisure_time),after_school_club,youth_club": ["activity_centre","freedom,liberty"],
"activity_centre_(teenagers)": ["activity_centre","teenager,adolescent,youth"],
"actor": ["person,human_being,individual,human","play_(theater)"],
"acupuncturist": ["person,human_being,individual,human","hand","linear_thing,pole"],
"Adam": ["I,me,myself-(masculine)","period,point,full_stop,decimal_point"],
"Adar": ["month","Megillah_(Book_of_Esther)"],
"add,gain-(to)": ["addition,gain","indicator_(action)"],
"addict": ["person,human_being,individual,human","addiction"],
"addiction": ["illness,disease,sickness_(sick_person)","need_(needy_person)"],
"adding,additive": ["addition,gain","indicator_(thing)"],
"address": ["name,label,term,title","habitation,dwelling_place,site"],
"adolescence": ["limited_time,interval,period,awhile,for_a_while","teenager,adolescent,youth"],
"adopt-(to)": ["adoption","indicator_(action)"],
"adoption": ["activity,male_gender_(in_combinations)","judgement,law_(in_combinations)","parent"],
"adult,mature": ["adult,grownup","indicator_(description)"],
"advance,go-(to)": ["forward","indicator_(action)"],
"Advent": ["limited_time,interval,period,awhile,for_a_while","before,in_front_of,prior_to","Christmas"],
"adventure": ["play,game_(in_combinations)","expectation,anticipation","intensity","intensity"],
"adventure_(OLD)": ["activity,male_gender_(in_combinations)","future_(uncertain)","excitement"],
"adventurous": ["adventure","indicator_(description)"],
"adversity,hardship,setback": ["forward","opposing_forces,counter-forces"],
"advertisement": ["paper,card,page","attention"],
"advice,counsel,recommendation": ["suggestion,proposal","help,aid,assistance,support"],
"advise,counsel,recommend-(to)": ["advice,counsel,recommendation","indicator_(action)"],
"advocacy": ["mouth","purpose"],
"advocacy,representation_(legal)": ["advocacy","judgement,law_(in_combinations)"],
"advocate": ["person,human_being,individual,human","action,demonstration_(in_favour_of)"],
"advocate-(to)": ["advocacy","indicator_(action)"],
"advocate_(legal)": ["legal_person_(in_combinations)","action,demonstration_(in_favour_of)"],
"advocate_(legal)-(to)": ["advocacy,representation_(legal)","indicator_(action)"],
"advocate_(legal,speaking)": ["legal_person_(in_combinations)","advocacy"],
"advocate_(speaking),spokesperson": ["person,human_being,individual,human","advocacy"],
"Aegir": ["Nordic_God,Nordic_Goddess","ocean,sea"],
"aerial,antenna": ["exchanger","signal,broadcast,transmitting"],
"Afghanistan": ["country,state","kite"],
"afraid,frightened,scared": ["fear,fright,concern","indicator_(description)"],
"Africa": ["part,bit,piece,portion,part_of","equator"],
"afternoon": ["day","after,behind","one_(digit),1","two_(digit),2"],
"again": ["dot","dot"],
"age": ["number","year"],
"agenda": ["plan,design,method,system","gathering,assembly,meeting,conference"],
"agnosticism": ["doubt,uncertainty","God"],
"agree-(to)": ["agreement","indicator_(action)"],
"agreed,in_agreement,harmonious": ["harmony,harmoniousness,concord,concordance","indicator_(description)"],
"agreement_(spoken)": ["mouth","agreement"],
"agreement_(written),contract": ["paper,card,page","agreement"],
"aid,device,support": ["help,aid,assistance,support","indicator_(thing)"],
"aid_store_room": ["storeroom","aid,device,support"],
"air_traffic_controller": ["leader,director,guide_(1)","group_of,much_of,many_of,quantity_of","airplane,aeroplane,plane"],
"airforce,air_force": ["military,armed_forces,armed_services","sky"],
"airport": ["house,building,dwelling,residence","airplane,aeroplane,plane"],
"airport_terminal": ["public_room","airplane,aeroplane,plane"],
"ajar": ["open","littleness,smallness"],
"alarm": ["buzzer","intensity"],
"alcohol,ethanol": ["chemical_product","alcoholic_drink,alcoholic_beverage,liquor"],
"alcohol_abuse,alcohol_addiction": ["negative_dependency","alcoholic_drink,alcoholic_beverage,liquor"],
"alcoholism,alcohol_addiction": ["addiction","alcoholic_drink,alcoholic_beverage,liquor"],
"Alice_(in_Wonderland)": ["bliss-name","girl","curiosity,curiousness,inquisitiveness,wonder"],
"all_gone": ["all,every,everything,total,whole","subtraction,loss"],
"all_knowing": ["knowledge,class_(in_combinations)","indicator_(description)","all,every,everything,total,whole"],
"all_powerful": ["ability,capability,capacity,potential","indicator_(description)","all,every,everything,total,whole"],
"All_Saints'_Day": ["day","all,every,everything,total,whole","saint"],
"Allah": ["God","A_(uppercase)","L_(uppercase)","L_(uppercase)","A_(uppercase)","H_(uppercase)"],
"allergy,hypersensitivity": ["reaction","body,trunk"],
"alligator,crocodile": ["animal_(water)","snake","teeth"],
"alone,just,only,solitary": ["existence,being_(2)","indicator_(description)","one_(digit),1"],
"along_with": ["and,also,plus,too","and,also,plus,too"],
"alpana,rangoli_(decoration)": ["plan,design,method,system","floor"],
"altar": ["table","holiness"],
"altar_cloth": ["cloth,fabric,material,textile,net","altar"],
"alternate-(to)": ["alternation","indicator_(action)"],
"alternating": ["alternation","indicator_(description)"],
"alternating_current,AC": ["electric_current","alternation"],
"altimeter": ["gauge,gage,meter","height,tallness"],
"altruism,selflessness": ["giving,gift","consideration,thoughtfulness"],
"always,ever,forever": ["time","indicator_(description)","all,every,everything,total,whole"],
"ambulance": ["car,automobile,motor_vehicle","medicine,medical_practice"],
"amen": ["yes-(exclamatory)","religion,naturalism"],
"amenorrhea": ["minus,no,without","menstruation,menstrual_period,period"],
"ammeter": ["gauge,gage,meter","electric_current"],
"among,amongst": ["between","group_of,much_of,many_of,quantity_of"],
"amphibian": ["animal,beast","water_on_ground_(flooding)"],
"amplifier_(1)": ["machine,appliance,engine,motor","comparative_more","noise_(loud)"],
"amplifier_(2)": ["thing,object","comparative_more","noise_(loud)"],
"amplitude": ["measurement,measure","height,tallness","wave"],
"ampullae": ["two_(digit),2","bottle,flask","holiness"],
"amuse,entertain,please-(to)": ["giving,gift","indicator_(action)","happiness,fun,joy,pleasure"],
"anal_intercourse": ["combination,connection","erection,erect_penis","buttocks,bottom,bum,rear,ass"],
"ancestor": ["parent","past"],
"anchor": ["thing,object","end,arrival,stop","boat,ship"],
"anemometer": ["gauge,gage,meter","wind"],
"angel_(2)": ["spirit","supernatural-(noun)","peace,peace_of_mind,serenity"],
"angel_(OLD)": ["angel_(1)","God"],
"angle_(measurement)": ["measurement,measure","angle"],
"angry,angrily,mad": ["group_of,much_of,many_of,quantity_of","feeling,emotion,sensation","indicator_(description)","opposition,counter_purpose"],
"animal_(cold-blooded),cold-blooded_animal,poikilotherm,ectotherm": ["animal,beast","temperature","up_and_down"],
"animal_(protected)": ["animal,beast","protected,saved"],
"animal_(warm-blooded),warm-blooded_animal,homeotherm,endotherm": ["animal,beast","temperature","same,equal,equality"],
"animal_(wild)": ["animal,beast","opening"],
"animal_droppings": ["waste,garbage,rubbish,trash","animal,beast"],
"animal_skin,hide,pelt": ["protection,shelter","animal,beast"],
"ankle_splint": ["splint_(orthopedic)","ankle"],
"anniversary": ["year","again"],
"answer,reply-(to)": ["answer,reply","indicator_(action)"],
"ant": ["insect,bug","work,employment,job","intensity"],
"Antarctic": ["part,bit,piece,portion,part_of","South_Pole"],
"anthropologist": ["person,human_being,individual,human","anthropology"],
"anthropology": ["science,body_of_learning","person,human_being,individual,human"],
"anti-virus_program": ["software,computer_program,application,app","protection,shelter"],
"anus": ["opening","buttocks,bottom,bum,rear,ass"],
"anxiety": ["upset,disturbance,agitation","future_(uncertain)"],
"anxious,anxiously": ["anxiety","indicator_(description)"],
"any_day,someday": ["a,an,any","day"],
"anyone,anybody,somebody,someone": ["a,an,any","person,human_being,individual,human"],
"anything,something": ["a,an,any","thing,object"],
"anytime,sometime": ["a,an,any","time"],
"apartment,flat,unit": ["house,building,dwelling,residence","in,inside,interior,internal","house,building,dwelling,residence"],
"apartment_block": ["group_of,much_of,many_of,quantity_of","multi_storey_building"],
"apologize,apologise,regret_(express)-(to)": ["say,speak,talk,tell,express-(to)","comma","sorry"],
"aport": ["port_(boat)","indicator_(description)"],
"apostle": ["man,male","past","dispersion,dissemination,scattering,spread,spreading","cross,Christianity_(in_combinations)"],
"apparent(ly),clear(ly),evident(ly),obvious(ly),plain(ly)": ["understanding,comprehension","indicator_(description)","through"],
"appear-(to)": ["appearance,manifestation","indicator_(action)"],
"appearance,manifestation": ["beginning,start","eye"],
"appendix,cecum,caecum": ["intestine(s),bowel(s),gut(s)","end,arrival,stop"],
"appetizer,starter,entree": ["food","beginning,start"],
"applaud,clap-(to)": ["applause,clapping","indicator_(action)"],
"applause,clapping": ["two_(digit),2","knocking"],
"appointment": ["time","meeting,encounter"],
"appreciate,value,treasure-(to)": ["evaluation,value","indicator_(action)","goodness"],
"approach": ["forward","line,stripe"],
"approve-(to)": ["evaluation,value","indicator_(action)","correctness,rightness"],
"apricot": ["peach,nectarine","littleness,smallness"],
"apricot_(dried)": ["apricot","dryness,drought"],
"April": ["month","four_(digit),4"],
"apron,coverall,smock,overall": ["protection,shelter","clothing,clothes,garment"],
"Aquarius_(in_zodiac)": ["constellation_of_stars","man,male","water,fluid,liquid"],
"Arabic_(language)": ["language","star","moon"],
"archeologist": ["person,human_being,individual,human","archeology"],
"archeology": ["history","thing,object"],
"archery": ["sport","bow_and_arrow"],
"archipelago": ["group_of,much_of,many_of,quantity_of","island"],
"architect": ["designer,planner","house,building,dwelling,residence"],
"area_(measurement)": ["measurement,measure","enclosure"],
"argue,dispute,quarrel-(to)": ["argument,dispute,quarrel","indicator_(action)"],
"argument,dispute,quarrel": ["discussion,conversation,debate,chat","intensity"],
"Aries_(in_zodiac)": ["constellation_of_stars","ram"],
"armed": ["weapon","indicator_(description)"],
"armoured_force,tank_force": ["military,armed_forces,armed_services","tank"],
"army,regular_army,ground_forces": ["military,armed_forces,armed_services","earth,ground,land"],
"aroma_therapist": ["person,human_being,individual,human","hand","smell,odour"],
"arrest-(to)": ["getting,acquiring,receiving","indicator_(action)","intensity","judgement,law_(in_combinations)"],
"arrow": ["forward","indicator_(thing)"],
"art": ["making,production,fashioning","feeling,emotion,sensation"],
"art_gallery,gallery": ["house,building,dwelling,residence","work_of_art,art_object"],
"arthropod(s)": ["generalization","shellfish_(without_claws)"],
"artificial_insemination": ["medical_treatment,medical_care","conception,fertilization,fertilized_egg"],
"artificial_respiration": ["cause","breath"],
"artillery": ["military,armed_forces,armed_services","cannon,gun"],
"artist": ["person,human_being,individual,human","art"],
"Ascension_(of_Christ)": ["up,upward","Jesus_(of_Nazareth),Jesus_Christ,Christ"],
"Ascension_Day": ["day","Ascension_(of_Christ)"],
"ashes": ["waste,garbage,rubbish,trash","fire"],
"ashore": ["debarkation,disembarkation_(ashore)","indicator_(description)"],
"ashtray": ["garbage_can,rubbish_bin,trash_can","fire"],
"Asia": ["continent","east"],
"ask,inquire,question-(to)": ["question","indicator_(action)"],
"asleep": ["sleep","indicator_(description)"],
"assessment_room": ["room","test,assessment,exam"],
"assistance_dog": ["dog,canine_(animal),canid","help,aid,assistance,support"],
"astarboard": ["starboard","indicator_(description)"],
"asteroid": ["similar,like,alike","dwarf_planet"],
"astrologer,astrologist": ["person,human_being,individual,human","astrology"],
"astrology": ["knowledge,class_(in_combinations)","star","person,human_being,individual,human"],
"astronaut,cosmonaut": ["person,human_being,individual,human","rocket,spaceship"],
"astronomer": ["person,human_being,individual,human","astronomy"],
"astronomy": ["science,body_of_learning","star"],
"at_one's_destination,there": ["end,arrival,stop","indicator_(description)"],
"ATB,all-terrain_bike": ["bicycle","countryside,country,nature"],
"atheism": ["minus,no,without","belief","God"],
"athletics": ["sport","beginning,start"],
"atlas,book_of_maps": ["book","map"],
"ATM,cash_machine": ["machine,appliance,engine,motor","bank_card,money_card"],
"attach_(computer)-(to)": ["attachment_(computer)","indicator_(action)"],
"attached_(computer)": ["attachment_(computer)","indicator_(description)"],
"attachment_(computer)": ["attachment,appendix,annex","file,data_file_(digital)"],
"attack": ["activity,male_gender_(in_combinations)","war"],
"attack-(to)": ["attack","indicator_(action)"],
"attack_(of_illness)": ["illness,disease,sickness_(sick_person)","limited_time,interval,period,awhile,for_a_while"],
"attempt,effort,try": ["forward","difficulty"],
"attendance_list,register_list,contact_list": ["paper,card,page","group_(people)"],
"attention": ["eye","intensity","intensity"],
"audio_book": ["book","sound"],
"audiologist": ["therapist","ear"],
"auditor,accountant": ["person,human_being,individual,human","wakefulness,alertness","money,cash"],
"auditory_system": ["generalization","organ,inner_organ,inner_body_part","ear"],
"August": ["month","eight_(digit),8"],
"Australia": ["continent","south","east"],
"Austria": ["country,state","musical_note,music_(in_combinations)","mountain"],
"autoharp,zither,kantele": ["musical_instrument_(with_many_strings)","table"],
"autumn,fall": ["autumn,fall_(ckb)","leaf","down,downward"],
"autumn,fall_(ckb)": ["sun","three_(digit),3"],
"Av_(Hebrew_month)": ["month","church_ruin,temple_ruin,wreck,wreckage_(church,temple,mosque)_(1)"],
"avalanche": ["snow","down,downward","mountain"],
"awake": ["wakefulness,alertness","indicator_(description)"],
"awful,dreadful,terrible": ["bad,wrong","intensity"],
"baby_animal": ["animal,beast","baby,infant"],
"baby_bottle,feeding_bottle": ["bottle,flask","baby,infant"],
"baby_carriage,buggy,pram,pushchair,stroller": ["wagon,cart,truck","baby,infant"],
"baby_clinic": ["clinic","baby,infant"],
"babysitter": ["police_officer,policeman,policewoman","child,kid,youngster"],
"back_up-(to)": ["backward,back","indicator_(action)"],
"backpack,rucksack": ["sack,bag","back_(body)"],
"backspace_(computer)-(to)": ["deletion,cancellation,destruction","indicator_(action)","backward,back"],
"bacon": ["pork,ham","linear_thing,pole"],
"bacterial_infection": ["illness,disease,sickness_(sick_person)","bacterium"],
"bacterium": ["one_(digit),1","micro-organism"],
"bad,wrong": ["dislike","indicator_(description)"],
"badger": ["animal,beast","smell,odour","group_of,much_of,many_of,quantity_of","line,stripe"],
"badminton_(activity)": ["activity,male_gender_(in_combinations)","shuttlecock,birdie_(badminton)"],
"badminton_(sport)": ["sport","shuttlecock,birdie_(badminton)"],
"bagel": ["bun_(food)","ring"],
"bagpipe": ["wind_instrument","sack,bag"],
"baguette": ["bread,loaf_of_bread,loaf","length,longness"],
"bake,cook,roast-(to)": ["cooking,cookery,preparation_(hot_food)","indicator_(action)","enclosure"],
"baker": ["person,human_being,individual,human","bread,loaf_of_bread,loaf"],
"bakery": ["store,shop","bread,loaf_of_bread,loaf"],
"baking_powder": ["powder,dust","roll,bun","up,upward"],
"baking_tin,baking_pan,ovenware": ["container,bowl,holder,pouch,basket","stove,furnace,heater,oven"],
"balance,sense_of_balance": ["information","position","body,trunk"],
"balance_(general),poise": ["activity,male_gender_(in_combinations)","minus,no,without","fall,drop,spill,tumble"],
"balance_(general),poise-(to)": ["balance_(general),poise","indicator_(action)"],
"balance_(walking,standing)-(to)": ["legs_and_feet","indicator_(action)","minus,no,without","fall,drop,spill,tumble"],
"balcony,porch,veranda": ["room","out,exterior,external,outside"],
"Balder": ["Nordic_God,Nordic_Goddess","light"],
"ball_pool": ["foundation,base,fundament","group_of,much_of,many_of,quantity_of","ball"],
"ball_sports": ["sport","ball"],
"ballet": ["activity,male_gender_(in_combinations)","toe","music"],
"ballooning": ["sport","balloon_(hot_air)"],
"ballot,voting_slip": ["paper,card,page","choice,selection,election"],
"band,orchestra": ["group_(people)","musical_instrument_(in_combinations)"],
"band,orchestra_(OLD)": ["group_(people)","musical_instrument"],
"band_(of_frequencies)": ["signal,broadcast,transmitting","limit(s),limitation,restriction"],
"band_(of_frequencies)_(OLD)": ["signal,broadcast,transmitting","limit(s),limitation_(OLD)"],
"bandage,dressing": ["cloth,fabric,material,textile,net","protection,shelter","medicine,medical_practice"],
"bandit,armed_robber": ["person,human_being,individual,human","getting,acquiring,receiving","weapon"],
"bandy_(sport)": ["field_hockey,hockey_(sport)","ice"],
"Bangladesh": ["country,state","tiger"],
"banjo": ["guitar,string_instrument","metal_bar"],
"bank": ["house,building,dwelling,residence","money,cash"],
"bank_card,money_card": ["card","money,cash"],
"bar,pub": ["public_room","alcoholic_drink,alcoholic_beverage,liquor"],
"bar_mitzvah_(Hebrew)": ["religious_ceremony_(God_based)","about,concerning,in_relation_to,of,on","man,male"],
"barber,hairdresser": ["person,human_being,individual,human","hair_(head)"],
"barbershop,beauty_shop": ["public_room","hair_(head)"],
"barge,river_boat": ["freighter","river,stream,current"],
"bark": ["protection,shelter","trunk,tree_trunk,bole"],
"bark-(to)": ["mouth","indicator_(action)","dog,canine_(animal),canid"],
"barley": ["grain,cereal","linear_thing,pole","bigness,largeness"],
"barn": ["house,building,dwelling,residence","grain,cereal"],
"barn,stable,shed": ["house,building,dwelling,residence","animal,beast"],
"barometer,manometer": ["pressure_gauge","air,atmosphere"],
"barrow,garden_cart,wheelbarrow": ["wagon,cart,truck","garden"],
"barrow,grave_mound": ["collection,pile,tussock_(etc)","tombstone"],
"base_camp": ["place,area,location,space","gathering,assembly,meeting,conference"],
"baseball_(activity)": ["activity,male_gender_(in_combinations)","ball","corner"],
"baseball_(sport)": ["ball_sports","corner"],
"basketball_(activity)": ["activity,male_gender_(in_combinations)","ball","container,basket_(high)"],
"basketball_(sport)": ["ball_sports","container,basket_(high)"],
"bass_clarinet": ["clarinet,reed_instrument_(1)","bigness,largeness"],
"bass_guitar": ["guitar,string_instrument","bass"],
"bassoon_(1)": ["oboe_(1)","bigness,largeness"],
"bassoon_(2)": ["oboe_(2)","tenor"],
"bat_(sport)": ["linear_thing,pole","ball"],
"bat_mitzvah_(Hebrew)": ["religious_ceremony_(God_based)","about,concerning,in_relation_to,of,on","woman,female"],
"bathing_rule(s)": ["rule,regulation","pool"],
"bathroom,washroom": ["room","bath,washing"],
"bathtub,bath,tub": ["sink,basin","length,longness"],
"Batman": ["make-believe_man","bat_(animal)"],
"batter": ["mixture","powder,dust","group_of,much_of,many_of,quantity_of","water,fluid,liquid"],
"battery": ["container,bowl,holder,pouch,basket","electricity"],
"bazaar": ["shopping_centre,mall,plaza","littleness,smallness"],
"be,am,are,is,exist-(to)": ["existence,being_(2)","indicator_(action)"],
"be_caused_by-(to)": ["cause","indicator_(passive)"],
"be_cold-(to)": ["feeling,emotion,sensation","indicator_(action)","coldness,cold"],
"be_named,be_called-(to)": ["name,label,term,title","indicator_(action)"],
"be_patient-(to)": ["patience","indicator_(action)"],
"beach_tennis_(activity)": ["tennis_(activity)","beach,bank,coast,shore"],
"beach_tennis_(activity)_(OLD)": ["tennis_(activity)_(OLD)","beach,bank,coast,shore"],
"beach_tennis_(sport)": ["tennis,racket_sport,racquet_sport","beach,bank,coast,shore"],
"beach_tennis_(sport)_(OLD)": ["tennis,racquet_sports_(OLD)","beach,bank,coast,shore"],
"bean_(dried),chick-pea,kidney_bean,pinto_bean": ["bean","dryness,drought"],
"bear": ["animal,beast","bear's_head"],
"beautiful,attractive,good-looking,handsome,pretty": ["beauty","indicator_(description)"],
"beauty": ["eye","happiness,fun,joy,pleasure"],
"beaver": ["water_animal_(big_tail)","teeth"],
"because": ["therefore,so,so_that","what,question_mark_(small)"],
"become-(to)": ["forward","indicator_(action)","existence,being_(2)"],
"bedbug,wall_louse": ["louse,stinging_insect","indoor_(character)"],
"bedroom": ["room","sleep"],
"bedtime": ["time","bed"],
"bee,bumblebee,hoverfly": ["fly,flying_insect","flower"],
"beef": ["food","animal_(bovine,ovine),bovid,bovine"],
"beer": ["alcoholic_drink,alcoholic_beverage,liquor","gas"],
"beet,beetroot": ["turnip,rutabaga,vegetable_(large-leafed)","red_(bci)"],
"beg,plead-(to)": ["ask,inquire,question-(to)","comma","please"],
"beggar": ["person,human_being,individual,human","question","existence,being_(2)"],
"begin,start-(to)": ["beginning,start","indicator_(action)"],
"beginning_of_year": ["beginning,start","year"],
"behaviour": ["activity,male_gender_(in_combinations)","creature,being"],
"beige": ["brown_(bci)","snow"],
"Belarus": ["country,state","buffalo,bison","tree"],
"Belgium": ["country,state","strength","intensity"],
"belief": ["feeling,emotion,sensation","hypothesis,theory"],
"believe-(to)": ["belief","indicator_(action)"],
"believer": ["person,human_being,individual,human","religion,naturalism"],
"believer_(in_God)": ["person,human_being,individual,human","religion_(God_based)"],
"bell": ["thing,object","one_(digit),1","musical_note,music_(in_combinations)"],
"bell,chime_bar": ["musical_instrument_(in_combinations)","one_(digit),1","musical_note,music_(in_combinations)"],
"bells,chime_bars,tubular_bells": ["group_of,much_of,many_of,quantity_of","bell,chime_bar"],
"belt,sash": ["linear_thing,pole","waist"],
"bench,pew": ["chair,seat","length,longness"],
"bend-(to)": ["curve,curved_line","indicator_(action)"],
"berth,bunk": ["bed","boat,ship"],
"best": ["superlative_most","good,well,fine,ok,okay,all_right"],
"bet": ["money,cash","race,competition,contest"],
"bet-(to)": ["bet","indicator_(action)"],
"better": ["comparative_more","goodness","indicator_(description)"],
"betting": ["activity,male_gender_(in_combinations)","bet"],
"beyond,past": ["out,exterior,external,outside","limited,restricted,confined"],
"beyond,past_(OLD)": ["out,exterior,external,outside","limit(s),limitation_(OLD)","indicator_(description)"],
"biathlon": ["skiing_(sport)","gun,firearm"],
"bib": ["protection,shelter","chest"],
"Bible_(Christian)": ["holy_book","cross,Christianity_(in_combinations)"],
"bicycle": ["two_(digit),2","wheel"],
"bicycle_helmet,crash_helmet": ["helmet","bicycle"],
"bicycle_path": ["place,area,location,space","activity,male_gender_(in_combinations)","bicycle"],
"big,large": ["bigness,largeness","indicator_(description)"],
"bike_lamp": ["light","indicator_(thing)","bicycle"],
"billiards": ["table_sports","three_(digit),3","ball"],
"bindi,tika_(decoration)": ["dot","colour","forehead"],
"binoculars,field_glass": ["tool,instrument","eye","farness,remoteness,farawayness"],
"binoculars,field_glass_(OLD)": ["tool,instrument","eye","farness,remoteness,farawayness_(OLD)"],
"biochemist": ["person,human_being,individual,human","biochemistry"],
"biochemistry": ["science,body_of_learning","biochemical_product,organic_compound"],
"bioenergy": ["energy","plant"],
"biologist": ["person,human_being,individual,human","biology"],
"biology": ["science,body_of_learning","life"],
"biology_(class)": ["knowledge,class_(in_combinations)","life"],
"biomass,biofuel": ["fuel","plant"],
"birch": ["tree","white","north"],
"bird_(domestic)": ["bird","protection,shelter"],
"bird_(protected)": ["bird","protected,saved"],
"bird_(wild)": ["bird","opening"],
"bird_nest,birdnest": ["container,bowl,holder,pouch,basket","bird","egg,ovum_(2)"],
"birdfeeder,bird_table": ["place,area,location,space","food","comma","bird"],
"birdhouse,house_for_bird": ["house,building,dwelling,residence","bird"],
"birth_control": ["end,arrival,stop","conception,fertilization,fertilized_egg"],
"birth_control_pill,pill": ["pill,tablet","minus,no,without","egg,ovum_(2)"],
"birthday": ["day","birth"],
"bisexual": ["bisexuality","indicator_(description)"],
"bisexuality": ["heterosexuality","both"],
"bishop": ["leader,director,guide_(1)","cross,Christianity_(in_combinations)"],
"bit_(horse)": ["metal_bar","mouth","horse"],
"bite-(to)": ["teeth","indicator_(action)"],
"bitter": ["taste","indicator_(description)","down,downward"],
"black_(bci)": ["colour","night"],
"black_(ckb)": ["colour","zero_(digit),0"],
"blackberry": ["raspberry,blackberry,compound_berry","black_(bci)"],
"blackbird,crow,raven": ["bird","black_(bci)"],
"blackboard,chalkboard,whiteboard,writing_board": ["enclosure","pen,pencil"],
"blacksmith": ["person,human_being,individual,human","iron"],
"bladder": ["container,bowl,holder,pouch,basket","urine,piss,pee,piddle,weewee,water"],
"blanket,duvet,quilt": ["cloth,fabric,material,textile,net","protection,shelter","bed"],
"bleat,baa-(to)": ["mouth","indicator_(action)","sheep"],
"bleed-(to)": ["blood","indicator_(action)"],
"bless-(to)": ["giving,gift","indicator_(action)","peace,peace_of_mind,serenity","protection,shelter"],
"blind": ["blindness","indicator_(description)"],
"Bliss,Bliss_language,Blissymbolics": ["language","blissymbol,Bliss-word"],
"Bliss_(class)": ["knowledge,class_(in_combinations)","Bliss,Bliss_language,Blissymbolics"],
"Bliss_fanatic": ["fanatic_(person)","blissymbol,Bliss-word"],
"blissymbol_part": ["part,bit,piece,portion,part_of","blissymbol,Bliss-word"],
"blissymbolics_resource_centre": ["resource_centre","blissymbol,Bliss-word"],
"block,city_block": ["place,area,location,space","between","street"],
"blog,web_blog": ["book","day","digits_(computer)"],
"blood": ["water,fluid,liquid","life"],
"blood_vessel": ["pipe,hose,tube_(2)","life"],
"blot": ["gathering,assembly,meeting,conference","giving,gift","Nordic_God,Nordic_Goddess"],
"blow_(mouth)-(to)": ["mouth","indicator_(action)","wind"],
"blow_(wind)-(to)": ["wind","indicator_(action)"],
"blue_(bci)": ["colour","sky"],
"blue_(ckb)": ["colour","five_(digit),5"],
"blueberry": ["berry","blue_(bci)"],
"bluebird": ["bird","blue_(bci)"],
"blush-(to)": ["face","indicator_(action)","red_(bci)"],
"boar": ["pig","activity,male_gender_(in_combinations)"],
"board,board_of_directors,executive": ["group_of,much_of,many_of,quantity_of","leader,director,guide_(1)"],
"board-(to)": ["board_and_lodging,room_and_board","indicator_(action)"],
"board_and_lodging,room_and_board": ["house,building,dwelling,residence","and,also,plus,too","food"],
"boat_ladder": ["ladder","boat,ship"],
"boathouse": ["house,building,dwelling,residence","boat,ship"],
"boating": ["sport","boat,ship"],
"bobsleigh": ["sled,sledge,sleigh,toboggan","bigness,largeness"],
"body_brace,corset": ["splint_(orthopedic)","body,trunk"],
"body_fluid": ["water,fluid,liquid","body,trunk"],
"body_hair": ["hair","body,trunk"],
"body_painting": ["picture,image,icon,painting","body,trunk","brush"],
"body_part": ["part,bit,piece,portion,part_of","body,trunk"],
"body_temperature": ["temperature","body,trunk"],
"boil_(food)-(to)": ["cooking,cookery,preparation_(hot_food)","indicator_(action)","water,fluid,liquid","intensity"],
"boil_(liquid)-(to)": ["fire","indicator_(action)","water,fluid,liquid","intensity"],
"bolt_(horse)-(to)": ["gallop","indicator_(action)","danger"],
"bomb,explosive": ["explosion,detonation,blowup","indicator_(thing)"],
"bomb_shelter": ["shelter,refuge","under,below,inferior"],
"bonfire,barbeque,campfire": ["fire","happiness,fun,joy,pleasure"],
"bongo_drum,hand_drum": ["musical_instrument_(in_combinations)","hand","repetition,copying,duplication,replication"],
"bookshop": ["store,shop","book"],
"boot": ["protection,shelter","leg_and_foot"],
"boot,trunk,roof_box,luggage_compartment": ["container,bowl,holder,pouch,basket","car,automobile,motor_vehicle"],
"boring,dull,depressing": ["sad,sadly,unhappily,unhappy","mouth"],
"borrow-(to)": ["getting,acquiring,receiving","indicator_(action)","limited_time,interval,period,awhile,for_a_while"],
"boss,supervisor": ["leader,director,guide_(1)","work,employment,job"],
"boss,supervisor_(OLD)": ["leader,director,guide_(2)","work,employment,job"],
"botanist": ["person,human_being,individual,human","botany"],
"botany": ["science,body_of_learning","plant"],
"both": ["two_(digit),2","all,every,everything,total,whole"],
"bottle_nipple,teat": ["bottleneck,bottle_opening","baby,infant"],
"bottle_opener": ["opener","bottle,flask"],
"boules,boccia_(sport)": ["bowling_(sport)","measurement,measure"],
"bouquet_(flowers)": ["group_of,much_of,many_of,quantity_of","flower","attachment,appendix,annex"],
"bow": ["curve,curved_line","indicator_(thing)"],
"bow_and_string_instrument": ["musical_instrument_(in_combinations)","bow_and_string_(musical)"],
"bowel,intestine_(OLD)": ["pipe,hose,tube_(2)","bowel_movement,defecation,shitting,feces,shit,poop"],
"bowel_movement,defecation,shitting,feces,shit,poop": ["waste,garbage,rubbish,trash","buttocks,bottom,bum,rear,ass"],
"bowling_(activity)": ["activity,male_gender_(in_combinations)","ball_field"],
"bowling_(sport)": ["sport","ball_field"],
"boxing_(activity)": ["activity,male_gender_(in_combinations)","fight,combat"],
"boxing_(sport)": ["contact_sports","hand"],
"boyfriend": ["man,male","love,affection"],
"bra,brassiere": ["clothing,clothes,garment","breast(s)"],
"brace(s)_(dental),dental_brace(s)": ["aid,device,support","teeth","line,stripe"],
"brace(s)_(dental),dental_brace(s)_(medical)": ["medical_aid","teeth"],
"brace_(neck,medical),neck_brace,cervical_collar,neck_collar": ["medical_aid","neck_(body)"],
"bracelet": ["jewelry,jewellery","arm"],
"bracha,berakah,prayer_(small)": ["prayer","comma","littleness,smallness"],
"Brahma": ["God","creation,nature"],
"braid,plait,pigtail(s)": ["mixture","three_(digit),3","linear_thing,pole"],
"braid,plait-(to)": ["braid,plait,pigtail(s)","indicator_(action)"],
"brain": ["mind,intellect,reason","indicator_(thing)"],
"brain_injury": ["break,fracture,damage","brain"],
"brake_(general)": ["tool,instrument","end,arrival,stop"],
"brake_(general)-(to)": ["brake_(general)","indicator_(action)"],
"brake_(vehicle)": ["brake_(general)","move,movement"],
"brake_(vehicle)-(to)": ["brake_(vehicle)","indicator_(action)"],
"brass_instrument": ["musical_instrument_(in_combinations)","metal_bar"],
"brave,courageous": ["courage","indicator_(description)"],
"Brazil": ["country,state","ball","legs_and_feet"],
"bread_(sliced),sliced_bread": ["bread,loaf_of_bread,loaf","knife,sword"],
"bread_crust": ["shell,crust","bread,loaf_of_bread,loaf"],
"bread_knife": ["knife,sword","bread,loaf_of_bread,loaf"],
"bread_with_fruit": ["bread,loaf_of_bread,loaf","fruit"],
"bread_with_seeds": ["bread,loaf_of_bread,loaf","seed"],
"break,crack,fracture,tear-(to)": ["break,fracture,damage","indicator_(action)"],
"breakable,fragile": ["break,fracture,damage","indicator_(description_before_fact)"],
"breakfast": ["meal","one_(digit),1"],
"breastbone,sternum": ["bone","chest"],
"breath": ["nose","mouth"],
"breathe-(to)": ["breath","indicator_(action)"],
"breathing_aid": ["aid,device,support","breath"],
"breeze": ["wind","littleness,smallness"],
"bricklayer": ["person,human_being,individual,human","block,brick"],
"bridle,headstall": ["harness","muzzle"],
"briefcase": ["baggage,bag,luggage,suitcase","paper,card,page"],
"bright": ["light_(not_dark)","intensity"],
"bring-(to)": ["transport,transportation","indicator_(action)","approach"],
"broadband": ["band_(of_frequencies)","quickness,rapidity,speediness"],
"broadband_(OLD)": ["band_(of_frequencies)_(OLD)","quickness,rapidity,speediness"],
"broadcast,transmit-(to)": ["signal,broadcast,transmitting","indicator_(action)"],
"broccoli": ["cauliflower","green_(bci)"],
"broil,barbecue,grill-(to)": ["cooking,cookery,preparation_(hot_food)","indicator_(action)","intensity"],
"broken": ["break,fracture,damage","indicator_(description_after_fact)"],
"Brontosaurus": ["dinosaur","bigness,largeness"],
"bronze": ["metal_bar","mug,cup","pot,pan"],
"bronze_age": ["past","mug,cup","pot,pan"],
"brooch": ["jewelry,jewellery","clothing,clothes,garment"],
"brook,creek": ["river,stream,current","littleness,smallness"],
"brother": ["son","two_(digit),2"],
"brother-in-law_(husband's_brother)": ["brother","husband"],
"brother-in-law_(partner's_brother)": ["brother","spouse,cohabitant,partner"],
"brother-in-law_(wife's_brother)": ["brother","wife"],
"brown_(bci)": ["colour","earth,ground,land"],
"brown_(ckb)": ["red_(ckb)","comma","zero_(digit),0"],
"brownie,house_elf": ["little_person","house,building,dwelling,residence"],
"bruise,contusion,haematoma": ["spot,mark","blue_(bci)"],
"bruise,dent": ["spot,mark","bump,press,pressing"],
"bruised,dented": ["bruise,dent","indicator_(description)"],
"brush-(to)": ["brush","indicator_(action)"],
"brush_teeth-(to)": ["toothbrush","indicator_(action)"],
"brussels_sprout(s)": ["cabbage","littleness,smallness"],
"Buddha": ["man,male","Buddhism"],
"Buddhism": ["religion,naturalism","Dharma_wheel"],
"buddhist": ["Dharma_wheel","indicator_(description)"],
"buddhist_(person)": ["person,human_being,individual,human","Dharma_wheel"],
"budget,business_plan": ["plan,design,method,system","business,economy,commerce,trade"],
"bugle_(1)": ["trumpet,horn,cornet_(1)","war"],
"bugle_(2)": ["brass_instrument","zero_(digit),0","disc,disk"],
"bugle_(hunting)": ["trumpet,horn,cornet_(1)","animal,beast"],
"build,construct-(to)": ["structure,construction","indicator_(action)"],
"bull": ["animal_(bovine,ovine),bovid,bovine","activity,male_gender_(in_combinations)"],
"bull_(fighting)": ["animal_(bovine,ovine),bovid,bovine","fight,combat"],
"bump,press-(to)": ["bump,press,pressing","indicator_(action)"],
"bun_(soft),roll_(soft),scone,brioche": ["roll,bun","imprint,depression"],
"burial": ["ceremony","grave"],
"burial_(religious)": ["religious_ceremony_(God_based)","grave"],
"burial_mound,grave_mound": ["grave","group_of,much_of,many_of,quantity_of","stone,rock"],
"burial_site": ["place,area,location,space","under_(ground_level)"],
"burn-(to)": ["fire","indicator_(action)"],
"burnable,combustible,ignitable": ["fire","indicator_(description_before_fact)"],
"burned,burnt": ["fire","indicator_(description_after_fact)"],
"burned-out,burnt-out": ["sick,ill","minus,no,without","electricity","mind,intellect,reason"],
"burning": ["fire","indicator_(description)"],
"burp,belch-(to)": ["wind","indicator_(action)","out_of_body_(upward)"],
"bury-(to)": ["burial_site","indicator_(action)"],
"bury_(person)-(to)": ["grave","indicator_(action)"],
"bus_driver": ["person,human_being,individual,human","bus,coach"],
"bus_lane": ["place,area,location,space","activity,male_gender_(in_combinations)","bus,coach"],
"bus_station": ["station","bus,coach"],
"bus_stop,bus_bay": ["platform,stage","bus,coach"],
"business_idea": ["idea,thought","business,economy,commerce,trade"],
"butcher": ["person,human_being,individual,human","meat"],
"butcher_shop": ["store,shop","meat"],
"butter": ["spread,paste","cream"],
"button,gripper,snap": ["disc,disk","clothing,clothes,garment"],
"buy,purchase-(to)": ["money,cash","indicator_(action)","thing,object"],
"buzzer": ["tool,instrument","noise_(loud)"],
"cabin,cottage,hut": ["house,building,dwelling,residence","littleness,smallness"],
"cabin_(airplane)": ["room","airplane,aeroplane,plane"],
"cabin_(boat)": ["room","boat,ship"],
"cable_car": ["enclosure","ascending_and_descending"],
"cactus": ["plant","quill(s),spine(s)"],
"caesarean_section,C-section": ["subtraction,loss","medicine,medical_practice","fetus"],
"cafe,coffee_house,snack_bar": ["public_room","meal","littleness,smallness"],
"cage": ["enclosure","barred_window"],
"cake,bread_with_sugar": ["bread,loaf_of_bread,loaf","sweetness,sweet"],
"calculate-(to)": ["calculation_(mathematical,in_mind)","indicator_(action)"],
"calculator": ["machine,appliance,engine,motor","calculation_(mathematical,in_mind)"],
"calendar": ["paper,card,page","day","month"],
"call,telephone,ring-(to)": ["telephone","indicator_(action)"],
"calling,profession,career": ["work,employment,job","choice,selection,election"],
"calling,vocation": ["life","choice,selection,election"],
"calm,lull": ["minus,no,without","wind"],
"calm_(weather)": ["calm,lull","indicator_(description)"],
"camp": ["gathering,assembly,meeting,conference","countryside,country,nature","limited_time,interval,period,awhile,for_a_while"],
"camper_van,RV": ["car,automobile,motor_vehicle","house,building,dwelling,residence"],
"camping_mat,sleeping_mat": ["cloth,fabric,material,textile,net","reclining,lying_(person_lying_down)"],
"camping_stove": ["fireplace","portability"],
"can,be_able-(to)": ["ability_(half_sized)","indicator_(action)"],
"can_opener": ["opener","can,tin,jar"],
"Canada": ["country,state","maple-leaf"],
"canal_(water)": ["river,stream,current","making,production,fashioning"],
"cancer": ["illness,disease,sickness_(sick_person)","cell","repetition,copying,duplication,replication"],
"Cancer_(in_zodiac)": ["constellation_of_stars","crab,shellfish_(with_claws)"],
"candle": ["match","light"],
"candy,sweets": ["generalization","candy"],
"candy_(OLD)": ["sweet,confection","intensity"],
"candy_bar": ["bar,cake","sweetness,sweet"],
"cane,stick,walking_stick": ["linear_thing,pole","legs_and_feet"],
"cannula_(with_needle)": ["medical_tube,catheter,cannula","needle"],
"canoe": ["boat,ship","one_(digit),1","paddle,oar"],
"canoeing": ["sport","canoe"],
"canter-(to)": ["horse","indicator_(action)","intensity","intensity"],
"cape,poncho,clothing_without_sleeves": ["clothing,clothes,garment","minus,no,without","arm"],
"capital,capital_city": ["town,city_(small)","country,state"],
"Capricorn_(in_zodiac)": ["constellation_of_stars","animal_(bovine,ovine),bovid,bovine","stone,rock"],
"capture,catch,seize-(to)": ["getting,acquiring,receiving","indicator_(action)","intensity"],
"car_mechanic": ["mechanic,technician","car,automobile,motor_vehicle"],
"car_racing,auto_racing": ["sport","car,automobile,motor_vehicle"],
"car_track": ["track","car,automobile,motor_vehicle"],
"card_game": ["play,game_(in_combinations)","card"],
"cardboard,paperboard": ["paper,card,page","fatness,thickness"],
"cardiologist": ["doctor,physician","heart"],
"cardiovascular_system": ["generalization","organ,inner_organ,inner_body_part","heart"],
"cards,playing_cards": ["paper,card,page","indicator_(plural)","play,recreation"],
"care,protect,defend-(to)": ["care,protection,defence","indicator_(action)"],
"care,protection,defence": ["activity,male_gender_(in_combinations)","protection,shelter"],
"care_centre": ["house,building,dwelling,residence","protection,shelter"],
"care_manager,care_plan_manager": ["leader,director,guide_(1)","help,aid,assistance,support"],
"careful": ["observation","indicator_(description)","intensity","intensity"],
"caregiver,protector,defender": ["person,human_being,individual,human","care,protection,defence"],
"carnivore": ["animal,beast","meat"],
"carpenter": ["person,human_being,individual,human","carpentry,wood_work"],
"carpentry,wood_work": ["work,employment,job","tool,instrument","tree"],
"carriage": ["cart,carriage","bigness,largeness","horse"],
"carriage_racing": ["equestrian_sports","cart,carriage"],
"carry,move,transport-(to)": ["transport,transportation","indicator_(action)"],
"carrycot,bassinet": ["container,bowl,holder,pouch,basket","baby,infant"],
"cartographer": ["person,human_being,individual,human","cartography"],
"cartography": ["science,body_of_learning","map"],
"cartoon,animated_picture": ["movie,film","pen,pencil"],
"carve-(to)": ["knife,sword","indicator_(action)","shape,form"],
"casserole": ["food","baking_tin,baking_pan,ovenware"],
"cast_(medical)": ["enclosure","medicine,medical_practice","body,trunk"],
"castanets_(1)": ["disc,disk","finger"],
"castanets_(2)": ["rhythm_instrument","castanets_(1)"],
"castle,palace_(royal)": ["castle,palace","crown"],
"catamaran,pontoon_boat": ["two_(digit),2","hull,body"],
"catch,grab-(to)": ["hand","indicator_(action)","getting,acquiring,receiving"],
"caterpillar": ["worm","butterfly,moth"],
"catheter_(urine)": ["medical_tube,catheter,cannula","urine,piss,pee,piddle,weewee,water"],
"cauliflower": ["cabbage","flower"],
"cause-(to)": ["cause","indicator_(action)"],
"cave": ["hole","mountain"],
"CD": ["recording_disk","file,data_file_(digital)"],
"CD,record": ["recording_disk","ear"],
"CD_cover": ["protection,shelter","CD,record"],
"CD_player,record_player,stereo": ["machine,appliance,engine,motor","CD,record"],
"cease-fire,armistice": ["agreement","end,arrival,stop","war"],
"celebration": ["event,happening,occasion","happiness,fun,joy,pleasure","purpose"],
"celebration_of_life": ["celebration","life"],
"celibacy,chastity": ["minus,no,without","sexual_intercourse,intercourse,copulation"],
"celibacy,chastity,abstinence": ["decision","celibacy,chastity"],
"celibacy_(religious)": ["celibacy,chastity,abstinence","religion,naturalism"],
"cello": ["bow_and_string_instrument","tenor"],
"cellular_fluid": ["water,fluid,liquid","cell"],
"cemetery": ["place,area,location,space","grave"],
"central_nervous_system,CNS": ["brain_signal","indicator_(thing)"],
"century": ["one_(digit),1","zero_(digit),0","zero_(digit),0","year"],
"ceramics,pottery": ["craft","mud,clay"],
"ceremony": ["event,happening,occasion","plan,design,method,system"],
"Ceres_(dwarf_planet)": ["dwarf_planet","middle,centre"],
"certain,sure": ["minus,no,without","uncertain,unsure"],
"certain_(OLD)": ["opposite_meaning,opposite_of,opposite","uncertain,unsure"],
"cervix": ["part,bit,piece,portion,part_of","uterus,womb"],
"chairlift": ["seat,sitting_(sitting_person)","ascending_and_descending"],
"chalice": ["goblet,wineglass","holiness"],
"challah": ["bread,loaf_of_bread,loaf","Sabbath,day_of_rest"],
"challenge": ["opposition,counter_purpose","cause","activity,male_gender_(in_combinations)"],
"chameleon": ["lizard,reptile_(snake_like_animal)","change,alteration,conversion"],
"champagne": ["sparkling_wine","intensity"],
"chance,risk": ["choice,selection,election","future_(uncertain)"],
"change,alter,convert-(to)": ["change,alteration,conversion","indicator_(action)"],
"channel_(programs)": ["signal,broadcast,transmitting","choice,selection,election"],
"Chanukah,Hanukkah": ["holiday,festival","light"],
"character_(in_a_story)": ["person,human_being,individual,human","story,report,tale"],
"charge_(electricity)-(to)": ["fill-(to)","electricity"],
"charged_(electricity)": ["full","electricity"],
"charger,battery_charger": ["thing,object","filling,fill,fullness","electricity"],
"charity": ["help,aid,assistance,support","need_(needy_person)","feeling,emotion,sensation"],
"charm": ["personality","positive"],
"charming": ["charm","indicator_(description)"],
"chase": ["forward","forward"],
"chase-(to)": ["chase","indicator_(action)"],
"chat_(online)": ["discussion,conversation,debate,chat","digits_(computer)"],
"chat_(online)-(to)": ["chat_(online)","indicator_(action)"],
"cheap,inexpensive": ["cost,price","indicator_(description)","littleness,smallness"],
"cheap_(OLD)": ["opposite_meaning,opposite_of,opposite","expensive_(OLD)"],
"cheat-(to)": ["cheating","indicator_(action)"],
"cheating": ["activity,male_gender_(in_combinations)","minus,no,without","truth"],
"checked": ["group_of,much_of,many_of,quantity_of","grid,matrix","indicator_(description)"],
"cheer-(to)": ["cheering_(the_sound)","indicator_(action)"],
"cheering_(the_sound)": ["support_(oral)","intensity"],
"cheerleader": ["leader,director,guide_(1)","cheering_(the_sound)"],
"cheers_(toast)": ["mouth","alcoholic_drink,alcoholic_beverage,liquor","up,upward"],
"cheetah": ["cat,feline_(animal),felid","quickness,rapidity,speediness"],
"chemist": ["person,human_being,individual,human","chemistry"],
"chemistry": ["science,body_of_learning","chemical_product"],
"chemistry_(class)": ["knowledge,class_(in_combinations)","chemical_product"],
"Cheshvan": ["month","beginning,start","rain"],
"chess": ["game","crown"],
"chest_hair": ["hair","chest"],
"chew-(to)": ["group_of,much_of,many_of,quantity_of","teeth","indicator_(action)"],
"chewing-gum": ["candy","teeth"],
"chick": ["chicken_(bird)","child,kid,youngster"],
"chicken_(bird)": ["bird","food"],
"chicken_(food),poultry": ["food","bird"],
"child_abuse": ["abuse,assault,violence","child,kid,youngster"],
"child_care": ["care,protection,defence","child,kid,youngster"],
"child_harness,walking_reins": ["harness","child,kid,youngster"],
"Children's_Day": ["day","child,kid,youngster"],
"children's_room": ["room","child,kid,youngster"],
"children's_song,nursery_rhyme": ["song","child,kid,youngster"],
"chilly": ["feeling,emotion,sensation","indicator_(description)","coldness,cold"],
"China": ["country,state","middle,centre"],
"chipmunk": ["rat,rodent,gnawer,gnawing_animal","line,stripe"],
"chiropractor": ["person,human_being,individual,human","hand","joint"],
"chirp,twitter-(to)": ["mouth","indicator_(action)","bird"],
"chive": ["onion,vegetable_(bulb)","grass"],
"chocolate": ["food","bean","up,upward"],
"chocolate,cocoa,cacao_(bitter_powder)": ["flavouring,seasoning_(powder)","bean","down,downward"],
"chocolate,cocoa,cacao_(sweet_powder)": ["flavouring,seasoning_(powder)","bean","up,upward"],
"chocolate_(hagel)": ["spread,paste","part,bit,piece,portion,part_of","bean","up,upward"],
"chocolate_(OLD)": ["food","powder,dust","brown_(bci)"],
"chocolate_bar": ["bar,cake","bean","up,upward"],
"chocolate_drink": ["coffee","up,upward"],
"chocolate_drink_(OLD)": ["drink,beverage","powder,dust","brown_(bci)"],
"chocolate_flavouring": ["flavouring,condiment,seasoning","bean","up,upward"],
"chocolate_flavouring,cocoa,cacao_powder_(OLD)": ["flavouring,seasoning_(powder)","brown_(bci)"],
"chocolate_sauce": ["sauce,gravy,relish,dressing","bean","up,upward"],
"chocolate_spread": ["hummus","up,upward"],
"chocolate_spread_(OLD)": ["spread,paste","powder,dust","brown_(bci)"],
"choir,chorus": ["group_of,much_of,many_of,quantity_of","singer"],
"choke,gag-(to)": ["down,downward","indicator_(action)","drink,beverage","not,negative,no,don't,doesn't"],
"choose,pick,select-(to)": ["choice,selection,election","indicator_(action)"],
"chop-(to)": ["knife,sword","indicator_(action)","intensity"],
"chopstick(s)": ["two_(digit),2","linear_thing,pole","food"],
"christian": ["cross,Christianity_(in_combinations)","indicator_(description)"],
"Christian_(person)": ["person,human_being,individual,human","cross,Christianity_(in_combinations)"],
"Christian_charity": ["charity","cross,Christianity_(in_combinations)"],
"Christian_event": ["event,happening,occasion","cross,Christianity_(in_combinations)"],
"Christian_faith": ["belief","cross,Christianity_(in_combinations)"],
"Christian_hope": ["hope","cross,Christianity_(in_combinations)"],
"Christian_love": ["love,affection","cross,Christianity_(in_combinations)"],
"Christianity": ["religion_(God_based)","cross,Christianity_(in_combinations)"],
"Christmas": ["birthday","cross,Christianity_(in_combinations)"],
"Christmas_Eve_(day)": ["day","before,in_front_of,prior_to","birth","cross,Christianity_(in_combinations)"],
"Christmas_Eve_(evening)": ["evening","before,in_front_of,prior_to","birth","cross,Christianity_(in_combinations)"],
"Christmas_pudding": ["pudding,cream","birth","cross,Christianity_(in_combinations)"],
"Christmas_song,carol": ["song","birth","cross,Christianity_(in_combinations)"],
"Christmas_tree": ["tree","birth","cross,Christianity_(in_combinations)"],
"chromosome": ["fiber,fibre,fibril,filament,strand","atom","spiral"],
"Chronic_Fatigue_Syndrome": ["illness,disease,sickness_(sick_person)","rest,comfort","dependency","intensity","intensity"],
"Chumash,Pentateuch": ["five_(digit),5","book","Torah"],
"church,mosque,temple": ["house,building,dwelling,residence","God"],
"church_ruin,temple_ruin,wreck,wreckage_(church,temple,mosque)_(1)": ["ruin,wreck,wreckage_(building)_(1)","God"],
"church_ruin,temple_ruin,wreck,wreckage_(church,temple,mosque)_(2)": ["church,mosque,temple","deletion,cancellation,destruction"],
"cider": ["alcoholic_drink,alcoholic_beverage,liquor","apple"],
"cinnamon": ["flavouring,condiment,seasoning","bark"],
"cinnamon_(powder)": ["flavouring,seasoning_(powder)","bark"],
"cipher": ["alphabet,letters_(lowercase)","secret"],
"circle_(shape)": ["shape,form","sun"],
"circulatory_system": ["generalization","organ,inner_organ,inner_body_part","rotation,circulation,orbit,lap,circle,round"],
"circumcision": ["subtraction,loss","foreskin"],
"circumcision_ceremony": ["religious_ceremony_(God_based)","circumcision"],
"circus": ["exhibition_hall,showplace","cloth,fabric,material,textile,net"],
"city,metropolis": ["group_of,much_of,many_of,quantity_of","town,city_(small)"],
"city_tour": ["tour,sightseeing","village"],
"civil_engineer": ["designer,planner","bridge,overpass"],
"clarinet,reed_instrument_(1)": ["flute,recorder","reed"],
"clarinet,reed_instrument_(2)": ["musical_instrument_(in_combinations)","reed"],
"class": ["group_of,much_of,many_of,quantity_of","student,pupil"],
"classmate": ["peer","room","knowledge,class_(in_combinations)"],
"classroom": ["room","instruction,teaching"],
"clean": ["invisible","dot"],
"clean-(to)": ["subtraction,loss","indicator_(action)","dirt,soil"],
"clean_(OLD)": ["opposite_meaning,opposite_of,opposite","dirty,soiled"],
"cleaning_cloth": ["cloth,fabric,material,textile,net","subtraction,loss","dirt,soil"],
"cleaning_tool": ["tool,instrument","subtraction,loss","dirt,soil"],
"clear,transparent": ["clearness,clarity,transparency,transparence","indicator_(description)"],
"clearness,clarity,transparency,transparence": ["eye","through"],
"clerk": ["helper,aide,assistant,personal_assistant","business,economy,commerce,trade"],
"clerk,legal_aid": ["person,human_being,individual,human","legal_aid"],
"client,customer": ["person,human_being,individual,human","getting,acquiring,receiving","help,aid,assistance,support"],
"climate": ["generalization","weather"],
"climb-(to)": ["legs_and_feet","indicator_(action)","up,upward"],
"clinic": ["public_room","medicine,medical_practice"],
"clitoris": ["part,bit,piece,portion,part_of","genitals,sex_organs_(female)","intensity"],
"cloakroom,walk-in_closet": ["room","clothing,clothes,garment"],
"clock,timepiece": ["time","indicator_(thing)"],
"close,enclose,shut-(to)": ["enclosure","indicator_(action)"],
"closed": ["enclosure","indicator_(description)"],
"clothes_line,drying_line": ["fiber,fibre,fibril,filament,strand","dryness,drought"],
"clothing_shop": ["store,shop","clothing,clothes,garment"],
"cloudberry": ["raspberry,blackberry,compound_berry","swamp,bog,marsh"],
"cloudy": ["cloud","indicator_(description)"],
"clown": ["person,human_being,individual,human","face","colour"],
"club": ["gathering,assembly,meeting,conference","interest"],
"clue": ["information","to,toward,towards","answer,reply"],
"CNS_injury": ["break,fracture,damage","central_nervous_system,CNS"],
"coat,jacket,jumper,sweater": ["clothing,clothes,garment","over,above,superior"],
"cockerel,rooster": ["chicken_(bird)","activity,male_gender_(in_combinations)"],
"coconut": ["fruit","palm"],
"code,password": ["number","secret"],
"coffee": ["drink,beverage","bean"],
"coin": ["disc,disk","money,cash"],
"cold": ["coldness,cold","indicator_(description)"],
"cold,common_cold": ["illness,disease,sickness_(sick_person)","water,fluid,liquid","nose"],
"cold_(opposite_hot)": ["opposite_meaning,opposite_of,opposite","hot_(temperature)"],
"collar": ["part,bit,piece,portion,part_of","clothing,clothes,garment","neck_(body)"],
"collarbone,clavicle": ["bone","shoulder","before,in_front_of,prior_to"],
"colleague": ["peer","work,employment,job"],
"collection,pile,tussock_(etc)": ["group_of,much_of,many_of,quantity_of","attachment,appendix,annex"],
"coloring_book": ["book","crayon,coloured_pencil,marker"],
"comb-(to)": ["comb","indicator_(action)"],
"combine,connect,link-(to)": ["combination,connection","indicator_(action)"],
"combine_(harvester)": ["machine,appliance,engine,motor","knife,sword","grain,cereal"],
"come,approach-(to)": ["approach","indicator_(action)"],
"comedy": ["play_(theater)","up,upward"],
"comfort,console-(to)": ["giving,gift","indicator_(action)","peace,peace_of_mind,serenity"],
"comfortable,restful": ["rest,comfort","indicator_(description)"],
"command,order-(to)": ["support_(oral)","indicator_(action)","activity,male_gender_(in_combinations)"],
"common,mutual,shared": ["holding","indicator_(description)","attachment,appendix,annex"],
"communicate-(to)": ["communication","indicator_(action)"],
"communication": ["exchange,substitution","meaning,sense,significance"],
"communication_impaired": ["communication_impairment","indicator_(description)"],
"communication_impairment": ["limit(s),limitation,restriction","communication"],
"communication_satellite": ["satellite","exchange,substitution"],
"communication_therapist": ["therapist","communication"],
"community_centre,town_hall,village_hall": ["house,building,dwelling,residence","gathering,assembly,meeting,conference"],
"commuter_train": ["train","back_and_forth,backward_and_forward,to_and_fro"],
"compare-(to)": ["observation","indicator_(action)","same,equal,equality"],
"compartment": ["room","train"],
"compass": ["gauge,gage,meter","north"],
"compass_(drawing)": ["tool,instrument","circle_(shape)"],
"compete,race-(to)": ["race,competition,contest","indicator_(action)"],
"composer": ["person,human_being,individual,human","tune,melody"],
"compost": ["mixture","change,alteration,conversion","earth,ground,land"],
"computer": ["machine,appliance,engine,motor","digits_(computer)"],
"computer_(OLD)": ["machine,appliance,engine,motor","mind,intellect,reason"],
"computer_case": ["enclosure","computer"],
"computer_game_(OLD)": ["software,computer_program,application,app","play,game_(in_combinations)"],
"computer_peripheral": ["tool,instrument","computer"],
"computer_screen,monitor": ["enclosure","eye","digits_(computer)"],
"concert": ["activity,male_gender_(in_combinations)","music"],
"concert_hall": ["house,building,dwelling,residence","music"],
"concrete,cement": ["stone_(material)","making,production,fashioning"],
"condense-(to)": ["condensation","indicator_(action)"],
"condom": ["barrier_(contraceptive)","activity,male_gender_(in_combinations)"],
"conductive_education": ["education","and,also,plus,too","therapy"],
"conductor_(music)": ["leader,director,guide_(1)","musical_note,music_(in_combinations)"],
"conductor_(music)_(OLD)": ["leader,director,guide_(2)","musical_note,music_(in_combinations)"],
"conductor_(teacher,therapist)": ["person,human_being,individual,human","conductive_education"],
"cone,conifer_cone,strobilus": ["fruit","evergreen_tree,spruce,fir,fir_tree"],
"confess-(to)": ["mouth","indicator_(action)","guilt"],
"confirmation": ["religious_ceremony_(God_based)","knowledge,class_(in_combinations)"],
"confusion_(feeling)": ["feeling,emotion,sensation","mixture"],
"confusion_(mental)": ["mind,intellect,reason","mixture"],
"congratulate-(to)": ["congratulations,best_of_luck,mazel_tov","indicator_(action)"],
"congratulations,best_of_luck,mazel_tov": ["intensity","luck,fortune"],
"conjure,turn_to,transform-(to)": ["wand","indicator_(action)"],
"connection_(computer)": ["into","digits_(computer)"],
"connector,interface_box": ["connection_(computer)","indicator_(thing)"],
"consciousness,awareness": ["mind,intellect,reason","activity,male_gender_(in_combinations)"],
"considerate,thoughtful": ["consideration,thoughtfulness","indicator_(description)"],
"constellation_of_stars": ["group_of,much_of,many_of,quantity_of","star"],
"constipation_(1)": ["buttocks,bottom,bum,rear,ass","end,arrival,stop"],
"constipation_(2)": ["illness,disease,sickness_(sick_person)","constipation_(1)"],
"constitution": ["plan,design,method,system","country,state"],
"constructional_blocks,lego_(etc)": ["block,brick","attachment,appendix,annex"],
"constructional_toy": ["toy_(in_combinations)","structure,construction"],
"contact_sports": ["sport","fight,combat"],
"continent": ["part,bit,piece,portion,part_of","earth,globe,world"],
"continental_drift": ["continent","back_and_forth,backward_and_forward,to_and_fro"],
"continue,pass-(to)": ["continuance,continuation","indicator_(action)"],
"contrabassoon,double_bassoon_(1)": ["bassoon_(1)","bass"],
"contrabassoon,double_bassoon_(2)": ["oboe_(2)","bass"],
"contrast-(to)": ["observation","indicator_(action)","different,other,difference"],
"control": ["leadership,guidance","limit(s),limitation,restriction"],
"control_(OLD)": ["leadership,guidance","limit(s),limitation_(OLD)"],
"control_oneself-(to)": ["self-control","indicator_(action)"],
"control_tower": ["tower","airplane,aeroplane,plane"],
"conversion_(belief)": ["change,alteration,conversion","belief"],
"convert_(belief)-(to)": ["conversion_(belief)","indicator_(action)"],
"cook,chef": ["person,human_being,individual,human","cooking,cookery,preparation_(general)"],
"cook-(to)": ["cooking,cookery,preparation_(hot_food)","indicator_(action)"],
"cookbook,cookery_book": ["book","cooking,cookery,preparation_(general)"],
"cookie,biscuit": ["disc,disk","taste","up,upward"],
"cookie_jar,biscuit_tin": ["can,tin,jar","cookie,biscuit"],
"cooking,cookery,preparation_(general)": ["making,production,fashioning","food"],
"cooking,cookery,preparation_(hot_food)": ["fire","food"],
"cooking_vessel,pots_and_pans": ["generalization","pot,kettle,boiler"],
"cool,chilly": ["cold","littleness,smallness"],
"cool,chilly_(opposite_warm)": ["opposite_meaning,opposite_of,opposite","warm"],
"copier,photocopier": ["machine,appliance,engine,motor","repetition,copying,duplication,replication","paper,card,page"],
"copper": ["metal_bar","pot,pan","past"],
"copy,duplicate": ["repetition,copying,duplication,replication","indicator_(thing)"],
"coral": ["water_creature","plant"],
"coral_reef": ["group_of,much_of,many_of,quantity_of","group_of,much_of,many_of,quantity_of","coral"],
"cordless_phone": ["telephone","back_and_forth,backward_and_forward,to_and_fro"],
"core_activity": ["activity,male_gender_(in_combinations)","middle,centre"],
"corkscrew": ["kitchen_tool,utensil","screw"],
"corn_syrup": ["flavouring,seasoning_(liquid)","corn"],
"cornea": ["protection,shelter","eye"],
"cornmeal": ["powder,dust","corn"],
"corpse,cadaver,carrion": ["body,trunk","death"],
"correct,accurate,good,right": ["correctness,rightness","indicator_(description)"],
"correctness,rightness": ["correct_thinking","intensity"],
"corridor,hall": ["room","length,longness"],
"corruption": ["must_(a)","control","selfishness,egoism"],
"corruption_(OLD)": ["must_(a)","control_(OLD)","selfishness,egoism"],
"cost,price": ["money,cash","for_(in_exchange_for)","thing,object"],
"cost-(to)": ["cost,price","indicator_(action)"],
"costume,disguise": ["clothing,clothes,garment","fantasy,phantasy,imagination,illusion"],
"cottage_cheese": ["cheese","lump(s)"],
"cotton": ["material,raw_material,stuff","flower,bloom,blossom","cloth,fabric,material,textile,net"],
"cotton_fabric": ["cloth,fabric,material,textile,net","flower,bloom,blossom"],
"cough-(to)": ["mouth","indicator_(action)","wind","intensity"],
"counsellor,adviser": ["person,human_being,individual,human","advice,counsel,recommendation"],
"count": ["measurement,measure","number"],
"count-(to)": ["number","indicator_(action)"],
"country_music": ["music","countryside,country,nature"],
"coup,coup_d'etat": ["coup,hijack,takeover","country,state"],
"coup,hijack,takeover": ["theft","leadership,guidance"],
"couple_(two_persons)": ["person,human_being,individual,human","person,human_being,individual,human"],
"courage": ["feeling,emotion,sensation","strength"],
"court,courthouse": ["house,building,dwelling,residence","judgement,law_(in_combinations)"],
"court,courtroom": ["public_room","judgement,law_(in_combinations)"],
"court,field": ["place,area,location,space","sport"],
"court,field_(OLD)": ["place,area,location,space","sport_(OLD)"],
"cousin": ["niece_or_nephew","parent"],
"cousin_(female)": ["niece","parent"],
"cousin_(male)": ["nephew","parent"],
"covered,hidden": ["man-made,produced","minus,no,without","eye"],
"cow": ["animal_(bovine,ovine),bovid,bovine","female_(gender)"],
"coward": ["person,human_being,individual,human","cowardice"],
"cowardice": ["minus,no,without","courage"],
"cowardly": ["cowardice","indicator_(description)"],
"cowshed": ["house,building,dwelling,residence","animal_(bovine,ovine),bovid,bovine"],
"crack,gap,cleft": ["hole","thinness,narrowness"],
"craft": ["making,production,fashioning","hand"],
"cramp,spasm": ["pain,suffering","muscle"],
"cranberry": ["berry","swamp,bog,marsh"],
"crane": ["machine,appliance,engine,motor","up_and_down"],
"crash_(air),plane_crash,air_crash": ["crash_(downward)","airplane,aeroplane,plane"],
"crash_(car),car_crash": ["crash_(forward)","car,automobile,motor_vehicle"],
"crash_(downward)": ["bump,press,pressing","intensity"],
"crash_(downward)-(to)": ["crash_(downward)","indicator_(action)"],
"crash_(forward)": ["end,arrival,stop","intensity"],
"crash_(forward)-(to)": ["crash_(forward)","indicator_(action)"],
"crater": ["opening","volcano"],
"crawl-(to)": ["kneeling_(kneeling_person)","indicator_(action)","forward"],
"crayfish": ["crab,shellfish_(with_claws)","littleness,smallness"],
"crayon,coloured_pencil,marker": ["pen,pencil","colour"],
"cream": ["milk","intensity"],
"create-(to)": ["creation,nature","indicator_(action)"],
"creative": ["creation,nature","indicator_(description)"],
"creature,being": ["life","indicator_(thing)"],
"credit": ["money,cash","future"],
"credit_card": ["card","credit"],
"cremate-(to)": ["cremation","indicator_(action)"],
"cremation": ["fire","death"],
"crescent": ["shape,form","moon"],
"crew,staff": ["group_of,much_of,many_of,quantity_of","worker"],
"crew_(boat)": ["crew,staff","boat,ship"],
"crew_(plane)": ["crew,staff","airplane,aeroplane,plane"],
"cricket": ["ball_sports","wicket"],
"crime": ["activity,male_gender_(in_combinations)","minus,no,without","law-(a)"],
"criminal_(person)": ["person,human_being,individual,human","minus,no,without","law-(a)"],
"criminality,crime": ["action,act,deed","minus,no,without","law-(a)"],
"critic,evaluator": ["person,human_being,individual,human","evaluation,value"],
"croak_(frog)-(to)": ["mouth","indicator_(action)","frog,toad"],
"crochet-(to)": ["making,production,fashioning","indicator_(action)","cloth,fabric,material,textile,net","hook,hanger"],
"croquet_(activity)": ["activity,male_gender_(in_combinations)","ball","hammer,gavel,mallet"],
"croquet_(sport)": ["ball_sports","hammer,gavel,mallet"],
"cross-(to)": ["across","indicator_(action)"],
"cross_(a)": ["cross,Christianity_(in_combinations)","indicator_(thing)"],
"cross_country_skiing": ["skiing_(sport)","forward"],
"crown_(currency)": ["money,cash","crown"],
"crown_prince": ["prince","future"],
"crown_princess": ["princess","future"],
"cruelty,mercilessness,ruthlessness": ["feeling,emotion,sensation","knife,sword"],
"cruise_ship": ["boat,ship","traveller"],
"crush,squeeze-(to)": ["compression,compressing,squeezing","indicator_(action)"],
"crutches": ["tool,instrument","indicator_(plural)","medicine,medical_practice","legs_and_feet"],
"cry,weep-(to)": ["eye","indicator_(action)","rain"],
"cry_out,call-(to)": ["mouth","indicator_(action)","intensity"],
"cucumber": ["vegetable_(oval-shaped)","length,longness"],
"cuddle-(to)": ["hug,squeeze,embrace","indicator_(action)","feeling,emotion,sensation"],
"culture": ["view_of_life","group_(people)"],
"cupcake,fancy_cake,pastry": ["muffin,bun_(sweet)","intensity"],
"cure-(to)": ["deletion,cancellation,destruction","indicator_(action)","illness,disease,sickness_(sick_person)"],
"curiosity,curiousness,inquisitiveness,wonder": ["wish,desire","knowledge,class_(in_combinations)"],
"curious,inquisitive": ["curiosity,curiousness,inquisitiveness,wonder","indicator_(description)"],
"curling": ["discus","broom","ice"],
"currency": ["money,cash","country,state"],
"current": ["now","indicator_(description)"],