-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefs.txt
6405 lines (6405 loc) · 372 KB
/
defs.txt
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
x1 bacru x2 : x1 utters x2.
x1 bacru x2 : x1 says x2.
x1 bacru x2 : x1 phonates x2.
x1 bacru x2 : x1 speaks x2.
x1 badna x2 : x1 is a banana of species x2.
x1 badna x2 : x1 is a banana of breed x2.
x1 badna x2 : x1 is a plantain of species x2.
x1 badna x2 : x1 is a plantain of breed x2.
x1 badri x2 : x1 is sad about x2.
x1 badri x2 : x1 is depressed about x2.
x1 badri x2 : x1 is dejected about x2.
x1 bajra x4 x3 x2 : x1 runs on surface x2 using limbs x3 with gait x4.
x1 bakfu x3 x2 : x1 is a bundle containing x2, held together by x3.
x1 bakfu x3 x2 : x1 is a package containing x2, held together by x3.
x1 bakfu x3 x2 : x1 is a cluster containing x2, held together by x3.
x1 bakfu x3 x2 : x1 is a clump containing x2, held together by x3.
x1 bakfu x3 x2 : x1 is a pack containing x2, held together by x3.
x1 bakni x2 : x1 is a cow of species x2.
x1 bakni x2 : x1 is a cow of breed x2.
x1 bakni x2 : x1 is a cattle of species x2.
x1 bakni x2 : x1 is a cattle of breed x2.
x1 bakni x2 : x1 is a kine of species x2.
x1 bakni x2 : x1 is a kine of breed x2.
x1 bakni x2 : x1 is a ox of species x2.
x1 bakni x2 : x1 is a ox of breed x2.
x1 bakri x3 x2 : x1 is a quantity of chalk from source x2 in form x3.
x1 bakri x3 x2 : x1 contains chalk from source x2 in form x3.
x1 bakri x3 x2 : x1 is made of chalk from source x2 in form x3.
x1 baktu x3 x2 : x1 is a bucket solid, wide-topped container of contents x2, made of material x3.
x1 baktu x3 x2 : x1 is a pail solid, wide-topped container of contents x2, made of material x3.
x1 baktu x3 x2 : x1 is a can solid, wide-topped container of contents x2, made of material x3.
x1 baktu x3 x2 : x1 is a deep, solid, wide-topped container of contents x2, made of material x3.
x1 balji x2 : x1 is a bulb of plant x2
x1 balji x2 : x1 is a bulb of species x2
x1 balni x2 : x1 is a balcony of building x2.
x1 balni x2 : x1 is a balcony of structure x2.
x1 balni x2 : x1 is a overhang of building x2.
x1 balni x2 : x1 is a overhang of structure x2.
x1 balni x2 : x1 is a ledge of building x2.
x1 balni x2 : x1 is a ledge of structure x2.
x1 balni x2 : x1 is a shelf of building x2.
x1 balni x2 : x1 is a shelf of structure x2.
x1 balre x2 : x1 is a blade of tool x2.
x1 balre x2 : x1 is a blade of weapon x2.
x1 balvi x2 : x1 is in the future of x2 in time sequence
x1 balvi x2 : x1 is later than x2 in time sequence
x1 balvi x2 : x1 is after x2 in time sequence
x1 bancu x4 x3 x2 : x1 exceeds x2 from x3 in property x4.
x1 bancu x4 x3 x2 : x1 exceeds x2 from x3 in amount x4.
x1 bancu x4 x3 x2 : x1 is beyond limit x2 from x3 in property x4.
x1 bancu x4 x3 x2 : x1 is beyond limit x2 from x3 in amount x4.
x1 bancu x4 x3 x2 : x1 boundary x2 from x3 in property x4.
x1 bancu x4 x3 x2 : x1 boundary x2 from x3 in amount x4.
x1 bandu x3 x2 : x1 defends x2 from threat x3.
x1 bandu x3 x2 : x1 defends x2 from peril x3.
x1 bandu x3 x2 : x1 defends x2 from potential x3.
x1 bandu x3 x2 : x1 protects x2 from threat x3.
x1 bandu x3 x2 : x1 protects x2 from peril x3.
x1 bandu x3 x2 : x1 protects x2 from potential x3.
x1 banfi x2 : x1 is an amphibian of species x2.
x1 banfi x2 : x1 is an amphibian of breed x2.
x1 bangu x3 x2 : x1 is a language used by x2 to express x3.
x1 bangu x3 x2 : x1 is a language used by x2 to communicate x3.
x1 bangu x3 x2 : x1 is a dialect used by x2 to express x3.
x1 bangu x3 x2 : x1 is a dialect used by x2 to communicate x3.
x1 bangu x3 x2 : x1 is the language used by x2 to express x3.
x1 bangu x3 x2 : x1 is the language used by x2 to communicate x3.
x1 bangu x3 x2 : x1 is the dialect used by x2 to express x3.
x1 bangu x3 x2 : x1 is the dialect used by x2 to communicate x3.
x1 banli x3 x2 : x1 is great in property x2 by standard x3.
x1 banli x3 x2 : x1 is grand in property x2 by standard x3.
x1 banro x3 x2 : x1 grows to size form x2 from x3.
x1 banro x3 x2 : x1 grows to into form x2 from x3.
x1 banro x3 x2 : x1 expands to size form x2 from x3.
x1 banro x3 x2 : x1 expands to into form x2 from x3.
x1 banxa x3 x2 : x1 is a bank owned by x2 for banking function x3.
x1 banzu x3 x2 : x1 suffices for purpose x2 under conditions x3.
x1 banzu x3 x2 : x1 is enough for purpose x2 under conditions x3.
x1 banzu x3 x2 : x1 is sufficient for purpose x2 under conditions x3.
x1 bapli x2 : x1 forces event x2 to occur
x1 bapli x2 : x1 compels event x2 to occur
x1 barda x3 x2 : x1 is big in property x2 as compared with standard x3.
x1 barda x3 x2 : x1 is big in property x2 as compared with norm x3.
x1 barda x3 x2 : x1 is big in dimension x2 as compared with standard x3.
x1 barda x3 x2 : x1 is big in dimension x2 as compared with norm x3.
x1 barda x3 x2 : x1 is large in property x2 as compared with standard x3.
x1 barda x3 x2 : x1 is large in property x2 as compared with norm x3.
x1 barda x3 x2 : x1 is large in dimension x2 as compared with standard x3.
x1 barda x3 x2 : x1 is large in dimension x2 as compared with norm x3.
x1 bargu x3 x2 : x1 arches over x2 and is made of x3
x1 bargu x3 x2 : x1 arches around x2 and is made of x3
x1 bargu x3 x2 : x1 curves over x2 and is made of x3
x1 bargu x3 x2 : x1 curves around x2 and is made of x3
x1 barja x3 x2 : x1 is a tavern serving x2 to audience x3.
x1 barja x3 x2 : x1 is a tavern serving x2 to patrons x3.
x1 barja x3 x2 : x1 is a bar serving x2 to audience x3.
x1 barja x3 x2 : x1 is a bar serving x2 to patrons x3.
x1 barja x3 x2 : x1 is a pub serving x2 to audience x3.
x1 barja x3 x2 : x1 is a pub serving x2 to patrons x3.
x1 barna x3 x2 : x1 is a mark on x2 of material x3.
x1 barna x3 x2 : x1 is a spot on x2 of material x3.
x1 bartu x2 : x1 is on the outside of x2
x1 basna x3 x2 : x1 emphasizes x2 by x3.
x1 basna x3 x2 : x1 accentuates x2 by x3.
x1 basna x3 x2 : x1 gives emphasis to x2 by x3.
x1 basti x3 x2 : x1 replaces x2 in circumstance x3
x1 basti x3 x2 : x1 substitutes for x2 in circumstance x3
x1 batci x4 x3 x2 : x1 bites x2 on specific locus x3 with x4.
x1 batci x4 x3 x2 : x1 bites x2 at specific locus x3 with x4.
x1 batci x4 x3 x2 : x1 pinches x2 on specific locus x3 with x4.
x1 batci x4 x3 x2 : x1 pinches x2 at specific locus x3 with x4.
x1 batke x4 x3 x2 : x1 is a button on item x2, with purpose x3, made of material x4.
x1 batke x4 x3 x2 : x1 is a button for item x2, with purpose x3, made of material x4.
x1 batke x4 x3 x2 : x1 is a knob on item x2, with purpose x3, made of material x4.
x1 batke x4 x3 x2 : x1 is a knob for item x2, with purpose x3, made of material x4.
x1 bavmi x2 : x1 is a quantity of barley of species x2.
x1 bavmi x2 : x1 is a quantity of barley of strain x2.
x1 baxso x2 : x1 reflects Malay-Indonesian common language in aspect x2.
x1 baxso x2 : x1 reflects Malay-Indonesian common culture in aspect x2.
x1 bebna x2 : x1 is foolish in event x2
x1 bebna x2 : x1 is foolish in action x2
x1 bebna x2 : x1 is foolish in property x2
x1 bebna x2 : x1 is silly in event x2
x1 bebna x2 : x1 is silly in action x2
x1 bebna x2 : x1 is silly in property x2
x1 bemro x2 : x1 reflects North American culture in aspect x2.
x1 bemro x2 : x1 reflects North American nationality in aspect x2.
x1 bemro x2 : x1 reflects North American geography in aspect x2.
x1 bende x4 x3 x2 : x1 is a crew of persons x2 directed by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a crew of persons x2 led by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a team of persons x2 directed by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a team of persons x2 led by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a gang of persons x2 directed by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a gang of persons x2 led by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a squad of persons x2 directed by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a squad of persons x2 led by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a band of persons x2 directed by x3 organized for purpose x4.
x1 bende x4 x3 x2 : x1 is a band of persons x2 led by x3 organized for purpose x4.
x1 bengo x2 : x1 reflects Bengali culture in aspect x2.
x1 bengo x2 : x1 reflects Bengali nationality in aspect x2.
x1 bengo x2 : x1 reflects Bengali language in aspect x2.
x1 bengo x2 : x1 reflects Bangladesh culture in aspect x2.
x1 bengo x2 : x1 reflects Bangladesh nationality in aspect x2.
x1 bengo x2 : x1 reflects Bangladesh language in aspect x2.
x1 benji x5 x4 x3 x2 : x1 transfers x2 to receiver x3 from transmitter x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 transfers x2 to receiver x3 from transmitter x4 via medium x5.
x1 benji x5 x4 x3 x2 : x1 transfers x2 to receiver x3 from origin x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 transfers x2 to receiver x3 from origin x4 via medium x5.
x1 benji x5 x4 x3 x2 : x1 sends x2 to receiver x3 from transmitter x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 sends x2 to receiver x3 from transmitter x4 via medium x5.
x1 benji x5 x4 x3 x2 : x1 sends x2 to receiver x3 from origin x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 sends x2 to receiver x3 from origin x4 via medium x5.
x1 benji x5 x4 x3 x2 : x1 transmits x2 to receiver x3 from transmitter x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 transmits x2 to receiver x3 from transmitter x4 via medium x5.
x1 benji x5 x4 x3 x2 : x1 transmits x2 to receiver x3 from origin x4 via means x5.
x1 benji x5 x4 x3 x2 : x1 transmits x2 to receiver x3 from origin x4 via medium x5.
x1 bersa x2 : x1 is a son of mother x2.
x1 bersa x2 : x1 is a son of father x2.
x1 bersa x2 : x1 is a son of parents x2.
x1 berti x3 x2 : x1 is to the north side of x2 according to frame of reference x3.
x1 berti x3 x2 : x1 is to the northern side of x2 according to frame of reference x3.
x1 besna x2 : x1 is a brain of x2
x1 besna x2 : x1 is the brain of x2
x1 betfu x2 : x1 is a abdomen trunk of x2
x1 betfu x2 : x1 is a belly trunk of x2
x1 betfu x2 : x1 is a lower trunk of x2
x1 betfu x2 : x1 is the abdomen trunk of x2
x1 betfu x2 : x1 is the belly trunk of x2
x1 betfu x2 : x1 is the lower trunk of x2
x1 betri x2 : x1 is a tragedy for x2.
x1 betri x2 : x1 is a disaster for x2.
x1 betri x2 : x1 is a tragic for x2.
x1 bevri x5 x4 x3 x2 : x1 carries cargo x2 to x3 from x4 over path x5
x1 bevri x5 x4 x3 x2 : x1 hauls cargo x2 to x3 from x4 over path x5
x1 bevri x5 x4 x3 x2 : x1 bears cargo x2 to x3 from x4 over path x5
x1 bevri x5 x4 x3 x2 : x1 transports cargo x2 to x3 from x4 over path x5
x1 bidju x2 : x1 is a bead of material x2.
x1 bidju x2 : x1 is a pebble of material x2.
x1 bifce x2 : x1 is a bee of species x2.
x1 bifce x2 : x1 is a bee of breed x2.
x1 bifce x2 : x1 is a wasp of species x2.
x1 bifce x2 : x1 is a wasp of breed x2.
x1 bifce x2 : x1 is a hornet of species x2.
x1 bifce x2 : x1 is a hornet of breed x2.
x1 bikla : x1 whips.
x1 bikla : x1 lashes.
x1 bikla : x1 snaps.
x1 bilga x3 x2 : x1 is bound do x2 in standard x3
x1 bilga x3 x2 : x1 is bound do x2 in agreement x3
x1 bilga x3 x2 : x1 is bound do x2 by standard x3
x1 bilga x3 x2 : x1 is bound do x2 by agreement x3
x1 bilga x3 x2 : x1 is bound be x2 in standard x3
x1 bilga x3 x2 : x1 is bound be x2 in agreement x3
x1 bilga x3 x2 : x1 is bound be x2 by standard x3
x1 bilga x3 x2 : x1 is bound be x2 by agreement x3
x1 bilga x3 x2 : x1 is obliged to do x2 in standard x3
x1 bilga x3 x2 : x1 is obliged to do x2 in agreement x3
x1 bilga x3 x2 : x1 is obliged to do x2 by standard x3
x1 bilga x3 x2 : x1 is obliged to do x2 by agreement x3
x1 bilga x3 x2 : x1 is obliged to be x2 in standard x3
x1 bilga x3 x2 : x1 is obliged to be x2 in agreement x3
x1 bilga x3 x2 : x1 is obliged to be x2 by standard x3
x1 bilga x3 x2 : x1 is obliged to be x2 by agreement x3
x1 bilga x3 x2 : x1 is has the duty to do x2 in standard x3
x1 bilga x3 x2 : x1 is has the duty to do x2 in agreement x3
x1 bilga x3 x2 : x1 is has the duty to do x2 by standard x3
x1 bilga x3 x2 : x1 is has the duty to do x2 by agreement x3
x1 bilga x3 x2 : x1 is has the duty to be x2 in standard x3
x1 bilga x3 x2 : x1 is has the duty to be x2 in agreement x3
x1 bilga x3 x2 : x1 is has the duty to be x2 by standard x3
x1 bilga x3 x2 : x1 is has the duty to be x2 by agreement x3
x1 bilma x3 x2 : x1 is ill with symptoms x2 from disease x3.
x1 bilma x3 x2 : x1 is sick with symptoms x2 from disease x3.
x1 bilma x3 x2 : x1 is diseased with symptoms x2 from disease x3.
x1 bilni x3 x2 : x1 is military by system x2 for purpose x3.
x1 bilni x3 x2 : x1 is regimented by system x2 for purpose x3.
x1 bilni x3 x2 : x1 is is strongly organized by system x2 for purpose x3.
x1 bilni x3 x2 : x1 is prepared by system x2 for purpose x3.
x1 bindo x2 : x1 reflects Indonesian culture in aspect x2.
x1 bindo x2 : x1 reflects Indonesian nationality in aspect x2.
x1 bindo x2 : x1 reflects Indonesian language in aspect x2.
x1 binra x4 x3 x2 : x1 insures x2 against peril x3 providing benefit x4.
x1 binra x4 x3 x2 : x1 indemnifies x2 against peril x3 providing benefit x4.
x1 binxo x3 x2 : x1 becomes into x2 under conditions x3.
x1 binxo x3 x2 : x1 changes into x2 under conditions x3.
x1 binxo x3 x2 : x1 converts into x2 under conditions x3.
x1 binxo x3 x2 : x1 transforms into x2 under conditions x3.
x1 birje x2 : x1 is made of beer brewed from x2.
x1 birje x2 : x1 is made of ale brewed from x2.
x1 birje x2 : x1 is made of brew brewed from x2.
x1 birje x2 : x1 contains beer brewed from x2.
x1 birje x2 : x1 contains ale brewed from x2.
x1 birje x2 : x1 contains brew brewed from x2.
x1 birje x2 : x1 is a amount of beer brewed from x2.
x1 birje x2 : x1 is a amount of ale brewed from x2.
x1 birje x2 : x1 is a amount of brew brewed from x2.
x1 birka x2 : x1 is a arm of x2
x1 birka x2 : x1 is the arm of x2
x1 birti x2 : x1 is certain that x2 is true.
x1 birti x2 : x1 is sure that x2 is true.
x1 birti x2 : x1 is positive that x2 is true.
x1 birti x2 : x1 is convinced that x2 is true.
x1 bisli x2 : x1 is a quantity of ice of composition x2.
x1 bisli x2 : x1 is a quantity of ice of material x2.
x1 bisli x2 : x1 is made of ice of composition x2.
x1 bisli x2 : x1 is made of ice of material x2.
x1 bisli x2 : x1 contains ice of composition x2.
x1 bisli x2 : x1 contains ice of material x2.
x1 bitmu x4 x3 x2 : x1 is a wall separating x2 and x3 of structure x4.
x1 bitmu x4 x3 x2 : x1 is a wall separating x2 and x3 in structure x4.
x1 bitmu x4 x3 x2 : x1 is a fence separating x2 and x3 of structure x4.
x1 bitmu x4 x3 x2 : x1 is a fence separating x2 and x3 in structure x4.
x1 blabi : x1 is white colored.
x1 blabi : x1 is very-light colored.
x1 blaci x2 : x1 is a quantity of glass of composition including x2.
x1 blaci x2 : x1 is made of glass of composition including x2.
x1 blaci x2 : x1 contains glass of composition including x2.
x1 blanu : x1 is blue.
x1 bliku x3 x2 : x1 is a block of material x2, surfaces x3.
x1 bliku x3 x2 : x1 is a block of material x2, sides x3.
x1 bloti x3 x2 : x1 is a boat for carrying x2, propelled by x3.
x1 bloti x3 x2 : x1 is a ship for carrying x2, propelled by x3.
x1 bloti x3 x2 : x1 is a vessel for carrying x2, propelled by x3.
x1 bolci x2 : x1 is a ball of material x2
x1 bolci x2 : x1 is a sphere of material x2
x1 bolci x2 : x1 is a orb of material x2
x1 bolci x2 : x1 is a globe of material x2
x1 bongu x3 x2 : x1 is a bone , performing function x2 in body of x3
x1 bongu x3 x2 : x1 is a ivory , performing function x2 in body of x3
x1 bongu x3 x2 : x1 is the bone , performing function x2 in body of x3
x1 bongu x3 x2 : x1 is the ivory , performing function x2 in body of x3
x1 botpi x4 x3 x2 : x1 is a bottle container for x2, made of material x3 with lid x4.
x1 botpi x4 x3 x2 : x1 is a jar container for x2, made of material x3 with lid x4.
x1 botpi x4 x3 x2 : x1 is a urn container for x2, made of material x3 with lid x4.
x1 botpi x4 x3 x2 : x1 is a flask container for x2, made of material x3 with lid x4.
x1 botpi x4 x3 x2 : x1 is a closable container for x2, made of material x3 with lid x4.
x1 boxfo x2 : x1 is a sheet of material x2.
x1 boxfo x2 : x1 is a foil of material x2.
x1 boxfo x2 : x1 is a blanket of material x2.
x1 boxna x5 x4 x3 x2 : x1 is a wave in medium x2, wave-form x3, wave-length x4, frequency x5.
x1 bradi x3 x2 : x1 is an enemy of x2 in struggle x3.
x1 bradi x3 x2 : x1 is an opponent of x2 in struggle x3.
x1 bradi x3 x2 : x1 is an adversary of x2 in struggle x3.
x1 bradi x3 x2 : x1 is an foe of x2 in struggle x3.
x1 bratu x2 : x1 is hail of material including x2.
x1 bratu x2 : x1 is hail of composition including x2.
x1 bratu x2 : x1 is sleet of material including x2.
x1 bratu x2 : x1 is sleet of composition including x2.
x1 bratu x2 : x1 is freezing rain of material including x2.
x1 bratu x2 : x1 is freezing rain of composition including x2.
x1 bratu x2 : x1 is solid precipitation of material including x2.
x1 bratu x2 : x1 is solid precipitation of composition including x2.
x1 brazo x2 : x1 reflects Brazilian culture in aspect x2.
x1 brazo x2 : x1 reflects Brazilian nationality in aspect x2.
x1 brazo x2 : x1 reflects Brazilian language in aspect x2.
x1 bredi x2 : x1 is ready for x2.
x1 bredi x2 : x1 is prepared for x2.
x1 bridi x3 x2 : x1 is a predicate relationship with relation x2 among arguments x3.
x1 brife x3 x2 : x1 is a breeze from direction x2 with speed x3
x1 brife x3 x2 : x1 is a wind from direction x2 with speed x3
x1 brife x3 x2 : x1 is a gale from direction x2 with speed x3
x1 briju x3 x2 : x1 is a office of worker x2 at location x3.
x1 briju x3 x2 : x1 is a bureau of worker x2 at location x3.
x1 briju x3 x2 : x1 is a work-place of worker x2 at location x3.
x1 briju x3 x2 : x1 is an office of worker x2 at location x3.
x1 briju x3 x2 : x1 is an bureau of worker x2 at location x3.
x1 briju x3 x2 : x1 is an work-place of worker x2 at location x3.
x1 brito x2 : x1 reflects British Kingdom culture in aspect x2.
x1 brito x2 : x1 reflects British Kingdom nationality in aspect x2.
x1 brito x2 : x1 reflects United Kingdom culture in aspect x2.
x1 brito x2 : x1 reflects United Kingdom nationality in aspect x2.
x1 broda : 1st assignable variable predicate.
x1 brode : 2nd assignable variable predicate.
x1 brodi : 3rd assignable variable predicate.
x1 brodo : 4th assignable variable predicate.
x1 brodu : 5th assignable variable predicate.
x1 bruna x3 x2 : x1 is brother of x2 by bond x3
x1 bruna x3 x2 : x1 is brother of x2 by tie x3
x1 bruna x3 x2 : x1 is brother of x2 by standard x3
x1 bruna x3 x2 : x1 is brother of x2 by parent x3
x1 bruna x3 x2 : x1 is fraternal to x2 by bond x3
x1 bruna x3 x2 : x1 is fraternal to x2 by tie x3
x1 bruna x3 x2 : x1 is fraternal to x2 by standard x3
x1 bruna x3 x2 : x1 is fraternal to x2 by parent x3
x1 budjo x2 : x1 pertains to the Buddhist culture in aspect x2.
x1 budjo x2 : x1 pertains to the Buddhist religion in aspect x2.
x1 budjo x2 : x1 pertains to the Buddhist ethos in aspect x2.
x1 bukpu x2 : x1 is an amount of cloth of type x2.
x1 bukpu x2 : x1 is an amount of cloth of material x2.
x1 bukpu x2 : x1 is an amount of fabric of type x2.
x1 bukpu x2 : x1 is an amount of fabric of material x2.
x1 bumru x2 : x1 is covered by a fog of liquid x2.
x1 bumru x2 : x1 is covered by a mist of liquid x2.
x1 bumru x2 : x1 is covered by a vapor of liquid x2.
x1 bunda x4 x3 x2 : x1 is x2 local weight unit by standard x3 with subunits x4.
x1 bunre : x1 is brown.
x1 bunre : x1 is tan.
x1 burcu x3 x2 : x1 is a brush for purpose x2 with bristles x3.
x1 burna x2 : x1 is embarrassed about conditions x2.
x1 burna x2 : x1 is embarrassed under conditions x2.
x1 burna x2 : x1 is disconcerted about conditions x2.
x1 burna x2 : x1 is disconcerted under conditions x2.
x1 burna x2 : x1 is flustered about conditions x2.
x1 burna x2 : x1 is flustered under conditions x2.
x1 burna x2 : x1 is ill-at-ease about conditions x2.
x1 burna x2 : x1 is ill-at-ease under conditions x2.
x1 cabna x2 : x1 is current at x2 in time.
x1 cabna x2 : x1 is in the present of x2 in time.
x1 cabna x2 : x1 is during x2 in time.
x1 cabna x2 : x1 is concurrent with x2 in time.
x1 cabna x2 : x1 is simultaneous with x2 in time.
x1 cabra x3 x2 : x1 is apparatus for function x2 controlled by x3.
x1 cabra x3 x2 : x1 is mechanism for function x2 controlled by x3.
x1 cabra x3 x2 : x1 is device for function x2 controlled by x3.
x1 cabra x3 x2 : x1 is equipment for function x2 controlled by x3.
x1 cacra x3 x2 : x1 is x2 hours in duration by standard x3.
x1 cadzu x3 x2 : x1 walks on surface x2 using limbs x3.
x1 cadzu x3 x2 : x1 strides on surface x2 using limbs x3.
x1 cadzu x3 x2 : x1 paces on surface x2 using limbs x3.
x1 cafne x2 : x1 often occurs by standard x2.
x1 cafne x2 : x1 often recurs by standard x2.
x1 cafne x2 : x1 frequently occurs by standard x2.
x1 cafne x2 : x1 frequently recurs by standard x2.
x1 cafne x2 : x1 commonly occurs by standard x2.
x1 cafne x2 : x1 commonly recurs by standard x2.
x1 cafne x2 : x1 customarily occurs by standard x2.
x1 cafne x2 : x1 customarily recurs by standard x2.
x1 cakla : x1 is made of chocolate
x1 cakla : x1 is made of cocoa.
x1 cakla : x1 contains chocolate
x1 cakla : x1 contains cocoa.
x1 cakla : x1 is a quantity of chocolate
x1 cakla : x1 is a quantity of cocoa.
x1 calku x3 x2 : x1 is a shell around x2 composed of x3.
x1 calku x3 x2 : x1 is a husk around x2 composed of x3.
x1 canci x2 : x1 vanishes from location x2
x1 canci x2 : x1 disappears from location x2
x1 cando : x1 is idle
x1 cando : x1 is at rest
x1 cando : x1 is inactive.
x1 cange x4 x3 x2 : x1 is a farm at x2, farmed by x3, raising x4
x1 cange x4 x3 x2 : x1 is a farm at x2, farmed by x3, producing x4
x1 cange x4 x3 x2 : x1 is a ranch at x2, farmed by x3, raising x4
x1 cange x4 x3 x2 : x1 is a ranch at x2, farmed by x3, producing x4
x1 canja x4 x3 x2 : x1 exchanges commodity x2 for x3 with x4
x1 canja x4 x3 x2 : x1 trades commodity x2 for x3 with x4
x1 canja x4 x3 x2 : x1 barters commodity x2 for x3 with x4
x1 canko x2 : x1 is a window in wall x2.
x1 canko x2 : x1 is a window in building x2.
x1 canko x2 : x1 is a window in structure x2.
x1 canko x2 : x1 is a portal in wall x2.
x1 canko x2 : x1 is a portal in building x2.
x1 canko x2 : x1 is a portal in structure x2.
x1 canko x2 : x1 is a opening in wall x2.
x1 canko x2 : x1 is a opening in building x2.
x1 canko x2 : x1 is a opening in structure x2.
x1 canlu x2 : x1 is space occupied by x2.
x1 canlu x2 : x1 is volume occupied by x2.
x1 canlu x2 : x1 is region occupied by x2.
x1 canlu x2 : x1 is room occupied by x2.
x1 canpa x2 : x1 is a shovel for digging x2.
x1 canpa x2 : x1 is a spade for digging x2.
x1 canre x3 x2 : x1 is a quantity of sand from source x2 of composition including x3.
x1 canre x3 x2 : x1 is a quantity of grit from source x2 of composition including x3.
x1 canre x3 x2 : x1 contains sand from source x2 of composition including x3.
x1 canre x3 x2 : x1 contains grit from source x2 of composition including x3.
x1 canre x3 x2 : x1 is made of sand from source x2 of composition including x3.
x1 canre x3 x2 : x1 is made of grit from source x2 of composition including x3.
x1 canti x2 : x1 is a gut system of x2.
x1 canti x2 : x1 is a entrails system of x2.
x1 canti x2 : x1 is a intestines system of x2.
x1 canti x2 : x1 is a viscera system of x2.
x1 canti x2 : x1 is a innards system of x2.
x1 canti x2 : x1 is a digestive system of x2.
x1 canti x2 : x1 is the gut system of x2.
x1 canti x2 : x1 is the entrails system of x2.
x1 canti x2 : x1 is the intestines system of x2.
x1 canti x2 : x1 is the viscera system of x2.
x1 canti x2 : x1 is the innards system of x2.
x1 canti x2 : x1 is the digestive system of x2.
x1 carce x3 x2 : x1 is a cart for carrying x2, propelled by x3.
x1 carce x3 x2 : x1 is a carriage for carrying x2, propelled by x3.
x1 carce x3 x2 : x1 is a wagon for carrying x2, propelled by x3.
x1 carmi x3 x2 : x1 is intense in property x2 as received by observer x3.
x1 carmi x3 x2 : x1 is intense in property x2 as measured by observer x3.
x1 carmi x3 x2 : x1 is bright in property x2 as received by observer x3.
x1 carmi x3 x2 : x1 is bright in property x2 as measured by observer x3.
x1 carmi x3 x2 : x1 is saturated in property x2 as received by observer x3.
x1 carmi x3 x2 : x1 is saturated in property x2 as measured by observer x3.
x1 carmi x3 x2 : x1 is brilliant in property x2 as received by observer x3.
x1 carmi x3 x2 : x1 is brilliant in property x2 as measured by observer x3.
x1 carna x4 x3 x2 : x1 turns about vector x2 towards direction x3, turning angular distance to face point x4
x1 cartu x3 x2 : x1 is a chart of x2 showing formation x3.
x1 cartu x3 x2 : x1 is a chart of x2 showing data-points x3.
x1 cartu x3 x2 : x1 is a chart about x2 showing formation x3.
x1 cartu x3 x2 : x1 is a chart about x2 showing data-points x3.
x1 cartu x3 x2 : x1 is a diagram of x2 showing formation x3.
x1 cartu x3 x2 : x1 is a diagram of x2 showing data-points x3.
x1 cartu x3 x2 : x1 is a diagram about x2 showing formation x3.
x1 cartu x3 x2 : x1 is a diagram about x2 showing data-points x3.
x1 cartu x3 x2 : x1 is a map of x2 showing formation x3.
x1 cartu x3 x2 : x1 is a map of x2 showing data-points x3.
x1 cartu x3 x2 : x1 is a map about x2 showing formation x3.
x1 cartu x3 x2 : x1 is a map about x2 showing data-points x3.
x1 carvi x3 x2 : x1 rains to x2 from x3
x1 carvi x3 x2 : x1 showers to x2 from x3
x1 casnu x2 : x1 discuss about topic x2.
x1 casnu x2 : x1 discuss about subject x2.
x1 casnu x2 : x1 talk about topic x2.
x1 casnu x2 : x1 talk about subject x2.
x1 catke x3 x2 : x1 shoves x2 at locus x3.
x1 catke x3 x2 : x1 pushes x2 at locus x3.
x1 catlu x2 : x1 looks at at x2.
x1 catlu x2 : x1 looks examines at x2.
x1 catlu x2 : x1 looks views at x2.
x1 catlu x2 : x1 looks inspects at x2.
x1 catlu x2 : x1 looks regards at x2.
x1 catlu x2 : x1 looks watches at x2.
x1 catlu x2 : x1 looks gazes at x2.
x1 catni x3 x2 : x1 has authority in matter x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority in sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority in persons x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority on matter x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority on sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority on persons x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority over matter x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority over sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 has authority over persons x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official in matter x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official in sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official in persons x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official on matter x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official on sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official on persons x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official over matter x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official over sphere x2 derived on basis x3.
x1 catni x3 x2 : x1 is an official over persons x2 derived on basis x3.
x1 catra x3 x2 : x1 kills x2 by action x3.
x1 catra x3 x2 : x1 kills x2 by method x3.
x1 catra x3 x2 : x1 slaughters x2 by action x3.
x1 catra x3 x2 : x1 slaughters x2 by method x3.
x1 catra x3 x2 : x1 murders x2 by action x3.
x1 catra x3 x2 : x1 murders x2 by method x3.
x1 caxno x4 x3 x2 : x1 is shallow in extent in direction x2 away from reference point x3 by standard x4.
x1 caxno x4 x3 x2 : x1 is shallow in extent in property x2 away from reference point x3 by standard x4.
x1 cecla x3 x2 : x1 launches projectile x2, propelled by x3.
x1 cecla x3 x2 : x1 launches missile x2, propelled by x3.
x1 cecla x3 x2 : x1 fires projectile x2, propelled by x3.
x1 cecla x3 x2 : x1 fires missile x2, propelled by x3.
x1 cecla x3 x2 : x1 shoots projectile x2, propelled by x3.
x1 cecla x3 x2 : x1 shoots missile x2, propelled by x3.
x1 cecmu x2 : x1 is a community of organisms x2.
x1 cecmu x2 : x1 is a colony of organisms x2.
x1 cedra x2 : x1 is an era characterized by x2.
x1 cedra x2 : x1 is an epoch characterized by x2.
x1 cedra x2 : x1 is an age characterized by x2.
x1 cenba x4 x3 x2 : x1 varies in property x2 in amount x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 varies in property x2 in degree x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 varies in quantity x2 in amount x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 varies in quantity x2 in degree x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 changes in property x2 in amount x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 changes in property x2 in degree x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 changes in quantity x2 in amount x3 under conditions x4.
x1 cenba x4 x3 x2 : x1 changes in quantity x2 in degree x3 under conditions x4.
x1 censa x2 : x1 is holy to person x2.
x1 censa x2 : x1 is holy to people x2.
x1 censa x2 : x1 is holy to culture x2.
x1 censa x2 : x1 is holy to religion x2.
x1 censa x2 : x1 is holy to cult x2.
x1 censa x2 : x1 is holy to group x2.
x1 censa x2 : x1 is sacred to person x2.
x1 censa x2 : x1 is sacred to people x2.
x1 censa x2 : x1 is sacred to culture x2.
x1 censa x2 : x1 is sacred to religion x2.
x1 censa x2 : x1 is sacred to cult x2.
x1 censa x2 : x1 is sacred to group x2.
x1 centi x3 x2 : x1 is a hundredth of x2 in dimension x3.
x1 centi x3 x2 : x1 is a hundredth of x2 in aspect x3.
x1 cerda x4 x3 x2 : x1 is an heir to to inherit x2 from x3 according to rule x4.
x1 cerda x4 x3 x2 : x1 is an heir is to inherit x2 from x3 according to rule x4.
x1 cerni x3 x2 : x1 is a morning of day x2 at location x3.
x1 certu x3 x2 : x1 is an expert in x2 by standard x3.
x1 certu x3 x2 : x1 is an pro in x2 by standard x3.
x1 certu x3 x2 : x1 is an has prowess in x2 by standard x3.
x1 certu x3 x2 : x1 is an is skilled at x2 by standard x3.
x1 cevni x3 x2 : x1 is a god of people x2 with dominion over x3
x1 cevni x3 x2 : x1 is a god of religion x2 with dominion over x3
x1 cevni x3 x2 : x1 is a deity of people x2 with dominion over x3
x1 cevni x3 x2 : x1 is a deity of religion x2 with dominion over x3
x1 cevni x3 x2 : x1 is the god of people x2 with dominion over x3
x1 cevni x3 x2 : x1 is the god of religion x2 with dominion over x3
x1 cevni x3 x2 : x1 is the deity of people x2 with dominion over x3
x1 cevni x3 x2 : x1 is the deity of religion x2 with dominion over x3
x1 cfari : x1 commences to occur
x1 cfari : x1 initiates to occur
x1 cfari : x1 starts to occur
x1 cfari : x1 begins to occur
x1 cfika x3 x2 : x1 is a work of fiction about plot x2 by author x3.
x1 cfika x3 x2 : x1 is a work of fiction about theme x2 by author x3.
x1 cfika x3 x2 : x1 is a work of fiction about subject x2 by author x3.
x1 cfila x3 x2 : x1 is a flaw in x2 causing x3.
x1 cfila x3 x2 : x1 is a fault in x2 causing x3.
x1 cfila x3 x2 : x1 is a defect in x2 causing x3.
x1 cfine x2 : x1 is a wedge of material x2.
x1 cfipu x3 x2 : x1 confuses x2 due to property x3.
x1 cfipu x3 x2 : x1 baffles x2 due to property x3.
x1 ciblu x2 : x1 is blood fluid of organism x2.
x1 ciblu x2 : x1 is vital fluid of organism x2.
x1 cicna : x1 is cyan
x1 cicna : x1 is turquoise
x1 cicna : x1 is greenish-blue.
x1 cidja x2 : x1 is food for x2
x1 cidja x2 : x1 is feed for x2
x1 cidja x2 : x1 is nutriment for x2
x1 cidni x3 x2 : x1 is a knee of limb x2 of body x3.
x1 cidni x3 x2 : x1 is a elbow of limb x2 of body x3.
x1 cidni x3 x2 : x1 is a knuckle of limb x2 of body x3.
x1 cidni x3 x2 : x1 is the knee of limb x2 of body x3.
x1 cidni x3 x2 : x1 is the elbow of limb x2 of body x3.
x1 cidni x3 x2 : x1 is the knuckle of limb x2 of body x3.
x1 cidro : x1 is a quantity of hydrogen
x1 cidro : x1 contains hydrogen
x1 cidro : x1 is made of hydrogen
x1 cifnu x2 : x1 is an infant of species x2.
x1 cifnu x2 : x1 is an baby of species x2.
x1 cigla x3 x2 : x1 is a gland secreting x2, of body x3
x1 cigla x3 x2 : x1 is the gland secreting x2, of body x3
x1 cikna : x1 is awake
x1 cikna : x1 is alert
x1 cikna : x1 is conscious.
x1 cikre x3 x2 : x1 repairs x2 for use x3.
x1 cikre x3 x2 : x1 mends x2 for use x3.
x1 cikre x3 x2 : x1 fixes x2 for use x3.
x1 ciksi x4 x3 x2 : x1 explains x2 to x3 with explanation x4.
x1 cilce : x1 is wild
x1 cilce : x1 is untamed.
x1 cilmo x2 : x1 is moist with liquid x2.
x1 cilmo x2 : x1 is wet with liquid x2.
x1 cilmo x2 : x1 is damp with liquid x2.
x1 cilre x5 x4 x3 x2 : x1 learns x2 about subject x3 from source x4 by method x5.
x1 cilta x2 : x1 is a thread of material x2.
x1 cilta x2 : x1 is a filament of material x2.
x1 cilta x2 : x1 is a wire of material x2.
x1 cimde x3 x2 : x1 is a dimension of space x2 according to rules x3.
x1 cimde x3 x2 : x1 is a dimension of space x2 according to model x3.
x1 cimde x3 x2 : x1 is a dimension of object x2 according to rules x3.
x1 cimde x3 x2 : x1 is a dimension of object x2 according to model x3.
x1 cimni x3 x2 : x1 is infinite in property x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is infinite in property x2, to degree x3 of type x3.
x1 cimni x3 x2 : x1 is infinite in dimension x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is infinite in dimension x2, to degree x3 of type x3.
x1 cimni x3 x2 : x1 is unending in property x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is unending in property x2, to degree x3 of type x3.
x1 cimni x3 x2 : x1 is unending in dimension x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is unending in dimension x2, to degree x3 of type x3.
x1 cimni x3 x2 : x1 is eternal in property x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is eternal in property x2, to degree x3 of type x3.
x1 cimni x3 x2 : x1 is eternal in dimension x2, to degree x3 type x3.
x1 cimni x3 x2 : x1 is eternal in dimension x2, to degree x3 of type x3.
x1 cinba x3 x2 : x1 kisses x2 at locus x3.
x1 cinba x3 x2 : x1 busses x2 at locus x3.
x1 cindu x2 : x1 is an oak, a type of tree of species x2.
x1 cindu x2 : x1 is an oak, a type of tree of strain x2.
x1 cinfo x2 : x1 is a lion of species x2.
x1 cinfo x2 : x1 is a lion of breed x2.
x1 cinje x2 : x1 is a wrinkle in x2.
x1 cinje x2 : x1 is a crease in x2.
x1 cinje x2 : x1 is a fold in x2.
x1 cinki x2 : x1 is an insect of species x2
x1 cinki x2 : x1 is an arthropod of species x2
x1 cinla x3 x2 : x1 is thin in direction x2 by standard x3
x1 cinla x3 x2 : x1 is thin in dimension x2 by standard x3
x1 cinmo x3 x2 : x1 feels emotion x2 about x3.
x1 cinri x2 : x1 interests x2
x1 cinri x2 : x1 is interesting to x2
x1 cinse x4 x3 x2 : x1 in activity x2 exhibits sexuality x3 by standard x4.
x1 cinse x4 x3 x2 : x1 in activity x2 exhibits gender x3 by standard x4.
x1 cinse x4 x3 x2 : x1 in activity x2 exhibits sexual orientation x3 by standard x4.
x1 cinse x4 x3 x2 : x1 in state x2 exhibits sexuality x3 by standard x4.
x1 cinse x4 x3 x2 : x1 in state x2 exhibits gender x3 by standard x4.
x1 cinse x4 x3 x2 : x1 in state x2 exhibits sexual orientation x3 by standard x4.
x1 cinta x3 x2 : x1 is a paint of pigment x2, in a base of x3.
x1 cinta x3 x2 : x1 is a paint of active substance x2, in a base of x3.
x1 cinza x3 x2 : x1 is a tong for x2 to pinch x3.
x1 cinza x3 x2 : x1 is a chopsticks for x2 to pinch x3.
x1 cinza x3 x2 : x1 is a pincers for x2 to pinch x3.
x1 cinza x3 x2 : x1 is a tweezers for x2 to pinch x3.
x1 cinza x3 x2 : x1 is a pliers for x2 to pinch x3.
x1 cinza x3 x2 : x1 is are tong for x2 to pinch x3.
x1 cinza x3 x2 : x1 is are chopsticks for x2 to pinch x3.
x1 cinza x3 x2 : x1 is are pincers for x2 to pinch x3.
x1 cinza x3 x2 : x1 is are tweezers for x2 to pinch x3.
x1 cinza x3 x2 : x1 is are pliers for x2 to pinch x3.
x1 cipni x2 : x1 is a bird of species x2.
x1 cipni x2 : x1 is a avian of species x2.
x1 cipni x2 : x1 is a fowl of species x2.
x1 cipra x3 x2 : x1 is a test for property x2 in subject x3.
x1 cipra x3 x2 : x1 is a test for state x2 in subject x3.
x1 cipra x3 x2 : x1 is a proof of property x2 in subject x3.
x1 cipra x3 x2 : x1 is a proof of state x2 in subject x3.
x1 cirko x3 x2 : x1 loses person x2 at x3
x1 cirko x3 x2 : x1 loses person x2 near x3
x1 cirko x3 x2 : x1 loses thing x2 at x3
x1 cirko x3 x2 : x1 loses thing x2 near x3
x1 cirla x2 : x1 is a quantity of cheese from source x2.
x1 cirla x2 : x1 is a quantity of curd from source x2.
x1 cirla x2 : x1 contains cheese from source x2.
x1 cirla x2 : x1 contains curd from source x2.
x1 ciska x4 x3 x2 : x1 inscribes x2 on display medium x3 with writing implement x4
x1 ciska x4 x3 x2 : x1 inscribes x2 on storage medium x3 with writing implement x4
x1 ciska x4 x3 x2 : x1 writes x2 on display medium x3 with writing implement x4
x1 ciska x4 x3 x2 : x1 writes x2 on storage medium x3 with writing implement x4
x1 cisma : x1 smiles.
x1 cisma : x1 grins.
x1 ciste x4 x3 x2 : x1 is a system interrelated by structure x2 among components x3 displaying x4.
x1 citka x2 : x1 eats x2.
x1 citka x2 : x1 ingests x2.
x1 citka x2 : x1 consumes x2.
x1 citno x2 : x1 is young by standard x2.
x1 citno x2 : x1 is youthful by standard x2.
x1 citri x3 x2 : x1 is a history of x2 according to x3.
x1 citsi x3 x2 : x1 is a season , defined by interval x2, of year x3.
x1 citsi x3 x2 : x1 is a season , defined by property x2, of year x3.
x1 citsi x3 x2 : x1 is seasonal , defined by interval x2, of year x3.
x1 citsi x3 x2 : x1 is seasonal , defined by property x2, of year x3.
x1 civla x3 x2 : x1 is a louse of species x2, parasitic on x3.
x1 civla x3 x2 : x1 is a louse of breed x2, parasitic on x3.
x1 civla x3 x2 : x1 is a flea of species x2, parasitic on x3.
x1 civla x3 x2 : x1 is a flea of breed x2, parasitic on x3.
x1 cizra x3 x2 : x1 is strange to x2 in property x3.
x1 cizra x3 x2 : x1 is weird to x2 in property x3.
x1 cizra x3 x2 : x1 is deviant to x2 in property x3.
x1 cizra x3 x2 : x1 is bizarre to x2 in property x3.
x1 cizra x3 x2 : x1 is odd to x2 in property x3.
x1 ckabu x3 x2 : x1 is a quantity of rubber from source x2 of composition including x3.
x1 ckabu x3 x2 : x1 is a quantity of latex from source x2 of composition including x3.
x1 ckabu x3 x2 : x1 contains rubber from source x2 of composition including x3.
x1 ckabu x3 x2 : x1 contains latex from source x2 of composition including x3.
x1 ckabu x3 x2 : x1 is made of rubber from source x2 of composition including x3.
x1 ckabu x3 x2 : x1 is made of latex from source x2 of composition including x3.
x1 ckafi x2 : x1 is made of coffee from source x2.
x1 ckafi x2 : x1 is made of coffee from bean x2.
x1 ckafi x2 : x1 is made of coffee from grain x2.
x1 ckafi x2 : x1 contains coffee from source x2.
x1 ckafi x2 : x1 contains coffee from bean x2.
x1 ckafi x2 : x1 contains coffee from grain x2.
x1 ckafi x2 : x1 is a quantity of coffee from source x2.
x1 ckafi x2 : x1 is a quantity of coffee from bean x2.
x1 ckafi x2 : x1 is a quantity of coffee from grain x2.
x1 ckaji x2 : x1 has characterized by property x2
x1 ckaji x2 : x1 has characterized by feature x2
x1 ckaji x2 : x1 has characterized by trait x2
x1 ckaji x2 : x1 has characterized by aspect x2
x1 ckaji x2 : x1 has characterized by dimension x2
x1 ckaji x2 : x1 is characterized by property x2
x1 ckaji x2 : x1 is characterized by feature x2
x1 ckaji x2 : x1 is characterized by trait x2
x1 ckaji x2 : x1 is characterized by aspect x2
x1 ckaji x2 : x1 is characterized by dimension x2
x1 ckana x3 x2 : x1 is a bed of material x2 for holding x3.
x1 ckana x3 x2 : x1 is a bed of material x2 for supporting x3.
x1 ckana x3 x2 : x1 is a pallet of material x2 for holding x3.
x1 ckana x3 x2 : x1 is a pallet of material x2 for supporting x3.
x1 ckape x3 x2 : x1 is perilous harmful to x2 under conditions x3.
x1 ckape x3 x2 : x1 is dangerous harmful to x2 under conditions x3.
x1 ckape x3 x2 : x1 is potentially harmful to x2 under conditions x3.
x1 ckasu x4 x3 x2 : x1 ridicules at x2 about x3 by doing activity x4.
x1 ckasu x4 x3 x2 : x1 mocks at x2 about x3 by doing activity x4.
x1 ckasu x4 x3 x2 : x1 scoffs at x2 about x3 by doing activity x4.
x1 ckeji x3 x2 : x1 feels ashamed under conditions x2 before community x3.
x1 ckeji x3 x2 : x1 feels ashamed under conditions x2 before audience x3.
x1 ckeji x3 x2 : x1 feels mortified under conditions x2 before community x3.
x1 ckeji x3 x2 : x1 feels mortified under conditions x2 before audience x3.
x1 ckeji x3 x2 : x1 feels humiliated under conditions x2 before community x3.
x1 ckeji x3 x2 : x1 feels humiliated under conditions x2 before audience x3.
x1 ckiku x3 x2 : x1 is a key fitting lock x2, and having relevant properties x3.
x1 ckiku x3 x2 : x1 is a key releasing lock x2, and having relevant properties x3.
x1 ckiku x3 x2 : x1 is a key opening lock x2, and having relevant properties x3.
x1 ckiku x3 x2 : x1 is a key unlocking lock x2, and having relevant properties x3.
x1 ckilu x2 : x1 is a scale of units for measuring x2.
x1 ckilu x2 : x1 is a scale of units for observing x2.
x1 ckilu x2 : x1 is a scale of units for determining x2.
x1 ckini x3 x2 : x1 is related to x2 by relationship x3.
x1 ckini x3 x2 : x1 is associated with x2 by relationship x3.
x1 ckini x3 x2 : x1 is akin to x2 by relationship x3.
x1 ckire x3 x2 : x1 is grateful to x2 for x3.
x1 ckire x3 x2 : x1 is thankful to x2 for x3.
x1 ckire x3 x2 : x1 is appreciative of x2 for x3.
x1 ckule x5 x4 x3 x2 : x1 is school at x2 teaching subject x3 to audien. x4 operated by x5.
x1 ckule x5 x4 x3 x2 : x1 is school at x2 teaching subject x3 to commun. x4 operated by x5.
x1 ckule x5 x4 x3 x2 : x1 is institute at x2 teaching subject x3 to audien. x4 operated by x5.
x1 ckule x5 x4 x3 x2 : x1 is institute at x2 teaching subject x3 to commun. x4 operated by x5.
x1 ckule x5 x4 x3 x2 : x1 is academy at x2 teaching subject x3 to audien. x4 operated by x5.
x1 ckule x5 x4 x3 x2 : x1 is academy at x2 teaching subject x3 to commun. x4 operated by x5.
x1 ckunu x3 x2 : x1 is a conifer of species x2 with cones x3.
x1 ckunu x3 x2 : x1 is a conifer of strain x2 with cones x3.
x1 ckunu x3 x2 : x1 is a pine of species x2 with cones x3.
x1 ckunu x3 x2 : x1 is a pine of strain x2 with cones x3.
x1 ckunu x3 x2 : x1 is a fir of species x2 with cones x3.
x1 ckunu x3 x2 : x1 is a fir of strain x2 with cones x3.
x1 cladu x3 x2 : x1 is loud at observation point x2 by standard x3.
x1 cladu x3 x2 : x1 is noisy at observation point x2 by standard x3.
x1 clani x3 x2 : x1 is long in dimension x2 by measurement standard x3.
x1 clani x3 x2 : x1 is long in direction x2 by measurement standard x3.
x1 claxu x2 : x1 is without x2
x1 claxu x2 : x1 is lacking x2
x1 claxu x2 : x1 is free of x2
x1 claxu x2 : x1 is lacks x2
x1 clika x3 x2 : x1 is a moss of species x2 growing on x3
x1 clika x3 x2 : x1 is a moss of strain x2 growing on x3
x1 clika x3 x2 : x1 is a lichen of species x2 growing on x3
x1 clika x3 x2 : x1 is a lichen of strain x2 growing on x3
x1 clira x2 : x1 is early by standard x2.
x1 clite x3 x2 : x1 is polite in matter x2 according to standard x3.
x1 clite x3 x2 : x1 is polite in matter x2 according to custom x3.
x1 clite x3 x2 : x1 is courteous in matter x2 according to standard x3.
x1 clite x3 x2 : x1 is courteous in matter x2 according to custom x3.
x1 clite x3 x2 : x1 is civil in matter x2 according to standard x3.
x1 clite x3 x2 : x1 is civil in matter x2 according to custom x3.
x1 cliva x3 x2 : x1 leaves from x2 via route x3.
x1 cliva x3 x2 : x1 goes away from x2 via route x3.
x1 cliva x3 x2 : x1 departs from x2 via route x3.
x1 cliva x3 x2 : x1 parts from x2 via route x3.
x1 cliva x3 x2 : x1 separates from x2 via route x3.
x1 clupa x2 : x1 is a loop of x2.
x1 clupa x2 : x1 is a circuit of x2.
x1 cmaci x2 : x1 is a mathematics of type x2.
x1 cmaci x2 : x1 is a mathematics of describing x2.
x1 cmalu x3 x2 : x1 is small in property x2 as compared with standard x3.
x1 cmalu x3 x2 : x1 is small in property x2 as compared with norm x3.
x1 cmalu x3 x2 : x1 is small in dimension x2 as compared with standard x3.
x1 cmalu x3 x2 : x1 is small in dimension x2 as compared with norm x3.
x1 cmana x2 : x1 is a mountain projecting from land mass x2.
x1 cmana x2 : x1 is a hill projecting from land mass x2.
x1 cmana x2 : x1 is a mound projecting from land mass x2.
x1 cmavo x4 x3 x2 : x1 is a structure word of grammatical class x2, with meaning x3 in usage x4.
x1 cmavo x4 x3 x2 : x1 is a structure word of grammatical class x2, with function x3 in usage x4.
x1 cmene x3 x2 : x1 is a name of x2 to namer x3.
x1 cmene x3 x2 : x1 is a name of x2 to name-user x3.
x1 cmene x3 x2 : x1 is a name of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is a name of x2 used-by name-user x3.
x1 cmene x3 x2 : x1 is a title of x2 to namer x3.
x1 cmene x3 x2 : x1 is a title of x2 to name-user x3.
x1 cmene x3 x2 : x1 is a title of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is a title of x2 used-by name-user x3.
x1 cmene x3 x2 : x1 is a tag of x2 to namer x3.
x1 cmene x3 x2 : x1 is a tag of x2 to name-user x3.
x1 cmene x3 x2 : x1 is a tag of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is a tag of x2 used-by name-user x3.
x1 cmene x3 x2 : x1 is the name of x2 to namer x3.
x1 cmene x3 x2 : x1 is the name of x2 to name-user x3.
x1 cmene x3 x2 : x1 is the name of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is the name of x2 used-by name-user x3.
x1 cmene x3 x2 : x1 is the title of x2 to namer x3.
x1 cmene x3 x2 : x1 is the title of x2 to name-user x3.
x1 cmene x3 x2 : x1 is the title of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is the title of x2 used-by name-user x3.
x1 cmene x3 x2 : x1 is the tag of x2 to namer x3.
x1 cmene x3 x2 : x1 is the tag of x2 to name-user x3.
x1 cmene x3 x2 : x1 is the tag of x2 used-by namer x3.
x1 cmene x3 x2 : x1 is the tag of x2 used-by name-user x3.
x1 cmila : x1 laughs.
x1 cmima x2 : x1 is a member of set x2
x1 cmima x2 : x1 is a element of set x2
x1 cmoni x3 x2 : x1 groan x2 expressing x3.
x1 cmoni x3 x2 : x1 howl x2 expressing x3.
x1 cmoni x3 x2 : x1 scream x2 expressing x3.
x1 cnano x4 x3 x2 : x1 is a norm in property x2 among x3 by standard x4.
x1 cnano x4 x3 x2 : x1 is a norm in amount x2 among x3 by standard x4.
x1 cnano x4 x3 x2 : x1 is a average in property x2 among x3 by standard x4.
x1 cnano x4 x3 x2 : x1 is a average in amount x2 among x3 by standard x4.
x1 cnebo x2 : x1 is a neck of x2
x1 cnebo x2 : x1 is the neck of x2
x1 cnemu x4 x3 x2 : x1 rewards x2 for atypical x3 with reward x4.
x1 cnemu x4 x3 x2 : x1 rewards x2 for atypical x3 with desserts x4.
x1 cnici x2 : x1 is orderly in property x2.
x1 cnici x2 : x1 is orderly in quantity x2.
x1 cnici x2 : x1 is neat in property x2.
x1 cnici x2 : x1 is neat in quantity x2.
x1 cnici x2 : x1 is ordered in property x2.
x1 cnici x2 : x1 is ordered in quantity x2.
x1 cnino x4 x3 x2 : x1 is new to observer x2 in feature x3 by standard x4
x1 cnino x4 x3 x2 : x1 is unfamiliar to observer x2 in feature x3 by standard x4
x1 cnino x4 x3 x2 : x1 is novel to observer x2 in feature x3 by standard x4
x1 cnisa : x1 is a quantity of lead
x1 cnisa : x1 contains lead
x1 cnisa : x1 is made of lead
x1 cnita x3 x2 : x1 is directly beneath x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is directly below x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is directly under x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is directly underneath x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is directly down from x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is vertically beneath x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is vertically below x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is vertically under x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is vertically underneath x2 in frame of reference x3.
x1 cnita x3 x2 : x1 is vertically down from x2 in frame of reference x3.
x1 cokcu x4 x3 x2 : x1 soaks up x2 from x3 into x4
x1 cokcu x4 x3 x2 : x1 absorbs x2 from x3 into x4
x1 cokcu x4 x3 x2 : x1 sucks up x2 from x3 into x4
x1 condi x4 x3 x2 : x1 is deep in extent in direction x2 away from reference point x3 by standard x4.
x1 condi x4 x3 x2 : x1 is deep in extent in property x2 away from reference point x3 by standard x4.
x1 cortu x2 : x1 hurts pain at locus x2.
x1 cortu x2 : x1 hurts hurt at locus x2.
x1 cortu x2 : x1 feels pain at locus x2.
x1 cortu x2 : x1 feels hurt at locus x2.
x1 cpacu x3 x2 : x1 gets x2 from source x3.
x1 cpacu x3 x2 : x1 procures x2 from source x3.
x1 cpacu x3 x2 : x1 acquires x2 from source x3.
x1 cpacu x3 x2 : x1 obtains x2 from source x3.
x1 cpacu x3 x2 : x1 accepts x2 from source x3.
x1 cpana x3 x2 : x1 is upon on on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is upon on on x2 in gravity x3.
x1 cpana x3 x2 : x1 is upon lying on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is upon lying on x2 in gravity x3.
x1 cpana x3 x2 : x1 is atop on on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is atop on on x2 in gravity x3.
x1 cpana x3 x2 : x1 is atop lying on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is atop lying on x2 in gravity x3.
x1 cpana x3 x2 : x1 is resting on on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is resting on on x2 in gravity x3.
x1 cpana x3 x2 : x1 is resting lying on x2 in frame of reference x3.
x1 cpana x3 x2 : x1 is resting lying on x2 in gravity x3.
x1 cpare x4 x3 x2 : x1 climbs on surface x2 in direction x3 using x4.
x1 cpare x4 x3 x2 : x1 clambers on surface x2 in direction x3 using x4.
x1 cpare x4 x3 x2 : x1 creeps on surface x2 in direction x3 using x4.
x1 cpare x4 x3 x2 : x1 crawls on surface x2 in direction x3 using x4.
x1 cpedu x4 x3 x2 : x1 requests for x2 of x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 requests for x2 of x3 in form x4.
x1 cpedu x4 x3 x2 : x1 requests for x2 from x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 requests for x2 from x3 in form x4.
x1 cpedu x4 x3 x2 : x1 asks for x2 of x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 asks for x2 of x3 in form x4.
x1 cpedu x4 x3 x2 : x1 asks for x2 from x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 asks for x2 from x3 in form x4.
x1 cpedu x4 x3 x2 : x1 petitions for x2 of x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 petitions for x2 of x3 in form x4.
x1 cpedu x4 x3 x2 : x1 petitions for x2 from x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 petitions for x2 from x3 in form x4.
x1 cpedu x4 x3 x2 : x1 solicits for x2 of x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 solicits for x2 of x3 in form x4.
x1 cpedu x4 x3 x2 : x1 solicits for x2 from x3 in manner x4.
x1 cpedu x4 x3 x2 : x1 solicits for x2 from x3 in form x4.
x1 cpina x2 : x1 is pungent to sense x2.
x1 cpina x2 : x1 is piquant to sense x2.
x1 cpina x2 : x1 is peppery to sense x2.
x1 cpina x2 : x1 is spicy to sense x2.
x1 cpina x2 : x1 is irritating to sense x2.
x1 cradi x4 x3 x2 : x1 broadcasts x2 via station x3 to receiver x4.
x1 cradi x4 x3 x2 : x1 broadcasts x2 via frequency x3 to receiver x4.
x1 cradi x4 x3 x2 : x1 transmits x2 via station x3 to receiver x4.
x1 cradi x4 x3 x2 : x1 transmits x2 via frequency x3 to receiver x4.
x1 crane x3 x2 : x1 is anterior the front of x2 which faces x3.
x1 crane x3 x2 : x1 is anterior the front of x2 which in-frame-of-reference x3.
x1 crane x3 x2 : x1 is ahead the front of x2 which faces x3.
x1 crane x3 x2 : x1 is ahead the front of x2 which in-frame-of-reference x3.
x1 crane x3 x2 : x1 is forward the front of x2 which faces x3.
x1 crane x3 x2 : x1 is forward the front of x2 which in-frame-of-reference x3.
x1 creka x2 : x1 is a shirt made of material x2.
x1 creka x2 : x1 is a blouse made of material x2.
x1 creka x2 : x1 is a top made of material x2.
x1 crepu x3 x2 : x1 harvests crop x2 from source x3.
x1 crepu x3 x2 : x1 harvests crop x2 from area x3.
x1 crepu x3 x2 : x1 harvests product x2 from source x3.
x1 crepu x3 x2 : x1 harvests product x2 from area x3.
x1 crepu x3 x2 : x1 harvests objects x2 from source x3.
x1 crepu x3 x2 : x1 harvests objects x2 from area x3.
x1 crepu x3 x2 : x1 reaps crop x2 from source x3.
x1 crepu x3 x2 : x1 reaps crop x2 from area x3.
x1 crepu x3 x2 : x1 reaps product x2 from source x3.
x1 crepu x3 x2 : x1 reaps product x2 from area x3.
x1 crepu x3 x2 : x1 reaps objects x2 from source x3.
x1 crepu x3 x2 : x1 reaps objects x2 from area x3.
x1 crepu x3 x2 : x1 gathers crop x2 from source x3.
x1 crepu x3 x2 : x1 gathers crop x2 from area x3.
x1 crepu x3 x2 : x1 gathers product x2 from source x3.
x1 crepu x3 x2 : x1 gathers product x2 from area x3.
x1 crepu x3 x2 : x1 gathers objects x2 from source x3.
x1 crepu x3 x2 : x1 gathers objects x2 from area x3.
x1 cribe x2 : x1 is a bear of species x2.
x1 cribe x2 : x1 is a bear of breed x2.
x1 cribe x2 : x1 is a ursoid of species x2.
x1 cribe x2 : x1 is a ursoid of breed x2.
x1 crida x2 : x1 is a fairy of mythos x2.
x1 crida x2 : x1 is a fairy of religion x2.
x1 crida x2 : x1 is a elf of mythos x2.
x1 crida x2 : x1 is a elf of religion x2.
x1 crida x2 : x1 is a gnome of mythos x2.
x1 crida x2 : x1 is a gnome of religion x2.
x1 crida x2 : x1 is a brownie of mythos x2.
x1 crida x2 : x1 is a brownie of religion x2.
x1 crida x2 : x1 is a pixie of mythos x2.
x1 crida x2 : x1 is a pixie of religion x2.
x1 crida x2 : x1 is a goblin of mythos x2.
x1 crida x2 : x1 is a goblin of religion x2.
x1 crida x2 : x1 is a kobold of mythos x2.
x1 crida x2 : x1 is a kobold of religion x2.
x1 crino : x1 is green
x1 crino : x1 is verdant.
x1 cripu x4 x3 x2 : x1 is a bridge over x2 between x3 and x4.
x1 cripu x4 x3 x2 : x1 is a bridge across x2 between x3 and x4.
x1 cripu x4 x3 x2 : x1 is a span over x2 between x3 and x4.
x1 cripu x4 x3 x2 : x1 is a span across x2 between x3 and x4.
x1 crisa x3 x2 : x1 is summer of year x2 at location x3.
x1 crisa x3 x2 : x1 is summertime of year x2 at location x3.
x1 critu x3 x2 : x1 is autumn of year x2 at location x3.
x1 critu x3 x2 : x1 is fall of year x2 at location x3.
x1 ctaru x3 x2 : x1 is a tide in x2 caused by x3.
x1 ctebi x3 x2 : x1 is a lip of orifice x2 of body x3
x1 ctebi x3 x2 : x1 is a rim of orifice x2 of body x3
x1 ctebi x3 x2 : x1 is the lip of orifice x2 of body x3
x1 ctebi x3 x2 : x1 is the rim of orifice x2 of body x3
x1 cteki x4 x3 x2 : x1 is a tax on goods x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a tax on goods x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a tax on services x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a tax on services x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a tax on event x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a tax on event x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a levy on goods x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a levy on goods x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a levy on services x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a levy on services x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a levy on event x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a levy on event x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a duty on goods x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a duty on goods x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a duty on services x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a duty on services x2 levied against x3 by collector x4.
x1 cteki x4 x3 x2 : x1 is a duty on event x2 levied against x3 by authority x4.
x1 cteki x4 x3 x2 : x1 is a duty on event x2 levied against x3 by collector x4.
x1 ctile x2 : x1 is a quantity of petroleum from source x2.
x1 ctile x2 : x1 is a quantity of oil from source x2.
x1 ctino x3 x2 : x1 is a shadow of object x2, made by light source x3.
x1 ctino x3 x2 : x1 is a shadow of object x2, made by energy source x3.
x1 ctino x3 x2 : x1 is the shade of object x2, made by light source x3.
x1 ctino x3 x2 : x1 is the shade of object x2, made by energy source x3.
x1 ctuca x5 x4 x3 x2 : x1 teaches audience x2 ideas x3 about subject x4 by method x5.
x1 ctuca x5 x4 x3 x2 : x1 teaches audience x2 methods x3 about subject x4 by method x5.
x1 ctuca x5 x4 x3 x2 : x1 teaches audience x2 lore x3 about subject x4 by method x5.
x1 cukla : x1 is round
x1 cukla : x1 is circular
x1 cukta x5 x4 x3 x2 : x1 is a book containing work x2 by author x3 for audience x4 preserved in medium x5.
x1 culno x2 : x1 is full filled with x2.
x1 culno x2 : x1 is completely filled with x2.
x1 cumki x2 : x1 is possible under conditions x2
x1 cumla x2 : x1 is humble about x2
x1 cumla x2 : x1 is modest about x2
x1 cunmi x2 : x1 is a quantity of millet of species x2.
x1 cunmi x2 : x1 is a quantity of millet of strain x2.
x1 cunso x3 x2 : x1 is random under conditions x2, with probability distribution x3.
x1 cunso x3 x2 : x1 is fortuitous under conditions x2, with probability distribution x3.
x1 cunso x3 x2 : x1 is unpredictable under conditions x2, with probability distribution x3.
x1 cuntu x2 : x1 is an affair involving person x2
x1 cuntu x2 : x1 is an organized activity involving person x2
x1 cupra x3 x2 : x1 produces x2 by process x3.
x1 curmi x3 x2 : x1 lets x2 under conditions x3
x1 curmi x3 x2 : x1 permits x2 under conditions x3
x1 curmi x3 x2 : x1 allows x2 under conditions x3
x1 curnu x2 : x1 is a worm of species x2.
x1 curnu x2 : x1 is a worm of breed x2.