@polycode-projects/the-mechanical-code-talker 1.5.5 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +123 -14
- package/ROADMAP.md +233 -1392
- package/bin/tmct.mjs +479 -98
- package/corpus/README.md +3 -0
- package/corpus/generated/README.md +43 -0
- package/corpus/generated/ace-surface-variants.jsonl +17 -0
- package/corpus/generated/manifest.json +9 -0
- package/corpus/tier2/generate.mjs +14668 -0
- package/corpus/tier2/human-examples-large.jsonl +1928 -0
- package/corpus/tier2/human-examples-medium.jsonl +356 -0
- package/corpus/tier2/human-examples.jsonl +120 -0
- package/corpus/tier2/human-large.jsonl +12001 -0
- package/corpus/tier2/human-medium.jsonl +944 -0
- package/corpus/tier2/human.jsonl +664 -0
- package/corpus/tier2/manifest.json +42 -0
- package/package.json +14 -8
- package/src/answer-variants.json +47 -0
- package/src/answer-variants.mjs +67 -0
- package/src/ask-browser-entry.mjs +34 -0
- package/src/ask-browser.bundle.js +5095 -0
- package/src/ask-vocab.mjs +93 -8
- package/src/ask.mjs +451 -49
- package/src/chat.mjs +1273 -137
- package/src/cli-args.mjs +164 -0
- package/src/codegraph.mjs +170 -32
- package/src/extensions.mjs +100 -19
- package/src/grammar/ace.mjs +85 -3
- package/src/grammar/lexicon-core.json +9531 -63
- package/src/grammar/lexicon.mjs +58 -8
- package/src/graph-merge.mjs +114 -0
- package/src/index.mjs +14 -0
- package/src/init.mjs +40 -14
- package/src/interpret/normalize.mjs +75 -1
- package/src/interpret/strategies/grammar.mjs +10 -0
- package/src/interpret/strategies/keywords.mjs +20 -0
- package/src/interpret/strategies/noise-strip.mjs +73 -4
- package/src/memory/core.mjs +466 -8
- package/src/router/goal-reasoner.mjs +41 -7
- package/src/router/guardrail.mjs +37 -7
- package/src/router/resolver.mjs +50 -4
- package/src/sessions.mjs +5 -1
- package/src/source.mjs +54 -1
- package/src/syllogise.mjs +398 -27
- package/src/toml-config.mjs +13 -4
- package/src/viz.mjs +541 -0
|
@@ -0,0 +1,664 @@
|
|
|
1
|
+
{"start":"/c/en/schema_person","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema person]] IsA [[schema thing]]"}
|
|
2
|
+
{"start":"/c/en/schema_place","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema place]] IsA [[schema thing]]"}
|
|
3
|
+
{"start":"/c/en/schema_object","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema object]] IsA [[schema thing]]"}
|
|
4
|
+
{"start":"/c/en/schema_event","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema event]] IsA [[schema thing]]"}
|
|
5
|
+
{"start":"/c/en/schema_time","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema time]] IsA [[schema thing]]"}
|
|
6
|
+
{"start":"/c/en/schema_quantity","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema quantity]] IsA [[schema thing]]"}
|
|
7
|
+
{"start":"/c/en/schema_organization","rel":"/r/IsA","end":"/c/en/schema_thing","weight":1,"surfaceText":"[[schema organization]] IsA [[schema thing]]"}
|
|
8
|
+
{"start":"/c/en/schema_event","rel":"/r/AtLocation","end":"/c/en/schema_place","weight":1,"surfaceText":"[[schema event]] AtLocation [[schema place]]"}
|
|
9
|
+
{"start":"/c/en/schema_organization","rel":"/r/HasA","end":"/c/en/schema_person","weight":1,"surfaceText":"[[schema organization]] HasA [[schema person]]"}
|
|
10
|
+
{"start":"/c/en/schema_person","rel":"/r/AtLocation","end":"/c/en/schema_place","weight":1,"surfaceText":"[[schema person]] AtLocation [[schema place]]"}
|
|
11
|
+
{"start":"/c/en/schema_object","rel":"/r/AtLocation","end":"/c/en/schema_place","weight":1,"surfaceText":"[[schema object]] AtLocation [[schema place]]"}
|
|
12
|
+
{"start":"/c/en/schema_event","rel":"/r/HasA","end":"/c/en/schema_time","weight":1,"surfaceText":"[[schema event]] HasA [[schema time]]"}
|
|
13
|
+
{"start":"/c/en/schema_organization","rel":"/r/UsedFor","end":"/c/en/organizing_people","weight":1,"surfaceText":"[[schema organization]] UsedFor [[organizing people]]"}
|
|
14
|
+
{"start":"/c/en/schema_quantity","rel":"/r/UsedFor","end":"/c/en/measuring","weight":1,"surfaceText":"[[schema quantity]] UsedFor [[measuring]]"}
|
|
15
|
+
{"start":"/c/en/schema_time","rel":"/r/UsedFor","end":"/c/en/scheduling_events","weight":1,"surfaceText":"[[schema time]] UsedFor [[scheduling events]]"}
|
|
16
|
+
{"start":"/c/en/schema_place","rel":"/r/HasProperty","end":"/c/en/physical","weight":1,"surfaceText":"[[schema place]] HasProperty [[physical]]"}
|
|
17
|
+
{"start":"/c/en/schema_object","rel":"/r/HasProperty","end":"/c/en/ownable","weight":1,"surfaceText":"[[schema object]] HasProperty [[ownable]]"}
|
|
18
|
+
{"start":"/c/en/schema_event","rel":"/r/HasProperty","end":"/c/en/temporary","weight":1,"surfaceText":"[[schema event]] HasProperty [[temporary]]"}
|
|
19
|
+
{"start":"/c/en/man","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[man]] IsA [[person]]"}
|
|
20
|
+
{"start":"/c/en/man","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[man]] HasProperty [[male]]"}
|
|
21
|
+
{"start":"/c/en/woman","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[woman]] IsA [[person]]"}
|
|
22
|
+
{"start":"/c/en/woman","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[woman]] HasProperty [[female]]"}
|
|
23
|
+
{"start":"/c/en/person","rel":"/r/CapableOf","end":"/c/en/think","weight":1,"surfaceText":"[[person]] CapableOf [[think]]"}
|
|
24
|
+
{"start":"/c/en/person","rel":"/r/CapableOf","end":"/c/en/speak","weight":1,"surfaceText":"[[person]] CapableOf [[speak]]"}
|
|
25
|
+
{"start":"/c/en/person","rel":"/r/Desires","end":"/c/en/happiness","weight":1,"surfaceText":"[[person]] Desires [[happiness]]"}
|
|
26
|
+
{"start":"/c/en/child","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[child]] IsA [[person]]"}
|
|
27
|
+
{"start":"/c/en/child","rel":"/r/HasProperty","end":"/c/en/young","weight":1,"surfaceText":"[[child]] HasProperty [[young]]"}
|
|
28
|
+
{"start":"/c/en/boy","rel":"/r/IsA","end":"/c/en/child","weight":1,"surfaceText":"[[boy]] IsA [[child]]"}
|
|
29
|
+
{"start":"/c/en/boy","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[boy]] HasProperty [[male]]"}
|
|
30
|
+
{"start":"/c/en/girl","rel":"/r/IsA","end":"/c/en/child","weight":1,"surfaceText":"[[girl]] IsA [[child]]"}
|
|
31
|
+
{"start":"/c/en/girl","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[girl]] HasProperty [[female]]"}
|
|
32
|
+
{"start":"/c/en/baby","rel":"/r/IsA","end":"/c/en/child","weight":1,"surfaceText":"[[baby]] IsA [[child]]"}
|
|
33
|
+
{"start":"/c/en/baby","rel":"/r/HasProperty","end":"/c/en/young","weight":1,"surfaceText":"[[baby]] HasProperty [[young]]"}
|
|
34
|
+
{"start":"/c/en/adult","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[adult]] IsA [[person]]"}
|
|
35
|
+
{"start":"/c/en/adult","rel":"/r/HasProperty","end":"/c/en/grown","weight":1,"surfaceText":"[[adult]] HasProperty [[grown]]"}
|
|
36
|
+
{"start":"/c/en/friend","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[friend]] IsA [[person]]"}
|
|
37
|
+
{"start":"/c/en/friend","rel":"/r/CapableOf","end":"/c/en/help","weight":1,"surfaceText":"[[friend]] CapableOf [[help]]"}
|
|
38
|
+
{"start":"/c/en/friend","rel":"/r/Desires","end":"/c/en/trust","weight":1,"surfaceText":"[[friend]] Desires [[trust]]"}
|
|
39
|
+
{"start":"/c/en/neighbor","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[neighbor]] IsA [[person]]"}
|
|
40
|
+
{"start":"/c/en/neighbor","rel":"/r/AtLocation","end":"/c/en/nearby_house","weight":1,"surfaceText":"[[neighbor]] AtLocation [[nearby house]]"}
|
|
41
|
+
{"start":"/c/en/stranger","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[stranger]] IsA [[person]]"}
|
|
42
|
+
{"start":"/c/en/stranger","rel":"/r/HasProperty","end":"/c/en/unknown","weight":1,"surfaceText":"[[stranger]] HasProperty [[unknown]]"}
|
|
43
|
+
{"start":"/c/en/guest","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[guest]] IsA [[person]]"}
|
|
44
|
+
{"start":"/c/en/guest","rel":"/r/AtLocation","end":"/c/en/house","weight":1,"surfaceText":"[[guest]] AtLocation [[house]]"}
|
|
45
|
+
{"start":"/c/en/visitor","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[visitor]] IsA [[person]]"}
|
|
46
|
+
{"start":"/c/en/visitor","rel":"/r/CapableOf","end":"/c/en/visit","weight":1,"surfaceText":"[[visitor]] CapableOf [[visit]]"}
|
|
47
|
+
{"start":"/c/en/doctor","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[doctor]] IsA [[person]]"}
|
|
48
|
+
{"start":"/c/en/doctor","rel":"/r/UsedFor","end":"/c/en/treating_illness","weight":1,"surfaceText":"[[doctor]] UsedFor [[treating illness]]"}
|
|
49
|
+
{"start":"/c/en/doctor","rel":"/r/CapableOf","end":"/c/en/treat_patients","weight":1,"surfaceText":"[[doctor]] CapableOf [[treat patients]]"}
|
|
50
|
+
{"start":"/c/en/doctor","rel":"/r/AtLocation","end":"/c/en/hospital","weight":1,"surfaceText":"[[doctor]] AtLocation [[hospital]]"}
|
|
51
|
+
{"start":"/c/en/teacher","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[teacher]] IsA [[person]]"}
|
|
52
|
+
{"start":"/c/en/teacher","rel":"/r/UsedFor","end":"/c/en/teaching","weight":1,"surfaceText":"[[teacher]] UsedFor [[teaching]]"}
|
|
53
|
+
{"start":"/c/en/teacher","rel":"/r/CapableOf","end":"/c/en/teach","weight":1,"surfaceText":"[[teacher]] CapableOf [[teach]]"}
|
|
54
|
+
{"start":"/c/en/teacher","rel":"/r/AtLocation","end":"/c/en/school","weight":1,"surfaceText":"[[teacher]] AtLocation [[school]]"}
|
|
55
|
+
{"start":"/c/en/nurse","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[nurse]] IsA [[person]]"}
|
|
56
|
+
{"start":"/c/en/nurse","rel":"/r/UsedFor","end":"/c/en/caring_for_patients","weight":1,"surfaceText":"[[nurse]] UsedFor [[caring for patients]]"}
|
|
57
|
+
{"start":"/c/en/nurse","rel":"/r/AtLocation","end":"/c/en/hospital","weight":1,"surfaceText":"[[nurse]] AtLocation [[hospital]]"}
|
|
58
|
+
{"start":"/c/en/student","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[student]] IsA [[person]]"}
|
|
59
|
+
{"start":"/c/en/student","rel":"/r/CapableOf","end":"/c/en/learn","weight":1,"surfaceText":"[[student]] CapableOf [[learn]]"}
|
|
60
|
+
{"start":"/c/en/student","rel":"/r/AtLocation","end":"/c/en/school","weight":1,"surfaceText":"[[student]] AtLocation [[school]]"}
|
|
61
|
+
{"start":"/c/en/worker","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[worker]] IsA [[person]]"}
|
|
62
|
+
{"start":"/c/en/worker","rel":"/r/CapableOf","end":"/c/en/work","weight":1,"surfaceText":"[[worker]] CapableOf [[work]]"}
|
|
63
|
+
{"start":"/c/en/worker","rel":"/r/AtLocation","end":"/c/en/workplace","weight":1,"surfaceText":"[[worker]] AtLocation [[workplace]]"}
|
|
64
|
+
{"start":"/c/en/farmer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[farmer]] IsA [[person]]"}
|
|
65
|
+
{"start":"/c/en/farmer","rel":"/r/CapableOf","end":"/c/en/farm","weight":1,"surfaceText":"[[farmer]] CapableOf [[farm]]"}
|
|
66
|
+
{"start":"/c/en/farmer","rel":"/r/AtLocation","end":"/c/en/farm","weight":1,"surfaceText":"[[farmer]] AtLocation [[farm]]"}
|
|
67
|
+
{"start":"/c/en/mother","rel":"/r/IsA","end":"/c/en/parent","weight":1,"surfaceText":"[[mother]] IsA [[parent]]"}
|
|
68
|
+
{"start":"/c/en/mother","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[mother]] HasProperty [[female]]"}
|
|
69
|
+
{"start":"/c/en/father","rel":"/r/IsA","end":"/c/en/parent","weight":1,"surfaceText":"[[father]] IsA [[parent]]"}
|
|
70
|
+
{"start":"/c/en/father","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[father]] HasProperty [[male]]"}
|
|
71
|
+
{"start":"/c/en/parent","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[parent]] IsA [[person]]"}
|
|
72
|
+
{"start":"/c/en/parent","rel":"/r/CapableOf","end":"/c/en/care_for_a_child","weight":1,"surfaceText":"[[parent]] CapableOf [[care for a child]]"}
|
|
73
|
+
{"start":"/c/en/brother","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[brother]] IsA [[person]]"}
|
|
74
|
+
{"start":"/c/en/brother","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[brother]] HasProperty [[male]]"}
|
|
75
|
+
{"start":"/c/en/brother","rel":"/r/PartOf","end":"/c/en/family","weight":1,"surfaceText":"[[brother]] PartOf [[family]]"}
|
|
76
|
+
{"start":"/c/en/sister","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[sister]] IsA [[person]]"}
|
|
77
|
+
{"start":"/c/en/sister","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[sister]] HasProperty [[female]]"}
|
|
78
|
+
{"start":"/c/en/sister","rel":"/r/PartOf","end":"/c/en/family","weight":1,"surfaceText":"[[sister]] PartOf [[family]]"}
|
|
79
|
+
{"start":"/c/en/family","rel":"/r/IsA","end":"/c/en/group","weight":1,"surfaceText":"[[family]] IsA [[group]]"}
|
|
80
|
+
{"start":"/c/en/family","rel":"/r/HasA","end":"/c/en/parent","weight":1,"surfaceText":"[[family]] HasA [[parent]]"}
|
|
81
|
+
{"start":"/c/en/family","rel":"/r/HasA","end":"/c/en/child","weight":1,"surfaceText":"[[family]] HasA [[child]]"}
|
|
82
|
+
{"start":"/c/en/king","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[king]] IsA [[person]]"}
|
|
83
|
+
{"start":"/c/en/king","rel":"/r/CapableOf","end":"/c/en/rule","weight":1,"surfaceText":"[[king]] CapableOf [[rule]]"}
|
|
84
|
+
{"start":"/c/en/king","rel":"/r/AtLocation","end":"/c/en/kingdom","weight":1,"surfaceText":"[[king]] AtLocation [[kingdom]]"}
|
|
85
|
+
{"start":"/c/en/queen","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[queen]] IsA [[person]]"}
|
|
86
|
+
{"start":"/c/en/queen","rel":"/r/CapableOf","end":"/c/en/rule","weight":1,"surfaceText":"[[queen]] CapableOf [[rule]]"}
|
|
87
|
+
{"start":"/c/en/queen","rel":"/r/AtLocation","end":"/c/en/kingdom","weight":1,"surfaceText":"[[queen]] AtLocation [[kingdom]]"}
|
|
88
|
+
{"start":"/c/en/soldier","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[soldier]] IsA [[person]]"}
|
|
89
|
+
{"start":"/c/en/soldier","rel":"/r/CapableOf","end":"/c/en/fight","weight":1,"surfaceText":"[[soldier]] CapableOf [[fight]]"}
|
|
90
|
+
{"start":"/c/en/soldier","rel":"/r/UsedFor","end":"/c/en/defending_a_country","weight":1,"surfaceText":"[[soldier]] UsedFor [[defending a country]]"}
|
|
91
|
+
{"start":"/c/en/artist","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[artist]] IsA [[person]]"}
|
|
92
|
+
{"start":"/c/en/artist","rel":"/r/CapableOf","end":"/c/en/create_art","weight":1,"surfaceText":"[[artist]] CapableOf [[create art]]"}
|
|
93
|
+
{"start":"/c/en/writer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[writer]] IsA [[person]]"}
|
|
94
|
+
{"start":"/c/en/writer","rel":"/r/CapableOf","end":"/c/en/write","weight":1,"surfaceText":"[[writer]] CapableOf [[write]]"}
|
|
95
|
+
{"start":"/c/en/cook","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[cook]] IsA [[person]]"}
|
|
96
|
+
{"start":"/c/en/cook","rel":"/r/CapableOf","end":"/c/en/cook","weight":1,"surfaceText":"[[cook]] CapableOf [[cook]]"}
|
|
97
|
+
{"start":"/c/en/cook","rel":"/r/AtLocation","end":"/c/en/kitchen","weight":1,"surfaceText":"[[cook]] AtLocation [[kitchen]]"}
|
|
98
|
+
{"start":"/c/en/team","rel":"/r/IsA","end":"/c/en/group","weight":1,"surfaceText":"[[team]] IsA [[group]]"}
|
|
99
|
+
{"start":"/c/en/team","rel":"/r/HasA","end":"/c/en/player","weight":1,"surfaceText":"[[team]] HasA [[player]]"}
|
|
100
|
+
{"start":"/c/en/team","rel":"/r/UsedFor","end":"/c/en/playing_a_game","weight":1,"surfaceText":"[[team]] UsedFor [[playing a game]]"}
|
|
101
|
+
{"start":"/c/en/group","rel":"/r/HasA","end":"/c/en/person","weight":1,"surfaceText":"[[group]] HasA [[person]]"}
|
|
102
|
+
{"start":"/c/en/group","rel":"/r/CapableOf","end":"/c/en/work_together","weight":1,"surfaceText":"[[group]] CapableOf [[work together]]"}
|
|
103
|
+
{"start":"/c/en/crowd","rel":"/r/IsA","end":"/c/en/group","weight":1,"surfaceText":"[[crowd]] IsA [[group]]"}
|
|
104
|
+
{"start":"/c/en/crowd","rel":"/r/HasProperty","end":"/c/en/large","weight":1,"surfaceText":"[[crowd]] HasProperty [[large]]"}
|
|
105
|
+
{"start":"/c/en/audience","rel":"/r/IsA","end":"/c/en/group","weight":1,"surfaceText":"[[audience]] IsA [[group]]"}
|
|
106
|
+
{"start":"/c/en/audience","rel":"/r/CapableOf","end":"/c/en/watch","weight":1,"surfaceText":"[[audience]] CapableOf [[watch]]"}
|
|
107
|
+
{"start":"/c/en/club","rel":"/r/IsA","end":"/c/en/group","weight":1,"surfaceText":"[[club]] IsA [[group]]"}
|
|
108
|
+
{"start":"/c/en/club","rel":"/r/UsedFor","end":"/c/en/meeting_together","weight":1,"surfaceText":"[[club]] UsedFor [[meeting together]]"}
|
|
109
|
+
{"start":"/c/en/president","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[president]] IsA [[person]]"}
|
|
110
|
+
{"start":"/c/en/president","rel":"/r/CapableOf","end":"/c/en/lead","weight":1,"surfaceText":"[[president]] CapableOf [[lead]]"}
|
|
111
|
+
{"start":"/c/en/president","rel":"/r/AtLocation","end":"/c/en/country","weight":1,"surfaceText":"[[president]] AtLocation [[country]]"}
|
|
112
|
+
{"start":"/c/en/human","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[human]] IsA [[person]]"}
|
|
113
|
+
{"start":"/c/en/lawyer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[lawyer]] IsA [[person]]"}
|
|
114
|
+
{"start":"/c/en/lawyer","rel":"/r/CapableOf","end":"/c/en/give_legal_advice","weight":1,"surfaceText":"[[lawyer]] CapableOf [[give legal advice]]"}
|
|
115
|
+
{"start":"/c/en/lawyer","rel":"/r/AtLocation","end":"/c/en/office","weight":1,"surfaceText":"[[lawyer]] AtLocation [[office]]"}
|
|
116
|
+
{"start":"/c/en/engineer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[engineer]] IsA [[person]]"}
|
|
117
|
+
{"start":"/c/en/engineer","rel":"/r/CapableOf","end":"/c/en/build_things","weight":1,"surfaceText":"[[engineer]] CapableOf [[build things]]"}
|
|
118
|
+
{"start":"/c/en/engineer","rel":"/r/AtLocation","end":"/c/en/office","weight":1,"surfaceText":"[[engineer]] AtLocation [[office]]"}
|
|
119
|
+
{"start":"/c/en/driver","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[driver]] IsA [[person]]"}
|
|
120
|
+
{"start":"/c/en/driver","rel":"/r/CapableOf","end":"/c/en/drive","weight":1,"surfaceText":"[[driver]] CapableOf [[drive]]"}
|
|
121
|
+
{"start":"/c/en/driver","rel":"/r/UsedFor","end":"/c/en/transporting_people","weight":1,"surfaceText":"[[driver]] UsedFor [[transporting people]]"}
|
|
122
|
+
{"start":"/c/en/manager","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[manager]] IsA [[person]]"}
|
|
123
|
+
{"start":"/c/en/manager","rel":"/r/CapableOf","end":"/c/en/manage_a_team","weight":1,"surfaceText":"[[manager]] CapableOf [[manage a team]]"}
|
|
124
|
+
{"start":"/c/en/officer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[officer]] IsA [[person]]"}
|
|
125
|
+
{"start":"/c/en/officer","rel":"/r/CapableOf","end":"/c/en/enforce_law","weight":1,"surfaceText":"[[officer]] CapableOf [[enforce law]]"}
|
|
126
|
+
{"start":"/c/en/judge","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[judge]] IsA [[person]]"}
|
|
127
|
+
{"start":"/c/en/judge","rel":"/r/CapableOf","end":"/c/en/judge_a_case","weight":1,"surfaceText":"[[judge]] CapableOf [[judge a case]]"}
|
|
128
|
+
{"start":"/c/en/judge","rel":"/r/AtLocation","end":"/c/en/court","weight":1,"surfaceText":"[[judge]] AtLocation [[court]]"}
|
|
129
|
+
{"start":"/c/en/priest","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[priest]] IsA [[person]]"}
|
|
130
|
+
{"start":"/c/en/priest","rel":"/r/CapableOf","end":"/c/en/lead_worship","weight":1,"surfaceText":"[[priest]] CapableOf [[lead worship]]"}
|
|
131
|
+
{"start":"/c/en/priest","rel":"/r/AtLocation","end":"/c/en/church","weight":1,"surfaceText":"[[priest]] AtLocation [[church]]"}
|
|
132
|
+
{"start":"/c/en/servant","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[servant]] IsA [[person]]"}
|
|
133
|
+
{"start":"/c/en/servant","rel":"/r/CapableOf","end":"/c/en/serve","weight":1,"surfaceText":"[[servant]] CapableOf [[serve]]"}
|
|
134
|
+
{"start":"/c/en/employee","rel":"/r/IsA","end":"/c/en/worker","weight":1,"surfaceText":"[[employee]] IsA [[worker]]"}
|
|
135
|
+
{"start":"/c/en/employee","rel":"/r/CapableOf","end":"/c/en/work_for_a_company","weight":1,"surfaceText":"[[employee]] CapableOf [[work for a company]]"}
|
|
136
|
+
{"start":"/c/en/boss","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[boss]] IsA [[person]]"}
|
|
137
|
+
{"start":"/c/en/boss","rel":"/r/CapableOf","end":"/c/en/manage_employees","weight":1,"surfaceText":"[[boss]] CapableOf [[manage employees]]"}
|
|
138
|
+
{"start":"/c/en/husband","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[husband]] IsA [[person]]"}
|
|
139
|
+
{"start":"/c/en/husband","rel":"/r/HasProperty","end":"/c/en/married","weight":1,"surfaceText":"[[husband]] HasProperty [[married]]"}
|
|
140
|
+
{"start":"/c/en/husband","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[husband]] HasProperty [[male]]"}
|
|
141
|
+
{"start":"/c/en/wife","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[wife]] IsA [[person]]"}
|
|
142
|
+
{"start":"/c/en/wife","rel":"/r/HasProperty","end":"/c/en/married","weight":1,"surfaceText":"[[wife]] HasProperty [[married]]"}
|
|
143
|
+
{"start":"/c/en/wife","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[wife]] HasProperty [[female]]"}
|
|
144
|
+
{"start":"/c/en/son","rel":"/r/IsA","end":"/c/en/child","weight":1,"surfaceText":"[[son]] IsA [[child]]"}
|
|
145
|
+
{"start":"/c/en/son","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[son]] HasProperty [[male]]"}
|
|
146
|
+
{"start":"/c/en/daughter","rel":"/r/IsA","end":"/c/en/child","weight":1,"surfaceText":"[[daughter]] IsA [[child]]"}
|
|
147
|
+
{"start":"/c/en/daughter","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[daughter]] HasProperty [[female]]"}
|
|
148
|
+
{"start":"/c/en/grandmother","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[grandmother]] IsA [[person]]"}
|
|
149
|
+
{"start":"/c/en/grandmother","rel":"/r/PartOf","end":"/c/en/family","weight":1,"surfaceText":"[[grandmother]] PartOf [[family]]"}
|
|
150
|
+
{"start":"/c/en/grandmother","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[grandmother]] HasProperty [[female]]"}
|
|
151
|
+
{"start":"/c/en/grandfather","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[grandfather]] IsA [[person]]"}
|
|
152
|
+
{"start":"/c/en/grandfather","rel":"/r/PartOf","end":"/c/en/family","weight":1,"surfaceText":"[[grandfather]] PartOf [[family]]"}
|
|
153
|
+
{"start":"/c/en/grandfather","rel":"/r/HasProperty","end":"/c/en/male","weight":1,"surfaceText":"[[grandfather]] HasProperty [[male]]"}
|
|
154
|
+
{"start":"/c/en/citizen","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[citizen]] IsA [[person]]"}
|
|
155
|
+
{"start":"/c/en/citizen","rel":"/r/PartOf","end":"/c/en/country","weight":1,"surfaceText":"[[citizen]] PartOf [[country]]"}
|
|
156
|
+
{"start":"/c/en/customer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[customer]] IsA [[person]]"}
|
|
157
|
+
{"start":"/c/en/customer","rel":"/r/CapableOf","end":"/c/en/buy_things","weight":1,"surfaceText":"[[customer]] CapableOf [[buy things]]"}
|
|
158
|
+
{"start":"/c/en/leader","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[leader]] IsA [[person]]"}
|
|
159
|
+
{"start":"/c/en/leader","rel":"/r/CapableOf","end":"/c/en/lead","weight":1,"surfaceText":"[[leader]] CapableOf [[lead]]"}
|
|
160
|
+
{"start":"/c/en/champion","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[champion]] IsA [[person]]"}
|
|
161
|
+
{"start":"/c/en/champion","rel":"/r/CapableOf","end":"/c/en/win","weight":1,"surfaceText":"[[champion]] CapableOf [[win]]"}
|
|
162
|
+
{"start":"/c/en/volunteer","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[volunteer]] IsA [[person]]"}
|
|
163
|
+
{"start":"/c/en/volunteer","rel":"/r/CapableOf","end":"/c/en/help_without_pay","weight":1,"surfaceText":"[[volunteer]] CapableOf [[help without pay]]"}
|
|
164
|
+
{"start":"/c/en/resident","rel":"/r/IsA","end":"/c/en/person","weight":1,"surfaceText":"[[resident]] IsA [[person]]"}
|
|
165
|
+
{"start":"/c/en/resident","rel":"/r/AtLocation","end":"/c/en/house","weight":1,"surfaceText":"[[resident]] AtLocation [[house]]"}
|
|
166
|
+
{"start":"/c/en/place","rel":"/r/HasProperty","end":"/c/en/physical","weight":1,"surfaceText":"[[place]] HasProperty [[physical]]"}
|
|
167
|
+
{"start":"/c/en/place","rel":"/r/CapableOf","end":"/c/en/contain_things","weight":1,"surfaceText":"[[place]] CapableOf [[contain things]]"}
|
|
168
|
+
{"start":"/c/en/city","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[city]] IsA [[place]]"}
|
|
169
|
+
{"start":"/c/en/city","rel":"/r/HasA","end":"/c/en/building","weight":1,"surfaceText":"[[city]] HasA [[building]]"}
|
|
170
|
+
{"start":"/c/en/city","rel":"/r/HasA","end":"/c/en/street","weight":1,"surfaceText":"[[city]] HasA [[street]]"}
|
|
171
|
+
{"start":"/c/en/town","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[town]] IsA [[place]]"}
|
|
172
|
+
{"start":"/c/en/town","rel":"/r/HasProperty","end":"/c/en/small","weight":1,"surfaceText":"[[town]] HasProperty [[small]]"}
|
|
173
|
+
{"start":"/c/en/village","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[village]] IsA [[place]]"}
|
|
174
|
+
{"start":"/c/en/village","rel":"/r/HasProperty","end":"/c/en/small","weight":1,"surfaceText":"[[village]] HasProperty [[small]]"}
|
|
175
|
+
{"start":"/c/en/country","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[country]] IsA [[place]]"}
|
|
176
|
+
{"start":"/c/en/country","rel":"/r/HasA","end":"/c/en/city","weight":1,"surfaceText":"[[country]] HasA [[city]]"}
|
|
177
|
+
{"start":"/c/en/country","rel":"/r/HasA","end":"/c/en/government","weight":1,"surfaceText":"[[country]] HasA [[government]]"}
|
|
178
|
+
{"start":"/c/en/house","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[house]] IsA [[place]]"}
|
|
179
|
+
{"start":"/c/en/house","rel":"/r/PartOf","end":"/c/en/city","weight":1,"surfaceText":"[[house]] PartOf [[city]]"}
|
|
180
|
+
{"start":"/c/en/house","rel":"/r/HasA","end":"/c/en/room","weight":1,"surfaceText":"[[house]] HasA [[room]]"}
|
|
181
|
+
{"start":"/c/en/home","rel":"/r/IsA","end":"/c/en/house","weight":1,"surfaceText":"[[home]] IsA [[house]]"}
|
|
182
|
+
{"start":"/c/en/home","rel":"/r/HasProperty","end":"/c/en/comfortable","weight":1,"surfaceText":"[[home]] HasProperty [[comfortable]]"}
|
|
183
|
+
{"start":"/c/en/room","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[room]] IsA [[place]]"}
|
|
184
|
+
{"start":"/c/en/room","rel":"/r/PartOf","end":"/c/en/house","weight":1,"surfaceText":"[[room]] PartOf [[house]]"}
|
|
185
|
+
{"start":"/c/en/kitchen","rel":"/r/IsA","end":"/c/en/room","weight":1,"surfaceText":"[[kitchen]] IsA [[room]]"}
|
|
186
|
+
{"start":"/c/en/kitchen","rel":"/r/UsedFor","end":"/c/en/cooking","weight":1,"surfaceText":"[[kitchen]] UsedFor [[cooking]]"}
|
|
187
|
+
{"start":"/c/en/bedroom","rel":"/r/IsA","end":"/c/en/room","weight":1,"surfaceText":"[[bedroom]] IsA [[room]]"}
|
|
188
|
+
{"start":"/c/en/bedroom","rel":"/r/UsedFor","end":"/c/en/sleeping","weight":1,"surfaceText":"[[bedroom]] UsedFor [[sleeping]]"}
|
|
189
|
+
{"start":"/c/en/bathroom","rel":"/r/IsA","end":"/c/en/room","weight":1,"surfaceText":"[[bathroom]] IsA [[room]]"}
|
|
190
|
+
{"start":"/c/en/bathroom","rel":"/r/UsedFor","end":"/c/en/washing","weight":1,"surfaceText":"[[bathroom]] UsedFor [[washing]]"}
|
|
191
|
+
{"start":"/c/en/school","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[school]] IsA [[place]]"}
|
|
192
|
+
{"start":"/c/en/school","rel":"/r/UsedFor","end":"/c/en/teaching","weight":1,"surfaceText":"[[school]] UsedFor [[teaching]]"}
|
|
193
|
+
{"start":"/c/en/school","rel":"/r/HasA","end":"/c/en/teacher","weight":1,"surfaceText":"[[school]] HasA [[teacher]]"}
|
|
194
|
+
{"start":"/c/en/hospital","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[hospital]] IsA [[place]]"}
|
|
195
|
+
{"start":"/c/en/hospital","rel":"/r/UsedFor","end":"/c/en/treating_illness","weight":1,"surfaceText":"[[hospital]] UsedFor [[treating illness]]"}
|
|
196
|
+
{"start":"/c/en/hospital","rel":"/r/HasA","end":"/c/en/doctor","weight":1,"surfaceText":"[[hospital]] HasA [[doctor]]"}
|
|
197
|
+
{"start":"/c/en/shop","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[shop]] IsA [[place]]"}
|
|
198
|
+
{"start":"/c/en/shop","rel":"/r/UsedFor","end":"/c/en/selling_goods","weight":1,"surfaceText":"[[shop]] UsedFor [[selling goods]]"}
|
|
199
|
+
{"start":"/c/en/market","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[market]] IsA [[place]]"}
|
|
200
|
+
{"start":"/c/en/market","rel":"/r/UsedFor","end":"/c/en/selling_goods","weight":1,"surfaceText":"[[market]] UsedFor [[selling goods]]"}
|
|
201
|
+
{"start":"/c/en/church","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[church]] IsA [[place]]"}
|
|
202
|
+
{"start":"/c/en/church","rel":"/r/UsedFor","end":"/c/en/worship","weight":1,"surfaceText":"[[church]] UsedFor [[worship]]"}
|
|
203
|
+
{"start":"/c/en/park","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[park]] IsA [[place]]"}
|
|
204
|
+
{"start":"/c/en/park","rel":"/r/HasA","end":"/c/en/tree","weight":1,"surfaceText":"[[park]] HasA [[tree]]"}
|
|
205
|
+
{"start":"/c/en/park","rel":"/r/UsedFor","end":"/c/en/playing","weight":1,"surfaceText":"[[park]] UsedFor [[playing]]"}
|
|
206
|
+
{"start":"/c/en/garden","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[garden]] IsA [[place]]"}
|
|
207
|
+
{"start":"/c/en/garden","rel":"/r/HasA","end":"/c/en/flower","weight":1,"surfaceText":"[[garden]] HasA [[flower]]"}
|
|
208
|
+
{"start":"/c/en/garden","rel":"/r/UsedFor","end":"/c/en/growing_plants","weight":1,"surfaceText":"[[garden]] UsedFor [[growing plants]]"}
|
|
209
|
+
{"start":"/c/en/street","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[street]] IsA [[place]]"}
|
|
210
|
+
{"start":"/c/en/street","rel":"/r/PartOf","end":"/c/en/city","weight":1,"surfaceText":"[[street]] PartOf [[city]]"}
|
|
211
|
+
{"start":"/c/en/street","rel":"/r/HasA","end":"/c/en/car","weight":1,"surfaceText":"[[street]] HasA [[car]]"}
|
|
212
|
+
{"start":"/c/en/road","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[road]] IsA [[place]]"}
|
|
213
|
+
{"start":"/c/en/road","rel":"/r/UsedFor","end":"/c/en/traveling","weight":1,"surfaceText":"[[road]] UsedFor [[traveling]]"}
|
|
214
|
+
{"start":"/c/en/bridge","rel":"/r/IsA","end":"/c/en/structure","weight":1,"surfaceText":"[[bridge]] IsA [[structure]]"}
|
|
215
|
+
{"start":"/c/en/bridge","rel":"/r/UsedFor","end":"/c/en/crossing_a_river","weight":1,"surfaceText":"[[bridge]] UsedFor [[crossing a river]]"}
|
|
216
|
+
{"start":"/c/en/farm","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[farm]] IsA [[place]]"}
|
|
217
|
+
{"start":"/c/en/farm","rel":"/r/UsedFor","end":"/c/en/growing_food","weight":1,"surfaceText":"[[farm]] UsedFor [[growing food]]"}
|
|
218
|
+
{"start":"/c/en/farm","rel":"/r/HasA","end":"/c/en/farmer","weight":1,"surfaceText":"[[farm]] HasA [[farmer]]"}
|
|
219
|
+
{"start":"/c/en/office","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[office]] IsA [[place]]"}
|
|
220
|
+
{"start":"/c/en/office","rel":"/r/UsedFor","end":"/c/en/working","weight":1,"surfaceText":"[[office]] UsedFor [[working]]"}
|
|
221
|
+
{"start":"/c/en/factory","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[factory]] IsA [[place]]"}
|
|
222
|
+
{"start":"/c/en/factory","rel":"/r/UsedFor","end":"/c/en/making_goods","weight":1,"surfaceText":"[[factory]] UsedFor [[making goods]]"}
|
|
223
|
+
{"start":"/c/en/library","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[library]] IsA [[place]]"}
|
|
224
|
+
{"start":"/c/en/library","rel":"/r/HasA","end":"/c/en/book","weight":1,"surfaceText":"[[library]] HasA [[book]]"}
|
|
225
|
+
{"start":"/c/en/library","rel":"/r/UsedFor","end":"/c/en/reading","weight":1,"surfaceText":"[[library]] UsedFor [[reading]]"}
|
|
226
|
+
{"start":"/c/en/museum","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[museum]] IsA [[place]]"}
|
|
227
|
+
{"start":"/c/en/museum","rel":"/r/HasA","end":"/c/en/artifact","weight":1,"surfaceText":"[[museum]] HasA [[artifact]]"}
|
|
228
|
+
{"start":"/c/en/museum","rel":"/r/UsedFor","end":"/c/en/learning","weight":1,"surfaceText":"[[museum]] UsedFor [[learning]]"}
|
|
229
|
+
{"start":"/c/en/hotel","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[hotel]] IsA [[place]]"}
|
|
230
|
+
{"start":"/c/en/hotel","rel":"/r/UsedFor","end":"/c/en/sleeping","weight":1,"surfaceText":"[[hotel]] UsedFor [[sleeping]]"}
|
|
231
|
+
{"start":"/c/en/airport","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[airport]] IsA [[place]]"}
|
|
232
|
+
{"start":"/c/en/airport","rel":"/r/UsedFor","end":"/c/en/traveling_by_plane","weight":1,"surfaceText":"[[airport]] UsedFor [[traveling by plane]]"}
|
|
233
|
+
{"start":"/c/en/stadium","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[stadium]] IsA [[place]]"}
|
|
234
|
+
{"start":"/c/en/stadium","rel":"/r/UsedFor","end":"/c/en/playing_a_game","weight":1,"surfaceText":"[[stadium]] UsedFor [[playing a game]]"}
|
|
235
|
+
{"start":"/c/en/court","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[court]] IsA [[place]]"}
|
|
236
|
+
{"start":"/c/en/court","rel":"/r/UsedFor","end":"/c/en/judging_a_case","weight":1,"surfaceText":"[[court]] UsedFor [[judging a case]]"}
|
|
237
|
+
{"start":"/c/en/castle","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[castle]] IsA [[place]]"}
|
|
238
|
+
{"start":"/c/en/castle","rel":"/r/HasProperty","end":"/c/en/old","weight":1,"surfaceText":"[[castle]] HasProperty [[old]]"}
|
|
239
|
+
{"start":"/c/en/castle","rel":"/r/UsedFor","end":"/c/en/defense","weight":1,"surfaceText":"[[castle]] UsedFor [[defense]]"}
|
|
240
|
+
{"start":"/c/en/beach","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[beach]] IsA [[place]]"}
|
|
241
|
+
{"start":"/c/en/beach","rel":"/r/HasA","end":"/c/en/sand","weight":1,"surfaceText":"[[beach]] HasA [[sand]]"}
|
|
242
|
+
{"start":"/c/en/forest","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[forest]] IsA [[place]]"}
|
|
243
|
+
{"start":"/c/en/forest","rel":"/r/HasA","end":"/c/en/tree","weight":1,"surfaceText":"[[forest]] HasA [[tree]]"}
|
|
244
|
+
{"start":"/c/en/mountain","rel":"/r/IsA","end":"/c/en/place","weight":1,"surfaceText":"[[mountain]] IsA [[place]]"}
|
|
245
|
+
{"start":"/c/en/mountain","rel":"/r/HasProperty","end":"/c/en/tall","weight":1,"surfaceText":"[[mountain]] HasProperty [[tall]]"}
|
|
246
|
+
{"start":"/c/en/hat","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[hat]] IsA [[clothing]]"}
|
|
247
|
+
{"start":"/c/en/hat","rel":"/r/UsedFor","end":"/c/en/covering_the_head","weight":1,"surfaceText":"[[hat]] UsedFor [[covering the head]]"}
|
|
248
|
+
{"start":"/c/en/shirt","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[shirt]] IsA [[clothing]]"}
|
|
249
|
+
{"start":"/c/en/shirt","rel":"/r/PartOf","end":"/c/en/outfit","weight":1,"surfaceText":"[[shirt]] PartOf [[outfit]]"}
|
|
250
|
+
{"start":"/c/en/coat","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[coat]] IsA [[clothing]]"}
|
|
251
|
+
{"start":"/c/en/coat","rel":"/r/UsedFor","end":"/c/en/keeping_warm","weight":1,"surfaceText":"[[coat]] UsedFor [[keeping warm]]"}
|
|
252
|
+
{"start":"/c/en/shoe","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[shoe]] IsA [[clothing]]"}
|
|
253
|
+
{"start":"/c/en/shoe","rel":"/r/PartOf","end":"/c/en/outfit","weight":1,"surfaceText":"[[shoe]] PartOf [[outfit]]"}
|
|
254
|
+
{"start":"/c/en/dress","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[dress]] IsA [[clothing]]"}
|
|
255
|
+
{"start":"/c/en/dress","rel":"/r/HasProperty","end":"/c/en/female","weight":1,"surfaceText":"[[dress]] HasProperty [[female]]"}
|
|
256
|
+
{"start":"/c/en/clothing","rel":"/r/HasProperty","end":"/c/en/wearable","weight":1,"surfaceText":"[[clothing]] HasProperty [[wearable]]"}
|
|
257
|
+
{"start":"/c/en/clothing","rel":"/r/UsedFor","end":"/c/en/covering_the_body","weight":1,"surfaceText":"[[clothing]] UsedFor [[covering the body]]"}
|
|
258
|
+
{"start":"/c/en/table","rel":"/r/IsA","end":"/c/en/furniture","weight":1,"surfaceText":"[[table]] IsA [[furniture]]"}
|
|
259
|
+
{"start":"/c/en/table","rel":"/r/UsedFor","end":"/c/en/holding_things","weight":1,"surfaceText":"[[table]] UsedFor [[holding things]]"}
|
|
260
|
+
{"start":"/c/en/chair","rel":"/r/IsA","end":"/c/en/furniture","weight":1,"surfaceText":"[[chair]] IsA [[furniture]]"}
|
|
261
|
+
{"start":"/c/en/chair","rel":"/r/UsedFor","end":"/c/en/sitting","weight":1,"surfaceText":"[[chair]] UsedFor [[sitting]]"}
|
|
262
|
+
{"start":"/c/en/bed","rel":"/r/IsA","end":"/c/en/furniture","weight":1,"surfaceText":"[[bed]] IsA [[furniture]]"}
|
|
263
|
+
{"start":"/c/en/bed","rel":"/r/UsedFor","end":"/c/en/sleeping","weight":1,"surfaceText":"[[bed]] UsedFor [[sleeping]]"}
|
|
264
|
+
{"start":"/c/en/door","rel":"/r/PartOf","end":"/c/en/house","weight":1,"surfaceText":"[[door]] PartOf [[house]]"}
|
|
265
|
+
{"start":"/c/en/door","rel":"/r/UsedFor","end":"/c/en/entering_a_room","weight":1,"surfaceText":"[[door]] UsedFor [[entering a room]]"}
|
|
266
|
+
{"start":"/c/en/window","rel":"/r/PartOf","end":"/c/en/house","weight":1,"surfaceText":"[[window]] PartOf [[house]]"}
|
|
267
|
+
{"start":"/c/en/window","rel":"/r/UsedFor","end":"/c/en/letting_in_light","weight":1,"surfaceText":"[[window]] UsedFor [[letting in light]]"}
|
|
268
|
+
{"start":"/c/en/wall","rel":"/r/PartOf","end":"/c/en/house","weight":1,"surfaceText":"[[wall]] PartOf [[house]]"}
|
|
269
|
+
{"start":"/c/en/wall","rel":"/r/UsedFor","end":"/c/en/dividing_rooms","weight":1,"surfaceText":"[[wall]] UsedFor [[dividing rooms]]"}
|
|
270
|
+
{"start":"/c/en/roof","rel":"/r/PartOf","end":"/c/en/house","weight":1,"surfaceText":"[[roof]] PartOf [[house]]"}
|
|
271
|
+
{"start":"/c/en/roof","rel":"/r/UsedFor","end":"/c/en/covering_a_building","weight":1,"surfaceText":"[[roof]] UsedFor [[covering a building]]"}
|
|
272
|
+
{"start":"/c/en/pen","rel":"/r/UsedFor","end":"/c/en/writing","weight":1,"surfaceText":"[[pen]] UsedFor [[writing]]"}
|
|
273
|
+
{"start":"/c/en/pen","rel":"/r/MadeOf","end":"/c/en/plastic","weight":1,"surfaceText":"[[pen]] MadeOf [[plastic]]"}
|
|
274
|
+
{"start":"/c/en/paper","rel":"/r/UsedFor","end":"/c/en/writing","weight":1,"surfaceText":"[[paper]] UsedFor [[writing]]"}
|
|
275
|
+
{"start":"/c/en/paper","rel":"/r/MadeOf","end":"/c/en/wood","weight":1,"surfaceText":"[[paper]] MadeOf [[wood]]"}
|
|
276
|
+
{"start":"/c/en/key","rel":"/r/UsedFor","end":"/c/en/opening_a_lock","weight":1,"surfaceText":"[[key]] UsedFor [[opening a lock]]"}
|
|
277
|
+
{"start":"/c/en/key","rel":"/r/PartOf","end":"/c/en/lock_and_key","weight":1,"surfaceText":"[[key]] PartOf [[lock and key]]"}
|
|
278
|
+
{"start":"/c/en/lock","rel":"/r/UsedFor","end":"/c/en/securing_a_door","weight":1,"surfaceText":"[[lock]] UsedFor [[securing a door]]"}
|
|
279
|
+
{"start":"/c/en/lock","rel":"/r/HasA","end":"/c/en/key","weight":1,"surfaceText":"[[lock]] HasA [[key]]"}
|
|
280
|
+
{"start":"/c/en/box","rel":"/r/UsedFor","end":"/c/en/storing_things","weight":1,"surfaceText":"[[box]] UsedFor [[storing things]]"}
|
|
281
|
+
{"start":"/c/en/box","rel":"/r/MadeOf","end":"/c/en/cardboard","weight":1,"surfaceText":"[[box]] MadeOf [[cardboard]]"}
|
|
282
|
+
{"start":"/c/en/car","rel":"/r/IsA","end":"/c/en/vehicle","weight":1,"surfaceText":"[[car]] IsA [[vehicle]]"}
|
|
283
|
+
{"start":"/c/en/car","rel":"/r/HasA","end":"/c/en/wheel","weight":1,"surfaceText":"[[car]] HasA [[wheel]]"}
|
|
284
|
+
{"start":"/c/en/car","rel":"/r/UsedFor","end":"/c/en/traveling","weight":1,"surfaceText":"[[car]] UsedFor [[traveling]]"}
|
|
285
|
+
{"start":"/c/en/bicycle","rel":"/r/IsA","end":"/c/en/vehicle","weight":1,"surfaceText":"[[bicycle]] IsA [[vehicle]]"}
|
|
286
|
+
{"start":"/c/en/bicycle","rel":"/r/HasA","end":"/c/en/wheel","weight":1,"surfaceText":"[[bicycle]] HasA [[wheel]]"}
|
|
287
|
+
{"start":"/c/en/bicycle","rel":"/r/CapableOf","end":"/c/en/carry_a_person","weight":1,"surfaceText":"[[bicycle]] CapableOf [[carry a person]]"}
|
|
288
|
+
{"start":"/c/en/boat","rel":"/r/IsA","end":"/c/en/vehicle","weight":1,"surfaceText":"[[boat]] IsA [[vehicle]]"}
|
|
289
|
+
{"start":"/c/en/boat","rel":"/r/UsedFor","end":"/c/en/traveling_on_water","weight":1,"surfaceText":"[[boat]] UsedFor [[traveling on water]]"}
|
|
290
|
+
{"start":"/c/en/train","rel":"/r/IsA","end":"/c/en/vehicle","weight":1,"surfaceText":"[[train]] IsA [[vehicle]]"}
|
|
291
|
+
{"start":"/c/en/train","rel":"/r/UsedFor","end":"/c/en/traveling","weight":1,"surfaceText":"[[train]] UsedFor [[traveling]]"}
|
|
292
|
+
{"start":"/c/en/train","rel":"/r/HasA","end":"/c/en/wheel","weight":1,"surfaceText":"[[train]] HasA [[wheel]]"}
|
|
293
|
+
{"start":"/c/en/wheel","rel":"/r/PartOf","end":"/c/en/vehicle","weight":1,"surfaceText":"[[wheel]] PartOf [[vehicle]]"}
|
|
294
|
+
{"start":"/c/en/wheel","rel":"/r/HasProperty","end":"/c/en/round","weight":1,"surfaceText":"[[wheel]] HasProperty [[round]]"}
|
|
295
|
+
{"start":"/c/en/knife","rel":"/r/UsedFor","end":"/c/en/cutting","weight":1,"surfaceText":"[[knife]] UsedFor [[cutting]]"}
|
|
296
|
+
{"start":"/c/en/knife","rel":"/r/HasProperty","end":"/c/en/sharp","weight":1,"surfaceText":"[[knife]] HasProperty [[sharp]]"}
|
|
297
|
+
{"start":"/c/en/spoon","rel":"/r/UsedFor","end":"/c/en/eating","weight":1,"surfaceText":"[[spoon]] UsedFor [[eating]]"}
|
|
298
|
+
{"start":"/c/en/spoon","rel":"/r/PartOf","end":"/c/en/cutlery","weight":1,"surfaceText":"[[spoon]] PartOf [[cutlery]]"}
|
|
299
|
+
{"start":"/c/en/fork","rel":"/r/UsedFor","end":"/c/en/eating","weight":1,"surfaceText":"[[fork]] UsedFor [[eating]]"}
|
|
300
|
+
{"start":"/c/en/fork","rel":"/r/PartOf","end":"/c/en/cutlery","weight":1,"surfaceText":"[[fork]] PartOf [[cutlery]]"}
|
|
301
|
+
{"start":"/c/en/plate","rel":"/r/UsedFor","end":"/c/en/holding_food","weight":1,"surfaceText":"[[plate]] UsedFor [[holding food]]"}
|
|
302
|
+
{"start":"/c/en/plate","rel":"/r/MadeOf","end":"/c/en/ceramic","weight":1,"surfaceText":"[[plate]] MadeOf [[ceramic]]"}
|
|
303
|
+
{"start":"/c/en/cup","rel":"/r/UsedFor","end":"/c/en/drinking","weight":1,"surfaceText":"[[cup]] UsedFor [[drinking]]"}
|
|
304
|
+
{"start":"/c/en/cup","rel":"/r/MadeOf","end":"/c/en/ceramic","weight":1,"surfaceText":"[[cup]] MadeOf [[ceramic]]"}
|
|
305
|
+
{"start":"/c/en/bottle","rel":"/r/UsedFor","end":"/c/en/storing_liquid","weight":1,"surfaceText":"[[bottle]] UsedFor [[storing liquid]]"}
|
|
306
|
+
{"start":"/c/en/bottle","rel":"/r/MadeOf","end":"/c/en/glass","weight":1,"surfaceText":"[[bottle]] MadeOf [[glass]]"}
|
|
307
|
+
{"start":"/c/en/bag","rel":"/r/UsedFor","end":"/c/en/carrying_things","weight":1,"surfaceText":"[[bag]] UsedFor [[carrying things]]"}
|
|
308
|
+
{"start":"/c/en/bag","rel":"/r/HasA","end":"/c/en/handle","weight":1,"surfaceText":"[[bag]] HasA [[handle]]"}
|
|
309
|
+
{"start":"/c/en/money","rel":"/r/UsedFor","end":"/c/en/buying_things","weight":1,"surfaceText":"[[money]] UsedFor [[buying things]]"}
|
|
310
|
+
{"start":"/c/en/money","rel":"/r/HasProperty","end":"/c/en/valuable","weight":1,"surfaceText":"[[money]] HasProperty [[valuable]]"}
|
|
311
|
+
{"start":"/c/en/coin","rel":"/r/IsA","end":"/c/en/money","weight":1,"surfaceText":"[[coin]] IsA [[money]]"}
|
|
312
|
+
{"start":"/c/en/coin","rel":"/r/MadeOf","end":"/c/en/metal","weight":1,"surfaceText":"[[coin]] MadeOf [[metal]]"}
|
|
313
|
+
{"start":"/c/en/toy","rel":"/r/UsedFor","end":"/c/en/playing","weight":1,"surfaceText":"[[toy]] UsedFor [[playing]]"}
|
|
314
|
+
{"start":"/c/en/toy","rel":"/r/CapableOf","end":"/c/en/entertain_a_child","weight":1,"surfaceText":"[[toy]] CapableOf [[entertain a child]]"}
|
|
315
|
+
{"start":"/c/en/tool","rel":"/r/UsedFor","end":"/c/en/working","weight":1,"surfaceText":"[[tool]] UsedFor [[working]]"}
|
|
316
|
+
{"start":"/c/en/tool","rel":"/r/CapableOf","end":"/c/en/help_build_things","weight":1,"surfaceText":"[[tool]] CapableOf [[help build things]]"}
|
|
317
|
+
{"start":"/c/en/machine","rel":"/r/CapableOf","end":"/c/en/do_work","weight":1,"surfaceText":"[[machine]] CapableOf [[do work]]"}
|
|
318
|
+
{"start":"/c/en/machine","rel":"/r/HasProperty","end":"/c/en/mechanical","weight":1,"surfaceText":"[[machine]] HasProperty [[mechanical]]"}
|
|
319
|
+
{"start":"/c/en/clock","rel":"/r/UsedFor","end":"/c/en/telling_time","weight":1,"surfaceText":"[[clock]] UsedFor [[telling time]]"}
|
|
320
|
+
{"start":"/c/en/clock","rel":"/r/HasA","end":"/c/en/hand","weight":1,"surfaceText":"[[clock]] HasA [[hand]]"}
|
|
321
|
+
{"start":"/c/en/phone","rel":"/r/UsedFor","end":"/c/en/communicating","weight":1,"surfaceText":"[[phone]] UsedFor [[communicating]]"}
|
|
322
|
+
{"start":"/c/en/phone","rel":"/r/CapableOf","end":"/c/en/make_calls","weight":1,"surfaceText":"[[phone]] CapableOf [[make calls]]"}
|
|
323
|
+
{"start":"/c/en/book","rel":"/r/MadeOf","end":"/c/en/paper","weight":1,"surfaceText":"[[book]] MadeOf [[paper]]"}
|
|
324
|
+
{"start":"/c/en/book","rel":"/r/UsedFor","end":"/c/en/reading","weight":1,"surfaceText":"[[book]] UsedFor [[reading]]"}
|
|
325
|
+
{"start":"/c/en/letter","rel":"/r/MadeOf","end":"/c/en/paper","weight":1,"surfaceText":"[[letter]] MadeOf [[paper]]"}
|
|
326
|
+
{"start":"/c/en/letter","rel":"/r/UsedFor","end":"/c/en/communicating","weight":1,"surfaceText":"[[letter]] UsedFor [[communicating]]"}
|
|
327
|
+
{"start":"/c/en/umbrella","rel":"/r/UsedFor","end":"/c/en/staying_dry","weight":1,"surfaceText":"[[umbrella]] UsedFor [[staying dry]]"}
|
|
328
|
+
{"start":"/c/en/umbrella","rel":"/r/CapableOf","end":"/c/en/block_rain","weight":1,"surfaceText":"[[umbrella]] CapableOf [[block rain]]"}
|
|
329
|
+
{"start":"/c/en/glove","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[glove]] IsA [[clothing]]"}
|
|
330
|
+
{"start":"/c/en/glove","rel":"/r/UsedFor","end":"/c/en/covering_the_hand","weight":1,"surfaceText":"[[glove]] UsedFor [[covering the hand]]"}
|
|
331
|
+
{"start":"/c/en/sock","rel":"/r/IsA","end":"/c/en/clothing","weight":1,"surfaceText":"[[sock]] IsA [[clothing]]"}
|
|
332
|
+
{"start":"/c/en/sock","rel":"/r/PartOf","end":"/c/en/outfit","weight":1,"surfaceText":"[[sock]] PartOf [[outfit]]"}
|
|
333
|
+
{"start":"/c/en/ring","rel":"/r/IsA","end":"/c/en/jewelry","weight":1,"surfaceText":"[[ring]] IsA [[jewelry]]"}
|
|
334
|
+
{"start":"/c/en/ring","rel":"/r/MadeOf","end":"/c/en/gold","weight":1,"surfaceText":"[[ring]] MadeOf [[gold]]"}
|
|
335
|
+
{"start":"/c/en/watch","rel":"/r/UsedFor","end":"/c/en/telling_time","weight":1,"surfaceText":"[[watch]] UsedFor [[telling time]]"}
|
|
336
|
+
{"start":"/c/en/watch","rel":"/r/PartOf","end":"/c/en/jewelry","weight":1,"surfaceText":"[[watch]] PartOf [[jewelry]]"}
|
|
337
|
+
{"start":"/c/en/mirror","rel":"/r/UsedFor","end":"/c/en/seeing_your_reflection","weight":1,"surfaceText":"[[mirror]] UsedFor [[seeing your reflection]]"}
|
|
338
|
+
{"start":"/c/en/mirror","rel":"/r/MadeOf","end":"/c/en/glass","weight":1,"surfaceText":"[[mirror]] MadeOf [[glass]]"}
|
|
339
|
+
{"start":"/c/en/candle","rel":"/r/UsedFor","end":"/c/en/giving_light","weight":1,"surfaceText":"[[candle]] UsedFor [[giving light]]"}
|
|
340
|
+
{"start":"/c/en/candle","rel":"/r/MadeOf","end":"/c/en/wax","weight":1,"surfaceText":"[[candle]] MadeOf [[wax]]"}
|
|
341
|
+
{"start":"/c/en/ladder","rel":"/r/UsedFor","end":"/c/en/climbing","weight":1,"surfaceText":"[[ladder]] UsedFor [[climbing]]"}
|
|
342
|
+
{"start":"/c/en/ladder","rel":"/r/MadeOf","end":"/c/en/wood","weight":1,"surfaceText":"[[ladder]] MadeOf [[wood]]"}
|
|
343
|
+
{"start":"/c/en/hammer","rel":"/r/UsedFor","end":"/c/en/hitting_nails","weight":1,"surfaceText":"[[hammer]] UsedFor [[hitting nails]]"}
|
|
344
|
+
{"start":"/c/en/hammer","rel":"/r/PartOf","end":"/c/en/toolbox","weight":1,"surfaceText":"[[hammer]] PartOf [[toolbox]]"}
|
|
345
|
+
{"start":"/c/en/basket","rel":"/r/UsedFor","end":"/c/en/carrying_things","weight":1,"surfaceText":"[[basket]] UsedFor [[carrying things]]"}
|
|
346
|
+
{"start":"/c/en/basket","rel":"/r/MadeOf","end":"/c/en/woven_material","weight":1,"surfaceText":"[[basket]] MadeOf [[woven material]]"}
|
|
347
|
+
{"start":"/c/en/wallet","rel":"/r/UsedFor","end":"/c/en/carrying_money","weight":1,"surfaceText":"[[wallet]] UsedFor [[carrying money]]"}
|
|
348
|
+
{"start":"/c/en/wallet","rel":"/r/PartOf","end":"/c/en/outfit","weight":1,"surfaceText":"[[wallet]] PartOf [[outfit]]"}
|
|
349
|
+
{"start":"/c/en/dog","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[dog]] IsA [[animal]]"}
|
|
350
|
+
{"start":"/c/en/dog","rel":"/r/HasA","end":"/c/en/tail","weight":1,"surfaceText":"[[dog]] HasA [[tail]]"}
|
|
351
|
+
{"start":"/c/en/dog","rel":"/r/CapableOf","end":"/c/en/bark","weight":1,"surfaceText":"[[dog]] CapableOf [[bark]]"}
|
|
352
|
+
{"start":"/c/en/cat","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[cat]] IsA [[animal]]"}
|
|
353
|
+
{"start":"/c/en/cat","rel":"/r/CapableOf","end":"/c/en/meow","weight":1,"surfaceText":"[[cat]] CapableOf [[meow]]"}
|
|
354
|
+
{"start":"/c/en/cat","rel":"/r/HasA","end":"/c/en/fur","weight":1,"surfaceText":"[[cat]] HasA [[fur]]"}
|
|
355
|
+
{"start":"/c/en/horse","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[horse]] IsA [[animal]]"}
|
|
356
|
+
{"start":"/c/en/horse","rel":"/r/CapableOf","end":"/c/en/run","weight":1,"surfaceText":"[[horse]] CapableOf [[run]]"}
|
|
357
|
+
{"start":"/c/en/horse","rel":"/r/UsedFor","end":"/c/en/riding","weight":1,"surfaceText":"[[horse]] UsedFor [[riding]]"}
|
|
358
|
+
{"start":"/c/en/cow","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[cow]] IsA [[animal]]"}
|
|
359
|
+
{"start":"/c/en/cow","rel":"/r/UsedFor","end":"/c/en/producing_milk","weight":1,"surfaceText":"[[cow]] UsedFor [[producing milk]]"}
|
|
360
|
+
{"start":"/c/en/pig","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[pig]] IsA [[animal]]"}
|
|
361
|
+
{"start":"/c/en/pig","rel":"/r/HasProperty","end":"/c/en/pink","weight":1,"surfaceText":"[[pig]] HasProperty [[pink]]"}
|
|
362
|
+
{"start":"/c/en/sheep","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[sheep]] IsA [[animal]]"}
|
|
363
|
+
{"start":"/c/en/sheep","rel":"/r/HasA","end":"/c/en/wool","weight":1,"surfaceText":"[[sheep]] HasA [[wool]]"}
|
|
364
|
+
{"start":"/c/en/bird","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[bird]] IsA [[animal]]"}
|
|
365
|
+
{"start":"/c/en/bird","rel":"/r/HasA","end":"/c/en/feather","weight":1,"surfaceText":"[[bird]] HasA [[feather]]"}
|
|
366
|
+
{"start":"/c/en/bird","rel":"/r/CapableOf","end":"/c/en/fly","weight":1,"surfaceText":"[[bird]] CapableOf [[fly]]"}
|
|
367
|
+
{"start":"/c/en/fish","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[fish]] IsA [[animal]]"}
|
|
368
|
+
{"start":"/c/en/fish","rel":"/r/AtLocation","end":"/c/en/water","weight":1,"surfaceText":"[[fish]] AtLocation [[water]]"}
|
|
369
|
+
{"start":"/c/en/fish","rel":"/r/CapableOf","end":"/c/en/swim","weight":1,"surfaceText":"[[fish]] CapableOf [[swim]]"}
|
|
370
|
+
{"start":"/c/en/mouse","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[mouse]] IsA [[animal]]"}
|
|
371
|
+
{"start":"/c/en/mouse","rel":"/r/HasProperty","end":"/c/en/small","weight":1,"surfaceText":"[[mouse]] HasProperty [[small]]"}
|
|
372
|
+
{"start":"/c/en/rabbit","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[rabbit]] IsA [[animal]]"}
|
|
373
|
+
{"start":"/c/en/rabbit","rel":"/r/CapableOf","end":"/c/en/hop","weight":1,"surfaceText":"[[rabbit]] CapableOf [[hop]]"}
|
|
374
|
+
{"start":"/c/en/bear","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[bear]] IsA [[animal]]"}
|
|
375
|
+
{"start":"/c/en/bear","rel":"/r/HasProperty","end":"/c/en/large","weight":1,"surfaceText":"[[bear]] HasProperty [[large]]"}
|
|
376
|
+
{"start":"/c/en/lion","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[lion]] IsA [[animal]]"}
|
|
377
|
+
{"start":"/c/en/lion","rel":"/r/CapableOf","end":"/c/en/roar","weight":1,"surfaceText":"[[lion]] CapableOf [[roar]]"}
|
|
378
|
+
{"start":"/c/en/tiger","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[tiger]] IsA [[animal]]"}
|
|
379
|
+
{"start":"/c/en/tiger","rel":"/r/HasProperty","end":"/c/en/striped","weight":1,"surfaceText":"[[tiger]] HasProperty [[striped]]"}
|
|
380
|
+
{"start":"/c/en/elephant","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[elephant]] IsA [[animal]]"}
|
|
381
|
+
{"start":"/c/en/elephant","rel":"/r/HasProperty","end":"/c/en/large","weight":1,"surfaceText":"[[elephant]] HasProperty [[large]]"}
|
|
382
|
+
{"start":"/c/en/elephant","rel":"/r/HasA","end":"/c/en/trunk","weight":1,"surfaceText":"[[elephant]] HasA [[trunk]]"}
|
|
383
|
+
{"start":"/c/en/snake","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[snake]] IsA [[animal]]"}
|
|
384
|
+
{"start":"/c/en/snake","rel":"/r/HasProperty","end":"/c/en/legless","weight":1,"surfaceText":"[[snake]] HasProperty [[legless]]"}
|
|
385
|
+
{"start":"/c/en/tree","rel":"/r/IsA","end":"/c/en/plant","weight":1,"surfaceText":"[[tree]] IsA [[plant]]"}
|
|
386
|
+
{"start":"/c/en/tree","rel":"/r/HasA","end":"/c/en/leaf","weight":1,"surfaceText":"[[tree]] HasA [[leaf]]"}
|
|
387
|
+
{"start":"/c/en/tree","rel":"/r/HasA","end":"/c/en/root","weight":1,"surfaceText":"[[tree]] HasA [[root]]"}
|
|
388
|
+
{"start":"/c/en/flower","rel":"/r/IsA","end":"/c/en/plant","weight":1,"surfaceText":"[[flower]] IsA [[plant]]"}
|
|
389
|
+
{"start":"/c/en/flower","rel":"/r/HasProperty","end":"/c/en/colorful","weight":1,"surfaceText":"[[flower]] HasProperty [[colorful]]"}
|
|
390
|
+
{"start":"/c/en/grass","rel":"/r/IsA","end":"/c/en/plant","weight":1,"surfaceText":"[[grass]] IsA [[plant]]"}
|
|
391
|
+
{"start":"/c/en/grass","rel":"/r/AtLocation","end":"/c/en/ground","weight":1,"surfaceText":"[[grass]] AtLocation [[ground]]"}
|
|
392
|
+
{"start":"/c/en/leaf","rel":"/r/PartOf","end":"/c/en/plant","weight":1,"surfaceText":"[[leaf]] PartOf [[plant]]"}
|
|
393
|
+
{"start":"/c/en/leaf","rel":"/r/CapableOf","end":"/c/en/photosynthesize","weight":1,"surfaceText":"[[leaf]] CapableOf [[photosynthesize]]"}
|
|
394
|
+
{"start":"/c/en/root","rel":"/r/PartOf","end":"/c/en/plant","weight":1,"surfaceText":"[[root]] PartOf [[plant]]"}
|
|
395
|
+
{"start":"/c/en/root","rel":"/r/AtLocation","end":"/c/en/underground","weight":1,"surfaceText":"[[root]] AtLocation [[underground]]"}
|
|
396
|
+
{"start":"/c/en/seed","rel":"/r/PartOf","end":"/c/en/plant","weight":1,"surfaceText":"[[seed]] PartOf [[plant]]"}
|
|
397
|
+
{"start":"/c/en/seed","rel":"/r/CapableOf","end":"/c/en/grow_into_a_plant","weight":1,"surfaceText":"[[seed]] CapableOf [[grow into a plant]]"}
|
|
398
|
+
{"start":"/c/en/fruit","rel":"/r/PartOf","end":"/c/en/plant","weight":1,"surfaceText":"[[fruit]] PartOf [[plant]]"}
|
|
399
|
+
{"start":"/c/en/fruit","rel":"/r/UsedFor","end":"/c/en/eating","weight":1,"surfaceText":"[[fruit]] UsedFor [[eating]]"}
|
|
400
|
+
{"start":"/c/en/water","rel":"/r/IsA","end":"/c/en/liquid","weight":1,"surfaceText":"[[water]] IsA [[liquid]]"}
|
|
401
|
+
{"start":"/c/en/water","rel":"/r/UsedFor","end":"/c/en/drinking","weight":1,"surfaceText":"[[water]] UsedFor [[drinking]]"}
|
|
402
|
+
{"start":"/c/en/air","rel":"/r/UsedFor","end":"/c/en/breathing","weight":1,"surfaceText":"[[air]] UsedFor [[breathing]]"}
|
|
403
|
+
{"start":"/c/en/air","rel":"/r/AtLocation","end":"/c/en/sky","weight":1,"surfaceText":"[[air]] AtLocation [[sky]]"}
|
|
404
|
+
{"start":"/c/en/fire","rel":"/r/CapableOf","end":"/c/en/produce_heat","weight":1,"surfaceText":"[[fire]] CapableOf [[produce heat]]"}
|
|
405
|
+
{"start":"/c/en/fire","rel":"/r/CapableOf","end":"/c/en/produce_light","weight":1,"surfaceText":"[[fire]] CapableOf [[produce light]]"}
|
|
406
|
+
{"start":"/c/en/earth","rel":"/r/IsA","end":"/c/en/planet","weight":1,"surfaceText":"[[earth]] IsA [[planet]]"}
|
|
407
|
+
{"start":"/c/en/earth","rel":"/r/HasA","end":"/c/en/ocean","weight":1,"surfaceText":"[[earth]] HasA [[ocean]]"}
|
|
408
|
+
{"start":"/c/en/stone","rel":"/r/IsA","end":"/c/en/material","weight":1,"surfaceText":"[[stone]] IsA [[material]]"}
|
|
409
|
+
{"start":"/c/en/stone","rel":"/r/HasProperty","end":"/c/en/hard","weight":1,"surfaceText":"[[stone]] HasProperty [[hard]]"}
|
|
410
|
+
{"start":"/c/en/sand","rel":"/r/AtLocation","end":"/c/en/beach","weight":1,"surfaceText":"[[sand]] AtLocation [[beach]]"}
|
|
411
|
+
{"start":"/c/en/sand","rel":"/r/HasProperty","end":"/c/en/small","weight":1,"surfaceText":"[[sand]] HasProperty [[small]]"}
|
|
412
|
+
{"start":"/c/en/gold","rel":"/r/IsA","end":"/c/en/metal","weight":1,"surfaceText":"[[gold]] IsA [[metal]]"}
|
|
413
|
+
{"start":"/c/en/gold","rel":"/r/HasProperty","end":"/c/en/valuable","weight":1,"surfaceText":"[[gold]] HasProperty [[valuable]]"}
|
|
414
|
+
{"start":"/c/en/iron","rel":"/r/IsA","end":"/c/en/metal","weight":1,"surfaceText":"[[iron]] IsA [[metal]]"}
|
|
415
|
+
{"start":"/c/en/iron","rel":"/r/HasProperty","end":"/c/en/strong","weight":1,"surfaceText":"[[iron]] HasProperty [[strong]]"}
|
|
416
|
+
{"start":"/c/en/rain","rel":"/r/IsA","end":"/c/en/weather","weight":1,"surfaceText":"[[rain]] IsA [[weather]]"}
|
|
417
|
+
{"start":"/c/en/rain","rel":"/r/MadeOf","end":"/c/en/water","weight":1,"surfaceText":"[[rain]] MadeOf [[water]]"}
|
|
418
|
+
{"start":"/c/en/snow","rel":"/r/IsA","end":"/c/en/weather","weight":1,"surfaceText":"[[snow]] IsA [[weather]]"}
|
|
419
|
+
{"start":"/c/en/snow","rel":"/r/HasProperty","end":"/c/en/cold","weight":1,"surfaceText":"[[snow]] HasProperty [[cold]]"}
|
|
420
|
+
{"start":"/c/en/wind","rel":"/r/CapableOf","end":"/c/en/move_things","weight":1,"surfaceText":"[[wind]] CapableOf [[move things]]"}
|
|
421
|
+
{"start":"/c/en/wind","rel":"/r/AtLocation","end":"/c/en/sky","weight":1,"surfaceText":"[[wind]] AtLocation [[sky]]"}
|
|
422
|
+
{"start":"/c/en/cloud","rel":"/r/PartOf","end":"/c/en/sky","weight":1,"surfaceText":"[[cloud]] PartOf [[sky]]"}
|
|
423
|
+
{"start":"/c/en/cloud","rel":"/r/CapableOf","end":"/c/en/produce_rain","weight":1,"surfaceText":"[[cloud]] CapableOf [[produce rain]]"}
|
|
424
|
+
{"start":"/c/en/sun","rel":"/r/IsA","end":"/c/en/star","weight":1,"surfaceText":"[[sun]] IsA [[star]]"}
|
|
425
|
+
{"start":"/c/en/sun","rel":"/r/CapableOf","end":"/c/en/produce_light","weight":1,"surfaceText":"[[sun]] CapableOf [[produce light]]"}
|
|
426
|
+
{"start":"/c/en/moon","rel":"/r/AtLocation","end":"/c/en/sky","weight":1,"surfaceText":"[[moon]] AtLocation [[sky]]"}
|
|
427
|
+
{"start":"/c/en/moon","rel":"/r/CapableOf","end":"/c/en/orbit_the_earth","weight":1,"surfaceText":"[[moon]] CapableOf [[orbit the earth]]"}
|
|
428
|
+
{"start":"/c/en/star","rel":"/r/AtLocation","end":"/c/en/sky","weight":1,"surfaceText":"[[star]] AtLocation [[sky]]"}
|
|
429
|
+
{"start":"/c/en/star","rel":"/r/CapableOf","end":"/c/en/produce_light","weight":1,"surfaceText":"[[star]] CapableOf [[produce light]]"}
|
|
430
|
+
{"start":"/c/en/owl","rel":"/r/IsA","end":"/c/en/bird","weight":1,"surfaceText":"[[owl]] IsA [[bird]]"}
|
|
431
|
+
{"start":"/c/en/owl","rel":"/r/CapableOf","end":"/c/en/hunt_at_night","weight":1,"surfaceText":"[[owl]] CapableOf [[hunt at night]]"}
|
|
432
|
+
{"start":"/c/en/wolf","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[wolf]] IsA [[animal]]"}
|
|
433
|
+
{"start":"/c/en/wolf","rel":"/r/CapableOf","end":"/c/en/hunt_in_packs","weight":1,"surfaceText":"[[wolf]] CapableOf [[hunt in packs]]"}
|
|
434
|
+
{"start":"/c/en/frog","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[frog]] IsA [[animal]]"}
|
|
435
|
+
{"start":"/c/en/frog","rel":"/r/CapableOf","end":"/c/en/jump","weight":1,"surfaceText":"[[frog]] CapableOf [[jump]]"}
|
|
436
|
+
{"start":"/c/en/bee","rel":"/r/IsA","end":"/c/en/insect","weight":1,"surfaceText":"[[bee]] IsA [[insect]]"}
|
|
437
|
+
{"start":"/c/en/bee","rel":"/r/CapableOf","end":"/c/en/make_honey","weight":1,"surfaceText":"[[bee]] CapableOf [[make honey]]"}
|
|
438
|
+
{"start":"/c/en/ant","rel":"/r/IsA","end":"/c/en/insect","weight":1,"surfaceText":"[[ant]] IsA [[insect]]"}
|
|
439
|
+
{"start":"/c/en/butterfly","rel":"/r/IsA","end":"/c/en/insect","weight":1,"surfaceText":"[[butterfly]] IsA [[insect]]"}
|
|
440
|
+
{"start":"/c/en/butterfly","rel":"/r/HasProperty","end":"/c/en/colorful","weight":1,"surfaceText":"[[butterfly]] HasProperty [[colorful]]"}
|
|
441
|
+
{"start":"/c/en/spider","rel":"/r/IsA","end":"/c/en/animal","weight":1,"surfaceText":"[[spider]] IsA [[animal]]"}
|
|
442
|
+
{"start":"/c/en/spider","rel":"/r/HasA","end":"/c/en/leg","weight":1,"surfaceText":"[[spider]] HasA [[leg]]"}
|
|
443
|
+
{"start":"/c/en/river","rel":"/r/IsA","end":"/c/en/waterway","weight":1,"surfaceText":"[[river]] IsA [[waterway]]"}
|
|
444
|
+
{"start":"/c/en/river","rel":"/r/CapableOf","end":"/c/en/flow","weight":1,"surfaceText":"[[river]] CapableOf [[flow]]"}
|
|
445
|
+
{"start":"/c/en/ocean","rel":"/r/IsA","end":"/c/en/body_of_water","weight":1,"surfaceText":"[[ocean]] IsA [[body of water]]"}
|
|
446
|
+
{"start":"/c/en/ocean","rel":"/r/HasProperty","end":"/c/en/salty","weight":1,"surfaceText":"[[ocean]] HasProperty [[salty]]"}
|
|
447
|
+
{"start":"/c/en/time","rel":"/r/HasProperty","end":"/c/en/measurable","weight":1,"surfaceText":"[[time]] HasProperty [[measurable]]"}
|
|
448
|
+
{"start":"/c/en/time","rel":"/r/CapableOf","end":"/c/en/pass","weight":1,"surfaceText":"[[time]] CapableOf [[pass]]"}
|
|
449
|
+
{"start":"/c/en/day","rel":"/r/PartOf","end":"/c/en/week","weight":1,"surfaceText":"[[day]] PartOf [[week]]"}
|
|
450
|
+
{"start":"/c/en/day","rel":"/r/HasA","end":"/c/en/morning","weight":1,"surfaceText":"[[day]] HasA [[morning]]"}
|
|
451
|
+
{"start":"/c/en/night","rel":"/r/PartOf","end":"/c/en/day","weight":1,"surfaceText":"[[night]] PartOf [[day]]"}
|
|
452
|
+
{"start":"/c/en/night","rel":"/r/HasProperty","end":"/c/en/dark","weight":1,"surfaceText":"[[night]] HasProperty [[dark]]"}
|
|
453
|
+
{"start":"/c/en/morning","rel":"/r/PartOf","end":"/c/en/day","weight":1,"surfaceText":"[[morning]] PartOf [[day]]"}
|
|
454
|
+
{"start":"/c/en/morning","rel":"/r/HasProperty","end":"/c/en/early","weight":1,"surfaceText":"[[morning]] HasProperty [[early]]"}
|
|
455
|
+
{"start":"/c/en/evening","rel":"/r/PartOf","end":"/c/en/day","weight":1,"surfaceText":"[[evening]] PartOf [[day]]"}
|
|
456
|
+
{"start":"/c/en/evening","rel":"/r/HasProperty","end":"/c/en/late","weight":1,"surfaceText":"[[evening]] HasProperty [[late]]"}
|
|
457
|
+
{"start":"/c/en/week","rel":"/r/PartOf","end":"/c/en/month","weight":1,"surfaceText":"[[week]] PartOf [[month]]"}
|
|
458
|
+
{"start":"/c/en/week","rel":"/r/HasA","end":"/c/en/day","weight":1,"surfaceText":"[[week]] HasA [[day]]"}
|
|
459
|
+
{"start":"/c/en/month","rel":"/r/PartOf","end":"/c/en/year","weight":1,"surfaceText":"[[month]] PartOf [[year]]"}
|
|
460
|
+
{"start":"/c/en/month","rel":"/r/HasA","end":"/c/en/week","weight":1,"surfaceText":"[[month]] HasA [[week]]"}
|
|
461
|
+
{"start":"/c/en/year","rel":"/r/HasA","end":"/c/en/month","weight":1,"surfaceText":"[[year]] HasA [[month]]"}
|
|
462
|
+
{"start":"/c/en/year","rel":"/r/HasA","end":"/c/en/season","weight":1,"surfaceText":"[[year]] HasA [[season]]"}
|
|
463
|
+
{"start":"/c/en/hour","rel":"/r/PartOf","end":"/c/en/day","weight":1,"surfaceText":"[[hour]] PartOf [[day]]"}
|
|
464
|
+
{"start":"/c/en/hour","rel":"/r/HasA","end":"/c/en/minute","weight":1,"surfaceText":"[[hour]] HasA [[minute]]"}
|
|
465
|
+
{"start":"/c/en/minute","rel":"/r/PartOf","end":"/c/en/hour","weight":1,"surfaceText":"[[minute]] PartOf [[hour]]"}
|
|
466
|
+
{"start":"/c/en/minute","rel":"/r/HasA","end":"/c/en/second","weight":1,"surfaceText":"[[minute]] HasA [[second]]"}
|
|
467
|
+
{"start":"/c/en/second","rel":"/r/PartOf","end":"/c/en/minute","weight":1,"surfaceText":"[[second]] PartOf [[minute]]"}
|
|
468
|
+
{"start":"/c/en/second","rel":"/r/HasProperty","end":"/c/en/brief","weight":1,"surfaceText":"[[second]] HasProperty [[brief]]"}
|
|
469
|
+
{"start":"/c/en/moment","rel":"/r/HasProperty","end":"/c/en/brief","weight":1,"surfaceText":"[[moment]] HasProperty [[brief]]"}
|
|
470
|
+
{"start":"/c/en/moment","rel":"/r/IsA","end":"/c/en/time","weight":1,"surfaceText":"[[moment]] IsA [[time]]"}
|
|
471
|
+
{"start":"/c/en/season","rel":"/r/PartOf","end":"/c/en/year","weight":1,"surfaceText":"[[season]] PartOf [[year]]"}
|
|
472
|
+
{"start":"/c/en/season","rel":"/r/HasProperty","end":"/c/en/recurring","weight":1,"surfaceText":"[[season]] HasProperty [[recurring]]"}
|
|
473
|
+
{"start":"/c/en/spring","rel":"/r/IsA","end":"/c/en/season","weight":1,"surfaceText":"[[spring]] IsA [[season]]"}
|
|
474
|
+
{"start":"/c/en/spring","rel":"/r/HasProperty","end":"/c/en/warm","weight":1,"surfaceText":"[[spring]] HasProperty [[warm]]"}
|
|
475
|
+
{"start":"/c/en/summer","rel":"/r/IsA","end":"/c/en/season","weight":1,"surfaceText":"[[summer]] IsA [[season]]"}
|
|
476
|
+
{"start":"/c/en/summer","rel":"/r/HasProperty","end":"/c/en/hot","weight":1,"surfaceText":"[[summer]] HasProperty [[hot]]"}
|
|
477
|
+
{"start":"/c/en/winter","rel":"/r/IsA","end":"/c/en/season","weight":1,"surfaceText":"[[winter]] IsA [[season]]"}
|
|
478
|
+
{"start":"/c/en/winter","rel":"/r/HasProperty","end":"/c/en/cold","weight":1,"surfaceText":"[[winter]] HasProperty [[cold]]"}
|
|
479
|
+
{"start":"/c/en/wedding","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[wedding]] IsA [[event]]"}
|
|
480
|
+
{"start":"/c/en/wedding","rel":"/r/HasA","end":"/c/en/family","weight":1,"surfaceText":"[[wedding]] HasA [[family]]"}
|
|
481
|
+
{"start":"/c/en/race","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[race]] IsA [[event]]"}
|
|
482
|
+
{"start":"/c/en/race","rel":"/r/CapableOf","end":"/c/en/determine_a_winner","weight":1,"surfaceText":"[[race]] CapableOf [[determine a winner]]"}
|
|
483
|
+
{"start":"/c/en/dozen","rel":"/r/IsA","end":"/c/en/number","weight":1,"surfaceText":"[[dozen]] IsA [[number]]"}
|
|
484
|
+
{"start":"/c/en/dozen","rel":"/r/HasProperty","end":"/c/en/twelve","weight":1,"surfaceText":"[[dozen]] HasProperty [[twelve]]"}
|
|
485
|
+
{"start":"/c/en/half","rel":"/r/IsA","end":"/c/en/quantity","weight":1,"surfaceText":"[[half]] IsA [[quantity]]"}
|
|
486
|
+
{"start":"/c/en/half","rel":"/r/HasProperty","end":"/c/en/fractional","weight":1,"surfaceText":"[[half]] HasProperty [[fractional]]"}
|
|
487
|
+
{"start":"/c/en/amount","rel":"/r/IsA","end":"/c/en/quantity","weight":1,"surfaceText":"[[amount]] IsA [[quantity]]"}
|
|
488
|
+
{"start":"/c/en/amount","rel":"/r/UsedFor","end":"/c/en/measuring","weight":1,"surfaceText":"[[amount]] UsedFor [[measuring]]"}
|
|
489
|
+
{"start":"/c/en/meeting","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[meeting]] IsA [[event]]"}
|
|
490
|
+
{"start":"/c/en/meeting","rel":"/r/UsedFor","end":"/c/en/discussing_ideas","weight":1,"surfaceText":"[[meeting]] UsedFor [[discussing ideas]]"}
|
|
491
|
+
{"start":"/c/en/game","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[game]] IsA [[event]]"}
|
|
492
|
+
{"start":"/c/en/game","rel":"/r/CapableOf","end":"/c/en/entertain_people","weight":1,"surfaceText":"[[game]] CapableOf [[entertain people]]"}
|
|
493
|
+
{"start":"/c/en/war","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[war]] IsA [[event]]"}
|
|
494
|
+
{"start":"/c/en/war","rel":"/r/CapableOf","end":"/c/en/cause_death","weight":1,"surfaceText":"[[war]] CapableOf [[cause death]]"}
|
|
495
|
+
{"start":"/c/en/trip","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[trip]] IsA [[event]]"}
|
|
496
|
+
{"start":"/c/en/trip","rel":"/r/UsedFor","end":"/c/en/traveling","weight":1,"surfaceText":"[[trip]] UsedFor [[traveling]]"}
|
|
497
|
+
{"start":"/c/en/birthday","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[birthday]] IsA [[event]]"}
|
|
498
|
+
{"start":"/c/en/birthday","rel":"/r/PartOf","end":"/c/en/year","weight":1,"surfaceText":"[[birthday]] PartOf [[year]]"}
|
|
499
|
+
{"start":"/c/en/holiday","rel":"/r/IsA","end":"/c/en/event","weight":1,"surfaceText":"[[holiday]] IsA [[event]]"}
|
|
500
|
+
{"start":"/c/en/holiday","rel":"/r/HasProperty","end":"/c/en/festive","weight":1,"surfaceText":"[[holiday]] HasProperty [[festive]]"}
|
|
501
|
+
{"start":"/c/en/autumn","rel":"/r/IsA","end":"/c/en/season","weight":1,"surfaceText":"[[autumn]] IsA [[season]]"}
|
|
502
|
+
{"start":"/c/en/autumn","rel":"/r/HasProperty","end":"/c/en/cool","weight":1,"surfaceText":"[[autumn]] HasProperty [[cool]]"}
|
|
503
|
+
{"start":"/c/en/century","rel":"/r/HasA","end":"/c/en/year","weight":1,"surfaceText":"[[century]] HasA [[year]]"}
|
|
504
|
+
{"start":"/c/en/century","rel":"/r/HasProperty","end":"/c/en/long","weight":1,"surfaceText":"[[century]] HasProperty [[long]]"}
|
|
505
|
+
{"start":"/c/en/body","rel":"/r/HasA","end":"/c/en/head","weight":1,"surfaceText":"[[body]] HasA [[head]]"}
|
|
506
|
+
{"start":"/c/en/body","rel":"/r/HasA","end":"/c/en/arm","weight":1,"surfaceText":"[[body]] HasA [[arm]]"}
|
|
507
|
+
{"start":"/c/en/body","rel":"/r/HasA","end":"/c/en/leg","weight":1,"surfaceText":"[[body]] HasA [[leg]]"}
|
|
508
|
+
{"start":"/c/en/head","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[head]] PartOf [[body]]"}
|
|
509
|
+
{"start":"/c/en/head","rel":"/r/HasA","end":"/c/en/eye","weight":1,"surfaceText":"[[head]] HasA [[eye]]"}
|
|
510
|
+
{"start":"/c/en/hand","rel":"/r/PartOf","end":"/c/en/arm","weight":1,"surfaceText":"[[hand]] PartOf [[arm]]"}
|
|
511
|
+
{"start":"/c/en/hand","rel":"/r/UsedFor","end":"/c/en/holding_things","weight":1,"surfaceText":"[[hand]] UsedFor [[holding things]]"}
|
|
512
|
+
{"start":"/c/en/arm","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[arm]] PartOf [[body]]"}
|
|
513
|
+
{"start":"/c/en/arm","rel":"/r/HasA","end":"/c/en/hand","weight":1,"surfaceText":"[[arm]] HasA [[hand]]"}
|
|
514
|
+
{"start":"/c/en/leg","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[leg]] PartOf [[body]]"}
|
|
515
|
+
{"start":"/c/en/leg","rel":"/r/HasA","end":"/c/en/foot","weight":1,"surfaceText":"[[leg]] HasA [[foot]]"}
|
|
516
|
+
{"start":"/c/en/foot","rel":"/r/PartOf","end":"/c/en/leg","weight":1,"surfaceText":"[[foot]] PartOf [[leg]]"}
|
|
517
|
+
{"start":"/c/en/foot","rel":"/r/UsedFor","end":"/c/en/walking","weight":1,"surfaceText":"[[foot]] UsedFor [[walking]]"}
|
|
518
|
+
{"start":"/c/en/eye","rel":"/r/PartOf","end":"/c/en/face","weight":1,"surfaceText":"[[eye]] PartOf [[face]]"}
|
|
519
|
+
{"start":"/c/en/eye","rel":"/r/UsedFor","end":"/c/en/seeing","weight":1,"surfaceText":"[[eye]] UsedFor [[seeing]]"}
|
|
520
|
+
{"start":"/c/en/ear","rel":"/r/PartOf","end":"/c/en/head","weight":1,"surfaceText":"[[ear]] PartOf [[head]]"}
|
|
521
|
+
{"start":"/c/en/ear","rel":"/r/UsedFor","end":"/c/en/hearing","weight":1,"surfaceText":"[[ear]] UsedFor [[hearing]]"}
|
|
522
|
+
{"start":"/c/en/mouth","rel":"/r/PartOf","end":"/c/en/face","weight":1,"surfaceText":"[[mouth]] PartOf [[face]]"}
|
|
523
|
+
{"start":"/c/en/mouth","rel":"/r/UsedFor","end":"/c/en/eating","weight":1,"surfaceText":"[[mouth]] UsedFor [[eating]]"}
|
|
524
|
+
{"start":"/c/en/nose","rel":"/r/PartOf","end":"/c/en/face","weight":1,"surfaceText":"[[nose]] PartOf [[face]]"}
|
|
525
|
+
{"start":"/c/en/nose","rel":"/r/UsedFor","end":"/c/en/smelling","weight":1,"surfaceText":"[[nose]] UsedFor [[smelling]]"}
|
|
526
|
+
{"start":"/c/en/hair","rel":"/r/PartOf","end":"/c/en/head","weight":1,"surfaceText":"[[hair]] PartOf [[head]]"}
|
|
527
|
+
{"start":"/c/en/hair","rel":"/r/HasProperty","end":"/c/en/growing","weight":1,"surfaceText":"[[hair]] HasProperty [[growing]]"}
|
|
528
|
+
{"start":"/c/en/heart","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[heart]] PartOf [[body]]"}
|
|
529
|
+
{"start":"/c/en/heart","rel":"/r/CapableOf","end":"/c/en/pump_blood","weight":1,"surfaceText":"[[heart]] CapableOf [[pump blood]]"}
|
|
530
|
+
{"start":"/c/en/blood","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[blood]] PartOf [[body]]"}
|
|
531
|
+
{"start":"/c/en/blood","rel":"/r/HasProperty","end":"/c/en/red","weight":1,"surfaceText":"[[blood]] HasProperty [[red]]"}
|
|
532
|
+
{"start":"/c/en/bone","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[bone]] PartOf [[body]]"}
|
|
533
|
+
{"start":"/c/en/bone","rel":"/r/HasProperty","end":"/c/en/hard","weight":1,"surfaceText":"[[bone]] HasProperty [[hard]]"}
|
|
534
|
+
{"start":"/c/en/skin","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[skin]] PartOf [[body]]"}
|
|
535
|
+
{"start":"/c/en/skin","rel":"/r/UsedFor","end":"/c/en/protecting_the_body","weight":1,"surfaceText":"[[skin]] UsedFor [[protecting the body]]"}
|
|
536
|
+
{"start":"/c/en/face","rel":"/r/PartOf","end":"/c/en/head","weight":1,"surfaceText":"[[face]] PartOf [[head]]"}
|
|
537
|
+
{"start":"/c/en/face","rel":"/r/HasA","end":"/c/en/eye","weight":1,"surfaceText":"[[face]] HasA [[eye]]"}
|
|
538
|
+
{"start":"/c/en/food","rel":"/r/UsedFor","end":"/c/en/eating","weight":1,"surfaceText":"[[food]] UsedFor [[eating]]"}
|
|
539
|
+
{"start":"/c/en/food","rel":"/r/CapableOf","end":"/c/en/provide_energy","weight":1,"surfaceText":"[[food]] CapableOf [[provide energy]]"}
|
|
540
|
+
{"start":"/c/en/bread","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[bread]] IsA [[food]]"}
|
|
541
|
+
{"start":"/c/en/bread","rel":"/r/MadeOf","end":"/c/en/flour","weight":1,"surfaceText":"[[bread]] MadeOf [[flour]]"}
|
|
542
|
+
{"start":"/c/en/meat","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[meat]] IsA [[food]]"}
|
|
543
|
+
{"start":"/c/en/meat","rel":"/r/MadeOf","end":"/c/en/animal_flesh","weight":1,"surfaceText":"[[meat]] MadeOf [[animal flesh]]"}
|
|
544
|
+
{"start":"/c/en/milk","rel":"/r/CapableOf","end":"/c/en/provide_calcium","weight":1,"surfaceText":"[[milk]] CapableOf [[provide calcium]]"}
|
|
545
|
+
{"start":"/c/en/milk","rel":"/r/AtLocation","end":"/c/en/cow","weight":1,"surfaceText":"[[milk]] AtLocation [[cow]]"}
|
|
546
|
+
{"start":"/c/en/egg","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[egg]] IsA [[food]]"}
|
|
547
|
+
{"start":"/c/en/egg","rel":"/r/AtLocation","end":"/c/en/chicken","weight":1,"surfaceText":"[[egg]] AtLocation [[chicken]]"}
|
|
548
|
+
{"start":"/c/en/cheese","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[cheese]] IsA [[food]]"}
|
|
549
|
+
{"start":"/c/en/cheese","rel":"/r/MadeOf","end":"/c/en/milk","weight":1,"surfaceText":"[[cheese]] MadeOf [[milk]]"}
|
|
550
|
+
{"start":"/c/en/vegetable","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[vegetable]] IsA [[food]]"}
|
|
551
|
+
{"start":"/c/en/vegetable","rel":"/r/AtLocation","end":"/c/en/garden","weight":1,"surfaceText":"[[vegetable]] AtLocation [[garden]]"}
|
|
552
|
+
{"start":"/c/en/meal","rel":"/r/HasA","end":"/c/en/food","weight":1,"surfaceText":"[[meal]] HasA [[food]]"}
|
|
553
|
+
{"start":"/c/en/meal","rel":"/r/AtLocation","end":"/c/en/table","weight":1,"surfaceText":"[[meal]] AtLocation [[table]]"}
|
|
554
|
+
{"start":"/c/en/breakfast","rel":"/r/IsA","end":"/c/en/meal","weight":1,"surfaceText":"[[breakfast]] IsA [[meal]]"}
|
|
555
|
+
{"start":"/c/en/breakfast","rel":"/r/AtLocation","end":"/c/en/morning","weight":1,"surfaceText":"[[breakfast]] AtLocation [[morning]]"}
|
|
556
|
+
{"start":"/c/en/dinner","rel":"/r/IsA","end":"/c/en/meal","weight":1,"surfaceText":"[[dinner]] IsA [[meal]]"}
|
|
557
|
+
{"start":"/c/en/dinner","rel":"/r/AtLocation","end":"/c/en/evening","weight":1,"surfaceText":"[[dinner]] AtLocation [[evening]]"}
|
|
558
|
+
{"start":"/c/en/drink","rel":"/r/UsedFor","end":"/c/en/drinking","weight":1,"surfaceText":"[[drink]] UsedFor [[drinking]]"}
|
|
559
|
+
{"start":"/c/en/drink","rel":"/r/CapableOf","end":"/c/en/quench_thirst","weight":1,"surfaceText":"[[drink]] CapableOf [[quench thirst]]"}
|
|
560
|
+
{"start":"/c/en/wine","rel":"/r/IsA","end":"/c/en/drink","weight":1,"surfaceText":"[[wine]] IsA [[drink]]"}
|
|
561
|
+
{"start":"/c/en/wine","rel":"/r/MadeOf","end":"/c/en/grape","weight":1,"surfaceText":"[[wine]] MadeOf [[grape]]"}
|
|
562
|
+
{"start":"/c/en/tea","rel":"/r/IsA","end":"/c/en/drink","weight":1,"surfaceText":"[[tea]] IsA [[drink]]"}
|
|
563
|
+
{"start":"/c/en/tea","rel":"/r/MadeOf","end":"/c/en/leaf","weight":1,"surfaceText":"[[tea]] MadeOf [[leaf]]"}
|
|
564
|
+
{"start":"/c/en/coffee","rel":"/r/IsA","end":"/c/en/drink","weight":1,"surfaceText":"[[coffee]] IsA [[drink]]"}
|
|
565
|
+
{"start":"/c/en/coffee","rel":"/r/MadeOf","end":"/c/en/bean","weight":1,"surfaceText":"[[coffee]] MadeOf [[bean]]"}
|
|
566
|
+
{"start":"/c/en/tongue","rel":"/r/PartOf","end":"/c/en/mouth","weight":1,"surfaceText":"[[tongue]] PartOf [[mouth]]"}
|
|
567
|
+
{"start":"/c/en/tongue","rel":"/r/UsedFor","end":"/c/en/tasting","weight":1,"surfaceText":"[[tongue]] UsedFor [[tasting]]"}
|
|
568
|
+
{"start":"/c/en/tooth","rel":"/r/PartOf","end":"/c/en/mouth","weight":1,"surfaceText":"[[tooth]] PartOf [[mouth]]"}
|
|
569
|
+
{"start":"/c/en/tooth","rel":"/r/UsedFor","end":"/c/en/chewing","weight":1,"surfaceText":"[[tooth]] UsedFor [[chewing]]"}
|
|
570
|
+
{"start":"/c/en/finger","rel":"/r/PartOf","end":"/c/en/hand","weight":1,"surfaceText":"[[finger]] PartOf [[hand]]"}
|
|
571
|
+
{"start":"/c/en/finger","rel":"/r/UsedFor","end":"/c/en/grabbing_things","weight":1,"surfaceText":"[[finger]] UsedFor [[grabbing things]]"}
|
|
572
|
+
{"start":"/c/en/toe","rel":"/r/PartOf","end":"/c/en/foot","weight":1,"surfaceText":"[[toe]] PartOf [[foot]]"}
|
|
573
|
+
{"start":"/c/en/shoulder","rel":"/r/PartOf","end":"/c/en/arm","weight":1,"surfaceText":"[[shoulder]] PartOf [[arm]]"}
|
|
574
|
+
{"start":"/c/en/shoulder","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[shoulder]] PartOf [[body]]"}
|
|
575
|
+
{"start":"/c/en/knee","rel":"/r/PartOf","end":"/c/en/leg","weight":1,"surfaceText":"[[knee]] PartOf [[leg]]"}
|
|
576
|
+
{"start":"/c/en/knee","rel":"/r/CapableOf","end":"/c/en/bend","weight":1,"surfaceText":"[[knee]] CapableOf [[bend]]"}
|
|
577
|
+
{"start":"/c/en/brain","rel":"/r/PartOf","end":"/c/en/head","weight":1,"surfaceText":"[[brain]] PartOf [[head]]"}
|
|
578
|
+
{"start":"/c/en/brain","rel":"/r/CapableOf","end":"/c/en/think","weight":1,"surfaceText":"[[brain]] CapableOf [[think]]"}
|
|
579
|
+
{"start":"/c/en/lung","rel":"/r/PartOf","end":"/c/en/body","weight":1,"surfaceText":"[[lung]] PartOf [[body]]"}
|
|
580
|
+
{"start":"/c/en/lung","rel":"/r/UsedFor","end":"/c/en/breathing","weight":1,"surfaceText":"[[lung]] UsedFor [[breathing]]"}
|
|
581
|
+
{"start":"/c/en/sugar","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[sugar]] IsA [[food]]"}
|
|
582
|
+
{"start":"/c/en/sugar","rel":"/r/HasProperty","end":"/c/en/sweet","weight":1,"surfaceText":"[[sugar]] HasProperty [[sweet]]"}
|
|
583
|
+
{"start":"/c/en/salt","rel":"/r/IsA","end":"/c/en/food","weight":1,"surfaceText":"[[salt]] IsA [[food]]"}
|
|
584
|
+
{"start":"/c/en/salt","rel":"/r/HasProperty","end":"/c/en/salty","weight":1,"surfaceText":"[[salt]] HasProperty [[salty]]"}
|
|
585
|
+
{"start":"/c/en/word","rel":"/r/PartOf","end":"/c/en/language","weight":1,"surfaceText":"[[word]] PartOf [[language]]"}
|
|
586
|
+
{"start":"/c/en/word","rel":"/r/UsedFor","end":"/c/en/communicating","weight":1,"surfaceText":"[[word]] UsedFor [[communicating]]"}
|
|
587
|
+
{"start":"/c/en/language","rel":"/r/UsedFor","end":"/c/en/communicating","weight":1,"surfaceText":"[[language]] UsedFor [[communicating]]"}
|
|
588
|
+
{"start":"/c/en/language","rel":"/r/HasA","end":"/c/en/word","weight":1,"surfaceText":"[[language]] HasA [[word]]"}
|
|
589
|
+
{"start":"/c/en/story","rel":"/r/UsedFor","end":"/c/en/entertaining","weight":1,"surfaceText":"[[story]] UsedFor [[entertaining]]"}
|
|
590
|
+
{"start":"/c/en/story","rel":"/r/HasA","end":"/c/en/character","weight":1,"surfaceText":"[[story]] HasA [[character]]"}
|
|
591
|
+
{"start":"/c/en/news","rel":"/r/UsedFor","end":"/c/en/informing_people","weight":1,"surfaceText":"[[news]] UsedFor [[informing people]]"}
|
|
592
|
+
{"start":"/c/en/news","rel":"/r/AtLocation","end":"/c/en/newspaper","weight":1,"surfaceText":"[[news]] AtLocation [[newspaper]]"}
|
|
593
|
+
{"start":"/c/en/question","rel":"/r/UsedFor","end":"/c/en/asking","weight":1,"surfaceText":"[[question]] UsedFor [[asking]]"}
|
|
594
|
+
{"start":"/c/en/question","rel":"/r/Desires","end":"/c/en/an_answer","weight":1,"surfaceText":"[[question]] Desires [[an answer]]"}
|
|
595
|
+
{"start":"/c/en/answer","rel":"/r/UsedFor","end":"/c/en/answering_a_question","weight":1,"surfaceText":"[[answer]] UsedFor [[answering a question]]"}
|
|
596
|
+
{"start":"/c/en/answer","rel":"/r/CapableOf","end":"/c/en/resolve_a_question","weight":1,"surfaceText":"[[answer]] CapableOf [[resolve a question]]"}
|
|
597
|
+
{"start":"/c/en/idea","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[idea]] PartOf [[mind]]"}
|
|
598
|
+
{"start":"/c/en/idea","rel":"/r/CapableOf","end":"/c/en/inspire_action","weight":1,"surfaceText":"[[idea]] CapableOf [[inspire action]]"}
|
|
599
|
+
{"start":"/c/en/thought","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[thought]] PartOf [[mind]]"}
|
|
600
|
+
{"start":"/c/en/thought","rel":"/r/CapableOf","end":"/c/en/lead_to_an_idea","weight":1,"surfaceText":"[[thought]] CapableOf [[lead to an idea]]"}
|
|
601
|
+
{"start":"/c/en/mind","rel":"/r/CapableOf","end":"/c/en/think","weight":1,"surfaceText":"[[mind]] CapableOf [[think]]"}
|
|
602
|
+
{"start":"/c/en/mind","rel":"/r/HasA","end":"/c/en/thought","weight":1,"surfaceText":"[[mind]] HasA [[thought]]"}
|
|
603
|
+
{"start":"/c/en/memory","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[memory]] PartOf [[mind]]"}
|
|
604
|
+
{"start":"/c/en/memory","rel":"/r/CapableOf","end":"/c/en/fade","weight":1,"surfaceText":"[[memory]] CapableOf [[fade]]"}
|
|
605
|
+
{"start":"/c/en/dream","rel":"/r/AtLocation","end":"/c/en/sleep","weight":1,"surfaceText":"[[dream]] AtLocation [[sleep]]"}
|
|
606
|
+
{"start":"/c/en/dream","rel":"/r/HasA","end":"/c/en/image","weight":1,"surfaceText":"[[dream]] HasA [[image]]"}
|
|
607
|
+
{"start":"/c/en/belief","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[belief]] PartOf [[mind]]"}
|
|
608
|
+
{"start":"/c/en/belief","rel":"/r/CapableOf","end":"/c/en/guide_action","weight":1,"surfaceText":"[[belief]] CapableOf [[guide action]]"}
|
|
609
|
+
{"start":"/c/en/love","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[love]] IsA [[emotion]]"}
|
|
610
|
+
{"start":"/c/en/love","rel":"/r/CapableOf","end":"/c/en/bring_happiness","weight":1,"surfaceText":"[[love]] CapableOf [[bring happiness]]"}
|
|
611
|
+
{"start":"/c/en/hate","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[hate]] IsA [[emotion]]"}
|
|
612
|
+
{"start":"/c/en/hate","rel":"/r/CapableOf","end":"/c/en/cause_conflict","weight":1,"surfaceText":"[[hate]] CapableOf [[cause conflict]]"}
|
|
613
|
+
{"start":"/c/en/fear","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[fear]] IsA [[emotion]]"}
|
|
614
|
+
{"start":"/c/en/fear","rel":"/r/CapableOf","end":"/c/en/cause_worry","weight":1,"surfaceText":"[[fear]] CapableOf [[cause worry]]"}
|
|
615
|
+
{"start":"/c/en/joy","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[joy]] IsA [[emotion]]"}
|
|
616
|
+
{"start":"/c/en/joy","rel":"/r/CapableOf","end":"/c/en/bring_happiness","weight":1,"surfaceText":"[[joy]] CapableOf [[bring happiness]]"}
|
|
617
|
+
{"start":"/c/en/anger","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[anger]] IsA [[emotion]]"}
|
|
618
|
+
{"start":"/c/en/anger","rel":"/r/CapableOf","end":"/c/en/cause_conflict","weight":1,"surfaceText":"[[anger]] CapableOf [[cause conflict]]"}
|
|
619
|
+
{"start":"/c/en/hope","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[hope]] IsA [[emotion]]"}
|
|
620
|
+
{"start":"/c/en/hope","rel":"/r/CapableOf","end":"/c/en/inspire_action","weight":1,"surfaceText":"[[hope]] CapableOf [[inspire action]]"}
|
|
621
|
+
{"start":"/c/en/surprise","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[surprise]] IsA [[emotion]]"}
|
|
622
|
+
{"start":"/c/en/surprise","rel":"/r/CapableOf","end":"/c/en/cause_astonishment","weight":1,"surfaceText":"[[surprise]] CapableOf [[cause astonishment]]"}
|
|
623
|
+
{"start":"/c/en/pride","rel":"/r/IsA","end":"/c/en/emotion","weight":1,"surfaceText":"[[pride]] IsA [[emotion]]"}
|
|
624
|
+
{"start":"/c/en/pride","rel":"/r/CapableOf","end":"/c/en/bring_satisfaction","weight":1,"surfaceText":"[[pride]] CapableOf [[bring satisfaction]]"}
|
|
625
|
+
{"start":"/c/en/name","rel":"/r/UsedFor","end":"/c/en/identifying_a_person","weight":1,"surfaceText":"[[name]] UsedFor [[identifying a person]]"}
|
|
626
|
+
{"start":"/c/en/name","rel":"/r/PartOf","end":"/c/en/identity","weight":1,"surfaceText":"[[name]] PartOf [[identity]]"}
|
|
627
|
+
{"start":"/c/en/song","rel":"/r/HasA","end":"/c/en/word","weight":1,"surfaceText":"[[song]] HasA [[word]]"}
|
|
628
|
+
{"start":"/c/en/song","rel":"/r/UsedFor","end":"/c/en/entertaining","weight":1,"surfaceText":"[[song]] UsedFor [[entertaining]]"}
|
|
629
|
+
{"start":"/c/en/music","rel":"/r/HasA","end":"/c/en/song","weight":1,"surfaceText":"[[music]] HasA [[song]]"}
|
|
630
|
+
{"start":"/c/en/music","rel":"/r/CapableOf","end":"/c/en/bring_joy","weight":1,"surfaceText":"[[music]] CapableOf [[bring joy]]"}
|
|
631
|
+
{"start":"/c/en/sound","rel":"/r/CapableOf","end":"/c/en/travel_through_air","weight":1,"surfaceText":"[[sound]] CapableOf [[travel through air]]"}
|
|
632
|
+
{"start":"/c/en/sound","rel":"/r/UsedFor","end":"/c/en/communicating","weight":1,"surfaceText":"[[sound]] UsedFor [[communicating]]"}
|
|
633
|
+
{"start":"/c/en/voice","rel":"/r/UsedFor","end":"/c/en/speaking","weight":1,"surfaceText":"[[voice]] UsedFor [[speaking]]"}
|
|
634
|
+
{"start":"/c/en/voice","rel":"/r/PartOf","end":"/c/en/a_person","weight":1,"surfaceText":"[[voice]] PartOf [[a person]]"}
|
|
635
|
+
{"start":"/c/en/picture","rel":"/r/CapableOf","end":"/c/en/show_an_image","weight":1,"surfaceText":"[[picture]] CapableOf [[show an image]]"}
|
|
636
|
+
{"start":"/c/en/picture","rel":"/r/UsedFor","end":"/c/en/remembering","weight":1,"surfaceText":"[[picture]] UsedFor [[remembering]]"}
|
|
637
|
+
{"start":"/c/en/art","rel":"/r/CapableOf","end":"/c/en/express_emotion","weight":1,"surfaceText":"[[art]] CapableOf [[express emotion]]"}
|
|
638
|
+
{"start":"/c/en/art","rel":"/r/UsedFor","end":"/c/en/decoration","weight":1,"surfaceText":"[[art]] UsedFor [[decoration]]"}
|
|
639
|
+
{"start":"/c/en/knowledge","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[knowledge]] PartOf [[mind]]"}
|
|
640
|
+
{"start":"/c/en/knowledge","rel":"/r/CapableOf","end":"/c/en/grow","weight":1,"surfaceText":"[[knowledge]] CapableOf [[grow]]"}
|
|
641
|
+
{"start":"/c/en/opinion","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[opinion]] PartOf [[mind]]"}
|
|
642
|
+
{"start":"/c/en/opinion","rel":"/r/CapableOf","end":"/c/en/differ_between_people","weight":1,"surfaceText":"[[opinion]] CapableOf [[differ between people]]"}
|
|
643
|
+
{"start":"/c/en/reason","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[reason]] PartOf [[mind]]"}
|
|
644
|
+
{"start":"/c/en/reason","rel":"/r/UsedFor","end":"/c/en/explaining","weight":1,"surfaceText":"[[reason]] UsedFor [[explaining]]"}
|
|
645
|
+
{"start":"/c/en/imagination","rel":"/r/PartOf","end":"/c/en/mind","weight":1,"surfaceText":"[[imagination]] PartOf [[mind]]"}
|
|
646
|
+
{"start":"/c/en/imagination","rel":"/r/CapableOf","end":"/c/en/create_ideas","weight":1,"surfaceText":"[[imagination]] CapableOf [[create ideas]]"}
|
|
647
|
+
{"start":"/c/en/laughter","rel":"/r/CapableOf","end":"/c/en/bring_joy","weight":1,"surfaceText":"[[laughter]] CapableOf [[bring joy]]"}
|
|
648
|
+
{"start":"/c/en/laughter","rel":"/r/AtLocation","end":"/c/en/a_joke","weight":1,"surfaceText":"[[laughter]] AtLocation [[a joke]]"}
|
|
649
|
+
{"start":"/c/en/tear","rel":"/r/CapableOf","end":"/c/en/show_sadness","weight":1,"surfaceText":"[[tear]] CapableOf [[show sadness]]"}
|
|
650
|
+
{"start":"/c/en/tear","rel":"/r/PartOf","end":"/c/en/crying","weight":1,"surfaceText":"[[tear]] PartOf [[crying]]"}
|
|
651
|
+
{"start":"/c/en/smile","rel":"/r/CapableOf","end":"/c/en/show_happiness","weight":1,"surfaceText":"[[smile]] CapableOf [[show happiness]]"}
|
|
652
|
+
{"start":"/c/en/smile","rel":"/r/PartOf","end":"/c/en/a_face","weight":1,"surfaceText":"[[smile]] PartOf [[a face]]"}
|
|
653
|
+
{"start":"/c/en/silence","rel":"/r/HasProperty","end":"/c/en/quiet","weight":1,"surfaceText":"[[silence]] HasProperty [[quiet]]"}
|
|
654
|
+
{"start":"/c/en/silence","rel":"/r/CapableOf","end":"/c/en/calm_the_mind","weight":1,"surfaceText":"[[silence]] CapableOf [[calm the mind]]"}
|
|
655
|
+
{"start":"/c/en/person","rel":"/r/IsA","end":"/c/en/schema_person","weight":1,"surfaceText":"[[person]] IsA [[schema person]]"}
|
|
656
|
+
{"start":"/c/en/place","rel":"/r/IsA","end":"/c/en/schema_place","weight":1,"surfaceText":"[[place]] IsA [[schema place]]"}
|
|
657
|
+
{"start":"/c/en/object","rel":"/r/IsA","end":"/c/en/schema_object","weight":1,"surfaceText":"[[object]] IsA [[schema object]]"}
|
|
658
|
+
{"start":"/c/en/event","rel":"/r/IsA","end":"/c/en/schema_event","weight":1,"surfaceText":"[[event]] IsA [[schema event]]"}
|
|
659
|
+
{"start":"/c/en/time","rel":"/r/IsA","end":"/c/en/schema_time","weight":1,"surfaceText":"[[time]] IsA [[schema time]]"}
|
|
660
|
+
{"start":"/c/en/quantity","rel":"/r/IsA","end":"/c/en/schema_quantity","weight":1,"surfaceText":"[[quantity]] IsA [[schema quantity]]"}
|
|
661
|
+
{"start":"/c/en/organization","rel":"/r/IsA","end":"/c/en/schema_organization","weight":1,"surfaceText":"[[organization]] IsA [[schema organization]]"}
|
|
662
|
+
{"start":"/c/en/artifact","rel":"/r/IsA","end":"/c/en/schema_object","weight":1,"surfaceText":"[[artifact]] IsA [[schema object]]"}
|
|
663
|
+
{"start":"/c/en/group","rel":"/r/IsA","end":"/c/en/schema_organization","weight":1,"surfaceText":"[[group]] IsA [[schema organization]]"}
|
|
664
|
+
{"start":"/c/en/location","rel":"/r/IsA","end":"/c/en/schema_place","weight":1,"surfaceText":"[[location]] IsA [[schema place]]"}
|