From 246680f0c894ee98eeca20bddbd73d2cfe901ce2 Mon Sep 17 00:00:00 2001 From: huangyongye Date: Fri, 23 Jun 2017 15:12:59 +0800 Subject: [PATCH] create repository --- .idea/.name | 1 + .idea/encodings.xml | 6 + .idea/misc.xml | 14 + .idea/modules.xml | 8 + .idea/wordSimilarity.iml | 12 + .idea/workspace.xml | 777 + LICENSE | 21 + README.md | 67 + __init__.py | 0 __init__.pyc | Bin 0 -> 114 bytes data/WHOLE.DAT | 1618 + data/glossary.dat | 66181 ++++++++++++++++ data/semdict.dat | 224 + ...4\306\313\343\241\267\302\333\316\304.pdf" | Bin 0 -> 356716 bytes ...2\345\307\343\317\362\274\306\313\343.pdf" | Bin 0 -> 391932 bytes ...2\251\307\351\270\320\267\326\316\366.pdf" | Bin 0 -> 703840 bytes example.py | 17 + java/WordSimilarity/.checkstyle | 6 + java/WordSimilarity/.classpath | 8 + java/WordSimilarity/.project | 17 + .../org.eclipse.core.resources.prefs | 3 + java/WordSimilarity/ReadMe.txt | 13 + .../buaa/edu/wordsimilarity/Primitive.class | Bin 0 -> 3367 bytes .../edu/wordsimilarity/PrimitiveTests.class | Bin 0 -> 1162 bytes .../edu/buaa/edu/wordsimilarity/Word.class | Bin 0 -> 3405 bytes .../edu/wordsimilarity/WordSimilarity.class | Bin 0 -> 10613 bytes .../wordsimilarity/WordSimilarityTests.class | Bin 0 -> 1547 bytes .../buaa/edu/wordsimilarity/WordType.class | Bin 0 -> 1941 bytes java/WordSimilarity/dict/WHOLE.DAT | 1618 + java/WordSimilarity/dict/glossary.dat | 66181 ++++++++++++++++ java/WordSimilarity/dict/semdict.dat | 224 + .../buaa/edu/wordsimilarity/Primitive.java | 165 + .../edu/buaa/edu/wordsimilarity/Word.java | 203 + .../edu/wordsimilarity/WordSimilarity.java | 467 + .../edu/buaa/edu/wordsimilarity/WordType.java | 25 + .../edu/wordsimilarity/PrimitiveTests.java | 29 + .../wordsimilarity/WordSimilarityTests.java | 44 + ...4\306\313\343\241\267\302\333\316\304.pdf" | Bin 0 -> 368769 bytes software/WHOLE.DAT | 1618 + software/WordSimilarity.exe | Bin 0 -> 110592 bytes software/glossary.dat | 66181 ++++++++++++++++ software/semdict.dat | 224 + ...4\376\312\271\323\303\312\326\262\341.doc" | Bin 0 -> 71168 bytes ...7\312\324\264\320\355\277\311\326\244.doc" | Bin 0 -> 24576 bytes src/__init__.py | 0 src/__init__.pyc | Bin 0 -> 146 bytes src/primitive.py | 31 + src/primitive.pyc | Bin 0 -> 1610 bytes src/primitiveFunc.py | 82 + src/primitiveFunc.pyc | Bin 0 -> 2096 bytes src/word.py | 75 + src/word.pyc | Bin 0 -> 3995 bytes src/wordsim.pyc | Bin 0 -> 6813 bytes src/wordsimilarity.py | 338 + src/wordsimilarity.pyc | Bin 0 -> 7450 bytes 55 files changed, 206498 insertions(+) create mode 100644 .idea/.name create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/wordSimilarity.iml create mode 100644 .idea/workspace.xml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 __init__.py create mode 100644 __init__.pyc create mode 100644 data/WHOLE.DAT create mode 100644 data/glossary.dat create mode 100644 data/semdict.dat create mode 100644 "docs/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" create mode 100644 "docs/\273\371\323\332HowNet\265\304\264\312\273\343\323\357\322\345\307\343\317\362\274\306\313\343.pdf" create mode 100644 "docs/\273\371\323\332\301\354\323\362\307\351\270\320\264\312\265\344\265\304\326\320\316\304\316\242\262\251\307\351\270\320\267\326\316\366.pdf" create mode 100644 example.py create mode 100644 java/WordSimilarity/.checkstyle create mode 100644 java/WordSimilarity/.classpath create mode 100644 java/WordSimilarity/.project create mode 100644 java/WordSimilarity/.settings/org.eclipse.core.resources.prefs create mode 100644 java/WordSimilarity/ReadMe.txt create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/Primitive.class create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/PrimitiveTests.class create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/Word.class create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordSimilarity.class create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordSimilarityTests.class create mode 100644 java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordType.class create mode 100644 java/WordSimilarity/dict/WHOLE.DAT create mode 100644 java/WordSimilarity/dict/glossary.dat create mode 100644 java/WordSimilarity/dict/semdict.dat create mode 100644 java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Primitive.java create mode 100644 java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Word.java create mode 100644 java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordSimilarity.java create mode 100644 java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordType.java create mode 100644 java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/PrimitiveTests.java create mode 100644 java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/WordSimilarityTests.java create mode 100644 "java/WordSimilarity/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" create mode 100644 software/WHOLE.DAT create mode 100644 software/WordSimilarity.exe create mode 100644 software/glossary.dat create mode 100644 software/semdict.dat create mode 100644 "software/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\310\355\274\376\312\271\323\303\312\326\262\341.doc" create mode 100644 "software/\327\324\310\273\323\357\321\324\264\246\300\355\277\252\267\305\327\312\324\264\320\355\277\311\326\244.doc" create mode 100644 src/__init__.py create mode 100644 src/__init__.pyc create mode 100644 src/primitive.py create mode 100644 src/primitive.pyc create mode 100644 src/primitiveFunc.py create mode 100644 src/primitiveFunc.pyc create mode 100644 src/word.py create mode 100644 src/word.pyc create mode 100644 src/wordsim.pyc create mode 100644 src/wordsimilarity.py create mode 100644 src/wordsimilarity.pyc diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..acc0901 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +wordSimilarity \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..ed49eec --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..df245c4 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e7fddf4 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/wordSimilarity.iml b/.idea/wordSimilarity.iml new file mode 100644 index 0000000..83cbea6 --- /dev/null +++ b/.idea/wordSimilarity.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..7faa173 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,777 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1474620889084 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7126f5b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 yongyehuang + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e75d031 --- /dev/null +++ b/README.md @@ -0,0 +1,67 @@ +# 基于《知网》的语义相似度计算 python2.7 API +[知网](http://www.keenage.com/) +本项目使用python语言实现根据义原树来计算词语之间的语义相似度,并提供对应的 API。 + +词语距离有两类常见的计算方法,一种是根据某种世界知识(Ontology)或分类体系(Taxonomy)来计算,一种利用大规模的语料库进行统计。 +本项目研究基于前者,通过人工处理,将词汇组织在多棵树结构中,树中每个节点表示一个“义原”(概念语义)。在一棵树中,任何两个节点之间有且只有一条路径,这条路径的长度就可以作为两个概念语义之间距离的一种度量。 + +更多具体的计算原理请参考: /docs/《基于<知网>的词汇语义相似度计算》论文.pdf + +## 功能介绍 + +- 计算两个词汇的语义相似度 +- 相似度计算中的参数调整 + + +## 使用说明 +方法一:在word_similarity/ 目录下运行代码。 +1.在 word-similarity/ 目录下按照 example.py 实例代码运行。 +```python +from src.wordsimilarity import sim4words +word1, word2, word3 = [u"足球", u"运动", u"苹果"] +sim = sim4words(word1, word2) +print "similarity(%s, %s)=%g" % (word1, word2, sim) +sim = sim4words(word1, word3) +print "similarity(%s, %s)=%g" % (word1, word3, sim) +``` +similarity(足球, 运动)=0.8 +similarity(足球, 苹果)=0.186047 + +方法二:在word_similarity/ 路径外运行代码。 +1.将 word-similarity/ 目录添加到系统路径下。 +cd /usr/local/python/lib/python2.7/site-packages/ +vim word_similarity.pth +写入: your-path-of/word_similarity/ + +2.然后按照下面代码运行 +```python +from word_similarity.src.wordsimilarity import sim4words +word1, word2= [u"足球", u"运动"] +sim = sim4words(word1, word2) +print "similarity(%s, %s)=%g" % (word1, word2, sim) +``` +similarity(足球, 运动)=0.8 + + +## 参考文献 + +- [刘群 2002] 刘群,李素建,基于《知网》的词汇语义相似度计算,第三届汉语词汇语义学研讨会,台北,2002年5月 +- [知网] http://www.keenage.com + + +## 使用体验 +### 优点 + +- 原理简单,不需要使用语料库来进行训练 +- 不需要考虑句法,语用等特点,能够比较准确地反映语义方面的相似性和差异性 + +### 缺点 + +- 处理比较复杂。需要花费大量的人力来构建义原语料库,每次添加新的内容都需要人工修改义原树库。 +- 无法对特定的语料进行训练,这样在针对特定问题,比如一些新的领域问题的处理中效果会很差。 +- 效果一般。和 word2vec 相比,个人觉得效果要比后者差很多。即使仅使用少量数据(比如:20W 个句子),word2vec 都能取得比《知网》更好的效果。 + + +## 其他 +1.在 /software/ 目录下提供了知网的语义相似度计算软件: WordSimilarity.exe +2.在 /java/ 目录下提供了 java 版本的实现。该版本为本项目提供了很多参考。 diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/__init__.pyc b/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21e7cb5b78a125dd045275bf188a5367bb46cd81 GIT binary patch literal 114 zcmZSn%*(a2-zPGe0SXv_v;zK<@rS^@x__BnK_9? lnI)C_@$s2?nI-Y@dIgmw96))S-29Z%oK!oIDaAm{000R_ literal 0 HcmV?d00001 diff --git a/data/WHOLE.DAT b/data/WHOLE.DAT new file mode 100644 index 0000000..ac2da06 --- /dev/null +++ b/data/WHOLE.DAT @@ -0,0 +1,1618 @@ + 0 event|¼ 0 + 1 static|̬ 0 + 2 relation|ϵ 1 + 3 isa|Ƿǹϵ 2 + 4 be| 3 + 5 become|Ϊ 4 + 6 mean|ָ 4 + 7 BeNot| 3 + 8 possession|ϵ 2 + 9 own| 8 + 10 obtain|õ 9 + 11 receive| 9 + 12 BelongTo| 8 + 13 OwnNot| 8 + 14 lose|ʧȥ 13 + 15 InDebt| 14 + 16 owe|Ƿ 8 + 17 comparison|ȹϵ 2 + 18 BeSame|ͬ 17 + 19 equal| 18 + 20 BeSimilar| 18 + 21 differ|ͬ 17 + 22 worth|ֵ 17 + 23 WorthNot|ֵ 17 + 24 suit|ʹϵ 2 + 25 fit|ʺ 24 + 26 ServeAsFoil| 24 + 27 FitNot| 24 + 28 inclusive|̺ϵ 2 + 29 contain| 28 + 30 BeMember| 28 + 31 connective|ϵ 2 + 32 relate|й 31 + 33 depend| 32 + 34 RelateNot|޹ 31 + 35 BeIndependent| 34 + 36 BeOpposite| 34 + 37 CauseResult|ϵ 2 + 38 ResultIn| 37 + 39 ResultFrom|Ե 37 + 40 BaseOn| 37 + 41 influence|Ӱ 37 + 42 TimeOrSpace|ʱչϵ 2 + 43 situated| 42 + 44 facing| 42 + 45 LeadTo|ͨ 42 + 46 from| 42 + 47 BeNear| 46 + 48 BeAcross|ཻ 46 + 49 BeBeyond|Խ 46 + 50 arithmetic|ϵ 2 + 51 DoSum| 50 + 52 AmountTo|ܼ 50 + 53 state|״̬ 1 + 54 StatePhysical|״̬ 53 + 55 ExistAppear| 54 + 56 exist| 55 + 57 ExistNot| 55 + 58 appear| 55 + 59 exposure|¶ 58 + 60 happen| 55 + 61 begin|ʼ 54 + 62 BeNormal|̬ 54 + 63 certainty|δ̬ 62 + 64 fixed|Ѷ 63 + 65 unfixed|δ 63 + 66 ComeToWorld| 62 + 67 alive| 62 + 68 function| 67 + 69 grow|ɳ 62 + 70 pregnant| 62 + 71 GoOn| 62 + 72 withstand|ס 71 + 73 WithstandNot|ס 71 + 74 undergo| 62 + 75 enjoy| 74 + 76 suffer| 74 + 77 AptTo| 74 + 78 endure| 74 + 79 EndureNot| 74 + 80 UndergoNot| 62 + 81 BeGood|̬ 54 + 82 BeFull|Ա 81 + 83 BeWell|׳ 81 + 84 lucky| 81 + 85 prosper| 81 + 86 succeed|ɹ 81 + 87 win|ʤ 81 + 88 surpass|ǿ 81 + 89 WellKnown| 81 + 90 BeRecovered|ԭ 54 + 91 awake| 90 + 92 change| 54 + 93 AppearanceChange|۱ 92 + 94 StateChange|̬ 93 + 95 FormChange|α 93 + 96 QuantityChange| 92 + 97 BecomeMore| 96 + 98 surplus|ʣ 96 + 99 lack|ȱ 96 + 100 BecomeLess| 96 + 101 BeBad|˥ 92 + 102 tired|ƣ 101 + 103 HungryThirsty| 101 + 104 SufferFrom| 101 + 105 ill|̬ 104 + 106 wounded| 105 + 107 disable|м 105 + 108 labour|ٲ 105 + 109 mad| 105 + 110 paralyse|̱ 105 + 111 painful|ʹ 105 + 112 dizzy| 105 + 113 twitch|鴤 105 + 114 bleed|Ѫ 105 + 115 swollen| 105 + 116 fever| 105 + 117 StomachTrouble|֢ 105 + 118 pant| 105 + 119 inflamed| 105 + 120 itch| 105 + 121 OutOfOrder| 101 + 122 decline|˥ 101 + 123 unfortunate| 101 + 124 fail|ʧ 101 + 125 err| 124 + 126 defeated| 124 + 127 inferior| 101 + 128 end|ս 92 + 129 die| 128 + 130 finish| 128 + 131 perish| 128 + 132 due| 128 + 133 WeatherChange| 92 + 134 WeatherFine| 133 + 135 WeatherBad| 133 + 136 ChangeNot| 54 + 137 disappear|ʧ 54 + 138 StateMental|״̬ 53 + 139 feeling| 138 + 140 cherish|Ļ 139 + 141 excited| 139 + 142 FeelingByGood| 139 + 143 AtEase| 142 + 144 calm| 143 + 145 joyful|ϲ 142 + 146 satisfied| 142 + 147 FeelNoQualms| 142 + 148 shameless|û 142 + 149 FeelingByBad| 139 + 150 uneasy| 149 + 151 GuiltilyConscious| 149 + 152 unsatisfied| 149 + 153 melancholy| 149 + 154 upset| 149 + 155 sad|dz 149 + 156 sorrowful| 149 + 157 fear| 149 + 158 surprise| 149 + 159 flurried| 149 + 160 worried|ż 149 + 161 angry| 149 + 162 disheartened| 149 + 163 repent|û 149 + 164 shy| 149 + 165 embarrassed|Ϊ 149 + 166 disappointed|ʧ 149 + 167 Attitude|̬ 138 + 168 AttitudeByGood|̬ 167 + 169 FondOf|ϲ 168 + 170 like|ϧ 169 + 171 love| 169 + 172 PayAttention|ע 168 + 173 ParticularAbout| 172 + 174 respect| 168 + 175 loyal|Т 168 + 176 admire|Ľ 168 + 177 jealous|ʼ 176 + 178 grateful|м 168 + 179 agree|ͬ 168 + 180 ThinkOf|˼ 168 + 181 AttitudeByBad|̬ 167 + 182 sorry|ϧ 181 + 183 pity| 181 + 184 disgust| 181 + 185 stupefied|ľȻ 181 + 186 blame|Թ 181 + 187 hate| 181 + 188 forgive|ԭ 181 + 189 TolerateNot| 181 + 190 regret|Ǹ 181 + 191 despise| 181 + 192 disloyal| 181 + 193 disagree|ͬ 181 + 194 doubt| 181 + 195 volition| 138 + 196 expect| 195 + 197 need| 195 + 198 willing|Ը 195 + 199 unwilling|Ը 195 + 200 GrudgeNot| 195 + 201 grudge| 195 + 202 dare| 195 + 203 hesitate|ԥ 195 + 204 recognition|֪״̬ 138 + 205 HaveKnowledge|֪ 204 + 206 perception|֪ 205 + 207 know|֪ 205 + 208 understand| 207 + 209 regard|Ϊ 205 + 210 believe| 205 + 211 remember|ǵ 205 + 212 BeAble|ܹ 205 + 213 dream| 205 + 214 NoKnowledge|֪ 204 + 215 ignorant|֪ 214 + 216 forget| 214 + 217 misunderstand| 204 + 218 confuse| 217 + 219 BeUnable| 204 + 220 act|ж 0 + 221 ActGeneral| 220 + 222 start|ʼ 221 + 223 do| 221 + 224 try| 223 + 225 endeavour| 223 + 226 VieFor| 223 + 227 RashlyAct| 223 + 228 venture|ð 227 + 229 cooperate| 223 + 230 repeat|ظ 223 + 231 pretend|װ 223 + 232 engage| 223 + 233 bear|е 232 + 234 undertake| 233 + 235 conduct|ʵʩ 223 + 236 prepare|׼ 223 + 237 respond|Ӧ 223 + 238 DoNot| 221 + 239 refuse| 238 + 240 evade|ر 239 + 241 slack|͵ 238 + 242 cease|ͣ 221 + 243 GiveUp| 242 + 244 pause|ͣ 242 + 245 rest|Ϣ 242 + 246 sleep|˯ 245 + 247 wait|ȴ 221 + 248 ActSpecific|ʵ 220 + 249 AlterGeneral| 248 + 250 alter|ı 249 + 251 control| 249 + 252 manage| 251 + 253 handle| 251 + 254 arrange| 251 + 255 stabilize|ʹ 249 + 256 AlterSpecific|ʵ 248 + 257 AlterRelation|ϵ 256 + 258 AlterPossession| 257 + 259 take|ȡ 258 + 260 seek|ıȡ 259 + 261 beg| 260 + 262 steal|͵ 259 + 263 rob| 259 + 264 cheat|ƭ 259 + 265 earn|׬ 259 + 266 buy| 259 + 267 collect| 259 + 268 levy| 267 + 269 borrow| 259 + 270 gather|ɼ 259 + 271 occupy|ռ 259 + 272 MarryFrom|Ȣ 259 + 273 TakeBack|ȡ 259 + 274 redeem| 273 + 275 give| 258 + 276 provide| 275 + 277 GiveAsGift| 275 + 278 grant| 277 + 279 donate| 277 + 280 submit| 275 + 281 return| 275 + 282 recompense| 281 + 283 issue|ַ 275 + 284 sell| 275 + 285 lend| 275 + 286 pawn|Ѻ 275 + 287 PassOn| 275 + 288 pay| 275 + 289 MarryTo| 275 + 290 abandon| 275 + 291 exchange| 258 + 292 OnCredit| 258 + 293 AlterIsa|Ƿ 257 + 294 CauseToBe|ʹ֮ 293 + 295 RegardAs| 294 + 296 naming| 294 + 297 replace| 294 + 298 CauseNotToBe|ʹ֮ 293 + 299 dismiss| 298 + 300 AlterComparison| 257 + 301 CompareTo| 300 + 302 MakeEqual|ʹ 300 + 303 AlterFitness| 257 + 304 obey|ѭ 303 + 305 surrender| 304 + 306 coordinate|Э 303 + 307 disobey|Υ 303 + 308 AlterInclusion| 257 + 309 include| 308 + 310 discharge| 308 + 311 withdraw|˳ 308 + 312 classify| 308 + 313 AlterConnection| 257 + 314 tie| 313 + 315 connect| 314 + 316 fasten|˩ 315 + 317 mix| 314 + 318 merge|ϲ 314 + 319 associate| 314 + 320 ally| 319 + 321 collude| 319 + 322 reconcile| 319 + 323 SeekRefuge|Ͷ 319 + 324 meet| 319 + 325 GetMarried|] 319 + 326 mating| 319 + 327 separate| 313 + 328 disconnect| 327 + 329 farewell| 327 + 330 AlterCauseResult| 257 + 331 CauseAffect|Ⱦ 330 + 332 incur| 330 + 333 AlterLocation|ռλ 257 + 334 SelfMove| 333 + 335 SelfMoveInManner|ʽ 334 + 336 roam| 335 + 337 walk| 335 + 338 run| 335 + 339 jump| 335 + 340 crawl| 335 + 341 slide| 335 + 342 roll| 335 + 343 swim| 335 + 344 flow| 335 + 345 fly| 335 + 346 float|Ư 335 + 347 VehicleGo|ʻ 335 + 348 circulate|ѭ 335 + 349 SelfMoveInDirection| 334 + 350 ToAndFro| 349 + 351 come| 350 + 352 go|ȥ 350 + 353 LeaveFor|ǰ 350 + 354 GoUp|ȥ 349 + 355 rise| 354 + 356 climb|ʵ 354 + 357 GoDown|ȥ 349 + 358 fall| 357 + 359 sink|³ 357 + 360 GoForward|ǰ 349 + 361 GoBackward| 349 + 362 GoInto| 349 + 363 GoOut|ȥ 349 + 364 leak|© 363 + 365 jet| 363 + 366 spill| 363 + 367 leave|뿪 349 + 368 flee| 367 + 369 escape| 367 + 370 approach|ӽ 349 + 371 chase|׷ 370 + 372 follow| 371 + 373 disperse|ɢ 349 + 374 ComeTogether| 349 + 375 GoThrough| 349 + 376 cross|Խ 375 + 377 GoBack| 349 + 378 GoRound|Χ 349 + 379 TurnRound| 378 + 380 circle| 378 + 381 MoveInFixedPosition|λ 334 + 382 wave|ڶ 381 + 383 shiver| 381 + 384 rotate|ת 381 + 385 twine| 381 + 386 PartSelfMove| 381 + 387 stand|վ 386 + 388 arise| 386 + 389 sit| 386 + 390 LieDown| 386 + 391 FallDown| 386 + 392 kick|߲ 386 + 393 tilt|б 386 + 394 lean|п 393 + 395 upmove| 386 + 396 CeaseSelfMove|ֹ 334 + 397 stay|ͣ 396 + 398 arrive| 396 + 399 reside|ס 396 + 400 CauseToMove| 333 + 401 CauseToMoveInManner|ʽ 400 + 402 release|ͷ 401 + 403 TakeAway|ᶯ 401 + 404 put| 401 + 405 pile|ѷ 404 + 406 store| 401 + 407 SetAside| 406 + 408 install|װ 401 + 409 dismount|ж 401 + 410 load|װ 401 + 411 drive|Ԧ 401 + 412 CauseToMoveInDirection| 400 + 413 pull| 412 + 414 push| 412 + 415 MoveItUp| 412 + 416 lift| 415 + 417 hang| 415 + 418 MoveItDown| 412 + 419 spray| 418 + 420 swallow| 418 + 421 drop|Ͷ 418 + 422 MoveItBack| 412 + 423 MoveItInto| 412 + 424 inhale| 423 + 425 insert| 423 + 426 soak| 423 + 427 inlay|Ƕ 423 + 428 fill| 423 + 429 bury| 423 + 430 MoveItOut| 412 + 431 drain|ų 430 + 432 vomit|³ 430 + 433 exhale| 430 + 434 dump| 430 + 435 PickOut|γ 430 + 436 SqueezeOut| 430 + 437 MoveItAway|Զ 412 + 438 throw| 437 + 439 send| 437 + 440 shoot| 439 + 441 transmit| 439 + 442 transport| 439 + 443 post|ʼ 439 + 444 expel| 439 + 445 exile| 444 + 446 spread| 412 + 447 assemble|ۼ 412 + 448 CauseToMoveInFixedPosition|λ 400 + 449 shake|ҡ 448 + 450 reverse|ߵ 448 + 451 turn|Ťת 448 + 452 coil| 448 + 453 surround|Χ 452 + 454 CausePartMove| 448 + 455 OpenShut| 400 + 456 open| 455 + 457 shut|ر 455 + 458 CeaseCauseTOMove|ֹ 333 + 459 hold| 458 + 460 pick|ʰ 459 + 461 HoldWithHand| 459 + 462 PropUp|֧ 459 + 463 bring|Я 459 + 464 HoldInMouth| 459 + 465 HoldInArm|§ 459 + 466 CarryOnBack| 459 + 467 TakeOutOfWater| 459 + 468 catch|׽ס 458 + 469 detain|ס 458 + 470 block|ס 458 + 471 fix|ס 458 + 472 SupportWeight|ס 458 + 473 AimAt| 333 + 474 AlterTimePosition|ʱλ 257 + 475 pass|ȹ 474 + 476 AlterQuantity| 257 + 477 add| 476 + 478 subtract| 476 + 479 exhaust| 476 + 480 economize|ʡ 476 + 481 AlterState|״̬ 256 + 482 AlterPhysical|䱾 481 + 483 CauseToExist|ʹ 482 + 484 create| 483 + 485 GiveBirth| 484 + 486 produce| 484 + 487 cook| 486 + 488 compile|༭ 486 + 489 build| 484 + 490 forming|γ 484 + 491 establish| 484 + 492 forge|α 484 + 493 CauseToAppear| 483 + 494 reveal|¶ 493 + 495 StripOff|ȥ 493 + 496 AlterStateNormal|䳣̬ 482 + 497 CauseToLive|ʹ 496 + 498 MakeLiving|ı 497 + 499 ProvideFor| 497 + 500 foster| 499 + 501 planting|ֲ 499 + 502 CauseToGrow|ʹɳ 496 + 503 metabolize|л 502 + 504 consume|ȡ 503 + 505 eat| 504 + 506 drink| 504 + 507 feed|ι 504 + 508 excrete|й 503 + 509 respire| 503 + 510 WhileAway| 502 + 511 exercise| 510 + 512 tour| 510 + 513 recreation| 510 + 514 addict|Ⱥ 510 + 515 SeekPleasure|Ѱ 510 + 516 keep| 502 + 517 maintain| 516 + 518 protect| 502 + 519 TakeCare| 502 + 520 cultivate| 502 + 521 help| 502 + 522 rescue| 521 + 523 KeepOn|ʹ 502 + 524 AlterStateGood|̬ 482 + 525 benefit| 524 + 526 MakeBetter|Ż 524 + 527 adjust| 526 + 528 PutInOrder| 526 + 529 improve| 526 + 530 enrich|ʵ 529 + 531 fulfil|ʵ 526 + 532 resume|ָ 524 + 533 cure|ҽ 532 + 534 repair| 532 + 535 amend| 532 + 536 AlterStateBad|ݬ̬ 482 + 537 MakeBad|Ӻ 536 + 538 MakeTrouble| 537 + 539 damage| 537 + 540 attack| 537 + 541 punish| 537 + 542 revenge| 537 + 543 HaveContest| 537 + 544 compete| 543 + 545 gamble|IJ 544 + 546 fight| 543 + 547 uprise| 546 + 548 resist| 546 + 549 defend| 543 + 550 defeat|սʤ 543 + 551 kill|ɱ 537 + 552 suicide|ɱ 551 + 553 remove| 537 + 554 destroy| 553 + 555 CauseToBeHidden|ʹʧ 482 + 556 hide| 555 + 557 cover|ڸ 555 + 558 PutOn| 557 + 559 wrap| 557 + 560 AlterAttribute| 482 + 561 MakeHigher| 560 + 562 MakeLower| 560 + 563 AlterAppearance| 560 + 564 AlterForm|״ 563 + 565 touch| 564 + 566 stroke| 564 + 567 stab| 564 + 568 sting| 564 + 569 beat| 564 + 570 bump|ײ 564 + 571 firing| 564 + 572 break|۶ 564 + 573 rub|Ħ 564 + 574 scratch|ץ 564 + 575 press|ѹ 564 + 576 unfold|̯ 564 + 577 grind|ĥ 564 + 578 split|ƿ 564 + 579 cut| 564 + 580 bite|ҧ 564 + 581 masticate|׽ 564 + 582 fold|ߡ 564 + 583 PlayWith|Ū 564 + 584 weave| 564 + 585 dig|ھ 564 + 586 clean|ʹ 563 + 587 wash|ϴ 586 + 588 wipe| 586 + 589 pollute|ʹ 563 + 590 apply|ͿĨ 563 + 591 beautify| 563 + 592 decorate|װ 591 + 593 MakeUp|ױ 591 + 594 uglify| 563 + 595 illuminate| 563 + 596 AlterColor|ɫ 563 + 597 brighten|ʹ 563 + 598 straighten|ֱ 563 + 599 bend| 563 + 600 sharpen|ʹ 563 + 601 filter| 563 + 602 lubricate| 563 + 603 AlterMeasurement| 560 + 604 WarmUp| 603 + 605 lighting|ȼ 604 + 606 burn| 604 + 607 cool| 603 + 608 moisten|ʪ 603 + 609 irrigate| 608 + 610 dry| 603 + 611 enlarge| 603 + 612 shrink|С 603 + 613 tighten|ս 603 + 614 loosen| 603 + 615 SpeedUp|ӿ 603 + 616 SlowDown| 603 + 617 MakeHeavier| 603 + 618 deepen| 603 + 619 MakeEarlier| 603 + 620 delay| 603 + 621 thicken|Ũ 603 + 622 dilute|嵭 603 + 623 AlterProperty| 560 + 624 strengthen|ӹ 623 + 625 weaken| 623 + 626 dredge|ͨ 623 + 627 BlockUp| 623 + 628 AlterGrade|伶 623 + 629 upgrade| 628 + 630 degrade| 628 + 631 PlayUp|Ĵ 623 + 632 PlayDown| 623 + 633 slander|̰ 632 + 634 delimit| 623 + 635 refine| 623 + 636 ize|̬ 560 + 637 MakeAct|ʹ֮ 481 + 638 CauseToDo|ʹ 637 + 639 request|Ҫ 638 + 640 call|ٻ 638 + 641 invite| 638 + 642 dispatch|Dz 638 + 643 order| 638 + 644 entrust|ί 638 + 645 urge|ʹ 638 + 646 force|ǿ 638 + 647 guide| 638 + 648 persuade|Ȱ˵ 638 + 649 mediate| 648 + 650 mobilize| 638 + 651 incite|ָʹ 638 + 652 entice| 638 + 653 indulge| 638 + 654 TurnOn| 638 + 655 CauseNotToDo|趯 637 + 656 restrain|ֹ 655 + 657 obstruct|ֹ 655 + 658 prohibit|ֹ 655 + 659 TurnOff|ֹ 655 + 660 exempt| 655 + 661 use| 637 + 662 TakeVehicle| 661 + 663 employ| 661 + 664 spend| 661 + 665 lavish|˷ 664 + 666 AlterMental|侫 481 + 667 AlterEmotion| 666 + 668 soothe|ο 667 + 669 excite|ж 667 + 670 MakeHappy|ʹϲ 669 + 671 please|ȡ 670 + 672 tease|ȡ 670 + 673 irritate|ŭ 669 + 674 frighten|Ż 669 + 675 discourage|ˮ 669 + 676 offend| 669 + 677 disappoint| 669 + 678 MakeWorried| 669 + 679 attract| 669 + 680 ShowEmotion|ʾ 666 + 681 treat|Դ 680 + 682 ShowGoodEmotion|ʾ 681 + 683 ShowInterest| 682 + 684 ShowJoy|ʾϲ 682 + 685 laugh|Ц 684 + 686 ShowLove|ʾ 682 + 687 praise|佱 682 + 688 reward| 687 + 689 congratulate|ף 682 + 690 thank|л 682 + 691 apologize|Ǹ 682 + 692 SayHello|ʺ 682 + 693 visit| 692 + 694 welcome|ӭ 682 + 695 salute|¾ 682 + 696 ExpressAgreement|ʾͬ 682 + 697 accept| 696 + 698 appreciate|޳ 696 + 699 endorse|ӵ 682 + 700 guarantee|֤ 682 + 701 WellTreat|ƴ 682 + 702 entertain|д 701 + 703 commemorate|ʾ˼ 682 + 704 ShowBadEmotion|ʾ 681 + 705 IllBehave| 704 + 706 sigh|̾ 704 + 707 condole|° 681 + 708 weep| 707 + 709 ExpressDissatisfaction|ʾ 707 + 710 protest| 709 + 711 ExpressAgainst|Ǵ 709 + 712 satirize| 709 + 713 LaughAt|Ц 709 + 714 IllTreat| 709 + 715 ExpressDisagreement|ʾͬ 707 + 716 oppose| 715 + 717 reject|ؾ 715 + 718 betray| 707 + 719 ExpressAnger|ʾŭ 707 + 720 AlterKnowledge|֪ 666 + 721 MakeOwnKnowledge|ʹҸ֪ 720 + 722 sense|о 721 + 723 look| 722 + 724 listen| 722 + 725 smell| 722 + 726 feel| 722 + 727 savor| 722 + 728 GetKnowledge|֪ 721 + 729 TryToKnow|Ū 728 + 730 read| 729 + 731 ask| 729 + 732 interrogate| 731 + 733 LookFor|Ѱ 729 + 734 check| 729 + 735 scout| 734 + 736 diagnose| 734 + 737 supervise| 734 + 738 investigate| 734 + 739 exam| 734 + 740 calculate| 729 + 741 count| 740 + 742 measure| 740 + 743 distinguish|ֱ 729 + 744 think|˼ 729 + 745 deduce| 744 + 746 guess|² 745 + 747 predict|Ԥ 745 + 748 LookBack| 744 + 749 study|ѧ 729 + 750 drill|ϰ 749 + 751 imitate|ģ 749 + 752 research|о 729 + 753 compare|Ƚ 729 + 754 analyze| 729 + 755 experiment|ʵ 729 + 756 prove|֤ 721 + 757 decide| 721 + 758 judge|ö 757 + 759 MakeAppointment|Լ 757 + 760 estimate| 721 + 761 plan|ƻ 721 + 762 choose|ѡ 721 + 763 select|ѡ 762 + 764 MakeOthersKnowledge|ʹ˸֪ 720 + 765 express|ʾ 764 + 766 mention|ἰ 765 + 767 MakeSound| 765 + 768 cry| 765 + 769 speak|˵ 765 + 770 boast| 765 + 771 swear| 765 + 772 sing| 765 + 773 recite|ж 765 + 774 propose| 765 + 775 quote| 765 + 776 explain|˵ 765 + 777 tell| 765 + 778 describe|д 765 + 779 announce| 765 + 780 disseminate| 765 + 781 accuse|ظ 765 + 782 recommend|Ƽ 765 + 783 reply| 765 + 784 refute| 783 + 785 admit| 765 + 786 deny| 765 + 787 write|д 765 + 788 copy|д 787 + 789 sign|д 787 + 790 translate| 765 + 791 record|¼ 765 + 792 TakePicture| 791 + 793 draw| 765 + 794 carve| 765 + 795 print|ӡˢ 765 + 796 publish| 795 + 797 show| 765 + 798 perform| 797 + 799 display|չʾ 797 + 800 ShowOff|ҫ 797 + 801 teach| 764 + 802 communicate| 764 + 803 talk|̸ 802 + 804 discuss| 802 + 805 debate| 802 + 806 quarrel| 802 + 807 MakeNoKnowledge|ʹ֪ 720 + 808 HideTruth| 807 + 809 KeepSilence|˵ 807 + 810 MakeMisunderstand|ʹ֪ 720 + 811 TalkNonsense|Ϲ˵ 810 + 812 deceive|ƭ 810 + 813 entity|ʵ 813 + 814 thing| 813 + 815 physical| 814 + 816 animate| 815 + 817 AnimalHuman| 816 + 818 human| 817 + 819 humanized| 818 + 820 animal| 817 + 821 beast| 820 + 822 livestock| 820 + 823 bird| 820 + 824 InsectWorm| 820 + 825 fish| 820 + 826 plant|ֲ 816 + 827 crop|ׯ 826 + 828 tree| 826 + 829 FlowerGrass| 826 + 830 vegetable|߲ 826 + 831 fruit|ˮ 826 + 832 AlgaeFungi|ֲ 826 + 833 bacteria|΢ 816 + 834 inanimate| 815 + 835 natural|Ȼ 834 + 836 celestial| 835 + 837 earth| 835 + 838 land|½ 837 + 839 waters|ˮ 837 + 840 sky| 837 + 841 place|ط 837 + 842 liquid|Һ 835 + 843 water|ˮ 842 + 844 ice| 835 + 845 metal| 835 + 846 wood|ľ 835 + 847 fire| 835 + 848 stone|ʯ 835 + 849 weather| 835 + 850 RainSnow|ѩ 849 + 851 wind| 849 + 852 CloudMist| 849 + 853 thunder| 849 + 854 gas| 835 + 855 sound| 835 + 856 electricity| 835 + 857 lights| 835 + 858 trace| 835 + 859 artifact|˹ 834 + 860 clothing| 859 + 861 edible|ʳ 859 + 862 food|ʳƷ 861 + 863 drinks|Ʒ 861 + 864 medicine|ҩ 859 + 865 chemical|ѧ 859 + 866 addictive|Ⱥ 859 + 867 building| 859 + 868 house| 867 + 869 room| 868 + 870 facilities|ʩ 867 + 871 implement| 859 + 872 machine| 871 + 873 computer| 871 + 874 vehicle|ͨ 871 + 875 LandVehicle| 874 + 876 ship| 874 + 877 aircraft| 874 + 878 furniture|Ҿ 871 + 879 stationery|ľ 871 + 880 paper|ֽ 879 + 881 PenInk|ī 879 + 882 MusicTool| 871 + 883 SportTool|˶ 871 + 884 tool|þ 871 + 885 weapon| 871 + 886 software| 871 + 887 material| 859 + 888 wealth|Ǯ 859 + 889 fund|ʽ 888 + 890 expenditure| 888 + 891 payment| 888 + 892 money| 888 + 893 coupon|Ʊ֤ 888 + 894 treasure|䱦 888 + 895 readings| 859 + 896 publications|鿯 895 + 897 document| 895 + 898 bill|Ʊ 895 + 899 account| 895 + 900 letter|ż 895 + 901 mark|־ 895 + 902 shape| 815 + 903 mental| 814 + 904 emotion| 903 + 905 experience| 903 + 906 aspiration|Ը 903 + 907 thinking|˼ 903 + 908 thought|ͷ 907 + 909 method| 907 + 910 plans|滮 909 + 911 purpose|Ŀ 907 + 912 reason| 907 + 913 standpoint| 907 + 914 knowledge|֪ʶ 907 + 915 information|Ϣ 903 + 916 language| 915 + 917 symbol| 916 + 918 punc| 917 + 919 character| 916 + 920 expression| 916 + 921 text| 916 + 922 news| 921 + 923 music| 915 + 924 image|ͼ 915 + 925 shows| 915 + 926 example|ʵ 915 + 927 regulation| 903 + 928 system|ƶ 927 + 929 law|ɷ 927 + 930 agreement|Լ 927 + 931 rights|Ȩ 903 + 932 duty| 903 + 933 event|¼ 814 + 934 fact| 933 + 935 affairs| 934 + 936 problem| 934 + 937 cause|ԭ 934 + 938 process| 934 + 939 result| 934 + 940 phenomena| 933 + 941 disease| 940 + 942 organization|֯ 814 + 943 institution| 942 + 944 army| 942 + 945 InstitutePlace| 942 + 946 community| 942 + 947 internet| 814 + 948 time|ʱ 813 + 949 space|ռ 813 + 950 direction| 949 + 951 location|λ 949 + 952 component| 813 + 953 part| 952 + 954 fittings| 952 + 955 attribute| 955 + 956 aValue|ֵ 956 + 957 AttributeValue|Ժֵ 957 + 958 appearance| 957 + 959 form|״ 958 + 960 flat| 959 + 961 straight|ֱ 959 + 962 curved| 959 + 963 level|ƽ 959 + 964 upright| 959 + 965 slanted| 959 + 966 even| 959 + 967 dissimilar| 959 + 968 protruding|͹ 959 + 969 dented| 959 + 970 smooth|̹ 959 + 971 rugged| 959 + 972 square| 959 + 973 round|Բ 959 + 974 queer| 959 + 975 horizontal| 959 + 976 blunt| 959 + 977 acute| 959 + 978 sharp| 959 + 979 wrinkled| 959 + 980 dot| 959 + 981 linear| 959 + 982 surfacial| 959 + 983 cubic| 959 + 984 angular| 959 + 985 brightness| 958 + 986 bright| 985 + 987 dark| 985 + 988 clearness| 958 + 989 clear| 988 + 990 blurred| 988 + 991 prettiness| 958 + 992 beautiful| 991 + 993 ugly| 991 + 994 pattern|ʽ 958 + 995 modern| 994 + 996 old| 994 + 997 SmoothFinish| 958 + 998 delicate| 997 + 999 coarse| 997 + 1000 polished| 997 + 1001 color|ɫ 958 + 1002 colored| 1001 + 1003 plain| 1001 + 1004 red| 1001 + 1005 yellow| 1001 + 1006 blue| 1001 + 1007 green| 1001 + 1008 purple| 1001 + 1009 brown| 1001 + 1010 white| 1001 + 1011 black| 1001 + 1012 grey| 1001 + 1013 RedBrown| 1001 + 1014 BlueGreen| 1001 + 1015 colorless|ɫ 1001 + 1016 hue|Ũ 958 + 1017 NotLight|Ũ 1016 + 1018 light| 1016 + 1019 odor|ζ 958 + 1020 fragrant| 1019 + 1021 stinky| 1019 + 1022 taste|ζ 958 + 1023 sour| 1022 + 1024 sweet| 1022 + 1025 bitter| 1022 + 1026 peppery| 1022 + 1027 salty| 1022 + 1028 posture| 958 + 1029 scene| 958 + 1030 exuberant|ï 1029 + 1031 desolate| 1029 + 1032 threatening| 1029 + 1033 stately|ׯ 1029 + 1034 cleanness|ྻ 958 + 1035 spotless| 1034 + 1036 dirty| 1034 + 1037 fatness| 958 + 1038 fat| 1037 + 1039 bony| 1037 + 1040 bearing|̬ 958 + 1041 thrifty| 1040 + 1042 gracious| 1040 + 1043 extravagant| 1040 + 1044 PhysicState|״̬ 958 + 1045 attire|װ 958 + 1046 style| 958 + 1047 demeanor| 958 + 1048 countenance| 958 + 1049 measurement| 957 + 1050 length| 1049 + 1051 long| 1050 + 1052 short| 1050 + 1053 height|߶ 1049 + 1054 tall| 1053 + 1055 low| 1053 + 1056 area| 1049 + 1057 big| 1056 + 1058 medium| 1056 + 1059 small|С 1056 + 1060 broad| 1056 + 1061 size|ߴ 1049 + 1062 big| 1061 + 1063 medium| 1061 + 1064 small|С 1061 + 1065 broad| 1061 + 1066 width| 1049 + 1067 wide| 1066 + 1068 narrow|խ 1066 + 1069 depth| 1049 + 1070 deep| 1069 + 1071 shallow|dz 1069 + 1072 thickness| 1049 + 1073 thick| 1072 + 1074 thin| 1072 + 1075 fineness|ϸ 1049 + 1076 fine| 1075 + 1077 widediameter| 1075 + 1078 slope|¶ 1049 + 1079 steep| 1078 + 1080 density|ܶ 1049 + 1081 dense| 1080 + 1082 sparse| 1080 + 1083 tightness|ɽ 1049 + 1084 loose| 1083 + 1085 tight| 1083 + 1086 hardness|Ӳ 1049 + 1087 hard|Ӳ 1086 + 1088 soft| 1086 + 1089 crisp| 1086 + 1090 tender| 1086 + 1091 tough| 1086 + 1092 concentration|Ũ 1049 + 1093 watery|ϡ 1092 + 1094 concentrated| 1092 + 1095 weight| 1049 + 1096 heavy| 1095 + 1097 NotHeavy| 1095 + 1098 SoundVolume| 1049 + 1099 loud| 1098 + 1100 distance| 1049 + 1101 far|Զ 1100 + 1102 near| 1100 + 1103 earliness| 1049 + 1104 early| 1103 + 1105 late| 1103 + 1106 speed|ٶ 1049 + 1107 fast| 1106 + 1108 slow| 1106 + 1109 duration| 1049 + 1110 TimeLong| 1109 + 1111 TimeShort| 1109 + 1112 dampness|ʪ 1049 + 1113 dried| 1112 + 1114 wet|ʪ 1112 + 1115 waterless| 1112 + 1116 waterlogging| 1112 + 1117 temperature|¶ 1049 + 1118 cold| 1117 + 1119 hot| 1117 + 1120 chilly| 1117 + 1121 warm| 1117 + 1122 price|۸ 1049 + 1123 cheap| 1122 + 1124 expensive| 1122 + 1125 stickiness| 1049 + 1126 sticky| 1125 + 1127 angle|Ƕ 1049 + 1128 property| 957 + 1129 newness|¾ 1128 + 1130 new| 1129 + 1131 used| 1129 + 1132 age| 1128 + 1133 aged| 1132 + 1134 adult| 1132 + 1135 young| 1132 + 1136 trueness|α 1128 + 1137 true| 1136 + 1138 fake|α 1136 + 1139 GoodBad|û 1128 + 1140 good| 1139 + 1141 bad| 1139 + 1142 quality| 1128 + 1143 fertile| 1142 + 1144 barren| 1142 + 1145 refined| 1142 + 1146 crude|ª 1142 + 1147 average| 1142 + 1148 great|ΰ 1142 + 1149 negligible| 1142 + 1150 durable| 1142 + 1151 intensity|ǿ 1128 + 1152 strong|ǿ 1151 + 1153 weak| 1151 + 1154 easiness| 1128 + 1155 easy| 1154 + 1156 difficult| 1154 + 1157 SoundQuality| 1128 + 1158 content| 1128 + 1159 substantial|ʵ 1158 + 1160 empty| 1158 + 1161 profound| 1158 + 1162 NotProfound|dz 1158 + 1163 interesting|Ȥ 1158 + 1164 boring| 1158 + 1165 detailed| 1158 + 1166 simple| 1158 + 1167 pure| 1158 + 1168 mixed| 1158 + 1169 accurate|׼ 1158 + 1170 neat| 1158 + 1171 disorder| 1158 + 1172 concise| 1158 + 1173 unattached|ɢ 1158 + 1174 trivial| 1158 + 1175 complicated| 1158 + 1176 layered| 1158 + 1177 correctness| 1128 + 1178 correct|ȷ 1177 + 1179 wrong| 1177 + 1180 degree|̶ 1128 + 1181 extreme| 1180 + 1182 insufficiently|Ƿ 1180 + 1183 very| 1180 + 1184 ish| 1180 + 1185 more| 1180 + 1186 most| 1180 + 1187 over| 1180 + 1188 reputation| 1128 + 1189 glorious| 1188 + 1190 Notwellknown| 1188 + 1191 disgraced| 1188 + 1192 behavior|ֹ 1128 + 1193 formal|ʽ 1192 + 1194 informal|ʽ 1192 + 1195 dexterous| 1192 + 1196 flexible| 1192 + 1197 stiff| 1192 + 1198 lasting| 1192 + 1199 secret| 1192 + 1200 opened| 1192 + 1201 hidden| 1192 + 1202 forthright|ˬ 1192 + 1203 tactful| 1192 + 1204 gentle| 1192 + 1205 suitable| 1192 + 1206 proper| 1192 + 1207 BadTemper|Ƣ 1192 + 1208 convenient| 1192 + 1209 inconvenient| 1192 + 1210 improper| 1192 + 1211 vulgar| 1192 + 1212 hasty| 1192 + 1213 sudden| 1192 + 1214 fluent| 1192 + 1215 nimble| 1192 + 1216 strict| 1192 + 1217 lenient| 1192 + 1218 fierce| 1192 + 1219 free| 1192 + 1220 restrained| 1192 + 1221 diligent| 1192 + 1222 lazy| 1192 + 1223 biased|ƫ 1192 + 1224 kindhearted| 1192 + 1225 sly| 1192 + 1226 stubborn| 1192 + 1227 active|Ը 1192 + 1228 passive| 1192 + 1229 modest|ǫ 1192 + 1230 arrogant| 1192 + 1231 attentive|ϸ 1192 + 1232 careless| 1192 + 1233 cautious| 1192 + 1234 flighty| 1192 + 1235 sincere| 1192 + 1236 rash|ç 1192 + 1237 indifferent|Į 1192 + 1238 steady| 1192 + 1239 lascivious| 1192 + 1240 honest| 1192 + 1241 fair| 1192 + 1242 greedy|̰ 1192 + 1243 eccentric|Ƨ 1192 + 1244 optimistic|ֹ 1192 + 1245 pessimistic| 1192 + 1246 evil| 1192 + 1247 faithful| 1192 + 1248 treacherous| 1192 + 1249 mischievous| 1192 + 1250 continuous| 1192 + 1251 together|ͬ 1192 + 1252 SocialMode| 1128 + 1253 value|ֵ 1128 + 1254 precious| 1253 + 1255 impression|ӡ 1128 + 1256 effect|Ч 1128 + 1257 useless| 1256 + 1258 superior| 1256 + 1259 will|־ 1128 + 1260 courage| 1128 + 1261 brave| 1260 + 1262 timid| 1260 + 1263 wisdom|ǻ 1128 + 1264 wise| 1263 + 1265 foolish| 1263 + 1266 clever| 1263 + 1267 NotQuick|ګ 1263 + 1268 ability| 1128 + 1269 able| 1268 + 1270 unable|ӹ 1268 + 1271 tolerance| 1128 + 1272 generous| 1271 + 1273 miser| 1271 + 1274 habit|ϰ 1128 + 1275 importance| 1128 + 1276 important| 1275 + 1277 secondary| 1275 + 1278 main| 1275 + 1279 branch|֧ 1275 + 1280 necessity|Ҫ 1128 + 1281 necessary|Ҫ 1280 + 1282 redundant| 1280 + 1283 rank|ȼ 1128 + 1284 HighRank|ߵ 1283 + 1285 LowRank|͵ 1283 + 1286 elementary| 1283 + 1287 standard|׼ 1128 + 1288 passed|ϸ 1287 + 1289 status| 1128 + 1290 occupation|ְλ 1128 + 1291 range| 1128 + 1292 extensive| 1291 + 1293 nonextensive| 1291 + 1294 all|ȫ 1291 + 1295 pieced|Ƭ 1291 + 1296 frequency|Ƶ 1128 + 1297 often| 1296 + 1298 rarely|ż 1296 + 1299 again| 1296 + 1300 regular| 1296 + 1301 power| 1128 + 1302 strength| 1128 + 1303 ProsCons| 1128 + 1304 pros| 1303 + 1305 cons| 1303 + 1306 relatedness| 1128 + 1307 intimate| 1306 + 1308 unfamiliar|϶ 1306 + 1309 opposed| 1306 + 1310 sex|Ա 1128 + 1311 male| 1310 + 1312 female|Ů 1310 + 1313 origin| 1128 + 1314 name| 1128 + 1315 number| 1128 + 1316 performance| 1128 + 1317 interest|Ȥζ 1128 + 1318 outlook|ǰ 1128 + 1319 relationship|ϵ 957 + 1320 attachment| 1319 + 1321 public| 1320 + 1322 private|˽ 1320 + 1323 kind| 1319 + 1324 certain|ij 1323 + 1325 other| 1323 + 1326 special| 1323 + 1327 ordinary| 1323 + 1328 source|Դ 1319 + 1329 original|ԭ 1328 + 1330 foreign| 1328 + 1331 artificial| 1328 + 1332 location|λ 1319 + 1333 internal| 1332 + 1334 external| 1332 + 1335 direction| 1319 + 1336 east| 1335 + 1337 west| 1335 + 1338 south| 1335 + 1339 north| 1335 + 1340 clan| 1319 + 1341 divergence| 1319 + 1342 boundary| 1319 + 1343 sequence| 1319 + 1344 InSequence| 1343 + 1345 OutOfOrder| 1343 + 1346 contrariness| 1319 + 1347 positive| 1346 + 1348 negative| 1346 + 1349 situation|״ 957 + 1350 circumstances| 1349 + 1351 urgent| 1350 + 1352 peaceful| 1350 + 1353 relax| 1350 + 1354 lonely| 1350 + 1355 flourishing| 1350 + 1356 wane|˥ 1350 + 1357 tranquil| 1350 + 1358 hardship| 1350 + 1359 safe| 1350 + 1360 dangerous|Σ 1350 + 1361 happy| 1350 + 1362 miserable| 1350 + 1363 busy|æ 1350 + 1364 idle| 1350 + 1365 richness|ƶ 1349 + 1366 rich| 1365 + 1367 poor| 1365 + 1368 similarity|ͬ 1349 + 1369 alike| 1368 + 1370 different| 1368 + 1371 occasion| 1349 + 1372 bustling| 1371 + 1373 crowded| 1371 + 1374 quiet| 1371 + 1375 stuffy| 1371 + 1376 cosy| 1371 + 1377 physique| 1349 + 1378 unripe| 1377 + 1379 ripe| 1377 + 1380 wholeness|ȱ 1349 + 1381 complete| 1380 + 1382 incomplete|ȱ 1380 + 1383 fullness| 1349 + 1384 full| 1383 + 1385 possibility| 1349 + 1386 possible| 1385 + 1387 impossible| 1385 + 1388 almost| 1385 + 1389 environment| 1349 + 1390 syntax|﷨ 1390 + 1391 adverbial|״ 1390 + 1392 manner|ʽ 1391 + 1393 accompaniment| 1391 + 1394 comment| 1391 + 1395 modality| 1391 + 1396 neg| 1391 + 1397 emphasis|ǿ 1391 + 1398 tense|ʱ̬ 1391 + 1399 conjunction| 1390 + 1400 and| 1399 + 1401 or| 1399 + 1402 but| 1399 + 1403 whword| 1390 + 1404 concession|ò 1403 + 1405 supplement|ݽ 1403 + 1406 condition| 1403 + 1407 cause|ԭ 1403 + 1408 EventResult|¼ 1403 + 1409 transition|ת 1403 + 1410 result| 1403 + 1411 particle| 1390 + 1412 DeChinese| 1411 + 1413 LeChinese| 1411 + 1414 Vdirection| 1413 + 1415 Vprocess| 1413 + 1416 Vsuppose|ٶ 1415 + 1417 Vstart| 1415 + 1418 Vgoingon|չ 1415 + 1419 Vcontinue| 1415 + 1420 Vend| 1415 + 1421 Vresult| 1413 + 1422 Vachieve| 1421 + 1423 Vable| 1421 + 1424 Vpossible| 1421 + 1425 Vtry| 1421 + 1426 MaChinese| 1411 + 1427 classifier|λ 1390 + 1428 unit|λ 1427 + 1429 NounUnit| 1427 + 1430 ActUnit| 1427 + 1431 qValue|ֵ 1431 + 1432 amount| 1431 + 1433 many| 1432 + 1434 few| 1432 + 1435 single| 1432 + 1436 double| 1432 + 1437 fragment| 1432 + 1438 some|Щ 1432 + 1439 sufficient| 1432 + 1440 half| 1432 + 1441 only| 1432 + 1442 over| 1432 + 1443 rate| 1431 + 1444 SecondaryFeature| 1444 + 1445 ProperName|ר 1444 + 1446 mass| 1444 + 1447 official| 1444 + 1448 employee|Ա 1444 + 1449 industrial| 1444 + 1450 mine| 1444 + 1451 factory| 1444 + 1452 agricultural|ũ 1444 + 1453 commercial| 1444 + 1454 education| 1444 + 1455 medical|ҽ 1444 + 1456 literature| 1444 + 1457 entertainment| 1444 + 1458 sport| 1444 + 1459 religion|ڽ 1444 + 1460 politics| 1444 + 1461 diplomatic|⽻ 1444 + 1462 police| 1444 + 1463 military| 1444 + 1464 royal| 1444 + 1465 family| 1444 + 1466 friend| 1444 + 1467 enemy| 1444 + 1468 crime| 1444 + 1469 waste| 1444 + 1470 poison| 1444 + 1471 desired| 1444 + 1472 undesired|ݬ 1444 + 1473 abstract| 1444 + 1474 generic|ͳ 1444 + 1475 question| 1444 + 1476 country| 1444 + 1477 capital| 1444 + 1478 provincial|ʡ 1444 + 1479 city| 1444 + 1480 village| 1444 + 1481 route|· 1444 + 1482 surname| 1444 + 1483 firstPerson| 1444 + 1484 SecondPerson| 1444 + 1485 ThirdPerson| 1444 + 1486 it| 1444 + 1487 self| 1444 + 1488 EachOther|໥ 1444 + 1489 head|ͷ 1444 + 1490 heart| 1444 + 1491 body| 1444 + 1492 bone| 1444 + 1493 base| 1444 + 1494 limb|֫ 1444 + 1495 arm| 1444 + 1496 hand| 1444 + 1497 leg| 1444 + 1498 foot| 1444 + 1499 wing| 1444 + 1500 edge| 1444 + 1501 mouth| 1444 + 1502 eye| 1444 + 1503 viscera| 1444 + 1504 nerve| 1444 + 1505 tail|β 1444 + 1506 embryo| 1444 + 1507 skin|Ƥ 1444 + 1508 flesh| 1444 + 1509 hair|ë 1444 + 1510 aspect| 1444 + 1511 upper| 1444 + 1512 beneath| 1444 + 1513 InFront|ǰ 1444 + 1514 hind| 1444 + 1515 surrounding|Χ 1444 + 1516 festival| 1444 + 1517 year| 1444 + 1518 season| 1444 + 1519 spring| 1444 + 1520 summer| 1444 + 1521 autumn| 1444 + 1522 winter| 1444 + 1523 month| 1444 + 1524 TenDays|Ѯ 1444 + 1525 week| 1444 + 1526 day| 1444 + 1527 hour|ʱ 1444 + 1528 minute| 1444 + 1529 morning| 1444 + 1530 afternoon| 1444 + 1531 night| 1444 + 1532 middle| 1444 + 1533 ending|ĩ 1444 + 1534 now| 1444 + 1535 past| 1444 + 1536 future| 1444 + 1537 immediate| 1444 + 1538 finally| 1444 + 1539 already| 1444 + 1540 also|Ҳ 1444 + 1541 ordinal| 1444 + 1542 cardinal| 1444 + 1543 approximate| 1444 + 1544 EventRoleAndFeatures|̬ɫ 1544 + 1545 EventRole|̬ɫ 1544 + 1546 relevant|ϵ 1545 + 1547 existent| 1545 + 1548 experiencer| 1545 + 1549 agent|ʩ 1545 + 1550 coagent|ʩ 1545 + 1551 possession|ռ 1545 + 1552 patient| 1545 + 1553 PatientPartof| 1545 + 1554 PatientProduct|Ʒ 1545 + 1555 PatientAttribute| 1545 + 1556 PartOfTouch| 1545 + 1557 content| 1545 + 1558 ContentProduct|ݳƷ 1545 + 1559 ResultContent| 1545 + 1560 isa|ָ 1545 + 1561 partof| 1545 + 1562 whole| 1545 + 1563 descriptive|д 1545 + 1564 result| 1545 + 1565 ResultEvent|¼ 1545 + 1566 ResultIsa|ָ 1545 + 1567 ResultWhole| 1545 + 1568 cause|ԭ 1545 + 1569 partner| 1545 + 1570 contrast| 1545 + 1571 ContentCompare|Ƚ 1545 + 1572 source|Դ 1545 + 1573 SourceWhole|Դ 1545 + 1574 target|Ŀ 1545 + 1575 cost| 1545 + 1576 beneficiary| 1545 + 1577 StateIni|ԭ״̬ 1545 + 1578 StateFin|״̬ 1545 + 1579 location| 1545 + 1580 LocationIni|ԭ 1545 + 1581 LocationFin|մ 1545 + 1582 LocationThru|ͨ 1545 + 1583 direction| 1545 + 1584 time|ʱ 1545 + 1585 TimeIni|ʼʱ 1545 + 1586 TimeFin|ֹʱ 1545 + 1587 duration|ʱ 1545 + 1588 DurationAfterEvent|ʱ 1545 + 1589 EventProcess|¼ 1545 + 1590 means|ֶ 1545 + 1591 instrument| 1545 + 1592 material| 1545 + 1593 degree|̶ 1545 + 1594 range| 1545 + 1595 manner|ʽ 1545 + 1596 TimeRange|ʱ 1545 + 1597 frequency|Ƶ 1545 + 1598 times| 1545 + 1599 purpose|Ŀ 1545 + 1600 scope|Χ 1545 + 1601 AccordingTo| 1545 + 1602 condition| 1545 + 1603 concession|ò 1545 + 1604 comment| 1545 + 1605 succeeding| 1545 + 1606 besides|ݽ 1545 + 1607 except| 1545 + 1608 accompaniment| 1545 + 1609 modifier| 1545 + 1610 restrictive|޶ 1545 + 1611 quantity| 1545 + 1612 QuantityCompare|Ƚ 1545 + 1613 possessor| 1545 + 1614 concerning| 1545 + 1615 EventFeatures|̬ 1544 + 1616 topic| 1615 + 1617 focus| 1615 diff --git a/data/glossary.dat b/data/glossary.dat new file mode 100644 index 0000000..19a7edd --- /dev/null +++ b/data/glossary.dat @@ -0,0 +1,66181 @@ +1 NUM qValue|ֵ,amount|,cardinal| +2 NUM qValue|ֵ,amount|,cardinal|,mass| +3 NUM qValue|ֵ,amount|,cardinal|,mass| +4 NUM qValue|ֵ,amount|,cardinal|,mass| +5 NUM qValue|ֵ,amount|,cardinal|,mass| +6 NUM qValue|ֵ,amount|,cardinal|,mass| +7 NUM qValue|ֵ,amount|,cardinal|,mass| +8 NUM qValue|ֵ,amount|,cardinal|,mass| +9 NUM qValue|ֵ,amount|,cardinal|,mass| +ASCII N symbol|,computer|,software| +BP N tool|þ,*LookFor|Ѱ,#cry| +B N fact|,diagnose|,medical|ҽ +B N tool|þ,*diagnose|,medical|ҽ +CPU N part|,%computer|,heart| +DNA N part|,%animate| +T N clothing|,#body| +U N facilities|ʩ,route|·,curved| +WTO N InstitutePlace|,ProperName|ר,commercial| +X N lights|,*diagnose|,medical|ҽ +s N character|,surname|,human|,ProperName|ר + N room|,@excrete|й + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V beat| + V beat| +ض V ShowBadEmotion|ʾ + N tree| + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + N lights| + ECHO {comment|} + ECHO {comment|} +ѽ ECHO {comment|} +Ӵ ECHO {comment|} + N place|ط,country|,ProperName|ר,(Afghanistan|) + N place|ط,country|,ProperName|ר,(Albania|) + N place|ط,country|,ProperName|ר,(Algeria|) + N place|ط,country|,ProperName|ר,(Argentina|͢) + N human|,%publications|鿯 + N human|,family|,male| + N place|ط,capital|,ProperName|ר,(the Ivory Coast|) + N humanized|,ProperName|ר + N language|,#country|,ProperName|ר + N place|ط,capital|,ProperName|ר,(the United Arab Emirates|) + N human|,family|,male| + N human|,ProperName|ר,past| + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Albania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,(Albania|) + N language|,#country|,ProperName|ר + N part|,%inanimate| + N lights| + N place|ط,capital|,ProperName|ר,(Algeria|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Algeria|) + N place|ط,country|,ProperName|ר,(Africa|) +ǵɶ N money|,(Algeria|) + N human|,(Algeria|) + N language|,#country|,ProperName|ר + N human|,young|,rash|ç,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Afghan|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,(Afghanistan|) + N human|,(Afghan|) +͢ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Argentina|͢) +͢ N place|ط,country|,ProperName|ר,(South America|) +͢ N human|,(Argentina|͢) +è N human|,ordinary| + N medicine|ҩ + N place|ط,capital|,ProperName|ר,(Ghana|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Emirates|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Arab|) + N symbol|,#quantity| + N language|,#country|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(Palestine|˹̹) +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Emirates|) + N place|ط,country|,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Oman|) + N place|ط,country|,ProperName|ר,(Asia|) +Ƕ N money|,(Oman|) +è N human|,ordinary| +װ N bacteria|΢ +װ N disease| +Ħ N medicine|ҩ +ķ N language|,#country|,ProperName|ר +ķ˹ص N place|ط,capital|,ProperName|ר,(Netherlands|) +Ƥ N place|ط,capital|,ProperName|ר,(Western Samoa|Ħ) +Ƭ N medicine|ҩ,?addictive|Ⱥ + N human|,aged|,female|Ů + N human|,family|,female|Ů +ķ N language|,#country|,ProperName|ר +ݽ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Azerbaijan |ݽ) +ݽ N place|ط,country|,ProperName|ר,(Asia|) +ݽ N language|,#country|,ProperName|ר +˾ƥ N medicine|ҩ +Ʒ N medicine|ҩ + N human|,#occupation|ְλ,*TakeCare|,*teach|,female|Ů + N human|,family|,female|Ů + N human|,religion|ڽ + V please|ȡ + N place|ط,country|,ProperName|ר,(Egypt|) + N place|ط,country|,ProperName|ר,(Ethiopia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Egypt|) + N place|ط,country|,ProperName|ר,(Africa|) + N money|,(Egypt|) + N human|,(Egypt|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ethiopia|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Ethiopia|) +˹ N money|,(Cape Verde|ý) +˹ N money|,(Portugal|) + V BeNear| + V delay| + V do|,manner=regular| + V endure| + V pass|ȹ + V suffer| + ADV aValue|ֵ,sequence|,regular| + V suffer|,content=beat| + V suffer|,content=HungryThirsty| + ADV aValue|ֵ,sequence|,InSequence| +Ұ ADV aValue|ֵ,sequence|,InSequence| + V BeNear| + V approach|ӽ + V suffer|,content=ExpressAgainst|Ǵ +Ű ADV aValue|ֵ,sequence|,InSequence| + ADV aValue|ֵ,sequence|,InSequence| + ADV aValue|ֵ,sequence|,InSequence| + V suffer|,content=beat| + ECHO {comment|} +ѽ ECHO {comment|} +Ӵ ECHO {comment|} + ECHO {comment|} +̾ V sigh|̾ + V pity| + V sorrowful| + V sorrowful| + V condole|° + V request|Ҫ + V cry|,manner=sorrowful| + V weep|,manner=sorrowful| +Ұ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V cry|,manner=sorrowful| + V cry|,manner=sorrowful| + N music|,*condole|° + V pity| + V cry|,manner=sorrowful| + V weep|,manner=sorrowful| + V request|Ҫ + V sorrowful| +˼ N emotion|,sorrowful| +̾ V sigh|̾ +ʹ V sorrowful| +Թ V sorrowful| + V pity| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,color|ɫ,white| + N disease| + N disease| + N disease| +ħ N disease| +ϸ N part|,%AnimalHuman|,*CauseToDo|ʹ,#disease|,#medical|ҽ +֢ N disease| +֢ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#disease| + N disease| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,height|߶,low| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N furniture|Ҿ,@sit| +ն ADJ aValue|ֵ,fatness|,fat| + N human|,low| + V PlayDown| + ADJ aValue|ֵ,fatness|,fat| + N human|,low| +С ADJ aValue|ֵ,height|߶,low| + N human|,low| + N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + V punish|,police| + N language|,#country|,ProperName|ר + N tool|þ,*cure|ҽ +ɭ N human|,official|,politics|,ProperName|ר,(US|) +̲ N disease| + V obstruct|ֹ + ADJ aValue|ֵ,easiness|,difficult|,mention|ἰ,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ FitNot| + V FitNot| + ADJ aValue|ֵ,importance|,important| +ְ ADJ FitNot| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V AptTo| + V FondOf|ϲ + N emotion|,love|,desired| + V like|ϧ + V love| + V like|ϧ + N attribute|,name|,&human|,intimate| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V respect| + N human|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Scotland|ո) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ireland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Ireland|) + N language|,#country|,ProperName|ר +ɧ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,ExpressDissatisfaction|ʾ + N ShowLove|ʾ + ADJ aValue|ֵ,behavior|ֹ,faithful|,*like|ϧ,#country| + V like|ϧ,target=country| + N emotion|,like|ϧ,#country|,desired| + N human|,*like|ϧ,#country|,desired| + N emotion|,like|ϧ,#country|,desired| + V FondOf|ϲ + N emotion|,FondOf|ϲ + N fact|,$FondOf|ϲ,#WhileAway| + N human|,*FondOf|ϲ,#WhileAway| + V like|ϧ +Ц N human|,*tease|ȡ +˹ N lights|,*diagnose|,medical|ҽ +˹ N lights|,*diagnose|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,*weep| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,weep| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Ṭ N house|,#politics|,(France|) + V like|ϧ + V love| + N human|,friend|,*love|,desired| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +Ī V BeUnable|,content=help| +Ľ V love| +Ů N human|,family|,female|Ů + N emotion|,love|,desired| + N music|,#love| +Ȯ N livestock|,desired|,$like|ϧ + N human|,family| + N human|,friend|,*love|,desired| +ɳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Estonia|ɳ) +ɳ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ɳ N language|,#country|,ProperName|ר + ADJ humanized|,#love| +˹Ħ N human|,(Eskimo|˹Ħ) + N institution|,*manage|,#cleanness|ྻ +ϧ V like|ϧ + N emotion|,like|ϧ,desired| +˹̹ N human|,ProperName|ר + N emotion|,like|ϧ,hate| + ADJ aValue|ֵ,width|,narrow|խ + N facilities|ʩ,route|· +· N facilities|ʩ,route|· + N part|,%LandVehicle|,@sit| + N tool|þ,@sit|,#livestock| + N SportTool|˶ +ɽ N place|ط,city|,ProperName|ר,(China|й) + N part|,%LandVehicle|,@sit| + N tool|þ,@sit|,#livestock| + N chemical|ѧ +ǰ N medicine|ҩ + N chemical|ѧ + N chemical|ѧ +ˮ N material|,*feed|ι,#crop|ׯ + V AtEase| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N character|,surname|,human|,ProperName|ר + V cherish|Ļ + V give| + V install|װ + V put| + V satisfied| + V soothe|ο + CLAS unit|λ,&electricity| +Ժ N waters|ˮ,surfacial|,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Andorra|) + N place|ط,capital|,ProperName|ר,(Andorra|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V keep| +Ž N attribute|,circumstances|,peaceful|,&organization|֯ + V pass|ȹ,manner=happy| + N pass|ȹ,patient=aged|,manner=happy| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V arrange| + V put| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ؼ V obey|ѭ,content=law|ɷ + V soothe|ο + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Angola|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Angola|) + ADJ aValue|ֵ,circumstances|,safe|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V GetMarried| + V reside|ס +ҷ N expenditure|,*reside|ס +仧 V reside|ס + N fact|,check|,#tour|,#safe| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N fact|,reside|ס +ҵ ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N place|ط,capital|,ProperName|ר,(Turkey|) + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,kill|ɱ,#medical|ҽ + N place|ط,family|,happy|,desired| + N furniture|Ҿ,@sit| + N part|,%institution|,politics|,heart|,(institution|=UN|Ϲ) + N place|ط,capital|,ProperName|ר,(Jordan|Լ) + V sleep|˯,manner=peaceful| +ҩ N medicine|ҩ,*CauseToDo|ʹ,#sleep|˯ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V arrange| + N unit|λ,&electricity| +ȫ ADJ aValue|ֵ,circumstances|,safe|,desired| +ȫ N attribute|,circumstances|,safe|,&entity|ʵ +ȫ N part|,%vehicle|ͨ,*fasten|˩ +ȫ N facilities|ʩ,@walk|,#route|·,safe| +ȫ N fittings|,%tool|þ,*illuminate|,#TakePicture| +ȫ N tool|þ,*illuminate|,mine| +ȫ N part|,%implement|,#safe| +ȫ» N part|,%institution|,politics|,heart|,(institution|=UN|Ϲ) +Ȼ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +ʯ ADJ aValue|ֵ,circumstances|,safe|,desired| +̩ɽ ADJ aValue|ֵ,circumstances|,safe|,desired| + V install|װ + V reside|ס + V MakeLiving|ı + V cure|ҽ,content=disease|,medical|ҽ + V soothe|ο + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +Σ N attribute|,circumstances|,#safe|,#dangerous|Σ,&human| +ο V AtEase| +ο N emotion|,AtEase| +ο V soothe|ο +ο N tool|þ,*reward|,$GiveAsGift|,desired| +ο N fact|,compete|,sport| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ϣ V rest|Ϣ +Ϣ V sleep|˯ +Ϣ N chemical|ѧ,$burn| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V pass|ȹ,manner=happy| +Ъ V sleep|˯ + V AtEase| + ADJ aValue|ֵ,circumstances|,happy|,desired| +Ӫկ V reside|ס + V satisfied| +״ V satisfied|,cause=circumstances| + V bury| +֮ V calm| + V arrange| +÷ N expenditure|,*reside|ס +װ V install|װ +װ N human|,*install|װ +װ N human|,*install|װ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ humanized|,desired| + N tool|þ,cubic|,@store|,#medicine|ҩ,medical|ҽ + PRON {firstPerson|} + PRON {firstPerson|,mass|} + V delay| + V hold| + V press|ѹ + V restrain|ֹ + PREP {AccordingTo} + V refuse| + V refuse|,content=fight|,military| +Ͱ V obey|ѭ,content=sequence| + V press|ѹ +ɷֺ V issue|ַ + N part|,%tool|þ +ͷ N issue|ַ + ADV {comment|} + V diagnose|,medical|ҽ +Ħ V cure|ҽ,means=press|ѹ,medical|ҽ +ť N part|,%implement| +ť N part|,%tool|þ + ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +ʱ ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +ʱ ADJ aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +˵ ADV {comment|} +ͼ V LookFor|Ѱ,means=follow| + N InsectWorm| +ѹ V press|ѹ + N text|,*explain|˵ + PREP {AccordingTo} +ճ V obey|ѭ,content=regulation| + V restrain|ֹ +಻ס V BeUnable|,content=restrain|ֹ +಻ס V EndureNot| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N disease| + V hide| + N water|ˮ + N location|λ,dark| + N location|λ,secret| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + V damage|,manner=secret| + V kill|ɱ,manner=secret| + N waters|ˮ,linear| + ADJ aValue|ֵ,color|ɫ,red| + N attribute|,color|ɫ,red|,&physical| + N disease| + N room| + N weapon|,hidden| + N stone|ʯ,#waters|ˮ + N water|ˮ,linear| + N weapon|,hidden| +ɱ V kill|ɱ,manner=secret|,crime| +ʾ V express|ʾ,manner=tactful| + N room|,#TakePicture| +ﲨ V please|ȡ,manner=secret| + V damage|,manner=secret| +̲ N part|,%land|½,#waters|ˮ,edge| +̽ N human|,#occupation|ְλ,*scout|,police| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + N part|,%tool|þ,body|,#TakePicture| +Ц V laugh|Ц,manner=hidden| +Ц V laugh|Ц,manner=secret| +Ӱ N trace|,#lights| + N expression| + N expression|,*CompareTo| + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N mark|־,#VehicleGo|ʻ,#waters|ˮ + N medicine|ҩ + N document| + N fact| + N fact|,#police| + N furniture|Ҿ,@put| + N text|,$propose|,$discuss|,$debate| + N tool|þ,#cook| + V happen|,experiencer=fact|,police| + N human|,crime|,#police|,$detain|ס,undesired|ݬ + N fact|,#police| + N document| + N fact|,#police| + N part|,%fact|,flesh|,#police| +ͷ N location|λ,%furniture|Ҿ + N cause|ԭ + N part|,%fact|,flesh|,#police| + N fact|,#police| + N furniture|Ҿ,@put| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V CausePartMove|,direction=upper| + V prosper| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V prosper| + ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + V CausePartMove|,direction=upper| +Ȼ ADV aValue|ֵ,courage|,brave|,desired| + V CausePartMove|,direction=upper|,partof=head|ͷ + V GoForward|ǰ,manner=arrogant| + V FeelingByGood| + ADJ qValue|ֵ,amount|,many| +³ѷ N human| +Ȼ ADJ qValue|ֵ,amount|,many| +˹ CLAS unit|λ,&weight| +˾ CLAS unit|λ,&weight| + ADJ aValue|ֵ,form|״,dented| +澵 N tool|þ,*look|,#shrink|С +͸ N tool|þ,*look|,#shrink|С +͹ƽ ADJ aValue|ֵ,form|״,dissimilar| + V FormChange|α,StateFin=dented| + ADJ aValue|ֵ,form|״,dented| + N character|,surname|,human|,ProperName|ר + V walk| + V cook| + V endure| + V punish| +ҹ V pass|ȹ,patient=night| + V fly| + V fly| + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant| + N attribute|,will|־,strong|ǿ,&human| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ attribute|,behavior|ֹ,arrogant|,&human| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V despise| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N place|ط,country|,ProperName|ר,(Austria|µ) +µ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Austria|µ) +µ N place|ط,country|,ProperName|ר,(Europe|ŷ) +µ N human|,(Austria|µ) +µ N money|,(Austria|µ) +¿ N place|ط,ProperName|ר,(New Zealand|) +¿ N place|ط,ProperName|ר,(US|) +¿ N language|,#country|,ProperName|ר + N language|,#country|,ProperName|ר +ƥ N fact|,compete|,sport| +ƥ˰뵺 N place|ط,ProperName|ר,(US|) +ƥ˶ N fact|,compete|,sport| +ƥ˶ίԱ N institution|,compete|,ProperName|ר,sport| +Ī N language|,#country|,ProperName|ר + N place|ط,ProperName|ר,(US|) + N fact| + ADJ aValue|ֵ,content|,profound| + N attribute|,content|,profound|,&event|¼,&information|Ϣ +˹ N fact|,ProperName|ר,reward|,entertainment| +˹½ N place|ط,capital|,ProperName|ר,(Norway|Ų) +˹ N money|,(Argentina|͢) +ί N institution|,#compete|,ProperName|ר,sport| + N fact|,compete|,sport| +˻ N fact|,compete|,sport| + V repent|û + V upset| +û V repent|û + V upset| +ɥ V disheartened| + N place|ط,country|,ProperName|ר,(Australia|Ĵ) +Ĵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Australia|Ĵ) +Ĵ N place|ط,country|,ProperName|ר,(Australia|) +Ĵǿԭ N bacteria|΢ +Ĵ N human|,(Australia|Ĵ) +ĴԪ N money|,(Australia|Ĵ) +Ŀ N bacteria|΢ + N place|ط,city|,ProperName|ר +Ԫ N money|,(Macao|) +Ԫ N money|,(Australia|Ĵ) + N place|ط,ProperName|ר + N FlowerGrass| +Ž N fruit|ˮ +Ž N tool|þ,*cool| + N shows| + N shows| +ŮԱ N human|,#occupation|ְλ,*perform|,female|Ů +Ա N human|,#occupation|ְλ,*perform| + NUM qValue|ֵ,amount|,cardinal|,mass| + V StripOff|ȥ + V TakeAway|ᶯ + V assemble|ۼ + V cook| + V split|ƿ,purpose=remove| + V stay|ͣ + V TakeAway|ᶯ + N LandVehicle|,*slide| + V steal|͵ + N human|,crime|,*steal|͵ +ȶ N livestock|,*recreation| + N InstitutePlace|,@drink|,commercial| + V addict|Ⱥ + ECHO sound| + STRU {MaChinese|} + V MakeSound| + V MakeSound| +ʶ N tool|þ,cubic|,@put| +¨ N tool|þ,cubic|,@put| + NUM qValue|ֵ,amount|,cardinal|,mass| +˱ N edible|ʳ +˱ɽ N facilities|ʩ,space|ռ,ProperName|ר,@bury|,#human|,#die| +˱ɽĹ N facilities|ʩ,space|ռ,ProperName|ר,@bury|,#human|,#die| +˳ ADV aValue|ֵ,possibility|,possible|,desired| +˳ NUM qValue|ֵ,amount|,many| +˴ N fish| +˷ N direction|,all|ȫ +˷ N location|λ +˷ N symbol|,#music| +˷֮һ N fact|,compete| +˸ N bird|,*speak|˵ +˹ N text| +˹ N text| +˹ N army|,past| +˽ N crop|ׯ,?material|,#food|ʳƷ +˽ N material|,?food|ʳƷ,*cook| +˾Ųʮ V BeSimilar| +· N army|,past| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N furniture|Ҿ,@put| + N humanized|,ProperName|ר +ɹ V show|,content=ability| +ɹͨ V show|,content=ability| + N furniture|Ҿ,@put| +һ N time|ʱ,day|,festival|,#army|,@congratulate|ף + N time|ʱ,month| +· N time|ʱ,month| +½ N time|ʱ,festival|,@congratulate|ף + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + N qValue|ֵ,rate|,BecomeLess|,commercial| + N character|,#time|ʱ,*tell|,#circumstances| + N character|,(China|й) +ֽ N part|,%human|,foot|,#form|״ +ûһƲ V ExistNot| + N knowledge|֪ʶ + N trace|,#disease| + N trace|,#disease|,#wounded| +̺ N trace|,#disease|,#wounded| + N trace|,#disease|,#wounded| + V BeNear| + N character|,surname|,human|,ProperName|ר + V expect| + N place|ط,country|,ProperName|ר,(Pakistan|ͻ˹̹) + N place|ط,country|,ProperName|ר,(Palestine|˹̹) + V stay|ͣ +ͰͶ˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Barbados|ͰͶ˹) +ͰͶ˹ N place|ط,country|,ProperName|ר,(South America|) +ͰͶ˹Ԫ N money|,(Barbados|ͰͶ˹) +ͱ N place|ط,ProperName|ר,past| +ͱ N human|,(Babylon|ͱ) +Ͳ N money|,(Panama|) +Ͳ V expect| +Ͳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Papua|Ͳ) +Ͳ N place|ط,country|,ProperName|ר,(Oceania|) +Ͳ¼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Papua New Guinea|Ͳ¼) +Ͳ¼ N place|ط,country|,ProperName|ר,(Oceania|) +Ͷ N tool|þ,cubic|,@put| +Ͷ N livestock|,*recreation| +Ͷ N place|ط,ProperName|ר,(Europe|ŷ) +Ͷɰ뵺 N place|ط,ProperName|ר,(Europe|ŷ) +ͷ N place|ط,ProperName|ר,(Germany|¹) +͸ N place|ط,capital|,ProperName|ר,(Iraq|) +͹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bahamas|͹) +͹ N place|ط,country|,ProperName|ר,(South America|) +͹Ԫ N money|,(the Bahamas|͹) +ͺ N human|,ProperName|ר,#music|,entertainment| +ͻ˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Pakistan|ͻ˹̹) +ͻ˹̹ N place|ط,country|,ProperName|ר,(Asia|) +ͻ˹̹¬ N money|,(Pakistan|ͻ˹̹) +ͻ˹̹ N human|,(Pakistan|ͻ˹̹) +ͽ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ͽ V please|ȡ +ͽ֯ N institution|,ProperName|ר,#politics|,#military|,(Palestine|˹̹) +ͽ N human|,ProperName|ר,literature| +Ϳ N place|ط,capital|,ProperName|ר,(Azerbaijan|ݽ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Paraguay|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Paraguay|) +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Palestine|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹̹֯ N institution|,ProperName|ר,#politics|,#military|,(Palestine|˹̹) + N place|ط,capital|,ProperName|ר,(France|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bahrain|) + N place|ط,country|,ProperName|ר,(Asia|) +ֵɶ N money|,(Bahrain|) + N place|ط,capital|,ProperName|ר,(Mali|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Panama|) + N place|ط,country|,ProperName|ר,(South America|) + N place|ط,capital|,ProperName|ר,(Panama|) + N human|,(Panama|) +˺ N waters|ˮ,linear|,ProperName|ר,(Panama|) + N place|ط,city|,ProperName|ר,(Switzerland|ʿ) + N place|ط,city|,ProperName|ר,(Spain|) +ʲ N language|,#country|,ProperName|ר +ʿ N LandVehicle| +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Basque|˹) +˹ N place|ط,country|,ProperName|ר +˹ N language|,#country|,ProperName|ר + V expect| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Brazilia|) + N place|ط,country|,ProperName|ר,(South America|) + N place|ط,capital|,ProperName|ר,(Brazil|) + N human|,(Brazilia|) + N part|,%AnimalHuman|,hand| + V PickOut|γ + V choose|ѡ + V cool| + V lift| + V occupy|ռ,military| + V surpass|ǿ +γ V PickOut|γ +γ V remove| +εض V appear| +ε V remove| +ζ ADJ aValue|ֵ,fullness|,empty|,#hair|ë +θ V lift| +θ V upgrade| +κ N fact|,exercise|,sport| +μ ADJ aValue|ֵ,quality|,good|,desired| +μ ADJ aValue|ֵ,quality|,good|,desired| +ν V evade|ر,content=do| +ν V start|ʼ,content=run| +ê V start|ʼ,content=VehicleGo|ʻ +ë V remove|,patient=hair|ë + V fail|ʧ +˿ N food|ʳƷ +˿ V straighten|ֱ,industrial| + V evade|ر,content=do| + V start|ʼ,content=run| +Ⱦ V start|ʼ,content=run| +Ӫ V start|ʼ,content=leave|뿪,military| + N part|,%text| +ɽˮ V SelfMoveInManner|ʽ + V SelfMoveInManner|ʽ + N part|,%text| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N tool|þ,#weapon|,$AimAt|,$firing| +г N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| +д N ship|,#weapon|,$AimAt|,$firing| +л N aircraft|,#weapon|,$AimAt|,$firing| + N part|,%tool|þ,heart|,#weapon|,#AimAt|,#firing| + N tool|þ,#weapon|,$AimAt|,$firing| + V HoldInArm|§ + CLAS NounUnit|,&inanimate|,&plant|ֲ + V control| + V defend| + V hold| + N part|,%LandVehicle|,*drive|Ԧ,hand| + N part|,%implement|,*hold|,*OpenShut|,hand| + N part|,%plant|ֲ,body| + PREP {PartOfTouch} + PREP {PatientProduct} + PREP {content} + PREP {patient} + PREP {possession} +ѱȷְƽ V MakeEqual|ʹ,sport| +ѱ N reason|,*ExpressAgainst|Ǵ,undesired|ݬ +ѳ V control| +ѳ V restrain|ֹ +Ѵŵ N human|,*exercise|,(football|) +ѷ V check| +ѹ V check| +ѹ V defend|,patient=route|·,police|,military| +Ѿ V fill|,patient=drinks|Ʒ +Ѿ V hold|,patient=drinks|Ʒ + V diagnose|,medical|ҽ + V defend| +ʽ N knowledge|֪ʶ + N part|,%implement|,*hold|,*OpenShut|,hand| + V defend|,police|,military| +ͷ N human|,official|,*manage|,#industrial| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N attribute|,trueness|α,&event|¼ + V hold| + V understand| + V use| +ס V control|,Vachieve| +Ϸ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +Ϸ N shows| +ֵ N human|,friend| +ס V control| + CLAS NounUnit|,&physical| + N tool|þ,agricultural|ũ + N tool|þ,agricultural|ũ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N land|½ + V control| + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,past|,undesired|ݬ + N place|ط,country|,*MakeBad|Ӻ,undesired|ݬ + N system|ƶ,#country|,*MakeBad|Ӻ,undesired|ݬ +Ե ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ȩ N system|ƶ,#country|,fierce|,*MakeBad|Ӻ,undesired|ݬ +Ȩ N system|ƶ,#country|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ +ռ V occupy|ռ,manner=fierce|,military| + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,official|,past| + V cease|ͣ + V dismiss| +չ V cease|ͣ,content=affairs|,#duty| +չ V dismiss|,ResultIsa=occupation|ְλ,politics| +ս V cease|ͣ,content=teach|,education| +տ V cease|ͣ,content=study|ѧ,education| + V cease|ͣ + V dismiss| +Ȩ N rights|Ȩ,*dismiss|,politics| + V cease|ͣ,content=sell|,commercial| + V cease|ͣ + V cease|ͣ + V dismiss| + V prohibit|ֹ + N human|,family|,male| +ְ N human|,family|,male| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,pure| + ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,property|,^$pay| + N character|,surname|,human|,ProperName|ר + V explain|˵ + V look|,manner=unsatisfied| +װ ADJ aValue|ֵ,color|ɫ,white| +װ ADJ aValue|ֵ,color|ɫ,white| +װ ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ +װ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +װ N affairs|,#duty|,#sequence|,^night| +װ N stationery|ľ,@write|д +ױֽ N paper|ֽ +ײ N material|,?clothing| +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ +׳ N attribute|,wisdom|ǻ,foolish|,&human| +׳ N human|,foolish|,undesired|ݬ +׳հ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +׳ N lights| +׳ N tool|þ,*illuminate| +״ N material|,#food|ʳƷ,$eat|,sour| +״ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +״ N part|,%AnimalHuman|,liquid|Һ,female|Ů +׵ N part|,%AnimalHuman|,embryo| +׵ N attribute|,scene|,&physical| +׶˹ N aValue|ֵ,attachment|,#country|,ProperName|ר,(Byelorussia|׶˹) +׶˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +׶˹ N language|,#country|,ProperName|ר +׷ N part|,%human|,hair|ë,white| +׷Բ ADJ aValue|ֵ,color|ɫ,white| +׷ N chemical|ѧ +׷ N food|ʳƷ +׷ N human|,enemy|,undesired|ݬ +׷ V lavish|˷ +׷ѿ V lavish|˷,patient=speak|˵ +׷ V lavish|˷,patient=do| +׷ V lavish|˷,patient=do| +׷Ļ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +׷ N medicine|ҩ,?addictive|Ⱥ +׸ V lavish|˷,patient=do| +׸ɶ N drinks|Ʒ,$addict|Ⱥ +׹ N house|,institution|,#politics|,(US|) +׹ N part|,%AnimalHuman|,#die|,bone| +׹ N fruit|ˮ +׺ N bird| +׺ N disease| +׺ N beast| +׻ N humanized|,ProperName|ר +׻ N FlowerGrass| +׻ V lavish|˷ +׻ ADJ aValue|ֵ,color|ɫ,white| +׻ N beast| +׻ N language|,ordinary| +׻ N text|,empty|,$boast| +׻ N text| +׻ N material|,*build| +׽ N metal| +׽𺺹 N house|,institution|,#politics|,(UK|Ӣ) +׾ ADJ aValue|ֵ,color|ɫ,white| +׾ N drinks|Ʒ,$addict|Ⱥ +׾ N paper|ֽ,*exam|,^$write|д +׿ˮ N water|ˮ,$drink| + N material|,?tool|þ + N drinks|Ʒ,$addict|Ⱥ +...һ V look|,#unsatisfied|,#despise| + N material| + N human|,#occupation|ְλ,employee|Ա + N part|,%clothing|,#head|ͷ,white| +칤 N human|,#occupation|ְλ,employee|Ա + N waters|ˮ +¶ N time|ʱ,day| + N human|,$love|,friend|,male|,desired| +ãã ADJ aValue|ֵ,color|ɫ,white| +é N FlowerGrass| +ú N stone|ʯ,*lighting|ȼ,$burn|,mine| + N material|,?food|ʳƷ,#crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + N medicine|ҩ,?addictive|Ⱥ + N human|,literature| + V draw|,literature| +ĭ N part|,%AnimalHuman|,liquid|Һ +ľ N AlgaeFungi|ֲ,?food|ʳƷ + N disease|,#look|,#eye| + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + N medicine|ҩ,poison| +Ƥ N document| +Ƥ N tree| + N mark|־,white| + N place|ط,ProperName|ר + N lights| +Ȼ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N human| + N weapon|,*stab| +ս N fight|,military| + N celestial| + N time|ʱ,morning| + N fact|,dream| + V dream| + N food|ʳƷ +ɫ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,white| +ɫ N attribute|,color|ɫ,white|,&physical| +ɫֲ N phenomena|,fierce|,politics|,undesired|ݬ + N medicine|ҩ,(China|й) + V start|ʼ,means=self| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ˮ N water|ˮ + N crop|ׯ + N material|,?food|ʳƷ,sweet| + N material|,?tool|þ + N time|ʱ,morning| +ҹ N time|ʱ,day| + N bill|Ʊ,commercial| + N metal| + N house|,institution|,#politics|,(UK|Ӣ) +ͭ N metal|,material| +ͷ ADJ aValue|ֵ,age|,aged| +ͷ N part|,%human|,white|,head|ͷ +ͷ N time|ʱ,aged|,#age| +ͷ N bird| +ͷ V alive|,duration=TimeLong| +ϸ N part|,%AnimalHuman|,liquid|Һ + N beast| +Ѫ N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ֢ N disease| + N fact|,unsatisfied|,despise|,#countenance| + N part|,%AnimalHuman|,#eye| + N tree| + N tree| +ҩ N medicine|ҩ,(China|й) +ҹ N time|ʱ,night| +սʿ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N InsectWorm| + N metal| + N CloudMist|,white| +ƲԹ V change| +ʯ N stone|ʯ,mine| +ֽ N paper|ֽ +ֽ N paper|ֽ,white| +ֽ ADJ aValue|ֵ,content|,true| + N human| + N time|ʱ,afternoon| + N character|,wrong| + N community|,ProperName|ר,(China|й) + N stone|ʯ,mine| +Ѽ N time|ʱ,past| + N FlowerGrass|,?medicine|ҩ + N tree| + N bird| + N disease| + N InsectWorm|,undesired|ݬ + N bacteria|΢,#OutOfOrder| + N fish| + N beast|,*swim| + N character|,surname|,human|,ProperName|ר + N tree| + N place|ط,capital|,ProperName|ר,(Germany|¹) + N tree| + N material|,*build|,*cover|ڸ,#route|· + N material|,?route|·,*cover|ڸ + NUM qValue|ֵ,amount|,cardinal|,mass| +ٰ ADJ aValue|ֵ,degree|̶,extreme| +ٲ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ٳ߸ͷһ V MakeBetter|Ż +ٶ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ٶʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ٷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ٷϾ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ٷֱ N quantity|,rate|,&entity|ʵ +ٷֵ N quantity|,rate|,&entity|ʵ +ٷֺ N symbol|,#quantity| +ٷ N quantity|,rate|,&entity|ʵ +ٷ N quantity|,rate|,&entity|ʵ +ٷ֮ ADJ qValue|ֵ,rate| +ٷ֮ ADJ aValue|ֵ,range|,all|ȫ +ٷ֮ NUM qValue|ֵ,amount|,all|ȫ +ٸн V excited| +ٺ N FlowerGrass| +ٻ V MakeBetter|Ż +ٻ N artifact|˹,generic|ͳ,commercial| +ٻ¥ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ˾ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ̵ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ټ V MakeBetter|Ż +ٿȫ N publications|鿯 +ٿǧ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + N character|,surname|,human|,ProperName|ר +һ ADJ aValue|ֵ,quality|,superior|,desired| +ɸ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N bird| + N bird| + CLAS unit|λ,&length| +Ľ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bermuda|Ľ) +Ľ N place|ط,ProperName|ר +Ľ N place|ط,country|,ProperName|ר,(North America|) +ĽȺ N place|ط,ProperName|ר +ĽԪ N money|,(Bermuda|Ľ) + N time|ʱ,TimeLong|,#alive| + N time|ʱ,year|,mass|,TimeLong| +겻 ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + N plan|ƻ,important| + N time|ʱ,festival|,@congratulate|ף +δ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +տ N disease| +¿ N drinks|Ʒ +ͨ N human|,wise|,desired| + N human|,aged| + NUM qValue|ֵ,amount|,cardinal|,mass| +ּ N attribute|,weight|,&ship| + N human|,rich|,desired| +Ųһ V believe|,condition=look| +һʧ ADJ aValue|ֵ,circumstances|,safe|,desired| + N human|,ordinary|,mass| +Ҷ N fittings|,%room|,*cover|ڸ +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +սʤ V win|ʤ,frequency=often| +۲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +۲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +۲ӵ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V explain|˵ + N part|,%implement| + V put| + V shake|ҡ + V show| + V wave|ڶ +ڲ V control| +ڲ V decorate|װ +ڶ V shake|ҡ +ڶ V wave|ڶ +ڶ V cross|Խ +ڶ N ship| +ڷ V put| +ڼ V show|,content=arrogant| + V ShowOff|ҫ,content=wealth|Ǯ + V ShowOff|ҫ,content=wealth|Ǯ + V talk|̸ + V show|,content=bearing|̬ +Ū V PlayWith|Ū +Ū V control| + V ShowOff|ҫ,content=wealth|Ǯ + V decorate|װ + N physical|,*decorate|װ,useless| + N tool|þ,*decorate|װ,$put| + V shake|ҡ,patient=hand|,purpose=ExpressDisagreement|ʾͬ + V shake|ҡ,patient=hand|,purpose=call|ٻ +̯ V establish|,patient=InstitutePlace|,#sell|,commercial| +̯ V keep|,patient=institution| + V disconnect| + V pretend|װ + N part|,%implement|,#measure| + V handle|,manner=proper| + V put|,manner=straight|ֱ + N tool|þ,*tell|,#time|ʱ + NUM qValue|ֵ,amount|,cardinal|,mass| + V damage| + V decline|˥ + V defeated| + V defeat|սʤ +ܱ V defeated| +ܱ N result|,wrong|,#text|,undesired|ݬ +ܱ N army|,*defeated|,undesired|ݬ,military| +ܻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +ܻ V damage| +ܻ V cure|ҽ,content=disease|,medical|ҽ +ܼ V defeated| +ܼ N human|,extravagant|,undesired|ݬ +ܾ N result|,fail|ʧ,undesired|ݬ + N human|,bad|,undesired|ݬ +¶ V exposure|¶ + V decline|˥ + V defeated|,police| + V GoBackward|,military| +θ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V disappointed|ʧ +Ѫ֢ N disease| + N result|,defeated|,undesired|ݬ + N human|,*defeated| + V defeated| +ӻͷ V amend| + V flee|,time=defeated| + V RegardAs| + V ResultIn| + V salute|¾ + V visit| +ݰ V ally| +ݰ EXPR expression|,*farewell| +ݰ V salute|¾ +ݱ V farewell| +ݵ V surrender| +ݶ V read|,manner=respect| +ݷ V visit| +ݻ V visit| +ݼ V meet| +ݼ V visit| +ݽ N thinking|˼,respect|,#wealth|Ǯ +ݽ N human|,*respect|,#wealth|Ǯ + V SayHello|ʺ,cause=festival| +ʦ V RegardAs|,ResultIsa=human|,#study|ѧ + V congratulate|ף,cause=festival|,#ComeToWorld| + V entrust|ί + V visit| + N thinking|˼,respect|,#physical| + N thinking|˼,respect|,#physical| + V salute|¾ + V visit| + N FlowerGrass|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| +޹Ұʷ N publications|鿯,#fact|,#time|ʱ,secondary| +޼ N publications|鿯,#fact|,#time|ʱ,secondary| +ʷ N fact|,#time|ʱ,secondary| +ʷ N publications|鿯,#fact|,#time|ʱ,secondary| + N FlowerGrass|,undesired|ݬ + N crop|ׯ + ADJ aValue|ֵ,form|״,linear| + N image|ͼ,dot| +߰ ADJ aValue|ֵ,color|ɫ,grey| +߰ ADJ qValue|ֵ,amount|,many| +߲ ADJ aValue|ֵ,color|ɫ,colored| +߲½ ADJ aValue|ֵ,color|ɫ,colored| +ߵ N image|ͼ,dot| + N beast| + N beast| + N part|,%route|·,@cross|Խ + N image|ͼ,linear| +˺ N disease| + N tree| + ADJ aValue|ֵ,color|ɫ,colored| + N bird| + CLAS NounUnit|,&vehicle|ͨ + N affairs|,#duty|,#sequence| + N character|,surname|,human|,ProperName|ר + N part|,%InstitutePlace|,education| + N part|,%army| + N part|,%organization|֯ +೤ N human|,official|,#institution| +೤ N human|,official|,education|,*study|ѧ +೤ N human|,official|,military| +೵ N LandVehicle|,*transport|,#employee|Ա +೵ N affairs|,*transport|,#employee|Ա + N quantity|,amount|,&transport| + N community|,entertainment| +෿ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N aircraft|,*transport|,#tour| +༶ N part|,%InstitutePlace|,education| + N ship|,*transport|,#tour| +Ū V ShowOff|ҫ,content=ability|,target=able| + ADJ aValue|ֵ,property|,fit|ʺ,EachOther|໥ + N time|ʱ,#transport|,#VehicleGo|ʻ +ڱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ +ʦ V GoBack|,win|ʤ,military| + N place|ط,capital|,ProperName|ר,(Gambia|ʱ) + N human|,*teach|,education| +׿ N MusicTool| + N community|,*perform|,entertainment| + N part|,%organization|֯,bone| + N part|,%InstitutePlace|,#factory| +鳤 N human|,official|,#factory| + N human|,official|,religion|ڽ,(Tibet|) + V SelfMove| + V TakeAway|ᶯ + V imitate|ģ +᲻ N tool|þ,*recreation|,#young| +ᶯ V TakeAway|ᶯ + V TakeAway|ᶯ,patient=family| +Ū V PlayWith|Ū +Ū V ShowOff|ҫ +ŪǷ V MakeTrouble| +Ǩ V TakeAway|ᶯ + V transport| +˹ N human|,#occupation|ְλ,*TakeAway|ᶯ +˹ N human|,#occupation|ְλ,*TakeAway|ᶯ + V pull| + V turn|Ťת +ⲻ N tool|þ,*recreation|,#young| +ƽ V MakeEqual|ʹ,sport| +⵹ V reverse|ߵ +Ա N human|,#occupation|ְλ,#route|· +⶯ V pull| + V MakeEqual|ʹ + N part|,%weapon|,*firing| +ƽ V MakeEqual|ʹ,sport| + N part|,%implement|,arm| + N tool|þ,*tighten|ս,*loosen| + N tool|þ,*tighten|ս,*loosen| + V BeSimilar| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + V fit|ʺ,EachOther|໥ + V announce| +䲼 V announce| +䲼 N human|,*announce| +䷢ V announce| +䷢ V grant| +佱 V grant|,possession=reward| + V announce| + N MusicTool| + V ShowBadEmotion|ʾ + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + N attribute|,speed|ٶ,&recreation|,#music| + N shape|,flat|,surfacial| + N tool|þ,%InstitutePlace|,*cover|ڸ + N wood|ľ +ʮ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +屨 N readings|,news| + N part|,%building|,skin|Ƥ + N tool|þ,*wipe| + N material|,wood|ľ +峵 N LandVehicle| + N furniture|Ҿ,*sit| +師 N tool|þ,*split|ƿ,*cut| + N MusicTool| + N MusicTool| + V ize|̬,PatientAttribute=hard|Ӳ,#agricultural|ũ + N part|,%earth| + N fruit|ˮ + V ShowBadEmotion|ʾ + V ShowBadEmotion|ʾ +϶ V fixed|Ѷ +ʽ N attribute|,speed|ٶ,&music|,&language| + N method|,*write|д +ˢ N tool|þ,*wipe| + N material|,?building| +Ѽ N food|ʳƷ + N part|,%AnimalHuman|,#mouth|,*bite|ҧ + N part|,%machine| + N addictive|Ⱥ + N attribute|,behavior|ֹ,&act|ж + N attribute|,speed|ٶ,&recreation|,#music| + N material|,?food|ʳƷ + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N part|,%implement|,viscera| + N shape|,flat|,surfacial| + N tool|þ,police|,*punish|,#crime| + N wood|ľ + N tool|þ,*rub|Ħ + CLAS NounUnit|,&publications|鿯 + N part|,%publications|鿯,#news| + N tool|þ,*print|ӡˢ +汾 CLAS NounUnit|,&publications|鿯 + N attribute|,sequence|,&print|ӡˢ +滭 N image|ͼ,$draw| + N image|ͼ,$carve| + N part|,%publications|鿯,#news| +Ȩ N rights|Ȩ,#publications|鿯 +Ȩ ADJ aValue|ֵ,attachment|,#publications|鿯,#rights|Ȩ +ȨУ׼ӡ N aValue|ֵ,attachment|,#publications|鿯,#rights|Ȩ +Ȩҳ N part|,%publications|鿯,#rights|Ȩ +ʽ N attribute|,pattern|ʽ,&publications|鿯 +˰ N payment|,#publications|鿯 +ͼ N place|ط,#country| + V RegardAs|,entertainment| + V show| + V ShowEmotion|ʾ + N attribute|,appearance|,&human|,#perform|,entertainment| + V RegardAs|,entertainment| + N human|,*perform| +װ V MakeUp|ױ + V RegardAs|,entertainment| + V mix| + V mix| + N food|ʳƷ + V quarrel| + V follow| + N human|,friend| +鳪 N fact|,sing|,entertainment| +鳪 V sing| +黤 N human|,friend| + N human|,#GetMarried|,male| + N human|,friend| + N human|,#GetMarried|,female|Ů + ADJ aValue|ֵ,property|,follow| + V follow| + N human|,*recreation|,#shows| + N human|,female|Ů,*recreation|,#shows| + V perform|,entertainment| + V recreation| + N human|,*perform| + CLAS NounUnit|,&inanimate| + N part|,%FlowerGrass|,body| + N part|,%fruit|ˮ,body| + N part|,%physical| +Ĥ N part|,%AnimalHuman| + ADV aValue|ֵ,location|λ,middle| + ADV aValue|ֵ,range|,fragment| + ADJ qValue|ֵ,amount|,few| + NUM qValue|ֵ,amount|,half| + N time|ʱ,hour|ʱ,special| + ADJ aValue|ֵ,age|,aged| + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +뱲 N time|ʱ,#alive|,TimeLong|,half| +ںɽ N place|ط,country|,half| +ڽɽ N place|ط,country|,half| + N part|,%physical|,half| + N human|,female|Ů,mass| + N sky|,half| +벽 N attribute|,distance|,&walk|,half| +Ʒ N artifact|˹,generic|ͳ + CLAS NounUnit|,&inanimate| +뵺 N land|½,#waters|ˮ +뵼 N inanimate|,generic|ͳ + N location|λ,middle| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + ADJ qValue|ֵ,amount|,few| + N human|,unable|ӹ,undesired|ݬ + N expenditure|,half| +⽨ N system|ƶ,politics| +빤 V study|ѧ +빤ѧ N human|,*study|ѧ,education| + N attribute|,price|۸,half|,&artifact|˹,commercial| + NUM qValue|ֵ,amount|,half| + V equal| +뾶 N attribute|,distance|,&image|ͼ,&physical|,round|Բ + N fact|,compete|,sport| +Ե N material|,*exempt|,#transmit|,#electricity| + N location|λ,%sky| + N location|λ,%sky| + NUM qValue|ֵ,amount|,half| + N human|,#occupation|ְλ,*engage|,industrial|,agricultural|ũ + N inanimate|,generic|ͳ,liquid|Һ +· N location|λ,middle| +· ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N time|ʱ,year|,half| +Ʊ N coupon|Ʊ֤,#price|۸,half| +ƿ N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,form|״,round|Բ + N earth| + N time|ʱ,day|,half| + N time|ʱ,TimeLong| + N time|ʱ,day|,half| + N disease| + N image|ͼ,$TakePicture|,$draw| + N image|ͼ,$carve| + N time|ʱ,#alive|,TimeLong|,half| + ADJ aValue|ֵ,physique|,^cook| + NUM qValue|ֵ,amount|,half| + NUM qValue|ֵ,amount|,half| +˥ N time|ʱ + N aValue|ֵ,duration|,TimeLong| + N time|ʱ,day|,half| +͸ ADJ aValue|ֵ,clearness|,clear| +; N location|λ,middle| +; V cease|ͣ,time=^fulfil|ʵ +ä N human|,foolish|,undesired|ݬ + N medicine|ҩ,(China|й) + ADJ aValue|ֵ,duration|,TimeLong| +Ű ADJ doubt| +ҹ N time|ʱ,night| +ҹ N time|ʱ,night| + N sound|,#music| +Ӱ N trace|,#lights| +Բ N shape|,round|Բ,half| +Բ N shape|,round|Բ,half| + N time|ʱ,month|,half| +¿ N publications|鿯 +ֳ N place|ط,#country| +Ʒ N artifact|˹,generic|ͳ,^$produce| +м N location|λ,middle| + N location|λ,middle| +Զ ADJ aValue|ֵ,performance| +Ըũ N human|,#occupation|ְλ,agricultural|ũ + V buy|,commercial| + V establish|,commercial| + V handle| + V manage|,commercial| + V punish|,police| +참 V handle|,patient=fact|,police| + V establish|,PatientProduct=community|,#study|ѧ +챨 V manage|,patient=publications|鿯,news| +첻 V BeUnable| +쳧 V establish|,PatientProduct=factory|,industrial| + V fulfil|ʵ + V handle|,manner=wrong| +쵽 V fulfil|ʵ +취 N method| +칫 V engage|,content=affairs|,#duty| +칫¥ N house|,#employee|Ա,@engage| +칫 N expenditure|,#employee|Ա,*engage| +칫¥ N house|,#employee|Ա,@engage| +칫ʱ N time|ʱ,#employee|Ա,@engage| +칫 N room|,#employee|Ա,@engage| +칫 N part|,%organization|֯ +칫 N furniture|Ҿ,#employee|Ա,@engage| +칫Զ N attribute|,ability|,able|,function| +칫Զ V ize|̬,ability|,PatientAttribute=able|,#function| + V fulfil|ʵ + V handle| +ɥ V handle|,content=fact|,undesired|ݬ,#salute|¾,#die| + V engage|,content=affairs|,#duty| +´ N part|,%organization|֯,#employee|Ա,*engage| +» N part|,%organization|֯,#employee|Ա,*engage| +Ա N human|,#occupation|ְλ,employee|Ա,*engage| + N part|,%organization|֯,#employee|Ա,*engage| + V fulfil|ʵ +ϲ V GetMarried| +ѧ V manage|,patient=education|,education| + V buy|,commercial| + V punish|,cause=crime|,police| + V FallDown| + V reverse|ߵ + V FallDown| + V reverse|ߵ +ʯ N entity|ʵ,*obstruct|ֹ + N place|ط,#human|,country| + N place|ط,#human|,country| + N attribute|,relatedness|,&entity|ʵ,politics| + N community| + N community|,undesired|ݬ + V help| + N part|,%clothing|,#foot|,skin|Ƥ + N part|,%vegetable|߲,hair|ë + N part|,%vehicle|ͨ,body| + V help|,scope=handle| + N human|,*help| +æ V help| + V help|,scope=cook| +ﵹæ V help|,manner=wrong| + V help| +﹤ V help|,scope=affairs| +﹤ N human|,*help| + N community|,secret| + V teach| +æ V help| + N community|,treacherous|,politics| +ǻ V help| +ǻ V sing| + N human|,*help| + V help|,patient=official| + N human|,*help|,crime|,undesired|ݬ + V help| + ECHO sound| + N tool|þ,*tell|,#police| + N MusicTool| + N tool|þ,*tell| +ǻ N shows| + N account|,@record|¼,#name| + V fail|ʧ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam| + V succeed|ɹ,scope=exam|,result=include|,education| + N attribute|,rank|ȼ,superior|,&human| + N human|,$study|ѧ,$imitate|ģ,desired| + N part|,%AnimalHuman|,arm| + N part|,%bird|,wing| + N human|,friend|,*help| + N part|,%AnimalHuman|,arm| +Բ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Բ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,arm| + N part|,%bird|,wing| + N part|,%AnimalHuman|,viscera| + V fasten|˩ + N human|,*TakeAway|ᶯ,crime|,undesired|ݬ + V TakeAway|ᶯ,manner=fierce|,crime| +Ʊ V TakeAway|ᶯ,manner=fierce|,crime| + N fittings|,clothing|,linear|,*fasten|˩,#leg| + V wrap| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N shape| + N food|ʳƷ,sweet| + N food|ʳƷ,ice|,cold| + N SportTool|˶ + N fact|,sport| + N facilities|ʩ,space|ռ,@compete|,sport| + N food|ʳƷ,sweet| + N crop|ׯ + N part|,%crop|ׯ,embryo| + N tool|þ,straight|ֱ,long| + N material|,?food|ʳƷ + V measure| + N tool|þ,*measure|,#weight| + CLAS unit|λ,&weight| + N tool|þ,*measure|,#weight| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + N fish| + N place|ط,city|,ProperName|ר,(China|й) + N fish| + N money|,(UK|Ӣ) + CLAS unit|λ,&money|,(UK|Ӣ) + V BeNear| + V approach|ӽ + N time|ʱ,night| + N time|ʱ,night| + V slander|̰ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%FlowerGrass|,embryo| + N crop|ׯ + N crop|ׯ + ADJ aValue|ֵ,source|Դ + N part|,%AnimalHuman|,embryo| + N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,male| + N part|,%AnimalHuman|,embryo| + V bear|е + V borrow| + N character|,surname|,human|,ProperName|ר + V contain| + N disease|,#swollen| + V entrust|ί + V guarantee|֤ + N physical| + V surround|Χ + N tool|þ,cubic|,@put| + V wrap| + V manage| + V bear|е,content=all|ȫ + V protect|,manner=biased|ƫ + V cherish|Ļ + V contain| + V bear|е,content=produce|,industrial| + V bear|е,content=produce|,agricultural|ũ + V MakeAppointment|Լ,content=InstitutePlace|,entertainment| + V surround|Χ,military| + V borrow|,possession=LandVehicle| + V borrow|,possession=ship| + V bear|е,content=all|ȫ + V GetMarried|,undesired|ݬ + V buy|,possession=edible|ʳ,commercial| + N food|ʳƷ + V sell|,possession=edible|ʳ,commercial| + V MakeAppointment|Լ,content=InstitutePlace|,#reside|ס + N artifact|˹,$wrap| + N duty|,undesired|ݬ + N tool|þ,*wrap| + V bear|е,content=affairs|,#duty| + N system|ƶ + V MakeAppointment|Լ,content=bear|е,commercial| +ͷ N human|,#occupation|ְλ,*manage|,#industrial| + N crop|ׯ + V guarantee|֤ + N physical| + V wrap| + N bill|Ʊ,#post|ʼ + V contain| + V forgive|ԭ + V guarantee|֤,scope=exchange|,commercial| + V borrow|,possession=aircraft| + V contain| + V BeMember| + V bear|е + V contain| + ADJ aValue|ֵ,range|,all|ȫ + V guarantee|֤,scope=recompense|,commercial| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N tool|þ,*wrap| + V contain| + V forgive|ԭ + N human|,#occupation|ְλ,employee|Ա +ͷ N place|ط,city|,ProperName|ר,(China|й) + V guarantee|֤,scope=exchange|,commercial| +Χ V surround|Χ +ΧȦ N shape|,#surround|Χ,military| + N part|,%InstitutePlace|,@look|,#entertainment| + V sell|,commercial| +IJ N vegetable|߲ +Բ V buy|,manner=all|ȫ +Բ V fulfil|ʵ + V contain| + V contain| + V wrap| +װ N tool|þ,*wrap| +װ V wrap| +װ N human|,#occupation|ְλ,*load|װ,industrial| +װ N tool|þ,*wrap| +װֽ N paper|ֽ,*wrap| + N food|ʳƷ + V borrow|,commercial| + V praise|佱 + V ExpressAgainst|Ǵ + V estimate| + N expression|,#praise|佱 + V praise|佱 + V praise|佱 + N information|Ϣ,#praise|佱 + N expression|,#praise|佱 + V StripOff|ȥ + V StripOff|ȥ + V rob| + V fall| + V StripOff|ȥ +Ƥ V StripOff|ȥ,patient=skin|Ƥ +ȥ V StripOff|ȥ +ʴ V FormChange|α + V StripOff|ȥ + V rob| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,light| + ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V despise| + N shape|,flat|,surfacial| + ADJ aValue|ֵ,thickness|,thin| + N food|ʳƷ + N food|ʳƷ + N medicine|ҩ + N attribute|,thickness|,&physical| + N artifact|˹,$GiveAsGift| + N payment|,few|,commercial| + N method|,*sell|,commercial| + V unfortunate| +Ĥ N part|,%AnimalHuman| +Ĥ N shape| +ĺ N time|ʱ,night| +Ƭ N shape|,flat|,surfacial| +Ƭ ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N CloudMist|,thin| + N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N RainSnow|ѩ,#WeatherBad| + V defend|,military|,police| + V guarantee|֤ + V guarantee|֤,#police| + N human|,#police|,*guarantee|֤ + V keep| + N place|ط,country|,ProperName|ר,(Bulgaria|) + V protect| + V guarantee|֤,scope=safe|,police| + V store| + V keep| +ֳĬ V KeepSilence|˵ + V store| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + N bill|Ʊ,*guarantee|֤ + N place|ط,city|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,*manage|,#facilities|ʩ,#store| + V manage| + ADV {comment|} +ܷ N expenditure|,*store|,commercial| + N human|,*store| +Ա N human|,#occupation|ְλ,*manage|,#facilities|ʩ,#store| +Ա N human|,*store| + ADJ aValue|ֵ,ability|,able|,protect| + V protect| +ʩ N method|,*protect| + N place|ط,country|,$protect| +˰ N method|,#expenditure|,*protect| + N place|ط,country|,$protect| + N human|,*protect| +ɡ N system|ƶ,*protect| +ֳ V keep|,patient=scene|,#fact| +Ծ N detain|ס,#protect| +Ծ V detain|ס,#protect| + N human|,*protect| + ADJ human|,*protect| + N human|,*protect| + N system|ƶ,#protect| + N human|,*protect| + N human|,$guarantee|֤,#commercial| +ʵ N human|,*protect|,#royal| +ʵ N human|,*protect|,#royal| + V protect|,patient=family|,country| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bulgaria|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + V protect|,patient=official|,royal|,military|,police| + V recommend|Ƽ + N affairs|,#maintain|,medical|ҽ + N fact|,exercise| + N tool|þ,@put|,#medicine|ҩ,#tool|þ,medical|ҽ +ҽ N human|,#occupation|ְλ,*maintain|,medical|ҽ +ר N human|,#occupation|ְλ,*maintain|,medical|ҽ + V keep|,content=spotless| + N tool|þ,cubic|,@put|,#waste| + V recommend|Ƽ + N SportTool|˶ + N fact|,sport| + V SetAside| + V own| + N place|ط,$SetAside| +Ŀ N shows| + V KeepSilence|˵ + ADJ aValue|ֵ,content|,secret| + ADJ aValue|ֵ,content|,secret| + V maintain|,patient=plant|ֲ,agricultural|ũ +ķ N human|,#occupation|ְλ,*TakeCare|,#family|,female|Ů +ů V keep|,scope=hot| +ȫ V keep| +ȫ V maintain| +ȫ N human|,#occupation|ְλ,*maintain|,industrial| +ȫ V keep|,scope=reputation| + N human|,*guarantee|֤,#police| + V keep|,scope=wet|ʪ,agricultural|ũ + V release|ͷ,police| +ͽ N expenditure|,*guarantee|֤,#release|ͷ,#police| + N human|,*guarantee|֤,#release|ͷ,#police| + V guarantee|֤,scope=obtain|õ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V protect| +ص N community|,politics| +ص N human|,politics| + N community|,behavior|ֹ,stiff|,undesired|ݬ + N knowledge|֪ʶ,stiff|,undesired|ݬ + V recommend|Ƽ,education| +ҽ V undergo|,content=release|ͷ,cause=$cure|ҽ,#police| + V defend|,military|,police| + V keep|,scope=warm| +± N tool|þ,cubic|,*keep|,#warm|,@store|,#edible|ʳ +ƿ N tool|þ,cubic|,*keep|,#warm|,@store|,#edible|ʳ + V keep|,scope=new| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N affairs|,#guarantee|֤,commercial| + ADV {comment|} +մ N tool|þ,*protect| +յ N document|,*guarantee|֤,commercial| +շ N expenditure|,*guarantee|֤,commercial| +չ˾ N InstitutePlace|,*guarantee|֤,commercial| +չ N tool|þ,cubic|,@store|,#precious| +պ N tool|þ,*protect|,#electricity| +ս N wealth|Ǯ,$guarantee|֤,commercial| +տͻ N human|,$guarantee|֤,commercial| + N human|,#occupation|ְλ,*guarantee|֤,commercial| +˿ N tool|þ,*protect|,#electricity| + N tool|þ,#mating|,*exempt|,#pregnant| +ҵ N affairs|,guarantee|֤ + V MakeAppointment|Լ,content=repair| + V maintain| + V protect| + N affairs|,#TakeCare|,#young|,education| +Ա N human|,#occupation|ְλ,*TakeCare|,#young|,education| +Ժ N InstitutePlace|,@TakeCare|,#young|,education| + V guarantee|֤ + N attribute|,SoundQuality|,&tool|þ +֤ V guarantee|֤ +֤ N wealth|Ǯ,*guarantee|֤,#police| +֤ N human|,*guarantee|֤,#police| +ֵ V keep|,patient=value|ֵ + V MakeAppointment|Լ,content=quality| + EXPR expression|,*SayHello|ʺ + V maintain| +ס V keep| +׼ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +׼ V guarantee|֤ + N human|,#occupation|ְλ,*protect| + N facilities|ʩ,space|ռ,military| + N facilities|ʩ,space|ռ,military| + N place|ط,village| + V BeFull|Ա + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,fullness|,full|,desired| + V fulfil|ʵ + V BeFull|Ա + V undergo| + V contain| + V StateChange|̬ +״̬ N attribute|,circumstances|,full|,&physical| + V undergo| +˪ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ʵ N human|,*undergo| +ǻ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V look| + ADJ aValue|ֵ,fullness|,full|,desired| +ʳ V slack|͵ + V undergo| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ö N phenomena|,#StomachTrouble|֢ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N treasure|䱦 + N human|,young| + N human|,friend|,*love|,desired| + N human|,unable|ӹ,undesired|ݬ + N human|,young| + N treasure|䱦 + N human|,young| + N thing|,$like|ϧ + N place|ط,@store|,#treasure|䱦 + N weapon|,precious| + V BeGood|̬ + N place|ط,@store|,#treasure|䱦 + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N InstitutePlace|,*sell|,@buy|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + N weapon|,*stab| + N human|,#family| + N facilities|ʩ,@store|,#treasure|䱦 + ADJ aValue|ֵ,color|ɫ,blue| +ʯ N stone|ʯ,treasure|䱦 +ʯ ADJ aValue|ֵ,color|ɫ,blue| +ʯ N human|,#occupation|ְλ,commercial| + N facilities|ʩ,space|ռ,#religion|ڽ + N treasure|䱦 + N furniture|Ҿ,#royal|,@sit| + V GiveBirth| + V HoldInArm|§ + V cherish|Ļ + V foster| + V own| +...Ĵ V please|ȡ + V ill|̬ +ƽ V unsatisfied| +ȱ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һ V ally| + V slack|͵ + N aspiration|Ը,expect|,desired| +̬ V escape|,offend| + V repent|û + V repent|û + V repent|û + V repent|û + V repent|û + V regret|Ǹ +Ǹ V regret|Ǹ + V unsatisfied| +ͷ V weep| +ͷ V flee| +ͷʹ V weep| +Ŷ V ally| + V foster| + V cherish|Ļ +Թ V protest| + V understand|,content=crime| + V ill|̬ + V announce| + N document| + N letter|ż + N publications|鿯 + N publications|鿯,news| + V recompense| + V reply| + N result| + V revenge| + V tell| + V tell|,content=fact|,police| + N document| + V recompense| + N payment| + V revenge| +ѩ V revenge| + V recompense| + N bill|Ʊ + V disseminate| + N news| + V tell|,content=arrive| + V disseminate| + N news| + N location|λ,%publications|鿯,news| + V recompense|,possession=grateful|м + V remove| + ADJ aValue|ֵ,property|,revenge| + V revenge| + ADJ aValue|ֵ,property|,revenge| + V tell| + N text| +ѧ N text|,literature| + V tell|,location=institution|,commercial| +ص N document|,@record|¼,commercial| + N InstitutePlace|,news| + V endeavour|,beneficiary=country| + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ,#reside|ס + N tool|þ,*communicate| + N tool|þ,*fix|ס,#publications|鿯,#news| + N attribute|,price|۸,$propose|,&physical|,commercial| + V tell|,content=price|۸,commercial| + N tool|þ,@put|,#publications|鿯,#news| + V tell|,content=win|ʤ + V win|ʤ + N community|,#news| + V tell|,target=police| +װ N tool|þ,*tell|,#dangerous|Σ + N readings|,news| + V request|Ҫ,ResultEvent=exam|,education| + V record|¼,content=name| + N expenditure|,*record|¼,#name| +Ļ V tell|,content=perform|,entertainment| + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ + N InstitutePlace|,news| +ʧ V tell|,content=lose|ʧȥ,#police| +ʱ V tell|,content=time|ʱ + EXPR expression|,*request|Ҫ,#tell|,#qValue|ֵ + V tell|,content=qValue|ֵ +˰ V tell|,content=submit| +˰ N bill|Ʊ + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ +̯ N InstitutePlace|,*sell|,#publications|鿯,#news|,commercial| +ͤ N InstitutePlace|,*sell|,#publications|鿯,#news|,commercial| +ͯ N human|,*sell|,#publications|鿯,#news|,young|,commercial| +ͷ N part|,%publications|鿯,#news| +Ա N human|,#occupation|ְλ,*communicate| +ϲ V tell|,content=happy| + V recompense| + V remove| + V request|Ҫ,ResultEvent=recompense| + V tell|,content=morning| +Ч V endeavour|,purpose=recompense| +Ч V endeavour|,purpose=recompense|,#country| + V tell| +Ӧ N result|,undesired|ݬ,#unfortunate| + V publish| + N publications|鿯,news| +־ N readings|,news| + V recompense| + V request|Ҫ,ResultEvent=recompense|,commercial| +ֽ N paper|ֽ +ֽ N publications|鿯,news| + V FormChange|α,protruding|͹ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N disease|,urgent| + V BecomeLess|,manner=fast|,#price|۸,commercial| + N uprise| + V happen| + V prosper|,StateFin=rich|,manner=sudden| + N human|,*prosper|,rich|,sudden|,undesired|ݬ + N wind|,#WeatherBad| +ѩ N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + N wind|,#WeatherBad| + V prosper|,StateFin=rich|,manner=sudden| + V exposure|¶ + N phenomena|,unfortunate|,#water|ˮ,undesired|ݬ + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N payment|,$earn|׬,many| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,fierce|,undesired|ݬ,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +¶ ADJ aValue|ֵ,circumstances|,^safe| +¶ V reveal|¶ +¶ V exposure|¶,manner=all|ȫ + N uprise| + N human|,fierce|,crime|,undesired|ݬ +ŭ N emotion|,angry|,undesired|ݬ +Ű ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V ExpressAnger|ʾŭ + V ExpressAnger|ʾŭ +ͽ N human|,*MakeBad|Ӻ,fierce|,crime|,undesired|ݬ + N fact|,MakeBad|Ӻ,fierce|,crime|,undesired|ݬ +ʳ V consume|ȡ,manner=many| + N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V BecomeMore|,manner=fast|,#price|۸,commercial| + V rise|,manner=sudden| + N system|ƶ,politics|,fierce|,*MakeBad|Ӻ,undesired|ݬ + V die|,manner=sudden| + V lavish|˷ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N beast| +è N beast| + N character|,surname|,human|,ProperName|ר + N fish| + N fish| +֮ N InstitutePlace|,stinky|,@sell|,#fish|,commercial| + V FormChange|α + V cook| + V cook| + V appear| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V happen| + N attribute|,strength|,&physical| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V FormChange|α + V become|Ϊ,descriptive=full| +׻ N food|ʳƷ + V attack| +Ͳ N weapon| +׻ N food|ʳƷ +ը V FormChange|α +ը V attack| +ը N tool|þ,*attack| +ը ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N tool|þ,*WhileAway|,*congratulate|ף + CLAS NounUnit|,&inanimate| + N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ӱ V doubt| +ǽ ADJ aValue|ֵ,occasion|,disorder|,#eat|,undesired|ݬ + N fact|,compete|,sport| +ˮн ADJ qValue|ֵ,amount|,few|,undesired|ݬ + N drinks|Ʒ,$addict|Ⱥ + N tool|þ,cubic|,@put|,#drinks|Ʒ + N tool|þ,*carve|,*salute|¾ + N text| + N place|ط,ProperName|ר,(China|й) + N text| + N text| +ͤ N facilities|ʩ + N text| +־ N text| + N tool|þ,*carve|,*salute|¾ + V sorrowful| + V sorrowful| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N emotion|,sorrowful| + V condole|° + N emotion|,sorrowful| +߽ N sorrowful|,angry| + N sorrowful|,angry| + V sing|,manner=sorrowful| + ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +۵ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +ʧ V disappointed|ʧ + N attribute|,behavior|ֹ,pessimistic|,&human|,organization|֯ + N human|,pessimistic| + N phenomena|,unfortunate|,lucky| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N fact|,unfortunate|,#sorrowful| + N shows|,#sorrowful|,entertainment| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ե ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V happen|,experiencer=unfortunate|,manner=again| + V aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V cry|,manner=sorrowful| + V sorrowful| + V sorrowful| +̾ V sigh|̾,manner=sorrowful| +̾ N human|,*sorrowful| + V pity| +ʹ V sorrowful| +ʹ V sorrowful| +ϲ V excited| +ϲ N shows| +׳ ADJ aValue|ֵ,scene|,stately|ׯ + V sorrowful| + V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V surrender|,undesired|ݬ +ϥ V surrender|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N direction|,north| + N place|ط,ProperName|ר,(UK|Ӣ) + N part|,%land|½,#waters|ˮ,edge|,north| + N part|,%earth|,north| + N location|λ,north| + N waters|ˮ,ProperName|ר + N location|λ,north| + N part|,%place|ط,#north|,#country| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N celestial| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + N place|ط,north|,ProperName|ר,(China|й) + N waters|ˮ,surfacial|,ProperName|ר +Լ֯ N institution|,politics|,military|,ProperName|ר,(Europe|ŷ) + N place|ط,ProperName|ר,(China|й) + N celestial| + N celestial| + N location|λ,ending|ĩ,north| + N fact|,*attack|,military|,past| + N army|,military|,past| +ս N fact|,*attack|,military|,past| + N direction|,north| + N part|,%place|ط,#north|,#country| + N human|,north| + N place|ط,ProperName|ר,north|,(Africa|) + N wind|,#WeatherBad| + N part|,%place|ط,#north|,#country| + N waters|ˮ,ProperName|ר + N place|ط,ProperName|ר,(Japan|ձ) + N part|,%earth|,north| + N part|,%earth|,north|,ProperName|ר + N part|,%earth|,north|,edge| +Ȧ N part|,%earth|,north|,ProperName|ר + N celestial| + N beast| + N part|,%country|,north| + N part|,%place|ط,surrounding|Χ,#city|,north| + N place|ط,capital|,ProperName|ר,(China|й) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +ʱ N attribute|,standard|׼,&time|ʱ,(China|й) +Գ N human|,past| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +´ N part|,%land|½,base| + N place|ط,ProperName|ר,north|,(America|) + N place|ط,ProperName|ר,north|,(America|) + N location|λ,north| +ŷ N place|ط,ProperName|ר,north|,(Europe|ŷ) +ƽ N place|ط,city|,ProperName|ר,past|,(China|й) + V SelfMoveInDirection|,direction=north| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +γ N attribute|,distance|,&earth|,north| +κ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +´ N part|,%earth|,north| + N army|,military|,past| + N institution|,#place|ط,politics|,past|,ProperName|ר,(China|й) +Լ N institution|,politics|,military|,ProperName|ר,(Europe|ŷ) + N place|ط,ProperName|ר,(China|й) + N attribute|,clan|,&human| + N human|,mass| + V appear|,manner=many| + N attribute|,clan|,&human| + N time|ʱ,TimeLong|,#alive| + V CarryOnBack| + V HideTruth| + V PartSelfMove| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V bear|е + V disable|м,scope=listen| + V disobey|Υ + V facing| + N part|,%AnimalHuman|,body|,hind| + N part|,%inanimate|,body|,hind| + V recite|ж + V unfortunate| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,military| + V sad|dz + N part|,%AnimalHuman|,body|,hind| +ǽһ V fight|,manner=lasting|,military| + N fittings|,%clothing|,*fasten|˩ + N fittings|,%tool|þ,*fasten|˩ + N fittings|,%weapon|,*fasten|˩ + V FitNot| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,direction| +紦 N location|λ,#direction| + V CarryOnBack| + V bear|е + ADJ aValue|ֵ,brightness|,dark| +ڹ V suffer|,IllTreat| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N location|λ,hind| + N part|,%human|,body| + V leave|뿪,LocationIni=family| + N attribute|,scene|,&physical|,&event|¼ + ADJ aValue|ֵ,occasion|,quiet|,desired| + V lean|п + ADV aValue|ֵ,sequence| + V disobey|Υ +¨ N tool|þ,cubic|,@put| + N part|,%physical|,edge|,hind| + V betray| + N human|,*betray| + V CarryOnBack| + V betray| + V recite|ж,content=knowledge|֪ʶ,education| +ˮһս V fight|,manner=strong|ǿ,military| + V recite|ж + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V betray| + ADJ aValue|ֵ,brightness|,dark| +Ӱ N trace|,#lights| +Լ V disobey|Υ,content=MakeAppointment|Լ + V unfortunate| +ծ V owe|Ƿ,possession=wealth|Ǯ + N part|,%animal|,tail|β + N character|,surname|,human|,ProperName|ר + N fish| + N image|ͼ,$carve| + N human|,ProperName|ר,#music|,(Germany|¹) + N human|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Yugoslavia|˹) + N part|,%fish|,skin|Ƥ + N fish| +³ N place|ط,capital|,ProperName|ר,(Lebanon|) +ĸ N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Benin|) + N place|ط,country|,ProperName|ר,(Africa|) + N chemical|ѧ,metal| + N medicine|ҩ + ADJ qValue|ֵ,amount|,double| + N quantity|,amount| + ADV aValue|ֵ,degree|̶,extreme| + V cherish|Ļ,degree=extreme| + ADV aValue|ֵ,degree|̶,extreme| + V undergo| + N symbol|,#quantity| + N symbol|,#quantity| + N part|,%inanimate| + N lights| + V BecomeMore| + N tool|þ,*add| + N character|,(China|й) + ADJ aValue|ֵ,degree|̶,extreme| + V own| + V prepare|׼ + V prepare|׼,purpose=handle| + V record|¼ + V SetAside|,purpose=check| + V suffer|,content=hardship|,manner=extreme| + V SetAside| + V produce| + V prepare|׼,content=planting|ֲ,agricultural|ũ + V prepare|׼,purpose=handle|,#phenomena|,#unfortunate|,#weather| + N part|,%artifact|˹ + V SetAside|,purpose=check| + V prepare|׼,content=teach|,education| + V prepare|׼,content=food|ʳƷ,#animal| + V prepare|׼,content=material| +Ʒ N part|,%artifact|˹ + V prepare|׼ +ȡ V wait|ȴ,content=include| + V undergo| + N document|,*help|,#remember|ǵ +¼ N document|,*help|,#remember|ǵ + V prepare|׼ +ѡ ADJ aValue|ֵ,property|,$SetAside|,replace| +ѡ N method|,$SetAside|,*replace| + ADJ aValue|ֵ,property|,$SetAside|,replace| + V own| +ս V prepare|׼,purpose=handle|,#fight|,military| + ADJ aValue|ֵ,degree|̶,extreme| +ע N part|,%text| +ע N part|,%readings| + V prepare|׼,quantity=sufficient| + V tired|ƣ + V dry| + V dry| + N tool|þ,*cover|ڸ,#sleep|˯ + STRU {LeChinese|} + PREP {agent} +Ů N human|,$protect|,female|Ů + N human|,$protect| +֤ N human|,$guarantee|֤ + V suffer|,content=catch|׽ס + N symbol|,#quantity| + N symbol|,#quantity| + N tool|þ,*cover|ڸ,#sleep|˯ + N tool|þ,*cover|ڸ,#sleep|˯ + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ʽ ADJ aValue|ֵ,behavior|ֹ,passive| + N fact|,*addict|Ⱥ,passive| + ADJ aValue|ֵ,behavior|ֹ,passive| + V suffer|,content=catch|׽ס,military| + N tool|þ + N human|,$accuse|ظ,police| +淽 N human|,$accuse|ظ,police| + N human|,$accuse|ظ,police| +ϯ N location|λ,@sit|,#accuse|ظ,police| + N human|,#police|,$kill|ɱ,$MakeBad|Ӻ,undesired|ݬ + N symbol|,#quantity| + N symbol|,#quantity| +Ӽ N human|,$meet| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +¼ȡ N human|,$include| + N part|,%tool|þ,#sleep|˯,skin|Ƥ + ADJ suffer|,content=force|ǿ + N human|,$remove| + N tool|þ,*cover|ڸ,#sleep|˯ + N human|,$accuse|ظ,police| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +޳ N human|,$remove| + N human|,$RegardAs| +Ƽ N human|,$recommend|Ƽ + N tool|þ,*cover|ڸ,#sleep|˯ +Ѷ N location|λ,#tool|þ,#sleep|˯ +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ѡȨ N rights|Ȩ,$select|ѡ +ѡȨ N rights|Ȩ,$select|ѡ,politics| + N human|,$invite| + N human|,$abandon| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +ָ N human|,$RegardAs| + N tool|þ,*cover|ڸ,#sleep|˯ +ֲ N plant|ֲ + V LeaveFor|ǰ,manner=fast| + V approach|ӽ + V flee| + V run|,manner=fast| + V endeavour| + V run|,manner=fast| + ADJ aValue|ֵ,behavior|ֹ,free|,desired| + V LeaveFor|ǰ,manner=fast| + V flow|,manner=fast| + N water|ˮ + N livestock|,*run|,fast| +æ V endeavour| + V endeavour| + V run| +ɥ V LeaveFor|ǰ,purpose=condole|° + V flee| + V GoForward|ǰ + V run| +ͷ N attribute|,outlook|ǰ,&fact| +Ϯ V attack|,military| + V GoForward|ǰ +к V flow| +ӿ V flow|,manner=fast| + V endeavour| + V run| +ߺ V run|,request|Ҫ,ResultEvent=help| + V run|,tell| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +ϩ N chemical|ѧ + CLAS NounUnit|,&publications|鿯 + ADJ aValue|ֵ,attachment|,self| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,now| + N account| + N attribute|,kind|,&readings| + N fund|ʽ + V obey|ѭ + N part|,%plant|ֲ,body| + N part|,%thing|,base| + N publications|鿯 + N fact|,special| + N readings| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N part|,%institution|,*manage| + N publications|鿯,#medicine|ҩ +ݸĿ N publications|鿯,#medicine|ҩ + N attribute|,distance|,&earth| + N place|ط,village|,special| + N place|ط +ػ V ize|̬ + N human|,original|ԭ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +֦ V prosper| + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,source|Դ,original|ԭ + N human|,family| + ADJ aValue|ֵ,kind|,special| + N fund|ʽ + N attribute|,status|,education|,&human| + N fact|,study|ѧ,necessary|Ҫ,education| + N human|,*study|ѧ,education| + ADJ aValue|ֵ,source|Դ,original|ԭ +Ŀ N attribute|,trueness|α,true|,&thing| + N fund|ʽ + N fund|ʽ,payment|,commercial| + N attribute|,ability|,&animate| + N attribute|,name|,true|,&human| +ĩ N part|,%event|¼ + ADJ aValue|ֵ,&behavior|ֹ,original|ԭ + N attribute|,behavior|ֹ,original|ԭ,&animate| +Ʊ N bill|Ʊ,#wealth|Ǯ,commercial| +Ǯ N fund|ʽ + PRON {firstPerson|} +ɫ N attribute|,color|ɫ,original|ԭ,&physical| +ɫ N attribute|,trueness|α,true|,&thing| + PRON {self|} + N tool|þ,*lighting|ȼ + N attribute|,ability|,&animate| + N part|,%physical| + N physical| + N knowledge|֪ʶ + N place|ط,#country| +λ N attribute|,standard|׼,&money| +λ N money| +λ N money| +λ N thinking|˼,undesired|ݬ + N text| +Ϣ N fund|ʽ +Ϫ N place|ط,city|,ProperName|ר,(China|й) + N place|ط,village|,special| + N attribute|,occupation|ְλ,&human| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + N aspiration|Ը,original|ԭ + N information|Ϣ,#language| +Ӱ N trace|,#lights| +Դ N part|,%thing|,base| +ְ N affairs|,#duty|,#occupation|ְλ + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,heart| + N place|ط,ProperName|ר,(Japan|ձ) + PREP {AccordingTo} + N account| + N attribute|,kind|,&readings| + N language| + ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ +׾ ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ +ȷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N human|,foolish|,undesired|ݬ +ֱ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ +׾ ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + V FormChange|α + V die|,royal| + V end|ս + V kill|ɱ,manner=firing| + V end|ս + V FormChange|α +© V bleed|Ѫ + V FormChange|α + V FormChange|α,dented| + V FormChange|α + V ShowBadEmotion|ʾ + V cheat|ƭ + V endeavour| + V fasten|˩ + V jump| + V straighten|ֱ + N tool|þ,*cure|ҽ,*wrap|,medical|ҽ + N part|,%implement| + V straighten|ֱ + V ShowBadEmotion|ʾ + V ShowBadEmotion|ʾ + N tool|þ,*straighten|ֱ + AUX {neg|} + N tool|þ,*inhale|,#liquid|Һ,#gas| +վ N facilities|ʩ,space|ռ,#liquid|Һ + V jump| +ı V jump| +Ĵ V jump| + V jet| +ŷ V jet| + V FormChange|α + V firing| + V approach|ӽ + V force|ǿ + V rob| +ƹ V force|ǿ,ResultEvent=admit|,police| +ƺ V force|ǿ,ResultEvent=reconcile| +ƽ V approach|ӽ + V force|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V look|,manner=attentive|ϸ + V kill|ɱ +Ф V BeSimilar| +խ ADJ aValue|ֵ,width|,narrow|խ +ծ V force|ǿ,ResultEvent=return|,commercial| + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,width|,narrow|խ + N part|,%AnimalHuman|,*smell| +dzѪ V bleed|Ѫ +Ƕ N part|,%implement| +Ƕ N sound| +Ǽ N part|,%AnimalHuman|,#smell| +ǾҲ N disease| +ǿ N part|,%AnimalHuman|,#smell| + N part|,%AnimalHuman|,#smell| +ǻ N part|,%AnimalHuman| + V wounded| + N fact|,feed|ι,#cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,waste|,liquid|Һ +Ϣ N gas|,#respire| +ʰ N disease| + N disease| + N addictive|Ⱥ +̺ N tool|þ,cubic|,@put|,addictive|Ⱥ + N disease| + N part|,%AnimalHuman|,#smell| + N sound| + N sound|,#language| +и N part|,%AnimalHuman|,#smell| + N part|,%AnimalHuman|,*smell| + N human|,past| + N part|,%AnimalHuman|,#smell| + V BeNear| + V CompareTo| + V compare|Ƚ + V compete| + V imitate|ģ + V show|,instrument=hand| +ȱ V compete| +ȱȽ ADJ qValue|ֵ,amount|,many| +ȶ N money|,(Ethiopia|) +ȷ N expression|,*CompareTo| +ȷ N quantity|,amount|,&result|,#compete|,sport| +ȹ N language|,#country|,ProperName|ר +ȹ N place|ط,city|,ProperName|ר,(Yugoslavia|˹) +Ȼ V show|,instrument=hand| +Ȼ V show| +Ȼ N clothing|,*exercise|,#swim| +ȼ N quantity|,rate|,&price|۸,commercial| +Ƚ V compare|Ƚ + N place|ط,capital|,ProperName|ר,(South Africa|Ϸ) +ʱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Belgium|ʱ) +ʱ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʱ N money|,(Belgium|ʱ) +ʱ N human|,(Belgium|ʱ) + N quantity|,rate|,&entity|ʵ + N tool|þ,*measure| + V measure| + N quantity|,rate|,&entity|ʵ +Ŀ N fish| + V compare|Ƚ + V equal| +... PREP {contrast} + ADV {supplement|ݽ} +˵ ADV {supplement|ݽ} + N money|,(Spain|) + N fact|,compete| + N facilities|ʩ,space|ռ,@compete|,sport| +Ŀ N fact|,compete| + N human|,*compete|,sport| +ɫ N tool|þ,*measure| + N place|ط,capital|,ProperName|ר,(Guinea-Bissau|DZ) + V compete| + V measure| +˹ N language|,#country|,ProperName|ר + N money|,(Chile|) + N money|,(Colombia|ױ) + N money|,(Cuba|Ű) + N money|,(Dominica|) + N money|,(Guinea-Bissau|DZ) + N money|,(Mexico|ī) + N money|,(Philippines|ɱ) + CLAS NounUnit|,&quantity| + V compete| + N human|,male|,female|Ů,mass|,*love| + V fly|,manner=together|ͬ +˫ V fly|,manner=together|ͬ + V CompareTo| + N expression|,*CompareTo| + V compare|Ƚ + PREP {AccordingTo} +ֵ N quantity|,rate|,&entity|ʵ + N attribute|,strength|,&physical| + N quantity|,rate|,&entity|ʵ +ؼ N tool|þ,*measure| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V despise| +ɱ V despise| +ɼ N thought|ͷ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ª ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V despise| + PRON {firstPerson|} + V despise| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V despise| + N thought|ͷ +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + CLAS NounUnit|,&fund|ʽ + N PenInk|ī,*write|д + N method|,*write|д + N part|,%character|,#write|д +ʴ N attribute|,style|,&compile|༭,literature| +ʴ V reply|,means=write|д +ʵ N attribute|,ability|,#compile|༭,&human| +ʵ N attribute|,style|,&compile|༭,literature| +ʷ N method|,*write|д,*draw| +ʷ N attribute|,style|,&compile|༭,literature| +ʸ N PenInk|ī,*write|д +ʸ N part|,%PenInk|ī,#write|д,body| +ʸ N PenInk|ī,*write|д +ʸ N human|,*compile|༭,literature| +ʹ N part|,%PenInk|ī,#write|д,body| +ʻ N part|,%character|,#write|д +ʻ N part|,%character|,#write|д +ʼ N trace|,#write|д,#distinguish|ֱ +ʼ V record|¼ +ʼ N text| +ʼDZ N account| +ʼDz N account| +ʼС˵ N text| +ʼ N tool|þ,@put|,#PenInk|ī +ʼ N part|,%PenInk|ī,#write|д,head|ͷ +¼ V record|¼ +¼ N text| +ñ N part|,%PenInk|ī,#write|д,#head|ͷ + N attribute|,name|,&human|,literature| +ī N PenInk|ī,*write|д +ī˾ N fact|,debate| + N fact|,exam|,means=write|д +˳ N attribute|,sequence|,#write|д,&character| + V calculate|,means=write|д +̸ V speak|˵,means=write|д + N part|,%PenInk|ī,#write|д,#head|ͷ + N tool|þ,#PenInk|ī,*cover|ڸ +ͦ ADJ aValue|ֵ,form|״,level|ƽ +ͦ ADJ aValue|ֵ,posture|,upright| +Ͳ N tool|þ,@put|,#PenInk|ī + N result|,err|,#write|д + N text| + N part|,%PenInk|ī,heart| + V translate|,means=#write|д + N human|,friend|,#letter|ż +ս N fact|,debate| + N human|,compile|༭ +ֱ ADJ aValue|ֵ,form|״,straight|ֱ +ֱ ADJ aValue|ֵ,posture|,upright| + ADJ aValue|ֵ,kind|,special| +˰ N part|,%land|½,#waters|ˮ,edge| +˴ ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ +˴˱˴ EXPR expression|,*appreciate|޳ + ADJ aValue|ֵ,color|ɫ,blue| +̲ N water|ˮ,blue| +̲ N waters|ˮ,wide|,blue| + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +ݴ N drinks|Ʒ +Ѫ N attribute|,behavior|ֹ,faithful|,&human| +Ѫ N attribute|,behavior|ֹ,faithful|,&human| + N treasure|䱦 + N crop|ׯ,?material| + N material|,#crop|ׯ,?medicine|ҩ,liquid|Һ + N part|,%crop|ׯ,embryo|,?material|,#medicine|ҩ + V cover|ڸ + N character|,surname|,human|,ProperName|ר + V finish| + V fulfil|ʵ +ϹϾ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ͼ ADV {emphasis|ǿ} +书һ V fulfil|ʵ,patient=affairs| + N time|ʱ,TimeLong|,#alive| +ҵ V finish|,scope=study|ѧ,education| +ҵ N part|,%organization|֯,#finish|,education| +ҵ N fact|,congratulate|ף,#finish|,education| +ҵ N text|,#finish|,education| +ҵ N human|,*finish|,education| +ҵ֤ N document|,*prove|֤,#finish|,education| + V die| + V kill|ɱ,means=firing| + V die| + V MakeBad|Ӻ + N money|,commercial| +ֵ N attribute|,value|ֵ,&money|,commercial| + N system|ƶ,#money|,commercial| + V protect| +ӻ V protect| +ӻȨ N rights|Ȩ,*protect|,politics| +ӻ N InstitutePlace|,*protect| + V protect| + V SayHello|ʺ + N paralyse|̱ + V BlockUp| + V TurnOff|ֹ + V shut|ر +չ V cease|ͣ,content=associate|,politics| +չ N regulation|,#cease|ͣ,#associate|,politics| +չ V cease|ͣ,content=associate|,politics| +պ V shut|ر +պԹ N disease| +ջ V cease|ͣ,content=fact|,#communicate| +վ N phenomena|,#female|Ů,#finish|,medical|ҽ +տڲ̸ V KeepSilence|˵ +տ V KeepSilence|˵ +· N shows| +Ÿ N fact|,shut|ر +˼ V LookBack|,content=err| +쳵 V RashlyAct| +Ļ V finish| +Ļ N text|,#finish| +Ļ N fact|,#finish| +Ļʽ N fact|,#finish| +Ŀ V ignorant|֪ +֢ N disease| + V BlockUp| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +۾׽ȸ V RashlyAct| + N disease| + N fact|,RelateNot|޹ + N part|,%language| +Ԫ N sound|,#language| +߻ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ǧ V like|ϧ,target=useless| + V like|ϧ,target=useless| + N artifact|˹,waste| + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + N phenomena|,bad| +ײ N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ +ײ N phenomena|,bad| +׶ N phenomena|,bad| + ADV aValue|ֵ,possibility|,possible| + ADV {comment|} + ADV {modality|} +ر ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ز ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ض ADV {modality|} +ؽ ADV {comment|} +Ȼ ADJ aValue|ֵ,possibility|,possible|,desired| +Ȼ N regulation|,#possibility|,#possible| +Ȼ ADJ aValue|ֵ,possibility|,possible| +Ȼ N attribute|,possibility|,possible|,&event|¼ +޿ N fact|,study|ѧ,necessary|Ҫ,education| + ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +Ʒ N artifact|˹,$need|,necessary|Ҫ,generic|ͳ + AUX {modality|} +Ҫ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +Ҫǰ N attribute|,standard|׼,&entity|ʵ +Ҫ N attribute|,standard|׼,&entity|ʵ +Ҫ N attribute|,necessity|Ҫ,necessary|Ҫ,&entity|ʵ +֮· N process|,necessity|Ҫ +֮ N place|ط,important|,military| + ADJ aValue|ֵ,content|,accurate|׼,desired| + V create| + V obstruct|ֹ + V refute| +ҥ V refute|,content=deceive|ƭ + N facilities|ʩ,*obstruct|ֹ,military| + N part|,%building|,skin|Ƥ + N part|,%land|½,skin|Ƥ + N shape|,skin|Ƥ +ڱ N readings|,news| +ڳ N furniture|Ҿ,cubic|,@put| +ڵ N tool|þ,*illuminate| +ڹ N tool|þ,$hang|,*decorate|װ,#room| +ڹ N furniture|Ҿ,cubic|,@put| +ڻ N beast| +ڻ N image|ͼ + N facilities|ʩ,*obstruct|ֹ +ݷ V BeOpposite| +ɭ V aValue|ֵ,property|,$defend|,strong|ǿ + V stand|վ +¯ N tool|þ,*WarmUp|,#room| +¯̨ N part|,%tool|þ,#WarmUp|,#room| + N fact|,sport| +ʭ N InsectWorm|,undesired|ݬ +̺ N tool|þ,$hang|,*decorate|װ,#room| +ֽ N material|,*decorate|װ,#room| + N part|,%AnimalHuman|,arm| + N part|,%implement|,arm| +۰ N part|,%AnimalHuman|,arm| + N tool|þ,*mark|־,#arm| + V help| + V escape| + V evade|ر + V obstruct|ֹ +ܷ V escape|,cause=unfortunate| +ܷ V escape|,cause=wind| +ܷ N place|ط,safe| +ܷͷ V escape|,cause=unfortunate| +ܹ V escape|,cause=lights| +ܻ V evade|ر +ܿ V escape| +ܿ V evade|ر +ܿ侮 V unfortunate| + N tool|þ,#thunder| + N tool|þ,#thunder| + V escape| + V escape|,cause=unfortunate| + N InstitutePlace|,@escape|,#unfortunate| + V escape| +˶Ŀ V escape|,cause=$know|֪ +ʵ V escape|,cause=cons| + V escape|,cause=hot| +˰ V evade|ر,content=pay|,#expenditure|,commercial| + V escape|,cause=$doubt| + V escape|,cause=dangerous|Σ + V escape|,cause=RainSnow|ѩ + V obstruct|ֹ,ResultEvent=pregnant|,#mating| +дʩ N method|,#mating|,*obstruct|ֹ,#pregnant| +й N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +л N medicine|ҩ,#mating|,*obstruct|ֹ,#pregnant| + N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +ҩ N medicine|ҩ,#mating|,*obstruct|ֹ,#pregnant| +Ʒ N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +ؾ V evade|ر,content=express|ʾ,#important|,means=express|ʾ,#secondary| + N part|,%building|,nerve| + N human|,royal| + V beat| + N shape| + N tool|þ,*WhileAway|,*congratulate|ף + N tool|þ,*beat| + N weapon|,past| +ޱٽ ADJ aValue|ֵ,content|,accurate|׼,desired| +ޱ ADJ aValue|ֵ,content|,accurate|׼,desired| +޲ V urge|ʹ +޳Ī V BeUnable| +޴ V beat| + N tool|þ,*WhileAway|,*congratulate|ף +̢ V ExpressAgainst|Ǵ + N tool|þ,*beat| + V beat| + N attribute|,boundary|,&entity|ʵ + ADJ character|,surname|,human|,ProperName|ר + N organization|֯ + N part|,%country|,edge| + N part|,%image|ͼ,edge| + N part|,%inanimate|,edge| +߰ N facilities|ʩ,#country|,edge|,route|· +߳ N place|ط,#country|,edge| +ߵ N place|ط,#country|,edge| +߷ N fact|,defend|,#country|,edge|,military| +߷ N army|,*defend|,#country|,edge|,military| +߷ N fact|,check|,#country|,edge|,military| +߷վ N facilities|ʩ,*check|,#country|,edge|,military| +߷ N army|,*defend|,#country|,edge|,military| +߷ N facilities|ʩ,*defend|,#country|,edge|,military| +߷սʿ N human|,*defend|,#country|,edge|,military| +߷վ N facilities|ʩ,*check|,#country|,edge|,military| +߷ N human|,*exercise|,(football|) +߹ N facilities|ʩ,#country|,edge|,route|· +߼ N attribute|,boundary|,&entity|ʵ +߼ N fact|,check|,#country|,edge|,military| +߽ N part|,%country|,edge| +߽ N material| +߽ N part|,%country|,edge| +̸߽ N fact|,discuss|,#country|,edge|,politics| +߽ N part|,%country|,edge| +߽ N fact|,quarrel|,#country|,edge| +߾ N part|,%country|,edge| +߾ͻ N fact|,fight|,#country|,#edge| +߾ó N fact|,commercial|,#country|,#edge| +߿ N facilities|ʩ,*check|,#country|,edge|,military| +߿ N part|,%artifact|˹,edge| +ó N fact|,commercial|,#country|,#edge| + N part|,%building|,mouth|,edge| + N human|,*reside|ס,#country|,edge| + N place|ط,#country|,edge| + N facilities|ʩ,military|,*defend| + N location|λ,%facilities|ʩ,linear|,edge|,sport| + N part|,%inanimate|,%space|ռ,edge| + N sound|,#language| +Ե N part|,%inanimate|,%space|ռ,edge| +Եѧ N knowledge|֪ʶ +Զ ADJ aValue|ֵ,distance|,far|Զ +կ N place|ط,#country|,edge| + N part|,%country|,edge| + V PutInOrder| + V compile|༭ + V establish| + V forge|α + V weave| + V establish| + V weave| + V compile|༭,ContentProduct=software|,#computer| + N attribute|,sequence|,&entity|ʵ +ർ V compile|༭,guide|,entertainment| +ർ N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V establish|,PatientProduct=organization|֯ +෢ V announce|,#news| + V PutInOrder|,scope=number| + N attribute|,number|,&physical| +༭ V compile|༭ +༭ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +༭ N part|,%institution|,*compile|༭,#readings|,literature| +༭ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +༭Ա N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +༭ N human|,#occupation|ְλ,official|,*compile|༭,#news| + V compile|༭,PatientProduct=shows|,entertainment| + N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V compile|༭ +Ŀ V classify| +Ŀ N part|,%readings|,content| +ʷ N readings| + N attribute|,pattern|ʽ,&text| + V PutInOrder| +Dz V establish|,military| + N human|,#occupation|ְλ,*compile|༭,#readings|,literature| + ADJ aValue|ֵ,attachment| +ί N human|,#occupation|ְλ,#institution|,*compile|༭,#readings|,literature| +ί N part|,%institution|,*compile|༭,#readings|,literature| +д V compile|༭ +д N human|,*compile|༭ +ѡ V compile|༭ + V compile|༭,translate| +ӡ V print|ӡˢ + V compile|༭ + V forge|α + N human|,*compile|༭,#readings|,literature| +߰ N text|,#readings| +֯ V weave| + N attribute|,strength|,&organization|֯ +Ա N attribute|,strength|,&organization|֯ + N MusicTool| + V compile|༭ +׫ V compile|༭ + V establish|,PatientProduct=organization|֯ + V compile|༭ + V BecomeLess| + V PlayDown| + V dismiss| + V ExpressAgainst|Ǵ + V dismiss| + V PlayDown| + N human|,*PlayDown| + V PlayDown| + V PlayDown| + V PlayDown| + N information|Ϣ,*PlayDown| + N expression|,*PlayDown| +ְ V dismiss|,ResultIsa=occupation|ְλ +ֵ V BecomeLess|,scope=value|ֵ + V dismiss| + ADJ aValue|ֵ,form|״,flat| +ⳤ ADJ aValue|ֵ,length|,long| + N InsectWorm| +ⵣ N tool|þ,*CarryOnBack| +ⶹ N part|,%vegetable|߲,embryo|,$eat| +ⶹ N vegetable|߲ +ƽ ADJ aValue|ֵ,form|״,flat| +ƽ N disease| + N fruit|ˮ + N tree|,#fruit|ˮ + N part|,%AnimalHuman| + N disease| + N part|,%AnimalHuman| +ٷʴ N disease| + N disease| +Բ ADJ aValue|ֵ,form|״,round|Բ + N ship| + N tool|þ,*rub|Ħ + N InsectWorm| + CONJ EventResult|¼ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,time|ʱ,convenient| + V excrete|й + N natural|Ȼ,#AnimalHuman|,$excrete|й,waste| + CONJ {concession|ò} + N food|ʳƷ +㳵 N LandVehicle| + N facilities|ʩ,cubic|,*excrete|й +㵱 ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +㵱 N food|ʳƷ + N facilities|ʩ,route|· + N facilities|ʩ,route|·,@walk| + N facilities|ʩ,route|·,near| +㷹 N food|ʳƷ + N clothing|,generic|ͳ +㺯 N letter|ż + N tool|þ,cubic|,*excrete|й + N paper|ֽ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + V benefit| +· N facilities|ʩ,route|·,near| +ñ N clothing|,#head|ͷ + N part|,%building|,mouth| + N disease| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,*excrete|й + N facilities|ʩ,route|·,#waters|ˮ +ʿ CLAS unit|λ,&money|,(UK|Ӣ) + N text| +Ͱ N tool|þ,cubic|,*excrete|й +Ь N clothing|,#foot| +Яʽ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +Ѫ V bleed|Ѫ,#excrete|й + N fact|,entertain|д,eat| + N clothing| + N human|,#occupation|ְλ,*scout|,police| + ADJ aValue|ֵ,price|۸,cheap|,desired| + V benefit| + V do|,manner=flexible| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ڹ ADJ aValue|ֵ,ability|,able|,$manage| +װ N clothing|,generic|ͳ + N fact|,entertain|д,eat| + V alter|ı + V become|Ϊ + V change| + N fact|,change| +Ϸ V perform|,content=shows|,entertainment| +䱾 V surpass|ǿ + V become|Ϊ +䵰 N food|ʳƷ + N facilities|ʩ,#electricity| +վ N facilities|ʩ,#electricity| + V alter|ı,patient=SoundQuality| +䶯 V QuantityChange|,commercial| +䶯 V alter|ı +䶯 V change| +䷨ V improve|,politics| +䷨ V try|,patient=method| +䷨ά N fact|,improve|,politics| + V alter|ı + V alter|ı + N fact|,change| +仯 V change| +仯 ADJ aValue|ֵ,property|,change|,often| +仯 ADJ aValue|ֵ,property|,change|,often| +仯޳ ADJ aValue|ֵ,property|,change|,often| +任 V replace| +任 N part|,%implement| + V change| +Ī ADJ aValue|ֵ,property|,change|,often| +Ī N aValue|ֵ,property|,change|,often| +޳ ADJ aValue|ֵ,property|,change|,often| +伶 V AlterGrade|伶 +佹ͷ N part|,%tool|þ,#TakePicture|,heart| +佹ྵͷ N part|,%tool|þ,#TakePicture|,heart| + V betray|,politics| +ڷ N human|,*betray|,treacherous|,undesired|ݬ,politics| +Ϊ N fact|,betray|,undesired|ݬ,politics| +ռλ V AlterLocation|ռλ + V ExpressAnger|ʾŭ + N attribute|,property|,&entity|ʵ + N symbol|,#quantity| + V AlterMeasurement| + V AlterPossession| + N fact|,uprise|,undesired|ݬ + V sell| +ħ V perform|,content=shows|,entertainment| +Ƶ V alter|ı,patient=frequency|Ƶ +Ƶ N implement|,*alter|ı,#frequency|Ƶ +Ƶ N implement|,*alter|ı,#frequency|Ƶ +Ǩ N fact|,#change| +ɫ V AlterColor|ɫ +ɫ V angry| +ɫ N tool|þ,*protect|,#eye|,*AppearanceChange|۱,#color|ɫ +ɫ N beast| +ɫ N human|,sly|,undesired|ݬ +Ƿ V AlterIsa|Ƿ + V AlterAttribute| + N attribute|,property|,&entity|ʵ + N symbol|,#quantity| + V alter|ı,patient=speed|ٶ + N part|,%machine|,*alter|ı,#speed|ٶ +̬ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +̬Ӧ N disease| +̬ N mental|,disease| + V AlterProperty| + V BeRecovered|ԭ,politics|,undesired|ݬ + V WeatherChange| +ͨ ADJ aValue|ֵ,behavior|ֹ,flexible| +ͨ ADJ obey|ѭ +Ϊ V become|Ϊ +¶ N AnimalHuman|,generic|ͳ +Ϸ V perform|,content=shows|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,hidden| + V disloyal| + V FormChange|α +γ N bacteria|΢ +γ N disease| +״ V AlterForm|״ + V AlterAttribute| +̬ V ize|̬ +ѹ N tool|þ,alter|ı,#electricity| + V FormChange|α + N fact|,change| + V OutOfOrder| + N stone|ʯ,?material| + N entity|ʵ +ŷ V try|,patient=method| + N fact|,change|,#music|,entertainment| + N music|,entertainment| + V disobey|Υ,content=MakeAppointment|Լ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V distinguish|ֱ + N attribute|,ability|,#distinguish|ֱ,&human| + V distinguish|ֱ + V distinguish|ֱ + V distinguish|ֱ +ʶ V distinguish|ֱ + V distinguish|ֱ +֤ V prove|֤ +֤ N fact|,cure|ҽ,medical|ҽ + V debate| + V refute| +粵 V refute| + N attribute|,ability|,#debate|,&human| + V debate| + N text|,*debate| + N text|,*debate| +绤 V refute| +绤 V refute|,police| +绤 N human|,*refute|,#police| +绤ʿ N human|,*refute|,#police| + V refute| + N human|,*debate| + V debate| + N fact|,debate| +ۻ N fact|,debate| + V debate| +ʿ N human|,*debate| +֤ N knowledge|֪ʶ +֤߼ N knowledge|֪ʶ +֤Ψ N knowledge|֪ʶ + N part|,%human|,hair|ë + V weave| + V weave| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N reason|,*ExpressAgainst|Ǵ,undesired|ݬ + CLAS ActUnit|,&event|¼ + ADJ aValue|ֵ,range|,all|ȫ +鲼 V exist|,manner=all|ȫ + ADJ location|λ,all|ȫ +ؿ V appear| +ؿ V pregnant| +鼰 V exist|,manner=all|ȫ + ADJ location|λ,all|ȫ + V wounded| + ADJ location|λ,all|ȫ +Ұ ADJ location|λ,all|ȫ + N attribute|,price|۸,&bear|е,industrial| + V express|ʾ + N mark|־ + N phenomena|,#disease|,medical|ҽ + V propose|,commercial| + N tool|þ,*reward|,desired| + V ShowOff|ҫ + V disseminate| +걾 N entity|ʵ,example|ʵ + N human|,$study|ѧ,$imitate|ģ,desired| + N human|,military| + N part|,%weapon|,*measure|,#mark|־ + N tool|þ,*measure|,#mark|־ + V express|ʾ + N attribute|,price|۸,$propose|,&artifact|˹,commercial| + N facilities|ʩ,*illuminate|,#vehicle|ͨ,#AlterLocation|ռλ + N lights|,#vehicle|ͨ,#AlterLocation|ռλ + N attribute|,price|۸,$propose|,&artifact|˹,commercial| + N symbol|,#text| + N symbol|,#text| +궨 V delimit| +궨 N standard|׼ + N tool|þ,*measure|,#mark|־ + N attribute|,height|߶,&inanimate| + N attribute|,rank|ȼ,&material| + N symbol| + N attribute|,price|۸,$write|д,&physical| + V express|ʾ,content=price|۸,commercial| + V express|ʾ + N mark|־ +ǩ N mark|־ +ǹ N SportTool|˶ +ʶ V express|ʾ +ʶ N mark|־ +ʶ N symbol|,*express|ʾ +ʾ V express|ʾ + N part|,%text|,name| +ͼ N image|ͼ + V start|ʼ,content=new| + N readings| + N mark|־ +־ V mean|ָ +־ N symbol| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ע V express|ʾ +ע N symbol|,*express|ʾ +׼ ADJ aValue|ֵ,standard|׼,average|,desired| +׼ N attribute|,standard|׼,&entity|ʵ +׼ N law|ɷ +׼ ADJ aValue|ֵ,standard|׼,average| +׼ N ize|̬,PatientAttribute=standard|׼ +׼ V ize|̬,PatientAttribute=standard|׼ +׼ N sound|,*fit|ʺ,standard|׼,#language| +׼ N language|,*fit|ʺ,standard|׼ + N beast| + ADJ aValue|ֵ,brightness|,bright|,desired| +ǧ ADJ aValue|ֵ,brightness|,bright|,desired| +ʷ ADJ aValue|ֵ,brightness|,bright|,desired| +뺷 ADJ aValue|ֵ,courage|,brave|,desired| +δ N human|,big| + N part|,%AnimalHuman|,flesh| + ADJ aValue|ֵ,fatness|,fat| +׳ ADJ aValue|ֵ,fatness|,fat| + V cure|ҽ + N document|,@record|¼ + V express|ʾ + N human|,$study|ѧ,$imitate|ģ,desired| + N mark|־,*salute|¾,#royal| + N part|,%thing|,skin|Ƥ,external| + N tool|þ,*measure| + N tool|þ,*tell|,#time|ʱ + V explain|˵ + N document|,@record|¼ + N account|,@record|¼ + N part|,%thing|,skin|Ƥ + N location|λ + N part|,%weapon|,*measure|,#mark|־ + V express|ʾ +ʽ V symbol| +ʽ N symbol| + N fittings|,%tool|þ,#tell|,#time|ʱ,*fasten|˩ + N human|,family|,male| + N human|,family|,male| + N document|,@record|¼ + V express|ʾ,content=result|,#succeed|ɹ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N symbol| + N human|,family|,female|Ů + N human|,family|,female|Ů,mass| + V judge|ö,means=select|ѡ + N organization|֯,*select|ѡ,undesired|ݬ +Ȩ N rights|Ȩ,*select|ѡ + N attribute|,behavior|ֹ,&human| + N location|λ,external|,internal| +ﲻһ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +һ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N fittings|,%tool|þ,#tell|,#time|ʱ,*fasten|˩ +¶ V express|ʾ + N human|,$study|ѧ,$imitate|ģ,desired| + N human|,family|,female|Ů + N part|,%tool|þ,#time|ʱ,skin|Ƥ + N part|,%thing|,skin|Ƥ +滯 V exposure|¶ + N attribute|,size|ߴ,surfacial|,&inanimate| +ֵ N attribute|,value|ֵ,&physical| + N text|,fake|α + N phenomena|,NotProfound|dz + N attribute|,strength|,#pull|,&physical| + V express|ʾ + N part|,%tool|þ,#time|ʱ,skin|Ƥ +Ƥ N part|,%AnimalHuman|,skin|Ƥ + N attribute|,clan|,&human| + N human|,family| + N attribute|,countenance|,&AnimalHuman| +ʾ V express|ʾ +ʾ N information|Ϣ,$express|ʾ +ʾ V ShowBadEmotion|ʾ +ʾ V ShowEmotion|ʾ + V explain|˵ +̬ V tell|,content=standpoint| + N stone|ʯ,material|,skin|Ƥ + V ShowOff|ҫ + N attribute|,behavior|ֹ,&human| + N result|,#show| + V show| + N experience| + V display|չʾ + V perform|,entertainment| + N fact|,compete|,$perform| + N shows| + V praise|佱 + N character| + N character| + N part|,%language| + V praise|佱 + N part|,%tool|þ,#tell| + N disease| + N fish| + V pant| + V restrain|ֹ + V upset| + V upset| + V pant| + V upset| + V upset| +һ V upset| + ADJ aValue|ֵ,kind|,other| + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V farewell| + V fasten|˩ + ADV {neg|} +IJ ADJ aValue|ֵ,kind|,special| + N location|λ,other| + ADJ aValue|ֵ,kind|,other| +𶯶 N part|,%army| +һ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,new| + EXPR expression|,*WellTreat|ƴ + EXPR expression|,*SayHello|ʺ + V farewell| + N fact|,other| +ͷ V HaveContest| + N attribute|,name|,other|,&entity|ʵ +Ť V FitNot| +Ť ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ť ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + PRON {ThirdPerson|} + N house| + V BeUnable| + V BeUnable| +ѡ V BeUnable| + N emotion|,#sad|dz,#farewell| + ADJ aValue|ֵ,similarity|ͬ,different| +ж ADJ aValue|ֵ,prettiness|,beautiful|,desired| +зζ ADJ aValue|ֵ,taste|ζ,special|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N tool|þ,*decorate|װ,#female|Ů + N tool|þ,*fasten|˩ + ADJ aValue|ֵ,kind|,special| + N character|,wrong| + ADJ aValue|ֵ,form|״,dented| + N human|,*roam|,poor|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V BeNear| + V BeNear| +ٵ V BeNear|,partner=end|ս,commercial| + V BeNear|,partner=perish| +Σ V suffer|,content=dangerous|Σ + V BeNear| + V BeNear|,partner=perish| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ + N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ +Ϧ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N part|,%language| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + N human|,friend|,#welcome|ӭ,#WellTreat|ƴ + V remove| + V reject|ؾ + V remove| + V abandon| + N army| + N human|,*fight|,military| + N part|,%tool|þ,#recreation|,#compete| + N fact|,uprise|,undesired|ݬ,politics| +Ѫ V win|ʤ,manner=easy| +թ EXPR expression|,*estimate| + N weapon|,ship|,military| + N method|,*fight|,military| + N weapon|,generic|ͳ + N affairs|,produce|,#weapon|,military|,industrial| + N InstitutePlace|,@produce|,#weapon|,military|,industrial| + EXPR expression|,*estimate| + N phenomena|,disorder|,undesired|ݬ,#fight|,military| + N human|,#knowledge|֪ʶ,military| + N human|,*fight|,military|,generic|ͳ +ҳ N fact|,#fight|,military| + N weapon|,ship|,military| + N attribute|,strength|,&army|,military| + N quantity|,rate|,#army|,military| + ADJ aValue|ֵ,property|,$suffer|,#attack|,undesired|ݬ +ٳ V suffer|,content=attack|,military| + N army|,military| +ٸ N artifact|˹,generic|ͳ,past|,precious| +Ʀ N human|,*fight|,undesired|ݬ,evil|,military| + N weapon|,generic|ͳ +ǿ׳ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +Ȩ N attribute|,power|,&army|,military| + N weapon|,generic|ͳ + V fight|,military| +ʿ N human|,*fight|,military| + N part|,%army| +е N weapon|,generic|ͳ + N InsectWorm| + N affairs|,engage|,military| +۷ N law|ɷ,#affairs|,#engage|,military| + N system|ƶ,#affairs|,#engage|,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס + N human|,*fight|,undesired|ݬ,evil|,military| +Ա N army|,generic|ͳ +վ N facilities|ʩ,*help|,military| + N attribute|,kind|,&army| + ADJ aValue|ֵ,temperature|¶,cold| + V cool| + N ice| + V suffer|,content=cold| + N food|ʳƷ,ice|,cold| + N RainSnow|ѩ,#WeatherBad| + N facilities|ʩ,@exercise|,#ice|,sport| + N ice| + N time|ʱ,#ice|,past| + N chemical|ѧ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iceland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Iceland|) + N human|,(Iceland|) + N language|,#country|,ProperName|ר + N tool|þ,#ice|,$display|չʾ + N attribute|,boundary|,#cool|,&physical| + N fact|,carve|,#ice| + N image|ͼ,carve|,#ice| + V cool| + V StateChange|̬,StateFin=ice| + N part|,%land|½,head|ͷ,ice| + N food|ʳƷ,ice|,cold| + N tool|þ,*cool| + N food|ʳƷ,ice|,cold| + N food|ʳƷ,ice|,cold| + N ice| + N ice| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N food|ʳƷ,ice|,cold| + N ice| + N ice| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,temperature|¶,cold| + N ice| + N ice| +Ƭ N medicine|ҩ + N fact|,sport| +ɽ N ice| + V disappear|ʧ +ǰ V reconcile| +̿ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N material|,?food|ʳƷ +ѩ N land|½,#ice| + N tool|þ,*cool| +߽ V disappear|ʧ +Ь N SportTool|˶,#clothing|,#foot| +ѩ N ice| +ѩ N festival|,@congratulate|ף,#ice| + V cool| + N ice| +ש N food|ʳƷ,ice|,cold| + N food|ʳƷ,ice|,cold| + N tool|þ,*split|ƿ,#ice| + N attribute|,power|,&human|,&organization|֯,&information|Ϣ + N part|,%implement|,hand| + N part|,%plant|ֲ,body| + NUM qValue|ֵ,sequence|,ordinal| + N material|,?clothing| +ͪ N material| +ͪ֬ N material| +ϩ N chemical|ѧ + N lights| + V control| + V hold| + V bear|е + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + V control|,patient=country| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N food|ʳƷ + N shape| + N food|ʳƷ + N material|,*feed|ι,#crop|ׯ + N food|ʳƷ + N food|ʳƷ + ADJ aValue|ֵ,brightness|,bright| + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N disease| + V ill|̬ + N document|,@record|¼,#disease|,medical|ҽ + N example|ʵ,#disease|,medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N fact|,#disease|,change|,#medical|ҽ + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ + N disease| + N process|,#disease|,medical|ҽ +溦 N phenomena|,#plant|ֲ,*SufferFrom|,undesired|ݬ,medical|ҽ + N furniture|Ҿ,@sleep|˯,#disease|,medical|ҽ + V ill|̬ + N bacteria|΢ + N software|,*damage|,#software| +Ը N disease| +Լ N disease|,#bacteria|΢ +ѧ N knowledge|֪ʶ,#bacteria|΢,#disease|,medical|ҽ +ѧ N human|,medical|ҽ + N room|,#disease|,medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N cause|ԭ,undesired|ݬ,#unfortunate| + N disease| + V die|,cause=ill|̬ + N phenomena|,#plant|ֲ,*SufferFrom|,medical|ҽ,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +ŷ N edible|ʳ,#human|,#SufferFrom|,#medical|ҽ + N disease| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N time|ʱ,#disease|,@rest|Ϣ,#medical|ҽ + N bacteria|΢ + N attribute|,circumstances|,&disease|,#medical|ҽ + N text|,*announce|,#circumstances|,#disease|,#medical|ҽ + N knowledge|֪ʶ,#reason|,#disease|,medical|ҽ +ѧ N knowledge|֪ʶ,#reason|,#disease|,medical|ҽ +ѧ N human|,medical|ҽ + N document|,@record|¼,#disease|,medical|ҽ + N process|,#disease|,medical|ҽ + N example|ʵ,#disease|,medical|ҽ +ħ N humanized|,undesired|ݬ,evil|,#disease| + N attribute|,circumstances|,&disease|,#medical|ҽ +鹫 N text|,*announce|,#circumstances|,#disease|,#medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N attribute|,appearance|,#ill|̬,undesired|ݬ,&AnimalHuman| + V suffer|,content=decline|˥,medical|ҽ +ʷ N process|,#disease|,medical|ҽ + V die|,cause=ill|̬ + N attribute|,circumstances|,&disease|,#medical|ҽ + N room|,#disease|,medical|ҽ + V die|,cause=ill|̬ +̬ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +̬ N attribute|,circumstances|,&disease|,#medical|ҽ +̬ N mental|,disease| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +ʹ N disease| + V cease|ͣ,content=undertake|,cause=disease| + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ +Σ V suffer|,content=decline|˥,medical|ҽ + V cease|ͣ,cause=disease| + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N cause|ԭ,#disease|,medical|ҽ + N human|,friend|,#disease| + V BeRecovered|ԭ,medical|ҽ +ԭ N cause|ԭ,#disease|,medical|ҽ +ԭ N bacteria|΢ +ԭ N bacteria|΢ +ԭѧ N knowledge|֪ʶ,#bacteria|΢,medical|ҽ +Ա N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + N location|λ,#disease|,medical|ҽ +֢ N disease| + V ill|̬ + N plant|ֲ,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +״ N phenomena|,#disease|,medical|ҽ + N furniture|Ҿ,@sleep|˯,#disease| + N time|ʱ,@ill|̬ + V ill|̬,manner=extreme| + ADV aValue|ֵ,time|ʱ,alike| + V merge|ϲ + COOR {and|} + V punish|,police| + V exist|,manner=together|ͬ + N human|,family|,#GetMarried| + V happen|,time=BeSame|ͬ +֢ N disease| + ADV {neg|} + V equal| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + V GoForward|ǰ,manner=together|ͬ + V handle| + V exist|,time=BeSame|ͬ + V connect|,industrial| + V BeNear| +о N part|,%language| +û ADV {neg|,past|} +û ADV {neg|,past|} + ADV aValue|ֵ,behavior|ֹ,together|ͬ + CONJ {and|} + ADV {and|} + CONJ {and|} + V include| + V merge|ϲ,commercial| + V occupy|ռ,military| + ADV {neg|} + ADJ aValue|ֵ,time|ʱ,alike| +в V fit|ʺ + V PayAttention|ע + N character| +߶ N money|,(Venezuela|ί) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bolivia|ά) +ά N place|ط,country|,ProperName|ר,(South America|) +άŵ N money|,(Bolivia|ά) +ά N human|,(Bolivia|ά) + N material|,?tool|þ + N tool|þ,cubic|,@put|,#drinks|Ʒ + N InstitutePlace|,@produce|,#material|,industrial| + N tool|þ,*split|ƿ,#material| + N human|,#occupation|ְλ,*produce|,#material|,industrial| +̻ N human|,#occupation|ְλ,*carve|,#material|,industrial| + N material| + N tool|þ +ֽ N material| + ADJ aValue|ֵ,attachment|,#material| +״ ADJ aValue|ֵ,form|״ + N character|,(China|й) + N part|,%vegetable|߲,$eat| + N vegetable|߲ + N fruit|ˮ + N fruit|ˮ + V disseminate| + V spread|,agricultural|ũ + V disseminate| + V disseminate| + V display|չʾ + V disseminate| +Ū V incite|ָʹ +Ǩ V TakeAway|ᶯ + V spread|,agricultural|ũ +ɢ V send| +ɢ V spread| + V disseminate| + V disseminate| + N part|,%institution|,@disseminate| +Ա N human|,#occupation|ְλ,*disseminate| +ӳ V disseminate| + V spread|,patient=embryo|,agricultural|ũ +ֻ N machine|,*spread|,#embryo|,#plant|ֲ,agricultural|ũ + N attribute|,broad|,&land|½,#spread|,#embryo|,#plant|ֲ,agricultural|ũ + N time|ʱ,@spread|,#embryo|,#plant|ֲ,agricultural|ũ + CLAS NounUnit|,&tool|þ,#cover|ڸ,#sleep|˯ + V PlayWith|Ū + V associate|,means=turn|Ťת,#tool|þ + V issue|ַ + V turn|Ťת + V issue|ַ + V associate|,means=turn|Ťת,#tool|þ + V issue|ַ + V associate|,means=turn|Ťת,#tool|þ + V part|,%tool|þ,#communicate|,*turn|Ťת + V issue|ַ,patient=fund|ʽ + V PlayWith|Ū +˹ N tool|þ,*WhileAway|,#young| +ҷ V resume|ָ,StateIni=disorder| +Ū V PlayWith|Ū +Ū V incite|ָʹ + V CauseToDo|ʹ,patient=self|,ResultEvent=obtain|õ,#time|ʱ +ͨ V associate|,means=turn|Ťת,#tool|þ +Ƽ V resume|ָ,StateIni=disorder| + V amend| +׼ V amend| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N fact|,change| + N place|ط,country|,ProperName|ר,(Poland|) + N shape|,#sound|,#electricity| + N water|ˮ + N attribute|,length|,&water|ˮ,&sound| + V jet| + V QuantityChange|,commercial| + ADJ aValue|ֵ,form|״,rugged| + N attribute|,length|,&sound|,#disseminate| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Puerto Rico|) + N place|ط,country|,ProperName|ר,(South America|) +ŵ N place|ط,capital|,ProperName|ר,(Benin|) + N place|ط,city|,ProperName|ר,(Germany|¹) + N water|ˮ + N attribute|,length|,&sound|,#disseminate| + N place|ط,capital|,ProperName|ר,(Colombia|ױ) + N water|ˮ + N place|ط,country|,ProperName|ר,(Europe|ŷ) + V influence|Ӱ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Poland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,(Poland|) + N language|,#country|,ProperName|ר + N water|ˮ +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| + N water|ˮ + N place|ط,ProperName|ר + N human|,(Polynesia|) + N fruit|ˮ + N fruit|ˮ +޵ĺ ADJ waters|ˮ,ProperName|ר +޵ĺ N waters|ˮ,surfacial|,ProperName|ר,(Europe|ŷ) + N phenomena|,#color|ɫ,#lights|,#sound|,#electricity| +ʿ N place|ط,city|,ProperName|ר,(US|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Persia|˹) +˹ N place|ط,ProperName|ר,(Asia|) +˹è N livestock| +˹ N human|,(Persia|˹) +˹ N place|ط,ProperName|ר,#waters|ˮ +˹ N language|,#country|,ProperName|ר + N attribute|,speed|ٶ,&AlterLocation|ռλ,#water|ˮ + N water|ˮ +ι ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ +ӿ ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + N trace|,wrinkled| + N water|ˮ +ϣ N place|ط,ProperName|ר +ϣ N human|,(Bohemia|ϣ) + N aircraft| + N fact|,change| +״ N disease| +״ N CloudMist| + ADJ qValue|ֵ,amount|,many| + V undergo| + N attribute|,relatedness|,intimate|,&human|,desired| +ڳ V receive|,possession=think|˼ + N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + V undergo| +ͨ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V read|,range=extensive| + N InstitutePlace|,@display|չʾ,#artifact|˹ +ȡ V seek|ıȡ +ʿ N human|,*research|о,*study|ѧ,education| +ʿ N human|,*research|о,*study|ѧ,education| +ʿ N human|,*research|о,*study|ѧ,education| +ʿѧλ N attribute|,rank|ȼ,&human|,#research|о,#study|ѧ,education| +Źʶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ǿ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N physical|,generic|ͳ + N InstitutePlace|,@display|չʾ +ѧ N knowledge|֪ʶ,#display|չʾ +Ժ N InstitutePlace|,@display|չʾ +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V quote|,range=extensive| + V recreation|,sport| + N knowledge|֪ʶ + N human|,*compete| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V happen| + V prosper| + V upmove|,#male|,#mating| +Ȼ ADV aValue|ֵ,property|,excited| +Ȼŭ V angry|,degree=very| +Ȼ V CauseToLive|ʹ,patient=self| + V ComeToWorld|,manner=flourishing| + V GoForward|ǰ + V fight| + V shiver| + V shiver| + V fight| + V fight| +ɱ V fight| + V bite|ҧ,GoForward|ǰ + N metal| + N metal| + N part|,%plant|ֲ,skin|Ƥ + N shape| + N tool|þ + N tool|þ,$burn|,*salute|¾ + N human|,family|,male| + N human|,royal| + N human|,family|,male| + N place|ط,capital|,ProperName|ר,(Switzerland|ʿ) + N human|,family|,male| + N human|,royal| + N human|,royal| + N bird| + N human|,wise| +ĸ N human|,family|,female|Ů + N character|,surname|,human|,ProperName|ר + N material|,?clothing| + N ship| +Ʒ N artifact|˹,foreign| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,arm| + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,#waters|ˮ,(China|й) + V stay|ͣ + V put|,patient=LandVehicle| +λ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +λ N facilities|ʩ,space|ռ,*put|,#LandVehicle| +λ N expenditure|,#location|λ,#ship|,#stay|ͣ + V refute| + V transport|,means=ship| + N facilities|ʩ,#waters|ˮ,*protect| + V refute| + N ship|,*pull| + V refute| + V reject|ؾ +ǹ N weapon|,*firing| + V transport|,means=ship| +˷ N expenditure|,#ship|,#transport| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V catch|׽ס + V catch|׽ס,police| +׽Ӱ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V catch|׽ס + N ship|,*catch|׽ס,beast| + V catch|׽ס + V engage|,content=catch|׽ס,agricultural|ũ + V catch|׽ס,police| +ɱ V kill|ɱ,agricultural|ũ +ʳ V LookFor|Ѱ,purpose=eat| + V catch|׽ס,patient=fish|,agricultural|ũ +׽ V catch|׽ס +׽ͷ V catch|׽ס,patient=time|ʱ,time=TakePicture| +׽ս V catch|׽ס,patient=time|ʱ,time=fight| + N character|,surname|,human|,ProperName|ר + V guess|² + N part|,%vegetable|߲,embryo|,$eat| + V predict|Ԥ + N vegetable|߲ + N text| + V reside|ס + V predict|Ԥ + V feed|ι + V feed|ι +鶯 N AnimalHuman| + N AnimalHuman| +ι V feed|ι + V foster| + V cultivate| + V feed|ι + V provide| + V repair| + V recompense| + V tell| + V recompense| +ó N affairs|,commercial| + ADJ aValue|ֵ,necessity|Ҫ + N human|,*recompense| + ADJ aValue|ֵ,property|,$enrich|ʵ + V enrich|ʵ + N artifact|˹,#repair| + N artifact|˹,#repair| + V issue|ַ + N artifact|˹,$provide|,generic|ͳ,military| + V provide|,military| + N weapon|,ship|,*provide|,military| + N InstitutePlace|,@store|,*provide|,military| + N InstitutePlace|,@store|,*provide|,military| +Ʒ N artifact|˹,$provide|,generic|ͳ,military| + N InstitutePlace|,@store|,*provide|,military| +վ N InstitutePlace|,@store|,*provide|,military| + V submit| + N image|ͼ,angular| + N drinks|Ʒ,*maintain| + V rescue| + V exam|,education| + V teach|,education| + V provide|,agricultural|ũ +ƫȱ V amend|,content=err| +Ʊ V buy|,possession=bill|Ʊ +Ʒ N edible|ʳ,*maintain| +ȱ V provide| +˰ V pay|,content=expenditure| + N payment|,*recompense| +ϰ V study|ѧ +ϰ N part|,%InstitutePlace|,education|,*study|ѧ +ѡ V choose|ѡ +Ѫ V maintain|,medical|ҽ + V maintain|,medical|ҽ +ҩ N medicine|ҩ,*maintain| +Һ V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ + N text|,$add| + V obtain|õ,content=pros| + N part|,%language| + V amend| + V planting|ֲ,agricultural|ũ + N payment|,$provide| + V provide| +׺ V repair| + V provide| +w N artifact|˹,#repair| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N place|ط + ADV {neg|} +ŵ N human|,*disgust|,#tour| + ADJ aValue|ֵ,ability|,unable|ӹ,associate| + V aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V uneasy| + V unsatisfied| +ȫ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +֮ԩ N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,property|,^fail|ʧ,desired| +֮ N attribute|,circumstances|,strong|ǿ,&thing| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + AUX {modality|} +Ҫ ADJ aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lasting| +۸ N attribute|,price|۸,lasting|,&artifact|˹,commercial| + N attribute|,property|,lasting|,&thing| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ʪ ADJ aValue|ֵ,dampness|ʪ,dry| +ɱ ADJ aValue|ֵ,behavior|ֹ,improper| +ɲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ɹ ADJ aValue|ֵ,effect|Ч,useless| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,physique|,unripe| +ͳ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,kind|,^$write|д +ķ N law|ɷ,^$write|д + ADJ aValue|ֵ,form|״,dissimilar| +ʵ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֮ͽ N human|,fierce|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V IllTreat| + N human|,*refuse|,#addict|Ⱥ + ADJ aValue|ֵ,property|,$predict|Ԥ + ADJ aValue|ֵ,content|,mixed| +Ƕ V leave|뿪,manner=KeepSilence|˵ +Ϳ V endeavour| + V endeavour| + V endeavour| + V ExistNot| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V admit| + ADJ aValue|ֵ,SoundVolume|,^loud| + ADV aValue|ֵ,degree|̶,insufficiently|Ƿ + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,size|ߴ,^big| + ADJ aValue|ֵ,strength|,^strong|ǿ +С ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ҫ ADJ aValue|ֵ,importance|,secondary| +˵ ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bhutan|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Bhutan|) + N language|,#country|,ProperName|ר + ADV qValue|ֵ,amount|,many| + ADV {emphasis|ǿ} + ADV {supplement|ݽ} +... COOR {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + N tool|þ,*recreation| +ƺIJ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + STRU {^Vable|} + AUX {modality|,neg|} + AUX {modality|} +ò AUX {modality|} +õ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ö֪ V ignorant|֪ +þ ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ +þ V ill|̬ + ADJ aValue|ֵ,circumstances|,urgent| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$accuse|ظ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ҫ V ignorant|֪ + AUX {modality|} +Ǵ֮ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + V ^wait|ȴ + V differ|ͬ +Ȳ V ^wait|ȴ +Ⱥ N symbol|,#DoSum| +ʽ N symbol|,#DoSum| +ֿ N human|,*refuse|,#resist| + ADJ aValue|ֵ,size|ߴ,small|С + ADJ qValue|ֵ,amount|,few| + ADV aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,size|ߴ,small|С + ADJ qValue|ֵ,amount|,few| + ADV aValue|ֵ,easiness|,difficult|,predict|Ԥ + V unfixed|δ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + N physical|,#wealth|Ǯ,^$TakeAway|ᶯ +ɫ V calm| +ҡ ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,ability|,able|,exempt|,#cool| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + ADV {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,continuous| + V FitNot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADV {neg|} +Բ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Գ ADJ aValue|ֵ,form|״,dissimilar| +Ծ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ͷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ͷ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + N method| + ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ + V exist|,manner=many| + V exist|,experiencer=human|,manner=many| + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + N human|,fierce|,crime|,#police|,undesired|ݬ +Ϊ N fact|,act|ж,crime|,#police| +֮ͽ N human|,fierce|,crime|,#police|,undesired|ݬ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ + ADV {comment|} +Ѵ֮ ADJ aValue|ֵ,easiness|,easy|,desired| +ֱ˴ ADJ aValue|ֵ,relatedness|,intimate| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V despise|,target=correctness| +ʤ V equal|,#HaveContest| +ҹ N time|ʱ + V FitNot| + V disobey|Υ +ˮ V FitNot|,contrast=WeatherChange| + V ExistNot| + V disappoint|,neg| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V ^disappoint|,target=aspiration|Ը +ɲ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɲ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V unwilling|Ը +ʼį V unwilling|Ը,content=$IllTreat| + V unwilling|Ը,content=surrender| +ʾ V unwilling|Ը,content=surrender| + V unwilling|Ը +ҹͬ V disagree|ͬ +Խ׳һ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ sad|dz + V leave|뿪,manner=KeepSilence|˵ + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ц ADJ aValue|ֵ,behavior|ֹ,cautious| + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ʹ ADJ aValue|ֵ,importance|,secondary| + V ^manage| + CONJ {concession|ò} +ܲ N human|,official|,*manage|,#country| + CONJ {concession|ò} + ADV qValue|ֵ,amount|,many| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,form|״,dissimilar| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + ADV aValue|ֵ,degree|̶,insufficiently|Ƿ + ADV aValue|ֵ,degree|̶,very| + CONJ {but|} + ADJ aValue|ֵ,standard|׼,average| + ADJ aValue|ֵ,standard|׼,average| + V regret|Ǹ + ADJ shameless|û + V ^fear| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,opened| + V fear| +ù ADJ aValue|ֵ,ability|,unable|ӹ,$GoThrough| +ù V ill|̬ +ù V sorrowful| +ù V unfortunate| +ÿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +˼ V embarrassed|Ϊ + V disobey|Υ +Ͱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +г ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V FitNot| +ϸ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +߼ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ʱ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ʱ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +﷨ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + V cherish|Ļ,content=evil| +ɢ V farewell|,manner=quarrel| +Ųæ ADJ aValue|ֵ,behavior|ֹ,calm|,desired| + V BeUnable| + AUX {neg|} +ḯ ADJ aValue|ֵ,possibility|,impossible|,OutOfOrder| +Ū ADJ aValue|ֵ,possibility|,impossible|,$misunderstand| + V HaveKnowledge|֪ +֮ N time|ʱ,#age|,adult| + V inferior| +ﶯ V part|,%language| +֮ N affairs|,idle| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +˼ ADJ aValue|ֵ,behavior|ֹ,careless| +Ⱦ ADJ aValue|ֵ,content|,pure| +˼ ADJ aValue|ֵ,behavior|ֹ,careless| + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N attribute|,performance|,FitNot|,&implement| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ʡ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V equal| + V refuse|,content=meet| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,reputation|,Notwellknown| + V ExistNot| +Ӱ V disappear|ʧ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶ + ADJ aValue|ֵ,possibility|,impossible|,StateChange|̬ + V ignorant|֪ +֮ N text|,^$guess|² +֮Ե N attribute|,relatedness|,&entity|ʵ,&human| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADV {supplement|ݽ} +... COOR {supplement|ݽ} + ADV {supplement|ݽ} + ADV {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V EndureNot| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| +ͬ ADJ aValue|ֵ,similarity|ͬ,different| +ȷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V UndergoNot| + ADV aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N decline|˥,commercial| + ADJ aValue|ֵ,duration|,TimeShort| +ǰ N time|ʱ,past| +̼ ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V ^obey|ѭ + CONJ {concession|ò} +һ V ^obey|ѭ + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ڶ V exist|,#sound| + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V EndureNot| + V EndureNot|,content=LookBack| + ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ +Ŀ ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +һ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ѧ ADJ aValue|ֵ,content|,improper| +ɰ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɱ ADJ aValue|ֵ,possibility|,impossible|,$CompareTo| +ɱ ADJ aValue|ֵ,possibility|,impossible|,$escape| +ɱ N attribute|,possibility|,impossible|,$escape|,&event|¼ +ɱ ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +ɱ任 ADJ aValue|ֵ,possibility|,impossible|,$change| +ɲ ADJ aValue|ֵ,possibility|,impossible|,$rescue| +ɲ ADJ aValue|ֵ,possibility|,impossible|,$measure| +ɴ ADJ aValue|ֵ,possibility|,impossible|,$stroke| +ɵֿ ADJ aValue|ֵ,possibility|,impossible|,$resist| +ɶ ADJ aValue|ֵ,possibility|,impossible|,$read| +ɶ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ɷ ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ +ɷ ADJ aValue|ֵ,possibility|,impossible|,$defend| +ɷָ ADJ aValue|ֵ,possibility|,impossible|,$separate| +ɷֽ ADJ aValue|ֵ,possibility|,impossible|,$separate| +ɷ ADJ aValue|ֵ,possibility|,impossible|,$issue|ַ +ɷ ADJ aValue|ֵ,possibility|,impossible|,$deny| +ɸı ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +ɸ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +ɹ ADJ aValue|ֵ,possibility|,impossible|,$estimate| +ɹ ADJ qValue|ֵ,amount|,many| +ɻȱ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ɼ ADJ aValue|ֵ,possibility|,impossible|,$calculate| +ɽ ADJ aValue|ֵ,possibility|,impossible|,$teach| +ɽ ADJ aValue|ֵ,possibility|,impossible|,$accept| +ɾҩ ADJ aValue|ֵ,possibility|,impossible|,$cure|ҽ,undesired|ݬ +ɿ ADV aValue|ֵ,degree|̶,extreme| +ɿ ADV aValue|ֵ,possibility|,impossible|,$resist| +ɿ N attribute|,environment|,unable|ӹ,$escape|,&event|¼ +ɿ˷ ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ +ɿˡ ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +֤ ADJ aValue|ֵ,possibility|,impossible|,$prove|֤ +״ ADJ aValue|ֵ,possibility|,impossible|,$describe|д +ĥ ADJ aValue|ֵ,content|,lasting| + ADJ aValue|ֵ,possibility|,impossible| +ת ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ַ ADJ aValue|ֵ,possibility|,impossible|,$damage| + ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ +ʤ ADJ qValue|ֵ,amount|,many| +ʰ ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ + ADJ aValue|ֵ,possibility|,impossible|,$count| +˵ ADJ aValue|ֵ,possibility|,impossible|,$explain|˵ +˼ ADJ aValue|ֵ,possibility|,impossible| +ͨ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +ͬն V differ|ͬ + ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ +Ϩ ADJ aValue|ֵ,possibility|,impossible|,$remove| + ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ + ADJ aValue|ֵ,possibility|,impossible|,$describe|д +һ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +Խ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +Խ ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ +ԭ ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ +Լ N symbol|,#quantity|,#DoSum| +֪ ADJ aValue|ֵ,possibility|,impossible|,$know|֪ +֪ N knowledge|֪ʶ + ADJ aValue|ֵ,possibility|,impossible|,$believe| +ת ADJ aValue|ֵ,possibility|,impossible|,$TakeAway|ᶯ +׽ ADJ aValue|ֵ,possibility|,impossible|,$understand| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,form|״,blunt| + V ill|̬ + V upset| + V FeelNoQualms| +Ϊ V FeelNoQualms| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ͷ V obtain|õ,means=slack|͵ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ò ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADV slack|͵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + STRU {^Vable|} +˽ V ignorant|֪ +֮ V finish|,result=unfixed|δ + CONJ {comment|} + EXPR expression|,*request|Ҫ +ߴͽ EXPR expression|,*request|Ҫ,#teach| +ָ EXPR expression|,*request|Ҫ,#guide| + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +©ˮ ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© +¶ɫ ADJ aValue|ֵ,behavior|ֹ,secret| +ײ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + CONJ {concession|ò} + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,fullness|,empty| + N emotion|,unsatisfied| + ADV inferior| + V unsatisfied| + V unsatisfied| + N human|,*unsatisfied| + ADJ unsatisfied| +ë֮ N land|½,barren|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +֮ҹ N time|ʱ,night|,^sleep|˯ + AUX aValue|ֵ,possibility|,possible| + ADJ aValue|ֵ,circumstances|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V ignorant|֪ + ADJ aValue|ֵ,possibility|,impossible|,$understand| + N aircraft| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +һ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +Ŷ V ignorant|֪ +ͷ V ignorant|֪ +ı V BeSame|ͬ,scope=thinking|˼ + ADJ aValue|ֵ,easiness|,easy| + ADJ BeUnable| +ܱӶ ADJ aValue|ֵ,possibility|,impossible|,$employ| +ܱ任 ADJ aValue|ֵ,possibility|,impossible|,$change| +ܱ ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +ܲ AUX {modality|} +ܳ ADJ aValue|ֵ,possibility|,impossible|,$return| +ܵ ADJ aValue|ֵ,possibility|,impossible|,$arrive| +ܷ ADJ aValue|ֵ,possibility|,impossible|,$translate| +ܷϳ ADJ aValue|ֵ,possibility|,impossible|,$remove| +ֽܷ ADJ aValue|ֵ,possibility|,impossible|,$dismount|ж +ܸ ADJ aValue|ֵ,possibility|,impossible|,$destroy| +ܻ ADJ aValue|ֵ,possibility|,impossible|,$weaken| +ܻ ADJ aValue|ֵ,possibility|,impossible|,$mix| +ܽ ADJ aValue|ֵ,possibility|,impossible|,$rescue| +ܽ ADJ aValue|ֵ,possibility|,impossible|,$handle| +ܿ ADJ aValue|ֵ,possibility|,impossible|,$control| + ADJ aValue|ֵ,possibility|,impossible|,$understand| + ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +ȡ ADJ aValue|ֵ,possibility|,impossible|,$remove| +ܽ ADJ aValue|ֵ,possibility|,impossible|,StateChange|̬ + V TolerateNot| + ADJ aValue|ֵ,possibility|,impossible|,$perform| + ADJ aValue|ֵ,possibility|,impossible|,alive| +ʵ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +ʵ ADJ aValue|ֵ,possibility|,impossible|,$conduct|ʵʩ +Ӧ ADJ aValue|ֵ,possibility|,impossible|,$fit|ʺ +˵ ADJ aValue|ֵ,possibility|,impossible|,$persuade|Ȱ˵ +˵ ADJ aValue|ֵ,possibility|,impossible|,speak|˵ +ӱ ADJ aValue|ֵ,possibility|,impossible|,$escape| + ADJ aValue|ֵ,possibility|,impossible|,$replace| +ͨ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +ͿĨ ADJ aValue|ֵ,possibility|,impossible|,$apply|ͿĨ +ѹ ADJ aValue|ֵ,possibility|,impossible|,$shrink|С +ȥ ADJ aValue|ֵ,possibility|,impossible|,$remove| + ADJ aValue|ֵ,possibility|,impossible|,$quote| +Ӧ ADJ aValue|ֵ,possibility|,impossible|,$use| + ADJ aValue|ֵ,possibility|,impossible|,$agree|ͬ +֤ʵ ADJ aValue|ֵ,possibility|,impossible|,$prove|֤ +ת ADJ aValue|ֵ,possibility|,impossible|,$sell| +԰ V BeUnable|,content=disconnect| +Լ V BeUnable|,content=control|,#self| +ɶ V forgive|ԭ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +Ŭ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ƫ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƽ ADJ aValue|ֵ,form|״,rugged|,undesired|ݬ +ƽ V unsatisfied| +ƽ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƽȴ N fact|,treat|Դ,biased|ƫ,undesired|ݬ +ƽԼ N agreement|Լ,biased|ƫ,undesired|ݬ +ƽ V differ|ͬ +ƽ V protest|,content=unfortunate| +ڶ V meet| + STRU {^Vable|} + ADJ aValue|ֵ,ability|,unable|ӹ,attract| + V ^function| + ADJ aValue|ֵ,effect|Ч,useless| + ADV aValue|ֵ,time|ʱ,improper| +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +岻 ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +岻 ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ȷ V unfixed|δ +ȷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ȼ ADJ aValue|ֵ,content|,wrong| +Ȼ ADV {neg|} +Ȼ CONJ {transition|ת} +ȻĻ CONJ {transition|ת} +ȼ ADJ aValue|ֵ,possibility|,impossible|,$burn| +ò N human|,*refuse|,#surrender| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʲ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +˵ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V EndureNot| + V refuse|,content=admit| + ADV aValue|ֵ,duration|,TimeShort|,future| + V disagree|ͬ +ݱ V disagree|ͬ,ResultEvent=refute| +ݵ V disagree|ͬ,ResultEvent=delay| + ADJ aValue|ֵ,trueness|α,true|,desired| + V inferior| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V BeUnable| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V BeUnable| + ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many| + V grudge| + ADJ aValue|ֵ,property|,^$defend|,military| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + V ignorant|֪ +Ҫ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,quiet| +ʡ V dizzy| +ʤ V WithstandNot|ס +ʤ ADV aValue|ֵ,degree|̶,very| +ʤ ADJ aValue|ֵ,easiness|,difficult| +ʤö ADJ qValue|ֵ,amount|,many| +ʤ V joyful|ϲ +ʧʱ V obtain|õ,possession=time|ʱ +ʧΪ V be| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ֮ N time|ʱ,@need| +ʶ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ʶʱ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + V be|,neg| + N result|,wrong|,undesired|ݬ + ADV {neg|} +DZ˶ ADJ aValue|ֵ,kind|,other| +ζ V FeelingByBad| +ζ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ζ V FeelingByBad| +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V ill|̬ +ʵ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ӧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ھס ADJ aValue|ֵ,ability|,unable|ӹ,@reside|ס +ܷ ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ +ܸ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ܻӭ ADJ aValue|ֵ,possibility|,impossible|,$welcome|ӭ,undesired|ݬ +ܻӭ N human|,^$welcome|ӭ,diplomatic|⽻,undesired|ݬ +ܽԼ ADJ aValue|ֵ,possibility|,impossible|,$prohibit|ֹ +ܿ ADJ aValue|ֵ,possibility|,impossible|,$control| + V reject|ؾ + ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ + ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ +Ӱ ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ +Լ ADJ aValue|ֵ,behavior|ֹ,free| +֧ ADJ aValue|ֵ,ability|,unable|ӹ,$endorse|ӵ +֧ ADJ aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,ability|,unable|ӹ,$PayAttention|ע +ע ADJ aValue|ֵ,ability|,unable|ӹ,$PayAttention|ע + ADJ aValue|ֵ,ability|,unable|ӹ,$help|,#wealth|Ǯ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,industrial| +ˬ V ill|̬ +ˬ V upset| +˳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +˵ V KeepSilence|˵ + V unwilling|Ը +֮ N human|,*visit|,^$expect|,undesired|ݬ +⼡ N part|,%AnimalHuman|,flesh| +鲣 N material|,strong|ǿ,?tool|þ + V fail|ʧ + ADJ aValue|ֵ,property|,^$shrink|С +ˮ ADJ aValue|ֵ,property|,^$shrink|С + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ͣ ADJ aValue|ֵ,behavior|ֹ,continuous| +ͬ ADJ aValue|ֵ,similarity|ͬ,different| +ͬ ADJ aValue|ֵ,kind|,special| +ͬ V disagree|ͬ +ͬ V differ|ͬ +ʹ ADJ aValue|ֵ,content|,NotProfound|dz +͸ ADJ aValue|ֵ,clearness|,blurred| +͸ ADJ aValue|ֵ,ability|,withstand|ס,#leak|©,#gas| +͸ ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ +͸ˮ ADJ aValue|ֵ,ability|,withstand|ס,#leak|©,#liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADV aValue|ֵ,range|,nonextensive| + ADV aValue|ֵ,range|,nonextensive| + ADJ aValue|ֵ,form|״,straight|ֱ +ȫͳ N result|,#calculate| +ȫҶ N part|,%plant|ֲ,hair|ë + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Υũʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired|,agricultural|ũ +Ϊ֪ ADJ aValue|ֵ,behavior|ֹ,hidden| +Ϊ ADJ aValue|ֵ,possibility|,impossible|,$influence|Ӱ +Ϊ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +η ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ů ADJ aValue|ֵ,temperature|¶,chilly| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ų V despise| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ȶ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V despise| +ǰ V despise|,target=cause|ԭ + V despise|,target=correctness| +Ƿֱ V despise|,target=correctness| +޵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ҵ V ^endeavour|,content=duty| +ҵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϣ ADJ aValue|ֵ,behavior|ֹ,continuous| +ϧ V GrudgeNot| +ϧ V willing|Ը +ϰ ADJ BeUnable|,content=fit|ʺ +Ͼ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADV aValue|ֵ,range|,extensive| + V equal| +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,free| + V RelateNot|޹ + ADJ RelateNot|޹ + ADJ RelateNot|޹ + V equal| +Ӧ V aValue|ֵ,possibility|,impossible|,$fit|ʺ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V ignorant|֪ +꾡 ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V differ|ͬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADV aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,possibility|,impossible|,$consume|ȡ +Т ADJ aValue|ֵ,behavior|ֹ,treacherous| +Ф ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Э ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +г ADJ aValue|ֵ,SoundQuality|,disorder|,undesired|ݬ +и ADJ aValue|ֵ,will|־,strong|ǿ,desired| +й ADJ aValue|ֵ,courage|,brave|,desired| +м V despise| +мһ V despise| + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V die| + V aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,continuous| +ޱ߷ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeLong|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N metal|,material| +Ҫ ADJ aValue|ֵ,necessity|Ҫ,redundant| + V prohibit|ֹ +ѧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ѷ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ź ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Զ ADJ aValue|ֵ,content|,opened| + V ^disgust| +䷳ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ҫ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ҫ ADJ aValue|ֵ,importance|,secondary| +Ҫ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +һ V differ|ͬ +һ V unfixed|δ +һ ADJ qValue|ֵ,amount|,many| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADJ aValue|ֵ,similarity|ͬ,FitNot| +һ ADJ aValue|ֵ,similarity|ͬ,different| +һ N attribute|,similarity|ͬ,FitNot|,&content| + V TolerateNot| + V ^obey|ѭ + V TolerateNot| + V endeavour| + ADJ aValue|ֵ,circumstances|,improper|,undesired|ݬ +˸ӡ ADJ aValue|ֵ,possibility|,impossible|,$print|ӡˢ +˾ס ADJ aValue|ֵ,possibility|,impossible|,@reside|ס +˵ ADJ aValue|ֵ,possibility|,impossible|,$speak|˵ + ADV aValue|ֵ,behavior|ֹ,continuous| +ΪȻ V oppose| + ADJ aValue|ֵ,easiness|,difficult| +׸ж ADJ aValue|ֵ,possibility|,impossible|,$excite|ж +֮ N thinking|˼,correct|ȷ +ֺ ADV aValue|ֵ,degree|̶,extreme| +֮ N wealth|Ǯ,#crime|,undesired|ݬ + V WellKnown|,manner=fast| + V disappear|ʧ +ɵ AUX aValue|ֵ,possibility|,possible| +ɷ˵ V reject|ؾ,content=refute| + ADJ aValue|ֵ,ability|,unable|ӹ,control| +Ѻ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden| + N phenomena|,unfortunate|,undesired|ݬ + V refuse| + ADJ aValue|ֵ,possibility|,impossible|,$admit| +Զǧ V SelfMoveInManner|ʽ +Ը V unwilling|Ը +Ը V unwilling|Ը +Լͬ V BeSame|ͬ + ADJ aValue|ֵ,possibility|,impossible|,$agree|ͬ + N disease|,^pregnant| + ADV {neg|} +ڷֳ V aValue|ֵ,behavior|ֹ,^crime|,#police| +ں V despise| +ڻ ADJ aValue|ֵ,easiness|,easy| + V die| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V despise| +޳ V disagree|ͬ +ͬ V disagree|ͬ +һ V KeepSilence|˵ +ֶ ADV aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ֶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ֶ ADV aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ô ADV aValue|ֵ,degree|̶,insufficiently|Ƿ +ô ADJ aValue|ֵ,standard|׼,average|,desired| + ADV {neg|} +ս N phenomena|,^fight| +սʤ V win|ʤ,means=^fight| +۲ ADJ aValue|ֵ,content|,accurate|׼ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V fail|ʧ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֮ N attribute|,SocialMode|,bad|,&organization|֯ +ֱ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֪ V ignorant|֪ +֪ ADV aValue|ֵ,ability|,unable|ӹ,perception|֪ +֪ô V ignorant|֪,content=ProsCons| +֪ ADJ aValue|ֵ,reputation|,Notwellknown| +֪ƣ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +֪ V ignorant|֪ +֪ V ignorant|֪ +֪ V ignorant|֪ +֪߳ ADJ shameless|û +ֵ V WorthNot|ֵ +ֵĽ ADJ aValue|ֵ,ability|,unable|ӹ,$admire|Ľ +ֵһ V WorthNot|ֵ,content=refute| +ֵһ V WorthNot|ֵ,content=mention|ἰ +ֵһ ADJ aValue|ֵ,value|ֵ,cheap|,undesired|ݬ +ֹ ADV aValue|ֵ,frequency|Ƶ,often| +ֹ V surpass|ǿ +ֹһ ADV aValue|ֵ,frequency|Ƶ,again| +ֻ ADV {supplement|ݽ} + ADV aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,ability|,unable|ӹ,kill|ɱ + ADJ aValue|ֵ,possibility|,impossible| +ÿɷ V KeepSilence|˵ + V ^cure|ҽ + V die| +֢֮ N disease|,dangerous|Σ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V disloyal| +ҳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ʵ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ע ADJ aValue|ֵ,behavior|ֹ,indifferent|Į +׼ V disagree|ͬ,content=release|ͷ +ű߼ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V BeUnable| + V WorthNot|ֵ + N attribute|,fullness|,incomplete|ȱ,&entity|ʵ + V inferior| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +ҳ ADJ aValue|ֵ,value|ֵ,cheap|,undesired|ݬ +ȡ ADJ aValue|ֵ,property|,WorthNot|ֵ,undesired|ݬ +Ϊ ADJ aValue|ֵ,kind|,ordinary| +Ϊƾ ADJ aValue|ֵ,ability|,unable|ӹ,prove|֤ +Ϊ ADJ aValue|ֵ,kind|,ordinary| + ADJ qValue|ֵ,amount|,few| + V DoNot| + V KeepSilence|˵ + V BeSimilar| +˽ V refuse|,manner=biased|ƫ + V ^disappoint|,target=aspiration|Ը + V disappoint|,neg|,target=aspiration|Ը + ADJ aValue|ֵ,behavior|ֹ,continuous| +ֶ V WellKnown|,manner=fast| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ݬ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V announce| + V arrange| + V arrange|,military| + V disseminate| + N material|,?clothing| + N material|,?clothing| + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N house|,religion|ڽ,ProperName|ר +˹ N place|ط,capital|,ProperName|ר,(Hungary|) + N tool|þ,cubic|,@put| + N InstitutePlace|,*sell|,@buy|,#material|,#clothing| + N food|ʳƷ + V arrange|,patient=army|,purpose=defend|,military| + N text|,*announce| + N facilities|ʩ,@put|,#text|,#announce| + N bird| +˹ N place|ط,capital|,ProperName|ר,(Romania|) + N tool|þ,*decorate|װ,#perform|,#shows|,entertainment| + N part|,%thing|,bone| + N result|,#arrange| +ά N place|ط,capital|,ProperName|ר,(Congo|չ) + N place|ط,capital|,ProperName|ר,(Czechoslovakia|ݿ) +ͧ N weapon|,ship|,military| + N place|ط,capital|,ProperName|ר,(Barbados|ͰͶ˹) + N material|,?clothing| + N language|,#country|,ProperName|ר +¡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Burundi|¡) +¡ N place|ط,country|,ProperName|ר,(Africa|) +¡Ϸ N money|,(Burundi|¡) +³ N place|ط,capital|,ProperName|ר,(Belgium|ʱ) + V exist| + ADJ qValue|ֵ,amount|,many| + N part|,%artifact|˹,skin|Ƥ +ƥ N material|,?clothing|,generic|ͳ + N place|ط,capital|,ProperName|ר,(Burundi|¡) + V arrange| +ʩ V donate| +ʲ N human|,official|,politics|,ProperName|ר,(US|) + V arrange| +ͷ N part|,material|,#clothing| +ֽ N paper|ֽ,*TakePicture| + V arrange|,patient=facilities|ʩ,linear|,#electricity| +Ь N clothing|,#foot| + N community|,ProperName|ר,(China|й) + N clothing| + N human|,ordinary| +ŵ˹˹ N place|ط,capital|,ProperName|ר,(Argentina|͢) +չ V arrange|,patient=display|չʾ + V arrange| + V decorate|װ +ׯ N InstitutePlace|,*sell|,@buy|,#material|,#clothing| + N attribute|,circumstances|,&entity|ʵ + N attribute|,distance|,&walk| + N attribute|,posture|,&AnimalHuman|,#walk| + N attribute|,speed|ٶ,&walk| + N character|,surname|,human|,ProperName|ר + N part|,%fact|,#act|ж + V walk| + N human|,military|,#land|½ + N part|,%army|,#land|½ + ADJ aValue|ֵ,sequence|,continuous| + V undergo|,content=upgrade|,manner=continuous| + V GoForward|ǰ,manner=continuous| +ΪӪ V GoForward|ǰ,manner=continuous| + N attribute|,distance|,&walk| + V GoOut|ȥ + N attribute|,speed|ٶ,&walk| +һ V coordinate|Э + N attribute|,speed|ٶ,&walk| + N method|,*exercise|,*recreation| + N attribute|,distance|,&walk| + N tool|þ,*communicate| + N tool|þ,agricultural|ũ + N walk| +ļ ADJ aValue|ֵ,easiness|,difficult|,#walk| +ά ADJ aValue|ֵ,easiness|,difficult|,#walk| +ǹ N weapon|,*firing| +˺ V imitate|ģ + V GoInto| + N human|,military|,*defend| + V walk| +н N facilities|ʩ,route|·,@walk| + N human|,*walk| + V recite|ж + N method| + N part|,%fact|,#act|ж + N attribute|,distance|,&walk| + N attribute|,posture|,&AnimalHuman|,#walk| + N attribute|,speed|ٶ,&walk| + N account|,@record|¼ + N account|,@record|¼ + N account|,@record|¼ + N fact|,record|¼ + N account|,@record|¼ + CLAS NounUnit|,&LandVehicle|,&machine|,&publications|鿯 + N army|,generic|ͳ + N part|,%entity|ʵ + N part|,%institution|,*manage| + N human|,#occupation|ְλ,official|,*manage| + N institution|,politics| + N attribute|,rank|ȼ,&human|,politics| + N fact|,discuss|,politics| + N human|,#occupation|ְλ,official|,*manage| + N army|,generic|ͳ + ADJ aValue|ֵ,range|,fragment| + N component|,%entity|ʵ + N attribute|,rank|ȼ,&human|,politics| + N part|,%thing|,generic|ͳ + V CausePartMove| + V PartSelfMove| + N attribute|,kind|,&physical| + N community| + N part|,%institution|,*manage| + N part|,%character| + V arrange| + ADJ aValue|ֵ,attachment| + N human|,employee|Ա,$manage| + N part|,%army| +ͷ N attribute|,size|ߴ,&publications|鿯 +ί N part|,%institution|,*manage| +λ N location|λ + N human|,employee|Ա,$manage| + N part|,%army| + ADJ attribute|,quality|,refined|,desired| + N community| + V fear| + V apply|ͿĨ + V remove| + V rub|Ħ + V split|ƿ + V touch| + V wipe| + N phenomena|,sport| + V remove|,Vachieve| +ڶ N time|ʱ,night| + V cross|Խ + V brighten|ʹ +۾ V improve|,patient=PayAttention|ע +۾ V wash|ϴ,patient=eye| +ȥ V remove|,Vachieve| + V damage| + V wounded| + V wipe| + N phenomena|,sport| +ϴ V wipe| + N sound|,#language| + V wash|ϴ,patient=body| + V guess|² +² V guess|² +µ V guess|²,Vachieve| +¶ V guess|² +¼ V doubt| + V guess|²,purpose=recreation| +ն V guess|²,purpose=recreation| + V guess|² + V doubt| + V guess|²,Vachieve| + V guess|²,Vachieve| + V break|۶ + V judge|ö + V punish| + V subtract| +ò V subtract| +ó V remove| +ó V break|۶ +ô V arrange| +ö V judge|ö +ö V judge|ö +ö V judge|ö +÷ N human|,#occupation|ְλ,*produce|,#clothing| +÷ N InstitutePlace|,*produce|,#clothing|,commercial| +ü V break|۶ +ü V subtract| +þ V judge|ö +þ V subtract|,patient=army|,military| + N human|,#occupation|ְλ,#exercise|,*judge|ö,sport| + V judge|ö,sport| + N result|,#judge|ö,sport| +Ա N human|,#occupation|ְλ,#exercise|,*judge|ö,sport| +Ա V subtract|,patient=employee|Ա +ֽ N tool|þ,*break|۶,#paper|ֽ +ֽ N tool|þ,*break|۶,#paper|ֽ + N attribute|,ability|,&human| + N human|,able|,desired| + N material|,generic|ͳ + N material|,wood|ľ + N attribute|,quality|,&human| + N information|Ϣ + N material|,generic|ͳ + N attribute|,quality|,&material| + ADV aValue|ֵ,time|ʱ,past| + N attribute|,ability|,&human| + CONJ condition| + N human|,able|,desired| + ADV {EventResult|¼} + ADV {tense|ʱ̬,past|} +Ÿ N attribute|,ability|,&human| +Ż N attribute|,ability|,&human| +Ż ADJ aValue|ֵ,ability|,able|,desired| +ò N attribute|,ability|,prettiness|,&human| + V BeAble|ܹ + AUX BeAble|ܹ + N attribute|,ability|,&human| +Ů N human|,able|,female|Ů,desired| + N attribute|,ability|,&human| + ADJ aValue|ֵ,ability|,able|,desired| +ʶ N attribute|,ability|,&human| +ѧdz ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +˼ N attribute|,ability|,&human| +˼ N aValue|ֵ,ability|,able|,desired| +ѧ N attribute|,ability|,&human| + N attribute|,ability|,wisdom|ǻ,&human| + N human|,able|,male|,desired| +Ӽ N human|,desired| + N wealth|Ǯ +Ʊ N wealth|Ǯ +Ʋ N wealth|Ǯ +Ʋ N physical|,$own| +ƲȨ N rights|Ȩ,*own|,#wealth|Ǯ +Ʋ˰ N expenditure|,#wealth|Ǯ +ƴ ADJ aValue|ֵ,bearing|̬,strong|ǿ,#wealth|Ǯ +ƶ N human|,#wealth|Ǯ,rich| +Ʒ N human|,#wealth|Ǯ,rich| +Ƹ N physical|,precious| +ƻ N affairs|,#wealth|Ǯ,commercial| +ƻԱ N human|,*calculate|,#wealth|Ǯ,commercial| +ƾ N affairs|,#wealth|Ǯ,commercial| + N tool|þ,$GiveAsGift|,#GetMarried| + N attribute|,strength|,wealth|Ǯ,&organization|֯,&country|,&human| +· N method|,*earn|׬ +ó N affairs|,#wealth|Ǯ,commercial| + N human|,#wealth|Ǯ,greedy|̰ +Ȩ N rights|Ȩ,*own|,#wealth|Ǯ + N humanized|,#wealth|Ǯ +ү N humanized|,#wealth|Ǯ,desired| +˰ N affairs|,#wealth|Ǯ,#expenditure|,industrial|,agricultural|ũ,commercial| + N community|,commercial| +ŷ N community|,commercial| + N physical|,$own| + N affairs|,#wealth|Ǯ,commercial| + N part|,%organization|֯,#wealth|Ǯ + N part|,%organization|֯,#wealth|Ǯ +Դ N attribute|,strength|,&wealth|Ǯ + N affairs|,#wealth|Ǯ + N institution|,#wealth|Ǯ,ProperName|ר,politics| + N human|,#occupation|ְλ,official|,*manage|,#wealth|Ǯ + N wealth|Ǯ,$InDebt| + N time|ʱ,year|,commercial| + N institution|,#wealth|Ǯ,ProperName|ר,politics| + N human|,rich| + V PayAttention|ע + V kick|߲ +ˮ V exercise| + N attribute|,color|ɫ,&physical| + V choose|ѡ + V gather|ɼ + V gather|ɼ,means=dig|ھ,mine| +ɰ V buy|,commercial| +ɱ V compile|༭,means=investigate| +ɷ V gather|ɼ,means=break|۶,agricultural|ũ +ɷ V investigate|,#news| +ɷ V gather|ɼ,possession=music| +ɹ V buy|,commercial| +ɹԱ N human|,#occupation|ְλ,*buy|,employee|Ա,commercial| +ɹվ N InstitutePlace|,*buy|,commercial| +ɹ V take|ȡ,possession=lights| +ɼ V gather|ɼ +ɾ V gather|ɼ,means=dig|ھ,mine| +ɿ V gather|ɼ,means=dig|ھ,mine| +¼ V gather|ɼ + V buy|,commercial| +Ա N human|,#occupation|ְλ,*buy|,employee|Ա,commercial| +ú N affairs|,gather|ɼ,&stone|ʯ,mine| + V receive| + N human|,*receive| +ů N provide|,possession=warm| +ȡ V use| +ɰ N affairs|,gather|ɼ,&stone|ʯ,mine| +ʯ N affairs|,gather|ɼ,&stone|ʯ,mine| +ʯ N facilities|ʩ,*gather|ɼ,&stone|ʯ,mine| +ʯ N human|,#occupation|ְλ,*gather|ɼ,stone|ʯ,industrial| + V gather|ɼ,means=dig|ھ,mine| +д V compile|༭,means=investigate| + V check| + V use| + V gather|ɼ,possession=material|,mine| + V choose|ѡ +ժ V gather|ɼ + V produce| + V gather|ɼ,possession=embryo|,agricultural|ũ +ߢ V gather|ɼ + N attribute|,color|ɫ,&physical| + N attribute|,kind|,&entity|ʵ + N material|,?clothing| + N part|,%human|,liquid|Һ + N tool|þ,*reward|,desired| +ʳ N LandVehicle| +ʳ N LandVehicle|,#GetMarried| +ʳ N material|,?clothing| +ʴ N tool|þ,colored| +ʵ N tool|þ,*illuminate|,colored| +ʵ N tool|þ,*look|,#image|ͼ,#shows|,colored| +ʵ N shows| +ʹ N part|,%tool|þ,*display|չʾ,#colored|,#image|ͼ,#sound| +ʺ N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +ʺ N CloudMist| +ʻ N image|ͼ,#colored|,#publications|鿯 +ʾ N tool|þ,*TakePicture|,colored| + N tool|þ,$GiveAsGift|,#GetMarried| + N tool|þ,colored| + V drill|ϰ,entertainment| + N house| +Ʊ N coupon|Ʊ֤,*gamble|IJ + N mark|־,colored| + N tool|þ,*decorate|װ +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫӻ N tool|þ,*look|,#display|չʾ,#image|ͼ,#shows|,colored| +ɫ N tool|þ,*TakePicture|,colored| +ɫƬ N shows|,colored| + N tool|þ,colored| + N material|,?tool|þ +ϼ N CloudMist| +ӡ N print|ӡˢ,manner=colored| + N material|,?tool|þ + N CloudMist|,colored| + N image|ͼ,$TakePicture|,colored| + N food|ʳƷ,$cook|,generic|ͳ + N vegetable|߲,generic|ͳ +˰ N part|,%vegetable|߲,hair|ë +˳ N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| +˵ N account|,@record|¼,#food|ʳƷ +˵ N tool|þ,*cut|,#food|ʳƷ,#cook| +˵ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +˶ N part|,%vegetable|߲,embryo|,$eat| +˶ N vegetable|߲ +˹ N part|,%vegetable|߲,embryo|,$eat| +˹ N vegetable|߲ +˹ N InstitutePlace|,@eat|,commercial| +˻ N part|,%vegetable|߲,embryo|,$eat| +˻ N vegetable|߲ + N tool|þ,cubic|,@put|,#edible|ʳ + N fact|,provide|,#edible|ʳ + N tool|þ,cubic|,@put|,#edible|ʳ + N food|ʳƷ,$cook| +ţ N livestock|,?food|ʳƷ +ũ N human|,#occupation|ְλ,*planting|ֲ,#vegetable|߲,agricultural|ũ + N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ + N account|,@record|¼,#food|ʳƷ + N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| +г N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| + N food|ʳƷ + N vegetable|߲,generic|ͳ +̯ N InstitutePlace|,@sell|,#vegetable|߲,commercial| + N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +ϵ N attribute|,kind|,&edible|ʳ +Ҷ N part|,%vegetable|߲,hair|ë + N material|,#food|ʳƷ,#cook| +԰ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +԰ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ + N part|,%vegetable|߲,embryo|,agricultural|ũ + N material|,#food|ʳƷ,#cook| + N food|ʳƷ + N character|,surname|,human|,ProperName|ר + V eat| + N edible|ʳ + N fact|,eat| +ͳ N LandVehicle|,@eat| +͹ N InstitutePlace|,@eat|,commercial| +ͻ N fact|,eat|,recreation| +ͽ N tool|þ,*wipe|,#eat| +ͽֽ N tool|þ,*wipe|,#eat| +; N tool|þ,*eat|,generic|ͳ + N room|,@eat| + N InstitutePlace|,@eat|,commercial| + N room|,@eat| +Ա N human|,#occupation|ְλ,*manage|,commercial| + N fact|,eat|,drink|,recreation| + N furniture|Ҿ,@eat| + N FlowerGrass|,?medicine|ҩ + V engage| + V include| +ΰ V salute|¾ +ΰ NUM qValue|ֵ,amount|,half| +β ADJ aValue|ֵ,similarity|ͬ,different| +β ADJ aValue|ֵ,similarity|ͬ,different| +η V LeaveFor|ǰ,purpose=visit|,diplomatic|⽻ +ι V buy|,commercial| +ι V look| +ι N community|,*tour|,*look| +ι N human|,*look| +μ V engage| +μ V include| +μӱ V include|,ResultWhole=compete|,sport| +μ V read| +μ V salute|¾,politics| +ξ V include|,ResultWhole=army|,military| +ο V read| +ο V read| +ο N publications|鿯 +οĿ N document|,#publications|鿯 +ο N information|Ϣ +ο N information|Ϣ +ı V help|,scope=think|˼ +ı N human|,#occupation|ְλ,official|,military| +ı N human|,*help|,#think|˼ +ı N institution|,*help|,#think|˼,military| +ı N human|,#occupation|ְλ,official|,military| + V include|,ResultWhole=compete|,sport| +ѡ N human|,*include|,#compete|,sport| + N human|,*include|,#compete|,sport| + N human|,#occupation|ְλ,official|,politics| + N attribute|,standard|׼,&entity|ʵ + ADJ aValue|ֵ,height|߶,tall| +ѡ V include|,ResultWhole=select|ѡ + V include|,ResultWhole=perform|,entertainment| +Ա N human|,#occupation|ְλ,official|,politics|,(US|) +Ժ N institution|,*manage|,law|ɷ,politics| + V engage| + N human|,*include| +Ԥ V engage| + V read| + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +չ V include|,ResultWhole=display|չʾ +ս V include|,ResultWhole=fight|,military| +ս N organization|֯,*fight|,country|,politics|,#military| + V read| + V include|,ResultWhole=politics|,politics| + V think|˼ + V salute|¾ + V think|˼,religion|ڽ + N InsectWorm|,agricultural|ũ +ϱ N InsectWorm|,agricultural|ũ +ϲ N tool|þ,@foster|,InsectWorm|,agricultural|ũ +ϴ N tool|þ,@foster|,InsectWorm|,agricultural|ũ +϶ N part|,%vegetable|߲,embryo|,$eat| +϶ N vegetable|߲ +϶ N InsectWorm| +ϼ N house|,InsectWorm| +ũ N human|,#occupation|ְλ,*foster|,#InsectWorm|,agricultural|ũ +ɣ N part|,%tree|,embryo| +ʳ V occupy|ռ,politics| +ʳ V occupy|ռ,politics| +˿ N material|,?clothing| + N InsectWorm| + N part|,%InsectWorm|,embryo| + N part|,%InsectWorm|,embryo| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V damage| + ADJ qValue|ֵ,amount|,surplus|ʣ +б ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +бܽ N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +в N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +д V alive|,manner=surplus|ʣ +з N human|,*disable|м,undesired|ݬ +зϾ N human|,*disable|м,military|,undesired|ݬ +иʣ N edible|ʳ,*surplus|ʣ +к N physical|,*surplus|ʣ +к V damage| +к V kill|ɱ,manner=fierce| +л N human|,female|Ů,ugly|,undesired|ݬ +л N artifact|˹,bad|,undesired|ݬ,generic|ͳ +м N disease| +м N human|,*disable|м,undesired|ݬ +о N attribute|,circumstances|,ending|ĩ,&organization|֯ +о N part|,%compete|,ending|ĩ,sport| +п ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V exist|,manner=surplus|ʣ + N time|ʱ,#aged| + N time|ʱ,ending|ĩ,year| +Ʒ N artifact|˹,bad|,undesired|ݬ,generic|ͳ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ȱȫ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N celestial|,*GoDown|ȥ +ɱ V kill|ɱ,manner=fierce| + N time|ʱ,#aged| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N celestial|,*GoDown|ȥ + N part|,%physical|,*surplus|ʣ +ಿ N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +ԫϱ N part|,%building|,incomplete|ȱ,desolate| + N celestial|,*GoDown|ȥ + N part|,%physical|,*surplus|ʣ + N human|,undesired|ݬ + N lights|,#celestial| + V shy| + V shy| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| +Ұ N fact|,#kill|ɱ,#crime|,undesired|ݬ +Ұ ADJ aValue|ֵ,color|ɫ,white|,undesired|ݬ +Ұ V defeated|,manner=miserable| +Ҳ̶ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ҵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ҵ ADJ aValue|ֵ,brightness|,dark| +ҵӪ V endeavour| +һ N phenomena|,#die|,#unfortunate|,undesired|ݬ +Ҿ N phenomena|,unfortunate|,undesired|ݬ +Ҿ N phenomena|,#die|,#unfortunate|,undesired|ݬ +Ҿ N phenomena|,die|,#unfortunate|,undesired|ݬ +Ҿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,courage|,brave|,desired| +Ȼ V sorrowful| +ɱ V kill|ɱ,manner=fierce| + V die|,manner=miserable| +ʹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V sorrowful| +˵ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ц V laugh|Ц,manner=weak| + V suffer| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +״ N attribute|,occasion|,miserable|,&physical| + ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ȼ ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,color|ɫ,BlueGreen|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,white| + N character|,surname|,human|,ProperName|ר +԰ ADJ aValue|ֵ,color|ɫ,white| +԰ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Բ ADJ aValue|ֵ,color|ɫ,BlueGreen|,NotLight|Ũ +Բ ADJ aValue|ֵ,color|ɫ,grey| +Դ ADJ aValue|ֵ,color|ɫ,green| +Ի ADJ aValue|ֵ,color|ɫ,yellow| +Ծ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ã ADJ aValue|ֵ,area|,wide| +ã ADJ aValue|ֵ,brightness|,dark| +ç ADJ aValue|ֵ,area|,wide| +ɽ N land|½,#tree| + N human|,mass|,ordinary| + N FlowerGrass| + N sky| +ӥ N bird| +Ӭ N InsectWorm|,undesired|ݬ +Ӭ N tool|þ,*beat|,InsectWorm| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N bird| + N sky| + N part|,%aircraft|,room| + N part|,%ship|,%aircraft|,room| + N part|,%ship|,%aircraft|,mouth| + N part|,%ship|,%aircraft|,room| +λ N location|λ,#ship| +λ N location|λ,%vehicle|ͨ,@sit|,@LieDown| + N facilities|ʩ,space|ռ,@store| +ִ V store| +ִ ADJ aValue|ֵ,behavior|ֹ,hasty| +ַ N facilities|ʩ,space|ռ,@store| +ֻ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +ֿ N facilities|ʩ,space|ռ,@store| +ֿⱣԱ N human|,#occupation|ְλ,*manage|,facilities|ʩ,#store| + N beast| + N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ +׺ N waters|ˮ,surfacial| +׺ɣ V change| +׺һ N physical|,negligible| +ɣ V change| + N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,space|ռ,@store| + V hide| + N human|,mass|,ProperName|ר,(Tibet|) + N place|ط,ProperName|ר,(Tibet|) + V store| +ذ N human|,mass|,ProperName|ר,(Tibet|) +ر N place|ط,ProperName|ר,(Tibet|) +ع V hide|,patient=crime| + ADJ aValue|ֵ,color|ɫ,blue| + N tool|þ,*show|,#time|ʱ,(Tibet|) +Ի V exist|,experiencer=human|,able| +è V recreation| + N human|,ProperName|ר,(Tibet|) + V hide| +Ʒ N artifact|˹,$store|,literature| + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ + V hide|,patient=self| + N readings|,$store|,literature| + V store|,patient=readings|,literature| +ͷ¶β V exposure|¶ + N language|,(Tibet|) +ҩ N medicine|ҩ,(Tibet|) +Ҵ V hide| +ҽ N human|,*cure|ҽ,medical|ҽ,(Tibet|) + N language|,(Tibet|) + N human|,mass|,(Tibet|) +ͬ N human|,(Tibet|) + V CauseToLive|ʹ + V drill|ϰ + V hold| + V speak|˵ +ٰ V handle| +ٳ N facilities|ʩ,space|ռ,@exercise|,@drill|ϰ,military| +ٳ N facilities|ʩ,space|ռ,@exercise|,@recreation|,education| +ٳ V handle| +ٵ N publications|鿯,#drill|ϰ,military| + V endeavour| + V handle| + V drill|ϰ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʤȯ N BeAble|ܹ,content=win|ʤ +ʤ N BeAble|ܹ,content=win|ʤ + N attribute|,behavior|ֹ,&human| + V upset| + N attribute|,behavior|ֹ,&human| + V display|չʾ +֮ ADJ aValue|ֵ,behavior|ֹ,urgent|,undesired|ݬ + V control| +ݸ N part|,*control|,%implement| +г V control|,commercial| +̨ N part|,*control|,%implement| + N human|,*control|,#price|۸,commercial| + N human|,*control| + V control| + N attribute|,sequence|,&control| + N regulation|,*control| +ϵͳ N software|,*control|,#computer| + N attribute|,performance|,&implement| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + N material|,?food|ʳƷ,#crop|ׯ + N facilities|ʩ,#liquid|Һ,linear|,dented| + N shape|,linear|,dented| +۸ N metal|,material| + N part|,%AnimalHuman|,*bite|ҧ + N character|,surname|,human|,ProperName|ר + N FlowerGrass| + N FlowerGrass|,?material| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V write|д +ݰ N text| +ݰ N human|,unable|ӹ,undesired|ݬ +ݰ N tool|þ,cubic|,@put| +ݱ N attribute|,kind|,&FlowerGrass| +ݱ N text| +ݱֲ N attribute|,kind|,&FlowerGrass| +ݱ ADJ aValue|ֵ,property|,$weave| +ݲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ݲ V measure| +ݳ N land|½,#FlowerGrass| +ݴ V start|ʼ +ݴʱ V time|ʱ,@start|ʼ +ݴ N FlowerGrass| +ݵ N facilities|ʩ,space|ռ,#FlowerGrass| +ݵ N land|½,#FlowerGrass| +ݵ N tool|þ,@LieDown|,@sit| +ݵ N land|½,#FlowerGrass| +ݶ N FlowerGrass| +ݷ N house| +ݸ N text| +ݸ N part|,%FlowerGrass|,base| +ݹ N food|ʳƷ +ݺ N beast| +ݼ N tool|þ,@LieDown|,@sit| +ݿ N human|,*rob|,crime|,undesired|ݬ + N FlowerGrass| + N food|ʳƷ,*feed|ι,#animal| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,green| +ç N FlowerGrass| +ç N land|½,desolate| +çӢ N human|,*rob|,#rich|,*help|,#poor| +ñ N clothing|,#head|ͷ +ľ N plant|ֲ +ľ N material|,*feed|ι,#crop|ׯ +ľԱ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V write|д + N facilities|ʩ,space|ռ,@reside|ס,@put| +Ƥ N material|,?facilities|ʩ,#FlowerGrass| +ƺ N facilities|ʩ,space|ռ,#FlowerGrass| +ǩ V write|д +ʳ ADJ aValue|ֵ,performance|,*eat|,#FlowerGrass| + N attribute|,kind|,&character|,&symbol| + N chemical|ѧ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ͷ N human|,*rob|,#rich|,*help|,#poor| +ͼ N image|ͼ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ϯ N tool|þ,@LieDown|,@sit| +Ь N clothing|,#foot| +ҩ N medicine|ҩ + N fish| +ԭ N land|½,#FlowerGrass| +Լ N agreement|Լ,informal|ʽ + N human|,ordinary|,mass| + N land|½ +ֽ N paper|ֽ,*wipe|,#waste| +ֽ N paper|ֽ,@write|д +ݮ N fruit|ˮ + V IllTreat|,manner=fierce| + N room|,@excrete|й + V engage| + N room|,@excrete|й + N room|,@excrete|й + V engage| + V beat| + N plans|滮 + V plan|ƻ +߶ V incite|ָʹ +߷ V incite|ָʹ,ResultEvent=betray|,military| +߻ V plan|ƻ + ADJ aValue|ֵ,behavior|ֹ,sly| + N plans|滮 +Ե ADV aValue|ֵ,behavior|ֹ,sly| + ADJ aValue|ֵ,behavior|ֹ,sly| + V beat|,patient=livestock| +ʿ N human|,friend| +Ӧ V help|,means=cooperate|,military| +Դ N place|ط,@ExistAppear| + V CausePartMove| + N location|λ,edge| + N tree| + N part|,%plant|ֲ,base| + V attack|,military| + N text|,#news| + N part|,%building|,mouth|,edge| + N location|λ,edge| +ͼ N image|ͼ +ͼ N human|,*draw|,industrial| + N image|ͼ,#human| +Ŀ V look| + V CausePartMove|,PatientPartof=body| +ͼ N image|ͼ + N part|,%army| +ѿ N part|,%plant|ֲ,embryo| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + V PayAttention|ע +ص N part|,%entity|ʵ,important| + CLAS NounUnit|,&publications|鿯 + N account|,@record|¼ + V grant|,royal| +ҳ N account|,image|ͼ + N account|,@record|¼ + V measure| + N tool|þ,*measure|,#distance| + N tool|þ,*check|,#electricity| +ⶨ V decide| + V deduce| + N tool|þ,*check|,#deceive|ƭ + V draw| +Ա N human|,#occupation|ְλ,*draw|,industrial| + V measure|,content=distance| + V measure| + V measure| +Ա N human|,#occupation|ְλ,*measure| + V estimate| + N tool|þ,*measure|,#depth| + V check| + V measure| + V exam|,education| + N tool|þ,*measure|,#CloudMist| + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&mental|,&information|Ϣ + CLAS NounUnit|,&part|,#building| + N part|,%building| + N part|,%entity|ʵ + ADJ qValue|ֵ,amount|,many| +ѹ V check| +Χ V surround|Χ + ADJ qValue|ֵ,amount|,many| + V defend| + V defend|,military| + V appear|,frequency=often| + N attribute|,content|,&image|ͼ,#image|ͼ + N attribute|,content|,&information|Ϣ + N attribute|,content|,&organization|֯ + N attribute|,height|߶,&part|,#building| + N CloudMist| +㼶 N part|,%entity|ʵ,body| + V appear|,frequency=often| +͵ N land|½,tall| + N attribute|,range|,&entity|ʵ + N part|,%entity|ʵ,aspect| + N quantity|,amount|,&part|,#building| + N CloudMist| +״ ADJ aValue|ֵ,form|״ + V SelfMove|,manner=slow| + V cheat|ƭ + V rub|Ħ + V suffer|,content=pollute|ʹ + V suffer|,content=fail|ʧ + V insert| + V include|,ResultWhole=education|,education| + N human|,*include|,education| + N part|,%implement|,viscera| +岥 V disseminate| +ѷ ADJ aValue|ֵ,ability|,unable|ӹ,flee| + ADJ aValue|ֵ,ability|,unable|ӹ,flee| +崲 N machine|,*produce| + V include|,ResultWhole=organization|֯,agricultural|ũ +仧 V include|,ResultWhole=organization|֯,agricultural|ũ + V implement|,$insert|,medical|ҽ + V insert|,patient=implement|,medical|ҽ +ܷ V method|,*insert|,#implement|,medical|ҽ +廨 V arrange|,patient=FlowerGrass| +廨 V mix| +廭 N image|ͼ,#publications|鿯 +廰 V speak|˵ +廰 N text| +廰 N text|,$speak|˵ + N part|,%implement|,viscera| + V insert| +ƴڻ V tease|ȡ + N part|,%tool|þ,#connect| + N tool|þ,*decorate|װ,*cover|ڸ + N fact| + N music|,#shows| + V insert| + N part|,%language| + N human|,*insert| + V engage| + V insert| + V engage| + N part|,%plant|ֲ,limb|֫ +ͷ N part|,%tool|þ,#connect| +ͼ N image|ͼ,#publications|鿯 + N part|,%tool|þ,#connect| + N part|,%tool|þ,#fasten|˩ + V planting|ֲ,agricultural|ũ + V machine|,*planting|ֲ,agricultural|ũ +ҳ N part|,%publications|鿯 + V engage| + V speak|˵ + N part|,%tool|þ,#connect| + V BlockUp| + V pick|ʰ + N symbol| + N tool|þ,*pick|ʰ +泵 N LandVehicle|,*pick|ʰ + V cook| + V CausePartMove|,PatientPartof=arm| + N tool|þ,*pick|ʰ + CLAS NounUnit|,&physical| + N part|,%plant|ֲ,body| + N plant|ֲ + N crop|ׯ + N part|,%plant|ֲ,body| + N drinks|Ʒ + N drinks|Ʒ,generic|ͳ + N material|,?drinks|Ʒ + N InstitutePlace|,@drink|,commercial| +豭 CLAS NounUnit|,&drinks|Ʒ +豭 N tool|þ,cubic|,@put|,#drinks|Ʒ +賡 N InstitutePlace|,@planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ + N tool|þ,*hold|,#drinks|Ʒ + N method|,drink| + N edible|ʳ,generic|ͳ + N tool|þ,@put| +跻 N InstitutePlace|,@drink|,commercial| +跿 N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,#eat| +跿 N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N InstitutePlace|,@drink|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,brown|,NotLight|Ũ + N tool|þ,cubic|,@put|,#drinks|Ʒ +軨 N FlowerGrass| +軰 N fact|,talk|̸ + N fact|,drink|,recreation| +輦 N food|ʳƷ,#drinks|Ʒ +輸 N furniture|Ҿ,space|ռ,@put| + N tool|þ,*drink|,generic|ͳ +¥ N InstitutePlace|,@drink|,commercial| +± N drinks|Ʒ +ũ N human|,#occupation|ְλ,*planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ + N tool|þ,@put|,#drinks|Ʒ +ɫ ADJ aValue|ֵ,color|ɫ,brown| +ɫ ADJ aValue|ֵ,color|ɫ,brown|,NotLight|Ũ +ʳ N food|ʳƷ,generic|ͳ + N InstitutePlace|,@drink|,commercial| + N tree|,#material|,#drinks|Ʒ +ˮ N drinks|Ʒ +ͤ N InstitutePlace|,@drink|,commercial| + N tool|þ,@put| + CLAS NounUnit|,&drinks|Ʒ + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ҷ N material|,?drinks|Ʒ +Ҷ N part|,%tree|,hair|ë,?material|,#drinks|Ʒ +Ҷ N food|ʳƷ,#drinks|Ʒ +Ҷ N tool|þ,cubic|,@put| + N method|,drink| + N material|,#food|ʳƷ,$eat| +෹ N time|ʱ,idle| +ƺ N time|ʱ,*WhileAway| +԰ N InstitutePlace|,@planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ +ש N material|,?drinks|Ʒ + N InstitutePlace|,@drink|,commercial| + N facilities|ʩ,space|ռ,@sit|,#drink| + N character|,surname|,human|,ProperName|ר + V check| + V investigate| + V read| +鰸 V investigate| + V handle|,police| +鳭 V levy|,police| + V check|,Vachieve| + V investigate|,Vachieve| +鴦 V reveal|¶ +鵽 V investigate|,Vachieve| + V check| + V block|ס + V check| + N human|,*check| +ӸǼӸɸʼ N waters|ˮ,surfacial|,ProperName|ר,(US|) +鷿 V check|,medical|ҽ + V investigate| + V prohibit|ֹ,police| + V check|,content=defend|,military| + V check| + V obtain|õ,police| +鼩 V obtain|õ,police| + V prohibit|ֹ +龿 V investigate| +鿱 V investigate| +鿴 V check| +鿼 V check| +鿼 V research|о + V detain|ס,police| + V prove|֤ + V check|,Vachieve| + V check|,content=defend|,military| +ʵ V prove|֤ + V receive| + V interrogate| +ѯ V ask| +Ѱ V LookFor|Ѱ + V check| +ҹ V check|,time=night| + V read| + V check|,content=account|,commercial| + V LookFor|Ѱ +֤ V check| +֤ V prove|֤ + N cause|ԭ,#quarrel|,undesired|ݬ + N fact| + N part|,%artifact|˹,OutOfOrder| + N sound| + N cause|ԭ,#quarrel|,undesired|ݬ + N emotion|,hate|,undesired|ݬ + N fact| + N part|,%artifact|˹,*OutOfOrder| + V apply|ͿĨ + V apply|ͿĨ,Vachieve| + V check| + V perception|֪ +쿴 V look| +Թɫ V look|,content=countenance| + N phenomena|,unfortunate|,undesired|ݬ + N part|,%place|ط +· N facilities|ʩ,route|·,branch|֧ +ͷ N phenomena|,unfortunate|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + N affairs|,#dispatch|Dz + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N attribute|,similarity|ͬ,&entity|ʵ + V differ|ͬ + V dispatch|Dz + V lack|ȱ + N result|,wrong|,undesired|ݬ + N attribute|,similarity|ͬ,&entity|ʵ + ADJ aValue|ֵ,possibility|,almost| + ADV aValue|ֵ,possibility|,almost| + ADV aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,similarity|ͬ,alike| + V aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,standard|׼,average|,desired| + ADJ aValue|ֵ,possibility|,almost| + N phenomena|,unfortunate|,undesired|ݬ + N result|,wrong|,undesired|ݬ + N quantity|,rate|,&correctness| + ADJ aValue|ֵ,possibility|,almost| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,different|,industrial| + N quantity|,rate|,&qValue|ֵ + ADJ quantity|,rate|,&qValue|ֵ + N quantity|,rate|,&qValue|ֵ + N quantity|,rate|,&price|۸,commercial| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + N attribute|,fullness|,incomplete|ȱ,&entity|ʵ + N attribute|,similarity|ͬ,different|,&entity|ʵ +÷ N payment|,*SelfMove|,#affairs|,#dispatch|Dz +Dz V dispatch|Dz +ǿ ADJ aValue|ֵ,standard|׼,average|,desired| +ʹ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ʹ V dispatch|Dz + N affairs|,#dispatch|Dz + N affairs|,#earn|׬,#alive|,#occupation|ְλ +һ ADV aValue|ֵ,possibility|,almost| +һ ADJ aValue|ֵ,possibility|,almost| + N human|,#occupation|ְλ,employee|Ա,past| + N attribute|,similarity|ͬ,different|,&entity|ʵ +ֵ N quantity|,rate|,&qValue|ֵ + V surprise| + V surprise| + V dismount|ж + V remove| + V separate| + V remove| + V reveal|¶ + V remove|,Vachieve| +ǽǽ V recompense| + V remove| + V separate| + V borrow| + V separate| +Ǩ V TakeAway|ᶯ,patient=family| +Ǩ N human|,$request|Ҫ,#TakeAway|ᶯ,#family| +ǽ V MakeTrouble| +ɢ V separate| +̨ V MakeTrouble| +ϴ V wash|ϴ + V dismount|ж,Vachieve| + V dismount|ж,Vachieve| + V remove|,patient=material|,#cure|ҽ,medical|ҽ +ж V dismount|ж + V read| +װ V install|װ + N character|,surname|,human|,ProperName|ר + N material|,wood|ľ,*lighting|ȼ,$burn| + N material|,wood|ľ,*lighting|ȼ,$burn| + N FlowerGrass|,?medicine|ҩ + N medicine|ҩ,(China|й) + N material|,wood|ľ,*lighting|ȼ,$burn| + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N material|,liquid|Һ,#vehicle|ͨ,$burn| +ͻ N machine|,#vehicle|ͨ + N beast| + N beast| + N human|,evil|,undesired|ݬ +dz ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ǵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V HoldWithHand| + V mix| + V HoldWithHand| + V mix| + V mix| + V mix| + V MakeTrouble| + V mix| + V forge|α + N forge|α + V mix| +ʹ N forge|α,means=mix| + N InsectWorm| + V GoOn| + N medicine|ҩ,(China|й) + N part|,%InsectWorm|,wing|,*fly| +ɴ N material|,?clothing| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + V need| + V FondOf|ϲ,target=edible|ʳ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + V slander|̰ + N text|,*slander|̰,undesired|ݬ + V slander|̰ + N text|,*slander|̰,undesired|ݬ + V MakeTrouble| + V coil| + V persuade|Ȱ˵ + V treat|Դ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,ability|,able|,excite|ж + V happen| + V aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + V coil| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V pick|ʰ + N tool|þ,*pick|ʰ,*dig|ھ + N LandVehicle|,*pick|ʰ + V remove| +ƽ V AlterForm|״,level|ƽ +˳ N LandVehicle|,*pick|ʰ +˻ N machine|,*pick|ʰ + N tool|þ,*pick|ʰ,*dig|ھ + V GiveBirth| + N artifact|˹ + V produce|,industrial|,agricultural|ũ + N wealth|Ǯ + V produce|,industrial|,agricultural|ũ + N place|ط,@produce| + N human|,young|,$GiveBirth| + N room|,@GiveBirth|,medical|ҽ + N human|,female|Ů,*GiveBirth|,medical|ҽ + N time|ʱ,#GiveBirth|,already| + N time|ʱ,#GiveBirth|,#female|Ů,@rest|Ϣ,medical|ҽ + N knowledge|֪ʶ,#female|Ů,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,#GiveBirth|,medical|ҽ +Ʋ N room|,#InstitutePlace|,@cure|ҽ,#female|Ů,#GiveBirth|,medical|ҽ +ѧ N knowledge|֪ʶ,#female|Ů,#GiveBirth|,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,#female|Ů,#GiveBirth|,medical|ҽ + N quantity|,amount|,&crop|ׯ,&artifact|˹ + V GiveBirth|,PatientProduct=embryo| +Ʒ N artifact|˹,$produce|,generic|ͳ +ǰ N time|ʱ,#GiveBirth|,immediate| + N place|ط,@produce|,@planting|ֲ +Ȩ N rights|Ȩ,*own|,#wealth|Ǯ + N time|ʱ,#GiveBirth|,#medical|ҽ + V appear| + N result| + N produce|,sell| + N human|,*produce|,industrial| +ҵ N wealth|Ǯ +ҵ N fact|,industrial|,ProperName|ר +ҵ N human|,#occupation|ְλ,*produce|,industrial| +ҵṹ N attribute|,content|,&affairs|,industrial| +ֵ N attribute|,value|ֵ,&produce|,industrial| + V GiveBirth|,agricultural|ũ + V explain|˵ + V explain|˵ + V explain|˵ + V explain|˵ + V explain|˵ + V disseminate| + V shiver| + V shiver| + V shiver| + V shiver| +ΡΡ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N sound|,#language| + N sound|,#music| + V wave|ڶ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ V prosper| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V IllBehave| +һʱ V IllBehave| + N InstitutePlace|,*sell|,@buy|,commercial| + CLAS NounUnit|,&RainSnow|ѩ + CLAS NounUnit|,&disease|,medical|ҽ + CLAS NounUnit|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,entertainment|,@perform| + N part|,%shows|,entertainment| + N place|ط + N space|ռ + N human|,#occupation|ְλ,official|,*manage|,agricultural|ũ + N quantity|,amount|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N InstitutePlace| + N attribute|,occasion|,&event|¼ + N human|,#occupation|ְλ,entertainment| + N attribute|,occasion|,&event|¼ + N attribute|,occasion|,&event|¼ + N attribute|,occasion|,&shows| + N attribute|,reputation|,&human|,&organization|֯ + N human|,*FondOf|ϲ,#associate| + N human|,desired|,important| + N InstitutePlace|,#plant|ֲ,agricultural|ũ + N location|λ,%facilities|ʩ,sport| + N InstitutePlace| + N location|λ,%facilities|ʩ,sport| +Ժ N facilities|ʩ,@separate|,#crop|ׯ,agricultural|ũ +վ N InstitutePlace| + N human|,occupation|ְλ,*own|,#InstitutePlace|,agricultural|ũ + N place|ط,@ComeTogether| + V savor| + V savor| + V savor|,content=new| + V know|֪ + V savor|,Vachieve| +ͷ V know|֪,content=pros| + V try| + V savor|,content=new| + V savor|,content=new| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ aValue|ֵ,kind|,ordinary| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,duration|,TimeLong| +и V prepare|׼,manner=often| + N army|,military| + ADV aValue|ֵ,frequency|Ƶ,often| + N clothing|,ordinary| + ADJ aValue|ֵ,kind|,ordinary| + N regulation|,ordinary| +Ʒ N method|,ordinary|,*cure|ҽ,#disease| + N weapon|,ordinary| +ս N fact|,fight|,ordinary| + N regulation|,ordinary| + N regulation|,*measure|,#weight| + ADJ aValue|ֵ,kind|,ordinary| + N disease| + N human|,*visit|,often| + V visit|,manner=often| + N regulation|,ordinary| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N regulation|,ordinary| + N quantity|,ordinary| + N tree| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N reason| + N human|,ordinary| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +ʶ N knowledge|֪ʶ,ordinary| + N quantity|,ordinary| +̬ N attribute|,circumstances|,BeNormal|̬,&entity|ʵ +ί N human|,official|,politics| +ί N institution|,politics| + N attribute|,temperature|¶,ordinary|,&AnimalHuman| + N attribute|,temperature|¶,ordinary|,&inanimate| + ADJ aValue|ֵ,kind| + N affairs|,ordinary| + N human|,official|,#community| +ίԱ N human|,official|,#institution|,politics| +ίԱ N institution|,politics| + N expression| +Ե ADV {comment|} +˵ ADV {comment|} +˵ú ADV {comment|} + ADJ aValue|ֵ,frequency|Ƶ,often| +ô N expression| +ô N expression| +ö N symbol| + N character| + N place|ط,city|,ProperName|ר,(China|й) +ס V reside|ס,duration=TimeLong| +פ ADJ aValue|ֵ,duration|,TimeLong| +פ N human|,$select|ѡ +פ N human|,occupation|ְλ,*gather|ɼ,*compile|༭,#news| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V add| + V appear| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,quality|,strong|ǿ,desired|,&entity|ʵ + V grow|ɳ + N human|,clan|,adult|,family| + N human|,official|,occupation|ְλ,*manage| + N place|ط,capital|,ProperName|ר,past|,(China|й) +ɽ N land|½,ProperName|ר,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + N human|,clan|,adult|,family| + ADJ human|,clan|,adult|,family| +Գ N beast| + V AppearanceChange|۱,StateFin=fat| + N electricity| + ADJ aValue|ֵ,length|,long| +̶ ADJ aValue|ֵ,length|,dissimilar| + N entity|ʵ,durable| + N facilities|ʩ,ProperName|ר,(China|й) + N beast| + V grow|ɳ + N attribute|,quality|,strong|ǿ,desired|,&thing| + N place|ط,city|,ProperName|ר,(China|й) + V die| +ȥ CONJ {condition|} + ADJ {condition|} + V alive|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V grow|ɳ + V grow|ɳ,StateFin=adult| + N furniture|Ҿ,*sit| + N MusicTool| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,boundary|,&length| + N attribute|,correctness|,&thing| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,quality|,&thing| + N phenomena|,unfortunate|,undesired|ݬ + N part|,%human|,hair|ë,long| + N shape|,square| + N image|ͼ,cubic|,long|,square| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + V do|,manner=brave| +赱 V soothe|ο,target=self|,means=sing| + N celestial|,#weather| + N human|,#occupation|ְλ,employee|Ա + N MusicTool| + N part|,%AnimalHuman|,bone| + N human|,official| + N human|,official|,military| + V sit| + V sit| + N MusicTool| + N time|ʱ + N waters|ˮ,linear| + N fact|,communicate| + N text|,detailed| +˵ ADV {comment|} + N weapon|,aircraft|,military|,*order| + N time|ʱ,@rest|Ϣ,@WhileAway|,TimeLong| + N waters|ˮ,linear|,ProperName|ר,(China|й) + V prosper| +¹ N beast| + ADJ aValue|ֵ,duration|,TimeLong| +֮ N method|,TimeLong| + ADJ aValue|ֵ,distance|,far|Զ + N sky| + N clothing|,#leg| + N part|,%building|,nerve| + N part|,%building|,nerve|,ProperName|ר + ADJ aValue|ֵ,clan| + N human|,aged|,male| + N human|,religion|ڽ,male| + N human|,mass| +ë N material|,?clothing| +ì N weapon|,*stab| + V die| + V MakeSound|,duration=TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +Ů N human|,family|,female|Ů + N clothing|,#body| + N fact|,exercise|,sport| +ƪ N text|,detailed| +ƪ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ƪС˵ N readings| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + N place|ط,city|,ProperName|ר,(Japan|ձ) +ǹ N weapon|,*firing| +ǹ N weapon|,*stab| +ֱ V GoForward|ǰ,manner=free| +ȭ N fact|,beat|,sport| +ɳ N place|ط,city|,ProperName|ר,(China|й) + N clothing|,#body| + N human|,mass| + N human|,*speak|˵,trivial|,undesired|ݬ +฾ N human|,female|Ů,*speak|˵,trivial|,undesired|ݬ + V alive|,TimeLong| + V alive|,TimeLong| + N food|ʳƷ +ʱ ADJ aValue|ֵ,duration|,TimeLong| + V die| + N attribute|,circumstances|,&grow|ɳ,#plant|ֲ + N attribute|,age|,TimeLong| +˿ N material|,?clothing|,?tool|þ + N character|,surname|,human|,ProperName|ר + N human|,family|,male| +̸ V talk|̸,manner=TimeLong| +̾ V sigh|̾ +ͳƤѥ N clothing|,#foot| +ͳ N clothing|,#foot| +; ADJ aValue|ֵ,distance|,far|Զ +; V SelfMove| +;绰 N fact|,communicate| +; N LandVehicle| + N thing|,redundant| + ADV aValue|ֵ,necessity|Ҫ,redundant| +߲Ʒ N artifact|˹,redundant| + N attribute|,appearance|,&AnimalHuman| +Ч N attribute|,effect|Ч,TimeLong|,&medicine|ҩ + N human|,family|,male| +뾨 N beast|,*swim| +ҹ N time|ʱ,night|,TimeLong| + V BeAble|ܹ +̾ V sigh|̾ +Բ ADJ aValue|ֵ,form|״,round|Բ +Զ ADJ aValue|ֵ,duration|,TimeLong| + N human|,clan|,adult|,HighRank|ߵ + N human|,clan|,adult|,family| + V SelfMoveInManner|ʽ,military| + V grow|ɳ +ξð ADJ aValue|ֵ,circumstances|,safe|,desired| +ס V reside|ס,duration=TimeLong| + N human|,family| + ADJ aValue|ֵ,speed|ٶ,fast| + V fulfil|ʵ + V recompense| + V return|,commercial| + N attribute|,ability|,return|,#owe|Ƿ,&human|,&organization|֯ + V return|,commercial| + V return|,possession=strength| + V return|,commercial| +ծ V return|,commercial| + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| + N disease| +ʹ N disease| + N disease| +׵ N disease| +θ N part|,%AnimalHuman|,viscera| +ϵĤ N disease| + N disease| + N part|,%physical|,skin|Ƥ,#food|ʳƷ + N part|,%AnimalHuman|,viscera| + N InstitutePlace|,@produce|,factory|,industrial| + N part|,%institution|,factory|,*manage| + N human|,#occupation|ְλ,industrial|,official|,#InstitutePlace|,factory| + N house|,industrial|,@produce|,factory|,#InstitutePlace| + N regulation|,*manage|,factory| + N regulation|,*manage|,factory| + N InstitutePlace|,factory|,@produce| + N InstitutePlace|,factory|,mine|,@produce| + N time|ʱ,@rest|Ϣ,#factory|,#industrial| + N place|ط,factory| + N InstitutePlace|,factory|,@produce| + N human|,occupation|ְλ,*own|,#factory| +ַ N location|λ,%factory|,#industrial| + N human|,*own|,#factory| + N InstitutePlace|,@store|,commercial| + N InstitutePlace|,factory|,@produce| + ADJ aValue|ֵ,area|,wide| + V reveal|¶ + N LandVehicle| + V exposure|¶ + V open| + ADV aValue|ֵ,behavior|ֹ,free|,desired| + ADJ aValue|ֵ,brightness|,bright| + V understand| + N LandVehicle| +ſڶ V exposure|¶ +ſڶ V unfixed|δ + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,content|,fluent|,desired| + V satisfied| +ʹ V drink|,manner=satisfied| + V joyful|ϲ +˳ ADJ aValue|ֵ,content|,fluent|,desired| + V speak|˵,manner=free| +̸ V speak|˵,manner=joyful|ϲ +ͨ ADJ aValue|ֵ,circumstances|,free|,desired| +ͨ ADJ aValue|ֵ,circumstances|,free|,desired| + V think|˼,manner=free| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N publications|鿯,able|,$sell| + V SelfMove|,manner=free| + V SelfMove|,manner=free| + V speak|˵,manner=joyful|ϲ +Գ V express|ʾ,content=emotion| + V drink|,manner=satisfied| + V swim|,manner=joyful|ϲ + V tour|,manner=joyful|ϲ + V cry| + V sing| + V RegardAs|,ResultIsa=evil| + N text|,#sing| + V sing| + N text|,#sing| +Ϸ V act|ж,manner=single| +Ϸ V act|ж,manner=single| + N music| +̨Ϸ V oppose| + V speak|˵,content=oppose| +ߵ V boast| + V sing| + N attribute|,ability|,#sing|,&human| + N attribute|,ability|,#sing|,&human| + V sing| + V RegardAs|,ResultIsa=kindhearted| + N tool|þ,*listen|,#music| + V count| + N part|,%tool|þ,#disseminate|,#music| +Ƭ N tool|þ,*record|¼,*disseminate|,#music| +Ʊ V announce|,content=select|ѡ +Ʊ N human|,*announce|,#select|ѡ +ǻ N sing|,entertainment| +ʫ N human|,*sing|,religion|ڽ +˫ V collude|,manner=EachOther|໥ +˫ V perform|,content=shows| +ͷ N part|,%tool|þ,#disseminate|,#music| +ͷ N tool|þ,*disseminate| +Ϸ V perform|,content=shows| + N part|,%tool|þ,#disseminate|,#music| + V RegardAs|,ResultIsa=human|,important|,entertainment| + V salute|¾ + V endorse|ӵ + V propose| + V start|ʼ + V endorse|ӵ,content=honest| +ʼ V start|ʼ +ʼ V human|,*start|ʼ + V propose| + V propose| + N text|,$propose| + N readings|,*propose| + N text|,$propose| + V human|,*propose| + ADJ aValue|ֵ,kind|,special| + V cross|Խ + V surpass|ǿ + V surplus|ʣ + ADJ aValue|ֵ,amount|,over| + V surpass|ǿ,scope=produce|,industrial| + ADJ aValue|ֵ,kind|,special| + V cross|Խ,LocationThru=LandVehicle| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V cross|Խ + V surpass|ǿ + N attribute|,ability|,able|,transmit|,#electricity| + N physical|,*transmit|,#electricity|,generic|ͳ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ϳ N sky| + N attribute|,temperature|¶,cold|,&physical| + V rescue|,religion|ڽ + V rescue|,religion|ڽ +̲ N electricity| +ȹ N clothing|,#leg|,#female|Ů + ADJ aValue|ֵ,amount|,over| + N fund|ʽ,$earn|׬,commercial| + V fulfil|ʵ + ADJ aValue|ֵ,kind|,special|,desired| + V surpass|ǿ +ʥ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V surpass|ǿ,scope=load|װ +Ƶ N attribute|,frequency|Ƶ,fast|,&electricity| +ѹ N attribute|,strength|,strong|ǿ,&electricity| +ѹ N attribute|,volume|ݻ,strong|ǿ,&electricity| + N space|ռ,empty|,#gas| + V surpass|ǿ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N place|ط,country|,strong|ǿ +· N facilities|ʩ,route|·,@AlterLocation|ռλ,fast| +г N InstitutePlace|,*sell|,@buy|,commercial| + V pass|ȹ,patient=time|ʱ,duration=over| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,amount|,over| + V aValue|ֵ,age|,over| +ڷ V engage|,content=military|,duration=over|,military| +ǰ V surpass|ǿ +Ⱥ ADJ aValue|ֵ,kind|,special| +Ⱥ ADJ aValue|ֵ,kind|,special| +Ȼ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ȼ V disconnect|,partner=HaveContest| + ADJ aValue|ֵ,kind|,special| + N human|,able|,desired| + ADJ aValue|ֵ,speed|ٶ,special| + N #sound| + N sound| + V WellTreat|ƴ + V repeat|ظ,content=ComeToWorld|,religion|ڽ +ʱ N due| + N InstitutePlace|,*sell|,@buy|,commercial| + ADJ aValue|ֵ,speed|ٶ,fast| + V surpass|ǿ,scope=speed|ٶ + N attribute|,ability|,&inanimate| + V BeIndependent| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| +΢ṹ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,speed|ٶ,special| +Ա V surpass|ǿ,scope=load|װ +Խ V cross|Խ +Խ V surpass|ǿ + ADJ aValue|ֵ,amount|,#load|װ,over| +֧ V surpass|ǿ,scope=spend|,commercial| + ADJ aValue|ֵ,weight|,over| +Ȼ ADJ aValue|ֵ,kind|,special| + V SelfMoveInManner|ʽ + V copy|д + V levy| + V pick|ʰ + V steal|͵,#copy|д + V LookFor|Ѱ,location=human| + V tell| + N readings| + V choose|ѡ,content=route|· + N facilities|ʩ,route|· + V obtain|õ,police| + V levy|,possession=artifact|˹ + N document|,$copy|д + V choose|ѡ,content=route|· +· V choose|ѡ,content=route|· +¼ V copy|д + V rob| +û V levy| + V LookFor|Ѱ,location=human| + V receive| + V CausePartMove|,PatientPartof=hand| + N food|ʳƷ + V submit| +Ϯ V attack|,military| +Ϯ V imitate|ģ +Ϯ V steal|͵,#copy|д +С· V choose|ѡ,content=route|· +д V copy|д +дԱ N human|,occupation|ְλ,*copy|д + N money| +Ʊ N money| + N institution|,royal|,past| + N place|ط,country|,ProperName|ר,(North Korea|) + N time|ʱ,morning| + N time|ʱ,royal|,past| + PREP {direction} + V salute|¾ + V salute|¾,religion|ڽ + ADJ aValue|ֵ,direction|,north| +Ϧ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ıϦ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N human|,occupation|ְλ,official|,royal|,past| + N time|ʱ,royal|,past| + ADJ aValue|ֵ,direction|,east| +Ϧ ADJ aValue|ֵ,distance|,near| + N clothing|,#official|,#royal|,past| + V submit|,possession=wealth|Ǯ,royal| + V meet|,royal| +Ϧ V alter|ı,politics| +¶ N RainSnow|ѩ +ĺ ADJ aValue|ֵ,duration|,TimeLong| +ĺ N time|ʱ,day| + ADJ attribute|,strength|,strong|ǿ,&human| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ĺ V alter|ı,manner=treacherous| + N celestial|,morning| +ĺ V alter|ı,manner=treacherous| +ʥ V SelfMoveInManner|ʽ,LocationFin=religion|ڽ,purpose=salute|¾ +˼ĺ V ThinkOf|˼ + ADJ aValue|ֵ,direction|,#sky| +͢ N institution|,royal|,past| + N language|,#country|,ProperName|ר,(Korea|) +Ϧ ADJ aValue|ֵ,duration|,TimeLong| +Ϧ N time|ʱ,TimeShort| +Ϧ N time|ʱ,day| +ϼ N CloudMist|,morning|,colored| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Korea|) + N place|ط,country|,ProperName|ר,(Asia|) +񹲺͹ N place|ط,country|,ProperName|ר,(Asia|) +ս N fact|,*fight|,ProperName|ר,military| +ͨѶ N institution|,news|,ProperName|ר,(North Korean|) + N human|,mass|,ProperName|ר,(Korea|) + V facing| + N celestial|,morning| +Ұ N institution|,royal| + N institution|,news|,ProperName|ר,(North Korean|) + V facing| + N lights|,#celestial|,morning| + V SelfMoveInManner|ʽ,LocationFin=religion|ڽ,purpose=salute|¾ + V LaughAt|Ц + V LaughAt|Ц +Ū V LaughAt|Ц +Ū ADJ aValue|ֵ,property|,LaughAt|Ц +Ц V LaughAt|Ц +Ц N human|,*LaughAt|Ц + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N fact| + N water|ˮ + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + V StateChange|̬ + N shows| + N attribute|,SocialMode|,&human|,&organization|֯ + N water|ˮ + N attribute|,dampness|ʪ,&physical|,&space|ռ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N place|ط,ProperName|ר,(China|й) +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ˮ N water|ˮ +λ N attribute|,height|߶,#water|ˮ +ϫ N water|ˮ + N water|ˮ +Ѵ N water|ˮ +ӿ V appear| + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N house|,#animal|,#alive| + N place|ط,crime| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V reside|ס,location=tree| + N beast| +Ѩ N house|,#animal|,#alive| +Ѩ N place|ط,crime| + V cry| + V quarrel| + V quarrel| + V quarrel| + V cry| + V quarrel| + V cook| + V discharge| + V exchange|,manner=venture|ð,commercial| + V cook| + N food|ʳƷ + V exchange|,possession=bill|Ʊ,manner=venture|ð,commercial| +Ʊ V exchange|,possession=bill|Ʊ,manner=venture|ð,commercial| + V exchange|,possession=money|,manner=venture|ð,commercial| + N food|ʳƷ,commercial|,generic|ͳ +䷹ V repeat|ظ + V exchange|,manner=venture|ð,commercial| + V sell|,manner=venture|ð + N food|ʳƷ,#crop|ׯ + N food|ʳƷ + N tool|þ,cubic|,@cook| + V disseminate| + V discharge| + N LandVehicle| + N character|,surname|,human|,ProperName|ר + V cut| + V irrigate| + N machine| + N part|,%tool|þ,#recreation| + N part|,%LandVehicle|,*drive|Ԧ,hand| +ʽ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| + N human|,occupation|ְλ,*drive|Ԧ,#LandVehicle| + N place|ط,*put|,#LandVehicle| + N human|,occupation|ְλ,official|,#LandVehicle| + N vehicle|ͨ + N part|,%LandVehicle|,eye| + N machine|,*cut|,*produce|,industrial| + N attribute|,number|,&LandVehicle| + N part|,%LandVehicle|,leg| + N part|,%machine|,*cut|,heart|,industrial| + N facilities|ʩ,route|· + N trace|,#route|· + N part|,%LandVehicle|,*illuminate| + N LandVehicle|,mass| + N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ + N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| + N fact|,*cut|,*produce|,industrial| + N human|,#occupation|ְλ,*cut|,*produce|,industrial| + N attribute|,number|,#prove|֤,&mark|־,#LandVehicle| + N phenomena|,unfortunate|,#LandVehicle|,undesired|ݬ + N shows|,#drive|Ԧ,#LandVehicle| + N part|,%LandVehicle|,bone| + N part|,%InstitutePlace|,factory|,industrial| + N facilities|ʩ,space|ռ,@store|,#LandVehicle| + N LandVehicle|,mass| + V punish|,police| + N attribute|,age|,&LandVehicle| + N phenomena|,#LandVehicle|,#VehicleGo|ʻ + N quantity|,amount|,&phenomena|,#LandVehicle|,#VehicleGo|ʻ + N part|,%LandVehicle|,leg| + N LandVehicle| + N payment|,*SelfMove|,#affairs|,#dispatch|Dz + N part|,%LandVehicle|,mouth| + N mark|־,*prove|֤,#LandVehicle| + N part|,%LandVehicle|,head|ͷ +Ƥ N part|,%LandVehicle|,@load|װ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +Ǯ N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ +ǰ N medicine|ҩ + N part|,%LandVehicle|,body| + N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +ˮ ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,speed|ٶ,&SelfMove|,#LandVehicle| +̥ N part|,%LandVehicle|,leg| + N part|,%LandVehicle|,body| + N part|,%LandVehicle|,leg| +ͷ N LandVehicle|,#(train|) +ͷ N part|,%LandVehicle|,head|ͷ +λ N facilities|ʩ,space|ռ,*put|,#LandVehicle| + N part|,%LandVehicle|,@load|װ + N part|,%LandVehicle|,@load|װ + N attribute|,kind|,&LandVehicle| +е N facilities|ʩ,route|· +բ N part|,%vehicle|ͨ,*fix|ס +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| + N document|,#LandVehicle| + N trace|,#route|· + N part|,%LandVehicle| + N human|,*own|,#LandVehicle| + N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ + N LandVehicle| + N text|,$repeat|ظ,undesired|ݬ + N part|,%LandVehicle|,leg| + V buy|,commercial| + V pull| + V split|ƿ + V talk|̸ + V deceive|ƭ + V TalkNonsense|Ϲ˵ + V MakeTrouble| + V deceive|ƭ +Ƥ V quarrel| +ƽ V MakeEqual|ʹ +Ⱦ V run| + V GoBackward| + V MoveItBack| + V dismiss| + V remove| + V MoveItBack|,patient=army|,military| + V MoveItBack| + V remove| + V MoveItBack|,patient=army|,military| + V discharge| + V GoBackward| + V MoveItBack| + V remove| + V MoveItBack|,patient=army|,military| + V MoveItBack| + V cease|ͣ,content=accuse|ظ,#police| + V GoBackward| + V MoveItBack| +ϯ V MoveItBack|,patient=tool|þ + V remove| + V remove| +ְ V dismiss|,ResultIsa=occupation|ְλ + V GoBackward| + V MoveItBack| + V pull| + V obstruct|ֹ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,range|,all|ȫ +ͷβ ADJ aValue|ֵ,range|,all|ȫ +ҹ ADV aValue|ֵ,duration|,TimeLong|,night| + ADJ aValue|ֵ,clearness|,clear| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,official|,royal|,past| + V surrender| + N human|,royal|,past| + N human|,official|,royal|,past| + N human|,#occupation|ְλ,official|,royal|,past| + N celestial|,generic|ͳ + N knowledge|֪ʶ + N time|ʱ +ʱ N time|ʱ,hour|ʱ,morning| + N place|ط,#human|,@alive| + N stone|ʯ,waste| + N stone|ʯ,waste| + N wind|,#stone|ʯ,#WeatherBad| + V undergo|,content=cover|ڸ,instrument=stone|ʯ + N stone|ʯ,waste| + N place|ط,#human|,@alive| + N place|ط,#human|,@alive| + N place|ط,#human|,@alive| + N stone|ʯ,waste| + N stone|ʯ,waste| + N sound|,$cry| + N stone|ʯ,waste| +Ե N attribute|,relatedness|,#place|ط,#human|,#alive|,&human| + N place|ط,#human|,@alive| + N time|ʱ,morning| + N publications|鿯,#news|,#morning| + N fact|,exercise|,#morning| + N wind|,morning| + N lights|,#morning| + N fact|,exercise|,#morning| +Ϧ ADJ aValue|ֵ,duration|,TimeLong| +Ϧ N time|ʱ,day| + N celestial| +ĺ N fact|,persuade|Ȱ˵ + N lights|,#morning| + N emotion|,sincere|,desired| + V MoveItDown| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,weight|,heavy| + V sink|³ + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,weight|,heavy| + V CauseToDo|ʹ,patient=ship|,ResultEvent=sink|³ + N ship|,*sink|³ + ADJ aValue|ֵ,weight|,heavy| + V separate| + N attribute|,effect|Ч,&human|,&organization|֯ + V float|Ư + V stay|ͣ + N inanimate|,waste| + N stone|ʯ,?material| + ADJ aValue|ֵ,occasion|,quiet|,desired| + V sink|³ + V indulge| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + V undergo| +û V sink|³ + V FeelingByBad| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V indulge| + V indulge| +Ĭ V KeepSilence|˵ +Ĭ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +Ĭ V KeepSilence|˵ +Ĭ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + V indulge| + V indulge| +˯ V sleep|˯ +˼ V aValue|ֵ,property|,think|˼ +˼ V think|˼ +˼ ADJ think|˼ +˼Ĭ V think|˼ +˼ V think|˼ +ʹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V sink|³ + N tool|þ,$burn| + V hesitate|ԥ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V upset| +ԩ N phenomena|,#unfortunate|,undesired|ݬ + N inanimate|,waste| + V FeelingByBad| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ +ס V calm| + V calm| + V indulge| + V indulge| + N disease| + N attribute|,habit|ϰ,undesired|ݬ,&human|,&organization|֯ + N disease| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V display|չʾ + V explain|˵ + V put| +³ V obey|ѭ +´ V explain|˵ +´ V explain|˵ +´ N text|,used|,boring|,undesired|ݬ +´ĵ N text|,used|,boring|,undesired|ݬ +´ N material|,#food|ʳƷ,sour| +· V display|չʾ +¸ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +¹ N regulation|,used|,undesired|ݬ +¹ªϰ N regulation|,used|,foolish|,undesired|ݬ +» N artifact|˹,used|,commercial| +¼ N physical|,past| +¾ N drinks|Ʒ,$addict|Ⱥ +¾ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + V display|չʾ +й N InstitutePlace|,@display|չʾ +й N tool|þ,cubic|,@display|չʾ +Ʒ N inanimate|,$display|չʾ + N room|,@display|չʾ + ADV aValue|ֵ,duration|,TimeLong| +Ƥ N medicine|ҩ,$eat| +ǻĵ N text|,used|,boring|,undesired|ݬ + V display|չʾ + N tool|þ,*decorate|װ,generic|ͳ + V explain|˵ + ADJ explain|˵ + V explain|˵ + N human|,*explain|˵ +˵ V explain|˵ + V explain|˵ + V own| + PREP {means} +ñ ADV aValue|ֵ,time|ʱ,convenient| +û V damage| +û ADV aValue|ֵ,time|ʱ,convenient| +Ǯ V own|,possession=wealth|Ǯ,#many| + ADV aValue|ֵ,time|ʱ,#hot| +ȴ V VieFor| + ADV aValue|ֵ,time|ʱ,convenient| + V satisfied| +Ը V satisfied| + ADV aValue|ֵ,earliness|,early| + PREP {means} + V ServeAsFoil| + V inlay|Ƕ + N part|,%clothing| +IJ N part|,%clothing| +ĵ N fittings|,%machine|,*inlay|Ƕ +Ŀ N clothing|,#leg| + N part|,%clothing| +ȹ N clothing|,#leg|,female|Ů + N clothing|,#body| + N clothing|,#body|,female|Ů + V ServeAsFoil| + N clothing|,#body| +ӳ V ServeAsFoil| + V PropUp|֧ + V ill|̬,cause=BeFull|Ա + V keep| + V open| + V push| +Ųס V BeUnable|,content=keep| +ų V PropUp|֧ +ŵû V ill|̬,cause=BeFull|Ա +ŵס V BeAble|ܹ,content=keep| +Ÿ N tool|þ,sport| +Ÿ N fact|,exercise|,sport| +Ÿ N fact|,exercise|,sport| +Ÿ N tool|þ,*push|,#ship| + V endorse|ӵ +̨ V endorse|ӵ + V endorse|ӵ +ס V BeAble|ܹ,content=keep| + N attribute|,name|,&entity|ʵ + V fit|ʺ + V measure| + V naming| + V praise|佱 + V speak|˵ +ư V control| +Ʊ V speak|˵,content=convenient| +Ʋ V speak|˵,content=ill|̬ +Ʋְ V cease|ͣ,content=undertake|,means=speak|˵,#ill|̬ +Ƴ V speak|˵,content=surrender| +Ƶ V praise|佱 +Ƶ V worth|ֵ +Ƶ V speak|˵,content=undertake|,#official|,royal| +ƹµ V control| +ƺ N attribute|,name|,&human| +ƺ N attribute|,name|,&human| +ƺ V naming| +ƽ V calculate|,manner=miser| +ƿ V ShowJoy|ʾϲ + V measure|,scope=weight| + V praise|佱 + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V explain|˵ + V praise|佱 +̾ V praise|佱 + V speak|˵,content=undertake|,#official| +ư V control| +Ϊ V naming| +ν N attribute|,name|,&human| + V ShowLove|ʾ +л V thank|л + V satisfied| + V satisfied| +Ը V satisfied| +ֵ ADJ aValue|ֵ,relatedness|,intimate|,desired| + V control| + V praise|佱 + V praise|佱 +Ը V satisfied| + V praise|佱 +֮ V naming| +ְ ADJ aValue|ֵ,ability|,able|,engage|,#occupation|ְλ,desired| + V measure|,scope=weight| + V naming| + N facilities|ʩ,#city| + N part|,%place|ط,city|,heart| + N place|ط,city| +ǰ N place|ط,#human|,country|,politics| +DZ N facilities|ʩ,#city| +dz N place|ط,city| +Ƕ N facilities|ʩ,military| +Ƕ N part|,%facilities|ʩ,military| +Ƕ N part|,%facilities|ʩ,military| +Ƿ V defend|,patient=city|,military| +Ǹ N attribute|,wisdom|ǻ,&human| +Ǹ N part|,%facilities|ʩ,base| +ǹ N facilities|ʩ,space|ռ,#city|,mouth| +ǹ N facilities|ʩ,#city| +Ǻ N facilities|ʩ,space|ռ,#city| +ǽ V build|,PatientProduct=city| +ǽ N part|,%place|ط,surrounding|Χ,#city| + N location|λ,%city|,internal| +¥ N facilities|ʩ,space|ռ,#city|,@reside|ס + N part|,%facilities|ʩ,#city|,mouth| +ǽ N facilities|ʩ,#city| + N place|ط,#city| + N place|ط,city| +й N place|ط,#human|,country|,politics| +н V build|,PatientProduct=city| +о N human|,*reside|ס,*function|,#city| +˿ N human|,*reside|ס,*function|,#city| +ͷ N facilities|ʩ,#city| + N location|λ,%city|,external| + N place|ط,city| + N place|ط,city|,village| + N place|ط,city| +ԫ N facilities|ʩ,#city| + N place|ط,city| + N humanized|,ProperName|ר + N facilities|ʩ,space|ռ,religion|ڽ +ܦ N facilities|ʩ,military| + N fruit|ˮ +Ȼ ADJ aValue|ֵ,color|ɫ,yellow| +ɫ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + ADJ aValue|ֵ,property|,$produce|,$forming|γ + V become|Ϊ + N character|,surname|,human|,ProperName|ר + EXPR expression|,*ExpressAgreement|ʾͬ + V fulfil|ʵ + ADJ qValue|ֵ,amount|,many| + N quantity|,rate|,&entity|ʵ + N result|,desired|,#succeed|ɹ + V succeed|ɹ +ɰǧ NUM qValue|ֵ,amount|,many| +ɰ N attribute|,effect|Ч,&event|¼ +ɱ ADJ qValue|ֵ,amount|,double| +ɱ N expenditure|,commercial| +ɱЧӦ ADJ attribute|,effect|Ч,#expenditure|,&create|,commercial| +ɲ V BeUnable|,content=succeed|ɹ +ɲ V BeUnable|,content=succeed|ɹ +ɲʲô V BeUnable|,content=succeed|ɹ +ɲ V become|Ϊ,isa=able|,#human| +ɲ V become|Ϊ,isa=superior|,#tree| +ɲ V become|Ϊ,isa=able|,#human| +ɳ V grow|ɳ +ɳ N time|ʱ,@grow|ɳ +ɳ N InsectWorm| +ɳ V become|Ϊ,isa=enemy| +ɶ N place|ط,city|,ProperName|ר,(China|й) +ɶ ADJ qValue|ֵ,amount|,many| +ɶ V become|Ϊ,double| +ɷ N attribute|,origin|,&human| +ɷ N component|,%entity|ʵ +ɷ N attribute|,origin|,&human| +ɷ N component|,%entity|ʵ +ɷ V exist|,manner=ordinary| +ɸ V forming|γ,StateFin=form|״ +ɸ V grow|ɳ,StateFin=big| +ɸ V grow|ɳ,StateFin=form|״ +ɹ V succeed|ɹ +ɹ N regulation|,ordinary| +ɹ N result|,desired|,#succeed|ɹ +ɺ; V BeSame|ͬ,sport| +ɻ V GetMarried| +ɻ V alive| +ɼ N result|,desired|,#succeed|ɹ +ɼ N readings|,#result|,education| +ɼ V GetMarried| +ɼҵ V GetMarried|,start|ʼ,#affairs| +ɼ N thought|ͷ,biased|ƫ,undesired|ݬ +ɽ V succeed|ɹ,scope=commercial|,commercial| +ɽ N quantity|,amount|,&affairs|,commercial| +ɾ V fulfil|ʵ +ɾ N result|,desired|,#succeed|ɹ +ɾ͸ N emotion|,#succeed|ɹ +ɿ N fact|,forming|γ,#mine| + N example|ʵ,ordinary| + V be|,descriptive=correct|ȷ + V establish| + V grow|ɳ,StateFin=tree|,mass| + V forming|γ,PatientProduct=complete| + V sleep|˯ + V WellKnown| +ɼ V WellKnown| + N text|,*order|,$announce| + ADV aValue|ֵ,duration|,TimeLong| + V grow|ɳ,StateFin=adult| + ADV aValue|ֵ,duration|,TimeLong| + N human|,adult| + ADJ qValue|ֵ,amount|,many| +Ʒ N artifact|˹,$produce|,generic|ͳ +ƽ V BeSame|ͬ,sport| +ƽ V BeSame|ͬ,sport| + ADJ aValue|ֵ,ability|,able|,desired| + V succeed|ɹ +ǧ NUM qValue|ֵ,amount|,many| +ǧ NUM qValue|ֵ,amount|,many| +ǧ NUM qValue|ֵ,amount|,many| + V GetMarried| +ȫ V help|,scope=fulfil|ʵ +Ⱥ ADJ qValue|ֵ,amount|,many| +Ⱥ ADJ qValue|ֵ,amount|,many| + V die| + V grow|ɳ,StateFin=adult| + N human|,adult| +֮ V help|,scope=fulfil|ʵ + ADJ aValue|ֵ,duration|,TimeLong| +ճҹ ADJ aValue|ֵ,duration|,TimeLong| +ɫ N attribute|,quality|,&inanimate| + V succeed|ɹ +²㣬 ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,physique|,ripe|,desired| + N time|ʱ,@grow|ɳ + N quantity|,rate|,&entity|ʵ + N symbol|,#quantity| +˫ V become|Ϊ,isa=double| +˫ ADJ qValue|ֵ,amount|,double| +˫ɶ ADJ aValue|ֵ,amount|,double| +˵ N knowledge|֪ʶ + V BeAble|ܹ,content=recite|ж + V become|Ϊ,isa=habit|ϰ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,duration|,TimeLong| +Ϊ V become|Ϊ + ADJ aValue|ֵ,property|,$write|д + N readings| +ķ N law|ɷ + V forming|γ,PatientProduct=image|ͼ +Ч N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V forming|γ,PatientProduct=form|״ + V forming|γ,PatientProduct=form|״ + V start|ʼ,content=leave|뿪 + V become|Ϊ,isa=behavior|ֹ +ҩ N medicine|ҩ +ҹ ADJ aValue|ֵ,duration|,TimeLong| + N clothing| +½ N human|,occupation|ְλ,*produce|,#clothing| + N InstitutePlace|,*produce|,#clothing|,commercial| + N cause|ԭ + N part|,%language| +Ա N human|,#organization|֯ +Ա N place|ط,country|,#organization|֯ + V ResultIn|,result=unfortunate| + V BeAble|ܹ + ADJ qValue|ֵ,amount|,many| + V ResultIn|,result=aspiration|Ը,#addict|Ⱥ,#FondOf|ϲ,undesired|ݬ + V ResultIn|,result=aspiration|Ը,#addict|Ⱥ,#FondOf|ϲ,undesired|ݬ + V be| + V submit| +ʱ V submit| +ʵ V submit| + V request|Ҫ + N document| + V appear| + V submit| + V be|,descriptive=positive|,#disease| + V be|,descriptive=negative|,#disease| + V submit|,purpose=amend| + V submit|,purpose=amend| + V DoSum| + V TakeVehicle| + PREP {means} +˱ ADJ aValue|ֵ,time|ʱ,convenient| +˳ V TakeVehicle|,patient=LandVehicle| +˳ N army|,*TakeVehicle|,#LandVehicle| +˳⳵ V TakeVehicle|,patient=LandVehicle| +˴ V TakeVehicle|,patient=ship| +˵ V TakeVehicle|,patient=LandVehicle| +˵糵 V TakeVehicle|,patient=LandVehicle| +˷ N fact|,DoSum| +˷ɻ V TakeVehicle|,patient=aircraft| +˷ V do|,manner=brave| +˹ V TakeVehicle|,patient=LandVehicle| +˺ N symbol|,*DoSum| +˻ V TakeVehicle|,patient=LandVehicle| +˻ V damage| +˻ ADV aValue|ֵ,time|ʱ,convenient| +˻ N result|,#DoSum| +˼Ƴ̳ V TakeVehicle|,patient=LandVehicle| +˾ N human|,occupation|ְλ,#LandVehicle|,police| +˿ N human|,*TakeVehicle| + V enjoy|,content=chilly| + N human|,family|,male|,desired| +֮Σ V use|,patient=time|ʱ +ʤ ADV aValue|ֵ,time|ʱ,#win|ʤ +ʤǰ V GoForward|ǰ,time=win|ʤ +ʤ׷ V chase|׷,time=win|ʤ + ADV aValue|ֵ,time|ʱ,convenient| + N symbol|,#quantity| +Ա N human|,#occupation|ְλ,#LandVehicle| +϶ ADV use|,patient=time|ʱ + V use|,patient=time|ʱ + ADV use|,patient=time|ʱ + V do|,time=convenient| + V DoSum| +Ա N human|,#occupation|ְλ,#vehicle|ͨ + V TakeVehicle| + N attribute|,distance|,&space|ռ + N attribute|,sequence|,&event|¼ + N character|,surname|,human|,ProperName|ר + N fact|,tour| + N regulation| +̶ N attribute|,degree|̶,&event|¼,&aValue|ֵ +̶ N attribute|,rank|ȼ,&thing| +̿ V control|,instrument=software| +ʽ N symbol| + N attribute|,sequence|,&event|¼ + N software| + V control|,instrument=software| +Ա N human|,#occupation|ְλ,*compile|༭,#software| + V punish| +Ͱ V punish| +Ͱ V punish| +ʹ V punish| +ͷ V punish| +ͽ V punish| +ǰѺ V study|ѧ,source=err|,purpose=exempt|,#err| + V punish| + ADJ aValue|ֵ,clearness|,clear| +γ ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,clearness|,clear| + V explain|˵ + V undergo|,content=filter| +ɳ N material|,#food|ʳƷ,$eat| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ϻ̳Ͽ V fear| +Ͽ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ȼ CONJ {comment|} +Ȼ ADJ {comment|} +Ȼ CONJ {comment|} +Ȼ ADV {comment|} +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N aspiration|Ը,sincere|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N attribute|,behavior|ֹ,sincere|,desired| + N aspiration|Ը,sincere|,desired| + V call|ٻ,ResultEvent=request|Ҫ,#employ| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V KeepOn|ʹ + V SupportWeight|ס + V bear|е + V grateful|м +а V bear|е +а V bear|е +аλ N institution|,content=bear|е +а V human|,#occupation|ְλ,content=bear|е +б V bear|е,content=guarantee|֤ +б N human|,*guarantee|֤ +б V human|,content=bear|е,#guarantee|֤ +е V bear|е +е N human|,*undertake| +е V bear|е +е N place|ط,city|,ProperName|ר,(China|й) +е N human|,*pawn|Ѻ,commercial| +ж V exchange|,commercial| +ж N institution|,exchange|,commercial| +й V bear|е,content=buy| +м V receive|,possession=family| +м V undergo|,content=receive| +н V bear|е,content=build| +н V KeepOn|ʹ +н V MakeAppointment|Լ,content=bear|е +н V receive| + V MakeAppointment|Լ,content=bear|е + V grateful|м +ŵ V MakeAppointment|Լ,content=bear|е +ŵ N information|Ϣ,*MakeAppointment|Լ,#bear|е +ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +ǰ V connect| + V admit| + V admit|,diplomatic|⽻ + V connect| + V SupportWeight|ס + V endure| + V expect| +Ϯ V obey|ѭ +Ϯ V receive| + V connect| + V sell|,commercial| +ӡ V bear|е,content=print|ӡˢ + V bear|е,content=transport| + V SupportWeight|ס + N attribute|,ability|,load|װ,&vehicle|ͨ + V SupportWeight|ס,patient=weight| +ǽ N part|,%building|,skin|Ƥ,*SupportWeight|ס,#weight| + V lend|,commercial| + N human|,*borrow|,commercial| + V ShowOff|ҫ + V indulge| + V ShowOff|ҫ,content=ability| +ǿ V ShowOff|ҫ,content=ability| +ǿ V ShowOff|ҫ,content=power| + V ShowOff|ҫ,content=power| + V indulge| + V IllBehave| +Ӣ V ShowOff|ҫ,content=ability| + V SelfMove|,manner=fast| +һ V satisfied| +Ŀ V look|,content=far|Զ +ĿԶ V look|,content=far|Զ + N tool|þ,*measure|,#weight| +Ӵ N part|,%tool|þ,#measure|,#weight| +Ӹ N part|,%tool|þ,#measure|,#weight| +ӹ N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + V depend| + V destroy|,military| + V eat| + V exhaust| + V soak| + V suffer| +԰׷ V depend|,partner=^self| +԰׷ V eat|,patient=food|ʳƷ +԰ʳ V depend|,partner=^self| +԰ V suffer|,content=fail|ʧ +Ա V BeFull|Ա +ԱŸ V suffer|,content=obstruct|ֹ,#GoInto| +Ա V suffer|,content=fail|ʧ +Բ V OwnNot|,possession=edible|ʳ +Բ V do|,few|,industrial| +Բ V WithstandNot|ס +Բ ADJ aValue|ֵ,ability|,unable|ӹ,$eat| +Բ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Բ V eat|,^Vable| +Բ˶ V unfortunate| +Բ V BeUnable|,content=eat| +Բ V OwnNot|,possession=edible|ʳ +Բ͸ V BeUnable|,content=know|֪ +Բ V BeUnable|,content=eat| +Բ V WithstandNot|ס +Բס V WithstandNot|ס +ԳԵЦ V laugh|Ц +ԳԺȺ V consume|ȡ +Դ N edible|ʳ,clothing| +Դ V jealous|ʼ +Ե ADJ aValue|ֵ,ability|,able|,$eat| +Եÿ ADJ aValue|ֵ,effect|Ч,superior|,desired| +Ե V eat|,Vable| +Ե V withstand|ס +Եס V withstand|ס +Ե V destroy|,military| +Զ V eat|,patient=edible|ʳ +Զ V tease|ȡ,#female|Ů +Է V MakeLiving|ı +Է V eat|,patient=edible|ʳ +Թ˾ V suffer|,content=accuse|ظ,police| +Թ V eat|,location=InstitutePlace|,commercial| +Թ V eat| +Ժ V consume|ȡ +Ժ˯ N fact|,#alive| +Ժ V SeekPleasure|Ѱ,undesired|ݬ +Ժζ V SeekPleasure|Ѱ,undesired|ݬ +Իؿ V earn|׬,possession=payment|,commercial| +Խ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ծ V eat| +Ծ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ծ V fear| +Ծ V surprise| +Կ N human|,*eat| +Կ V suffer|,content=hardship| +Կ V endeavour| +Կͷ V suffer|,content=hardship| +Կ V unfortunate| +ϱ V depend|,partner=payment| + V betray| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ֺ V ^succeed|ɹ + V eat|,patient=food|ʳƷ + V eat|,patient=food|ʳƷ + V eat| +ǹӶ V suffer|,content=kill|ɱ + V accept|,content=invite|,result=consume|ȡ + V depend|,partner=female|Ů +ˮ V attribute|,depth|,&ship| +ˮ V exhaust|,patient=liquid|Һ +ˮ V liquid|Һ +ˮ N mark|־,#liquid|Һ,#ship| + V eat|,patient=vegetable|߲ +͸ V know|֪ +з V slack|͵ + ADJ aValue|ֵ,effect|Ч,superior|,desired| +ĺ V enjoy| +ưͿ V unfortunate| +ի V eat|,patient=vegetable|߲,religion|ڽ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ס N fact|,MakeLiving|ı +׼ V believe| + V bear|е,content=duty| +ﲻ V BeUnable|,content=bear|е,#duty| + V FondOf|ϲ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V mad| +մ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +մ N disease| + V FondOf|ϲ + V FondOf|ϲ + N emotion|,FondOf|ϲ +˵ V TalkNonsense|Ϲ˵ + N thought|ͷ,empty|,wrong| + N emotion|,FondOf|ϲ + V expect| + N thought|ͷ,empty|,wrong| + N human|,*mad| + N human|,NotQuick|ګ,undesired|ݬ + V hold| + V keep| + V manage| +ַ V conduct|ʵʩ,content=law|ɷ +ֹ V own|,possession=fund|ʽ +ּ V request|Ҫ,patient=self| +ּ V manage|,patient=family| +־ ADJ aValue|ֵ,duration|,TimeLong| +־ս N fact|,*attack|,TimeLong|,military| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ V equal| +ǹ V hold|,patient=weapon| +ǹͽ N human|,fierce|,crime|,undesired|ݬ + V err|,sport|,(basketball|) + V request|Ҫ,patient=self| + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V disagree|ͬ + V own| + N human|,*own| +֮Ժ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N tool|þ,*hold|,#food|ʳƷ,*eat| + N tool|þ,*hold|,#food|ʳƷ,*eat| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,#city| + N facilities|ʩ,surfacial| + N room|,%InstitutePlace|,@perform|,entertainment| + N waters|ˮ,surfacial| + N waters|ˮ,surfacial| + N material|,?food|ʳƷ,salty| +֮ N fact|,unfortunate| + N waters|ˮ,surfacial| + N facilities|ʩ,%InstitutePlace|,@wash|ϴ + N facilities|ʩ,%InstitutePlace|,space|ռ,@recreation| + N waters|ˮ,surfacial| + N room|,%InstitutePlace|,@perform|,entertainment| + ADJ aValue|ֵ,earliness|,late| + ADJ aValue|ֵ,speed|ٶ,slow| +ٳ ADJ aValue|ֵ,speed|ٶ,slow| +ٵ ADJ aValue|ֵ,earliness|,late| +ٶ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ٶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ٻ ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + V delay| + V hesitate|ԥ +ɲ V hesitate|ԥ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,circumstances|,relax|,desired| +ڻ ADJ aValue|ֵ,circumstances|,relax|,desired| +ڽ V cease|ͣ,content=prohibit|ֹ + N disease| + V SelfMove|,manner=fast| +۳ V SelfMove|,manner=fast| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + V ThinkOf|˼ + V SelfMove|,manner=fast| + V endeavour| +˼ V ThinkOf|˼ + V VehicleGo|ʻ,manner=fast| + ADJ aValue|ֵ,reputation|,glorious|,desired| +Ԯ V rescue|,manner=fast| + V SelfMove|,manner=fast| + N emotion|,shy|,undesired|ݬ +ܹ N part|,%AnimalHuman|,bone| + V ExpressAgainst|Ǵ + N emotion|,shy|,undesired|ݬ +Ц V LaughAt|Ц + N part|,%AnimalHuman|,*bite|ҧ + N part|,%inanimate| + N part|,%implement| + ADJ aValue|ֵ,form|״ + N part|,%AnimalHuman|,*bite|ҧ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +̸ V boast| + N shape| + N tool|þ,*measure|,generic|ͳ + CLAS unit|λ,&length| +ߴ N attribute|,size|ߴ,&physical| +߶ N attribute|,standard|׼,&physical| +߹ N part|,%AnimalHuman|,bone| + N attribute|,size|ߴ,&physical| + N tool|þ,*measure|,#length| + N letter|ż + N InsectWorm|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,fullness|,empty| + V exposure|¶ +౳ V exposure|¶,#body| +ಲ V exposure|¶,#body| +ಲ V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +൨ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N location|λ,#earth| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Equatorial Guinean|) + N place|ط,country|,ProperName|ר,(Africa|) +ǧ ADJ aValue|ֵ,circumstances|,barren|,undesired|ݬ +ඹ N part|,%vegetable|߲,embryo|,$eat| +ඹ N vegetable|߲ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,color|ɫ,brown| + ADJ aValue|ֵ,color|ɫ,brown| + ADJ aValue|ֵ,color|ɫ,red| + N metal|,pure| + N humanized|,undesired|ݬ + N human|,undesired|ݬ + N disease| + N chemical|ѧ +¶ ADJ aValue|ֵ,fullness|,empty| +¶ V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,opened| + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,opened| + V exposure|¶ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N celestial|,hot| + N medicine|ҩ,(China|й) +¶ V exposure|¶,#body| + V exposure|¶,#body| +ֿȭ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N tree| + V exposure|¶ + N place|ط,country|,ProperName|ר,(Asia|) +С N material|,?food|ʳƷ +Ѫ N chemical|ѧ + N human|,young| +֮ ADJ emotion|,pure|,desired| + N wealth|Ǯ,$InDebt| + N food|ʳƷ,#fish| + N part|,%bird|,%InsectWorm|,wing|,*fly| + N part|,%aircraft|,wing|,*fly| + N part|,%bird|,%InsectWorm|,wing|,*fly| + N part|,%plant|ֲ,embryo| + N part|,%InsectWorm|,#wing|,#fly| + N part|,%bird|,#wing|,#fly| + N part|,%bird|,wing|,*fly| + V ExpressAgainst|Ǵ + V discharge| + V provide| + V provide|,possession=fund|ʽ + V ExpressAgainst|Ǵ + V discharge| + V expel| + V ExpressAgainst|Ǵ + N human|,*ExpressAgainst|Ǵ + V provide|,possession=fund|ʽ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,temperature|¶,hot| +ʢ ADJ aValue|ֵ,temperature|¶,hot| + ADJ aValue|ֵ,ability|,able|,control| + ADJ aValue|ֵ,temperature|¶,hot| + V RegardAs|,means=pretend|װ + ADJ aValue|ֵ,range|,sufficient| + N character|,surname|,human|,ProperName|ר + V feed|ι + V undertake| + V exist|,quantity=many| +䵱 V RegardAs| + V enrich|ʵ,material=strength| + V feed|ι,patient=electricity| + N tool|þ,*feed|ι,#electricity| + V ignorant|֪,#listen| + ADV aValue|ֵ,degree|̶,extreme| + ADJ qValue|ֵ,amount|,sufficient| +乫 V levy|,police| +伢 V consume|ȡ + V exile| + V CauseToExist|ʹ,quantity=many| + V exist|,quantity=many| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V believe| + ADJ qValue|ֵ,amount|,many|,desired| +伫 ADV aValue|ֵ,range|,extensive| + ADV aValue|ֵ,range|,extensive| + V feed|ι,patient=gas| + V undertake| + V fill| +ʵ V enrich|ʵ +ʵ ADJ qValue|ֵ,amount|,sufficient| + V fill| +Ѫ N disease|,#bleed|Ѫ + ADJ qValue|ֵ,amount|,sufficient| + V spill| +ӯ ADJ qValue|ֵ,amount|,sufficient| +ӯ V spill| +ԣ ADJ qValue|ֵ,amount|,sufficient| + ADJ qValue|ֵ,amount|,sufficient| + V CauseToAppear| + V GoForward|ǰ + ADJ aValue|ֵ,strength|,strong|ǿ + ADJ aValue|ֵ,taste|ζ,strong|ǿ + V cook| + N facilities|ʩ,route|·,important| + V facing| + N land|½ + V wash|ϴ + PREP {cause} + PREP {direction} + N process|,wave|ڶ,#machine| + V GoForward|ǰ +崲 N machine|,*press|ѹ + V run|,manner=fast| +嵭 V MakeLower| +嵭 V dilute|嵭 +嵴 V wash|ϴ +嶯 N emotion|,excited| +嶯 V excited| +巸 V offend| + V attack|,military| +ǹ N weapon|,*firing| + V attack|,military| + V drink|,medical|ҽ + V damage| +ͷ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V attack|,military| + V bump|ײ + V damage| + N attribute|,strength|,strong|ǿ,entity|ʵ + V pile|ѷ + N part|,%land|½ +ƽԭ N land|½ + N stone|ʯ + N medicine|ҩ,liquid|Һ + V damage| + V damage| + V swim|,sport| + N swim|,sport| +˰ N tool|þ,swim|,sport| + N attribute|,strength|,&physical| + V cool|,wash|ϴ + V split|ƿ +ɢ V spread| + N place|ط,city|,ProperName|ר,(Japan|ձ) +ˢ V damage| +ˢ V wash|ϴ + ADJ aValue|ֵ,height|߶,tall| +ͻ V FitNot| +ͻ V fight| +ϴ V CauseToAppear| +ϴ V wash|ϴ +ѹ V press|ѹ,industrial| + V cool|,wash|ϴ + V coordinate|Э,commercial| +ײ V bump|ײ +ײ V offend| + V facing| + N part|,%machine|,*press|ѹ + N InsectWorm| + N medicine|ҩ,(China|й) +溦 N phenomena|,undesired|ݬ,#InsectWorm|,#unfortunate| + N part|,%InsectWorm|,embryo| + N part|,%AnimalHuman|,*bite|ҧ,#disease| + N phenomena|,undesired|ݬ,#InsectWorm|,#unfortunate| + V bite|ҧ + N InsectWorm| + ADJ aValue|ֵ,height|߶,tall| + V respect| + V respect| + N human|,*respect| + V believe| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +羴 V respect| +ɽ N land|½ + V endorse|ӵ + V respect|,target=foreign| + V respect|,target=foreign| + V like|ϧ +谮 V like|ϧ + N entity|ʵ,$like|ϧ,desired| +費 V calm| + N animal|,$like|ϧ,desired| + V believe| + V like|ϧ + V PickOut|γ + V addict|Ⱥ + V beat| + V choose|ѡ + V collect| + V grow|ɳ + V shrink|С + V twitch|鴤 +鲻 V BeUnable|,content=use|,#time|ʱ +鲻 V BeUnable|,content=leave|뿪 + V check| + V check| + V PickOut|γ + V use|,patient=time|ʱ + V use|,patient=time|ʱ +鴤 V twitch|鴤 + V weep| + V beat| + V transport| +鶡 V include|,manner=force|ǿ +鶯 V twitch|鴤 +鶷 N part|,%furniture|Ҿ,cubic|,@put| + V IllBehave| + V drain|ų,patient=gas| + V twitch|鴤 + N tool|þ,*drain|ų,#gas| + V check| +齱 V gamble|IJ + V twitch|鴤 + V use|,patient=time|ʱ + ADV aValue|ֵ,behavior|ֹ,sudden| + N tool|þ,*drain|ų,#gas| + V weep| +ǩ V gamble|IJ +ȡ V gather|ɼ +ɴ N tool|þ,*decorate|װ + V leave|뿪 +ˮ V drain|ų,patient=liquid|Һ +ˮ N machine|,*drain|ų,#liquid|Һ +ˮͰ N tool|þ,cubic|,@put|,#waste|,#excrete|й +˰ V levy|,possession=expenditure|,commercial| + V grow|ɳ,agricultural|ũ + V shrink|С + N part|,%furniture|Ҿ,cubic|,@put| +ͷ V collect|,commercial| +ͷ N part|,%linear|,#electricity|,branch|֧ + V use|,patient=time|ʱ + ADJ aValue|ֵ,content|,abstract| + N human|,entertainment|,literature| +ѡ V choose|ѡ +ѿ V grow|ɳ,agricultural|ũ + V weep| + V addict|Ⱥ + V check| +ҭ V weep| +׳ V include|,manner=force|ǿ +޷ V grow|ɳ,agricultural|ũ + V twitch|鴤 + V congratulate|ף,instrument=drinks|Ʒ + V exchange| + V fulfil|ʵ + N payment| +걨 V recompense| + V sell|,manner=recompense|,commercial| + V reply|,instrument=text| + V thank|л,instrument=artifact|˹ + V reply| + V reply| + N payment| + N payment| + V recompense| +л V thank|л + N fact|,associate| + N fact|,congratulate|ף,means=drink| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N land|½,#crop|ׯ + N time|ʱ,past| + N time|ʱ,past| + N character|,(China|й) + V hesitate|ԥ + V hesitate|ԥ,content=SelfMove| +ǰ V hesitate|ԥ,content=SelfMove| +־ V satisfied| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + ADJ aValue|ֵ,density|ܶ,dense| + N attribute|,concentration|Ũ,&physical| + ADJ aValue|ֵ,density|ܶ,dense| + V worried|ż + N emotion|,upset| +ٽ V upset| + N emotion|,upset| + N emotion|,upset| +üչ V upset| +ü V upset| +ü V upset| + V upset| + N attribute|,countenance|,#upset|,&human| +˼ N emotion|,upset| + N emotion|,sad|dz + N emotion|,sad|dz + N coupon|Ʊ֤ + V plan|ƻ + V prepare|׼ + V prepare|׼ +ﱸ V prepare|׼ +ﱸ N fact|,*prepare|׼ + V gather|ɼ,commercial| +ﻮ V plan|ƻ +O V gather|ɼ,commercial| +ィ V establish| + V gather|ɼ,possession=fund|ʽ + N coupon|Ʊ֤ +ļ V gather|ɼ + V discuss| + V calculate| +ί N part|,%institution|,*plan|ƻ + V gather|ɼ,possession=fund|ʽ + V establish| + N character|,surname|,human|,ProperName|ר + N emotion|,hate|,undesired|ݬ + N human|,enemy| + N human|,enemy| + N emotion|,hate|,undesired|ݬ + N human|,enemy| +ɱ V kill|ɱ,cause=revenge| + V hate| +϶ N fact|,quarrel| +Թ N emotion|,hate|,undesired|ݬ + N material|,?clothing| + N material|,?clothing| + N material|,?clothing| + V look| + V perception|֪,means=look| +ն V use|,patient=time|ʱ + V use|,patient=time|ʱ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + N fact|,undesired|ݬ + N human|,entertainment| +˹ N human|,ugly|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V slander|̰ + N text|,forthright|ˬ + N human|,entertainment| + N fact|,undesired|ݬ + N shows| + N human|,undesired|ݬ +ª ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ʱ N time|ʱ,hour|ʱ,morning| + N fact|,disgraced|,undesired|ݬ +̬ N attribute|,bearing|̬,disgraced|,&human| +̬ٳ V appear|,manner=disgraced| +̬¶ V appear|,manner=disgraced| + N fact|,disgraced|,undesired|ݬ + N fact|,disgraced|,undesired|ݬ + ADV aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N InsectWorm|,undesired|ݬ,*sting| + N tree|,?medicine|ҩ,$eat| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V ExpressAgainst|Ǵ,manner=strong|ǿ + V ShowOff|ҫ +Զ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +Ƥ N human| + N method|,NotQuick|ګ +¦ N human|,NotQuick|ګ,*recreation| + N gas|,stinky| +Ѭ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ζͶ V fit|ʺ,scope=bad| + N part|,%AnimalHuman|,nerve| + N gas|,#weather| + N gas|,#weather| + N beast| + ADJ aValue|ֵ,rank|ȼ,elementary| + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADV aValue|ֵ,time|ʱ,InFront|ǰ + N character|,surname|,human|,ProperName|ר + N part|,%time|ʱ,head|ͷ + V print|ӡˢ + ADJ aValue|ֵ,rank|ȼ,elementary| + N human|,female|Ů,*GiveBirth|,medical|ҽ + N part|,%human|,#female|Ů,liquid|Һ,#mating| +é® ADJ aValue|ֵ,ability|,unable|ӹ + V establish| + N time|ʱ,spring|,early| + ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,rank|ȼ,elementary| +Ƚ N affairs|,education|,elementary| + N time|ʱ,winter|,early| + N human|,crime|,undesired|ݬ + N time|ʱ,season|,InFront|ǰ,hot| + N text| + N fact|,GetMarried| + ADJ aValue|ֵ,rank|ȼ,elementary| +Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +ѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| + V CauseToAppear| +Ч V exposure|¶,experiencer=succeed|ɹ + N human|,friend| +߹ģ V succeed|ɹ + N fact|,love| +¶ V CauseToAppear| +¶â V CauseToAppear|,patient=ability| +¶ͷ V CauseToAppear|,patient=ability| + N time|ʱ + N time|ʱ,season| + N fact|,estimate| + N time|ʱ,InFront|ǰ + N time|ʱ,autumn|,early| + N fact|,#compete| + N judge|ö,police| + ADJ aValue|ֵ,time|ʱ,new| +ţ N human|,brave| +ţ ADJ aValue|ֵ,courage|,brave|,desired| +֮ N human|,brave| +ʼ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ʼ V ize|̬ + V exam| + N time|ʱ,summer|,early| +С N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +ѡ N select|ѡ +ѧ V study|ѧ +ѧ N human|,*study|ѧ +һ N time|ʱ,festival|,@congratulate|ף +Ը N aspiration|Ը,expect|,original|ԭ +ս N fact|,compete|,sport| +ս N fact|,fight|,military| + V request|Ҫ,ResultEvent=$cure|ҽ + N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| + N human|,*study|ѧ,education| + N aspiration|Ը,original|ԭ + V GoOut|ȥ + V GoThrough| + V MoveItOut| + ADV aValue|ֵ,direction|,external| + V announce| + V create| + V happen| + V publish| + V spend| + V surpass|ǿ + STRU {Vachieve|} + STRU {Vdirection|,external|} + STRU {over|} + V publish| + N human|,#occupation|ְλ,*publish|,commercial| + N InstitutePlace|,publish| + N publications|鿯 + V announce|,content=document| + V announce|,content=result|,education| + V dispatch|Dz,patient=army|,military| + V exercise| +ͷ V err| + V err| + V SelfMove|,#affairs|,#dispatch|Dz + V err| + N payment|,*SelfMove|,#affairs|,#dispatch|Dz + V produce| + V arrive|,location=InstitutePlace|,#perform|,entertainment| + V arrive|,location=facilities|ʩ,#compete|,sport| + N payment|,*perform|,entertainment| + V GoOut|ȥ,LocationIni=factory| + N attribute|,price|۸,&artifact|˹,commercial| +۸ N attribute|,price|۸,&artifact|˹,commercial| + N quantity|,rate|,&transport|,commercial| + V dispatch|Dz,patient=LandVehicle| + V leave|뿪,means=drive|Ԧ + V engage|,content=affairs|,#LandVehicle| + V suffer|,content=disgraced| + N location|λ,@ExistAppear| + V err| + V sell|,#InstitutePlace| + V fulfil|ʵ,patient=study|ѧ,#engage| + V teach|,content=thought|ͷ + N location|λ,@ExistAppear|,#text| + V pawn|Ѻ,#building| + V lend|,#building| + V dispatch|Dz + V start|ʼ,content=leave|뿪 + V disobey|Υ,content=MakeAppointment|Լ + V start|ʼ,content=leave|뿪 + N standpoint| + V LeaveFor|ǰ,purpose=visit|,diplomatic|⽻ +ͷ V ShowOff|ҫ + V end|ս,experiencer=time|ʱ,#hot| + V leave|뿪,LocationIni=facilities|ʩ,#ship| + V FitNot| + V MarryTo| + V engage|,content=affairs| + V excrete|й,patient=waste| +¶ V suffer|,content=disgraced| + V do|,manner=improper| + V leave|뿪,LocationIni=route|·,#err| +Ϊ V attribute|,behavior|ֹ,improper|,undesired|ݬ,&human| + V LeaveFor|ǰ,LocationFin=foreign| + V LeaveFor|ǰ,LocationFin=waters|ˮ + V excrete|й,patient=waste| + V start|ʼ,content=VehicleGo|ʻ + V start|ʼ,content=fly| + ADJ aValue|ֵ,behavior|ֹ,sudden| +֮ ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,behavior|ֹ,sudden| + V fulfil|ʵ,patient=many| + V transport|,artifact|˹ + V attack| + V engage|,content=religion|ڽ,religion|ڽ + N human|,religion|ڽ + V propose|,content=price|۸,commercial| + V MarryTo| + V undertake|,content=important| + V err|,sport| + V lend| + V leave|뿪,LocationIni=foreign| + V end|ս,experiencer=time|ʱ,#cold| + V suffer|,content=discharge|,sport| + V submit| + N part|,%place|ط,mouth| + V speak|˵ + V transport|,commercial| +ڳ ADJ aValue|ֵ,ability|,able|,speak|˵,desired| +ڶ N quantity|,amount|,transport|,&physical| + V speak|˵,result=offend| +Ʒ V artifact|˹,$transport|,generic|ͳ,commercial| + V GoOut|ȥ + V appear| + STRU {Vachieve|} + STRU {Vdirection|,external|} + V TakeAway|ᶯ,agricultural|ũ + V grow|ɳ,agricultural|ũ + ADJ aValue|ֵ,kind|,special| + V endeavour| + V GoOut|ȥ,military| + V engage|,content=catch|׽ס,#beast|,agricultural|ũ + V slide| + V ComeToWorld| + V appear| +¦ V err| +· N facilities|ʩ,route|· +· N method| + V err| + V become|Ϊ + V do| + V betray| + V sell| +ë V OutOfOrder| +÷ V end|ս,experiencer=time|ʱ,#RainSnow|ѩ +û V appear| + V leave|뿪,LocationIni=family| + V start|ʼ,content=leave|뿪 + V MarryTo| + V appear| + V bear|е + V grow|ɳ,agricultural|ũ + V WellKnown| + ADJ WellKnown| +ı V help|,scope=plan|ƻ +ıײ V help|,scope=plan|ƻ + N fact|,calculate|,collect|,pay|,#wealth|Ǯ + N human|,#occupation|ְλ,*calculate|,*collect|,*pay|,#wealth|Ǯ +̨ N part|,%InstitutePlace|,commercial|,*calculate|,*collect|,*pay|,#wealth|Ǯ +Ա N human|,#occupation|ְλ,*calculate|,*collect|,*pay|,#wealth|Ǯ + V sell|,#InstitutePlace| +Ʒ N artifact|˹,$produce|,generic|ͳ +Ʒ V produce| +䲻 ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,kind|,special| +ʤ V win|ʤ,means=SelfMove| + V ExpressAnger|ʾŭ +Ǯ V provide|,possession=fund|ʽ + V engage|,content=affairs| + N quantity|,rate|,&engage|,#affairs| +ȥ V GoOut|ȥ +ȥ STRU {Vdirection|,external|} +ȥԷ V eat|,location=InstitutePlace| +Ȧ V do|,manner=improper| +ȱ ADJ aValue|ֵ,occupation|ְλ,empty| + V sell| + V aValue|ֵ,behavior|ֹ,sudden| + V undertake| + V SelfMoveInManner|ʽ + N attribute|,similarity|ͬ,different|,&entity|ʵ +뾳 V GoInto|,LocationFin=country|,leave|뿪,LocationIni=country| + N part|,%place|ط,%building|,mouth| +֤ N document|,*GoInto| + V GoOut|ȥ,LocationIni=facilities|ʩ + V include|,ResultWhole=compete|,sport| +ɫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɽ V leave|뿪,LocationIni=land|½ +ɽ V undertake|,content=official| + N attribute|,origin|,&human| +߹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V stupefied|ľȻ +뻯 ADJ aValue|ֵ,content|,good|,desired| + V MakeSound| + V speak|˵ + V ComeToWorld| + N place|ط,@ComeToWorld| + N quantity|,rate|,&GiveBirth| + N time|ʱ,@ComeToWorld| + N time|ʱ,@ComeToWorld| + V endeavour| +ʱ N time|ʱ,@ComeToWorld| +ʦ V cease|ͣ,content=study|ѧ +ʦ V dispatch|Dz,patient=army|,military| +ʦ V defeated|,military| +ʹ V undertake|,content=official|,politics| +ʾ V display|չʾ + V BeIndependent| + V ComeToWorld| + V suffer|,content=dangerous|Σ + V beat| + V give| + V sell| +ֲ ADJ aValue|ֵ,ability|,able|,desired| + V sell| +̨ V announce| +̨ V appear|,location=facilities|ʩ,purpose=perform|,entertainment| + V flee| + V become|Ϊ +ͥ V appear|,location=institution|,police| +֤ͥ V prove|֤,#police| +ͷ V BeRecovered|ԭ,StateIni=unfortunate| +ͷ V appear| +ͷ ADJ qValue|ֵ,amount|,over| +ͷ¶ V appear| + V exposure|¶ + N physical| + V CauseNotToBe|ʹ֮,police| + V become|Ϊ + V sell| + V leave|뿪,LocationIni=family| + V flee| + V err| +Ϣ N attribute|,outlook|ǰ,&human| +Ϣ V prosper| +ϯ V engage| + V BeRecovered|ԭ,StateIni=dangerous|Σ + V suffer|,StateIni=dangerous|Σ + V appear| + V succeed|ɹ,scope=compete|,sport| +Ȩ N rights|Ȩ,*include|,#compete|,sport| + V tour| +Ѫ V bleed|Ѫ +Ѫ V spend| +Ѳ V investigate| + V RegardAs|,entertainment| + V perform|,entertainment| + V LeaveFor|ǰ,LocationFin=foreign| + V ShowOff|ҫ +ӭ V welcome|ӭ + V tour| + V ResultFrom|Ե + V start|ʼ + V undergo|,content=release|ͷ,police| +Զ V leave|뿪,LocationIni=family| +Ժ V leave|뿪,LocationIni=InstitutePlace|,medical|ҽ +ս V engage|,content=fight| + V visit|,purpose=cure|ҽ,medical|ҽ + V LeaveFor|ǰ,purpose=fight|,military| + ADJ aValue|ֵ,kind|,special| + V provide|,possession=fund|ʽ + V ResultFrom|Ե + V leave|뿪 + ADJ lend|,commercial| + V lend|,commercial| +⳵ N LandVehicle|,$lend|,commercial| +⳵˾ N human|,*drive|Ԧ,#LandVehicle| + N LandVehicle|,$lend|,commercial| + N human|,*lend|,commercial| + V sell|,commercial| + N furniture|Ҿ,cubic|,@put| + N part|,%house|,eye|,#display|չʾ + N part|,%house|,eye|,@display|չʾ + N furniture|Ҿ,cubic|,@put| + N room|,@cook| + N room|,@cook| +þ N tool|þ,*cook| + N tool|þ,*cook| +ʦ N human|,#occupation|ְλ,*cook| + N human|,#occupation|ְλ,*cook| + N character|,(China|й) + V remove| + V remove|,agricultural|ũ + N tool|þ,*remove|,#FlowerGrass| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=treacherous| +ǿ V remove|,patient=fierce|,help| +ͷ N tool|þ,*remove|,#FlowerGrass| + ADJ aValue|ֵ,age|,young|,#animal| + N bird|,young| + N human|,unable|ӹ + N bird|,young| + N part|,%thing|,embryo| + N entity|ʵ + N part|,%thing|,embryo| +ӥ N bird|,young| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V DoSum| + V remove| + PREP {besides} + PREP {except} + V remove|,patient=fierce|,help| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=FlowerGrass|,agricultural|ũ +ݻ N machine|,*remove|,#FlowerGrass|,agricultural|ũ +ݼ N medicine|ҩ,*remove|,#FlowerGrass|,agricultural|ũ + N human|,*remove|,#FlowerGrass| + V remove|,patient=waste| + N machine|,*remove|,#waste| + N medicine|ҩ,*remove|,#InsectWorm| + ADJ aValue|ֵ,property|,remove|,#stinky| + V remove|,patient=stinky| + PREP {except} +˶ ADV {except} + ADV {except} +֮ ADV {except} + V remove|,patient=evil| + N method|,*DoSum| + CONJ {condition|} + V cure|ҽ + V remove| + N symbol|,*DoSum| + V DoSum| +ɲ V improve| +ɸ V improve| + PREP {besides} + PREP {except} + PREP {besides} + PREP {except} + V discharge| +ȥ V remove| +ȥ PREP {except} +ȴ PREP {except} + N symbol|,#quantity| +˪ V remove|,patient=ice| + PREP {except} +Ϧ N time|ʱ,day|,night| +Ϧ N fact|,*recreation| + V DoSum| + N character|,surname|,human|,ProperName|ר + N fact|,unfortunate| + ADJ aValue|ֵ,attire|װ,neat|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N publications|鿯,ProperName|ר,(China|й) + N shows| + N part|,%thing|,base| + V character|,surname|,human|,ProperName|ר + V store| + V store| + N fund|ʽ + N edible|ʳ + V store| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V store| + V store| + N human|,SetAside|,#wealth|Ǯ,#commercial| + N human|,royal|,male| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V SetAside|,commercial| + N money|,$SetAside| + V InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| + N material|,liquid|Һ,$burn| +͹ N tool|þ,*store|,#material|,liquid|Һ + V store|,transport| + V stand|վ,manner=upright| + V stand|վ,manner=upright| + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V excite|ж + V touch| + V unfortunate|,means=touch|,cause=electricity| + V excite|ж + V touch| + V TurnOn| + N part|,%implement|,*TurnOn| + V disobey|Υ + V touch| + V unfortunate|,cause=bump|ײ,#stone|ʯ,#waters|ˮ + N part|,%animal|,*feel| + V excited| + N experience|,feel| + N part|,%animal|,*feel| +ͨ V know|֪,means=deduce| +ùͷ V unfortunate| +ý N chemical|ѧ + V feel| +Ŀ V perception|֪ +Ŀ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ŭ V irritate|ŭ + N part|,%animal|,*feel| +ʹ N fact|,painful|ʹ +ʹ V touch|,result=painful|ʹ + V err|,sport| + N part|,%animal|,*feel| + N cure|ҽ,means=touch| + V associate| + V handle| + N location|λ + N part|,%organization|֯ + N place|ط + V punish| + V reside|ס + V situated| + N human|,#occupation|ְλ,official|,*manage| + ADV aValue|ֵ,location|λ,all|ȫ + ADV aValue|ֵ,range|,all|ȫ + V punish| + N document|,#medicine|ҩ,medical|ҽ + V write|д,ContentProduct=document|,#medicine|ҩ,medical|ҽ + V handle| + V punish| +Ȩ N rights|Ȩ,*handle| + N attribute|,circumstances|,&entity|ʵ + V kill|ɱ,police| + V handle| + V remove| + V sell|,commercial| +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + N machine| +۸ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ʒ N artifact|˹,$sell|,cheap|,commercial| + N machine| +Ʒ N artifact|˹,$sell|,cheap|,commercial| +Ʒ V sell|,possession=artifact|˹,commercial| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N human|,female|Ů,^mating| +Ů N land|½,new| +ŮĤ N part|,%human|,#female|Ů,#mating| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N readings| + V handle|,patient=self| + N handle|,patient=affairs| + N time|ʱ,day| + V kill|ɱ,police| + N place|ط +Ļ ADJ aValue|ֵ,behavior|ֹ,active|Ը + V punish|,police| + V punish|,means=police| + V situated| + V situated| +̩֮Ȼ V calm| + V handle| + V punish| + V remove| + V punish| + V guess|² + V put| + V guess|² + V estimate| +Ħ V think|˼ +ֶ V CausePartMove|,PatientPartof=hand| + N land|½ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,linear| + N FlowerGrass|,?medicine|ҩ + N edible|ʳ + N place|ط,ProperName|ר,(China|й) + N shows| +Ϣ ADV qValue|ֵ,amount|,many| +ܺ N FlowerGrass|,?medicine|ҩ + V PutOn| + V cross|Խ + V stab| +ȥ V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ +ס V BeUnable|,content=PutOn| + V GoInto| + V attack|,means=GoInto|,military| + V insert| + V replace| + N text| + V stab|,medical|ҽ + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| + V GoThrough| + V cross|Խ +׵ N weapon|,$firing| + N ill|̬,medical|ҽ + N split|ƿ,StateFin=mouth| +Ա N human|,#occupation|ְλ,*stab| +ɽ N beast| +ɽ N medicine|ҩ + V PutOn|,Vgoingon|չ + V ToAndFro| +͸ V stab| +СЬ V damage|,means=power| +Т V PutOn|,instrument=clothing|,purpose=condole|° + V cross|Խ +¾ N tool|þ,*MakeUp|ױ,#look| +Խ V cross|Խ + V fasten|˩ + V mediate| + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| +Ŵ N attribute|,attire|װ,&human| + N human|,*PutOn| + N part|,%building|,bone| + N part|,%building|,bone| + N part|,%building|,bone| + V CauseAffect|Ⱦ,medical|ҽ + V PassOn| + V call|ٻ + V disseminate| + V express|ʾ + V teach| + N text|,@record|¼ + V transmit| + ADV {comment|} + V disseminate| + V disseminate| + N human|,*disseminate| + V disseminate| + V undergo|,content=transmit|,content=sing| + N part|,%AnimalHuman|,nerve| + V tell| + N part|,%building|,#mouth| + N readings| + V transmit| + N attribute|,performance|,&transmit|,#electricity| + V disseminate|,content=religion|ڽ,religion|ڽ + V transmit| + N transmit| +ϵͳ N machine| + N part|,%machine| + V sense|о + N part|,%implement|,*sense|о + V transmit| + V tell|,content=information|Ϣ + N tool|þ,*LookFor|Ѱ,#cry| + V tell|,content=information|Ϣ + V call|ٻ,police| + N text|,@record|¼ +ұ N artifact|˹,precious| + V disseminate|,content=religion|ڽ,religion|ڽ +ʿ N human|,*disseminate|,religion|ڽ + V undergo|,content=disseminate| + V disseminate| + V order| +ý N method|,*disseminate| +Ʊ N document|,*call|ٻ,police| + ADJ aValue|ֵ,kind|,special| + N text|,@record|¼ + V express|ʾ,content=emotion| + V transmit|,sport| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ N disease| +ȾԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ⱦ ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ + V transmit|,content=hot| + V CauseAffect|Ⱦ,medical|ҽ + V call|ٻ,patient=human| + N human|,*PassOn| + V teach| + N part|,%AnimalHuman|,nerve| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N tool|þ,*disseminate| +Ͳ N human|,*disseminate|,undesired|ݬ +Ͳ N tool|þ,*disseminate| + V undergo|,content=PassOn| +䱦 N treasure|䱦,*undergo|,#PassOn| + V teach| + V transmit| +˵ N text|,@record|¼ +˵ ADV {comment|} + V enjoy|,content=praise|佱 + V transmit| +ʹ N part|,%implement|,*transmit| + V disseminate| +ͳ ADJ aValue|ֵ,property|,$PassOn| +ͳ N regulation|,$PassOn| +Ϊѻ V undergo|,content=disseminate|,#praise|佱 +Ϊ̸ V undergo|,content=disseminate|,#praise|佱 + N information|Ϣ,$disseminate| + ADV {comment|} +Ѷ V call|ٻ,police| + N information|Ϣ,$disseminate| + V tell|,content=information|Ϣ + V disseminate| + V transmit|,purpose=read| + N image|ͼ,$post|ʼ + N letter|ż + V post|ʼ + N machine|,*post|ʼ + N ship| + N part|,%ship|,body| + N ship|,mass| + N ship|,mass| + N place|ط,@stay|ͣ,#ship| + N room|,%ship| + N human|,#occupation|ְλ,official|,#ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N attribute|,number|,&ship| + N human|,*own|,#ship| + N ship|,mass| + N InstitutePlace|,ship|,commercial| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N music| + N music| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N human|,#ship| + N human|,#ship| + N human|,*drive|Ԧ,#ship| + N part|,%ship|,body| +ϴ N human|,*drive|Ԧ,#ship| + N attribute|,age|,&ship| + N human|,#ship| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#ship| + N time|ʱ,#ship|,@VehicleGo|ʻ +ڱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ + N part|,%ship|,body| + N part|,%ship|,head|ͷ +̨ N facilities|ʩ,space|ռ,@produce|,#ship| + N part|,%ship|,body| +ͷ N part|,%ship|,head|ͷ +β N part|,%ship|,tail|β +λ N location|λ,#ship| +λ N room|,%ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N part|,%ship|,edge| +Ա N human|,#occupation|ְλ,#ship| + V transport|,instrument=ship| +բ N facilities|ʩ,space|ռ,#waters|ˮ,#ship|,@VehicleGo|ʻ +ֻ N ship|,mass| +ֻ N quantity|,amount|,&ship| + N human|,*own|,#ship| + N human|,official|,#ship| + V pant| + V pant| + V pant| + V rest|Ϣ +Ϣ V pant| + CLAS NounUnit|,&(grape|),&(key|Կ) + V RegardAs|,entertainment| + V collude| + V connect| + V mix| + V roam| + V collude|,scope=admit|,#police| + V exchange| + V teach| + V connect| + V visit|,target=family| + V visit|,target=family| +ͨ V collude| +ͨһ V collude| +ζ ADJ aValue|ֵ,odor|ζ,mixed|,undesired|ݬ + ADV aValue|ֵ,sequence| + V RegardAs|,entertainment| + ADJ aValue|ֵ,kind|,mixed| + N tool|þ,*decorate|װ,$PutOn| + N disease| + N disease|,#wounded| + N trace|,#disease| + N trace|,#disease| + N trace|,#disease| + N disease| +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ + N part|,%house|,eye| + N part|,%building| + N part|,%house|,#eye| + N part|,%house|,eye| + N tool|þ,*decorate|װ,#house|,#eye| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N part|,%entity|ʵ,eye| + N part|,%house|,eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɴ N tool|þ,*cover|ڸ,*decorate|װ,#eye| +̨ N part|,%house|,#eye| +γ N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + CLAS NounUnit|,&house| + CLAS NounUnit|,&house|,mass| + V wave|ڶ + CLAS NounUnit|,&tool|þ,#cover|ڸ,#sleep|˯ + N furniture|Ҿ,space|ռ,@sleep|˯ + N shape|,space|ռ + N tool|þ,*cover|ڸ,#sleep|˯ +֮ N text|,secret| + N part|,%furniture|Ҿ,#sleep|˯,body| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%machine|,industrial|,#cut|,#produce| +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N tool|þ,*illuminate|,#furniture|Ҿ,#sleep|˯ +ͷ N furniture|Ҿ,cubic|,@store| +λ N location|λ,space|ռ,#sleep|˯ + N tool|þ,*cover|ڸ,#sleep|˯ + N machine|,industrial|,*cut|,*produce| + N furniture|Ҿ,space|ռ,@sleep|˯ + V GoForward|ǰ + V create| + V endeavour| +һ· V create|,PatientProduct=route|· + V MakeLiving|ı + V MakeLiving|ı + V err| + N human|,brave| + V MakeLiving|ı + V GoInto| + N attribute|,behavior|ֹ,brave|,&human| + V drill|ϰ +· V create|,PatientProduct=route|· +߱ V roam| + V GoInto| + V create| + N disease|,#wounded| + V start|ʼ + V establish| + V compile|༭ + V fulfil|ʵ + N trace|,#disease| + V earn|׬,possession=money|,source=foreign| +¼ V create|,PatientProduct=result|,#exercise|,sport| + N thought|ͷ,new|,special| + V establish| + N affairs|,new|,special| + V start|ʼ,content=publish| + N publications|鿯,#begin|ʼ + N location|λ,#disease|,#wounded| + V earn|׬ + V establish| + N part|,%AnimalHuman|,#wounded| + N disease|,#wounded| + N emotion|,#wounded| + V establish| +ʼ V begin|ʼ +ʼ N part|,%publications|鿯,religion|ڽ +ʼ N human|,*start|ʼ + V earn|׬ + V MakeBetter|Ż +ҵ V start|ʼ,content=affairs| + N thought|ͷ,new|,special| + V propose| + N text|,$propose|,$discuss|,$debate| + V create|,PatientProduct=good| + V create| + N attribute|,ability|,able|,#create|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ + V create| + V compile|༭ + N information|Ϣ + V boast| + V exhale| + V fail|ʧ + V recreation|,#MusicTool|,entertainment| + V recreation|,instrument=MusicTool|,entertainment| + V please|ȡ + V attack|,#weather| + V recreation|,instrument=MusicTool|,entertainment| + V recreation|,#MusicTool|,entertainment| + V MakeUp|ױ,means=dry| + V ill|̬,medical|ҽ + V tell| + N tool|þ,*MakeUp|ױ,#dry| + N tool|þ,*exhale| + V shake|ҡ + V MakeUp|ױ,means=dry| + N human|,#occupation|ְλ,entertainment| + N human|,*boast|,undesired|ݬ + V boast| +ӵ V ExpressAnger|ʾŭ + V MakeSound| + V recreation|,#MusicTool|,entertainment| + V discourage|ˮ +ë V ExpressAgainst|Ǵ +ţ V boast| +ţƤ V boast| + V please|ȡ + V ExpressAgainst|Ǵ + V inhale| +˫ɹ N human|,*perform| + V boast| + V recreation|,#MusicTool|,entertainment| + N music| + V cook| + N tool|þ,generic|ͳ,*cook| + N affairs|,cook| +° N part|,%army|,*cook| +þ N tool|þ,generic|ͳ,*cook| +Ա N human|,#occupation|ְλ,*cook| + N CloudMist|,#cook| + N tool|þ,*wipe| + V beat| + V beat| +ض V ShowBadEmotion|ʾ + V beat| + N tool|þ,*beat| + V beat| + V cultivate| + N tool|þ,*beat| + V CausePartMove| + V PassOn| + V FondOf|ϲ + V succeed|ɹ + V catch|׽ס,patient=fish| + V fall| + V manage|,patient=country|,politics| + N tree| + V fall| +ĺ N time|ʱ,night| +ĺ֮ N time|ʱ,#age|,aged| + V PayAttention|ע +ֿɵ ADJ aValue|ֵ,easiness|,easy|,$take|ȡ + V BeBad|˥ + V endeavour| + N part|,%AnimalHuman| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷɥ V disheartened| +Σ V ill|̬,#die|,medical|ҽ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ +ѯ V ask|,manner=gentle| +ֱ ADJ aValue|ֵ,posture|,straight|ֱ + N time|ʱ,#young| + N attribute|,strength|,&AnimalHuman| + N emotion|,love|,desired| + N time|ʱ,spring| + N food|ʳƷ + V affairs|,#planting|ֲ,#spring|,agricultural|ũ + N InsectWorm|,agricultural|ũ + N drinks|Ʒ,#spring| + N water|ˮ,#waters|ˮ,#spring| + N time|ʱ,day|,spring| + N wind|,#spring| + V satisfied| +绯 V enjoy|,content=teach| + ADJ aValue|ֵ,temperature|¶,chilly|,#spring|,undesired|ݬ + V joyful|ϲ + N affairs|,#planting|ֲ,#spring|,agricultural|ũ + N image|ͼ,lascivious| + N part|,%house|,#female|Ů,royal| + N image|ͼ,lascivious| + V irrigate|,#spring|,agricultural|ũ + N attribute|,scene|,&inanimate|,#spring| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N phenomena|,chilly|,spring| + N phenomena|,undesired|ݬ,waterless|,#weather|,spring| + N image|ͼ,lascivious| + V ize|̬,agricultural|ũ + N time|ʱ,spring| + N time|ʱ,#spring|,@rest|Ϣ,*WhileAway| + N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + N FlowerGrass| + N FlowerGrass| + N thunder|,#spring| + N text|,festival| + N time|ʱ,spring| + N thought|ͷ,fake|α +ů N phenomena|,warm|,beautiful|,spring|,desired| + N fact|,#time|ʱ + N time|ʱ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,spring|,autumn| + N time|ʱ,year| +ﶦʢ ADJ aValue|ֵ,age|,desired| + N clothing|,#spring|,autumn| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,age|,desired| + N celestial|,#time|ʱ,#spring| + N time|ʱ,season|,spring| +ɫ N phenomena|,#spring| +ɫ԰ ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,spring| + N text|,festival| +С N crop|ׯ + N emotion|,love|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather|,#spring| +Ѵ N time|ʱ,season|,spring| +ҩ N medicine|ҩ,#mating| + N phenomena|,#spring| +ⰻȻ N phenomena|,warm|,beautiful|,spring|,desired| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + V tour|,spring| + N RainSnow|ѩ,spring| + V transport|,#spring| + N emotion|,like|ϧ,desired| + N lights|,#celestial| + N tree| + N InsectWorm| + N human|,family|,mass| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,taste|ζ,pure|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + V ize|̬,industrial| + V refine|,industrial| + V ize|̬,industrial| + N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N drinks|Ʒ,$addict|Ⱥ + N part|,%AnimalHuman|,mouth| + V relate|й,manner=intimate| + N sound|,#language| + N tool|þ,*MakeUp|ױ + V HungryThirsty| + N disease|,#mouth| +ǹལ V debate| +ǹս V debate| + N text| +ݺ V relate|й,manner=intimate| + N sound|,#language| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + N attribute|,degree|̶,#pure|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N attribute|,behavior|ֹ,&human| + N metal|,pure| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N wealth|Ǯ,desired|,$earn|׬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,true| +ɫ ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,ability|,able|,desired| + V be|,manner=emphasis|ǿ +һ ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,kind|,pure| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V try| + V MakeTrouble| + V crawl| + N human|,unable|ӹ,undesired|ݬ +¿ N human|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N event|¼,foolish| +ͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V fix|ס + V stab| + V stand|վ + V wounded| +ڽ V ExpressAgainst|Ǵ + V reveal|¶ + V stab| + N stationery|ľ,*print|ӡˢ + V ExpressAgainst|Ǵ + N stationery|ľ,*print|ӡˢ + V reveal|¶ + V split|ƿ,means=stab| + N stationery|ľ,*print|ӡˢ + ADJ aValue|ֵ,area|,wide| + V pick|ʰ + ADJ qValue|ֵ,amount|,sufficient| +´ ADJ qValue|ֵ,amount|,sufficient| +º N attribute|,name|,other|,&entity|ʵ +ԣ ADJ qValue|ֵ,amount|,sufficient| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,quality|,weak|,undesired|ݬ,&thing| +õ N attribute|,quality|,weak|,undesired|ݬ,&thing| +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ +ĸ N human| + N vegetable|߲ + N attribute|,performance|,attract|,#metal| + N material|,?tool|þ +ų N space|ռ +Ŵ N tool|þ,*record|¼ +ŵ N material|,#route|· +Ź N phenomena|,#shiver| +Ż N ize|̬,#attract|,#metal| +ż N part|,%metal|,*attract| + N attribute|,strength|,&physical| + N method|,*cure|ҽ + N tool|þ,*record|¼ +ʯ N metal|,material| + N metal|,material| + N metal|,material| +ͷ N part|,machine|,#record|¼ + ADJ aValue|ֵ,performance| +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,sex|Ա,female|Ů +ƻ N FlowerGrass| +ϻ N beast|,female|Ů +ϻ N human|,female|Ů,fierce| +ϻ N human|,female|Ů,undesired|ݬ,fierce| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,sex|Ա,female|Ů + N attribute|,sex|Ա,&animate| +ͬ N animate| +ͬ N animate| + N animate| + N animate| + N InsectWorm|,female|Ů + V discharge| + V evade|ر + N expression| + V farewell| + V reject|ؾ + N text|,past| +DZ V farewell| +dz N document|,#cease|ͣ +ǵ N publications|鿯,#expression| +ǹ V cease|ͣ,content=undertake| +ǹ V discharge|,patient=employee|Ա +ǻ V cease|ͣ,content=undertake| +Ǿӭ V congratulate|ף,cause=festival| + N expression| +ȥ V cease|ͣ,content=undertake| +ȴ V cease|ͣ,content=undertake| + V reject|ؾ + V die| + N publications|鿯,#expression| + V congratulate|ף,cause=festival| + V discharge| +л V reject|ؾ + V farewell| + N expression| +ְ V cease|ͣ,content=undertake| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȱ N emotion|,like|ϧ,desired| +ȱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ȸ N human|,family|,male| +ȹ N vegetable|߲ +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ƽ N human|,kindhearted| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,royal|,female|Ů + N material|,?tool|þ + N material|,liquid|Һ,*decorate|װ + N tool|þ,generic|ͳ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + N stone|ʯ,material| +ש N material|,*build| + N expression| + N text| + N text|,past| +ʵ N publications|鿯,#expression| +ʵ༭ N human|,*compile|༭,literature| +ʶ N expression| +ʷ N knowledge|֪ʶ,#regulation|,#language| +ʸ N part|,%expression|,body| +ʸ N part|,%expression|,body| +ʻ N expression|,mass| +ʾ N expression|,mass| + N attribute|,kind|,&expression| + N information|Ϣ,#music| + N part|,%expression| + N expression| +ͷ N part|,%expression|,head|ͷ +β N part|,%expression|,tail|β + N attribute|,kind|,&expression| + N attribute|,property|,&language| + N information|Ϣ,#expression| + N expression| +Դ N knowledge|֪ʶ,#expression| +׺ N part|,%expression|,head|ͷ,tail|β + N expression| + ADJ aValue|ֵ,kind|,special| +˵ V exposure|¶ +˺ ADV aValue|ֵ,time|ʱ,future| +˼ ADJ aValue|ֵ,kind|,special| +˼ ADV location|λ,special| +˿ N time|ʱ,now| +˷ V happen|,manner=many| +˾ N attribute|,scene|,special|,&physical| +ʱ N time|ʱ,now| +ʱ˿ N time|ʱ,now| + CONJ {supplement|ݽ} + V salute|¾ +¾ V salute|¾ + ADV location|λ + V irritate|ŭ + V kill|ɱ,manner=hidden|,crime| + V mobilize| + N shape|,acute| + V stab| +̴̲ V speak|˵ +̵ N weapon|,*stab| +̶ ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ +̹ ADJ aValue|ֵ,temperature|¶,cold| +̻ N tree| +̼ V irritate|ŭ +̼ V mobilize| +̼ ADJ aValue|ֵ,performance|,#irritate|ŭ +̿ N human|,*kill|ɱ,crime| + V itch| + V exile|,police| +ɱ V kill|ɱ,manner=hidden|,crime| + V stab|,Vresult|,result=wounded| +̽ V scout| + N tool|þ,*decorate|װ,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V itch| + N human|,*stab| + N beast| + V grant| + N tool|þ,generic|ͳ,$GiveAsGift| +͸ V protect| +ͽ V teach| + V grant| + CLAS ActUnit|,&event|¼ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N attribute|,sequence|,&entity|ʵ + NUM qValue|ֵ,sequence|,ordinal| +γ N human|,occupation|ְλ,official|,*manage| +δ½ N earth| +ε ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ε ADV aValue|ֵ,sequence| +ε N attribute|,sequence|,&entity|ʵ +λ N artifact|˹,commercial|,useless|,generic|ͳ +μ ADJ aValue|ֵ,importance|,secondary| +μȦ N part|,%implement|,#electricity| +Ů N human|,family|,female|Ů +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N time|ʱ,day|,future| + N sound| + N sound| + ADJ aValue|ֵ,importance|,secondary| + N stone|ʯ,mine| + N tree| + N attribute|,frequency|Ƶ,&event|¼ + N attribute|,sequence|,&entity|ʵ +Ҫ ADJ aValue|ֵ,importance|,secondary| + V inferior| +֮ V inferior| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,family|,male| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N attribute|,ability|,#listen|,&AnimalHuman| + N attribute|,ability|,able|,#listen|,&AnimalHuman| +ϻ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,wise|,&human| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ,Ϳһʱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ӱ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,color|ɫ,green| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +а ADJ aValue|ֵ,color|ɫ,blue|,light| +а׶ N part|,%vegetable|߲,body| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,color|ɫ,green| +л N part|,%vegetable|߲,body| + ADJ aValue|ֵ,color|ɫ,green| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| +Ҵææ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +æ ADJ aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,importance|,secondary| + V conduct|ʵʩ + V engage| + V include| + V obey|ѭ + PREP {LocationIni} + PREP {TimeIni} + PREP {source} +Ӳ ADV {neg|} +ӳ V discuss|,manner=cautious| +Ӵ ADV aValue|ֵ,time|ʱ,now| +ӴԺ ADV aValue|ֵ,time|ʱ,future| +Ӷ ADJ aValue|ֵ,behavior|ֹ,passive| +Ӷ CONJ {supplement|ݽ} +ӷ N human|,crime|,undesired|ݬ +Ӹйʶ ADJ aValue|ֵ,ability|,able|,$sense|о +ӹŵ ADV aValue|ֵ,duration|,TimeLong| +ӹ ADV aValue|ֵ,duration|,TimeLong| +Ӽ˰ N expenditure| +Ӽ V obey|ѭ,content=simple| +ӽ V engage|,content=teach|,education| +ӽԺ ADV aValue|ֵ,time|ʱ,future| +Ӿ N expression| +Ӿ V include|,ResultWhole=army|,military| +ӿ ADV aValue|ֵ,behavior|ֹ,lenient| + ADV aValue|ֵ,frequency|Ƶ,often| + V cease|ͣ,content=(prostitution|) +˰ N expenditure| +㿪ʼ V start|ʼ + V disappear|ʧ + V obey|ѭ,content=aspiration|Ը +ǰ ADJ time|ʱ,past| +ǰ N time|ʱ,past| + ADV aValue|ֵ,behavior|ֹ,lenient| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V include|,ResultWhole=army|,military| + ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ݲ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V obey|ѭ,content=persuade|Ȱ˵ +ʦ V engage|,content=study|ѧ + V engage| + V handle| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| + V BeMember| + ADV aValue|ֵ,earliness|,early| + V happen| +ͷ ADV aValue|ֵ,frequency|Ƶ,again| +ͷ ADV aValue|ֵ,time|ʱ,head|ͷ +ͷ V start|ʼ +δ ADV {neg|} +޵ ADV aValue|ֵ,behavior|ֹ +С ADV aValue|ֵ,time|ʱ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,behavior|ֹ,strict| +ҵ V obtain|õ,possession=occupation|ְλ +ҵԱ N human|,#occupation|ְλ,employee|Ա +һ ADJ aValue|ֵ,behavior|ֹ,faithful| +ҽ V engage|,content=cure|ҽ,medical|ҽ + V engage|,content=entertainment|,entertainment| +Ӱ V engage|,content=entertainment|,entertainment| + ADV aValue|ֵ,behavior|ֹ,WellTreat|ƴ +絽 ADV aValue|ֵ,duration|,TimeLong| + V engage|,content=politics|,politics| + PREP {source} + ADV aValue|ֵ,behavior|ֹ,strict| + V obey|ѭ,content=persuade|Ȱ˵ + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N physical|,mass| + N tree|,mass| +Լ V ComeTogether| + N tree| + V grow|ɳ,manner=exuberant|ï + V happen| + N publications|鿯,mass| + ADJ aValue|ֵ,color|ɫ,colored| + V approach|ӽ + V gather|ɼ +շ V MakeTrouble| +շ V gather|ɼ,possession=money| +պ V ComeTogether| +պ ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ +պ V create|,manner=careless| +ռ V ComeTogether| +ռ V gather|ɼ +Ǯ V gather|ɼ,possession=money| + ADV {comment|} +Ȥ V please|ȡ + V MakeTrouble| + V WhileAway| + V benefit| + V add| + V add| + V gather|ɼ + V gather|ɼ,result=sufficient| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| +ֱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ֱ ADJ aValue|ֵ,performance|,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ֲ N material|,?clothing|,coarse| +ֲ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ֲ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ֲ赭 N edible|ʳ,thrifty| +ִ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ִ ADJ aValue|ֵ,SoundVolume|,loud| +ִ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ַ N material|,#clothing| +ַ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ַ ADJ aValue|ֵ,quality|,crude|ª,agricultural|ũ +ַ ADJ aValue|ֵ,style|,free| +ֹ V estimate|,manner=simple| +ֺ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֻ N material|,?clothing| +ֻ N text|,vulgar|,undesired|ݬ +ֻ N fact|,do|,engage|,crude|ª +ּӹ V produce|,simple|,industrial| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +³ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,simple| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,rash|ç + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ attribute|,behavior|ֹ,vulgar|,undesired|ݬ +׵ N human|,evil|,undesired|ݬ + V calculate|,manner=simple| +ͨ V know|֪,manner=simple| +ϸ N attribute|,fineness|ϸ,&physical| +ϸ N attribute|,quality|,&act|ж + ADJ aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ĵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +֦Ҷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,useless|,generic|ͳ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,size|ߴ,big| +׳ ADJ aValue|ֵ,SoundVolume|,loud| +׳ ADJ aValue|ֵ,fineness|ϸ,widediameter| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N emotion|,#love|,jealous|ʼ + N material|,#food|ʳƷ,$eat|,sour| +׹ N human|,*love|,*jealous|ʼ +׾ N emotion|,#love|,jealous|ʼ + N fruit|ˮ + N chemical|ѧ +̳ N human|,*love|,*jealous|ʼ + N emotion|,#love|,jealous|ʼ + V ComeTogether| + CLAS NounUnit|,&inanimate|,&plant|ֲ + ADJ aValue|ֵ,newness|¾,new|,desired| +ӵ V ComeTogether| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + V urge|ʹ +ٳ V benefit| +ٷ V urge|ʹ +ٽ V urge|ʹ +ٽ N institution|,*urge|ʹ + V urge|ʹ +ʹ V urge|ʹ +ϥ V sit|,manner=BeNear| +ϥ̸ V talk|̸,manner=sincere| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + V sell|,means=disseminate|,commercial| +֯ N InsectWorm| + V jump| + V rob| + V rob|,royal| +۶ V rob| +۶ V rob|,royal| +۶ N human|,*rob|,royal| +۸ V alter|ı,StateIni=true|,StateFin=fake|α +λ V rob|,possession=power|,royal| + V alter|ı + V expel| + V flee| +ܷ V attack| + V flee| + V destroy| +ݲ V damage| +ݻ V destroy| +ݿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N character|,surname|,human|,ProperName|ר +Ρ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + V SpeedUp|ӿ + V urge|ʹ +߰ V urge|ʹ +߱ V urge|ʹ +߲ V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ +ߴ V urge|ʹ +߷ V SpeedUp|ӿ,scope=fat|,agricultural|ũ +߻ V SpeedUp|ӿ,industrial| +߻ N chemical|ѧ,*SpeedUp|ӿ,industrial| +߻ѻ V SpeedUp|ӿ,industrial| +߻ N result|,*SpeedUp|ӿ,industrial| +߿ V urge|ʹ,ResultEvent=return|,#money|,commercial| +ᵯ N weapon|,$firing|,*expel|,#uprise|,#police| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#sleep|˯ + N music|,*CauseToDo|ʹ,#sleep|˯ + N method|,*CauseToDo|ʹ,#sleep|˯ +ҩ N medicine|ҩ,*CauseToDo|ʹ,#sleep|˯ + V urge|ʹ,manner=endeavour| + N human|,*urge|ʹ,#endeavour| + V CauseToDo|ʹ,ResultEvent=drain|ų,medical|ҽ + V urge|ʹ + V SpeedUp|ӿ,scope=GiveBirth|,agricultural|ũ +˷ܽ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| + ADJ aValue|ֵ,performance|,*CauseToDo|ʹ,#weep| + V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ + V SpeedUp|ӿ,scope=ripe|,agricultural|ũ + V urge|ʹ,ResultEvent=return|,commercial| +¼ N medicine|ҩ,*CauseToDo|ʹ,#vomit|³ +ծ V urge|ʹ,ResultEvent=return|,#money|,commercial| + V urge|ʹ,ResultEvent=return|,#money|,commercial| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,taste|ζ,crisp|,desired| + ADJ aValue|ֵ,taste|ζ,tender|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N attribute|,hardness|Ӳ,crisp| + N fruit|ˮ + V tired|ƣ + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V drill|ϰ + ADJ aValue|ֵ,color|ɫ,green| + N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +΢ N land|½ + N place|ط,village| +峤 N human|,#occupation|ְλ,official|,#village| + N regulation|,village| + N location|λ,%village|,#mouth| + N place|ط,village| + N human|,*reside|ס,*function|,#village| + N house| +ͷ N location|λ,%village|,#mouth| +կ N place|ط,village| + N place|ط,village| +ׯ N place|ط,village| + N place|ط,village| + V AmountTo|ܼ + V ComeTogether| + V SetAside| + V SetAside|,commercial| + V alive| + V cherish|Ļ + V exist| + V keep| + V store| +永 V record|¼ + V store|,purpose=check| +泵 N facilities|ʩ,@store|,#LandVehicle| +洢 V store| +洢 N quantity|,amount|,$store|,&natural|Ȼ,mine| +洢 N part|,%computer| +浥 N bill|Ʊ,#wealth|Ǯ +浵 V store| + V ^discuss| + V SetAside| + N bill|Ʊ,#wealth|Ǯ + V alive| + N quantity|,rate|,alive|,&animate| + N artifact|˹,commercial|,generic|ͳ + V SetAside|,patient=money|,commercial| + N money|,$SetAside| + N quantity|,amount|,&livestock| + V stay|ͣ +ȡ V store|,#computer| + V SetAside|,commercial| + V reside|ס +ʳ V StomachTrouble|֢ + V alive| + V ExistAppear| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V cherish|Ļ + V cherish|Ļ + V exist| + N document|,@record|¼,#SetAside|,#money| +ִ N bill|Ʊ,#wealth|Ǯ + V SetAside| + N part|,%computer| +ߡ N document|,@record|¼,#SetAside|,#money| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| +粽 V follow| +粽 V refuse|,content=surrender| +粽 V BeUnable| +ݲ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + N space|ռ,small|С + N emotion| + N time|ʱ,TimeShort| + N emotion| + V discuss| +ĥ V discuss| + V discuss| + V discuss| + V assemble|ۼ + V compile|༭ + V pick|ʰ + V mediate| +Ū V incite|ָʹ +Ū V tease|ȡ +Ҫ V compile|༭ +Ҫ N text| + V rub|Ħ + N tool|þ,*wash|ϴ +ĥ V rub|Ħ + V PlayWith|Ū +ϴ V wash|ϴ + V wash|ϴ + V arrange| + N method|,*use|,#expression|,#compile|༭ +ʩ N method| +ֲ V suffer|,manner=sudden| + V handle| +ò V handle|,manner=improper| +õõ V handle|,manner=proper| +ʧ V handle|,manner=improper| +ԣ V handle|,manner=suitable| + V MakeLower| + V defeat|սʤ + V defeat|սʤ + V discourage|ˮ + V wounded| + N phenomena|,undesired|ݬ,#unfortunate| + V BeAcross|ཻ + ADJ aValue|ֵ,content|,mixed| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V grind|ĥ + N result|,wrong|,undesired|ݬ + N emotion|,FondOf|ϲ + N fact|,police|,wrong| + N character|,wrong| + V turn|Ťת,patient=LandVehicle| + N result|,wrong|,undesired|ݬ + V IllTreat| + V blame|Թ,manner=improper| + V lose|ʧȥ + N text|,wrong| + V inlay|Ƕ,material=metal| + N experience|,wrong| + V escape| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V mad| + V exist|,manner=disperse|ɢ + ADJ aValue|ֵ,scene|,beautiful| +ʧ V lose|ʧȥ +λ N disease| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ +ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V inlay|Ƕ,material=metal| + ADJ aValue|ֵ,content|,mixed| + N character|,wrong| + ADJ aValue|ֵ,content|,mixed| +۸ ADJ aValue|ֵ,content|,mixed| + V TakeVehicle| + V add| + V build| + V connect| + V lift| + V establish|,PatientProduct=community|,entertainment| + V establish|,PatientProduct=part|,#institution| + V associate| + V associate| + V speak|˵ + V TakeVehicle|,patient=LandVehicle| + V build| + V TakeVehicle| +⳵ V TakeVehicle|,patient=LandVehicle| + V TakeVehicle|,patient=ship| + V TakeVehicle|,#vehicle|ͨ,manner=wrong| + V TakeVehicle|,patient=LandVehicle|,manner=wrong| + V cooperate| + N human|,friend| + V TakeVehicle|,patient=LandVehicle| +糵 V TakeVehicle|,patient=LandVehicle| +ɻ V TakeVehicle|,patient=aircraft| + V build| + V TakeVehicle|,patient=LandVehicle| + V speak|˵ + V associate| + V include|,ResultWhole=community|,#eat| + V TakeVehicle|,patient=LandVehicle| +Ƴ̳ V TakeVehicle|,patient=LandVehicle| + V build|,PatientProduct=bone| + V show|,content=arrogant| + V help|,purpose=CarryOnBack| + V stand|վ,location=part| + V build| + V establish| + V connect| + V BeNear| + V relate|й + V rescue| + V human|,*TakeVehicle| + V transport|,patient=human| + V fall| + V reply| + V mix| +ǻ V reply| +ǻ V talk|̸ + V build|,PatientProduct=facilities|ʩ + V recommend|Ƽ,purpose=GetMarried| + V build| + V help| + V sell| + V transport| + V TakeVehicle| +] V speak|˵ +ڨ V speak|˵ + V AmountTo|ܼ + V LeadTo|ͨ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V arrive| + V express|ʾ + V fulfil|ʵ + V fulfil|ʵ,patient=standard|׼ + V fulfil|ʵ +ɽ V fulfil|ʵ,patient=commercial| +Э V fulfil|ʵ,patient=ExpressAgreement|ʾͬ +ﵩ ADV aValue|ֵ,duration|,TimeLong| +ﵽ V fulfil|ʵ + N place|ط,ProperName|ר,(Australia|Ĵ) + N knowledge|֪ʶ,#animate| +ٹ N human|,official|,HighRank|ߵ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,ProperName|ר + N human|,(Dahoma|) +₩ N place|ط,capital|,ProperName|ר,(Senegal|ڼӶ) +│ N place|ط,capital|,ProperName|ר,(Bangladesh|ϼ) +˹ N place|ط,city|,ProperName|ר,(US|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) +˹ķ N place|ط,capital|,ProperName|ר,(Tanzania|̹ɣ) +ķ N weapon|,$firing| + V express|ʾ,content=thought|ͷ + N unit|λ,&strength| + V recompense| + V reply| + N result| + V reply| + V speak|˵ + V reply| + N text|,$reply| + V reply| + V reply|,content=wrong| + V reply| + V reply| + N readings|,$reply|,#exam| + V reply|,time=exam| + V reply| + V reply|,time=exam| + V attribute|,kind|,#reply|,#ask|,&text| + V reply|,content=$ask| +л V thank|л + V reply|,time=exam| +Ӧ V agree|ͬ +Ӧ V reply| + CLAS NounUnit|,&inanimate| + V TakeOutOfWater| + V associate| + V beat| + V build| + V buy|,commercial| + V calculate| + V catch|׽ס,agricultural|ũ + V compile|༭ + V damage| + V dig|ھ + V draw| + V engage| + V exercise|,sport| + V fight| + V gather|ɼ + V lift| + V mix| + V produce| + V remove| + V send| + V spray| + V use| + V weave| + V wrap| + V write|д + PREP {LocationIni} + PREP {TimeIni} + V subtract|,patient=price|۸,commercial| + V drill|ϰ,content=firing| +г N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| + V issue|ַ,possession=coupon|Ʊ֤ + V ill|̬ + V defeated| + V defeat|սʤ + V beat| + V MakeUp|ױ + V grow|ɳ,#crop|ׯ + V dump| + V wrap| +Ʊ V guarantee|֤ +Ʊ V guarantee|֤ +򱧲ƽ V help|,scope=unfortunate| +ȷ V quote|,patient=example|ʵ +򲹶 N repair| +򲹶 N repair| +򲻿 ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ + V gather|ɼ,possession=FlowerGrass|,means=break|۶ +ݸ V compile|༭,PatientProduct=text| +ݾ V RashlyAct|,result=exposure|¶ + V cease|ͣ + V shiver| + V beat|,patient=crop|ׯ,purpose=gather|ɼ,agricultural|ũ + V forming|γ,PatientProduct=place|ط,purpose=perform|,entertainment| +һƬ V merge|ϲ +ಲ V exposure|¶,#body| + V exposure|¶,#foot| + V attack|,military| + V guide| + V seek|ıȡ + PREP {LocationThru} + PREP {TimeIni} + V plan|ƻ,manner=wrong| + V plan|ƻ,manner=wrong| + V recreation| + V defeat|սʤ,politics| +ظ V GoBack| +û ADJ aValue|ֵ,relatedness|,intimate|,desired| + V guess|²,purpose=recreation| + V AtEase| + V eat| + V compile|༭,PatientProduct=text| + V do|,content=elementary| + V PutInOrder| + V entice|,means=GiveAsGift|,crime| + V manage| + V MakeSound|,content=time|ʱ +籨 V transmit|,patient=letter|ż +绰 V associate|,instrument=tool|þ + V destroy| + V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ + V excite|ж + V fight| + V compete| +̶ V engage|,content=affairs| +̹ V engage|,content=affairs| + V break|۶ + V cease|ͣ + V subtract|,patient=price|۸,commercial| + V shiver| + V beat|,#skin|Ƥ + V discharge| + V dispatch|Dz + V pass|ȹ + N method| + V defeat|սʤ + V reverse|ߵ + V alter|ı,StateIni=fail|ʧ,StateFin=succeed|ɹ + V draw|,ContentProduct=shape|,square| + V draw|,ContentProduct=shape|,square| + V associate|,instrument=tool|þ + V defend| + V engage| +Ҿ V salute|¾,means=CausePartMove| + V recreation|,patient=MusicTool|,entertainment| + V uneasy| +Ȼ N machine|,*separate|,#crop|ׯ,agricultural|ũ +ǻ V speak|˵,manner=arrogant| +˾ V accuse|ظ,police| + V disseminate|,commercial| + V roll| + V tease|ȡ +Ƿ V respire| + V beat| +Ƿ V respire| +Ƿ N human|,*respire| + V destroy|,patient=crime|,police| + V MakeTrouble| + V MakeSound|,#sleep|˯,#ill|̬ + V MakeSound|,#sleep|˯,#ill|̬ + V slide| + V damage| +ζ V walk|,manner=wave|ڶ +Ʊ V MoveItBack| + V lighting|ȼ + N tool|þ,*lighting|ȼ + V attack| + V beat| + N MusicTool| + V do|,content=elementary| +ҽ V rob|,source=family| + V fight| + V eat| +ɽ V fight|,take|ȡ,#country| +򽻵 V associate| + V MakeTrouble| + V rob| + V twine| + V GoInto| + V subtract|,patient=price|۸,commercial| + V rescue| + V TurnOn| + V open| +촰˵ ADV {comment|} + V stab| + V MakeSound| + V defeat|սʤ + V associate| + V transmit| + V SelfMove| + V TakeOutOfWater| +Ա N human|,#occupation|ְλ,*TakeOutOfWater| + V WeatherBad| + V compete| +̨ V compete| +ǹ V attack|,manner=secret| +ǹ V firing| +ǹ V firing|,manner=secret| + V manage| + V guess|² + V look| + V engage|,content=catch|׽ס,agricultural|ũ +㹤 V engage|,content=affairs| + V engage|,content=affairs| + V MakeSound| + V MakeTrouble| +ˮ V damage| + V HideTruth| + V IllTreat|,#beat|,#ExpressAgainst|Ǵ + V HideTruth| + V hide| + V cry| +ĥ V brighten|ʹ + V recreation| + V recreation|,instrument=tool|þ + V swollen| + V exhale| +ƨ V swollen| + V bump|ײ,StateFin=OutOfOrder| + V remove| +Ƴ V disobey|Υ,content=regulation| +ɳʵ V ask|,manner=attentive|ϸ + V subtract|,patient=price|۸,commercial| + V subtract|,patient=price|۸,commercial| + V feed|ι,patient=gas| + V mobilize| +Ͳ N tool|þ,*feed|ι,#gas| +ǰʧ V FallDown| +ǰվ V LeaveFor|ǰ +ǹ V firing|,instrument=weapon| + V SeekPleasure|Ѱ + V seek|ıȡ + V exercise|,instrument=tool|þ +Ȥ V tease|ȡ +Ȧ V circle| +Ⱥ V fight|,partner=mass| + V MakeTrouble| + V beat| + V include|,manner=secret| +乬 V despise| +ʮ˲ V ExpressAgainst|Ǵ +ɢ V separate| +ɢ V spread| +ɨ V remove| +ɨ V wipe| +ɨ V wipe|,patient=room| +ɨ V remove|,patient=room| +ɨս V wipe|,patient=place|ط,#fight|,military| +ɱ N fact|,fight| + V WeatherBad| + V beat|,result=wounded| + V write|д +ʤ V win|ʤ + N human|,crime|,undesired|ݬ + V express|ʾ,instrument=hand| +ˮ V gather|ɼ,possession=liquid|Һ + V plan|ƻ + V calculate|,instrument=tool|þ + V plan|ƻ + V bump|ײ,StateFin=OutOfOrder| +̥ V cease|ͣ,content=pregnant|,#medical|ҽ +̽ V ask| + V rob|,possession=country|,politics| + V win|ʤ + V ask| +ͨ V fulfil|ʵ +ͨ V endeavour| +ͷ V beat|,PartOfTouch=head|ͷ +ͷ V guide| +ͷ V guide| +ͷ V guide| + V defeat|սʤ +ù V refuse| + V ask| +ȷ V guide| + V start|ʼ,content=firing| + V succeed|ɹ + V remove| +С V tell| +С V plan|ƻ,manner=sly| + PP aValue|ֵ,behavior|ֹ,sincere| + V eat|,patient=good| +ڻ V protect| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V stab| + V draw| + V experiment|ʵ +ҩ V spray|,patient=chemical|ѧ +ҹ V endeavour| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡֽ N paper|ֽ,*print|ӡˢ +Ӯ V win|ʤ +Ӳ V endeavour| +ʫ N text| +λ V fight| +λ V roam| + V catch|׽ס,agricultural|ũ +Ԯ V attack|,military| +Բ V mediate| +Ӷ V engage|,content=secondary| + V produce|,industrial| +ս V shiver| + V fight|,military| +к V SayHello|ʺ +к V persuade|Ȱ˵ +к V tell| + V BecomeLess|,commercial| +ۿ V BecomeLess|,commercial| +ۿ V FitNot| + V cure|ҽ + V fulfil|ʵ + V ShowOff|ҫ + V plan|ƻ + V seek|ıȡ +ס V cease|ͣ +ת V rotate|ת +׮ V bury| + V write|д +ָ V text| +ֻ N tool|þ,*print|ӡˢ +Ա N human|,#occupation|ְλ,*write|д + V beat|,PartOfTouch=skin|Ƥ + V sit|,religion|ڽ +ö V StomachTrouble|֢ +ö V ill|̬,#respire| + V end|ս + V sleep|˯ +˯ V sleep|˯ + V MakeSound|,#sleep|˯,#ill|̬ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,clan| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,age|,&animate| + N attribute|,size|ߴ,&physical| + N fact|,important|,#police| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V exposure|¶ +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N time|ʱ,morning| + V exposure|¶ + V defeated| + V defeat|սʤ + N part|,%InstitutePlace|,education| + ADJ qValue|ֵ,amount|,many| +뱲 N time|ʱ,#alive|,TimeLong|,half| + V handle| + N system|ƶ +󱥶 V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +󱥿ڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +۸ V enjoy|,content=look|,#beautiful| +۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| + N attribute|,status|,education|,&human| +Ӫ N facilities|ʩ,space|ռ,@reside|ס +Ӫ N part|,%institution|,*order|,main|,military| + N PenInk|ī,*write|д + ADJ qValue|ֵ,amount|,many| + N text|,$write|д + V excrete|й,patient=waste| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N human|,military| + N army| + N food|ʳƷ + N human|,family|,male| + V aValue|ֵ,ability|,maintain|,desired| + ADV aValue|ֵ,degree|̶,more| +е N place|ط,country|,ProperName|ר,(Europe|ŷ) +е߼ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,distance|,far|Զ,#walk| + N attribute|,distance|,far|Զ,&walk| + ADJ aValue|ֵ,distance|,far|Զ,#walk| + ADJ qValue|ֵ,amount|,many| +󲿷 ADJ qValue|ֵ,amount|,many| +ͷ ADJ aValue|ֵ,size|ߴ,big| +С V lavish|˷ + N edible|ʳ,foreign| + N food|ʳƷ,important| + N edible|ʳ,foreign| +ٴ V engage| + N part|,%AnimalHuman|,viscera| +󳦸˾ N bacteria|΢ + N attribute|,outlook|ǰ,&event|¼ + N water|ˮ,#waters|ˮ + N LandVehicle| + N human|,#occupation|ְλ,*drive|Ԧ,#ship|,#machine| + N human|,#occupation|ְλ,royal| + N place|ط,city|,important| +Դ V consume|ȡ,manner=extravagant| +һ V surprise| + N beast| +Ѫ V bleed|Ѫ +󴵴 V ShowOff|ҫ +С ADJ aValue|ֵ,standard|׼,average|,desired| +ȴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V fight|,manner=fierce| + ADV aValue|ֵ,degree|̶,very| +󷽷 ADJ aValue|ֵ,demeanor|,gracious|,desired| +СС ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N beast| + ADJ aValue|ֵ,courage|,brave|,desired| + N tool|þ,*cut|,*split|ƿ,*stab| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N method|,fair| + N reason| + N reason|,important| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N human|,enemy|,strong|ǿ + ADV {comment|} + N place|ط + N fact|,great|ΰ + N law|ɷ,religion|ڽ + N room|,%facilities|ʩ + N room|,%facilities|ʩ,religion|ڽ +󶯸ɸ V fight| +󶯸λ V angry| + N facilities|ʩ,route|·,important| + N part|,%AnimalHuman|,nerve| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADV aValue|ֵ,possibility|,almost| +󶼻 N place|ط,city|,important| + N place|ط,city|,important| + N human|,fat|,#eat| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N institution| + N part|,%army|,military| + ADJ qValue|ֵ,amount|,many| + ADV {comment|} + ADJ qValue|ֵ,amount|,many| + N qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,many|,&physical| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +޵ ADJ aValue|ֵ,size|ߴ,big|,undesired|ݬ + V ExpressAnger|ʾŭ + N law|ɷ + ADV {comment|} + ADJ aValue|ֵ,appearance|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| +ʴ V TalkNonsense|Ϲ˵ + N part|,%physical| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N wind|,strong|ǿ,#WeatherBad| + N phenomena|,unfortunate|,hardship| + N wind|,strong|ǿ,#waters|ˮ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,#occupation|ְλ,official|,past| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,#ship| +󸹱 ADJ aValue|ֵ,fatness|,fat| +󸹼 N human|,rich|,desired| +Ƥ N FlowerGrass|,?medicine|ҩ,$eat| + N human|,rich| + ADJ aValue|ֵ,content|,simple| + N part|,%information|Ϣ,heart| + ADV {comment|} + V endeavour| + N part|,%information|Ϣ,bone| + N human|,family|,male| + N human|,male| + N human|,strong|ǿ,male| + N tool|þ,*communicate| + N result|,#succeed|ɹ,desired| +󹦸 V succeed|ɹ + ADJ aValue|ֵ,strength|,strong|ǿ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human|,royal| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N human|,family|,female|Ů + N MusicTool| + N shows| + N clothing|,#body| + N attribute|,rank|ȼ,&thing| + N part|,%building|,mouth|,important| + N attribute|,scene|,great|ΰ,&inanimate| +ģ ADJ aValue|ֵ,range|,extensive| +ģ ADJ aValue|ֵ,range|,extensive|,desired| +ģ ADJ weapon|,*destroy| + N food|ʳƷ,generic|ͳ + N waters|ˮ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N time|ʱ,day|,cold| +󺰴 V cry|,manner=loud| +󺰴 V disseminate| + N phenomena|,undesired|ݬ,waterless|,#weather| + V expect|,content=lucky| + N human|,big| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʱ N time|ʱ,important| + N MusicTool| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,name|,&human| + N human|,#power|,strong|ǿ,desired| + V disseminate| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,desired|,$like|ϧ + N place|ط,military| + N time|ʱ,future|,year| + N time|ʱ,future|,day| + V cry| + N human|,rich|,desired| + N text|,$boast| + N FlowerGrass|,?medicine|ҩ,$eat| + N fact|,discuss| + N fact|,discuss|,regular| + N room| + N human|,mass| + N human|,mass| + N fire| +󲻽 V ignorant|֪ + ADJ aValue|ֵ,circumstances|,happy|,desired| +󼪴 ADJ aValue|ֵ,circumstances|,happy|,desired| + N FlowerGrass|,?medicine|ҩ,$eat| + N plan|ƻ,important| + N community|,family|,glorious| + N human|,able|,desired| + PRON {ThirdPerson|,mass|} + V subtract|,range=extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,military| + N human|,official| + N waters|ˮ + N tool|þ,*reward|,$GiveAsGift|,desired| + N fact|,compete|,sport| + V cry| + N facilities|ʩ,route|· +С N facilities|ʩ,route|· + N result|,win|ʤ + V excrete|й,patient=waste| + N human|,family|,female|Ů + N human|,strong|ǿ,female|Ů + N part|,%clothing|,body| +С V flurried| + N human|,family|,male| + N attribute|,circumstances|,main|,&entity|ʵ + ADV aValue|ֵ,range|,extensive| + N army|,important|,#military| + N human|,mass| + CLAS unit|λ,&heat| + V exam|,education| +ͳ N LandVehicle| + V fulfil|ʵ,patient=aspiration|Ը,scope=eat| + V satisfied| + N human|,rich|,desired| + N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ +ϴ N human|,foolish|,undesired|ݬ +ʯ N stone|ʯ + N room| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N humanized|,ProperName|ר +ʿ N human|,strong|ǿ + N place|ط,city|,ProperName|ר,(China|й) + N part|,%house|,bone| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N material|,?food|ʳƷ,$eat| + ADJ aValue|ֵ,age|,over| +в N disease| +¥ N house| +· N facilities|ʩ,route|· +· N artifact|˹,commercial|,ordinary|,generic|ͳ +½ ADJ aValue|ֵ,property| +½ N earth| +½ N part|,%country|,ProperName|ר,(China|й) +½ N earth| + ADV aValue|ֵ,range|,ish| + N part|,%information|Ϣ,heart| + N thinking|˼,substantial|ʵ + N human|,family|,female|Ů + N human|,female|Ů + N crop|ׯ,?material|,#addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ + N fish| + N fish| +ʿ N place|ط,capital|,ProperName|ר,(Syria|) + N crop|ׯ +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +è N beast| + N part|,%building|,mouth| + N material|,?food|ʳƷ,#crop|ׯ + N part|,%entity|ʵ,skin|Ƥ + ADV aValue|ֵ,degree|̶,ish| + N InsectWorm|,undesired|ݬ + V announce| + N attribute|,name|,&human| + ADJ aValue|ֵ,reputation|,glorious|,desired| +Ȼ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren| +Ĵָ N part|,%AnimalHuman|,hand| +ľ N tool|þ,*beat| + N phenomena|,undesired|ݬ,#unfortunate| + N part|,%AnimalHuman|,head|ͷ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| + N time|ʱ,year| + N time|ʱ,year|,desired|,#crop|ׯ +һ N time|ʱ,festival|,@congratulate|ף +ҹ N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů + N human|,female|Ů,family| + N human|,*boast| + N weapon|,*firing| +Ա N human|,#occupation|ְλ,*judge|ö,police| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N LandVehicle| + ADJ qValue|ֵ,amount|,many| + N attribute|,effect|Ч,&human|,&organization|֯ +ҵ N human|,#occupation|ְλ,commercial| + N fact|,respire| + N gas|,#weather| + N sky| +ѹ N attribute|,strength|,&gas| +ǧ N inanimate| +Ǯ N money|,many| +ǰ N time|ʱ,past|,year| +ǰ N time|ʱ,past|,day| + N facilities|ʩ,route|·,#waters|ˮ + N place|ط,ProperName|ר,(China|й) + N time|ʱ,day|,#congratulate|ף + N time|ʱ,day|,*congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N crop|ׯ,$collect|,#autumn| + N fact|,collect|,#crop|ׯ,#autumn| + N time|ʱ,season|,#collect|,#autumn| + N drinks|Ʒ,$addict|Ⱥ + N material|,?drinks|Ʒ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + N human|,adult| + N human|,royal| + N human|,desired|,important| + N fact|,compete| +ɨ V clean|ʹ +ɩ N human|,family|,female|Ů +ɩ N human|,female|Ů +ү N human|,#wealth|Ǯ,desired| +ͷ N human|,undesired|ݬ + V cease|ͣ,content=punish|,police| + N human|,family|,female|Ů + ADJ aValue|ֵ,SoundVolume|,loud| + V announce| +к N human|,*cry| +ʦ N human|,able|,desired| +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*cook| +ʧ V disappointed|ʧ +ʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +ʹ N human|,female|Ů +ʹ N institution|,diplomatic|⽻ +ʹ N attribute|,rank|ȼ,diplomatic|⽻,&institution| + ADV aValue|ֵ,range|,extensive| + N affairs|,important| + N attribute|,circumstances|,important|,&organization|֯ +¼ N account|,@record|¼,#time|ʱ + N attribute|,outlook|ǰ,&event|¼ + N attribute|,outlook|ǰ,&event|¼ +ִ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N fact|,cure|ҽ + N attribute|,age|,&animate| + N human|,family|,male| + N human|,male| + N time|ʱ,day|,hot| + N quantity|,amount|,many|,&physical| +ˮ N phenomena|,unfortunate|,#water|ˮ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +մ N chemical|ѧ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̤ N attribute|,distance|,&walk| + N room| + N MusicTool| + N human|,#occupation|ְλ,*perform|,entertainment| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + N reason|,important| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + ADV {comment|} +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N time|ʱ,afternoon| + N land|½,#crop|ׯ + N room| +ͬ N phenomena|,intimate|,desired| +ͬС V BeSame|ͬ +ͷ N human|,extravagant|,undesired|ݬ +ͷ N part|,%thing|,important|,body| +ͷ N tool|þ,*cover|ڸ +ͷ N tool|þ,*fasten|˩ + N part|,%AnimalHuman|,leg| + N drinks|Ʒ + N human|,*perform|,glorious|,entertainment| + N human|,able|,desired| + N human|,able|,desired| + N human|,official|,royal| +Ϊ ADJ aValue|ֵ,degree|̶,very| +ξ N human|,#occupation|ְλ,official|,military| +η ADJ aValue|ֵ,courage|,brave|,desired| + N place|ط,(China|й) + N place|ط,(China|й) + N waters|ˮ,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר +ϲ N fact|,desired|,#congratulate|ף +ϲ V joyful|ϲ +Ϸ N shows| +Ϻ N fish| + N house| + V display|չʾ,content=able|,means=endeavour| +ͨ V display|չʾ,content=able|,means=endeavour| +ྶͥ V differ|ͬ + N beast| +С ADJ aValue|ֵ,size|ߴ,big|,small|С +С N attribute|,rank|ȼ,&human|,&organization|֯ +С N attribute|,size|ߴ,&physical| +С N human|,adult|,young| +С N excrete|й,patient=waste| +С V excrete|й,patient=waste| +С N stone|ʯ,#AnimalHuman|,waste|,$excrete|й +У N human|,#occupation|ְλ,official|,military| +Ц V laugh|Ц +д ADJ aValue|ֵ,pattern|ʽ,&character| + N beast| + V mobilize| +ľ V build| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| +ͻ N computer| +۱ N building|,precious| +è N beast| + V repair| +ѡ N fact|,select|ѡ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ̶ N attribute|,status|,education|,&human| +ѧѧ N fund|ʽ,*reward|,#study|ѧ,education| +ѧʦ N human|,#occupation|ְλ,education|,*teach| +ѧ N human|,*study|ѧ,education| +ѩ N RainSnow|ѩ +ѩ N time|ʱ,day| +ѩ׷ V WeatherBad|,#RainSnow|ѩ + N part|,%AnimalHuman|,*bite|ҧ +֮ N attribute|,appearance|,gracious|,&human| + N medicine|ҩ,?addictive|Ⱥ + N material|,#food|ʳƷ,$eat| +Բ V boast| + N bird| + N money|,past| + N waters|ˮ,surfacial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Oceania|) + N place|ط,ProperName|ר,(Oceania|) + N human|,(Oceania|) +ҡ V walk| +ү N human|,family|,male| +ҵ N affairs|,great|ΰ +ҶԷ N disease| + N clothing|,#body| + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N part|,%information|Ϣ,heart| + N reason|,important| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + V abandon|,possession=family|,cause=loyal|Т +ӡ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ӡ N stationery|ľ,*print|ӡˢ + N material|,#food|ʳƷ,$eat| + V exist| +пΪ V worth|ֵ + V exist|,experiencer=human| + ADJ aValue|ֵ,content|,profound| +ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| +Ϊ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| + ADJ aValue|ֵ,size|ߴ,big|,more| + ADJ qValue|ֵ,amount|,many|,more| + N RainSnow|ѩ + V WeatherBad| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ա N human|,official| +Ժ N part|,%house|,space|ռ +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV {comment|} + N time|ʱ,month| +Ժ N house| +Ժ N house| + N time|ʱ,morning| + V incite|ָʹ,patient=thought|ͷ,public| + N food|ʳƷ,ordinary| +ս N fact|,fight| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle|,important| + ADV aValue|ֵ,range|,extensive| +ɷ N human|,desired|,brave| +ָ N part|,%AnimalHuman|,hand| +־ N aspiration|Ը,expect|,desired| + ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + N human|,mass|,ordinary| +ڴý N tool|þ,*disseminate| +ڻ ADJ aValue|ֵ,kind|,ordinary| + N land|½ + N human|,#occupation|ְλ,religion|ڽ +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N human|,*study|ѧ,education| +רԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ȼ N natural|Ȼ +ֱ N readings| + ADJ qValue|ֵ,amount|,many| + V happen| + N text| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N crop|ׯ,?material|,#food|ʳƷ + N clothing|,#body| + N fish| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + V stay|ͣ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ľ V stupefied|ľȻ + N fund|ʽ,^$return| + V BeUnable|,commercial| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,fierce|,crime|,undesired|ݬ +ͽ N human|,fierce|,crime|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V PutOn| + V PutOn|,Vgoingon|չ + N character|,surname|,human|,ProperName|ר + V respect| +ñ V unfortunate| +ʤ N bird| +Т V condole|°,means=PutOn| + V apologize|Ǹ,cause=crime|,means=endeavour| + V TakeCare| + V bring|Я + V do| + V guide| + V own| + N part|,%LandVehicle|,leg| + N place|ط + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + PREP {partof} + V guide|,patient=army|,military| + V ill|̬ + V guide|,ResultEvent=SelfMove| + ADJ aValue|ֵ,property|,own|,#electricity| + V guide| + V guide|,patient=human| + N symbol|,#quantity|,#DoSum| + N metal| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V own|,possession=bacteria|΢,#disease| + N human|,*bring|Я,#bacteria|΢,#medical|ҽ + V bring|Я + V relate|й + V guide| +· V guide|,ResultEvent=SelfMove| +ͷ V guide| +ͷ N human|,*guide| +ͽ V teach|,target=human| + N medicine|ҩ +Т V condole|°,means=PutOn| +޴ɫ ADJ aValue|ֵ,content|,beautiful|,desired| +о V teach|,target=human|,education| + V own| +е ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,possibility|,almost| + V disappear|ʧ + ADJ aValue|ֵ,property|,replace| + N attribute|,clan|,&thing| + V replace| + N time|ʱ + V do|,means=replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ +촦 N part|,%institution|,diplomatic|⽻ + V write|д,means=replace| + N human|,$select|ѡ + V mean|ָ + V replace| + N part|,%InstitutePlace| + N fact|,discuss| + N human|,important| + N community| +ųԱ N human|,#organization|֯ + N text| + V TakeVehicle| + N part|,%language| +ഫ ADJ aValue|ֵ,property|,$PassOn| + N attribute|,similarity|ͬ,different|,&human|,#aged|,#young| + V buy|,means=replace|,commercial| + V manage|,manner=replace| + N symbol| + V replace| + N expenditure| + ADJ aValue|ֵ,property|,replace|,#commercial| + V replace|,scope=teach| + V do|,means=replace| + V do|,means=replace| + N human|,*help| + N human|,*replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,*help| + N human|,*help|,#police| + N human|,*help|,police| + N human|,*replace| + N human|,commercial| + N symbol| + N part|,%language| + V teach| +ʡ N human|,#occupation|ְλ,official|,place|ط +г N human|,#occupation|ְλ,official|,#city| + N collect| + V sell| + V write|д + N knowledge|֪ʶ,#quantity|,#calculate| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + V replace| +Ϊ ADJ aValue|ֵ,property|,replace| + V sell|,means=replace|,commercial| +л V exchange| +л V metabolize|л,medical|ҽ + V do|,means=replace| + N human|,*help|,#MakeOthersKnowledge|ʹ˸֪ + N human|,*replace| + V replace| +Ʒ N physical|,*replace| +֮ V undergo|,content=replace| + N human|,#occupation|ְλ,official|,#country| + V do|,means=replace| + V borrow|,commercial| + V evade|ر + V forgive|ԭ + V lend|,commercial| + V lend| + N part|,%account|,commercial|,#human| + V lend| + V lend|,possession=money|,commercial| + N money|,commercial|,$lend| + CLAS NounUnit|,&physical| + N tool|þ,cubic|,@put| +ݲ N material|,?drinks|Ʒ + N beast| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V entertain|д + V request|Ҫ + V stay|ͣ + V treat|Դ + V wait|ȴ + V request|Ҫ,ResultEvent=measure| + V request|Ҫ,ResultEvent=check| + V stay|ͣ + CONJ {time|ʱ} + V wait|ȴ,content=leave|뿪 + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + V aValue|ֵ,duration|,TimeShort| + V wait|ȴ,content=time|ʱ +۶ V wait|ȴ,content=price|۸,purpose=sell|,commercial| + V request|Ҫ,ResultEvent=check| + V entertain|д,patient=human| + V wait|ȴ,content=text| + V associate| +˴ V associate| +˽ V associate| + V sell| + ADJ aValue|ֵ,property|,$KeepOn|ʹ +ҵ ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ +ҵԱ N human|,*lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,$use| + N fact|,treat|Դ + N payment| + V catch|׽ס + V catch|׽ס,police| + V slack|͵ + ADJ slack|͵ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + V IllTreat| + V delay| + V indulge|,patient=self| + V delay| + V stay|ͣ + V delay| + V CarryOnBack| + N artifact|˹,commercial| + V bear|е + N duty| + CLAS unit|λ,&weight| + V guarantee|֤ + N human|,*guarantee|֤ + V undertake| + V bear|е,content=dangerous|Σ + V bear|е + N tool|þ,space|ռ,*transport|,#medical|ҽ,#rescue| + V fear| + V undertake| +ˮ V transport|,patient=liquid|Һ + V worried|ż + V worried|ż + N artifact|˹,commercial| + N duty| + ADJ aValue|ֵ,color|ɫ,red| + N medicine|ҩ,(China|й) + N bird| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Denmark|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Denmark|) + N money|,(Greenland|) + N human|,(Denmark|) + N language|,#country|,ProperName|ר +Ƥ N medicine|ҩ,(China|й) + N material|,*draw| + N part|,%human|,body| + N emotion|,loyal|Т,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N bill|Ʊ,#wealth|Ǯ + N character|,surname|,human|,ProperName|ר + N document| + ADJ qValue|ֵ,amount|,single| + ADV {emphasis|ǿ} + N computer|,simple| + N human|,commercial| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,range|,pieced|Ƭ + N quantity|,amount|,&crop|ׯ,&vegetable|߲ + N LandVehicle| + N process|,single| + ADJ aValue|ֵ,content|,pure| + ADJ aValue|ֵ,content|,pure|,desired| + ADV {emphasis|ǿ} + N attribute|,content|,pure|,&entity|ʵ + N expression| + N fact|,compete|,sport| +һ V PayAttention|ע + ADV {emphasis|ǿ} + V fight|,manner=single| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,behavior|ֹ,single| + N document|,medical|ҽ,@record|¼,#medicine|ҩ + ADJ aValue|ֵ,range|,pieced|Ƭ + N beast| + V do|,manner=self| + V do|,manner=self|,agricultural|ũ + N SportTool|˶ + N fact|,exercise| + ADJ aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + N facilities|ʩ,route|· +ɹ N MusicTool| + N crop|ׯ + N aValue|ֵ,property|,#chemical|ѧ + N attribute|,price|۸,&thing|,commercial| + N room| + N chemical|ѧ + N inanimate|,generic|ͳ + N bill|Ʊ,#wealth|Ǯ + N expression| +¡ ADJ aValue|ֵ,property|,#GiveBirth| + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N attribute|,name|,&human| +ť ADJ aValue|ֵ,form|״ +Ƭ۾ N tool|þ,*look|,#eye| +ǹƥ ADJ aValue|ֵ,behavior|ֹ,single| +׼ͥ N community|,family| +˴ N furniture|Ҿ,space|ռ,*sleep|˯ +˷ N room| +˼ N room| + N fact|,recreation|,entertainment| + N time|ʱ,day| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,single| + ADJ aValue|ֵ,property|,^GetMarried| + N human|,single|,male|,^GetMarried| + N human|,single|,^GetMarried| + N FlowerGrass| + N symbol|,#quantity| + N chemical|ѧ + N chemical|ѧ +λ N attribute|,amount|,&entity|ʵ +λ N part|,%organization|֯,generic|ͳ +λڲ N location|λ,%organization|֯,internal| + N facilities|ʩ,route|· +˼ N emotion|,love|,desired| + ADJ qValue|ֵ,amount|,single| + ADJ aValue|ֵ,direction|,single| + ADJ aValue|ֵ,form|״ +б N readings| + N regulation| + N attribute|,name|,surname|,&human| + N part|,%animal|,#eye| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +һ ADJ aValue|ֵ,content|,pure| +һ N quantity|,amount|,single|,&entity|ʵ + N clothing|,#body| + N character|,surname|,human|,ProperName|ר + N human|,official|,past| +Ԫ CLAS NounUnit|,&entity|ʵ + N document| + N tool|þ,*cover|ڸ,#sleep|˯ + N character| + V wipe|,manner=gentle| + N tool|þ,*wipe| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N tool|þ,cubic|,@put| +ľ V fear| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,brave| +Ϊ ADJ aValue|ֵ,behavior|ֹ,fierce| + V dare| +̴ N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,viscera| + V fear| + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,liquid|Һ +ʯ N disease| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ʶ N attribute|,courage|,&AnimalHuman|,&organization|֯ +С ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +С N human|,timid| +֭ N part|,%AnimalHuman|,liquid|Һ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N human|,female|Ů,*perform|,entertainment| + N time|ʱ,morning| +Ƕ N human|,female|Ů,*perform|,entertainment| +Ϧ N time|ʱ,TimeShort| +Ϧ֮ ADJ aValue|ֵ,duration|,TimeShort| + N gas| + N material|,*feed|ι,#crop|ׯ + V ize|̬ + N gas| + COOR {but|} + COOR {but|} +Ը ADV {modality|} + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,weak| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,desired| + N fish| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,red|,light| + V ize|̬ + ADJ aValue|ֵ,color|ɫ,yellow|,light| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| + N time|ʱ,season|,idle| + ADJ aValue|ֵ,color|ɫ,green|,light| +ɫ ADJ aValue|ֵ,color|ɫ,green|,light| +׶ N language|,#country|,ProperName|ר +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +Į֢ N disease| + ADJ aValue|ֵ,color|ɫ,BlueGreen| +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,light| +ˮ N water|ˮ,$drink| +ˮ N waters|ˮ,space|ռ +ˮ N fish| + V forget| + ADJ aValue|ֵ,pattern|ʽ,gracious|,desired| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,purple|,light| + V ComeToWorld| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + V ComeToWorld| + N place|ط,@ComeToWorld| + V accuse|ظ + V jump| + V loosen| + V recreation|,entertainment| + N shape|,round|Բ + V shoot| + N weapon|,$firing| + V perform|,#recreation|,#sing| + V shoot| + ADJ aValue|ֵ,performance| + N facilities|ʩ,route|· + N weapon|,$firing| + V congratulate|ף + N part|,%implement| +ɳ N tool|þ,*measure|,#weight| + N attribute|,strength|,&inanimate| +Ƭ N part|,%weapon| + V recreation|,entertainment| + V shoot| + V jump| +ͷ N weapon|,$firing| + N weapon|,$firing| +֮ N space|ռ,small|С + ADJ aValue|ֵ,behavior|ֹ,flexible| + ADJ aValue|ֵ,performance|,#FormChange|α + N attribute|,behavior|ֹ,flexible|,&event|¼ + N attribute|,performance|,#FormChange|α,&inanimate| +ѹ V restrain|ֹ,politics| +ҩ N weapon|,$firing|,mass| +ҩЯ N quantity|,amount|,&load|װ,#weapon| +ָ V PartSelfMove| +ָ֮ ADV aValue|ֵ,duration|,TimeShort| +ŵ N location|λ,&touch|,military| + N tool|þ,*recreation| + V recreation|,entertainment| + V accuse|ظ + N food|ʳƷ,#bird| + N part|,%bird|,embryo|,?food|ʳƷ + N shape| + N part|,%AnimalHuman|,embryo| +ø N physical|,%AnimalHuman|,#metabolize|л + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й,#disease| + N physical|,#animate| + N food|ʳƷ + N part|,%AnimalHuman|,embryo| + N bird|,*GiveBirth| + N part|,%AnimalHuman|,#embryo|,skin|Ƥ + N part|,%AnimalHuman|,embryo| + V RegardAs| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,kind|,special| + V bear|е + V equal| + V manage| + V pawn|Ѻ + V regard|Ϊ + V undertake| + PREP {condition} + AUX {modality|} + CONJ {time|ʱ} + V bear|е + V engage|,content=military|,military| + ADV aValue|ֵ,location|λ,special| + V suffer|,content=disgraced| + V RegardAs| + ADJ aValue|ֵ,source|Դ,original|ԭ + N time|ʱ,past| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +Ҫ N human|,desired|,important| + V obtain|õ,possession=power|,politics| + ADJ aValue|ֵ,location|λ,special| + N human|,original|ԭ +ʱ N time|ʱ,special| + CONJ {time|ʱ} + V undertake|,content=official| + N FlowerGrass|,?medicine|ҩ + V decide| + ADV aValue|ֵ,duration|,TimeShort| + V manage|,patient=family| +ҵ N human|,*manage|,family| +ҵ N human|,family|,male| + V manage|,patient=self| + N time|ʱ,now| + N institution|,official| +ڶ CONJ {time|ʱ} + N quantity| + ADJ aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,behavior|ֹ,opened| + N time|ʱ,now|,year| + N time|ʱ,past| + N time|ʱ,year| +Ʊ N bill|Ʊ,#wealth|Ǯ,#pawn|Ѻ + N InstitutePlace|,@pawn|Ѻ,*sell|,@buy|,commercial| +ϰ N human|,commercial| + N publications|鿯 +ǰ ADJ aValue|ֵ,time|ʱ,now| +ǰ N time|ʱ,now| +Ȩ V obtain|õ,possession=power|,politics| +Ȩ N human|,#power|,#rights|Ȩ,*control| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ ADV {comment|} +ʲ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N time|ʱ,day| +ʱ N time|ʱ,past| + N part|,%language| + N human|,*relate|й + N time|ʱ,day| +ͥ ADV aValue|ֵ,location|λ,special|,police| +ͷ ADV aValue|ֵ,location|λ +ͷ N artifact|˹,generic|ͳ,#pawn|Ѻ +ͷ V enjoy|,content=sequence| +ͷ V happen| +ͷ V persuade|Ȱ˵,manner=strict| + N time|ʱ,night| +֮ N affairs|,urgent| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ V win|ʤ,scope=select|ѡ +ҹ N time|ʱ,night| + N time|ʱ,month| + V PayAttention|ע + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {comment|} + ADJ {comment|} + V obtain|õ,possession=power|,politics| +֮ V FeelNoQualms| + N location|λ,middle| + N time|ʱ,now| + STRU {range} + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + PREP {condition} + V RegardAs| + V RegardAs| + V block|ס + V obstruct|ֹ + N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ + N part|,%implement|,*control|,#gas|,#liquid|Һ + V block|ס,patient=wind| +粣 N part|,%LandVehicle| + V obstruct|ֹ,ResultEvent=visit| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect|,*defend| +ס V block|ס + N character|,surname|,human|,ProperName|ר + N community| + N community|,ProperName|ר,(China|й) + N community|,undesired|ݬ + N publications|鿯,#community| + N FlowerGrass|,?medicine|ҩ + N human|,$select|ѡ,#community| + N fact|,discuss|,#community| + N expenditure| + N attribute|,behavior|ֹ,&community| + N regulation| + N attribute|,attachment|,#community|,&human| + N regulation|,#community| +͹ N regulation|,#community|,#country| + N publications|鿯,#community|,(China|й) + N affairs|,education|,#community|,(China|й) + N human|,official|,undesired|ݬ + N attribute|,age|,#community|,&human|,(China|й) + N community| + N mark|־ +Ⱥ N community| +Ⱥϵ N attribute|,relatedness|,&community|,(China|й) + N human|,#community| +ʷ N fact|,#time|ʱ,#community|,(China|й) +ͬ V remove|,patient=opposed|,politics| +ͽ N human|,#community|,undesired|ݬ + N community|,(China|й) +Ա N human|,#community| +ί N institution|,#community| +ί N fact|,discuss|,#community| + N affairs|,#community| +С N part|,%community| +У N InstitutePlace|,education|,#community| + N attribute|,property|,&community| + N human|,#community|,undesired|ݬ +Ա N human|,#community| +Ա N human|,politics|,#community|,(China|й) + N law|ɷ,#community| + N institution|,community|,#country|,politics| + N institution|,community|,army|,#country|,politics| +֧ N part|,%community| + N institution|,#country|,politics| +֧ N part|,%community| + N part|,%community| +֯ N part|,%community| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V remove| + V walk| + V wash|ϴ + V wave|ڶ + V wash|ϴ +Ȼ޴ V disappear|ʧ + V wave|ڶ + N attribute|,rank|ȼ,&artifact|˹ + N document| + N tool|þ + N tool|þ,@put|,generic|ͳ + N document| + N InstitutePlace|,@store|,#document| + N attribute|,rank|ȼ,&artifact|˹ + CLAS NounUnit|,&paper|ֽ + N shape| + N tool|þ,*cut|,*split|ƿ,*stab| + N part|,%tool|þ,*cut| + N fact|,fight| + N weapon|,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N attribute|,ability|,cut|,&human| + N part|,%tool|þ,*cut|,heart| + V planting|ֲ,manner=simple|,agricultural|ũ + N attribute|,ability|,cut|,&human| +⽣Ӱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%machine|,*cut|,heart| + N location|λ,#disease|,#wounded| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +Ƭ N part|,%tool|þ,*cut|,heart| +Ƭ N tool|þ,*MakeUp|ױ,*cut| +ǹ N weapon|,generic|ͳ + N tool|þ,@put| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +ɽ N phenomena|,dangerous|Σ,undesired|ݬ + N disease|,wounded|,#stab| + N fish| + N tool|þ,*cut|,*split|ƿ,*stab| + N human|,*damage| + V MakeTrouble| + V beat| + V MakeTrouble| + V destroy| + V MakeTrouble| + V beat| + V jump| + V walk| +Ϯ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ϯ V imitate|ģ + V FallDown| + V MoveItBack| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V alter|ı + V dump| + V end|ս,commercial| + V exchange| + V fail|ʧ + V reverse|ߵ + V venture|ð,commercial| + V replace|,patient=affairs| + V end|ս,commercial| + CONJ {comment|} +˵ CONJ {comment|} + V MoveItBack|,patient=LandVehicle| + V dump| + N part|,%AnimalHuman|,flesh| +һ V accuse|ظ + V FallDown| + V betray|,politics|,military| + V hang|,manner=treacherous| + V reverse|ߵ,patient=sequence| + V flow| + V irrigate|,agricultural|ũ + V replace| +ʱ V count| + V stand|վ,manner=reverse|ߵ + V flow| + V sell| + V sell| +ù V unfortunate| +ɤ V disable|м,scope=MakeSound| + ADV {supplement|ݽ} + V count| +ڶ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +һ NUM qValue|ֵ,sequence|,ordinal| + V resume|ָ,patient=wealth|Ǯ + V FallDown| +̨ V end|ս,politics| + V InDebt|,commercial| + V recompense| + V BeRecovered|ԭ,StateIni=bad| + V GoBackward| +θ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +θ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V FallDown| +ʩ V RashlyAct| +ʩ N fact|,RashlyAct| + V CausePartMove|,PatientPartof=foot| +ү N human|,*venture|ð,commercial| +Ӱ N trace|,#lights| +ӳ V appear| + V unfortunate| +Դ V FallDown| + V reverse|ߵ +ת V reverse|ߵ + N land|½,#waters|ˮ + N place|ط,country|,#waters|ˮ + N human|,*reside|ס,#land|½,#waters|ˮ + N land|½,#waters|ˮ + V beg| + V recite|ж,religion|ڽ + V recite|ж,religion|ڽ + V guide| + N human|,#occupation|ְλ,*guide|,entertainment| + V teach| + V transmit| + V transmit| + N weapon|,$firing| +ͧ N weapon|,ship|,military| + V transmit|,patient=electricity|,industrial| + V guide|,ResultEvent=buy| + N human|,#occupation|ְλ,*guide|,#buy| + N part|,%AnimalHuman|,nerve| + N part|,%implement|,nerve| + N part|,%machine|,route|· + V guide|,ResultEvent=VehicleGo|ʻ + N tool|þ,*transmit|,#fire| + N cause|ԭ + N tool|þ,*transmit|,#fire| + V guide|,ResultEvent=flow| + V cure|ҽ,content=excrete|й,medical|ҽ + V transmit|,patient=temperature|¶,industrial| + V transmit| +ʦ N human|,*guide|,desired| +ʦ N human|,*teach|,education| + N physical|,*transmit|,#electricity|,generic|ͳ + N tool|þ,*transmit|,#electricity| + V ResultIn| + N attribute|,direction|,&guide| + V guide| + V guide|,ResultEvent=perform|,entertainment| + N human|,#occupation|ְλ,*guide|,entertainment| + V guide| + V guide|,ResultEvent=tour| +Դ V situated| + V ResultIn| + V LeaveFor|ǰ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V arrive| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + STRU {Vachieve|} + V appear| + ADV aValue|ֵ,location|λ,all|ȫ + V arrive| + ADV aValue|ֵ,time|ʱ,ending|ĩ + V due| + V arrive|,LocationFin=extreme| + V arrive|,LocationFin=family| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V arrive| +˶ ADV aValue|ֵ,time|ʱ,ending|ĩ +ĿǰΪֹ ADV aValue|ֵ,time|ʱ,now| + V due| + V undertake|,content=occupation|ְλ + V obtain|õ +ͥ V appear|,location=institution|,#police| +ͷ ADV aValue|ֵ,degree|̶,extreme| +ͷ ADV aValue|ֵ,location|λ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +λ V finish| +ְ V undertake|,content=occupation|ְλ + N crop|ׯ + N part|,%crop|ׯ,?material| + N tool|þ,*frighten|Ż + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%crop|ׯ,embryo| + N crop|ׯ + V condole|° + N text|,*condole|° + V condole|° + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&information|Ϣ + N community|,undesired|ݬ,religion|ڽ + N facilities|ʩ,route|· + N method| + V regard|Ϊ + N regulation| + V speak|˵ + V farewell| +ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| + N fact|,religion|ڽ + N place|ط,religion|ڽ + V speak|˵ + N method| + N attribute|,behavior|ֹ,&human| +°ܻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +¹淶 N attribute|,behavior|ֹ,&human| + N attribute|,behavior|ֹ,&human| + N human|,religion|ڽ,female|Ů + V congratulate|ף + N community|,#knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N tool|þ,*perform|,#shows|,generic|ͳ + N location|λ,%route|· + N reason| +ֽ N paper|ֽ,@write|д +· N facilities|ʩ,route|· + N community|,religion|ڽ +ľ N material|,#route|· +Ǹ V apologize|Ǹ + N human|,religion|ڽ + N location|λ,%route|· +ʿ N human|,religion|ڽ +;˵ N information|Ϣ,wrong|,undesired|ݬ +ϲ V congratulate|ף,cause=lucky| +л V thank|л + N attribute|,behavior|ֹ,&human| + N human|,crime|,undesired|ݬ,*rob| + N human|,crime|,undesired|ݬ,*steal|͵ + V rob| + V steal|͵ + N fact|,#steal|͵,police| + N readings|,#steal|͵ + V steal|͵ + V gather|ɼ,means=break|۶,agricultural|ũ,#police|,crime| + N human|,crime|,undesired|ݬ,*rob| + V excrete|й,patient=waste|,time=night| + V rob| + V sell|,crime| +Ĺ V steal|͵,source=facilities|ʩ,crime| + V steal|͵,crime| +԰ N fact|,#steal|͵,police| +Է N human|,*steal|͵,undesired|ݬ,crime| + N fact|,steal|͵,undesired|ݬ,crime| +ȡ V steal|͵,crime| + V steal|͵,crime| + N human|,crime|,undesired|ݬ,*rob| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) + N attribute|,behavior|ֹ,&human| + N emotion|,like|ϧ,kindhearted|,desired| + N mental| + N place|ط,country|,ProperName|ר,(Germany|¹) +² N attribute|,ability|,&human| +²ż汸 ADJ aValue|ֵ,ability|,able|,desired| +¸ ADJ aValue|ֵ,reputation|,glorious|,desired| +¹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¹ N human|,(Germany|¹) +º N place|ط,capital|,ProperName|ר,(Iran|) + N money|,(Greece|ϣ) +ά N language|,#country|,ProperName|ר +ͨ N institution|,news|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר,(Germany|¹) + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| +־ N place|ط,country|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר + N affairs|,education|,#behavior|ֹ + N attribute|,behavior|ֹ,wisdom|ǻ,physique|,&human| + N place|ط,city|,ProperName|ר,(China|й) + V AmountTo|ܼ + N attribute|,effect|Ч,superior|,desired|,&event|¼ + V obtain|õ + V request|Ҫ + STRU {Vachieve|} + STRU {Vpossible|} + STRU {Vresult|} + AUX {modality|} +ò V ill|̬ +òʧ V WorthNot|ֵ +ò V BeUnable|,content=obtain|õ +ó V succeed|ɹ +ó V enjoy|,content=WellTreat|ƴ +ó V obtain|õ +ó V decide| +ô ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +õ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +õ V obtain|õ +õ V undergo| +õ V {Vable|} +õ ADJ aValue|ֵ,property|,$use| +÷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +÷ N quantity|,amount|,&result|,#compete|,sport| +ùҹ V slack|͵ +ü V succeed|ɹ +ý V enjoy|,content=reward| +ý N human|,$reward| +þ V BeWell|׳ +þ V undergo|,content=rescue| +ÿ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V obtain|õ,possession=pros| + ADJ aValue|ֵ,ability|,able|,desired| +¤ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V obtain|õ,possession=name| + STRU {Vable|} + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ +ʤ V win|ʤ +ʧ N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V succeed|ɹ + N result| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADV aValue|ֵ,ability|,able|,desired| +Ϥ V know|֪ +Ӧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V BeAble|ܹ + V satisfied| + V satisfied| + V obtain|õ,content=pros| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +֪ V know|֪ +־ V succeed|ɹ + N human|,*win|ʤ + V offend| + N location|λ,$firing| + STRU {DeChinese|} +Ļ CONJ {condition|} +貨 N place|ط,capital|,ProperName|ר,(Libya|) +ȷ ADV {comment|} +ȷ N material|,?clothing| +ʿ N LandVehicle|,$lend|,commercial| + V kick|߲ +̤ V kick|߲ + V CausePartMove| + V die| + N tool|þ + N tool|þ,*illuminate| +ƹ N lights| +ƹ N lights|,entertainment|,#perform|,#shows| +ƺ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ƻ N fire| +ƻ N fact|,congratulate|ף,festival| +ƻ N tool|þ,*illuminate| +ƻԻ ADJ aValue|ֵ,brightness|,bright| +ƻͨ ADJ aValue|ֵ,brightness|,bright| +ƽ N time|ʱ,festival|,@congratulate|ף +ƾ N tool|þ,*illuminate|,generic|ͳ + N tool|þ,*illuminate| + N clothing|,#leg| + N problem|,#guess|²,#recreation| + N part|,%tool|þ,#illuminate|,heart| +˿ N part|,%tool|þ,#illuminate|,heart| + N facilities|ʩ,*illuminate|,#vehicle|ͨ,#AlterLocation|ռλ +̨ N part|,%tool|þ,#illuminate|,heart| +о N material|,?clothing|,?tool|þ + N part|,%tool|þ,#illuminate|,heart| + N material|,liquid|Һ,$burn|,#illuminate| + N part|,%tool|þ,*cover|ڸ,#illuminate| + V climb|ʵ + V kick|߲ + V publish| + V record|¼ +DZ V publish|,LocationFin=publications|鿯 +dz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +dz V start|ʼ,content=leave|뿪 +dz V publish| +Ƿ켫 ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ǹ V climb|ʵ,LocationFin=tall| +ǻ V become|Ϊ,isa=official|,royal| +ǻ V climb|ʵ,LocationFin=aircraft| +ǻ N document|,*climb|ʵ,#aircraft| +Ǽ V record|¼ + V climb|ʵ + V tour| +¼ V record|¼ +½ V arrive| +½Dz N army| +½ͧ N weapon|,ship|,military| + V visit| +ɽ N fact|,sport| +ɽ N community|,sport| +Ϸɻ V climb|ʵ,LocationFin=aircraft| +̨ V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +̨ V show| + V GoInto| + V arrive|,LocationFin=celestial| + V publish| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,rank|ȼ,&entity|ʵ + V equal| + V wait|ȴ + COOR {and|} +ȴ V wait|ȴ +ȵ CONJ {time|ʱ} +ȵ V wait|ȴ +ȵ CONJ {and|} +ȶ N qValue|ֵ,amount|,equal| +ȶ֮ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +ȷ V separate| +ȷ N part|,%physical|,BeSame|ͬ +Ⱥ N symbol|,#DoSum| +Ⱥ V wait|ȴ +ȼ N attribute|,rank|ȼ,&entity|ʵ +ȼ ADJ aValue|ֵ,similarity|ͬ,alike| +Ⱦ ADJ aValue|ֵ,similarity|ͬ,alike|,#distance| +Ⱦ N attribute|,distance|,&physical| + N part|,%physical| + V MakeEqual|ʹ +ͬ V BeSame|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| +֮ V despise| +Ч ADJ aValue|ֵ,effect|Ч,equal| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V equal| +ֵ ADJ aValue|ֵ,value|ֵ,equal| + V wait|ȴ + V CausePartMove|,PatientPartof=eye| + V look| +ɴ۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| + V ExpressAnger|ʾŭ + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N character|,surname|,human|,ProperName|ר +Сƽ N human|,official|,politics|,ProperName|ר,(China|й) + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̷ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +Χ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V CausePartMove| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,height|߶,low| +Ͱ ADJ aValue|ֵ,height|߶,low| +Ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$create| +ͳ N water|ˮ +ͳ ADJ FeelingByBad| +ͳ ADJ aValue|ֵ,SoundVolume|,weak| +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ N land|½ +͵ N location|λ +͵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ +ͷֱ N attribute|,performance|,weak|,&distinguish|ֱ +͹ V estimate|,manner=insufficiently|Ƿ +͹ N attribute|,circumstances|,wane|˥,extreme|,&event|¼ +ͺ V exhaust|,quantity=few| +ͼ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,elementary| +ͼ N attribute|,price|۸,cheap|,&thing|,commercial| +ͼ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +Ϳ ADJ aValue|ֵ,location|λ,low|,#sky| +Ϳ N sky| + ADJ aValue|ֵ,effect|Ч,useless|,commercial| + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V FeelingByBad| + N decline|˥,commercial| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ +꼶 N human|,*study|ѧ,education| +Ƶ N aValue|ֵ,frequency|Ƶ,rarely|ż + N disease|,#fever| +һ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + N disease|,#fever| + ADJ aValue|ֵ,SoundVolume|,weak| + N aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| +ٶ ADJ aValue|ֵ,speed|ٶ,slow| +ٶ N attribute|,speed|ٶ,slow|,&AlterLocation|ռλ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V surrender| + ADJ aValue|ֵ,form|״,dented| +΢ ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,temperature|¶,cold| + N attribute|,temperature|¶,cold|,&physical| +Ϣ ADJ aValue|ֵ,effect|Ч,useless|,commercial| +Ϣ N money|,commercial|,$lend| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ѫѹ N disease| +ѹ N attribute|,strength|,&physical| + ADJ aValue|ֵ,SoundQuality| + N MusicTool| + ADJ aValue|ֵ,height|߶,low|,more| + ADJ aValue|ֵ,price|۸,cheap|,more| + ADJ aValue|ֵ,standard|׼,useless| + N CloudMist| +ֲ N AlgaeFungi|ֲ +ֵ ADJ aValue|ֵ,value|ֵ,^precious| +ֵ׺Ʒ N artifact|˹,generic|ͳ,*AptTo|,#OutOfOrder| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + V fall| +γ N bacteria|΢ +δ V MakeSound| +δ V fall| +ε N chemical|ѧ,*remove|,#InsectWorm| +ζ N method|,*measure| +ι V irrigate|,agricultural|ũ +ˮ N liquid|Һ +ˮɱ ADJ aValue|ֵ,temperature|¶,cold| +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ע V fall| + V teach| +ķ N money|,(the United Arab Emirates|) +˹ N recreation|,entertainment| +˹ N InstitutePlace|,@recreation|,(US|) + V equal| + V fight| + N human|,enemy| +еη N chemical|ѧ,poison|,agricultural|ũ +ж ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +з N army|,enemy| +й N place|ط,country|,enemy| +к N place|ط,enemy|,military| +о N army|,enemy|,military| + N attribute|,circumstances|,&army|,#enemy|,military| + N army|,enemy| + N human|,enemy| + V hate| + N human|,enemy| +̽ N human|,military|,enemy|,*scout| + N human|,military|,enemy|,*scout| +α N human|,enemy| + N human|,friend|,enemy|,military| +˫ N human|,friend|,enemy|,military| + N emotion|,opposed|,undesired|ݬ +ռ ADJ aValue|ֵ,attachment|,$occupy|ռ,#enemy|,undesired|ݬ +ռ N place|ط,$occupy|ռ,#enemy|,undesired|ݬ + N MusicTool| + N tool|þ,*MakeSound| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N community|,#space|ռ,past| + V wash|ϴ +ӳ V remove| +ӵ V wash|ϴ + N material|,?clothing| + N material|,?clothing| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,relatedness|,intimate| +մ V PassOn| + V PropUp|֧ + V arrive| + V equal| + V pawn|Ѻ + V recompense| + V resist| + V withstand|ס +ֲ V arrive| +ֳ V recompense| +ִ V FitNot| +ִ V arrive| +ֵ V obstruct|ֹ +ֻ V replace| +ֿ V resist| +ֿס ADJ aValue|ֵ,ability|,able|,$resist| +ֿ N human|,*resist| + V deny| + V return|,possession=strength| + V weaken| +Ѻ V pawn|Ѻ + V resist| + V withstand|ס +ծ V recompense|,possession=wealth|Ǯ + V refuse| + V withstand|ס +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$refuse| + N attribute|,scene|,&physical| + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,time|ʱ,ending|ĩ + N text| +װ N part|,%tool|þ,#TakePicture| +ײ N part|,%inanimate|,base| +ײ N attribute|,status|,LowRank|͵,&human| +ײ N part|,%building|,base| +׷ N material|,*feed|ι,#crop|ׯ +׸ N text| +׼ N attribute|,price|۸,&thing|,commercial| + N part|,%artifact|˹,base| +Ƭ N part|,%tool|þ,#TakePicture| + N material|,liquid|Һ,*decorate|װ + N attribute|,strength|,&human| +ɫ N attribute|,color|ɫ,original|ԭ,&image|ͼ + N standpoint| + N symbol|,#quantity| + N place|ط,city|,ProperName|ר,(US|) +ͼ N image|ͼ +ϸ N part|,%event|¼ + ADJ aValue|ֵ,sequence|,hind| + N location|λ,beneath| + N human|,*scout| + N mark|־,linear|,sport| + N part|,%fact|,bone| +ֹ N process|,ending|ĩ + N part|,%physical|,*surplus|ʣ + N part|,%artifact|˹,base| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&physical| + N earth|,#weather| + N land|½ + N land|½,#crop|ׯ + N location|λ + N place|ط +ذ N material|,?building| +ذ N part|,%building|,base| +ر N facilities|ʩ,space|ռ,military|,@defend| +ر N part|,%earth|,skin|Ƥ,external| +ز N attribute|,circumstances|,&event|¼ +ز N InsectWorm| +ز N part|,%earth| +زѧ N human|,#knowledge|֪ʶ +ز N wealth|Ǯ,#earth|,#building| +س N tool|þ,*measure| +ش V situated| +شﲩ N attribute|,area|,wide|,&country| +ش N place|ط +ص ADJ aValue|ֵ,GoodBad|û,good|,desired| +ص ADJ aValue|ֵ,content|,pure|,desired| +ص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N facilities|ʩ,route|· +صս N fact|,fight|,#land|½,military| +صص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N location|λ +ض N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ض N part|,%earth|,mouth| +ض N part|,%place|ط +ضԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԵص N weapon|,*firing|,#land|½ +ضԿ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԿյ N weapon|,*firing|,#aircraft| +ط N aValue|ֵ,attachment|,branch|֧ +ط N part|,%entity|ʵ,aspect| +ط N part|,%organization|֯ +ط N place|ط +ط N space|ռ +ط N disease| +ط N human|,official| +ط N human|,*reside|ס +طɫ N attribute|,style|,&edible|ʳ,&building| +ط N FlowerGrass|,?medicine|ҩ +ع N facilities|ʩ,space|ռ,religion|ڽ +ع N facilities|ʩ,space|ռ,royal| +ع N facilities|ʩ,#liquid|Һ,linear| +ع N part|,%vegetable|߲,embryo|,$eat| +ع N vegetable|߲ +عϡ N place|ط,broad| +ػ N part|,%building|,base| +ؼ N attribute|,price|۸,&land|½,commercial| +ؽ˨ N part|,%machine|,*fix|ס +ؽ N facilities|ʩ,@store|,@put| +ؽ N place|ط,boundary| +ؿ V investigate|,content=earth| +ؿ N part|,%earth|,skin|Ƥ +ؿյ N weapon|,*firing|,#aircraft| +ؿ N part|,%earth| + N place|ط,capital|,ProperName|ר,(Albania|) +ϻ N InsectWorm| + N weapon| + N attribute|,property|,&earth| + N knowledge|֪ʶ,#earth|,#country|,#weather| +ѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ +սѧ N knowledge|֪ʶ +սѧ N human|,#knowledge|֪ʶ + N attribute|,ProsCons|,pros|,#earth|,&event|¼ +˺ N attribute|,ProsCons|,pros|,#earth|,#human|,&event|¼ + N material|,*build|,route|· + N attribute|,ability|,#grow|ɳ +ò N knowledge|֪ʶ,#earth|,#country|,#weather| +òѧ N human|,#knowledge|֪ʶ + N land|½ + N part|,%building|,base| + N part|,%earth|,skin|Ƥ + N place|ط +沿 N army| +ս N army| + N attribute|,name|,&place|ط +ѧ N knowledge|֪ʶ,#name|,#place|ط +Ĥ N tool|þ,#planting|ֲ + N place|ط +Ƥ N place|ط +Ƥ N place|ط,@build| +Ʀ N human|,*MakeBad|Ӻ,undesired|ݬ +ƽ N part|,%earth| + N location|λ + N earth| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| + N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ + N place|ط + ADJ aValue|ֵ,attachment|,physical| + N location|λ,%earth| + N attribute|,form|״,&land|½ +˰ N expenditure|,#land|½ +̯ N InstitutePlace|,*sell|,commercial| +̺ N tool|þ,*cover|ڸ,#building| + N facilities|ʩ,LandVehicle| +ͷ N location|λ,#paper|ֽ +ͷ N part|,%land|½,edge| +ͷ N place|ط +ͷ N human|,*MakeBad|Ӻ,undesired|ݬ +ͼ N image|ͼ,#earth|,#country| +ͼ N publications|鿯,#image|ͼ,#earth|,#country| +ί N institution|,#community|,#place|ط +λ N attribute|,status|,&human| +λ N location|λ +λ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ͽ N land|½ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,location|λ,beneath| + N location|λ,beneath| +µ N community|,secret| + N room| +ˮ N water|ˮ + N tool|þ,linear|,*transmit| + N attribute|,form|״,&land|½ + N AlgaeFungi|ֲ + N place|ط + N place|ط,#humanized|,#die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +й N humanized| +Եѧ N knowledge|֪ʶ +Եѧ N human|,#knowledge|֪ʶ + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ַ N location|λ,#reside|ס + N part|,%land|½ +ʹѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#land|½ +ѧ N human|,#knowledge|֪ʶ +к N waters|ˮ,surfacial|,ProperName|ר + N human|,#wealth|Ǯ,rich| + N human|,*entertain|д + N payment|,#land|½ + N part|,%earth| + N part|,%plant|ֲ,base| + PREFIX aValue|ֵ,sequence|,ordinal| +ڰ NUM qValue|ֵ,sequence|,ordinal| +ڶ NUM qValue|ֵ,sequence|,ordinal| +ڶս N fact|,fight|,military| +ڶ ADJ aValue|ֵ,rank|ȼ,elementary| +ڶ N sound|,#language| +ڶʮ NUM qValue|ֵ,sequence|,ordinal| +ڶ ADJ aValue|ֵ,importance|,secondary| +ھ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +ɶ N money|,(Croatia|޵) +ɶ N money|,(Kuwait|) +ɶ N money|,(Slovenia|˹) +ɶ N money|,(Tunisia|ͻ˹) +ɶ N money|,(Yugoslavia|˹) + NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + N human|,organization|֯,aspect| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮһ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + NUM qValue|ֵ,sequence|,ordinal| +һ ADJ aValue|ֵ,importance|,important| +һ NUM qValue|ֵ,sequence|,ordinal| +һ N human|,official|,important| +һս N fact|,fight|,military| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ N sound|,#language| +һ ADJ aValue|ֵ,source|Դ,original|ԭ +һ ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,royal| + N human|,royal| +۹ N place|ط,country| +۹ ADJ aValue|ֵ,behavior|ֹ,fierce|,#country|,undesired|ݬ +۹ N system|ƶ,#country|,fierce|,undesired|ݬ +۹ N human|,fierce|,#country|,undesired|ݬ + N human|,#occupation|ְλ,royal| + N human|,family|,male| +ܵ N human|,family|,male| +ܸ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,male| + N human|,*study|ѧ + V submit| +ݲ V add| +ݹ ADJ aValue|ֵ,frequency|Ƶ,again| +ݼ V BecomeMore| +ݼ V BecomeLess| +ݽ V submit| +ݽ V BecomeMore| +ݽ V GoForward|ǰ + V post|ʼ + N human|,*post|ʼ + V BecomeMore| + V MakeAppointment|Լ + V forming|γ +޽ V forming|γ,PatientProduct=relatedness|,friend| +޽ V forming|γ,PatientProduct=relatedness|,friend|,politics| +޽ V MakeAppointment|Լ +޽ V forming|γ + V ally| + V ally|,means=GetMarried| +Լ V MakeAppointment|Լ,content=agreement|Լ +Լ N organization|֯,*MakeAppointment|Լ +Լ N place|ط,country|,*MakeAppointment|Լ + V establish| + V FallDown| + V fall| + V leave|뿪 + N part|,%physical|,head|ͷ + V run| + V shiver| +ߵ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ߵ V reverse|ߵ +ߵǷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߸ V destroy| +߸ ADJ aValue|ֵ,ability|,able|,uprise|,undesired|ݬ +߸ N human|,*destroy| +ȥ V repeat|ظ + V roam|,unfortunate| +˲ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V shiver| + V measure| +ﲥ V calculate|,manner=miser| + V calculate|,manner=miser| + V measure| + V think|˼ + V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N chemical|ѧ + N chemical|ѧ +⻯ N chemical|ѧ + N medicine|ҩ + N medicine|ҩ + N attribute|,property|,&entity|ʵ + V check| + V choose|ѡ + V drop|Ͷ,agricultural|ũ + V fall| + N image|ͼ,dot| + V lighting|ȼ + N part|,%character| + N part|,%entity|ʵ,aspect| + ADJ qValue|ֵ,amount|,some|Щ + N shape| + N symbol| + V tell| + N time|ʱ,hour|ʱ + N time|ʱ,hour|ʱ,special| + V touch| + N trace|,round|Բ,small|С,dot| + V write|д +㲥 V drop|Ͷ,agricultural|ũ +㲥 V request|Ҫ,ResultEvent=disseminate|,#shows| +㲦 V teach| +㲹 V eat| + V buy|,possession=food|ʳƷ + V TurnOn|,patient=tool|þ,ResultEvent=illuminate| + ADJ qValue|ֵ,amount|,few| + V request|Ҫ,ResultEvent=sing| +㺸 V fasten|˩,industrial| +㻭 V tell| +㻯 V teach|,religion|ڽ + V lighting|ȼ + V touch|,#computer| +㼢 V eat| +㽫 V CauseToBe|ʹ֮ +î V count| + V tell| + V count| + V mention|ἰ + V estimate| + V reveal|¶ + N fact|,punish|,#exercise| +ȼ V lighting|ȼ +Ⱦ V draw| + V shoot|,military| + V check| + V count| + N quantity|,amount|,&event|¼ + V express|ʾ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V agree|ͬ + N food|ʳƷ +Ѩ V beat|,PartOfTouch=nerve| + V check| + N image|ͼ + N time|ʱ,hour|ʱ,special| +׺ V decorate|װ +׺ V use|,ResultEvent=display|չʾ + N part|,%entity|ʵ,heart| + N shape|,liquid|Һ + N thought|ͷ + N trace|,round|Բ,small|С,dot| + N artifact|˹,$pawn|Ѻ + N fact| + N law|ɷ + V manage| + V pawn|Ѻ + N publications|鿯 + N text| + N human|,*pawn|Ѻ +䵱 V pawn|Ѻ +䵱ҵ N affairs|,pawn|Ѻ +䷶ N human|,desired|,$imitate|ģ + N text| +伮 N readings| + N fact| + ADJ aValue|ֵ,trueness|α,true|,desired| +Ѻ V pawn|Ѻ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,color|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + V fill| + V pay| + N tool|þ,*inlay|Ƕ +油 V eat| +׶ V eat| +׶ V establish|,patient=base| +׶ V put| +渶 V pay| + N tool|þ,*inlay|Ƕ +ʯ N human|,undesired|ݬ + N money|,$pay| +Ƭ N part|,%implement| +Ȧ N part|,%implement| +֧ V pay| + N tool|þ,*inlay|Ƕ + V damage|,means=electricity| + N electricity| + N letter|ż + N tool|þ,*illuminate|,#electricity| +籨 N letter|ż +籨Һ N information|Ϣ,#location|λ,#letter|ż +籨 N institution|,#information|Ϣ + N tool|þ,*measure|,#electricity| + N tool|þ,*cool| +粨 N electricity| + N machine|,*dig|ھ +糡 N space|ռ,#electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +糪 N machine|,*disseminate| +糪ͷ N part|,%machine|,#disseminate|,head|ͷ +糵 N LandVehicle|,#electricity| + N part|,%artifact|˹ +紫 N image|ͼ,$post|ʼ +紫 N machine|,*post|ʼ +紵 N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,performance| +Ų N electricity| +ų N space|ռ,#electricity| + N metal|,material| + N InstitutePlace|,@teach|,@study|ѧ,education| +絼 N quantity|,volume|ݻ,&electricity| + N tool|þ,*illuminate| +綯 ADJ aValue|ֵ,performance| +綯 N machine|,#electricity| +綯 N part|,%physical|,strength|,#electricity| + V apply|ͿĨ,industrial| +ȱ N tool|þ,*measure|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| + N expenditure|,#electricity| + N tool|þ,#wind|,*cool|,#electricity| + N tool|þ,#electricity|,arm| + N tool|þ,#electricity| + V tell|,instrument=tool|þ,#electricity| +繤 N fact|,#electricity| +繤 N human|,#occupation|ְλ,#electricity| + N information|Ϣ,#location|λ,#letter|ż +ܾ N institution|,#electricity|,ProperName|ר,politics| + N lights|,#electricity| +纸 V fasten|˩,industrial| +纸 N human|,#occupation|ְλ,*fasten|˩,#electricity| +纸 N machine|,*fasten|˩,#electricity| + N part|,%electricity| + V congratulate|ף +绡 N lights|,#electricity| +绡¯ N facilities|ʩ,space|ռ,industrial|,produce|,#metal| +绯 V teach|,education| +绯ѧ N knowledge|֪ʶ,#electricity| +绰 N fact|,communicate| +绰 N tool|þ,*communicate| +绰 N account|,#symbol|,#facilities|ʩ,#communicate| +绰벾 N account|,#symbol|,#facilities|ʩ,#communicate| +绰 N tool|þ,*communicate| + V post|ʼ + N fire|,#electricity| + N disease| + N machine|,#electricity| +缫 N attribute|,kind|,&electricity| + N part|,%tool|þ + V teach|,education| + N separate| + N chemical|ѧ + N tool|þ,*break|۶,#electricity| +翾 N tool|þ,cubic|,@cook|,#electricity| + N material|,linear|,@transmit| + N part|,%physical|,#electricity| + ADJ aValue|ֵ,performance| + N electricity| + N institution|,#electricity|,ProperName|ר,politics| + N institution|,#electricity|,ProperName|ר,politics| + N quantity|,amount|,&electricity| + N method|,#cure|ҽ,#disease|,#electricity| + N tool|þ,#electricity|,#material| + N tool|þ,*MakeSound|,#sound| + N electricity| + N tool|þ,*measure|,#electricity| + N quantity|,amount|,&electricity| +¯ N facilities|ʩ,space|ռ,industrial|,*produce|,#metal| +¯ N tool|þ,*WarmUp|,*cook| +· N part|,linear|,#electricity| +·ͼ N image|ͼ,#electricity| + N part|,%artifact|˹,#electricity|,*control| +ľ N material|,?tool|þ + N computer| + N part|,%physical|,electricity|,strength| +ť N part|,%artifact|˹,*control| +ƿ N part|,%tool|þ,#electricity| + N tool|þ,generic|ͳ,#electricity| + ADJ aValue|ֵ,performance| + V ize|̬,PatientAttribute=electricity|,industrial| + V WarmUp|,means=electricity| + ADJ aValue|ֵ,property|,WarmUp| + N attribute|,ability|,electricity|,&implement| + N part|,implement|,electricity| + N tool|þ,#wind|,*cool|,#electricity| + V refine|,means=electricity| +ʯ N chemical|ѧ + N image|ͼ,shows| + N tool|þ,*look|,#image|ͼ,#shows| +Ӵѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ӹ N human|,*look|,#perform| +ӹ㲥 V disseminate|,#image|ͼ,#shows| +ӻ N tool|þ,*look|,#image|ͼ,#shows| +Ӿ N shows| +Ƭ N shows| + N facilities|ʩ,*disseminate| +̨ N institution|,*disseminate| + N facilities|ʩ,*disseminate| +ת V disseminate|,#image|ͼ,#shows| +ת N facilities|ʩ,*disseminate| + N tool|þ,#electricity| +ˢ N tool|þ,#electricity| +̨ N institution|,*disseminate| +̨ N tool|þ,*disseminate| + V MakeUp|ױ + N machine|,*lift|,#electricity| +Ͳ N tool|þ,*illuminate|,#electricity| + N facilities|ʩ,*transmit|,#electricity| +λ N attribute|,strength|,#electricity| + N readings| + N tool|þ,linear|,@transmit| + N affairs|,*disseminate|,#information|Ϣ +ź N information|Ϣ +ž N institution|,#disseminate|,#information|Ϣ + V damage|,means=electricity| + V punish|,kill|ɱ,means=electricity| +ѧ N knowledge|֪ʶ,#electricity| +Ѷ N affairs|,*disseminate|,#information|Ϣ +ѹ N attribute|,amount|,&electricity| + N tool|þ,police|,*punish|,#crime| +Ӱ N shows| +Ӱ N readings|,#shows| +Ӱ N human|,entertainment| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӿ N phenomena|,#electricity| +Դ N location|λ,@ExistAppear|,#electricity| + N tool|þ,*WarmUp|,*cook| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + ADJ aValue|ֵ,performance| +Ӳ N part|,physical| +ӹ N part|,%implement|,#electricity| + N MusicTool| + N affairs|,commercial|,#software|,#computer| +ʼ N facilities|ʩ,software|,@communicate|,information|Ϣ,#computer| + ADJ aValue|ֵ,performance| + N attribute|,strength|,obstruct|ֹ,electricity|,&physical| + V borrow| +軧 N human|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ + N place|ط + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,*sell|,commercial| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| +̰ N human|,*steal|͵,undesired|ݬ,crime| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| +Ա N human|,#occupation|ְλ,employee|Ա,commercial|,*sell| + N human|,#occupation|ְλ,*sell|,commercial| + V ThinkOf|˼ + V ThinkOf|˼ + V ThinkOf|˼ + V establish| + V salute|¾,means=provide| +춨 V establish| +춼 V establish|,patient=capital|,politics| + V establish|,patient=base| + N human|,*establish| + N tool|þ,generic|ͳ + N waters|ˮ,surfacial| + N material|,#food|ʳƷ + N facilities|ʩ,space|ռ,religion|ڽ + N house|,royal| + N room| + V situated|,location=ending|ĩ + N army| + N human|,desired|,*win|ʤ,#compete| + N house|,religion|ڽ + N house|,royal| + N room| + N human|,royal| +ﱤ N facilities|ʩ,space|ռ,military|,@defend| +¥ N facilities|ʩ,space|ռ,military|,@look|,@defend| + V HoldInMouth| + N bird| + V carve| + V carve|,ContentProduct=image|ͼ + V carve| + N image|ͼ,$carve| +̼ N human|,*carve|,entertainment| + N part|,%building|,bone|,*decorate|װ + V write|д,manner=refined| + V carve| + N image|ͼ,$carve| + N image|ͼ,$carve| + V carve| + V write|д,manner=refined| + V decline|˥ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + V decline|˥ + V decline|˥ +ή V decline|˥ +л V decline|˥ +л V die| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V MakeTrouble| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V BecomeLess| + V exchange| + V fall| + V inferior| + V lose|ʧȥ + V turn|Ťת + V replace| + V WeatherBad| + V inferior| + V exchange| + V fall| +ɫ V AppearanceChange|۱,scope=color|ɫ +ͷ V TurnRound| + V fall| + V despise| +ת V turn|Ťת + V condole|° + V hang| + V install|װ + V remove| + N machine|,*lift| + N tool|þ,*illuminate| + N part|,%building| +ɵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N SportTool|˶ +¥ N house| + N facilities|ʩ,route|·,#waters|ˮ +ɤ V drill|ϰ,content=sing| +ɥ V condole|°,means=visit| + N tool|þ,#wind|,*cool| + V kill|ɱ + V suicide|ɱ +Ͱ N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,*fasten|˩,#foot| + V remove| + V condole|° + V lift| +װ V install|װ + V catch|׽ס + V seek|ıȡ,manner=sly| + N tool|þ,$eat|,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish|,generic|ͳ + V catch|׽ס,patient=fish| + V TakeAway|ᶯ + V adjust| + N attribute|,SoundQuality|,&music| + N attribute|,SoundQuality|,&speak|˵ + N attribute|,kind|,&music| + V mediate| + V mix| +Dz V dispatch|Dz,patient=army|,military| + V issue|ַ + V investigate| + N human|,*investigate| + V mediate| + V TakeAway|ᶯ + V TakeAway|ᶯ + V assemble|ۼ + V mobilize| + V dispatch|Dz + V manage| + V cease|ͣ,content=defend|,military| + N attribute|,width|,$adjust|,&physical| + N tool|þ,*eat| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V coordinate|Э + V mediate| + V maintain| + V exchange| + V dismiss| + V assemble|ۼ + V adjust| + V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V adjust|,patient=price|۸ + V adjust| + V adjust| + V coordinate|Э + V mediate| + N human|,*mediate| + N human|,*mediate| + V cure|ҽ,content=bleed|Ѫ,#female|Ů + V adjust| + N undergo|,content=$dispatch|Dz + V TakeCare| + V maintain|,medical|ҽ + N material|,#food|ʳƷ,$eat|,generic|ͳ + N information|Ϣ,#dispatch|Dz +Ŷ N attribute|,SoundVolume|,&speak|˵ +Ŷ N standpoint| +Ŷ ADJ aValue|ֵ,SoundVolume|,loud| +Ū V adjust| +Ū V incite|ָʹ +Ū V tease|ȡ + V dispatch|Dz + V dispatch|Dz + V produce|,means=mix| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƶ N attribute|,frequency|Ƶ,$adjust|,&physical| +Dz V dispatch|Dz + V ShowLove|ʾ + V undertake| +ɫ V adjust|,patient=color|ɫ + V adjust| + V incite|ָʹ +ͣ V mediate| +ͷ N attribute|,SoundQuality|,&music| +ͷ N attribute|,SoundVolume|,&speak|˵ +ͷ V turn|Ťת +ζ V adjust|,patient=taste|ζ +ζƷ N material|,#food|ʳƷ,$eat|,generic|ͳ +Ϸ V damage|,crime| + N attribute|,electricity|,$adjust|,&physical| +Ц V tease|ȡ +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V investigate| + V perform| + V maintain|,medical|ҽ + V adjust|,patient=SoundQuality| + V use| + V mix| + V transport| + V adjust| + N human|,*adjust| +ְ V undergo|,content=$dispatch|Dz + V adjust| +ƽ N tool|þ,#computer| + V cure|ҽ +ת V turn|Ťת +ת V undergo|,content=$dispatch|Dz +ת V undergo|,content=$dispatch|Dz + V adjust|,patient=payment| + N attribute|,SoundQuality|,&music| +٩ V LaughAt|Ц + V BecomeLess| + V FallDown| + V fall| + V FallDown| +ײײ V walk|,manner=wave|ڶ + N attribute|,range|,BecomeLess|,&price|۸,commercial| + V BecomeLess|,scope=price|۸ + V FallDown| + V fail|ʧ + V fall| + V BecomeLess| + N attribute|,outlook|ǰ,BecomeLess|,&price|۸,commercial| + ADJ aValue|ֵ,content|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,family|,male| + N human|,family|,male| + N tool|þ,cubic|,*put|,#food|ʳƷ + N tool|þ,cubic|,*put|,#food|ʳƷ + N InsectWorm|,*fly| + N part|,%AnimalHuman|,bone| +λ N FlowerGrass| +Ӿ V exercise|,#swim|,sport| + V replace| + V happen|,frequency=often| + N information|Ϣ,military| +Ա N human|,#occupation|ְλ,police|,military|,*scout| + V fold|ߡ + V pile|ѷ + V repeat|ظ,manner=improper| + N character|,surname|,human|,ProperName|ר + N human| + N human|,adult|,male| + NUM qValue|ֵ,sequence|,ordinal| + N shape| + N facilities|ʩ,#waters|ˮ,*protect| + N material| + ADJ qValue|ֵ,amount|,few| +ϩ N chemical|ѧ + V persuade|Ȱ˵ +Ƕ,îî ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ϩ N chemical|ѧ + N FlowerGrass| +ֳ N stationery|ľ,*draw| + V look| + V follow| +ס V PayAttention|ע + V look| + V sting| + ECHO sound| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V fasten|˩ + V fasten|˩,means=beat| + V follow| + N tool|þ,*fix|ס,metal|,acute| + V urge|ʹ + N tool|þ,#crop|ׯ + N tool|þ,*beat| + N fish| + V follow| +Ь N SportTool|˶,#clothing|,#foot| + N human|,*damage| + N tool|þ,*fix|ס,metal|,acute| + V PropUp|֧ + V bump|ײ + V equal| + V hold|,instrument=head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%entity|ʵ,head|ͷ + V refute| + V reject|ؾ + V replace| + V withstand|ס + N part|,%building| + N part|,%entity|ʵ,head|ͷ +ס V withstand|ס + N part|,%vehicle|ͨ,*illuminate| + N location|λ,angular|,dot| + N part|,%entity|ʵ,head|ͷ + N part|,%entity|ʵ,head|ͷ + ADV aValue|ֵ,range|,extensive| + N part|,%entity|ʵ,head|ͷ + N part|,space|ռ,%land|½,head|ͷ + V bump|ײ,patient=wind| + N wind| + N part|,%implement| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%inanimate|,head|ͷ + N image|ͼ,angular| +Ĥ V salute|¾ + N human|,desired|,important|,able| +ţ V quarrel| + N part|,%building| + V replace| + ADJ aValue|ֵ,courage|,brave|,desired| +ѿ N part|,%plant|ֲ,embryo| + N tool|þ,*protect| +ס V withstand|ס +ײ V offend| + V refute| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V BeOpposite| + N attribute|,strength|,strong|ǿ,&human| +ʢ V prosper| +ʢʱ N time|ʱ,@prosper| + N part|,%machine| + N shape| + N part|,%machine| + V AtEase| + V MakeAppointment|Լ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,property|,fixed|Ѷ + V buy|,means=MakeAppointment|Լ + V decide| + ADV {comment|} + V decide| + N result|,decide| + V delimit|,patient=organization|֯ + V decide|,content=amount| + N bill|Ʊ,#wealth|Ǯ,*MakeAppointment|Լ + N location|λ,dot| + V establish|,patient=capital| + V decide| + N quantity|,amount|,$delimit|,&entity|ʵ + V delimit|,patient=affairs| + V fulfil|ʵ,patient=compile|༭,#readings| + V buy|,means=MakeAppointment|Լ + V decide| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V decide|,content=rank|ȼ + V decide|,content=price|۸,commercial| + N thought|ͷ + N expenditure|,#MakeAppointment|Լ + V look| + V reside|ס +ӵ N place|ط,@reside|ס + V fixed|Ѷ + N law|ɷ + N regulation|,ordinary| + ADJ aValue|ֵ,kind|,#quantity| + V decide|,content=quantity| + N quantity|,amount|,$delimit|,&entity|ʵ + N system|ƶ,#provide| + N regulation|,#knowledge|֪ʶ + N result|,#decide| + V naming| + ADJ aValue|ֵ,frequency|Ƶ,regular| + V MakeAppointment|Լ,content=GetMarried| +ʱ V delimit|,patient=time|ʱ +ʱ N tool|þ,*delimit|,#time|ʱ +ʱը N weapon| +λ V decide|,content=location|λ + V decide|,Vachieve| + V decide|,Vachieve| + V adjust|,patient=MusicTool| + ADJ aValue|ֵ,direction|,#facing| + V decide|,commercial| + N entity|ʵ,*AtEase| + V decide|,content=plans|滮 + V decide|,content=pattern|ʽ,industrial| + ADJ aValue|ֵ,kind|,#attribute| + V decide|,content=attribute| + V decide|,content=attribute|,police| + N information|Ϣ + N MusicTool| + N part|,%language| +Ա V decide|,content=amount| + ADJ aValue|ֵ,property|,$produce| + V produce| +ס V fix|ס + N part|,%machine| + V decide|,content=crime|,police| + ADJ aValue|ֵ,property|,$produce| + V produce| + V MakeAppointment|Լ + V amend| + V buy|,means=MakeAppointment|Լ + V fasten|˩ + N document|,*buy|,commercial| + V buy|,means=MakeAppointment|Լ +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + N human|,*buy|,#commercial| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V MakeAppointment|Լ +Ʊ V buy|,possession=coupon|Ʊ֤,means=MakeAppointment|Լ + N quantity|,amount|,&MakeAppointment|Լ +Լ V MakeAppointment|Լ + V buy|,means=MakeAppointment|Լ + V amend| + V produce| + V abandon| + V lose|ʧȥ + V throw| + V suffer|,content=disgraced| + V abandon| + V lose|ʧȥ +ж V defeated| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V suffer|,content=disgraced| + V suffer|,content=disgraced| + V abandon| + V suffer|,content=disgraced| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V lose|ʧȥ +ɫ V show| + N character|,surname|,human|,ProperName|ר + N direction|,east| + N human|,*entertain|д + N human|,*own| + N part|,%earth|,east| + N direction|,east|,north| + N place|ط,ProperName|ר,#direction|,(China|й) + N location|λ,east|,north| + V run|,manner=endeavour| + N location|λ,east| + N part|,%place|ط,#east|,#country| + N location|λ,east| + N place|ط,country|,*entertain|д + N human|,*entertain|д + N location|λ,ending|ĩ,east| + ADJ aValue|ֵ,source|Դ,(Asia|) + N character|,surname|,human|,ProperName|ר + ADJ direction|,east| + N direction|,east| + N human|,#source|Դ,(Asia|) + N place|ط,ProperName|ר,east|,(Africa|) + N phenomena|,strong|ǿ,desired| + N wind|,#direction|,east| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,rich| +ձԪ N money|,(Grenada|ɴ) + N part|,%place|ط,surrounding|Χ,#city|,east| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(Japan|ձ) + N attribute|,distance|,&earth|,east| + V TalkNonsense|Ϲ˵ +צ ADJ inanimate|,secondary| + N character|,surname|,human|,ProperName|ר + N community|,country|,ProperName|ר,(Asia|) + N location|λ,east| + N direction|,east|,south| +ϲ N location|λ,east|,south| +Ͻ N location|λ,east|,south| + N direction|,east|,south|,west|,north| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) +ǹ N community|,country|,ProperName|ר,(Asia|) +ŷ N place|ط,ProperName|ר,east|,(Europe|ŷ) +ƴ V merge|ϲ +ʡ N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ɽ V BeRecovered|ԭ +ʩЧ V imitate|ģ + N attribute|,distance|,east|,west|,&earth| + N direction|,east|,west| + N entity|ʵ,generic|ͳ + N location|λ,east| + N place|ط,ProperName|ר,east|,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + V look| +֥ N InstitutePlace|,ProperName|ר,*produce|,(Japan|ձ) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ݸ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + N sound| + N time|ʱ,winter| + N MusicTool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +IJ N medicine|ҩ,(China|й) + N AlgaeFungi|ֲ,$eat| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V irrigate|,#winter|,agricultural|ũ + N time|ʱ,winter| + N time|ʱ,winter| +Ӫ N InstitutePlace|,@exercise|,#winter| + N crop|ׯ,#winter| + V sleep|˯,#winter| + N tree| + N celestial|,#winter| + N time|ʱ,winter| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,winter| + N time|ʱ,#winter| +С N crop|ׯ,#winter| + V build|,#winter| +ѵ V drill|ϰ,#winter| +ҹ N time|ʱ,winter|,night| + N clothing|,#winter| +Ӿ N fact|,#swim|,#winter| +˻ N fact|,compete|,sport|,#winter| + N time|ʱ,day|,winter| +װ N clothing|,#winter| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*manage| +³ N human|,#occupation|ְλ,*manage|,commercial| +» N institution|,*manage|,commercial| + N human|,ProperName|ר + V know|֪ + V know|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V know|֪,content=affairs| + V SelfMoveInManner|ʽ + V alter|ı + V consume|ȡ + V excite|ж + V function| + V use| + V start|ʼ,content=write|д + V start|ʼ,content=fight|,military| + ADV aValue|ֵ,frequency|Ƶ,often| + N physical|,#wealth|Ǯ + N part|,%language| + V SelfMoveInManner|ʽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V uprise|,politics| + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N experience|,#AlterLocation|ռλ + V start|ʼ,content=build| + N {Vresult|} + N shows| +Ƭ N shows| + V angry| + N thought|ͷ + N fact|,generic|ͳ + N sound| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&event|¼ + N part|,%vehicle|ͨ,heart| +ѧ N knowledge|֪ʶ,#strength| + N attribute|,strength|,&physical| + N fact|,uprise|,undesired|ݬ,politics| + N part|,%AnimalHuman|,nerve| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ӳ N disease| +Խ V think|˼ + N attribute|,strength|,&physical| +ŭ V angry| +ƽ N attribute|,behavior|ֹ,even| + V angry| + V excited| + N {Vdirection|} + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V excited|,result=AppearanceChange|۱ + V start|ʼ,content=leave|뿪 + V start|ʼ,content=beat| + V start|ʼ,content=do| +ֶ V damage| + V cure|ҽ + V undergo|,content=cure|ҽ,medical|ҽ +̬ N attribute|,outlook|ǰ,&event|¼ +̬ ADJ attribute|,property|,function| +̬ƽ N attribute|,behavior|ֹ,even| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V start|ʼ,content=build| + V start|ʼ,content=fight| + N AnimalHuman| +ﰮ N human|,*like|ϧ,#animal| +ﱣ N human|,*like|ϧ,#animal| +ѧ N human|,#knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#animal| +ѧ N human|,#knowledge|֪ʶ +԰ N InstitutePlace|,*display|չʾ,#animate| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V excited| + V punish| +ҡ V hesitate|ԥ +ҡ V weaken| +ҡ N weaken|,patient=behavior|ֹ,military| + N text|,$propose|,$discuss|,$debate| + V use| +Ա V mobilize| +Ա N information|Ϣ,#order|,*mobilize| + V do|,manner=true| +ֲ N animate|,generic|ͳ + N {LeChinese|} + V do| + N fact|,do| +ٶ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| + N NounUnit|,&building| + N part|,%house|,bone| + N human|,desired|,important|,able| +֮ N human|,desired|,important|,able| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V fear| + V frighten|Ż + V cool| + V perception|֪,content=cold| + V StateChange|̬,StateFin=ice| + N disease| + N phenomena|,unfortunate|,#cold|,undesired|ݬ + V paralyse|̱,cause=cold| + V cool| + V restrain|ֹ + N material|,?edible|ʳ,$cool|,#flesh| + N disease| + V die|,cause=cold| + N land|½,#cold| + N RainSnow|ѩ,#cold| + N part|,%inanimate|,mouth| + NUM qValue|ֵ,amount|,cardinal| + V know|֪,manner=profound| + N attribute|,ability|,able|,perception|֪ + N room|,@reside|ס,#GetMarried| + N location|λ + N part|,%inanimate|,mouth| +Ϥ V know|֪,manner=profound| + V know|֪,manner=profound| +Ѩ N part|,%earth|,mouth| + N MusicTool| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е + V circle| + N part|,%clothing|,cubic|,@put| + N tool|þ,cubic|,@put| + V wrap| + V block|ס + V reveal|¶ + N clothing|,#leg| + N clothing|,#body| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е +Ȧ V circle| +Ȧ V speak|˵,manner=hidden| + V sell|,commercial| + N tool|þ,cubic|,@put| + N clothing|,#head|ͷ,*protect| + V excite|ж + V satisfied| + V shake|ҡ + V shiver| + V shake|ҡ + V shiver| +§ V lavish|˷ +§ V reveal|¶ +§ V shake|ҡ,purpose=MoveItOut| + V excited| + V ExpressAgainst|Ǵ + N celestial| + V compete| + V fight| + N image|ͼ,#hand|,#trace| + V incite|ָʹ,ResultEvent=compete| + V merge|ϲ + CLAS unit|λ,&volume|ݻ + N LandVehicle|,#mine| + ADJ aValue|ֵ,courage|,brave| + N image|ͼ,#hand|,#trace| + N compete|,#bird| +ţ N compete|,#livestock| +ţʿ N human|,*compete|,#livestock| +Ź V fight| + N clothing|,#body| +ʿ N human|,*fight| + N room|,small|С +˿ N addictive|Ⱥ + N part|,%AnimalHuman|,#eye| + V accuse|ظ + V endeavour| + V fight| +־ N mental|,#fight| + V fight|,#wisdom|ǻ +ת V change| + N clothing|,#head|ͷ,#RainSnow|ѩ + ADJ aValue|ֵ,slope|¶,steep| + V stand|վ + N part|,%land|½,skin|Ƥ,steep| + ADJ aValue|ֵ,slope|¶,steep| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +꽴 N material|,?food|ʳƷ + N material|,#crop|ׯ + N food|ʳƷ + N food|ʳƷ +Ƥ N food|ʳƷ + N part|,%plant|ֲ,embryo| + N drinks|Ʒ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ƕ N part|,%vegetable|߲,embryo|,$eat| +Ƕ N vegetable|߲ + N attribute|,attachment|,&plant|ֲ + N fruit|ˮ,?medicine|ҩ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N material|,?food|ʳƷ +ɳ N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ѿ N food|ʳƷ +ѿ N food|ʳƷ + N material|,?food|ʳƷ + N artifact|˹,generic|ͳ,waste| +֭ N drinks|Ʒ +Ʒ N food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ޢ N FlowerGrass|,?medicine|ҩ + N material|,?food|ʳƷ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| + V stay|ͣ + V tease|ȡ + N symbol| + N symbol| +ֶ V please|ȡ + V stay|ͣ +Ū V tease|ȡ +Ȥ V please|ȡ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| +Ц V please|ȡ + V tease|ȡ + V quarrel| + N disease| + N medicine|ҩ + ADV aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,capital|,ProperName|ר,(Ireland|) + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,city| + N attribute|,circumstances|,city|,&human| +ѧר N human|,#knowledge|֪ʶ + V supervise| + V supervise| + V supervise| + V urge|ʹ + V supervise| +ѧ N human|,#occupation|ְλ,*supervise| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,poison| + V kill|ɱ,instrument=poison| + N medicine|ҩ,$addict|Ⱥ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + V beat| + N InsectWorm| + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + V damage| + V damage| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N disease| +Ʒ N medicine|ҩ,?addictive|Ⱥ + N gas|,poison|,*kill|ɱ,undesired|ݬ + N facilities|ʩ,#gas|,poison|,@kill|ɱ,undesired|ݬ +ɱ V kill|ɱ,instrument=poison| + N beast|,poison| + V kill|ɱ,instrument=poison| + N physical|,poison|,*kill|ɱ,undesired|ݬ +˹ N gas|,poison|,*kill|ɱ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + N part|,poison|,%AnimalHuman|,nerve| + N attribute|,poison|,&physical| +ҩ N chemical|ѧ,poison|,*kill|ɱ,undesired|ݬ,generic|ͳ + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + N aspiration|Ը,addict|Ⱥ,undesired|ݬ + N livestock|,young| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + V manage| + V speak|˵,target=self| +辶 V establish|,patient=route|· + V surpass|ǿ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,royal| + V sing| + V establish| + N attribute|,kind|,original|ԭ,&thing| +һ V manage| + ADJ aValue|ֵ,kind|,special| +֮ N attribute|,kind|,special|,&thing| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +϶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,undesired|ݬ,official| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V reside|ס,lonely| +߻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +߽ ADJ aValue|ֵ,kind|,special|,desired| +ɫ ADJ aValue|ֵ,kind|,special|,desired| + V control| + V BeIndependent| + ADJ aValue|ֵ,attachment|,BeIndependent| + N fact|,BeIndependent| + ADJ qValue|ֵ,amount|,single| + V BeIndependent| + N place|ط,country|,ProperName|ר +ɧ V surpass|ǿ +ֳ N LandVehicle| +ľ֧ V BeUnable|,content=help| +ľ N attribute|,circumstances|,&event|¼,hardship| +ľ N facilities|ʩ,route|·,#waters|ˮ + N attribute|,circumstances|,^GetMarried|,&human| + N human|,family|,young| +Ů N human|,family|,single|,young| +һ V establish|,patient=knowledge|֪ʶ + ADJ aValue|ֵ,kind|,special| + V take|ȡ,manner=self| + V recreation|,single| + N human|,undesired|ݬ,#disease| +һ޶ ADJ aValue|ֵ,kind|,special| + V own|,manner=self| +ռ V own|,manner=self| +ռͷ V surpass|ǿ + V drink|,manner=single| + N fund|ʽ,commercial| +ʹ˾ N InstitutePlace|,commercial| +ʾӪ V manage| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V recreation| + N human|,*perform|,entertainment| + V engage|,content=study|ѧ,education| + V read| + V recite|ж + N readings| + V read| +ȡ V take|ȡ,#computer| + V engage|,content=study|ѧ,education| + V read| + V study|ѧ + N quantity|,amount|,&measurement| + N readings| +д V read|,write|д + N attribute|,SoundQuality|,&speak|˵ + N human|,*read| + V BlockUp| + N character|,surname|,human|,ProperName|ר + N part|,%building|,skin|Ƥ + V upset| +³ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +½ V block|ס +© V BlockUp| + V BlockUp| + V BlockUp| +ס V BlockUp| + V obstruct|ֹ,ResultEvent=speak|˵ + V perception|֪,means=look| +˼ V ThinkOf|˼ + V gamble|IJ +IJ V gamble|IJ +ij N InstitutePlace|,@gamble|IJ,undesired|ݬ +Ĺ N human|,undesired|ݬ,*gamble|IJ +Ĺ N human|,undesired|ݬ,*gamble|IJ +ľ N tool|þ,*gamble|IJ +Ŀ N human|,undesired|ݬ,*gamble|IJ +Ŀ N InstitutePlace|,@gamble|IJ,crime|,undesired|ݬ + V angry| +Ǯ V gamble|IJ +ͽ N human|,*gamble|IJ,undesired|ݬ,crime| + V swear| +ע N wealth|Ǯ,#gamble|IJ + N character|,surname|,human|,ProperName|ר + V obstruct|ֹ + N tree| +ž N FlowerGrass| +ž N bird| +ž V obstruct|ֹ + N fruit|ˮ +³ N human|,official|,politics|,ProperName|ר,(US|) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Russia|˹) + N FlowerGrass|,?medicine|ҩ +׫ V forge|α + V apply|ͿĨ,industrial| +ƽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ƽ V apply|ͿĨ,material=metal|,industrial| +ƽ V study|ѧ,purpose=MakeBetter|Ż +ƽ N human|,#occupation|ְλ,industrial| +п V apply|ͿĨ,material=metal|,industrial| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + V apply|ͿĨ,material=metal|,industrial| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| +Ǵ N tool|þ,linear|,*fasten|˩,#livestock| +Ƥ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + CLAS ActUnit|,&event|¼ + N attribute|,degree|̶,&event|¼,&aValue|ֵ + N attribute|,tolerance|,&human|,&organization|֯ + V guess|² + V pass|ȹ + CLAS unit|λ,&angular| + CLAS unit|λ,&temperature|¶ +ȹ V pass|ȹ +Ȼ V pass|ȹ,patient=hardship| +ȼ V pass|ȹ,patient=festival| +ȼٴ N place|ط,@rest|Ϣ +ȼ N human|,*WhileAway| + N attribute|,tolerance|,&human|,&organization|֯ + V MakeLiving|ı,manner=hardship| + V alive| + N quantity|,amount|,&measurement| + V cross|Խ +ɴ N ship| +ɿ N part|,%place|ط,mouth|,#waters|ˮ + N ship| + V jealous|ʼ +ʼ V jealous|ʼ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,posture|,upright| + N cause|ԭ + V hold| + N information|Ϣ + N part|,%entity|ʵ,head|ͷ + N part|,%event|¼,head|ͷ +˵ N part|,%entity|ʵ,head|ͷ + V look| +ľ N character|,surname|,human|,ProperName|ר + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + V look| + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,posture|,upright| + V amend| +ׯ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + V sit|,manner=upright| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,length|,short| + V lack|ȱ +̱ V fight|,military| +̲ N electricity| +̳ ADJ aValue|ֵ,distance|,short| +̴ N attribute|,quality|,weak|,undesired|ݬ,&thing| +̴ ADJ aValue|ֵ,duration|,TimeShort| +̴ N clothing|,#perform| +̴ V fight| +̵ N MusicTool| +̹ N human|,#occupation|ְλ,employee|Ա +̺ N MusicTool| +̼ N thought|ͷ,NotProfound|dz,undesired|ݬ +̾ N shows| +̿ N clothing|,#leg| +· V OutOfOrder|,#electricity| + V run|,sport| +ƪС˵ N readings| +Ƭ N shows| + N text|,*estimate| + N human|,*compile|༭,literature| + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,TimeShort| +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +ǹ N weapon|,*firing| +ȱ V lack|ȱ +ȹ N clothing|,#leg|,female|Ů + ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +; ADJ aValue|ֵ,distance|,short| + N text| + ADJ qValue|ֵ,amount|,few| +߲Ʒ N artifact|˹,$produce|,few|,generic|ͳ +С ADJ aValue|ֵ,height|߶,low| +С ADJ aValue|ֵ,size|ߴ,small|С +ѵ N fact|,study|ѧ,education| +Ѷ N news|,simple| + N expression| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| +ͣ V stay|ͣ,duration=TimeShort| +װ N clothing| + V produce|,industrial| +͹ N human|,#occupation|ְλ,industrial|,#metal| +ͼ N artifact|˹,$produce|,#metal|,industrial| + V cultivate| + V cultivate| + V exercise|,sport| + N metal|,material| +ѹ V produce|,industrial| + V produce|,industrial| + N attribute|,rank|ȼ,&human|,#exercise|,sport| + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ + N part|,%text| +θ N character|,surname|,human|,ProperName|ר + N part|,%text| +λ N attribute|,rank|ȼ,&human|,#exercise|,sport| + V GiveUp| + V break|۶ + V cease|ͣ + V decide| + V judge|ö +ϲ N part|,%earth| +ϲ N part|,%earth| +ϳ V sorrowful| +ϵ V disappear|ʧ,#sell|,commercial| +ϵ V cease|ͣ,content=provide|,#electricity| +϶ V judge|ö +϶ ADJ aValue|ֵ,behavior|ֹ,^continuous| +Ϻ V OwnNot|,possession=young| +Ϻ V help|,military| +Ϻ V situated|,location=ending|ĩ +Ͻ V separate|,partner=country|,politics| +Ͻ V separate|,partner=friend| +Ͼ V separate| +Ͽ V break|۶,Vachieve| +Ͽ V separate| +Ͽ N location|λ,#OutOfOrder| + V FormChange|α,#split|ƿ + N part|,%earth| +Ѵ N part|,%earth| + V cease|ͣ,content=provide|,#electricity| + N tool|þ,*cease|ͣ,#provide|,#electricity| +· N part|,linear|,#electricity| + N part|,%inanimate|,surfacial| + V restrain|ֹ,ResultEvent=drink| + V cease|ͣ,content=provide|,#gas| + V die| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ +Ȼ ADV {emphasis|ǿ} +ˮ V cease|ͣ,content=provide|,#water|ˮ + V lose|ʧȥ + V disconnect| + V tool|þ,linear|,$break|۶ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V speak|˵ +ԫб N part|,%building|,incomplete|ȱ,desolate| +Ӿ V OwnNot|,possession=young| + N material|,?clothing| +д N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| + N material|,?clothing| + CLAS NounUnit|,&human|,mass| + CLAS NounUnit|,&inanimate|,mass| + V pile|ѷ + N shape| +Ѵ V store| +ѷ V pile|ѷ +ѷ N material|,*feed|ι,#crop|ׯ +ѻ V BecomeMore| +ѻ V pile|ѷ +ѻɽ ADJ qValue|ֵ,amount|,many| + V build| + V write|д +ջ N facilities|ʩ,space|ռ,@put|,@store| + V add| + V exchange|,commercial| +Ҹ V exchange|,commercial| +һ V exchange|,commercial| +һ N quantity|,rate|,&exchange|,commercial| +һȯ N coupon|Ʊ֤ +ˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ˮ V add|,patient=water|ˮ + V exchange|,commercial| + V fulfil|ʵ + N community| + N human|,mass| + N shape|,linear| +ӳ N human|,#occupation|ְλ,official| + N shape| + N mark|־ + N army|,generic|ͳ + N human|,mass| + N shape| + N human|,friend|,*exercise|,sport| +Ա N human| + CLAS NounUnit|,double|,&human| + CLAS NounUnit|,double|,&physical| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V add| + V adjust| + V check| + V facing| + V fit|ʺ + V reply| + PREP {concerning} + PREP {partner} + PREP {target} +...˵ PREP {scope} +԰ N part|,%land|½,#waters|ˮ,edge| +԰ N text|,$speak|˵ +Ա V compare|Ƚ +Աȶ N attribute|,similarity|ͬ,&brightness|,&color|ɫ +Բ V IllTreat| +Բ EXPR expression|,*apologize|Ǹ +Բ V suffer|,content=$accuse|ظ,police| +Բ V suffer|,content=$accuse|ظ,police| +Բ N method| +Գ V sing|,entertainment| +Գ ADJ aValue|ֵ,property|,BeSimilar| +Գ N attribute|,property|,BeSimilar|,&entity|ʵ +Դ N attribute|,correctness|,&event|¼ +Դ V reply| +Դ V fight| +Դ V treat|Դ +Ե V WellTreat|ƴ +Եס V WellTreat|ƴ +Ե V equal| +Ե V exchange| +Զ N image|ͼ,angular| +Է N human|,organization|֯,other| +Ը V handle| +Ը V succeed|ɹ +Ը V sing|,entertainment| +Թ V attack| +Թ V adjust|,patient=tool|þ,purpose=TakePicture| +Ժ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ի V talk|̸ +Ի N human|,*talk|̸ +Խ N tool|þ,*communicate| +Խ N image|ͼ,linear| +Խ V connect| +Խ N part|,%clothing|,body| +Ծ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ծ V fit|ʺ +Ծ V recreation| +Կ V VehicleGo|ʻ +Կ V fight| +Կ V resist| +Կ N fact|,compete| +Կ N attribute|,property|,fight|,&entity|ʵ +Կ V fit|ʺ +Կ V sing|,entertainment| + V BeOpposite| + V BeOpposite| + ADJ aValue|ֵ,contrariness|,negative| + N part|,%entity|ʵ,aspect| +ͳһ V merge|ϲ + N readings| + V flow| +· V fit|ʺ + N location|λ + ADJ aValue|ֵ,direction| + ADJ aValue|ֵ,kind| + V equal| + N human|,*HaveContest| + N human|,*equal|,#HaveContest| + N symbol| + N symbol| +ͷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N human|,enemy| + ADJ aValue|ֵ,attachment|,foreign| +ϵ N attribute|,relatedness|,&country|,diplomatic|⽻ +⿪ N regulation|,#country| +⿪ N regulation|,#country| +ó N affairs|,commercial|,#country| + N regulation|,#country|,diplomatic|⽻ +Ϻ N fish| + N entity|ʵ + N human|,friend|,desired| + V disable|м,partof=eye| +Ӧ ADJ aValue|ֵ,kind| +Ӧ V fit|ʺ + PREP {concerning} + V check|,content=account|,commercial| + V fit|ʺ + V compare|Ƚ + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + V HaveContest| +֢ V fit|ʺ,contrast=disease| +֢ҩ V obey|ѭ,content=disease| +֤ V check| + V BeOpposite| + V BeOpposite|,police| +׼ V AimAt| + N readings| + V recreation|,sport| + CLAS NounUnit|,&inanimate| + N land|½,small|С + N stone|ʯ + N wood|ľ +ղ N tool|þ,*wipe| + N shape|,low| + CLAS unit|λ,&weight| +ֹ CLAS unit|λ,&weight| +ּ N unit|λ,weight|,&ship| +λ CLAS unit|λ,&weight| + V sit| + V stay|ͣ +׵ V stay|ͣ,location=institution| + ADJ sit| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ش V urge|ʹ +ش N human|,*urge|ʹ +غ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ػ N place|ط,ProperName|ר,(China|й) + V CausePartMove| + V pause|ͣ +ٿé V know|֪ + V doubt| +ʱ ADV aValue|ֵ,behavior|ֹ,sudden| + V understand| + V SetAside| +ڻ V SetAside|,commercial| +ڻ V SetAside|,commercial| +ڻ N human|,*SetAside|,commercial| + ADJ aValue|ֵ,form|״,blunt| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +۽ N image|ͼ,angular| + N weapon|,*protect| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect| + V flee| + V shiver| + ADJ aValue|ֵ,degree|̶,over| + ADV aValue|ֵ,degree|̶,question| + ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| +ౣ EXPR expression|,*SayHello|ʺ + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N image|ͼ,cubic| + V change| +ಡ ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ +಼ N money|,(Sao tome and Principe|ʥ) +ಿ ADJ aValue|ֵ,kind| +Ŷ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,ability|,able|,create| +Ƹ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +Ƹ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +һ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| +൳ N system|ƶ,politics| +Զ ADJ aValue|ֵ,rate| +һ ADJ aValue|ֵ,rate| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,ish| + ADV {comment|} +෢ N disease| +෽ ADJ aValue|ֵ,range|,all|ȫ +෽ ADJ aValue|ֵ,range|,all|ȫ + N phenomena|,wind| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Togolese|) + N place|ط,country|,ProperName|ר + N human|,(Togolese|) + N quantity|,amount|,&entity|ʵ + N place|ط,capital|,ProperName|ר,(Qatar|) +༫ N attribute|,kind|,many| +༶ N tool|þ,*transport| +ྦྷ N inanimate|,generic|ͳ + ADV time|ʱ,question| +ʡ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADV lucky| +Ͷ ADJ aValue|ֵ,behavior|ֹ,fair| +׶ N place|ط,city|,ProperName|ר,(Canada|ô) +ô ADV aValue|ֵ,degree|̶,question| +ô ADV aValue|ֵ,degree|̶,very| +ý N tool|þ,#sound|,#music|,image|ͼ,#shows| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Dominica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Dominica|) + N human|,able| + N place|ط,country|,politics|,#community|,#human| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| +ǰ ADV aValue|ֵ,duration|,TimeLong|,past| + ADJ aValue|ֵ,kind| + V BecomeMore| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ţë ADJ qValue|ֵ,amount|,many| +ɫ ADJ aValue|ֵ,color|ɫ,colored| + ADJ qValue|ֵ,amount|,many|,question| +ʱ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ qValue|ֵ,amount|,fragment| +Ʊ N document|,*select|ѡ + N human| +ٲ V recompense| + V doubt| +ѩ ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + V ize|̬,PatientAttribute=different| + N attribute|,kind|,many| +; ADJ aValue|ֵ,effect|Ч,many| +΢ V ExpressDissatisfaction|ʾ + ADJ qValue|ֵ,amount|,many|,more| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ +Ԫ ADJ qValue|ֵ,amount|,many| +Ԫ N attribute|,kind|,many| + ADJ aValue|ֵ,property|,WeatherChange|,#CloudMist| +֭ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +֭ ADJ aValue|ֵ,property|,contain|,#liquid|Һ + ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,behavior|ֹ,many| +ʽ ADJ aValue|ֵ,manner|ʽ,many| + ADJ aValue|ֵ,kind|,many|,language| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˶ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +㶯 N animal|,generic|ͳ + V speak|˵ +觺 N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + V rob| + V seek|ıȡ + V win|ʤ + V win|ʤ,commercial| + V seek|ıȡ + V win|ʤ + V TakeBack|ȡ + V weep| + V win|ʤ +Ŀ ADJ aValue|ֵ,brightness|,bright| +ȡ V occupy|ռ,military| +ȡ V rob| +ȡ V seek|ıȡ +ȥ V take|ȡ +ȥ V kill|ɱ + V take|ȡ + N facilities|ʩ + N facilities|ʩ,military| + V pile|ѷ + N shape| + V escape| + V hide| + V escape| + V hide| +ܲ ADJ aValue|ֵ,possibility|,impossible|,$escape| + V hide| + V escape| + V hide| +㿪 V escape| + V evade|ر + V escape| + CLAS NounUnit|,&CloudMist|,&FlowerGrass| + N FlowerGrass| + V kick|߲ + V CausePartMove|,PatientPartof=foot| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,*drive|Ԧ + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + V break|۶ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N attribute|,behavior|ֹ,stiff|,&entity|ʵ + V OutOfOrder| + N OutOfOrder| +̥ V cease|ͣ,content=pregnant| + N InsectWorm| + ADJ aValue|ֵ,height|߶,tall| +üɽ N land|½,ProperName|ר,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + N bird| + ADJ aValue|ֵ,color|ɫ,yellow| +ڴ N disease| +ʯ N stone|ʯ,material| +ë N part|,%bird|,hair|ë + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) +˹ N humanized|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ո N place|ط,provincial|ʡ,ProperName|ר,(US|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,duration|,TimeShort| + N language|,#country|,ProperName|ר,(Russia|˹) + N language|,#country|,ProperName|ר + N part|,%AnimalHuman|,head|ͷ + N quantity|,amount|,&physical| + ADJ qValue|ֵ,rate| +ֵ N quantity|,rate|,&event|¼ + N quantity|,amount|,&event|¼ + N part|,%AnimalHuman|,head|ͷ +ֳ V ShowJoy|ʾϲ +ͷ N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| +Ĺ N fact|,do| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cheat|ƭ +թ V cheat|ƭ + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,performance|,kill|ɱ,undesired|ݬ,#disease| + V disgust| + N event|¼,undesired|ݬ,evil|,crime| + N human|,undesired|ݬ,evil| + V ill|̬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ӯ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ,evil| + N result|,undesired|ݬ +ݺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V damage| + V decline|˥ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N thought|ͷ,#dream|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N attribute|,power|,undesired|ݬ,&organization|֯ +ϰ N attribute|,habit|ϰ,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,kill|ɱ +˺ N disease| +ͨ N phenomena|,#money|,BecomeMore|,commercial| + N disease| + N aspiration|Ը,undesired|ݬ + N human|,*slander|̰ + V slander|̰ +ս N fact|,#fight|,fierce| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V IllTreat| + N location|λ,important| + N phenomena|,unfortunate|,undesired|ݬ +ŵ N phenomena|,#WeatherChange| +϶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ecuador|϶) +϶ N place|ط,country|,ProperName|ר,(South America|) +϶ N human|,(Ecuador|϶) + N place|ط,city|,ProperName|ר,(Ethiopia|) + N phenomena|,unfortunate|,undesired|ݬ + V control| + V defend| + V hold| +ɱ V destroy| +ɱ V kill|ɱ +ɱ N human|,*kill|ɱ + V defend| + V disappointed|ʧ +Ҫ ADJ aValue|ֵ,content|,accurate|׼,desired| + V restrain|ֹ + V obstruct|ֹ +ֹ V obstruct|ֹ + V obstruct|ֹ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +״ N community|,ProperName|ר,(China|й) +¿ N community|,ProperName|ר,(China|й) + V HungryThirsty| + V HungryThirsty| +ʳ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V CauseToDo|ʹ,ResultEvent=HungryThirsty|,degree=extreme| + V HungryThirsty|,degree=extreme| + V die|,cause=HungryThirsty| + V kill|ɱ,means=HungryThirsty| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V grant| + N emotion|,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +÷ N place|ط,capital|,ProperName|ר,(Chad|է) + V revenge| + N emotion|,like|ϧ,kindhearted|,desired| + N human|,friend|,kindhearted|,desired| +ͬ N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +Թ N emotion|,grateful|м,blame|Թ +Թ N emotion|,hate|,undesired|ݬ + N emotion|,like|ϧ,kindhearted|,desired| +ɽ N emotion|,like|ϧ,kindhearted|,desired| +׼ V agree|ͬ,manner=kindhearted| + CONJ {EventResult|¼} + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + COOR {and|} + CONJ {but|} + ADV aValue|ֵ,time|ʱ,hind| + N time|ʱ,now| +֮ N time|ʱ,#age|,adult| + PREP {concerning} + CONJ {supplement|ݽ} + CONJ {but|} + CONJ {supplement|ݽ} + PREP {concerning} + ADV {comment|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,family|,young| + N music|,$sing|,#young| +ʵ N human|,undesired|ݬ,royal|,$control| + N part|,%InstitutePlace|,#young|,medical|ҽ +ѧ N knowledge|֪ʶ,#young|,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ů N human|,family|,mass|,young| +Ů N human|,mass| +ʱ N time|ʱ,#young| + N human|,future| +ͯ N human|,young| +ͯѩ N clothing| +ͯ N part|,%institution|,politics|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +ͯ N time|ʱ,day|,festival|,#young|,@congratulate|ף +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +Ϸ N fact|,secondary| + N human|,family|,male|,young| + N part|,%AnimalHuman|,*listen| + N shape| + V ill|̬,scope=listen|,medical|ҽ + V ill|̬,scope=listen|,medical|ҽ + N part|,%AnimalHuman|,#listen| +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N part|,%AnimalHuman|,*listen| + N stone|ʯ,#AnimalHuman|,waste| + N fact|,beat|,#skin|Ƥ + N fact|,beat|,#skin|Ƥ + N tool|þ,*decorate|װ + N tool|þ,*listen| + N part|,%AnimalHuman|,#listen| + N part|,%AnimalHuman|,#listen| + ADJ disable|м,scope=listen| + N disease| +Ŀ N human|,military|,*scout| +Ŀ N knowledge|֪ʶ +Ŀһ V prosper| + N tool|þ,*protect| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#AnimalHuman|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V teach| + V perception|֪ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ѩ N part|,%AnimalHuman|,dot| +ʹ N part|,%AnimalHuman| + N disease| + V speak|˵,manner=weak| + N human|,*speak|˵ +׹ N part|,%AnimalHuman| +ĿȾ V undergo|,content=CauseAffect|Ⱦ + ADJ aValue|ֵ,kind|,special| + PRON {SecondPerson|} + ADJ aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V entice| + N food|ʳƷ + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N character|,(China|й) + NUM qValue|ֵ,amount|,cardinal|,mass| +ѵ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N human|,sport| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,rich| +Ӣ N chemical|ѧ + N human|,intimate|,female|Ů + N human|,*own|,#house| + N human|,#occupation|ְλ,official|,#ship| +ͷ N drinks|Ʒ,$addict|Ⱥ +һ ADJ aValue|ֵ,property|,$merge|ϲ + N MusicTool| + N InsectWorm|,undesired|ݬ +˵ ADV aValue|ֵ,behavior|ֹ,active|Ը +û˵ ADV aValue|ֵ,behavior|ֹ,active|Ը + N part|,%implement| +ױ N chemical|ѧ + ADJ aValue|ֵ,attachment|,#DoSum| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,rank|ȼ,elementary| + N human|,lazy|,undesired|ݬ + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +Ĵָ N part|,%AnimalHuman|,hand| + N human|,intimate|,female|Ů +꼶ѧ N human|,*study|ѧ,education| + N army|,military|,ProperName|ר,(China|й) + ADJ aValue|ֵ,newness|¾,used| +߽ N tool|þ,*WhileAway|,*congratulate|ף +ǧﳤ N fact|,military|,past| +ά ADJ aValue|ֵ,form|״,surfacial| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ʽ ADJ expression|,#quantity|,#symbol|,#DoSum|,#calculate| + N chemical|ѧ + N chemical|ѧ +̼ N gas| + N time|ʱ,month| +· N time|ʱ,month| +ս N fact|,fight|,military| + N attribute|,property|,double|,&entity|ʵ + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,undesired|ݬ,treacherous|,official| + CLAS NounUnit|,&weapon| + V announce| + V become|Ϊ + V express|ʾ + V firing| + V happen| + V issue|ַ + N part|,%AnimalHuman|,hair|ë + V produce| + V reveal|¶ + V send| + V shoot| + V shoot|,sport| + V speak|˵ + V happen|,experiencer=fact|,police| + V become|Ϊ,descriptive=white| + V announce|,content=result|,education| + V issue|ַ,possession=MakeAppointment|Լ + N human|,issue|ַ,#MakeAppointment|Լ + V post|ʼ,patient=information|Ϣ + N human|,*post|ʼ + V publish| + V ill|̬,medical|ҽ + V announce| + N fact|,@announce| + V prosper| + N AlgaeFungi|ֲ,?food|ʳƷ + V change|,StateFin=wet|ʪ + V start|ʼ,content=leave|뿪 + V worried|ż + V announce| + V issue|ַ + V send| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,country|,*prosper| + V stupefied|ľȻ + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| + N machine|,*produce|,#electricity| +רҵԱ N human|,industrial| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + V TurnOn| + V mobilize| + V start|ʼ + N part|,%vehicle|ͨ,heart| + V shiver| + V begin|ʼ + V issue|ַ + N material|,?food|ʳƷ + V endeavour| +ͼǿ V endeavour| + V endeavour| +ͼǿ V endeavour| + V mad| + N food|ʳƷ + V send|,patient=news| + V issue|ַ + V AppearanceChange|۱,StateFin=bright| + V aValue|ֵ,property|,illuminate| + V fever| + V CauseToDo|ʹ,ResultEvent=excrete|й +ʩ V order| + V become|Ϊ,descriptive=black| + V angry| + V endeavour| + V become|Ϊ,descriptive=red| + V ill|̬,scope=look|,medical|ҽ + V order| + V speak|˵,manner=angry| + V return| + V flurried| + V CauseToDo|ʹ + V express|ʾ + V AppearanceChange|۱,StateFin=fire| + V angry| + V lighting|ȼ + V send|,patient=artifact|˹,commercial| + V lucky|,scope=status| + V worried|ż + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + V prosper| +¸ V prosper| + V reward| + V StateChange|̬ + V dig|ھ + V investigate| + V perception|֪ + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + V tired|ƣ + N InstitutePlace|,@MakeUp|ױ,commercial| +ɧ V protest| + V AppearanceChange|۱,StateFin=bright| +ǹ N tool|þ,*MakeSound|,*order|,#exercise| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + V paralyse|̱ +ë V angry| +ë V flurried| +ù V StateChange|̬,StateFin=OutOfOrder| + V ignorant|֪ + V teach|,content=elementary| + N material|,?food|ʳƷ + V produce| + N human|,*create| + N human|,*produce| + V uprise| +ŭ V angry| + V submit|,possession=readings| + V AppearanceChange|۱,StateFin=fat| +ݼ N chemical|ѧ,*experiment|ʵ +Ƣ V angry| +Ʊ N bill|Ʊ,#wealth|Ǯ + V start|ʼ + N human|,*start|ʼ + V need|,content=mating| + V shoot|,patient=SportTool|˶,sport| + V AppearanceChange|۱,StateFin=hot| + V fever| + V flurried| + V produce|,PatientProduct=hot| +ʡ ADJ aValue|ֵ,content|,profound|,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| + V become|Ϊ,descriptive=soft| +ɢ V cure|ҽ,means=cool|,medical|ҽ +ɢ V disperse|ɢ + V fever| + N human|,*FondOf|ϲ,#WhileAway| + V firing| + V shoot| + V transmit| +䳡 N place|ط,@shoot| + N machine|,*shoot| + V MakeSound| + V happen| + V produce| + N chemical|ѧ,*produce| + V swear| + V sell|,commercial| +ˢ N tool|þ,*wipe|,#MakeUp|ױ +ˮ V unfortunate| + V send| + V transmit| + V StateChange|̬,StateFin=sour| + V painful|ʹ + N part|,%implement| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N document|,official| + V ask| + V perception|֪ + N human|,*perception|֪ + N place|ط,#event|¼,@ExistAppear| +Ц V laugh|Ц +й V release|ͷ +н V issue|ַ,possession=payment| + V post|ʼ,patient=letter|ż + N human|,*post|ʼ + N attribute|,pattern|ʽ,&hair|ë + N attribute|,pattern|ʽ,&hair|ë,#female|Ů + V publish| + V sell| + V sell|,commercial| +֤ N human|,official|,*issue|ַ,#document| +ѿ V pregnant| + V speak|˵ + N human|,*speak|˵ + V inflamed| + V CauseToGrow|ʹɳ + V use| + V CauseToGrow|ʹɳ + V itch| + V speak|˵ + V grow|ɳ +ȫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Դ V begin|ʼ +Դ N place|ط,#event|¼,@ExistAppear| +Դ V ResultFrom|Ե + V send| + V dizzy| +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V include| +չй N place|ط,country|,*grow|ɳ + V FormChange|α,StateFin=protruding|͹ + V perception|֪,content=swollen| +֤ V issue|ַ,possession=document| + V ResultFrom|Ե + ADJ aValue|ֵ,source|Դ + V angry| + V happen| + V show|,content=lascivious| + V issue|ַ,possession=payment| + V fever| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| + V punish|,ResultContent=drink| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| +û V levy| + V punish|,sport| + N ship| + N ship| + V attack| + V break|۶ +ľ V break|۶,patient=wood|ľ,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V lack|ȱ + V tired|ƣ + N human|,unable|ӹ,undesired|ݬ + V tired|ƣ + V lack|ȱ,scope=human| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + N human|,#power|,strong|ǿ + N part|,%implement| + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N knowledge|֪ʶ,religion|ڽ + N law|ɷ + N method| + N place|ط,country|,ProperName|ר,(France|) + N document|,#law|ɷ + V punish|,police| + N thing|,able| + N tool|þ,religion|ڽ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| + N place|ط,police|,@kill|ɱ,#crime| + N document|,#law|ɷ + ADJ aValue|ֵ,standard|׼,average|,desired| + N human|,*handle| +̳ N human|,*receive| + N quantity|,amount|,&human|,#select|ѡ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| +ٺʦ N human|,police| + N law|ɷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר + N money|,(Andorra|) +ͩ N tree| + N attribute|,name|,religion|ڽ,&human| + N law|ɷ + N human|,#occupation|ְλ,police|,#crime| +˸ N place|ط,city|,ProperName|ר,(Germany|¹) + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(France|) + N money|,(Monaco|Ħɸ) + N human|,royal|,ProperName|ר,(Egypt|) + N knowledge|֪ʶ,#law|ɷ +ѧ N human|,#knowledge|֪ʶ + N law|ɷ + ADJ aValue|ֵ,attachment|,#police| + N aValue|ֵ,attachment|,law|ɷ + N law|ɷ,politics|,generic|ͳ +ɳ N process|,#law|ɷ +ɹ N human|,police| + N fact|,accuse|ظ,police| +ж N fact|,#law|ɷ,police| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N fish| + N language|,#country|,ProperName|ר + N method| + N attribute|,name|,religion|ڽ,&human| + N MusicTool|,religion|ڽ + N human|,#police|,#InstitutePlace| +ʦ N human|,religion|ڽ + N method| +ͥ N institution|,police|,*judge|ö + N law|ɷ + N language|,#country|,ProperName|ר +˹ N human|,undesired|ݬ +˹ N system|ƶ,undesired|ݬ +˹ N human|,evil| +˹ N system|ƶ,undesired|ݬ + N image|ͼ,linear| + N institution|,news|,ProperName|ר,(France|) +ѧ N knowledge|֪ʶ,#law|ɷ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,#law|ɷ,education| +ҽ N human|,#occupation|ְλ,police|,*check|,#crime|,medical|ҽ +ҽѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ + N clothing|,#body|,religion|ڽ + N language|,#country|,ProperName|ר +Ժ N institution|,police|,@judge|ö + N law|ɷ + N system|ƶ,#law|ɷ + V manage|,AccordingTo=law|ɷ + N method| + N fittings|,%building| + N part|,%ship|,*drive|Ԧ + N ship| + N material|,?clothing| + N ship| + CLAS NounUnit|,&text|,&event|¼ + N quantity|,amount| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N symbol|,#army|,military| +ľ N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +خ N place|ط,city|,ProperName|ר,(China|й) + V LookFor|Ѱ + V add| + V cross|Խ + V quarrel| + V reverse|ߵ + V translate| + V deny|,police| + N artifact|˹,#copy|д + V engage|,agricultural|ũ + V roll| + V roll| + V roll| + V add| + V fly| + V wave|ڶ + V repair|,industrial| +ͷ V roll| + V deny|,police| + V roll| + V deny| + V build| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + V open| + V quarrel| +ɹɲ V dry|,patient=FlowerGrass|,agricultural|ũ +ɽԽ V cross|Խ + V roll| + V uprise| + V exercise|,sport| + V roll| + V turn|Ťת + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V uprise| +츲 ADJ aValue|ֵ,ability|,frighten|Ż + V repair| + V repair| + N human|,#occupation|ְλ,literature|,*translate| + V translate| +ӡ V print|ӡˢ +Խ V cross|Խ + V read| +Ƹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת V roll| + N character|,surname|,human|,ProperName|ר + N fittings|,%building| + N attribute|,boundary|,&event|¼ + N facilities|ʩ,#building|,*defend| + N fittings|,%building| + N attribute|,circumstances|,&event|¼,#restrain|ֹ,undesired|ݬ + N tool|þ,*detain|ס,#bird| + N chemical|ѧ + N material| + N chemical|ѧ + V GiveBirth| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N FlowerGrass|,mass| +ƽ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,complicated|,simple|,&content| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æIJ N fact|,busy|æ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| +ٲʢ V prosper| +ٸǿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N character|,old|,(China|й) + N character|,old|,(China|й) +Ƚ N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,property|,WeatherFine| + V GiveBirth| + V GiveBirth| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ qValue|ֵ,amount|,many| +ֳ V GiveBirth| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + N place|ط,ordinary|,#human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,kind|,special| + N human|,unable|ӹ,undesired|ݬ + N human|,ordinary| +ʿ N material|,liquid|Һ,*lubricate| + N event|¼,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ +ӹ ADJ aValue|ֵ,kind|,ordinary| + V MakeTrouble| + V MakeWorried| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V disgust| + V upset| + V MakeTrouble| + V upset| + V upset| + V MakeTrouble| + V MakeWorried| + V upset| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V upset| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + N human|,undesired|ݬ,#uprise| + V oppose| + V resist| + V roll| + V uprise|,politics| +Ϊʤ V change|,StateIni=defeated|,StateFin=win|ʤ + N quantity|,rate|,&quantity| + V refute| + N human|,*refute| + V loyal|Т + N attribute|,similarity|ͬ,&entity|ʵ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V ServeAsFoil| + V attack|,military| +༥ V satirize| + V jump| + N weapon|,$firing| + V oppose|,target=community|,#politics| + ADV {supplement|ݽ} + ADV {supplement|ݽ} + V oppose|,target=system|ƶ,#politics| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,*uprise| + N human|,undesired|ݬ,#uprise|,#politics| + V oppose| + V resist| +Գ V differ|ͬ +Ե N community|,*oppose|,#politics| +Ե N human|,*oppose|,politics| + N community|,*oppose|,#politics| +Ʊ N bill|Ʊ,*oppose|,#select|ѡ + N human|,*oppose| + ADV {supplement|ݽ} +˹ V oppose|,target=system|ƶ,#politics| + V BeRecovered|ԭ,StateIni=bad| + N fact| + N fact|,repeat|ظ +޳ V change|,manner=often| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +һ V attack| +һ V oppose| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,undesired|ݬ,*uprise| + V attack|,military| + V check|,content=self| + V oppose|,target=system|ƶ,#politics| + V LookBack| + V illuminate| + N lights| + ADV aValue|ֵ,behavior|ֹ + V deny| + V attack| + N army|,attack| + V resist| + N human|,*resist| + N information|Ϣ,$respond|Ӧ +¢Ϸ N law|ɷ + N part|,%entity|ʵ,aspect| + N part|,%inanimate|,edge| + N human|,entertainment| + N human|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| + V uprise|,politics| + V attack|,military| + V fall|,manner=also|Ҳ +֮ V do|,treacherous| +DZ V defend|,patient=ship|,military| +DZͧ ADJ aValue|ֵ,ability|,able|,attack| + N law|ɷ +Ǻ N symbol|,#quantity|,#DoSum| + V illuminate| + V respond|Ӧ +迹 V obstruct|ֹ,#electricity| + ADJ aValue|ֵ,behavior|ֹ,treacherous| + N human|,*uprise| +ʡ V check|,content=self| + ADV aValue|ֵ,behavior|ֹ +ˮ V betray| +˼ V think|˼ + V accuse|ظ +̹ ADJ aValue|ֵ,ability|,able|,attack| + ADJ aValue|ֵ,ability|,able|,attack| + V ask| + N expression|,question| + N information|Ϣ,$respond|Ӧ + ADJ aValue|ֵ,direction| +ҧһ V accuse|ظ,content=fake|α +Ӧ V respond|Ӧ +Ӧ N physical|,*ize|̬ +ӳ V mean|ָ +ӳ V tell| +ս ADJ aValue|ֵ,behavior|ֹ,#oppose|,#fight| + V illuminate| + V surrender| +֤ N information|Ϣ,#prove|֤ +֤ N method| +֮ CONJ {transition|ת} +֮Ȼ ADV {comment|} +֮ CONJ {transition|ת} +ת V reverse|ߵ + ADJ aValue|ֵ,performance| + N attribute|,strength|,negative|,&physical| +ڵ V ask| +ۻ V masticate|׽ + V GoBack| + V GoBack|,LocationFin=city| + N process|,#GoBack|,#route|· + V GoBack|,purpose=defend|,military| + V repeat|ظ,manner=also|Ҳ + V GoBack| + V return| + V GoBack| + V grow|ɳ + V GoBack|,LocationFin=place|ط + V sell| +У V GoBack|,LocationFin=InstitutePlace|,education| + V repair|,again| + N quantity|,rate|,#repair|,&artifact|˹ +豹 V resume|ָ,StateFin=pure| + N attribute|,pattern|ʽ,&thing| + N attribute|,range|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + N entity|ʵ,example|ʵ + N attribute|,range|,&entity|ʵ + N example|ʵ +Χ N attribute|,range|,&entity|ʵ + N text|,example|ʵ + V buy|,commercial| + V transport|,patient=addictive|Ⱥ,purpose=sell|,crime|,commercial| + V sell|,commercial| + V transport|,patient=weapon|,purpose=sell|,crime|,commercial| +˿ V transport|,patient=human|,purpose=sell|,crime|,commercial| + V transport|,patient=physical|,purpose=sell|,crime|,commercial| +˽ V transport|,patient=physical|,purpose=sell|,crime|,commercial| + V transport|,purpose=sell|,commercial| + N human|,#occupation|ְλ,commercial| + V ExpressAgainst|Ǵ + V SufferFrom|,medical|ҽ + V attack| + V disobey|Υ + V disobey|Υ,crime| + V do| + V exposure|¶,scope=crime|,police| + V ill|̬,medical|ҽ + V WorthNot|ֵ + V WorthNot|ֵ + V worried|ż + V err| + V worth|ֵ + V worth|ֵ + V disobey|Υ,content=law|ɷ,crime| + V err|,sport| + V damage|,#mating|,crime| + V disobey|Υ,content=regulation| + V ill|̬,medical|ҽ + V disobey|Υ,content=regulation| +ë V err| + V embarrassed|Ϊ + N human|,crime|,undesired|ݬ,$detain|ס + V offend|,target=HighRank|ߵ +IJ V doubt| + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + V do|,content=crime| + N human|,crime|,undesired|ݬ + N quantity|,rate|,#crime|,&organization|֯,&place|ط + N human|,$doubt|,#crime| + N fact|,eat| + N food|ʳƷ,generic|ͳ + N food|ʳƷ + N food|ʳƷ,generic|ͳ + N InstitutePlace|,@eat|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@eat|,commercial| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put|,#edible|ʳ + N attribute|,ability|,&eat| + N InstitutePlace|,@eat|,commercial| +ʳ N food|ʳƷ,generic|ͳ + N room|,@eat| +Ͱ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ͱ N human|,#eat|,undesired|ݬ +Ͱ N human|,unable|ӹ,undesired|ݬ +Ͱ N tool|þ,cubic|,@put|,#food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N method|,*earn|׬,*alive| + N tool|þ,cubic|,@put|,#food|ʳƷ +ׯ N InstitutePlace|,@eat|,commercial| + N furniture|Ҿ,@put|,#edible|ʳ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| + V float|Ư + V spill| + V undergo|,content=soak| + V ActGeneral| + V read|,range=extensive| + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,attachment| + V spill| + V surplus|ʣ +ij V appear|,quantity=many| + ADJ aValue|ֵ,attachment| + V appear| + N sound| +ָ V mean|ָ,ordinary| + V float|Ư + N InstitutePlace|,space|ռ,industrial|,*produce| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N FlowerGrass|,fragrant| + N FlowerGrass|,fragrant| + N human|,#reside|ס,near| + N attribute|,age|,&female|Ů + N attribute|,name|,&female|Ů + N chemical|ѧ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N chemical|ѧ,fragrant| + N emotion|,love|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,upright| + N character|,surname|,human|,ProperName|ר + N direction| + N document|,medical|ҽ,#medicine|ҩ + N method| + N part|,%entity|ʵ,aspect| + N place|ط + CLAS unit|λ,&bulk| + CLAS unit|λ,&size|ߴ,&area| + ADV {EventResult|¼} + N plans|滮 + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V benefit| + V excrete|й + N food|ʳƷ +֮ N attribute|,behavior|ֹ,convenient|,desired| + N material|,wood|ľ + ADV time|ʱ,past| + ADV {emphasis|ǿ} + N symbol| +ʽ N symbol| +ʽ N LandVehicle|,*compete|,sport| + N thought|ͷ + N method| + N knowledge|֪ʶ,#method| + ADJ aValue|ֵ,range|,all|ȫ + N shape|,square| + N document|,#medicine|ҩ,#medical|ҽ + N shape|,square| + N symbol| + N plans|滮 + N part|,%entity|ʵ,aspect| + N army|,military| + AUX BeAble|ܹ +ʽ N attribute|,behavior|ֹ,manner|ʽ,&event|¼ +ʽ V SelfMoveInManner|ʽ +ʿ N human|,religion|ڽ + N material|,?food|ʳƷ +λ ADJ aValue|ֵ,location|λ +λ N location|λ + N direction| + N part|,%LandVehicle|,*drive|Ԧ,hand| + ADJ aValue|ֵ,direction| +δ V prosper| + ADJ aValue|ֵ,form|״,square| + N language| +Բ N location|λ +Բ N place|ط,#reside|ס + N human|,religion|ڽ + N regulation|,politics| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,upright| + N ship| + N ship|,religion|ڽ,ProperName|ר + N document|,#medicine|ҩ,#medical|ҽ + N material|,wood|ľ +Բ V FitNot| + N character|,surname|,human|,ProperName|ר + N house|,generic|ͳ + N human|,mass|,#family| + N room| + N shape|,#house| + N room|,%ship| + N wealth|Ǯ,#house| +ز N wealth|Ǯ,#house| +زҵ N wealth|Ǯ,#earth|,#building| + N part|,%house|,head|ͷ + N human|,*own|,#house| + V improve|,patient=reside|ס + N part|,%building|,base| + N room| + N human|,*borrow|,*reside|ס,#house| + N part|,%building|,mouth| + N house|,generic|ͳ + N fact|,mating| + N room| + N house|,generic|ͳ + N human|,*own|,#house| + N house|,generic|ͳ + N expenditure|,*borrow|,#house| + N part|,%building|,head|ͷ + V defend| + N facilities|ʩ,*protect|,space|ռ + V obstruct|ֹ + V withstand|ס + V obstruct|ֹ,patient=uprise|,police| + N human|,#occupation|ְλ,police| + ADJ aValue|ֵ,ability|,able|,exempt| + V obstruct|ֹ + V obstruct|ֹ,patient=disease| +ʤ ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#wet|ʪ + ADJ aValue|ֵ,ability|,able|,withstand|ס + V remove| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=steal|͵ + N place|ط,military|,$defend| + V obstruct|ֹ,patient=cool| + V obstruct|ֹ,patient=poison| + N tool|þ,*obstruct|ֹ,#poison| + V defend| + V escape|,cause=wind| + N tree|,*protect| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + N chemical|ѧ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| + V obstruct|ֹ,patient=waterless| + V obstruct|ֹ,patient=waterlogging| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V protect| + N tree| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ +δȻ V obstruct|ֹ,patient=unfortunate| +δȻ V obstruct|ֹ,patient=unfortunate| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=fire| + V defend|,patient=sky| +ն N facilities|ʩ,@escape| +ն N location|λ,@hide|,#crime|,undesired|ݬ +ն N place|ط,@hide|,#crime|,undesired|ݬ + V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=ice| +© ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + V defend| +زס ADJ aValue|ֵ,possibility|,impossible|,$defend| + V obstruct|ֹ,patient=hot| + V obstruct|ֹ,patient=hot| +ˮ ADJ aValue|ֵ,ability|,able|,withstand|ס,#liquid|Һ + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shrink|С +΢Ž V restrain|ֹ,time=early| +α V obstruct|ֹ,ResultEvent=forge|α + V defend| + N affairs|,#defend|,#country| + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,withstand|ס +Ѵ V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=disease|,medical|ҽ + ADJ aValue|ֵ,ability|,able|,withstand|ס +겼 N material|,?clothing| + V defend|,military| + N defend|,military| + N human|,*defend|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,ResultEvent=shiver| +ֹ V obstruct|ֹ + V cure|ҽ + V obstruct|ֹ + V obstruct|ֹ + V damage| + V BeSimilar| + V imitate|ģ +· V BeSimilar| +¹ V imitate|ģ,content=artifact|˹ +ð V imitate|ģ +Ч V imitate|ģ + V produce|,means=imitate|ģ + V imitate|ģ + N imitate|ģ + V produce|,means=imitate|ģ + V ask| + V visit| +ƶʿ V visit|,target=poor| +̸ N fact|,talk|̸ + V investigate| + V visit| + V visit|,target=friend| + N material|,?clothing| +ij N material|,?clothing| +Ķ N part|,%machine| +Ļ N machine|,industrial| +ɴ V produce|,PatientProduct=material|,industrial| +˿ V produce|,PatientProduct=material|,industrial| +֯ V produce| +֯ N InstitutePlace|,factory|,@produce|,industrial| +֯ N machine|,industrial| +֯ N InsectWorm| +֯Ʒ N material|,?clothing| +֯ҵ N affairs|,industrial|,#material| + V abandon| + V add| + V adjust| + V display|չʾ + V enlarge| + V exile| + V expel|,agricultural|ũ + V grow|ɳ + V indulge| + V lend|,commercial| + V put| + V release|ͷ + V shoot| +ų V shoot| +Ŵ V enlarge| +Ŵ N tool|þ,*enlarge|,#look| +Ŵ N attribute|,performance|,&enlarge| +Ŵ N machine|,*enlarge|,#electricity| +Ŵ V lend| +ŵ V willing|Ը +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ V shoot|,#electricity| +ŵ V IllBehave| +ŵ V MakeTrouble| +Ŷ V disseminate|,content=bad| +Ŷ V put|,patient=poison|,purpose=kill|ɱ +ŷ V CauseToDo|ʹ,ResultEvent=fly| +ŷ V MoveItInto|,patient=gas|,purpose=clean|ʹ +ŷ V defend| +ŷ V disseminate|,content=information|Ϣ +ŷ V release|ͷ,patient=crime|,purpose=exercise|,police| +Ź V cease|ͣ +Ź V forgive|ԭ +Ź V release|ͷ +Ż V delay| +Ż V CauseToDo|ʹ,ResultEvent=alive| +Ż V MakeTrouble| +Ż V lighting|ȼ,crime| +ż V enjoy|,content=cease|ͣ +ż V enjoy|,content=festival| +ſ V do|,manner=free| +ſ V SelfMoveInManner|ʽ,result=empty| +ſ V boast| +ſ V disseminate|,content=information|Ϣ +ſ ADJ aValue|ֵ,circumstances|,relax|,desired| +ſ V weaken| +ſ V lend|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V satisfied| + V SlowDown| + V TakeCare|,#livestock|,agricultural|ũ +ţ N human|,agricultural|ũ,young| + V TalkNonsense|Ϲ˵ + V firing|,instrument=weapon| +ƨ V excrete|й,patient=waste| + V abandon| + V cease|ͣ + N human|,*abandon| + V WeatherFine| +Ȩ V abandon|,possession=power|,politics| + V shoot|,patient=hot| + V indulge| + V indulge| +ɢ V disperse|ɢ + V defend| + V shoot| +䲡 N disease| + N lights|,*diagnose|,medical|ҽ + ADJ aValue|ֵ,SoundVolume|,loud| + V release|ͷ,patient=AnimalHuman| + V release|ͷ,patient=AnimalHuman|,religion|ڽ + V endeavour| + V release|ͷ +ˮ V TurnOn|,patient=water|ˮ +ˮ V drain|ų,patient=liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V loosen| + V weaken| + V disseminate| + V MoveItDown| + N tool|þ,*display|չʾ,#shows| + V AtEase| +IJ V worried|ż + V release|ͷ +ѧ V enjoy|,content=festival|,education| +ѧ V finish|,education| +Ѫ V MakeBad|Ӻ +Ѫ V cure|ҽ + V look|,manner=wide| + V look|,content=place|ط + V foster|,agricultural|ũ + N image|ͼ,#vehicle|ͨ +ӳ V display|չʾ,shows| +ӳ N community|,*display|չʾ,#shows| +ӳ N tool|þ,*display|չʾ,#shows| + V ThinkOf|˼ +֮ĺ׼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V put| + V store| + V exile| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N inanimate| + N place|ط,country|,ProperName|ר,(Philippines|ɱ) +Ʊ V PlayDown| +Ʊ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +Ʊ V despise| +Ʒ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ʒ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Philippines|ɱ) +ɱ N place|ط,country|,ProperName|ר + V BeNot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N place|ط,ProperName|ר + N result|,undesired|ݬ,wrong| +...Ī V be|,manner=comment| +DZ ADJ aValue|ֵ,content|,opened| +DZ ADJ aValue|ֵ,behavior|ֹ,^fierce| +DZ ADJ aValue|ֵ,importance|,secondary| +DZ׼ ADJ aValue|ֵ,standard|׼,useless| +dz ADV aValue|ֵ,degree|̶,extreme| +dz ADV aValue|ֵ,degree|̶,very| +dz ADJ aValue|ֵ,kind|,special| +dz V sorrowful| +dz; ADJ aValue|ֵ,quality|,durable|,desired| +dz ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ǵ ADJ aValue|ֵ,kind|,special| +ǵ ADV {supplement|ݽ} +ǵ AUX {modality|} +ǵ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +Ƿ N fact|,publish|,crime|,undesired|ݬ +Ƿ N publications|鿯,crime|,undesired|ݬ +Ƿõ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǷӪ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ǹ ADJ aValue|ֵ,behavior|ֹ,passive| +ǹ˰ N method|,commercial| +ǹٷ ADJ aValue|ֵ,attachment|,private|˽ +ǽ ADJ aValue|ֵ,quality|,^metal| +Ǿ ADJ aValue|ֵ,importance|,secondary| +Ǿ ADJ aValue|ֵ,attachment|,^military| + V IllBehave|,crime| + V damage| +¿ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +˹ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ ADJ aValue|ֵ,attachment|,^commercial| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +ͬС ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,form|״ + V ExpressAgainst|Ǵ +Ӫ ADJ aValue|ֵ,property|,^earn|׬ + ADJ aValue|ֵ,duration|,TimeShort| +ԭ ADJ aValue|ֵ,source|Դ,^original|ԭ +սԱ N human|,military| +ʽ ADJ aValue|ֵ,behavior|ֹ,informal|ʽ +ͳ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,attachment|,organization|֯,ordinary| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Africa|) + N place|ط,ProperName|ר,(Africa|) +޽ڹͬ巨 N money|,(Benin|) +޽ڹͬ巨 N money|,(Mali|) +޽ڹͬ巨 N money|,(Niger|ն) +޽ڹͬ巨 N money|,(Senegal|ڼӶ) + N human|,(Africa|) +ר ADJ aValue|ֵ,property|,^$protect|,commercial| +Ȼ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| +ɱ V run| +ɳ V SelfMove|,manner=fast| +ɴ N aircraft| +ɵ N weapon|,$firing| +ɵ N place|ط +ɵ N aircraft| +ɵ N fact|,#firing|,sport| +ɶ V deceive|ƭ +ɶͶ V suicide|ɱ +ɺ V fly| +ɻڴ V prosper| +ɻ N InsectWorm|,undesired|ݬ +ɻ N aircraft| +ɻ N facilities|ʩ,#aircraft|,@stay|ͣ +ɻƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| +ɻʧ N phenomena|,unfortunate|,#aircraft|,undesired|ݬ +ɽ V disperse|ɢ +ɽ V GoInto|,means=fly| +ɿ ADJ aValue|ֵ,form|״,sharp| +ɿ ADJ aValue|ֵ,speed|ٶ,fast| + N phenomena|,undesired|ݬ,#unfortunate| + V leave|뿪,means=fly| + N InstitutePlace|,factory|,*produce|,ProperName|ר,(Netherland|) + V arrive|,means=fly| + N part|,%LandVehicle| + N part|,%implement| +ë N human|,*run|,fast| +ë N part|,%AnimalHuman|,leg|,*run|,fast| + N bird| + N FlowerGrass| + N water|ˮ,fast| + N animal| +Ȫ N waters|ˮ,surfacial| + N human|,*run|,fast| + V fly| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N humanized|,ProperName|ר +ͧ N aircraft| + V LeaveFor|ǰ,means=fly| + V fly| + V fly| + V fly| + N aircraft| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + V show|,instrument=eye| + V fly| + V rise| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V cross|Խ,means=fly| +Ծ V GoForward|ǰ + N phenomena|,undesired|ݬ,#unfortunate| + V BecomeMore|,commercial| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N part|,%building| +߱ V walk| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,size|ߴ,big| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ʳ N food|ʳƷ +ʴ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ʴ ADJ aValue|ֵ,size|ߴ,big| +ʺ ADJ aValue|ֵ,fatness|,fat| + N attribute|,ability|,*feed|ι,#crop|ׯ,agricultural|ũ + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh|,fat| +ʵ ADJ aValue|ֵ,fatness|,fat| +˶ ADJ aValue|ֵ,fatness|,fat| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + ADJ aValue|ֵ,quality|,fertile|,desired| +Ч N attribute|,effect|Ч,*feed|ι,#crop|ׯ,agricultural|ũ +Դ N location|λ,@ExistAppear|,#material|,agricultural|ũ + N tool|þ,*wash|ϴ + N shows| + N livestock| +׳ ADJ aValue|ֵ,fatness|,fat| + N human|,*rob|,crime|,undesired|ݬ +˰ N community|,*rob|,crime|,undesired|ݬ +˳ N place|ط,#rob|,crime|,undesired|ݬ +˻ N phenomena|,unfortunate|,#rob|,#crime|,undesired|ݬ +˿ N place|ط,#rob|,crime|,undesired|ݬ + N human|,*rob|,crime|,undesired|ݬ +ͽ N human|,*rob|,crime|,undesired|ݬ +˼ ADJ aValue|ֵ,kind|,special| +̰ V slander|̰ +̰ ADJ aValue|ֵ,content|,evil|,#uglify|,undesired|ݬ +̰ N human|,*slander|̰ + V cry|,#livestock| + N part|,%AnimalHuman|,viscera| +ΰ N disease| +β N disease| +β N disease| +β N part|,%AnimalHuman|,viscera| +ζ N part|,%AnimalHuman|,nerve| +θ N emotion|,sincere| +θ֮ N text|,$speak|˵,sincere| +ν N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N bacteria|΢ + N disease| +Ҷ N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,scene|,desolate|,undesired|ݬ + V abandon| + V remove| +ϳ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ϳ V remove| +ϻ V TalkNonsense|Ϲ˵ +Ͼ ADJ aValue|ֵ,quality|,used|,waste|,undesired|ݬ + N physical|,generic|ͳ,waste| +Ʒ N artifact|˹,generic|ͳ,waste| +Ʒ N physical|,generic|ͳ,waste| +Ʒ N human|,commercial| + N gas|,waste| + V abandon| + N physical|,generic|ͳ,waste| +ʳ V endeavour| + N human|,*disable|м,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ˮ N liquid|Һ,waste| + N metal|,waste| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N physical|,generic|ͳ,waste| + N place|ط,waste| +Һ N liquid|Һ,waste| + N material|,liquid|Һ,waste| + N physical|,generic|ͳ,waste| +ֹ V remove| +ֽ N paper|ֽ,waste| + V abandon| + V dismiss|,royal| + V StateChange|̬ +е N attribute|,boundary|,#StateChange|̬,&temperature|¶ +з ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ȫ N waters|ˮ,surfacial| +ˮ N liquid|Һ,StateChange|̬ + V StateChange|̬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V excited| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N expenditure| + V spend| +ѳ N place|ط,city|,ProperName|ר,(US|) +ѹ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѽ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѾĻ V think|˼ +Ѿ ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ +Ѿ V spend|,patient=strength| + ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ + V spend|,patient=strength| +ֺ V ^succeed|ɹ +ʱ ADJ aValue|ֵ,property|,spend|,#time|ʱ,undesired|ݬ + V CauseToDo|ʹ,ResultEvent=hardship| + V PayAttention|ע + N expenditure| + N place|ط,country|,ProperName|ר,(Finland|) +ҷ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +ҷ N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Finland|) + N place|ط,country|,ProperName|ר + N money|,(Finland|) + N human|,(Finland|) + N language|,#country|,ProperName|ר + N chemical|ѧ +ȩ N material| +Ը V urge|ʹ + N gas| +Χ N attribute|,occasion|,&event|¼ + ADJ aValue|ֵ,importance|,branch|֧ + V distinguish|ֱ + V issue|ַ + N part|,%entity|ʵ + N part|,%organization|֯ + N rights|Ȩ + V separate| + N symbol|,#quantity| + N time|ʱ,special| + V undergo|,means=cooperate| + CLAS unit|λ,&amount| + CLAS unit|λ,&area| + CLAS unit|λ,&length| + CLAS unit|λ,&money|,(China|й) + CLAS unit|λ,&money|,rate| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&weight| +ְ V entrust|ί +ֱ N unit|λ,&SoundVolume| +ֱ V perish| +ֱ V distinguish|ֱ +ֱ N attribute|,ability|,distinguish|ֱ,&human| +ֱ N attribute|,performance|,&distinguish|ֱ +ֱ V refute| +ֱ ADJ aValue|ֵ,behavior|ֹ,sequence| +ֱ N attribute|,similarity|ͬ,&entity|ʵ +ֱ V distinguish|ֱ +ֱ V farewell| +ֱ V separate|,SourceWhole=army| +ֲ V exist| +ֲʽ ADJ aValue|ֵ,property|,$spread| +ֲ N part|,%institution|,*manage| +ֲ N account|,@record|¼ +ֲ V separate| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ V separate| +ִ N attribute|,range|,&entity|ʵ +ֵ V bear|е,means=cooperate| +ֵ V obtain|õ +ֵ V undergo|,content=$dispatch|Dz +ֵ V disconnect| +ֵ V obtain|õ +ֵ V classify| +ֵ N institution|,branch|֧,*manage| +ֶ N part|,%army|,military| +ַ V issue|ַ +ַ N human|,*issue|ַ +ַ V issue|ַ,possession=house| +ָ V LeaveFor|ǰ +ָ V separate| +ָ V separate| +ֹ V separate|,SourceWhole=affairs| +ֹ˾ N InstitutePlace|,branch|֧,commercial| +ֹ V manage| +ֹ N tool|þ,*check|,#lights| +ֹ⾵ N tool|þ,*check|,#lights| +ֺ N InstitutePlace|,branch|֧,commercial| +ֺ N symbol| +ֺ V dredge|ͨ +ֺ V earn|׬,possession=payment| +ֺ V issue|ַ,possession=payment| +ֻ V separate| +ֻ N community|,branch|֧ +ֻ N facilities|ʩ,branch|֧,*communicate| +ּ V estimate|,content=rank|ȼ +ּ V separate|,SourceWhole=family| +ּ V classify| +ֽ V separate| +ֽ N attribute|,boundary|,&entity|ʵ +ֽ N place|ط,#country|,boundary| +ֽ N attribute|,boundary|,&entity|ʵ +־ V disconnect| +־ N institution|,branch|֧ +ֿ V farewell| +ֿ V separate| + V classify| +ϵ N result|,#classify| + N human|,*classify| + V farewell| + V separate| + ADJ aValue|ֵ,property|,$separate| + N attribute|,weight|,&physical| + V separate| +ű V classify| + V excrete|й + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ĸ N symbol|,#quantity| + ADJ aValue|ֵ,attachment|,private|˽ + V issue|ַ + V dispatch|Dz + V issue|ַ + ADJ aValue|ֵ,behavior|ֹ +Ƭ V classify|,patient=affairs| + ADV aValue|ֵ,behavior|ֹ +ڷ ADV aValue|ֵ,behavior|ֹ + N attribute|,divergence|,&entity|ʵ +Dz N part|,%army| + V distinguish|ֱ + N institution|,branch|֧ +Ȩ V separate|,patient=rights|Ȩ +ɢ ADJ aValue|ֵ,property|,$spread| +ɢ V disperse|ɢ +ɢ V spread| +ɢ...ע V CauseToDo|ʹ,ResultEvent=^PayAttention|ע + V establish| +ʱ V cooperate| + V disconnect| + V farewell| + N symbol|,#quantity|,#DoSum| +ˮ N attribute|,boundary|,&entity|ʵ +ˮ N part|,%land|½,space|ռ,head|ͷ +˰ N system|ƶ,#expenditure| +˵ V refute| + V send| + N institution|,branch|֧ +̯ V bear|е +ͥ V equal| +ͥ V oppose| +ͷ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͷ N shape|,&hair|ë + ADJ aValue|ֵ,attachment|,public| +Ϊ V separate| + N money| +IJȡ ADJ aValue|ֵ,property|,^$pay| + ADJ aValue|ֵ,performance| + V analyze| + ADJ aValue|ֵ,content|,pure| + N software| +Ա N human|,*analyze| +ϵͳ N software| +߹ N tool|þ,*measure| + V undergo|,means=cooperate| + N cause|ԭ + N result| +У N institution|,branch|֧,@teach|,@study|ѧ,education| + V ^PayAttention|ע + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + V separate| + V help|,scope=remove| +Ժ N institution|,branch|֧ + V enjoy|,possession=payment|,manner=together|ͬ + N regulation|,*enjoy|,#payment| + N part|,%tool|þ,#tell|,#time|ʱ,#minute| +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N part|,%organization|֯,branch|֧ +֧ N part|,%plant|ֲ,limb|֫ +֧ N part|,%organization|֯,branch|֧ +֮ NUM symbol|,#quantity| + CLAS unit|λ,&time|ʱ + V planting|ֲ + N human|,#organization|֯ + N part|,%physical| + N symbol| + N attribute|,weight|,&physical| + V classify| + V farewell| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ qValue|ֵ,amount|,many| +׳ V appear| +׷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׷ V fly| +׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +׷ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V quarrel| + V appear|,manner=many| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,space|ռ,@bury|,#die| +ص N facilities|ʩ,space|ռ,@bury|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#die| +ͷ N facilities|ʩ,space|ռ,@bury|,#die| + N facilities|ʩ,space|ռ,@bury|,#die| + V burn| +ٷ N wind| +ٻ V burn|,purpose=bury| +ٻ V destroy|,means=burn| + V burn| + V lighting|ȼ +ھ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,color|ɫ,white| + V decorate|װ,means=apply|ͿĨ + N food|ʳƷ + N shape| + N tool|þ,*MakeUp|ױ +۱ N PenInk|ī,*write|д +۳ N stone|ʯ,waste| +۴ N disease|,#skin|Ƥ +۵ N InsectWorm| +ۺ ADJ aValue|ֵ,color|ɫ,red| +ۼ N medicine|ҩ +ĩ N shape| +ĩұ N method|,*refine|,#metal| +īdz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +īdz V engage|,politics| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| + V die| + V HideTruth| + V beautify|,purpose=HideTruth| + V decorate|װ,means=apply|ͿĨ +ˢ V decorate|װ,means=apply|ͿĨ +˿ N food|ʳƷ + V FormChange|α + V bump|ײ + V destroy| + N machine|,*grind|ĥ +Թ N disease| + N food|ʳƷ +״ ADJ aValue|ֵ,form|״,shape| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V endeavour| +ܲ V endeavour| +ܶ V endeavour| +ܶ N human|,*endeavour| +ܷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ܷ V endeavour| +ܷ V excited| +ܷͼǿ V endeavour| +ܽ V endeavour| + V endeavour| + V endeavour| + V endeavour| +ֱ׷ N chase|׷,manner=endeavour| + ADV aValue|ֵ,courage|,brave|,desired| +ս V fight| + V seek|ıȡ + CLAS NounUnit|,&emotion|,&strength| + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&publications|鿯,&document| + N component|,%entity|ʵ +ݶ N component|,%entity|ʵ +ݶ N attribute|,degree|̶,&event|¼,&aValue|ֵ +ݶ N food|ʳƷ + N expenditure| + N emotion|,angry| + N emotion|,angry|,undesired|ݬ + N emotion|,angry|,desired| + N emotion|,angry|,undesired|ݬ +߷߲ƽ V unsatisfied| +ߺ V hate| +߼ V excited| +߿ N emotion|,angry|,desired| +ŭ V angry| +Ȼ ADV angry| + V unsatisfied| + V unsatisfied| + N stone|ʯ,#AnimalHuman|,waste| + N stone|ʯ,#AnimalHuman|,waste| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| +ᱮ N mark|־,#succeed|ɹ,desired| +ᱮ N result|,#succeed|ɹ,desired| + N attribute|,demeanor|,gracious|,&human| + V prosper|,agricultural|ũ + V prosper|,agricultural|ũ +ḻ V enrich|ʵ +ḻ ADJ qValue|ֵ,amount|,many| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +Ṧΰ N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,thickness|,thick|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,fatness|,fat| + ADJ qValue|ֵ,amount|,many|,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N time|ʱ,year|,desired|,#crop|ׯ + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ʢ ADJ qValue|ֵ,amount|,many|,desired| + V prosper|,agricultural|ũ +˶ ADJ qValue|ֵ,amount|,many|,desired| +ʳ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ʳ V prosper| +ӯ ADJ aValue|ֵ,fatness|,fat| +ӯ ADJ qValue|ֵ,amount|,many|,desired| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ԣ ADJ qValue|ֵ,amount|,many|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + V block|ס + N character|,surname|,human|,ProperName|ר + V grant|,royal| + V shut|ر + V shut|ر,instrument=mark|־ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V shut|ر +ʽ ADJ aValue|ֵ,behavior|ֹ,restrained| + ADJ aValue|ֵ,behavior|ֹ,restrained| + V store| + N part|,%publications|鿯,hind| + N place|ط,#country| +ⶥ V cease|ͣ,content=grow|ɳ +ⶥ V delimit|,#wealth|Ǯ +ⶳ V StateChange|̬,StateFin=ice| +⽨ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +⽨ N system|ƶ,politics| +⽨ƶ N system|ƶ,politics| +⽨ N system|ƶ,politics| + V BeRecovered|ԭ,medical|ҽ + V shut|ر + N part|,%publications|鿯,InFront|ǰ +Ƥ N stationery|ľ,*wrap| +ɽ V shut|ر,patient=route|· +ɽ V planting|ֲ,patient=tree|,LocationFin=land|½ + V shut|ر + V BlockUp| + V shut|ر + N location|λ,boundary|,*block|ס + N mark|־ + V exercise|,means=block|ס,sport| +Ϊ V RegardAs| +ס V shut|ر +װ V load|װ + N tree| + N tree| +Ҷ N part|,%plant|ֲ,hair|ë + N InsectWorm| +䷿ N room|,#InsectWorm| + N food|ʳƷ + N food|ʳƷ,?medicine|ҩ + N InsectWorm| + N food|ʳƷ,?medicine|ҩ + N house|,#InsectWorm| +ú N stone|ʯ,material|,$burn| +״ ADJ aValue|ֵ,form|״ +ӵ V ComeTogether| +ӵ V GoForward|ǰ +ӵ V come| + N part|,%animal| + N part|,space|ռ,%land|½,head|ͷ +嶥 N part|,%land|½,head|ͷ + N fact|,discuss|,HighRank|ߵ + N part|,space|ռ,%land|½,head|ͷ + N part|,%thing| + N part|,%tool|þ,*cut|,heart| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,form|״,sharp| +â N attribute|,ability|,&human| +â N part|,%tool|þ,*cut|,heart| +ⶠADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N attribute|,habit|ϰ,&human| + N attribute|,scene|,&inanimate| + N attribute|,style|,&text| + N information|Ϣ + N wind| +籩 N fact|,uprise|,undesired|ݬ,politics| +籩 N wind|,#WeatherBad|,undesired|ݬ + N tool|þ,#inhale|,#gas| + N tool|þ,*inhale|,#gas| +粨 N fact|,uprise|,undesired|ݬ,politics| + N attribute|,ability|,&compile|༭ + N attribute|,demeanor|,gracious|,&human| +¶ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糱 N fact|,uprise|,undesired|ݬ,politics| +糵 N tool|þ,#wind|,*exhale|,#crop|ׯ +糵 N tool|þ,*WhileAway| +糾 N phenomena|,#tired|ƣ,#tour|,undesired|ݬ +糾 N phenomena|,undesired|ݬ,hardship| +糾 ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糾 V tired|ƣ,cause=SelfMove| +۵糸 V SelfMoveInManner|ʽ,manner=fast| +紵ݶ N phenomena|,disorder|,undesired|ݬ +˳ N weather|,good|,desired| +綴 N facilities|ʩ,route|·,#wind|,#speed|ٶ + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +緢 ADJ aValue|ֵ,strength|,strong|ǿ,desired| +緫 N part|,%ship|,*drive|Ԧ +緫 N ship| +緶 N attribute|,demeanor|,&human| +緶 N attribute|,style|,&human| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship| + N phenomena|,undesired|ݬ,#unfortunate| + V dry| + N tool|þ,*dig|ھ,mine| + N attribute|,style|,&entity|ʵ + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&compile|༭,literature| + ADJ aValue|ֵ,circumstances|,good|,desired| + N attribute|,scene|,&inanimate| +ⲻ V disappear|ʧ +约 N phenomena|,unfortunate|,#WeatherBad|,undesired|ݬ +纮 N disease|,#fever|,medical|ҽ + ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +绪 N attribute|,demeanor|,ability|,&human| +绪ï ADJ aValue|ֵ,physique|,strong|ǿ,desired| +绯 V StateChange|̬ +羰 N attribute|,scene|,&inanimate| +羰 N image|ͼ,#scene| +羰 N place|ط,#scene| +羰续 ADJ aValue|ֵ,scene|,beautiful|,desired| +羵 N tool|þ,*protect|,#eye| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N part|,%machine|,mouth| + N part|,%place|ط,#wind| + N fact|,uprise|,undesired|ݬ,politics| + ADJ aValue|ֵ,strength|,&wind| + N attribute|,intensity|ǿ,&wind| + N attribute|,strength|,&wind| + ADJ aValue|ֵ,temperature|¶,chilly| + N tool|þ,*MakeSound| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,behavior|ֹ,flighty| + N human|,behavior|ֹ,free| +ɢ V disperse|ɢ +ţ༰ V RelateNot|޹ +ñ N clothing|,#head|ͷ +ò N attribute|,bearing|̬,gracious|,desired| +ò N attribute|,scene|,&inanimate| +ò N attribute|,style|,property|,&entity|ʵ +ý N FlowerGrass| + N part|,%vehicle|ͨ + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%building|,mouth| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +һʱ V prosper| + N attribute|,strength|,&wind| + N bird| +ƽ˾ ADJ aValue|ֵ,circumstances|,safe|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ V happen| + N attribute|,SocialMode|,&organization|֯ + N MusicTool| + N human|,*perform|,entertainment| + N attribute|,SocialMode|,&organization|֯ + N attribute|,bearing|̬,&human| + N emotion| + N emotion|,lascivious| + N information|Ϣ,#wind| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɳ N wind| +ɳܴ ADJ aValue|ֵ,property|,WeatherBad|,#wind| + N tool|þ,#wind|,*cool| + N attribute|,habit|ϰ,&human|,&organization|֯ + N information|Ϣ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʪ N disease| +ʪ N disease| +ʪ N disease| +ʪԹؽ N disease| +ʪ֢ N disease| +ʴ V damage|,#wind| +˪ N phenomena|,hardship|,undesired|ݬ +ˮ N information|Ϣ,#earth| + N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ + N attribute|,speed|ٶ,&wind| +ͷ N attribute|,circumstances|,&event|¼ +ͷ N attribute|,reputation|,glorious|,&human| + N attribute|,habit|ϰ,&human|,&organization|֯ +ζ N attribute|,style|,&information|Ϣ,special| +ζ N attribute|,taste|ζ,&edible|ʳ,special| + V perception|֪ + N attribute|,scene|,special|,&inanimate| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N direction|,#wind| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +ѩ N wind|,RainSnow|ѩ +ѹ N attribute|,strength|,&wind| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N clothing|,*protect|,#human|,#wind| + N phenomena|,hardship|,undesired|ݬ +Ʈҡ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ͬ V undergo|,content=hardship|,manner=together|ͬ + ADV aValue|ֵ,behavior|ֹ,lasting| + N attribute|,scene|,&inanimate| + N fact|,#love| + N attribute|,circumstances|,disorder|,&entity|ʵ +Ʊ V change|,manner=fast|,#politics| + N human|,glorious|,desired| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N phenomena|,undesired|ݬ,#unfortunate|,#WeatherBad| + N disease| + N time|ʱ,#age|,#aged| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N tool|þ,*dig|ھ,mine| + N tool|þ,*WhileAway| + V mad| + V mad| +蹷 N livestock|,*mad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,*mad|,undesired|ݬ + V mad| + N tool|þ,#fire|,*tell| + N fact|,fight| + N tool|þ,#fire|,*tell| +̨ N facilities|ʩ,#fire|,*tell| + N tool|þ,#fire|,*tell| + V meet| + CONJ {time|ʱ} + N time|ʱ +׻ V change|,StateIni=unfortunate|,StateFin=lucky| +ӭ V please|ȡ + N character|,surname|,human|,ProperName|ר + V fasten|˩ + N part|,%inanimate|,mouth| +첹 V repair| + V repair| + V fasten|˩ + V fasten|˩ +һ V tool|þ,*fasten|˩ +϶ N part|,%inanimate|,mouth| + V produce| + N part|,%inanimate|,mouth| + V recite|ж + V satirize| + ADJ aValue|ֵ,content|,#satirize| + V satirize| +̼ N human|,*satirize| + N human|,*compile|༭,#satirize|,literature| + V TakeCare| + V believe| + V receive| + V respect| + V submit| + ADJ aValue|ֵ,content|,#please|ȡ + V please|ȡ + N human|,*please|ȡ + V tell| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V return| + V obey|ѭ,content=order| + V follow| +Ȱ V persuade|Ȱ˵ + V salute|¾ + V GiveAsGift| +Ϊ V RegardAs| + N result|,desired|,$donate| + V submit| + V conduct|ʵʩ + V foster| + N bird| + N character|,surname|,human|,ProperName|ר + N clothing|,#head|ͷ + N bird| + N fruit|ˮ +ë ADJ aValue|ֵ,value|ֵ,precious|,desired| +β N fish| +β N tree| +ɻ N FlowerGrass| + N humanized|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ý ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cape Verde|ý) +ý N place|ط,country|,ProperName|ר + N knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N publications|鿯,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Italy|) + N community|,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N fact|,religion|ڽ + N tree| + N facilities|ʩ,religion|ڽ,space|ռ + N room|,religion|ڽ + N tool|þ,#humanized|,religion|ڽ +ѧ N knowledge|֪ʶ,#religion|ڽ + N location|λ,religion|ڽ,@put| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V deny| + V reject|ؾ + V deny| + V reject|ؾ +̩ V change|,StateIni=unfortunate|,StateFin=lucky| + V reject|ؾ +Ȩ N rights|Ȩ,politics|,*reject|ؾ + N human|,*reject|ؾ + V deny| + V reject|ؾ + CONJ {transition|ת} + N human|,#occupation|ְλ,employee|Ա + N human|,family|,male| + N human|,family|,mass| + N human|,family|,mass| + N human|,family|,female|Ů + N human|,female|Ů + N human|,*teach|,education| + N human|,stiff|,undesired|ݬ + V apply|ͿĨ + N material|,*cure|ҽ,generic|ͳ + V build| + V explain|˵ + V slack|͵ + V slack|͵ + V slack|͵ + V explain|˵ + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ɫ N attribute|,color|ɫ,&human|,#skin|Ƥ + V GiveBirth| + V GiveBirth| + V HoldWithHand| + V PropUp|֧ + N character|,surname|,human|,ProperName|ר + V help| + V help| +Я V HoldWithHand|,patient=human| +ƶ V help|,patient=poor| +ƶ V help|,patient=poor| + V HoldWithHand| +ɣ N place|ط,country|,ProperName|ר,(Japan|ձ) +ɣ N tree| + N fittings|,%artifact|˹ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%building|,nerve| + V ProvideFor| +ҡֱ V BecomeMore|,commercial| +ҡֱ V rise| +Ҵ V help| + V cure|ҽ + V put|,result=upright| +а V cure|ҽ +ֲ V cultivate| +ֲ V help| + V help| + V disobey|Υ + V stroke| + V wipe| + V stroke|,PartOfTouch=skin|Ƥ + V wipe| + N time|ʱ,morning| +ȥ V leave|뿪,cause=angry| + N part|,%LandVehicle|,#leg| + V disperse|ɢ + N attribute|,strength|,&physical| +Դ N attribute|,source|Դ,&physical| +״ ADJ aValue|ֵ,form|״,disperse|ɢ + V illuminate| + CLAS NounUnit|,&image|ͼ + N attribute|,size|ߴ,&physical| + N attribute|,width|,&material| + N attribute|,range|,&event|¼ + N attribute|,width|,&material| + N attribute|,width|,&physical| +Ա N attribute|,size|ߴ,&country| +Ա ADJ aValue|ֵ,area|,wide| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + N document|,*prove|֤ + N document|,religion|ڽ + V fit|ʺ + N symbol| + N symbol| + V fit|ʺ +ϰ ADJ aValue|ֵ,trueness|α,true|,#language| + V CausePartMove| + V LieDown| + N character|,surname|,human|,ProperName|ר + V fall| + V hide| + V surrender| + CLAS unit|λ,&PhysicsPower| + V CausePartMove| + V suffer|,content=kill|ɱ,police| + V attack|,military| + N waters|ˮ,linear| + N time|ʱ,season|,hot| + CLAS unit|λ,&voltage|ѹ +ؼ N drinks|Ʒ,$addict|Ⱥ + N time|ʱ,season|,hot| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather| + V catch|׽ס,military| + N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + V catch|׽ס,military| +² V catch|׽ס,military| +² N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + CLAS NounUnit|,&medicine|ҩ + V believe| + N clothing|,generic|ͳ + V eat|,medical|ҽ + V fit|ʺ + V surrender| + V engage|,content=military|,military| + V obey|ѭ + V suicide|ɱ,instrument=poison| + N method|,*consume|ȡ,#medicine|ҩ,medical|ҽ + V surrender|,target=law|ɷ,#police| + V believe| +ɥ V condole|° + V TakeCare| + N clothing|,generic|ͳ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V believe| + V TakeCare| + N computer| +̨ N facilities|ʩ,space|ռ,#entertain|д +ҵ N affairs|,#TakeCare|,commercial| +Ա N human|,*help|,#commercial| + V include|,ResultWhole=army|,military| + V suffer|,content=punish|,police| +ҩ V consume|ȡ,patient=medicine|ҩ + V engage|,military| + V include|,ResultWhole=army|,military| + V eat|,medical|ҽ +װ N clothing|,generic|ͳ +װ N InstitutePlace|,*sell|,@buy|,#clothing|,commercial| +װ N human|,#clothing|,commercial| +װʦ N human|,#occupation|ְλ,*plan|ƻ,#clothing| +װҵ N affairs|,produce|,#clothing| + ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V float|Ư + ADJ qValue|ֵ,amount|,redundant| + V swim| + V TalkNonsense|Ϲ˵ + N mark|־ + N stone|ʯ,waste| + V MakeLiving|ı + V appear| + V float|Ư + N symbol|,#quantity|,#DoSum| + N image|ͼ,$carve| + V QuantityChange|,commercial| + V change| + V float|Ư + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V exposure|¶ + V float|Ư +Ӱ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + N aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + V PlayUp|Ĵ + V boast| + N attribute|,strength|,&physical| + N part|,%inanimate|,skin|Ƥ +Ƥ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥ N part|,%inanimate|,skin|Ƥ +Ƽ N FlowerGrass|,#waters|ˮ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N facilities|ʩ,route|·,#waters|ˮ +ͷ N part|,%inanimate|,skin|Ƥ + N stone|ʯ,waste| + V appear| + V think|˼ +ѡ V choose|ѡ,industrial| + V swim| + V tour| + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V swollen| + N part|,%LandVehicle| + N tool|þ,*catch|׽ס,#fish| + N phenomena|,lucky|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N fact|,#organization|֯,help| + N fact|,#organization|֯,help| +Ժ N InstitutePlace|,@help|,#aged| + N money|,(Hungary|) + N attribute|,circumstances|,happy|,desired|,&human| + N attribute|,circumstances|,happy|,desired|,&human| + N information|Ϣ,#joyful|ϲ,#lucky|,desired| + N knowledge|֪ʶ,religion|ڽ + N place|ط,city|,ProperName|ר,(China|й) + ADV {neg|} + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,capital|,ProperName|ר,(Sierra Leone|) +˹ N language|,#country|,ProperName|ר + N attribute|,name|,&human| + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,only| + V foster| + V soothe|ο + V stroke| + V stroke|,purpose=ShowLove|ʾ +׷ V LookBack| + V stroke| +Ħ V stroke| +˳ N place|ط,city|,ProperName|ר,(China|й) +ο V soothe|ο +ο N human|,*soothe|ο + V recompense| + N payment|,*recompense|,#disable|м,#die| + V foster| + V cultivate| + V foster| + ADJ aValue|ֵ,importance|,secondary| + V enrich|ʵ + V help| + N money| + V teach| +Ա N human|,#occupation|ְλ,*teach| + N material|,secondary| + N sound|,#language| + ADJ aValue|ֵ,importance|,secondary| + V help| + ADJ aValue|ֵ,importance|,secondary| + V help|,scope=manage|,politics| + V CausePartMove|,PatientPartof=body| + V fall| + V LieDown| + N image|ͼ,angular|,#measure| + V CausePartMove|,PatientPartof=body| +ʰ ADJ aValue|ֵ,easiness|,easy|,desired| +ʰ ADJ qValue|ֵ,amount|,many| + V look| + V CausePartMove|,PatientPartof=head|ͷ + V surrender| + V LieDown| + V surrender| +֮ ADJ aValue|ֵ,duration|,TimeShort| + V look| + N tool|þ,cubic|,*cook| +׳н V handle|,manner=strong|ǿ + N tool|þ,*split|ƿ,*cut| +ͷ N tool|þ,*split|ƿ,*cut| + V amend| + N tool|þ,*split|ƿ,*cut| + N food|ʳƷ + N food|ʳƷ,#fruit|ˮ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N house| + N house|,#official| + N institution|,space|ռ,past| + N place|ط + N material|,?clothing| + N house|,#official| + N facilities|ʩ,space|ռ,past| +ۡ N house|,#official| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +ܶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,stiff|,undesired|ݬ + N food|ʳƷ +ʴ V FormChange|α +ʴ V bite|ҧ +ʴ V damage|,scope=behavior|ֹ,means=GiveAsGift| +ʴ N chemical|ѧ,*bite|ҧ,#metal| +ʴ ADJ aValue|ֵ,ability|,able|,bite|ҧ,#metal| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ֳ N stone|ʯ,agricultural|ũ +ֳ N physical|,agricultural|ũ + N food|ʳƷ + V LeaveFor|ǰ + V engage|,content=fact| + V obey|ѭ,content=MakeAppointment|Լ + V LeaveFor|ǰ,LocationFin=(Beijing|) + V help|,patient=country| + V endeavour| + CLAS NounUnit|,&clothing|,&tool|þ + ADJ aValue|ֵ,importance|,secondary| + V fit|ʺ + N human|,friend|,*help| + N readings| + N part|,%text| + N human|,occupation|ְλ,official|,*manage| +Ʒ N artifact|˹,generic|ͳ + N part|,%language| +³ N human|,#occupation|ְλ,*manage| + N human|,#occupation|ְλ,official|,secondary| + N human|,#occupation|ְλ,official|,politics| + N CloudMist| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N human|,#occupation|ְλ,*teach|,education| + N human|,#occupation|ְλ,official|,commercial| + N publications|鿯 +Ʒ N artifact|˹,generic|ͳ,useless| +˺ N disease| + N human|,*firing|,military| +ʳ N edible|ʳ +ʳƷ N edible|ʳ +ʳƷ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ +ʳ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ + N human|,friend|,*help| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +ҵ N affairs|,#occupation|ְλ,secondary| + N part|,%aircraft|,secondary| +ְ N attribute|,occupation|ְλ,secondary|,&human| +ܾ N human|,official|,commercial| + N result|,#medical|ҽ + V cover|ڸ + V reverse|ߵ + V cover|ڸ + N quantity|,rate|,#cover|ڸ,&space|ռ +û V perish| +û V sink|³ + V perish| +֮ԩ N phenomena|,undesired|ݬ,#unfortunate| + V perish| + N phenomena|,undesired|ݬ,#unfortunate| + V compile|༭ + N expenditure| + V give| + N text|,past| +ʫ V compile|༭,ContentProduct=text| +˰ N expenditure| + V cease|ͣ +μ N material|,?medicine|ҩ + V give| + V BeRecovered|ԭ + V TurnRound| + ADJ qValue|ֵ,amount|,double| + V reply| + V resume|ָ + V revenge| + N readings| + V resume|ָ,politics| + V check| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V revenge| + V obtain|õ,possession=power|,frequency=again| + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + V SufferFrom|,frequency=again|,#medical|ҽ + V GoBack| + ADJ aValue|ֵ,property|,#medicine|ҩ + V resume|ָ,patient=engage|,industrial| + V resume|ָ,patient=past| + V GoBack| + V reply|,content=letter|ż + V check| + V check|,police| + ADJ aValue|ֵ,kind|,include| + V resume|ָ,patient=fact|,#discuss| + V GetMarried| + V BeRecovered|ԭ,StateIni=alive| + N time|ʱ,day|,festival|,@congratulate|ף + V check|,frequency=again| + V resume|ָ,patient=associate|,#country|,politics| + V resume|ָ,patient=past| + N expression| + V resume|ָ,patient=publish| + V resume|ָ,patient=education|,education| + V cultivate|,agricultural|ũ + N wealth|Ǯ,desired|,$earn|׬ + V BeRecovered|ԭ,StateFin=look|,#eye| + N fact|,#compete| + V check|,frequency=again| + N interrogate|,police|,again| + V BeRecovered|ԭ,StateFin=alive| +ʽ ADJ aValue|ֵ,pattern|ʽ,#building| + N fact|,exam| + V speak|˵ + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| +λ V cure|ҽ +λ V resume|ָ,StateIni=royal|,politics| +ϰ V drill|ϰ + N facilities|ʩ,route|· +д V copy|д +дֽ N paper|ֽ,*copy|д + V reply|,content=letter|ż + V BeRecovered|ԭ,StateIni=alive| + V resume|ָ + V resume|ָ,StateIni=alive| +˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N human|,*resume|ָ +ѧ V resume|ָ,patient=education|,education| + N part|,%animal|,#eye| +Ҷ N part|,%plant|ֲ,hair|ë + V discuss| + N sound|,#language| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡ N readings|,$print|ӡˢ +ԭ V BeRecovered|ԭ,medical|ҽ +ԭ V resume|ָ +Ա V discharge|,SourceWhole=army|,military| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ӷ ADJ aValue|ֵ,property|,AptTo|,#change| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V resume|ָ,patient=occupation|ְλ + V produce| +Ʒ N artifact|˹,$imitate|ģ,generic|ͳ + V planting|ֲ +ָ N quantity|,amount|,&planting|ֲ +׳ V BeRecovered|ԭ + N character|,surname|,human|,ProperName|ר + V pay| + V submit| + V pay| + V pay|,possession=expenditure|,purpose=MakeAppointment|Լ + N part|,%account|,commercial|,#human| + N part|,%account|,commercial|,human| + V pay| + V pay| + V pay|,possession=money|,commercial| +ƾ֤ N bill|Ʊ + N human|,*pay|,commercial| + V submit|,possession=readings|,purpose=compile|༭ + V undergo|,content=pay| +Ǯ V pay| + V pay| + V pay|,possession=money|,commercial| + V entrust|ί +Ϣ V pay| +ӡ V submit|,possession=readings|,purpose=print|ӡˢ + V submit|,possession=letter|ż,purpose=post|ʼ + V pay|,possession=money|,commercial| +֮ V fail|ʧ +֮һ V destroy|,instrument=fire| + V CauseToDo|ʹ + V fail|ʧ + N land|½,small|С + ADJ qValue|ֵ,amount|,many|,desired| + N human|,aged|,male| + N human|,family|,aged| + N human|,#clan| + N human|,aged|,male| + N human|,mass| +ĸ N human|,family|,mass| +ĸ V human|,official| +ĸ N human|,family|,mass| +Ů N human|,family|,mass| + N human|,family|,male| + N human|,family|,mass| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N part|,%inanimate|,body| +ܵ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N part|,%AnimalHuman|,body| + N place|ط +ɹ N part|,%AnimalHuman|,leg| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,viscera| +ˮ N liquid|Һ,#disease| +ʹ V StomachTrouble|֢ +к N StomachTrouble|֢ + N emotion|,sincere| +֢ V StomachTrouble|֢ + N location|λ,%body| + N part|,%AnimalHuman|,tail|β + V CarryOnBack| + ADJ aValue|ֵ,property| + V bear|е + V defeated| + V defeated|,military| + V depend| + V disobey|Υ + V owe|Ƿ + V own| + V suffer| + V bear|е + N duty| + V bear|е + V load|װ + N part|,%electricity| + V apologize|Ǹ + V regret|Ǹ + N part|,%physical| + ADJ aValue|ֵ,contrariness|,negative| +Ƭ N part|,%tool|þ,#TakePicture| + V angry| + V wounded| + N symbol|,#quantity| + V bear|е + ADJ aValue|ֵ,ability|,able|,$bear|е +翹 V resist| +Լ V disobey|Υ,content=MakeAppointment|Լ + N quantity|,amount|,&affairs| + ADJ aValue|ֵ,ability|,able|,$bear|е + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V manage| +ɲ N human|,*manage| + N human|,*manage| +ծ V owe|Ƿ,possession=wealth|Ǯ +ծ V owe|Ƿ,possession=wealth|Ǯ +ֵ N quantity|,amount|,&entity|ʵ + V CarryOnBack|,patient=heavy| + V bear|е,content=duty| +Զ V bear|е,content=duty| + V bear|е,content=$blame|Թ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V CauseToDo|ʹ,patient=country|,ResultEvent=become|Ϊ,#rich| + V contain| + N human|,rich|,desired| + N human|,rich|,desired| + N InstitutePlace|,mine| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +û ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V CauseToDo|ʹ,patient=human|,ResultEvent=become|Ϊ,#rich| +ũ N human|,rich|,agricultural|ũ +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,rich|,desired|,commercial| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +гЧ ADJ aValue|ֵ,effect|Ч,superior|,desired| +е ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V contain| + ADJ aValue|ֵ,necessity|Ҫ,redundant| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Դ N location|λ,@ExistAppear|,#material| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N text|,*announce|,#die| + N human|,*compile|༭,literature| + V BeNear| + V depend| + V include| + N part|,%readings| + ADJ aValue|ֵ,importance|,secondary| + V include| + V obey|ѭ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + V include| +˰ N expenditure| + N part|,%artifact|˹ + N part|,%artifact|˹,%text| + ADJ aValue|ֵ,distance|,near| +¼ N part|,%readings| + V undergo|,content=include| + V contain| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N part|,%artifact|˹ +Сѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ͼ N image|ͼ +С N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ӹ N part|,%artifact|˹ +ӹ N place|ط,#country|,#BeMember| + V contain| + V situated| + N part|,%readings| + N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ע N part|,%text| + V situated| + N attribute|,strength|,#fasten|˩,&physical| + N physical|,$fasten|˩ + N medicine|ҩ + N human|,family|,female|Ů + N human|,female|Ů + N human|,female|Ů,*GetMarried| + N knowledge|֪ʶ,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,medical|ҽ + N community|,#female|Ů +Ů N human|,female|Ů +Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף + N human|,female|Ů,*GetMarried| +֪ ADJ aValue|ֵ,reputation|,glorious| + N human|,mass|,#female|Ů,#young| +ױ N affairs|,#maintain|,#female|Ů,#young|,medical|ҽ + V wrap| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,mischievous| +° V StateChange|̬ +° V situated| +¸ ECHO sound| + ADJ aValue|ֵ,kind|,special| + V fit|ʺ + V owe|Ƿ + V worth|ֵ + AUX {modality|} +õ AUX {modality|} + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V alter|ı + V amend| +İ V amend| +ı V compile|༭,manner=also|Ҳ +ı V forming|γ +ı V forming|γ,manner=also|Ҳ +ı V alter|ı +ı V change| +ij V alter|ı,patient=country|,politics| +ij V RegardAs| +ij V alter|ı +ĵ V alter|ı,patient=route|· +ĵ V GiveUp| +Ķ V alter|ı +Ķ V amend|,content=wrong| +ĸ V improve| +ĸ N human|,*improve| +Ĺ V alter|ı +Ĺ V amend|,content=wrong| +Ļ V alter|ı +Ļ V amend|,content=wrong| +ļ V MarryTo|,manner=also|Ҳ +Ľ V build| +Ľ V build|,manner=also|Ҳ +Ľ V improve| +Ľ ADJ aValue|ֵ,property|,$improve| +Ŀ V alter|ı,patient=content| + V improve| + ADJ aValue|ֵ,behavior|ֹ,#improve| + N thinking|˼,#improve| + N human|,*engage|,#improve| + V alter|ı,patient=name| + V alter|ı,patient=judge|ö,police| + V alter|ı,patient=time|ʱ + V undertake| + N time|ʱ,future| + V improve| +컻 V alter|ı,patient=environment| +ͷ V alter|ı,patient=attribute| +Ϊ V alter|ı +Ҹ V alter|ı,patient=method| + V alter|ı,patient=method| +а V amend|,content=wrong| +д V write|д +д V write|д,manner=also|Ҳ + V alter|ı,patient=kind| + V alter|ı,patient=occupation|ְλ +ѡ V choose|ѡ,manner=also|Ҳ + V use| +Ԫ V alter|ı,patient=name|,royal| + V alter|ı + V improve| + V produce| + V amend| + V improve| + V alter|ı,patient=system|ƶ + V planting|ֲ +װ V alter|ı,patient=clothing| +װ V install|װ,manner=also|Ҳ +װ V provide|,manner=also|Ҳ +װ V wrap|,manner=also|Ҳ +׶ N tool|þ,*tighten|ս,*loosen| + V establish| + V forming|γ,manner=also|Ҳ + ADJ aValue|ֵ,content|,simple| + ADV aValue|ֵ,content|,simple| +ſ N attribute|,circumstances|,&entity|ʵ + ADJ aValue|ֵ,content|,simple| + ADJ aValue|ֵ,content|,simple|,desired| + V explain|˵ + N attribute|,content|,simple|,&information|Ϣ + N quantity|,rate|,#possibility|,&event|¼ + N part|,%text| +ò N attribute|,circumstances|,simple|,&entity|ʵ + ADJ aValue|ֵ,attachment| + N information|Ϣ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N text|,simple| + V calculate| +Ҫ N text|,simple| + N chemical|ѧ +ƻ V ize|̬ + V build| + N character|,surname|,human|,ProperName|ר + V cover|ڸ + N part|,%animal|,skin|Ƥ + N part|,%artifact|˹,*shut|ر + V print|ӡˢ + V surpass|ǿ + N tool|þ,*cover|ڸ +Dz N part|,%vegetable|߲,embryo|,$eat| +Dz N vegetable|߲ +Ƿ N food|ʳƷ +ǹ۶ V estimate| +ǹ V surpass|ǿ +ǽ N food|ʳƷ +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V build|,Vachieve| + V cover|ڸ,Vachieve| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +̫ N human|,police|,undesired|ݬ,past|,(Germany|¹) +˫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V print|ӡˢ,content=mark|־ +ס V cover|ڸ,Vachieve| + N part|,%animal| + N part|,%artifact|˹ + N part|,%artifact|˹,generic|ͳ + V IllTreat| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V do| + V fight| + V kill|ɱ + N part|,%physical|,body| + N part|,%plant|ֲ,body| + V relate|й +ɰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɰͰ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɰͰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɱ V congratulate|ף,means=drink| +ɱ N food|ʳƷ,#fish| +ɱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɱ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ɱ N ice| +ɲ N human|,#occupation|ְλ +ɲѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +ɲ N food|ʳƷ +ɲ N FlowerGrass|,?material|,*feed|ι,#livestock| +ɴ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ɵ N facilities|ʩ,route|·,important| +ɵ V BeUnable| +ɵ N part|,%artifact|˹ +ɵ V kill|ɱ +ɷ N food|ʳƷ +ɸɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɸ N fact|,fight| +ɹ N fruit|ˮ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɺ ADJ aValue|ֵ,dampness|ʪ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɻ N FlowerGrass| +ɻ V engage| +ɻ N food|ʳƷ,dried| +ɽ N human|,able|,desired| +ɾ N attribute|,strength|,&human| +ɾ N emotion|,excited| +ɾ N human|,#occupation|ְλ,police| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɿ N pant| +ɿ V HungryThirsty| +ɿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɿ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɿ V decline|˥ + N food|ʳƷ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,ability|,able|,desired| + N food|ʳƷ + V split|ƿ + N waters|ˮ,linear| + ADV fact|,question| + ADV {cause|ԭ,question|} + N attribute|,clan|,&human| + N facilities|ʩ,#liquid|Һ,linear|,important| +Ⱥ N human|,mass| +Ⱥϵ N attribute|,relatedness|,&human| + V MakeTrouble| + V obstruct|ֹ + V obstruct|ֹ,industrial| + N chemical|ѧ + V include| + V obstruct|ֹ + N human|,*obstruct|ֹ +ʪ N attribute|,dampness|ʪ,&physical| + V engage|,content=affairs| + N human|,#occupation|ְλ + ADJ aValue|ֵ,fatness|,bony| +ϴ V wash|ϴ +ʹ N fruit|ˮ + N facilities|ʩ,route|·,important| +У N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +Ц V laugh|Ц + N place|ط,#official|,@reside|ס +Ԥ V include| +Ԥ V obstruct|ֹ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N character|,surname|,human|,ProperName|ר +ʰ· V surrender| +ʱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gambia|ʱ) +ʱ N place|ط,country|,ProperName|ר +ʲ N medicine|ҩ +ʵ V undertake| +ʿ N attribute|,circumstances|,&human|,&organization|֯ +ʿ N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N RainSnow|ѩ,desired| +¶ N RainSnow|ѩ,desired| +¶ N medicine|ҩ + ADJ aValue|ֵ,taste|ζ,good|,desired| +֭ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ȫ N water|ˮ,sweet|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,taste|ζ,sweet|,desired| +п N place|ط,capital|,ProperName|ר,(Sikkim|) + V willing|Ը + N chemical|ѧ + V willing|Ը +Ը V willing|Ը + N crop|ׯ,?material|,sweet| +֮ ADJ aValue|ֵ,taste|ζ,good|,desired| + N part|,%artifact|˹,arm| + N tool|þ +˳ N tool|þ,*measure| +˾ N bacteria|΢ + N tool|þ + N fruit|ˮ +̽ N fruit|ˮ + N fruit|ˮ + N fruit|ˮ + N tool|þ + N part|,%AnimalHuman|,viscera| +ΰ N disease| +ε ADJ attribute|,behavior|ֹ,sincere|,&human| +ε N attribute|,courage|,&AnimalHuman|,&organization|֯ +ε V WellTreat|ƴ +Ϳ V endeavour| + N emotion|,angry|,undesired|ݬ + N medicine|ҩ + N InsectWorm|,undesired|ݬ,#disease| + N disease| +Ӳ N disease| +Ӳ N disease| + N part|,%AnimalHuman|,viscera| + N InsectWorm|,undesired|ݬ,#disease| + V LeaveFor|ǰ + V VieFor| + V chase|׷ + V drive|Ԧ + V expel| + V undergo| +ϳ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +ϳ V LeaveFor|ǰ,purpose=perform| +ϳ V surpass|ǿ +ϵ V LeaveFor|ǰ +ϸ V LeaveFor|ǰ +ϼ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +Ͻ V VieFor| +Ͼɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ͼɱ V destroy| +Ͽ ADV aValue|ֵ,duration|,TimeShort| +ͷ V obey|ѭ,content=SocialMode| +· V SelfMove|,manner=fast| +æ ADJ aValue|ֵ,earliness|,early| + V chase|׷,Vachieve| + V undergo| +ʱ V obey|ѭ,content=SocialMode| + V LeaveFor|ǰ +粻 ADV aValue|ֵ,earliness|,early| + V cherish|Ļ + N emotion| + V excite|ж + N experience| + V grateful|м + V influence|Ӱ + V perception|֪ +д N emotion| +е V cherish|Ļ +е V regard|Ϊ +ж V excited| +ж V excite|ж +ж V grateful|м +з V excited| +й N part|,%AnimalHuman|,*sense|о +й V ize|̬,#lights| +л V teach| +м V grateful|м +о V perception|֪ +о V regard|Ϊ +о V cherish|Ļ +о V perception|֪ +оõ ADJ aValue|ֵ,ability|,able|,$perception|֪ +о N part|,%AnimalHuman|,*sense|о +п V sigh|̾ +п V excited| +ð N disease| +ð V fever| + ADJ aValue|ֵ,attachment|,#emotion| + N emotion| + ADJ aValue|ֵ,attachment|,#emotion| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ V inflamed| + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж,desired| +˷θ V excite|ж + ADJ sorrowful| + V sorrowful| + N experience| + N thought|ͷ + V undergo| +ܵ V perception|֪ + V understand| + N experience| +л V grateful|м +л V thank|л +Ȥ V FondOf|ϲ + ADJ aValue|ֵ,attachment|,mental| +ʶ N knowledge|֪ʶ,#mental| +Ӧ V aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ ADJ aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ V respond|Ӧ + V urge|ʹ +֪ V perception|֪ + N part|,%plant|ֲ,body| + ADJ aValue|ֵ,courage|,brave|,desired| + V believe| + AUX dare| + V dare| +ŭ ADJ suffer|,content=force|ǿ,#KeepSilence|˵ + ADV {comment|} + V dare| + AUX dare| + V dare| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,space|ռ,%land|½,head|ͷ +Ա N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV {tense|ʱ̬,past|} +ղ ADV {tense|ʱ̬,past|} +ո ADJ {emphasis|ǿ} +չ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Congo|չ) +չ N place|ط,country|,ProperName|ר,(Africa|) +չ N human|,(Congo|չ) +պ ADV aValue|ֵ,time|ʱ,proper| +պ ADJ {emphasis|ǿ} +ս ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ս ADJ aValue|ֵ,posture|,strong|ǿ,desired| +վ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +վ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV aValue|ֵ,time|ʱ,proper| + N inanimate|,generic|ͳ + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ѧĺ N human|,*study|ѧ,#walk|,young| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N metal| + V sharpen|ʹ +ְ N material|,metal|,surfacial| +ְ N part|,%LandVehicle| +ְ N stationery|ľ +ֱ N PenInk|ī,*write|д +ֲ N material|,metal| +ֶ N material|,#metal| +ֹˮ N material|,@building| +ֹ N material|,linear| +ֹ N material|,metal|,linear|,#LandVehicle| +ֻ N material|,?tool|þ +ֽṹ N part|,%entity|ʵ,bone|,#metal| +ֽ N material|,metal|,linear| + N material|,#metal| +ǥ N implement|,#metal| + N MusicTool| +ټ N human|,*perform|,entertainment| + N human|,*perform|,entertainment| +ˮ N metal|,material| +˿ N tool|þ,linear|,#metal| +˿ N tool|þ,linear|,#metal| + N tool|þ,linear|,#metal| + N metal|,material| +ӡ N stationery|ľ,*print|ӡˢ + N part|,%implement| + N tool|þ,cubic|,@put| +׹ N material|,linear| + N tool|þ,cubic|,#liquid|Һ,@wash|ϴ +ש N material|,*build| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N part|,%entity|ʵ,heart| + N part|,%information|Ϣ,bone| + N part|,%tool|þ,#catch|׽ס,#fish| + N reason| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%information|Ϣ,bone| + N land|½ + N shape| +¥ N facilities|ʩ,space|ռ,military|,@look| + N facilities|ʩ,space|ռ,military|,@defend| + N human|,military|,*defend| +ͤ N facilities|ʩ,space|ռ,military|,@defend| +ͤ N facilities|ʩ,space|ռ,police|,@defend| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ +λ N location|λ,space|ռ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N place|ط,city|,ProperName|ר,(China|й) +۰ N place|ط,city|,ProperName|ר,(China|й) +۰̨ N place|ط,city|,ProperName|ר,(China|й) +۱ N money|,(HK|) +ۿ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,(HK|) + N human|,commercial|,(HK|) +̨ N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,#occupation|ְλ,official| + N institution|,#ship| +Ԫ N money|,(HK|) + N fund|ʽ,(HK|) + N waters|ˮ,linear| + V remove| + N symbol|,linear| + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| +ܰ N tool|þ,*CarryOnBack|,long| +ܸ N tool|þ,widediameter|,straight|ֱ,long| + N SportTool|˶ + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| + N character|,surname|,human|,ProperName|ר + N land|½,#waters|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N character|,surname|,human|,ProperName|ר + V surpass|ǿ +߰ V CausePartMove| +߰ ADJ aValue|ֵ,SoundVolume|,loud| +߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +߰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +߱ ADJ aValue|ֵ,SoundQuality|,accurate|׼ +߱ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +߲ N human|,*study|ѧ,able| +߲ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,ability|,able|,$create|,many| +߲ N land|½,able|,@create|,many|,#crop|ׯ,desired| +߳ V sing| +߳ V speak|˵ +߳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +߳ N part|,%event|¼ +߳ N water|ˮ +߳ɱ ADJ aValue|ֵ,property|,expensive| +ߴ N location|λ,tall| +ߴ ADJ aValue|ֵ,content|,pure| +ߴ V AmountTo|ܼ +ߴ ADJ aValue|ֵ,height|߶,tall| +ߴ ADJ aValue|ֵ,size|ߴ,big| +ߵ ADJ aValue|ֵ,property| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵ ADJ aValue|ֵ,rank|ȼ,superior| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵȼ ADJ aValue|ֵ,rank|ȼ,superior| +ߵѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +ߵ N attribute|,behavior|ֹ,proper|,&event|¼ +ߵ N attribute|,height|߶,&physical| +ߵ N attribute|,rank|ȼ,&event|¼ +ߵ ADV {emphasis|ǿ} +ߵͲƽ ADJ aValue|ֵ,form|״,rugged| +ߵ͸ N SportTool|˶,sport| +ߵ N land|½ +ߵ ADJ aValue|ֵ,SoundVolume|,loud| +ߵ ADJ text|,empty| +߶ ADJ aValue|ֵ,degree|̶,very| +߶ N attribute|,height|߶,&physical| +߶ ADJ qValue|ֵ,amount|,many| +߶ N fact|,sport| +߶ N SportTool|˶ +߷ N institution|,police|,@judge|ö +߷ֱ N attribute|,performance|,strong|ǿ,&distinguish|ֱ +߷ N attribute|,circumstances|,flourishing|,extreme|,&event|¼ +߷ N part|,space|ռ,%land|½,head|ͷ +߷ N fact|,discuss|,HighRank|ߵ +߷ N aValue|ֵ,behavior|ֹ,true|,desired| +߸ N human|,official| +߸ ADJ aValue|ֵ,height|߶,tall| +߸ V joyful|ϲ +߸ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +߸ V sing| +߸ͽ V GoForward|ǰ +߸ N human|,tall| +߸ N tree|,?medicine|ҩ +߸Ь N clothing|,#foot| +߹ N human|,#occupation|ְλ,industrial| +߹ V estimate|,manner=over| +߹ N human|,official| +߹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ߺ ADJ aValue|ֵ,temperature|¶,cold| +ߺ V cry| +ߺ V cry| +߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߼ɲ N human|,official| +߼ʦ N human|,#occupation|ְλ,industrial| +߼ ADJ aValue|ֵ,rank|ȼ,superior| +߼ N human|,#occupation|ְλ,official|,military| +߼Ժ N institution|,police|,@judge|ö +߼Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +߼ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +߼ N knowledge|֪ʶ,superior| +߼ N place|ط,ProperName|ר,(Russia|˹) +߼ ADJ aValue|ֵ,price|۸,expensive| +߼ V buy|,cost=expensive| +߼ N facilities|ʩ,route|· +߼ N thought|ͷ +߽ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +߾ ADJ aValue|ֵ,quality|,refined|,desired| +߾ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߾ V engage|,content=occupation|ְλ +߾ V lift| +߿ ADJ aValue|ֵ,SoundVolume|,loud| +߿ V exam| +߿Ƽ N knowledge|֪ʶ,superior| +߿Ƽҵ N human|,#occupation|ְλ,#knowledge|֪ʶ,superior|,commercial| +߿ ADJ aValue|ֵ,location|λ,tall|,#sky| +߿ N sky| + N fact|,sport| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Korea|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,commercial|,$lend| + N human|,*lend|,undesired|ݬ + N crop|ׯ + N attribute|,age|,aged|,&human| + N stone|ʯ,material| +¥ N house|,tall| +¥ N house| +¯ N tool|þ,space|ռ,@burn|,*produce|,#metal| + ADJ aValue|ֵ,age|,aged| + N chemical|ѧ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,strength|,strong|ǿ,&physical| + N knowledge|֪ʶ,#strength| +꼶 N human|,*study|ѧ,education| +Ƶ N attribute|,frequency|Ƶ,fast|,&electricity| +ǿ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| + N human|,superior|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ɮ N human|,able|,desired|,religion|ڽ +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ +ɽ N land|½ +ɽӦ N disease| +ɽ N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N disease|,#fever| +ǹ N weapon|,*firing|,#aircraft| + N weapon|,*firing|,#aircraft| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,loud| + V upgrade| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V walk| + V walk|,manner=arrogant| + N human|,able|,desired| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ,manner=tall| + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٶ ADJ aValue|ֵ,speed|ٶ,fast|,desired| +ٶ N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٹ· N facilities|ʩ,route|·,@AlterLocation|ռλ,fast| +̧ V WellTreat|ƴ +̸ V speak|˵ +̸ V speak|˵,content=empty| + N food|ʳƷ,liquid|Һ,refined| + N food|ʳƷ,liquid|Һ,watery|ϡ +Σ ADJ aValue|ֵ,property|,AptTo|,$CauseAffect|Ⱦ,#medical|ҽ +ΣȺ N human|,*AptTo|,#CauseAffect|Ⱦ,#medical|ҽ +λ N attribute|,occupation|ְλ,HighRank|ߵ,&human| + N attribute|,temperature|¶,hot|,&physical| +¼ N tool|þ,*measure|,#temperature|¶ + N weather|,#temperature|¶,#hot| +ݽ ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,rank|ȼ,&event|¼ +С N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +У N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +Ч N attribute|,effect|Ч,superior|,&performance| +н N payment|,many| +¼ N knowledge|֪ʶ,superior| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V willing|Ը + N place|ط,city|,ProperName|ר,(China|й) +Ѫѹ N disease| +ѹ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ѹ ADJ aValue|ֵ,performance| +ѹ N attribute|,voltage|ѹ,&electricity| +ѹ N electricity| +ѹ N tool|þ,cubic|,*cook| +ѹ N tool|þ,linear|,@transmit|,#electricity| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ż ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N attribute|,SoundVolume|,loud|,&sound| + ADJ aValue|ֵ,height|߶,tall|,more| +ԭ N land|½ +հԶ ADJ aValue|ֵ,ability|,able|,desired| + V BecomeMore| + V rise| + N thought|ͷ,clever| + V AtEase| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N InstitutePlace|,@teach|,@study|ѧ,education| + N human|,*study|ѧ,education| + N human|,*study|ѧ + N human|,*study|ѧ,able| + N human|,past| + N tool|þ,*WhileAway| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh| + N shape| + N tool|þ,*apply|ͿĨ,#medical|ҽ + N food|ʳƷ,refined| +ҩ N medicine|ҩ,$apply|ͿĨ + ADJ aValue|ֵ,quality|,fertile|,desired| + N livestock|,young| + N livestock|,young| + N livestock| + N livestock|,young| + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ,*feed|ι,#young| + V CauseToDo|ʹ + V do| + V engage| + V establish| + V fulfil|ʵ + V produce| + V seek|ıȡ + V fulfil|ʵ + V misunderstand| +㶨 V handle|,result=finish| + V deceive|ƭ + V do|,result=finish| +ҳʽͳε N human|,*manage| + V damage| + V damage| + V TryToKnow|Ū + V TryToKnow|Ū + V TryToKnow|Ū +С V MakeTrouble| + V damage| + V damage| + N tool|þ,*beat| +ͷ N tool|þ,*beat| + N part|,%plant|ֲ,body| + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + N payment|,#readings| + N payment|,#readings| + N tool|þ,@LieDown| + N readings|,#text|,#image|ͼ,#music| +ֽ N paper|ֽ,@write|д + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + V accuse|ظ + V announce| + V beg| + V request|Ҫ + V tell| + V farewell| +˵ N human|,*speak|˵ +洵 V fail|ʧ + V farewell| + V request|Ҫ,ResultEvent=borrow|,commercial| +淢 V accuse|ظ,police| +漱 V request|Ҫ,ResultEvent=rescue| +漱 V tell|,content=dangerous|Σ +漱 V unfortunate| + V request|Ҫ,ResultEvent=agree|ͬ + V win|ʤ + V persuade|Ȱ˵ +澯 V tell|,content=dangerous|Σ +濢 V succeed|ɹ + V cease|ͣ,cause=aged| + V accuse|ظ + V surrender| +ʾ V tell| +ʾ N text|,@tell| + V tell| + V withdraw|˳ +ο V AtEase| +ο V soothe|ο +һ V finish| +֪ V mean|ָ +֪ V tell| + V finish| +״ V accuse|ظ,police| + V disappear|ʧ + N human|,family|,male| +籾 N place|ط,capital|,ProperName|ר,(Denmark|) +± N place|ط,city|,ProperName|ר,(Sweden|) + N human|,family|,mass|,male| + N human|,male|,young| + N human|,friend|,mass|,male| + N human|,family|,male| +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Colombia|ױ) +ױ N place|ط,country|,ProperName|ר +ױ N human|,(Colombia|ױ) +ײ N human|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Costa Rican|˹) +˹ N place|ط,country|,ProperName|ר + N music|,$sing| + V sing| +質 V sing| +質 N human|,*sing|,#music|,entertainment| + N text|,#music| +蹦̵ V praise|佱,cause=succeed|ɹ + N attribute|,SoundQuality|,#sing|,&human| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| +Ժ N InstitutePlace|,@perform|,entertainment| + N human|,*FondOf|ϲ,#music| + N music| + N sound|,#music|,$sing| + N human|,entertainment|,*sing|,#music| + V praise|佱 +̳ N community|,#music|,#sing| + N InstitutePlace|,@recreation|,@sing| + V recreation| + N shows|,#music|,entertainment| + N community|,#music|,#sing|,entertainment| + N human|,*sing|,able|,entertainment| +ҥ N shows| +ӽ V recreation| + V cease|ͣ + V endure| + V put| +dz V bump|ײ,patient=land|½ +dz V suffer|,content=obstruct|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + N land|½,surfacial| + N place|ط,ProperName|ר +̲ N place|ط,ProperName|ר,(China|й) + N bird| + N bird| + N part|,%AnimalHuman|,arm| +첲 N part|,%AnimalHuman|,arm| + N disease|,#skin|Ƥ + N experience|,#uneasy|,undesired|ݬ + N shape| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ + V abandon| + V break|۶,patient=FlowerGrass| + V remove| + V remove|,medical|ҽ + V give|,possession=land|½,politics| + V break|۶ + V manage|,patient=land|½,instrument=army| + V separate| + V give| + V abandon| + N image|ͼ,linear| + V discharge| + N material|,?clothing|,?tool|þ + V discharge| + V remove| + N clothing|,#foot| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V uprise|,politics| + N human|,*uprise|,politics| + ADJ aValue|ֵ,newness|¾,new|,desired| + V improve| + N human|,*improve| +ְ V discharge| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N material|,?clothing|,?tool|þ + N shape|,square| + N money|,(Guatemala|Σ) + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&information|Ϣ,literature|,entertainment| + V fight| + V FitNot| + N attribute|,pattern|ʽ,&entity|ʵ +ɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Grenada|ɴ) +ɴ N place|ط,country|,ProperName|ר +ɴ N human|,(Grenada|ɴ) +ʿʱ N time|ʱ,#standard|׼ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greenland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Georgia|³) +³ N place|ط,country|,ProperName|ר +³ N human|,(Georgia|³) +³ N language|,#country|,ProperName|ר +ɱ V kill|ɱ,AccordingTo=law|ɷ +ʽ N attribute|,pattern|ʽ,&entity|ʵ +ʽ V PutInOrder| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,very| + N expression| + N shape|,square| + N material|,?clothing| + N fish| + N beast| + N fish| + N fish| + N facilities|ʩ,space|ռ + N institution|,official|,#country| + N human|,#occupation|ְλ,official|,#country|,politics| +¥ N room| + N human|,official| +Ա N human|,#occupation|ְλ,official|,#country|,politics| + V from| + V separate| + N part|,%building|,skin|Ƥ + N location|λ,#reside|ס,near| + V BlockUp| + N part|,%building|,skin|Ƥ + V separate| + N attribute|,relatedness|,unfamiliar|϶ + N phenomena|,#obstruct|ֹ + V separate| + V separate| + V separate| +Ĥ N attribute|,relatedness|,unfamiliar|϶ +Ĥ V ignorant|֪ +ǽ N part|,%building|,skin|Ƥ +ǽж V exposure|¶ + N separate|,partner=hot| + ADV time|ʱ,future|,day| + ADV time|ʱ,other|,day| + N part|,%building|,skin|Ƥ +ѥɦ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ҹ ADV time|ʱ,past| + ADJ aValue|ֵ,ability|,able|,$escape|,#sound| + ADJ aValue|ֵ,ability|,able|,BlockUp|,#sound| + N chemical|ѧ + CLAS NounUnit|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,fragment| + N attribute|,height|߶,&human| + N attribute|,size|ߴ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,attachment|,private|˽ + N human| + PRON human|,firstPerson| + N attribute|,cleanness|ྻ,spotless|,&human| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N thinking|˼,#greedy|̰,undesired|ݬ + N human|,greedy|̰,undesired|ݬ + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,attachment|,private|˽ +廧 N institution|,private|˽ + N system|ƶ,#rights|Ȩ,#own|,private|˽ +ͷ N attribute|,height|߶,&human| +ͷ N attribute|,size|ߴ,&physical| + N attribute|,property|,special|,&entity|ʵ +ر N human|,special| + N attribute|,height|߶,&human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| +ǰ V BeIndependent| + ADJ aValue|ֵ,kind|,queer| +ּ V BeIndependent| + N part|,army|,#place|ط,military|,mass| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N place|ط,all|ȫ + N part|,%entity|ʵ,aspect|,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,rank|ȼ,all|ȫ + N community|,all|ȫ + V endeavour| +͸λ V arrive|,location=location|λ +ȡ V obtain|õ +ɫ ADJ aValue|ֵ,kind|,many| +ɫ ADJ aValue|ֵ,kind|,many|,desired| +ʽ ADV aValue|ֵ,kind|,many| +ʽ ADJ aValue|ֵ,kind|,many| +㼺 V announce|,content=standpoint| +˾ְ V bear|е +λ N human|,all|ȫ +λ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V show|,content=ability| + ADJ qValue|ֵ,amount|,all|ȫ +иҵ ADJ affairs|,many| + V BeIndependent| + V differ|ͬ +ǧ V own|,possession=pros| + V own|,possession=pros| +ִһ V debate| + ADJ aValue|ֵ,kind|,many| +ָ ADJ aValue|ֵ,kind|,many| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,single| +Ϊ V BeIndependent| + N community|,all|ȫ + V CauseToDo|ʹ + V give| + V provide| + PREP {agent} + PREP {beneficiary} + PREP {instrument} + PREP {target} + V display|չʾ + N edible|ʳ,generic|ͳ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V give| + V give| + CLAS NounUnit|,&inanimate| + N cause|ԭ + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,%plant|ֲ,base| + N part|,%thing|,base| + ADJ aValue|ֵ,importance|,important| + N law|ɷ,important| + N part|,%inanimate|,base| + V remove| + N tool|þ,$carve| + N part|,%thing|,base| + N part|,%plant|ֲ,body| + V investigate| + N information|Ϣ + PREP {AccordingTo} +ݵ N place|ط,important| + N human|,future| + N part|,%plant|ֲ,body| + N part|,%thing|,base| +ٹ ADJ aValue|ֵ,circumstances|,steady| +Ҷï ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N cause|ԭ +Դ N location|λ,@ExistAppear| +Դ V BaseOn| +Դ V ResultFrom|Ե + V cure|ҽ + N part|,%plant|ֲ,base| + N part|,%thing|,base| + V follow| + N part|,%AnimalHuman|,leg| +...ȥ V MakeTrouble| + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V follow| +ǰ ADJ aValue|ֵ,distance|,near| + V chase|׷ + V follow| +ͷ N fact|,FallDown| +ͷ N InsectWorm|,undesired|ݬ + V follow| + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N land|½,#crop|ׯ + N tool|þ,*planting|ֲ,#crop|ׯ,generic|ͳ +ţ N livestock|,*planting|ֲ + V engage|,agricultural|ũ + N livestock|,*planting|ֲ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V engage|,agricultural|ũ +ƶ N system|ƶ,#engage|,agricultural|ũ + ADV aValue|ֵ,degree|̶,more| + V alter|ı + V replace| + N time|ʱ,hour|ʱ + V replace| + V alter|ı + N human|,#occupation|ְλ,*defend| + V alter|ı + N human|,*alter|ı + V replace| + ADV aValue|ֵ,degree|̶,more| +һ V GoForward|ǰ +һ ADV aValue|ֵ,degree|̶,more| + N disease| +һ¥ V prosper| + ADJ qValue|ֵ,amount|,few| + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| + V replace| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V improve| + V replace| +» V prosper|,StateFin=superior| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V amend| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,liquid|Һ + V beat| + N tool|þ,*beat| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N land|½,protruding|͹ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ڻ V FeelingByBad| +ֱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V BlockUp| + V CausePartMove| + N part|,%inanimate|,body| + N part|,%plant|ֲ,body| + N part|,%information|Ϣ,heart| + V BlockUp| + N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V BlockUp| + V obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,desired| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N method|,#industrial| + CLAS unit|λ + N expenditure|,commercial| + V draw|,literature| + N human|,#occupation|ְλ,military| + N army| + N house|,industrial|,@produce|,factory|,#InstitutePlace| + N human|,#occupation|ְλ,official|,*manage|,factory| + N InstitutePlace|,@produce|,industrial| + N affairs| + N affairs|,industrial| +̱ N human|,military| +ʦ N human|,#occupation|ְλ,industrial| +ϵ N part|,%InstitutePlace|,education| +ѧ N knowledge|֪ʶ,#industrial| + N community|,ProperName|ר + N place|ط,@build| + N part|,%InstitutePlace|,industrial| +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + CLAS NounUnit|,quantity|,#industrial| + N InsectWorm| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N time|ʱ + N community|,#employee|Ա + N part|,%artifact|˹,#produce|,industrial| + N human|,#occupation|ְλ,industrial| + N affairs|,#industrial|,#transport| + N implement|,generic|ͳ + N tool|þ,cubic|,@put|,#implement| + N knowledge|֪ʶ,#industrial| + N affairs|,#mine|,#industrial| +ҵ N InstitutePlace|,#mine|,#industrial| + N place|ط,#mine|,#industrial| + N attribute|,ability|,&human| + N physical|,#human|,#material|,industrial| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա +ó N affairs|,#industrial|,#commercial| +ũ N human|,#industrial|,#agricultural|ũ +ũ N human|,mass| +ũҵ N affairs|,#industrial|,#agricultural|ũ + N house|,#build|,#industrial| + N attribute|,boundary|,&time|ʱ,#industrial| +Ǯ N payment| + ADJ aValue|ֵ,quality|,refined|,desired| + N place|ط,#city|,#industrial| + N human|,#occupation|ְλ,industrial| +˽׼ N community|,industrial| +˶ N affairs|,#employee|Ա,industrial| + N disease|,#wounded|,#industrial| +¹ N phenomena|,unfortunate|,#industrial|,undesired|ݬ + N community|,industrial|,commercial| +̽ N community|,industrial|,commercial| + N community|,industrial|,commercial|,ProperName|ר,(China|й) +ҵ N affairs|,industrial|,commercial| +ʱ CLAS NounUnit|,quantity|,#industrial| + N facilities|ʩ,#defend|,military| +ͷ N human|,#occupation|ְλ,official|,industrial| +Ч N attribute|,effect|Ч,&act|ж,industrial| +н N payment| + N plans|滮,industrial| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N affairs|,industrial| +ҵ V ize|̬,PatientAttribute=industrial|,industrial| +ҵƷ N artifact|˹,#industrial| + N InsectWorm| + N method| + N process| + N knowledge|֪ʶ,entertainment| +Ʒ N artifact|˹,literature| + N human|,industrial| + N affairs|,#employee|Ա,industrial| + ADJ aValue|ֵ,posture|,neat|,desired| + N attribute|,kind|,industrial|,&affairs| +װ N clothing|,#industrial| +װ N clothing|,#leg|,#industrial| + N payment| + N affairs|,$undertake| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + V do| + N fact|,do| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N house|,industrial|,@produce| + N human|,active|Ը,endeavour| + N quantity|,amount|,&affairs| + N location|λ,space|ռ,#facilities|ʩ,mine| + N part|,%artifact|˹,skin|Ƥ,#produce| + N time|ʱ,day|,@do|,@engage|,#affairs| + N room|,#affairs|,@do|,@engage| +̨ N furniture|Ҿ,@do|,industrial| +վ N computer| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| +Ե V occupy|ռ,possession=land|½,military| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| + V handle|,patient=problem|,important| + V accuse|ظ + V attack|,military| + V slander|̰ + V attack|,patient=facilities|ʩ,military| +ս N fact|,fight|,military| + V occupy|ռ,military| + V attack| +䲻 V attack|,manner=sudden|,military| +ȡ V occupy|ռ,military| + V occupy|ռ + ADJ fact|,attack|,military| + N fact|,attack|,defend| +޲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + V occupy|ռ,military| + V occupy|ռ,military| + V attack|,#mental| +ռ V occupy|ռ,military| + N method|,#industrial| + N result|,#succeed|ɹ,desired| +ܴ V fail|ʧ +û ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N human|,glorious|,superior|,*succeed|ɹ,desired| + V succeed|ɹ + N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N attribute|,ability|,&human| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N fact|,exercise| + N time|ʱ + N result|,#succeed|ɹ,#fail|ʧ + N result|,#succeed|ɹ,desired| + N affairs|,#study|ѧ,education| + N part|,%knowledge|֪ʶ,education| +һ V fail|ʧ + N result|,#succeed|ɹ,desired| + N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,behavior|ֹ + N thinking|˼,behavior|ֹ + N attribute|,ability|,&human| + N attribute|,effect|Ч,&act|ж + N attribute|,PhysicsPower|,&physical| + N attribute|,reputation|,&human| + N attribute|,performance|,&entity|ʵ +Լ N disease| +Ч N attribute|,effect|Ч,&event|¼ +ѫ N result|,#succeed|ɹ,desired| +ҵ N result|,#succeed|ɹ,desired| + N attribute|,performance|,&entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V congratulate|ף + V wait|ȴ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V invite| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ͱ N tool|þ,cubic|,@put|,#waste| +ά V please|ȡ +ά V praise|佱 +ϲ V congratulate|ף + N character|,surname|,human|,ProperName|ר + V admit| + V foster| + N inanimate|,generic|ͳ,*provide| + V provide| + N text|,*admit|,#crime|,#police| +Ӧ V lack|ȱ,commercial| + V provide|,possession=electricity| + V salute|¾ + V provide| + N human|,*provide| + V surpass|ǿ,experiencer=provide|,contrast=need| + V provide|,possession=inanimate|,commercial| +ů V provide|,possession=warm| +Ʒ N tool|þ,*salute|¾,#religion|ڽ,generic|ͳ + V provide|,possession=sit| + V provide|,possession=gas| + N phenomena|,#provide|,#need| + V provide|,possession=hot| + V admit| +ϲ V admit| + V admit| +ˮ V provide|,possession=water|ˮ + V sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N phenomena|,#provide|,#need| + V provide|,possession=gas| + V ProvideFor| +Ӧ V provide| +Ӧ N human|,*provide| +ְ V undertake|,content=occupation|ְλ + N furniture|Ҿ,space|ռ,*salute|¾,#religion|ڽ + V CausePartMove|,PatientPartof=body| + ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N affairs|,#official| + N affairs|,public| + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N affairs|,police| + N institution|,#police|,ProperName|ר,politics| +ɾ N human|,#occupation|ְλ,police| + N institution|,police| + N institution|,police| + N fact|,police| + N document| + N publications|鿯,news| + V announce| + N room|,@excrete|й + N affairs|,public| + N attribute|,boundary|,&quantity| + N human|,employee|Ա,public| + N LandVehicle| + CLAS unit|λ,&length| + V SelfMove|,#affairs|,#dispatch|Dz + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + N attribute|,behavior|ֹ,&human| + N human|,enemy|,public| + CLAS unit|λ,&weight| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N law|ɷ + N house|,public| + N expenditure|,public| + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + N affairs|,public| + N text|,official| + N human|,family|,male| + ADJ aValue|ֵ,attachment|,public| +ij˿ N human|,*TakeVehicle| + N LandVehicle| + N attribute|,cleanness|ྻ,spotless|,&space|ռ + N attribute|,relatedness|,public|,&human|,&organization|֯ +ز N institution|,*handle|,#relatedness| + N house|,#official| + N waters|ˮ + N phenomena|,undesired|ݬ,#pollute|ʹ + N letter|ż,#official| + N community|,commercial| + N fund|ʽ + N bird| + V salute|¾ + N attribute|,attachment|,public| +취 N institution|,police| + N affairs|,public|,#transport| + CLAS unit|λ,&weight| + N human|,royal| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V announce| + N fact|,compete|,sport| + N attribute|,behavior|ֹ,opened|,&event|¼ + N fund|ʽ,public| + N reason|,upright| + CLAS unit|λ,&length| + N law|ɷ,#time|ʱ + N regulation|,ordinary| + ADJ aValue|ֵ,attachment|,public| + N food|ʳƷ,$levy| + N material|,$levy|,#crop|ׯ + N character|,surname|,human|,ProperName|ר + V handle|,police| +· N facilities|ʩ,route|· + N thought|ͷ + N human|,#country| +Ȩ N rights|Ȩ,#human|,country| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ţ N livestock| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N human|,family|,mass| + N human|,official| + CLAS unit|λ,&area| +Ȼ ADV aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + V admit| + N institution| + V judge|ö,police| + CLAS unit|λ,&volume|ݻ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʽ N symbol| +ʽ V ize|̬,PatientAttribute=boring| +ʽ N human| + N affairs|,#official| + N affairs|,public| + N institution|,politics| +˽ ADJ aValue|ֵ,attachment|,public|,private|˽ +˽Ӫ N system|ƶ,#rights|Ȩ,#own|,public|,private|˽ +˾ N InstitutePlace|,commercial| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + N character|,surname|,human|,ProperName|ר + N institution|,space|ռ,police|,#crime|,@judge|ö + V recommend|Ƽ + N document|,official| +İ N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#document|,official| + N inanimate|,public| + N affairs|,#official| + N affairs|,public| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա,#institution|,#country| + N character|,surname|,human|,ProperName|ר + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N livestock|,male| + V perform|,entertainment| + N character|,surname|,human|,ProperName|ר +ұ N character|,surname|,human|,ProperName|ר + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N fund|ʽ,public| + ADJ aValue|ֵ,property|,help| + V discuss| +Ӫ ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,attachment|,public| +õ绰 N facilities|ʩ,*communicate| +ҵ N affairs|,public| + ADJ aValue|ֵ,attachment|,public| + N system|ƶ,#attachment|,public| +Ԣ N house| +Ԫ N time|ʱ,ProperName|ר +Ԫǰ N time|ʱ,ProperName|ר,past| +԰ N facilities|ʩ,space|ռ,public|,@WhileAway| +Լ N agreement|Լ +Լ N text|,$obey|ѭ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ծ N wealth|Ǯ,$owe|Ƿ,$return| + N stationery|ľ,*print|ӡˢ,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +֤ N document|,police| +֤ V prove|֤,police| +֤ N human|,*prove|֤,police| +֮ V announce| +ְ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + ADJ aValue|ֵ,standard|׼ + N human|,mass| + N human|,royal|,female|Ů + N human|,male|,royal| +Ӹ N human|,male|,flighty|,undesired|ݬ + N InstitutePlace|,space|ռ,@WhileAway|,entertainment| + N character|,surname|,human|,ProperName|ר + N house| + N house|,royal| + N part|,%AnimalHuman|,viscera| + N tool|þ,*illuminate| + N house|,royal| + N part|,%AnimalHuman|,viscera| +Ů N human|,employee|Ա,female|Ů,#royal| +͢ N house|,royal| +͢ N institution|,space|ռ,royal| + N house|,royal| + N house|,royal| + V CausePartMove|,PatientPartof=body| + N character|,surname|,human|,ProperName|ר + N shape| + N tool|þ,*measure| + N weapon|,*firing| + ADJ aValue|ֵ,form|״,curved| + V MakeBetter|Ż + N character|,surname|,human|,ProperName|ר + V MakeBetter|Ż + ADJ aValue|ֵ,circumstances|,steady|,desired| + N chemical|ѧ + N medicine|ҩ,liquid|Һ,*apply|ͿĨ + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V GoThrough| + ADJ aValue|ֵ,form|״,protruding|͹,curved| + V push| + V surround|Χ + V surround|Χ + N part|,%building|,mouth| + N facilities|ʩ,route|·,#waters|ˮ + V salute|¾ + V protect| + ADJ aValue|ֵ,form|״,protruding|͹,curved| +״ ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + N tool|þ,*salute|¾,generic|ͳ +Ʒ N tool|þ,*salute|¾,generic|ͳ + V donate| + N result|,desired|,$donate| + N human|,*donate| + V AmountTo|ܼ + ADJ aValue|ֵ,attachment|,public| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADV aValue|ֵ,range|,all|ȫ + N community|,ProperName|ר + V undergo| + N community|,politics| + N human|,#community|,politics| +Ա N human|,#community|,politics| + N community|,politics| + N human| + V exist| + V create|,together|ͬ + V exist| + V pass|ȹ,together|ͬ + N human|,*engage|,together|ͬ,undesired|ݬ,crime| +͵ N community|,politics|,ProperName|ר,(US|) +͵ N human|,politics| +͹ N place|ط,#human|,country|,politics| + V AmountTo|ܼ + ADJ aValue|ֵ,importance|,main| + V build|,together|ͬ + N phenomena|,#sound| + V respond|Ӧ,alike| + N community|,politics| +Ա N human|,#community| + N phenomena|,#alive| +ʶ N thought|ͷ,alike| + V cooperate| +ͬ ADJ aValue|ֵ,attachment|,public| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ N attribute|,similarity|ͬ,alike|,&thing| +ͬŬ N cooperate|,manner=together|ͬ +ͬ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬ N community|,politics| +ͬͨѶ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬͶ N fact|,provide|,#fund|ʽ,together|ͬ,commercial| +ͬԸ N aspiration|Ը,expect|,together|ͬ +֮ͬ N attribute|,similarity|ͬ,alike|,&thing| + V undergo|,manner=together|ͬ + N attribute|,similarity|ͬ,alike|,&thing| + N talk|̸,content=emotion| + ADJ aValue|ֵ,attachment|,public| + N phenomena|,#shiver| + ADV aValue|ֵ,range|,all|ȫ + V *detain|ס + V fasten|˩ + N symbol| + N tool|þ,*catch|׽ס,curved| + V weave| + V write|д + N FlowerGrass|,?medicine|ҩ +Ķ V fight| + N tool|þ,*weave| +ס V *detain|ס,Vachieve| +״ ADJ aValue|ֵ,form|״,curved| + N tool|þ,*catch|׽ס,curved| + V ResultIn| + N character|,surname|,human|,ProperName|ר + V collude| + V draw| + V remove| + V collude| + V entice| + N affairs| + N image|ͼ,space|ռ + V describe|д + V draw| + V collude| + V describe|д + V draw| + V stay|ͣ + V ResultIn| +ͨ V collude| + V remove| + V entice| + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,military|,@hide|,#fight| + N part|,%land|½,linear| + N part|,%land|½,linear|,#water|ˮ + N shape|,linear|,dented| + V irrigate|,agricultural|ũ + N facilities|ʩ,#liquid|Һ,linear| +ͨ V communicate| +ͨ V connect| + N part|,%land|½,linear|,#water|ˮ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V slack|͵ + V mating|,undesired|ݬ + V slack|͵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V slack|͵ +͵ V slack|͵ +͵ V slack|͵ +ȫ V surrender| +ȫ V surrender| +Ӳд V CauseToLive|ʹ,manner=hardship| + N livestock| +ͷʦ N human|,*help|,undesired|ݬ + N human|,*help|,undesired|ݬ +β N FlowerGrass| +β V FitNot| + N beast| + N human|,timid|,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ,*fly| + V use|,patient=power|,purpose=damage| + N beast| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N phenomena|,disgraced|,#shy|,undesired|ݬ + N stone|ʯ,waste| + V build| + V forming|γ + V produce| + V forming|γ + N part|,%building|,generic|ͳ + N part|,%implement|,generic|ͳ + V establish| + N part|,%implement|,generic|ͳ +˼ N thinking|˼ +ͼ V forming|γ,PatientProduct=image|ͼ + V slander|̰ + N thought|ͷ + V forming|γ + N part|,%thing|,bone| + N {DeChinese|} + V build| + N facilities|ʩ + V buy|,commercial| + V buy|,commercial| + V buy|,possession=artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V buy|,commercial| + V buy|,commercial| + N attribute|,ability|,buy|,&human|,&organization|֯ +Ʊ V buy|,possession=coupon|Ʊ֤ + V buy|,commercial| + V buy|,possession=artifact|˹ + N InstitutePlace|,*sell|,@buy|,commercial| + V AlterPossession|,sell|,buy| + V prosper|,scope=AlterPossession| + V buy|,commercial| + V arrive| + V fit|ʺ + ADJ qValue|ֵ,amount|,many|,desired| + V earn|׬,possession=wealth|Ǯ + V arrive|,Vachieve| +Ƕ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,standard|׼,average|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ƶ ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many|,desired| +ˮƽ ADJ aValue|ֵ,standard|׼,average|,desired| +ζ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| + N fact|,crime|,undesired|ݬ + V disappoint| + N AlgaeFungi|ֲ,$eat| + V MakeSound| + V crawl| + V MakeSound| + V speak|˵ + V cook| + V MakeSound| + V speak|˵ + V tighten|ս + V estimate| + V estimate| + V estimate| +Ʋ V despise| +Ʋ V estimate|,manner=insufficiently|Ƿ + N human|,*estimate| + V estimate| + V estimate|,commercial| + N human|,*estimate|,#value|ֵ + V estimate| + V guess|² + V estimate| + V buy|,commercial| + V sell|,commercial| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ N land|½ +¶ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¶ N human|,family|,undesired|ݬ +¶ĸ N human|,female|Ů,#young| +¶Ժ N InstitutePlace| +¹ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¹ N human|,female|Ů,#young| +¹ N human|,aged|,lonely| +¼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¼ҹ N human|,single|,undesired|ݬ +¾ N army|,lonely|,undesired|ݬ,military| + N human|,aged|,lonely| + N aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V separate| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +һ ADJ qValue|ֵ,amount|,single| +עһ V venture|ð + N human|,family|,female|Ů + N human|,religion|ڽ,female|Ů +ø N human|,family|,male| +ù N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + ADV {concession|ò} +֮ V speak|˵ +Ϣ V indulge| +Ϣ V indulge| +ү N human|,family|,male| + V FormChange|α,StateFin=protruding|͹ + V MakeSound| + N MusicTool| + V beat| + V mobilize| + V send| +İ N MusicTool| +Ĵ V PlayUp|Ĵ +Ĵ V disseminate| +Ĵ N human|,*PlayUp|Ĵ +ĵ V PlayWith|Ū +ĵ V incite|ָʹ +Ķ V incite|ָʹ +Ķ V mobilize| +ķ N machine|,*exhale|,#wind| +Ļ V entice| +ľ V urge|ʹ + N music| + V urge|ʹ +¥ N house| +Ĥ N part|,%AnimalHuman|,*listen| +Ū V PlayWith|Ū + V mobilize| + V take|ȡ,possession=courage| + V speak|˵,content=empty| + N part|,%AnimalHuman|,*listen| + N human|,*perform|,entertainment| + V urge|ʹ + V cry| + V beat|,patient=hand| + V welcome|ӭ + V endeavour| +ɾ V endeavour| + V take|ȡ,possession=courage| + N MusicTool| + ADJ aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Cuba|Ű) +Ű ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cuba|Ű) +Ű N place|ط,country|,ProperName|ר +Ű N human|,(Cuba|Ű) +ű N building|,past| +ų N place|ط,city|,past| +Ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŵ N time|ʱ,past| +ŵ N money|,(Haiti|) +ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŷ N artifact|˹,generic|ͳ,past|,precious| +Ŷ N human|,undesired|ݬ,stubborn| +Ŷ N place|ط,capital|,past| +ŷ N attribute|,habit|ϰ,past|,&human|,&organization|֯ +Ź ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ź ADJ aValue|ֵ,kind|,queer| +Ź ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Źֵ N human|,eccentric|Ƨ,undesired|ݬ +Ź N place|ط,country|,past| +Ż N text|,past| +ż N place|ط,#fact|,#time|ʱ +ż N language|,#country|,ProperName|ר +ż N publications|鿯,past| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +ž ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ſ N crop|ׯ,?medicine|ҩ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N MusicTool| + N human|,past| +ɫ ADJ aValue|ֵ,style|,gracious| +ɲ N facilities|ʩ,space|ռ,past|,religion|ڽ +ʫ N text|,past| + N publications|鿯,past| + N artifact|˹,generic|ͳ,past|,precious| + ADJ aValue|ֵ,duration|,TimeLong| +Ϊ V use|,patient=past| + N text|,past| + N artifact|˹,generic|ͳ,past| +ϡ N attribute|,age|,aged|,&human| +ѵ N expression|,past| + N expression|,past| +װ N clothing|,#perform| + N MusicTool|,(China|й) +ƻ V entice| + N part|,%AnimalHuman|,bone| + N part|,%inanimate|,bone| + N part|,%thing|,bone| +Ǵ N disease|,#bone| +Ƕ N part|,%FlowerGrass|,embryo| +Ƿ N material|,*feed|ι,#crop|ׯ +Ǹ N human|,desired|,important|,able| +Ǹ N part|,%AnimalHuman|,bone| +Ǹ N part|,%AnimalHuman|,bone| +ǻ N stone|ʯ,waste| +ǻ N stone|ʯ,waste|,#die| +ǻҺ N tool|þ,cubic|,@put|,#stone|ʯ,#die| +Ǽ N part|,%inanimate|,body| +Ǽ N part|,%thing|,bone| +ǽ N material|,sticky|,*fix|ס,*fasten|˩ +ǽ N part|,%AnimalHuman|,bone| +ǿ N part|,%InstitutePlace|,#bone|,medical|ҽ + N material|,generic|ͳ +µ V roll| +Ĥ N part|,%AnimalHuman| + N tool|þ,*gamble|IJ + N part|,%human|,#bone| + N attribute|,will|־,&human| + N human|,family|,mass| + N part|,%AnimalHuman|,bone| + N disease|,#bone|,#inflamed| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N part|,%AnimalHuman|,bone| +ͷ N part|,%AnimalHuman|,bone| + N disease|,#bone|,$break|۶ + N part|,%artifact|˹,bone| + N location|λ,%bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,flesh| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N land|½,dented| +Ȱ N chemical|ѧ +Ȳ N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ +Ȳ N crop|ׯ,*feed|ι,#livestock| +ȵ N attribute|,circumstances|,wane|˥ +ȶ N InsectWorm|,*fly| + N crop|ׯ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N time|ʱ,day| + N material|,?food|ʳƷ,#crop|ׯ + CLAS NounUnit|,&gas| + CLAS NounUnit|,&linear| + N image|ͼ,linear| + N part|,%AnimalHuman|,leg| + N part|,%inanimate| + N part|,%organization|֯ + N wealth|Ǯ +ɱ N fund|ʽ +ɳ N human|,#occupation|ְλ,official| +ɶ N human|,*own|,#wealth|Ǯ,commercial| +ɷ N human|,undesired|ݬ,*rob|,crime| +ɷ N fund|ʽ +ɷ޹˾ N InstitutePlace|,commercial| +ɷ N system|ƶ,#fund|ʽ +ɷʱ N fund|ʽ +ɹ N part|,%AnimalHuman|,bone| +ɼ N attribute|,price|۸,&coupon|Ʊ֤ +ɽ N fund|ʽ + N wealth|Ǯ +Ʊ N coupon|Ʊ֤,#fund|ʽ +Ʊ N affairs|,commercial|,buy|,sell|,#fund|ʽ +Ʊ N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ +Ʊ N human|,#occupation|ְλ,commercial|,*buy|,*sell|,#fund|ʽ +Ʊг N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ + N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤,commercial| +Ϣ N wealth|Ǯ + N fund|ʽ + N human|,friend|,*help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + N cause|ԭ + N fact|,undesired|ݬ + N human|,friend| +ʲԷ V refuse|,content=MakeBetter|Ż +ʴ CONJ {EventResult|¼} +ʵ N place|ط,original|ԭ +ʶ CONJ {EventResult|¼} +ʹ N place|ط,ProperName|ר,(China|й) +ʹ N place|ط,@ComeToWorld| +ʼ V use|,patient=method|,manner=also|Ҳ +ʾ N human|,friend| +ʾ N house|,original|ԭ + N place|ط,@ComeToWorld| +Ū V deceive|ƭ +ȥ V die| + N human|,friend| + V die| + N fact| + N information|Ϣ,?publications|鿯,#news|,literature| +Ƭ N shows| +̬ V BeRecovered|ԭ,StateIni=used| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld| + N place|ط,ComeToWorld| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը +԰ N place|ط,@ComeToWorld| + N phenomena|,undesired|ݬ,#BeBad|˥ +̬ V pretend|װ,content=bearing|̬ + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V look| +˴ʧ V err| +˼ V PayAttention|ע +˼ V hesitate|ԥ +˼ V TakeCare|,patient=family| +˿ N human|,*buy|,#commercial| + V worried|ż + V worried|ż +˼ V mean|ָ + V look| +ǰ˺ V RashlyAct| +ȫ V PayAttention|ע +ȫ V PayAttention|ע,target=circumstances| + N human|,#occupation|ְλ,friend| +ϧ V PayAttention|ע + N human|,*buy|,#commercial| + ADJ aValue|ֵ,circumstances|,steady|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,will|־,strong|ǿ,desired| + V strengthen|ӹ +̲Է V refuse|,content=MakeBetter|Ż +̵ N chemical|ѧ +̶ V CauseToDo|ʹ,ResultEvent=fixed|Ѷ +̶ ADJ aValue|ֵ,behavior|ֹ,lasting| +̶ V fix|ס +̶ְҵ N affairs|,duty|,#occupation|ְλ,lasting| +̶ʲ N wealth|Ǯ +̻ V AlterForm|״,industrial| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,quality|,durable|,desired| +ɳ N tree| + V defend|,military| +̬ ADJ aValue|ֵ,PhysicState|״̬ +̬ N attribute|,PhysicState|״̬,&physical| + N physical|,generic|ͳ + ADJ aValue|ֵ,source|Դ,original|ԭ +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V believe|,content=thought|ͷ,manner=stubborn| +ִ N human|,stubborn|,undesired|ݬ + V employ| +͹ V employ|,patient=human| +͹ N human|,#occupation|ְλ,$employ| +ũ N human|,#occupation|ְλ,agricultural|ũ + V employ| +Ӷ V employ| +Ӷ N army| +ӶͶ N affairs|,$employ|,engage| + V employ| +Ա N human|,#occupation|ְλ,$employ| + N human|,*employ| + V WeatherBad| + V apply|ͿĨ + V cut| + V rob| +ε N tool|þ,*cut| +εƤ V rob| +η V WeatherBad|,#wind| +ι V cure|ҽ + V MakeUp|ױ +Ŀ࿴ V enjoy|,content=respect| + V cut| + V cure|ҽ + N fruit|ˮ +Ϸ V separate| +ϸ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +Ϲ N fruit|ˮ + N money|,(Paraguay|) + N language|,#country|,ProperName|ר +ũ N human|,*planting|ֲ,#occupation|ְλ,#fruit|ˮ,agricultural|ũ +Ƥñ N clothing|,#head|ͷ + V succeed|ɹ + N part|,%plant|ֲ,embryo|,agricultural|ũ +Ӷ N food|ʳƷ + V break|۶ + ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| +Ѳ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ѹ N human|,female|Ů +ʳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ͷ N human|,rich|,important|,desired| + V ThinkOf|˼ + V cease|ͣ,content=communicate| + V communicate|,instrument=tool|þ + V fasten|˩ + V hang| + V record|¼ + V suffer|,content=fasten|˩ + V undergo|,content=cover|ڸ +Ҳ V decorate|װ +Ҳ V wounded| +ҳ N LandVehicle| +ҳ V cease|ͣ,agricultural|ũ +ҵ绰 V associate|,instrument=tool|þ +Ҷϵ绰 V cease|ͣ,content=associate|,instrument=tool|þ +ҹ V associate| +ҹ V fasten|˩ +ҹ V GiveBirth|,PatientProduct=fruit|ˮ,agricultural|ũ +Һ V record|¼ +һ V wounded| +һ V ThinkOf|˼ +һ V worried|ż +һ V angry| +һ V cease|ͣ,content=communicate| +ҿ V associate| + N tool|þ,*show|,#time|ʱ + V cease|ͣ,agricultural|ũ + N food|ʳƷ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V ThinkOf|˼ + V cease|ͣ,content=compete|,sport| + N start|ʼ,commercial| +ʧ V tell|,content=lose|ʧȥ +˧ V undertake|,content=official| +̺ N tool|þ,$hang|,*decorate|װ,#room| +ͼ N image|ͼ,$hang|,*decorate|װ,#room| +ѥ V cease|ͣ,content=compete|,sport| + V OnCredit| + N tool|þ,*tell|,#time|ʱ + N clothing|,#body| + N clothing|,#body| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Թ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Թ N human|,young| +Ծ ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +Ծ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,behavior|ֹ,queer|,undesired|ݬ + V TakeAway|ᶯ,crime| + V TurnRound| + V cheat|ƭ + V disable|м,scope=walk| + N tool|þ,#walk|,#disable|м +չ N tool|þ,#walk|,#disable|м +ս N location|λ,space|ռ,angular|,@TurnRound| + V TakeAway|ᶯ,crime| +ƭ V TakeAway|ᶯ,crime| +ƭ V cheat|ƭ + V TurnRound| + N location|λ,space|ռ,angular|,@TurnRound| +Ĩ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ĩ V speak|˵,manner=hidden| + N tool|þ,#walk|,#disable|м + N human|,crime|,undesired|ݬ,*cheat|ƭ + N human|,undesired|ݬ,#disable|м,#leg| + ADV aValue|ֵ,degree|̶,ish| + ADJ aValue|ֵ,kind|,queer| + V blame|Թ + N humanized|,undesired|ݬ,*frighten|Ż,ugly| +ֲ V ^blame|Թ +ֲ CONJ {comment|} +ֵ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + N human|,special|,undesired|ݬ + N fact|,queer| +̥ N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N human|,undesired|ݬ,eccentric|Ƨ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ phenomena|,queer| + V blame|Թ + N tool|þ,cubic|,#die|,*store| +ײ N tool|þ,cubic|,#die|,*store| +ľ N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,#die|,*store| + V TurnOff|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + V detain|ס + V end|ս + N institution|,space|ռ,#levy|,#wealth|Ǯ,@check| + N part|,%place|ط,mouth| + N phenomena|,*obstruct|ֹ + V relate|й + V shut|ر + N time|ʱ,important| +ذ N part|,%place|ط,mouth| +ر V cease|ͣ +ر V end|ս +ر V shut|ر +ص V TurnOff|ֹ +ض N food|ʳƷ +غ V relate|й +ػ V PayAttention|ע +ػ V PayAttention|ע +ػ V TurnOff|ֹ +ؼ N part|,%entity|ʵ,heart| +ؼ N human|,important| +ؼ ADJ aValue|ֵ,importance|,important| +ؼ N symbol|,important| +ؽ N part|,%AnimalHuman|,bone| +ؽ N part|,%entity|ʵ +ؽ N part|,%entity|ʵ,heart| +ؽ N disease|,#inflamed| +ؿ N part|,%place|ط,mouth| +ؿ N part|,%place|ط,important|,#military| +ؿ N time|ʱ,important| + V relate|й +óЭ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) + V cease|ͣ,content=discuss| + V end|ս + V shut|ر,patient=mouth| + V PayAttention|ע +˰ N expenditure| +˰ N method|,*obstruct|ֹ,commercial| +˰ V obstruct|ֹ,scope=pay|,#expenditure| +˰ V exempt|,ResultEvent=pay|,#expenditure| +˰óЭ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ͣ V end|ս,commercial| +ͣת V alter|ı +ͷ N time|ʱ,important| +ϵ N attribute|,power|,&entity|ʵ +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N document|,*prove|֤,#organization|֯ +ϵ V influence|Ӱ +ϵ V relate|й +ϵ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N place|ط,#city| + V PayAttention|ע +ļ V PayAttention|ע,target=affairs| + V PayAttention|ע,target=organization|֯ +Ѻ V detain|ס,police| + PREP {concerning} +ڶ ADJ aValue|ֵ,measurement| + V end|ս + V PayAttention|ע + V tell| +ע V PayAttention|ע + ADJ aValue|ֵ,attachment|,public| + N human|,#occupation|ְλ,official| +ٰ ADJ aValue|ֵ,attachment|,#country| +ٱ V uprise| +ٱ N human|,military| +ٳ N community|,#official| +ٷ ADJ aValue|ֵ,attachment|,#country| +ٸ N institution|,official| +ٹ໤ V protect|,patient=official| +ټ N attribute|,behavior|ֹ,#official|,flighty|,undesired|ݬ,&human| + N human|,#occupation|ְλ,official| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N human|,official|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N phenomena|,#behavior|ֹ,indifferent|Į,undesired|ݬ + N affairs|,commercial|,#country| + N human|,commercial|,#country| +˾ N fact|,#accuse|ظ,#police| + N institution|,space|ռ,past| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ա N human|,#occupation|ְλ,official| +˺ͨ V prosper|,scope=upgrade| +ְ N attribute|,occupation|ְλ,&human| +ۡ N house|,#official| + V PutOn| + N clothing|,#head|ͷ + N clothing|,#head|ͷ,royal| + N location|λ,important| + N part|,%bird|,head|ͷ + V put| + N shape| +ڴ N part|,%language| +ھ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +ھ N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| +ھ N fact|,compete|,sport| + N clothing|,#head|ͷ,royal| +û ADJ aValue|ֵ,behavior|ֹ,suitable| +IJ N disease|,#heart| +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + V put| +״ N part|,%AnimalHuman|,nerve| + N attribute|,scene|,&inanimate| + N house|,religion|ڽ + V look| + N thinking|˼ +۲ V investigate| +۲ V look| +۲ ADJ aValue|ֵ,ability|,able|,look|,desired| +۲Ա N human|,look| +۲ N human|,look| +۵ N standpoint| +۷ V defend| +۸ N experience| +۹ V tour| +ۿ V look| + V include|,ResultWhole=congratulate|ף +Ħ V study|ѧ + N thinking|˼ + V enjoy|,means=look| + V look| + V wait|ȴ +̨ N InstitutePlace|,space|ռ,@look|,#weather| + N humanized|,kindhearted|,ProperName|ר,(China|й) + N stone|ʯ,food|ʳƷ + N tree| +հ N attribute|,scene|,&inanimate| +ս V look|,content=compete| +ս V look|,content=fight| + N human|,*look|,#entertainment|,#sport|,*recreation| +ϯ N human|,*look|,#entertainment|,#sport|,*recreation| + N MusicTool| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V guarantee|֤ + V manage| + N part|,%implement|,#electricity| + V provide| + N shape| + V teach| +ܱ V guarantee|֤ +ܲ V BeUnable|,content=control| +ܲס V BeUnable|,content=control| +ܵ N facilities|ʩ,space|ռ,linear|,@transmit| +ܵ N human|,#occupation|ְλ,industrial| +ܵ V BeAble|ܹ,content=control| +ܷ V provide|,possession=edible|ʳ +ܷ N MusicTool| +ܼ N human|,#occupation|ְλ,*manage|,#family|,employee|Ա +ܼ N thought|ͷ +ܽ V teach| +̺ܽ ADJ aValue|ֵ,behavior|ֹ,proper| +ܾ N facilities|ʩ,#liquid|Һ + N MusicTool| + V manage| + N human|,*manage| +Ա N human|,#occupation|ְλ,*manage| + N human|,*manage| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N human|,#occupation|ְλ,employee|Ա + V manage|,patient=affairs| +¶ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V restrain|ֹ +Ͻ V manage| +ϽȨ N rights|Ȩ,#manage|,#control| + N music| +ֶ N community|,#music| + N facilities|ʩ,*transmit| +Ѻ V detain|ס,police| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V control| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + N material|,#building| + N InstitutePlace|,commercial| + N InstitutePlace|,literature| + N facilities|ʩ,space|ռ,@reside|ס + N institution|,#country| +ݲ N artifact|˹,$gather|ɼ +ݲ V store| +ݳ N human|,#occupation|ְλ,*manage| + N InstitutePlace|,commercial|,space|ռ,@eat| + N LandVehicle|,mine| + N tool|þ,cubic|,@put| +޳ N LandVehicle| +ͷ N tool|þ,cubic|,@store|,#edible|ʳ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V cook| +ţ N food|ʳƷ + V fit|ʺ + V indulge| +߳ ADV aValue|ֵ,frequency|Ƶ,often| +߳ ADJ aValue|ֵ,kind|,ordinary| +߷ N human|,crime|,undesired|ݬ +߷ N human|,crime|,undesired|ݬ,*rob| +߻ V indulge| + N regulation|,ordinary| + N attribute|,speed|ٶ,&SelfMove| + N human|,*steal|͵,crime|,undesired|ݬ +͵ N human|,*steal|͵,crime|,undesired|ݬ + N attribute|,speed|ٶ,&SelfMove| + V use| + ADJ aValue|ֵ,ability|,able|,desired| +ڻ ADJ aValue|ֵ,ability|,able|,doubt| + V indulge| + V fill| + V irrigate|,agricultural|ũ +೦ V cure|ҽ + V irrigate|,agricultural|ũ +ཬ V fill| +ཬ V fill|,agricultural|ũ +ཬ V ill|̬ +Ի V deceive|ƭ,means=please|ȡ + V please|ȡ +ľ N tree| + N place|ط,@irrigate|,agricultural|ũ + V teach| + V record|¼,content=sound| +ע V spray| + V GoThrough| + V connect| + V follow| + N money|,past| + N place|ط,@ComeToWorld| +᳹ V conduct|ʵʩ +ᴩ V GoThrough| +ᴮ V GoThrough| +ͨ V connect| +ͨ V know|֪ +ע V PayAttention|ע +ע V relate|й + V OwnNot| + ADJ aValue|ֵ,SmoothFinish|,polished| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + V exposure|¶ + N lights| + ADV {emphasis|ǿ} + N mark|־,*AimAt|,#computer| +Ⲩ N lights| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,brightness|,bright|,&thing| +ʶĿ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| +Ӳ ADJ aValue|ֵ,brightness|,bright| + V CauseToGrow|ʹɳ +⵼ά N material|,*transmit|,#lights| + N phenomena|,#lights|,#electricity| + N part|,%physical| + N attribute|,brightness|,&inanimate|,&physical| +ȼ N tool|þ,*measure|,#brightness| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| +⸴ V TakeBack|ȡ +˶ N human|,single| +˶ N part|,%physical|,body| +˾ N human|,single| + V arrive| +½ ADJ aValue|ֵ,form|״,queer| + N human|,undesired|ݬ + N human|,single|,male|,^GetMarried| + N phenomena|,#metabolize|л,#plant|ֲ +⻪ N attribute|,brightness|,bright|,&thing| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +⻯ѧ N knowledge|֪ʶ +⻷ N lights| +⻷ N lights|,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + N lights| +Բ ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,SmoothFinish|,&implement| +⾰ N attribute|,circumstances|,&entity|ʵ +⾰ N attribute|,scene|,&inanimate| + ADJ aValue|ֵ,brightness|,bright| + N lights| + V arrive| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,fullness|,empty| +â N lights|,bright| +â ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N lights| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CLAS unit|λ,&length| + N tool|þ,*record|¼ + N phenomena|,#color|ɫ,#lights| +׷ V analyze|,content=lights|,#color|ɫ +Ȧ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ٰ N account|,@record|¼,name|,#glorious| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,brightness|,bright| + ADV {emphasis|ǿ} + N lights| + N attribute|,speed|ٶ,&lights| +컯 N time|ʱ,afternoon| +ͷ V exposure|¶ +ͷ N part|,%human|,head|ͷ,$MakeUp|ױ +ͺͺ ADJ aValue|ֵ,fullness|,empty| + N material|,*transmit|,#lights| + N lights| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ ADJ aValue|ֵ,attachment|,#look| +ѧ N knowledge|֪ʶ,#lights| +ѧ N human|,#knowledge|֪ʶ + N lights|,bright| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ N lights|,bright| + N time|ʱ +Ƽ V pass|ȹ,manner=fast| +Դ N location|λ,@ExistAppear|,#lights| + N lights|,bright| +դ N fittings|,#lights| + V illuminate| + N lights| + N part|,%lights| +ҫ V CauseToDo|ʹ,patient=family|,ResultEvent=WellKnown| + ADJ aValue|ֵ,range|,extensive| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| +㲥 V disseminate| +㲥 N text|,disseminate| +㲥ӰӲ N institution|,#disseminate|,ProperName|ר,politics| +㲥 N shows| +㲥ҵ N affairs|,disseminate| +㲥Ա N human|,#occupation|ְλ,*disseminate| +㲩 ADJ aValue|ֵ,range|,extensive| +㳡 N place|ط + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,range|,extensive| + ADJ qValue|ֵ,amount|,many| + N human|,*read|,mass| +ɲ N human|,mass| +Ⱥ N human|,mass| +㵺 N place|ط,city|,ProperName|ר,(Japan|ձ) +㶫 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N attribute|,range|,&entity|ʵ +㷺 ADJ aValue|ֵ,range|,extensive| +㷺 ADJ aValue|ֵ,property|,$disseminate| +㷺 N attribute|,range|,&entity|ʵ + N fruit|ˮ + N readings|,$disseminate|,commercial| + V disseminate|,commercial| +㽻 N InstitutePlace|,@display|չʾ,commercial| + ADJ aValue|ֵ,area|,wide| +Į ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׳ N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N house| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N information|Ϣ + N knowledge|֪ʶ + N place|ط,city|,ProperName|ר,(China|й) + V roam| +䵴 V roam| + V walk|,location=route|· +̳ V walk|,location=InstitutePlace|,commercial|,#buy| +̵ V walk|,location=InstitutePlace|,commercial|,#buy| +Ҥ V SeekPleasure|Ѱ + ADJ aValue|ֵ,value|ֵ,precious|,desired| +屦 N treasure|䱦,precious| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ΰ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ΰ ADJ aValue|ֵ,behavior|ֹ,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,good|,desired| + V persuade|Ȱ˵ + V plan|ƻ + N regulation| + N tool|þ,*measure| + V evade|ر + N regulation|,ordinary| +涨 V decide| +涨 N regulation| +淶 ADJ aValue|ֵ,standard|׼,average|,desired| +淶 N attribute|,standard|׼,&entity|ʵ +淶 V ize|̬,PatientAttribute=standard|׼ + N attribute|,standard|׼,&entity|ʵ + V ize|̬,PatientAttribute=standard|׼ +ؾ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +滮 N plans|滮 +滮 V plan|ƻ +滮 N human|,*plans|滮 + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N attribute|,behavior|ֹ,&human| + N regulation| + N law|ɷ + N attribute|,behavior|ֹ,&event|¼ +ģ ADJ aValue|ֵ,range|,extensive| +ģ N attribute|,range|,&entity|ʵ +ģ N affairs|,produce|,extensive| +Ȱ V persuade|Ȱ˵ +оز V obey|ѭ,content=regulation| + ADJ aValue|ֵ,form|״,even| + N regulation| + N regulation|,ordinary| +ƶ N regulation|,ordinary| + V PutInOrder| + N tool|þ,#royal| + N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guyana|) + N place|ط,country|,ProperName|ר,(South America|) +Ԫ N money|,(Guyana|) + N law|ɷ + N chemical|ѧ + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) +轺 N material| +ʯ N stone|ʯ,material| + N chemical|ѧ + N chemical|ѧ + N AlgaeFungi|ֲ +ש N material|,@building| + V BeMember| + V ComeTogether| + V GoBack| + V return| + PREP {concession|ò} +鰸 V punish|,police| +鲢 V merge|ϲ +鵵 V store| + V include|,ResultWhole=organization|֯ +鸽 V surrender| + ADV {comment|} + ADV {comment|} +鹦 V BelongTo| + V GoBack|,LocationFin=country| + N human|,*GoBack|,#country| +麣 N character|,surname|,human|,ProperName|ר +黹 V return| + V explain|˵ + N process|,ending|ĩ + V accuse|ظ,content=wrong| + V GoBack| + V classify| +£ V assemble|ۼ + N method| + V explain|˵ + N human|,*GoBack|,#country| + V classify| + V BelongTo| +˳ V surrender| + N place|ط + N result| + V die| +; N process|,#GoBack|,#route|· + V die| +Ƽ V expect|,content=GoBack|,manner=worried|ż + V BelongTo| + V ResultIn| +淵 V resume|ָ,StateFin=pure| + V PutInOrder| + V explain|˵ + V accuse|ظ,content=wrong| + N fish| + V FormChange|α + V FormChange|α,medical|ҽ + V CausePartMove| + V escape| +ͷ N part|,%AnimalHuman| + N room|,#female|Ů,@reside|ס +뷿 N room|,#female|Ů,@reside|ס + N room|,#female|Ů,@reside|ס +Ů N human|,family|,female|Ů +Ů N human|,female|Ů,^GetMarried| + N human|,female|Ů,^GetMarried| + N material|,#route|· + N process| + N facilities|ʩ,route|· + N process| +췶 N attribute|,standard|׼,&entity|ʵ +켣 N image|ͼ,linear| +켣 N shape|,linear| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,quality|,refined|,desired| + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N text|,*deceive|ƭ +ƪ N text|,*deceive|ƭ + V MakeLiving|ı,manner=flighty| + N fire| +Ǻ V weep| +Ź N part|,%place|ط,mouth|,humanized| +Ź N place|ط,dangerous|Σ,military| +Ź N time|ʱ,important| + V FondOf|ϲ + N humanized|,undesired|ݬ +ʹ N fact|,*fit|ʺ +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N human|,foreign|,undesired|ݬ +⼿ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V debate| + N human|,*debate| + V deceive|ƭ + V pretend|װ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N symbol|,ProperName|ר,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tree| + N mark|־,glorious| + N FlowerGrass| + N place|ط,city|,ProperName|ר,(China|й) +Ƥ N part|,%tree|,?material| +Ƥ N part|,%tree|,skin|Ƥ +Բ N fruit|ˮ +֦ N medicine|ҩ,(China|й) + N furniture|Ҿ,cubic|,@store| +̨ N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N furniture|Ҿ,cubic|,@store| + V sit| + V salute|¾ + V sit| + ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,$WellTreat|ƴ + N human|,$WellTreat|ƴ,HighRank|ߵ,desired| + N human|,HighRank|ߵ,female|Ů,desired| + ADJ aValue|ֵ,price|۸,expensive|,cheap| + N attribute|,price|۸,&artifact|˹,commercial| + N metal|,material| + N human|,$WellTreat|ƴ + V buy|,cost=expensive| + V sell|,cost=expensive|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,royal| + N human|,royal|,past| + N human|,royal|,female|Ů + V break|۶ + N human|,fierce|,undesired|ݬ,*kill|ɱ + N human|,police|,*kill|ɱ,#crime| + N part|,machine| + V StateChange|̬ + V leave|뿪 + V roll| + V wrap| + N fittings|,%clothing|,*decorate|װ + V leave|뿪 + V roll| + N part|,%implement| + V roll| + ADJ aValue|ֵ,ability|,able|,desired| + V jet| + N SportTool|˶ + ADJ aValue|ֵ,temperature|¶,hot| +Ͳ N part|,%implement| +ѩ V BecomeMore| +Բ ADJ aValue|ֵ,form|״,round|Բ + N part|,%implement| + N part|,%implement| + N part|,%implement| + N human|,undesired|ݬ + N tool|þ + N tool|þ + N tool|þ + CLAS NounUnit|,&inanimate| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@store| + N food|ʳƷ + N part|,%tool|þ,head|ͷ +¯ N tool|þ,@burn| +̨ N part|,%tool|þ,#cook| +̨ת N human|,family|,female|Ů + N food|ʳƷ + N inanimate|,waste| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,attachment|,country| + N character|,surname|,human|,ProperName|ר + N place|ط,#human|,country|,politics| + N treasure|䱦,precious|,#country| + N attribute|,attachment|,#country|,&human| + N human|,$WellTreat|ƴ,#country| + N InstitutePlace|,@WellTreat|ƴ,#country| + N regulation|,#country|,politics| + ADJ aValue|ֵ,source|Դ,original|ԭ + N phenomena|,disgraced|,undesired|ݬ,#shy|,#country|,politics| + N knowledge|֪ʶ,precious|,#country| + N place|ط,capital|,#country| + N place|ط,#human|,country|,politics| + N law|ɷ,country|,politics| + N affairs|,#defend|,#country| + N institution|,#defend|,ProperName|ר,#country| + N human|,#occupation|ְλ,official|,*manage|,#country|,military| +ѧ N InstitutePlace|,@teach|,@study|ѧ,military|,ProperName|ר,#country|,(China|й) + N expenditure|,*defend|,#country| + N army|,*defend|,#country| + N human|,official|,politics| + N music|,$sing|,#country| + N music|,$sing|,&country| + N attribute|,reputation|,&country| + N community|,politics| + N attribute|,name|,#country|,#official|,&time|ʱ + N FlowerGrass|,#country| + N image|ͼ,$draw|,(China|й) + N mark|־,#country| + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Japan|ձ) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(US|) + N artifact|˹,commercial|,#country|,generic|ͳ + N attribute|,attachment|,#country|,&human| + N affairs|,#country| + ADJ aValue|ֵ,attachment|,#country| + N community|,#country| +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʷ N law|ɷ,#country| +ʷԺ N part|,%institution|,police|,(institution|=UN|Ϲ) +ʸ˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) +ʸ N music|,$sing| +ʺ֯ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ʻһ֯ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʽڹ˾ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʿЭ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ú֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ũҵչ N part|,%institution|,#agricultural|ũ,#fund|ʽ,(institution|=UN|Ϲ) + N community|,#country| + N affairs|,#country|,politics| + N attribute|,attachment|,#country|,&thing| + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) + N system|ƶ,#relatedness|,#country| + N place|ط,#human|,country|,politics| +ҲƲ N physical|,$own|,#country| +Ҵ N affairs|,#country| +ҵϵͳ N weapon|,*defend| +Ҷ N community|,#country| +Ҹϯ N human|,#occupation|ְλ,official|,#country| +һ N institution|,#country| +һعԱ N human|,#occupation|ְλ,#country| +Ҽ N attribute|,rank|ȼ,#country|,&thing| +Ҽල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ +ҽίԱ N institution|,ProperName|ר,#education| +ҾóίԱ N institution|,commercial|,ProperName|ר,(China|й) +ҿѧίԱ N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) +쵼 N human|,#occupation|ְλ,official|,#country| +Ԫ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,#occupation|ְλ,official|,#country| + N part|,%country|,edge| + N place|ط,#country| + N part|,%country|,edge| + N human|,#occupation|ְλ,royal| + N InstitutePlace|,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,space|ռ,#country|,@store|,#wealth|Ǯ +ȯ N coupon|Ʊ֤,#country| + ADJ aValue|ֵ,attachment|,#country| + N attribute|,strength|,&country| + N part|,%country|,mouth| + ADJ aValue|ֵ,attachment|,#country| + N human|,#country| + N community|,politics| +񾭼 N affairs|,industrial|,agricultural|ũ,commercial|,#country| + N wealth|Ǯ,$earn|׬,#country| + N phenomena|,undesired|ݬ,#unfortunate|,#country| + ADJ aValue|ֵ,source|Դ,#country| + ADJ aValue|ֵ,source|Դ,#country|,internal| + N location|λ,%country|,internal| +ڷ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N location|λ,%country|,internal|,external| + N mark|־,#country| + N attribute|,circumstances|,&country| + N text|,#politics|,(US|) + N time|ʱ,day|,@congratulate|ף,#country| + N time|ʱ,day|,@congratulate|ף,#country| + N human|,#country| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʷ N fact|,#time|ʱ,#country| +ʷ N human|,*record|¼,past|,#country| + N affairs|,#country| +· N fact|,visit|,#country|,politics| + N human|,able|,#country|,desired|,#WhileAway| + N document|,#country|,diplomatic|⽻ +˰ N institution|,*manage|,#expenditure|,ProperName|ר,country| +̩ ADJ aValue|ֵ,circumstances|,peaceful| + N attribute|,reputation|,&country| + N system|ƶ,country| + N place|ط,#country| + ADJ aValue|ֵ,source|Դ,#country|,external| + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N human|,#occupation|ְλ,royal| + N attribute|,reputation|,&country| + N language|,#country| + N affairs|,#country| + N human|,official|,*manage|,#country|,(US|) +Ժ N institution|,politics|,ProperName|ר,(China|й) +Ժ N institution|,politics|,ProperName|ר,(US|) +Ժί N part|,%institution|,*manage| +ѧ N knowledge|֪ʶ,(China|й) + N fact|,eat|,entertain|д,#country| +ҩ N medicine|ҩ,(China|й) +Ӫ ADJ aValue|ֵ,attachment|,#country| + ADJ aValue|ֵ,quality|,superior|,#country| + ADJ aValue|ֵ,attachment|,public| +л V ize|̬,PatientAttribute=public|,#country| + N language| + N attribute|,circumstances|,&country| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,#country| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fruit|ˮ + N result| + N food|ʳƷ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ + V feed|ι,patient=self| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ +϶ N material|,?food|ʳƷ +ľ N tree|,#fruit|ˮ +ũ N human|,#occupation|ְλ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ƥ N part|,%fruit|ˮ,skin|Ƥ +Ʒ N food|ʳƷ +Ȼ ADV {comment|} +Ȼ CONJ {condition|} + N food|ʳƷ + N part|,%fruit|ˮ,embryo| +ʶ N part|,%fruit|ˮ,embryo| + N part|,%fruit|ˮ,flesh| +ʵ N part|,%plant|ֲ,embryo| +ʵ N result|,desired| + N tree|,#fruit|ˮ + N chemical|ѧ +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + ADV {comment|} + CONJ {condition|} +֦ N part|,%plant|ֲ,#fruit|ˮ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֭ N drinks|Ʒ + N fruit|ˮ +ӽ N food|ʳƷ +¶ N drinks|Ʒ + V TakeAway|ᶯ + V drink| + V wrap| + N fittings|,%clothing|,#leg| +Ю V force|ǿ +в V force|ǿ +㲻ǰ V hesitate|ԥ,content=GoForward|ǰ + ADV aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,standard|׼,average|,desired| + V cross|Խ + V pass|ȹ + N result|,undesired|ݬ,wrong| + V surpass|ǿ + V undergo| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| + V measure|,content=weight| +Ա N human|,#occupation|ְλ,*measure|,#weight| +ȥ V BeUnable|,content=GoThrough| +ȥ V BeUnable|,content=undergo| +ȥ V quarrel| +ȥ V regret|Ǹ + N process| + V measure|,content=weight| + V associate| + N result|,undesired|ݬ,wrong| + N part|,%building|,nerve| +ȥ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ȥ ADJ aValue|ֵ,standard|׼,average|,desired| + V pass|ȹ,patient=winter| + ADJ aValue|ֵ,degree|̶,over| +ƣ V tired|ƣ,degree=over| + V SelfMove| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,degree|̶,over| +ּ򵥻 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V tired|ƣ,degree=over| +ӵ ADJ aValue|ֵ,occasion|,crowded|,degree=over| + ADJ aValue|ֵ,degree|̶,over| + V cross|Խ,LocationThru=place|ط + V pass|ȹ,patient=hardship| + V succeed|ɹ,scope=standard|׼ +ն V win|ʤ +Ӳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,time|ʱ,hind| + V submit| + V talk|̸ + V MakeLiving|ı + ADJ aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N human|,behavior|ֹ,strong|ǿ,undesired|ݬ + V praise|佱 +¥ N house| + V congratulate|ף,cause=festival| + V cross|Խ,LocationThru=country| +ǩ֤ N document|,*cross|Խ,#country| + N human|,*AlterLocation|ռλ,*tour| + V come| + ADJ aValue|ֵ,degree|̶,over| + N material|,*feed|ι,#crop|ׯ +· V cross|Խ,LocationThru=place|ط +· N human|,*GoThrough| + V worried|ż,manner=over| + V filter| + V MarryTo| + N disease| +Ӧ N disease| +Ŀ V check| +Ŀ ADJ aValue|ֵ,ability|,able|,remember|ǵ + V congratulate|ף,cause=festival| + V pass|ȹ,patient=festival| + N time|ʱ,future|,year| + V due| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,over| +ȥ ADJ aValue|ֵ,time|ʱ,past| +ȥ V die| +ȥ V go|ȥ +ȥ N time|ʱ,past| +ȥ V die| + V surpass|ǿ + V MakeLiving|ı + V congratulate|ף,cause=festival|,#ComeToWorld| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ ADJ qValue|ֵ,amount|,redundant| +ʧ N result|,undesired|ݬ,crime| +ʧ N result|,undesired|ݬ,wrong| +ʱ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ʱ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + V die| + V handle| + V count| + V interrogate|,police| +÷ N wind| +ͷ ADJ aValue|ֵ,degree|̶,over| + V SelfMoveInManner|ʽ + V associate| + V PayAttention|ע +ϥ ADJ aValue|ֵ,length| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ҹ V pass|ȹ,patient=night|,#reside|ס +ⲻȥ V regret|Ǹ +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,over| + V praise|佱 + V enjoy| + V exhale| + N place|ط,country|,ProperName|ר,(Kazakhstan|˹̹) +͹ N livestock| + N place|ط,capital|,ProperName|ר,(Botswana|) + V exhale| + N tool|þ,#salute|¾,#congratulate|ף + N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) + V tease|ȡ +Ц V laugh|Ц + N tool|þ,*look|,self| + N part|,%AnimalHuman|,liquid|Һ +ܹ N fruit|ˮ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kazakhstan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N community|,ProperName|ר,(China|й) + N place|ط,capital|,ProperName|ר,(Cuba|Ű) + V CausePartMove|,PatientPartof=body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,#die|,bone| + N human|,young| + N human|,young| + N time|ʱ,#young| +ʱ N time|ʱ,#young| +ͯ N human|,young| + N human|,family|,young| + N human|,young| + ADJ aValue|ֵ,ability|,unable|ӹ + N waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N attribute|,height|߶,&land|½ + N readings| + N beast| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N chemical|ѧ + N fish| + N artifact|˹,generic|ͳ,#fish|,$eat| +Ʒ N artifact|˹,generic|ͳ,#fish|,$eat| + ADJ aValue|ֵ,color|ɫ,blue| + N water|ˮ + N AlgaeFungi|ֲ,$eat| + N land|½,#waters|ˮ + N human|,*rob|,#waters|ˮ,crime| + N human|,crime|,undesired|ݬ,#waters|ˮ,*rob| +Ϊ N fact|,rob|,#waters|ˮ,crime| + N location|λ,%waters|ˮ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Haitii|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Haitii|) + N affairs|,*defend|,#waters|ˮ + N wind|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N waters|ˮ,surfacial| + N beast| + N institution|,#country| + N fish| + V forgive|ԭ + N waters|ˮ + N army|,#waters|ˮ +ٱ N human|,military|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ʯ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,range|,extensive| + N beast| + N beast| + CLAS unit|λ,&length| + N water|ˮ + N beast| + N fish| + N ship| + N fish| + N medicine|ҩ,?addictive|Ⱥ + N fish| + N food|ʳƷ,$eat|,#fish| + N material| + N waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ϵ N place|ط,ProperName|ר,(China|й) + N phenomena|,undesired|ݬ,#waters|ˮ,#unfortunate| + N location|λ,%country|,internal| + N location|λ,%country|,internal|,external| +ţ N beast| +Ÿ N bird| + N attribute|,style|,&shows| +ƽ N attribute|,height|߶,&waters|ˮ + N waters|ˮ,surfacial| +̷ N law|ɷ,#waters|ˮ,#ship|,#transport| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N location|λ,%waters|ˮ + N affairs|,#waters|ˮ,#ship|,#transport| +֯ N part|,%institution|,#affairs|,#waters|ˮ,#ship|,#transport|,(institution|=UN|Ϲ) +¥ N phenomena|,#weather|,fake|α +ˮ N liquid|Һ + N affairs|,#lose|ʧȥ,#waters|ˮ,#ship|,#transport| +̡ N beast| +̲ N part|,%land|½,#waters|ˮ,edge| + N facilities|ʩ,#liquid|Һ,space|ռ + N tree| +ͼ N image|ͼ,#earth|,#waters|ˮ,#country| + ADJ aValue|ֵ,source|Դ,foreign| + N publications|鿯,$sell|,#foreign| + N human|,*ThinkOf|˼,*like|ϧ,#country| + N waters|ˮ,surfacial| + N celestial| +ζ N food|ʳƷ,#fish|,generic|ͳ +Ͽ N waters|ˮ,surfacial| + N food|ʳƷ,#fish|,generic|ͳ +Х N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N beast| + N place|ط,capital|,ProperName|ר,(Netherlands|) + N material|,?food|ʳƷ + N bird| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N waters|ˮ,surfacial| + N law|ɷ,#waters|ˮ,#country| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N institution|,ProperName|ר,#waters|ˮ,#country|,politics| + N weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#waters|ˮ +ѧר N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,#waters|ˮ +Դ N material|,#waters|ˮ + N fish| + N waters|ˮ,surfacial| +Ա N human|,#occupation|ְλ,employee|Ա,#ship| + ADJ aValue|ֵ,attachment|,#waters|ˮ,#ship|,#transport| + V transport|,instrument=ship| + V bury|,LocationFin=waters|ˮ + N AlgaeFungi|ֲ + N fruit|ˮ +ս N fact|,fight|,#waters|ˮ + N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N waters|ˮ,surfacial| + N beast|,*swim| + N fish| + N gas| + N knowledge|֪ʶ +ʱ N time|ʱ,hour|ʱ + V SufferFrom| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V damage| + V kill|ɱ,crime| + N phenomena|,unfortunate|,undesired|ݬ + V SufferFrom|,content=disease| + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V kill|ɱ,crime| + N bird|,evil|,*MakeBad|Ӻ,undesired|ݬ + V fear| +Ⱥ֮ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +˳ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +ϲ V SufferFrom|,content=disease|,#female|Ů + V shy| + V SufferFrom|,content=disease|,#female|Ů + V shy| + V fear| + V fear| + V fear| + N human|,*damage|,#software|,undesired|ݬ +Ȼ V fear| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V fear| + V satisfied| + V satisfied| +˯ V sleep|˯,manner=satisfied| + V drink|,manner=satisfied| +ս V fight| + ADJ aValue|ֵ,ability|,unable|ӹ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ц V laugh|Ц +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(South Korea|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korean|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(South Korean|) + N language|,#country|,ProperName|ר + V HoldInMouth| + V cherish|Ļ + V contain| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +첻 ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,metal| +ƾ ADJ aValue|ֵ,content|,medicine|ҩ + V weep| + N quantity|,amount|,#contain|,#content|,&physical| +þ ADJ aValue|ֵ,content|,metal| +ŭ V angry| + ADJ aValue|ֵ,content|,medicine|ҩ +ɳӰ V ExpressAgainst|Ǵ,manner=tactful| +ˮ ADJ aValue|ֵ,content|,water|ˮ + ADJ aValue|ֵ,content|,material|,sweet| +ͭ ADJ aValue|ֵ,content|,metal| +Ц V laugh|Ц +п ADJ aValue|ֵ,content|,metal| + V endure|,content=hardship| + V shy| + ADJ aValue|ֵ,behavior|ֹ,tactful| + ADJ aValue|ֵ,content|,difficult| + V contain| +Ѫ ADJ aValue|ֵ,content|,part| +Ѫ V slander|̰ + N information|Ϣ + N information|Ϣ +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V contain| +ԩ V suffer|,damage| +Թ V sorrowful| +Ū V enjoy|,content=happy|,time=aged|,desired| + V contain| + N facilities|ʩ,route|· + V contain| + V forgive|ԭ + V contain| + N attribute|,ability|,#control|,#self|,&human| + N information|Ϣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + V shiver| + V shiver| + N weather|,cold| + N part|,%earth|,cold| + N time|ʱ,winter| + N time|ʱ,winter| + N wind|,cold| +̹ V perception|֪,content=cold|,degree=extreme| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education|,winter| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V disappear|ʧ,experiencer=time|ʱ + ADJ aValue|ֵ,temperature|¶,cold| + N weather|,cold| +¶ N time|ʱ,day| +ë N part|,%human|,hair|ë + ADJ aValue|ֵ,temperature|¶,cold| + N gas|,cold| + N weather|,cold| + N wind|,cold| +Ϯ ADJ aValue|ֵ,temperature|¶,cold| + V fever| + ADJ aValue|ֵ,temperature|¶,cold|,hot| + N time|ʱ,year| + N tool|þ,*measure|,#temperature|¶ + ADJ aValue|ֵ,circumstances|,poor|,miserable|,undesired|ݬ +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N clothing|,#cold|,#season| + N attribute|,temperature|¶,cold|,&space|ռ +ս V shiver| + V LaughAt|Ц + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V shiver| + N SayHello|ʺ,manner=EachOther|໥ + N letter|ż + N stationery|ľ,cubic|,@put|,letter|ż + V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N letter|ż + V reply|,content=letter|ż + V tell|,instrument=letter|ż + V buy|,instrument=letter|ż + N letter|ż + V teach|,instrument=letter|ż +ڴѧ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| +ѧУ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N symbol| + V seek|ıȡ,instrument=letter|ż + V cry| + V communicate|,means=tool|þ + V disseminate|,target=enemy|,military| + V cry| +ɤ V cry| +ɤ V cry| +ԩ V protest|,content=miserable| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ fact|,rarely|ż + N PenInk|ī,*write|д + N document| + N human|,#knowledge|֪ʶ,past| +Ժ N institution|,#knowledge|֪ʶ,past| +ī N PenInk|ī +ī N text| + V shake|ҡ + V shake|ҡ + V defend| + V defend| + V resist| + V defend| + V defend| + ADJ aValue|ֵ,dampness|ʪ,waterless| + N crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N time|ʱ,season|,waterless| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,@store|,vegetable|߲ +Ա V guarantee|֤,scope=obtain|õ,#crop|ׯ,agricultural|ũ + N tree| +· N facilities|ʩ,route|· + N time|ʱ,year|,waterless| + N facilities|ʩ,route|· + N attribute|,circumstances|,#waterless|,&place|ط +ɡ N tool|þ,*protect| +̡ N beast| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N addictive|Ⱥ + N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless| + V repent|û + N experience|,undesired|ݬ,#sorry|ϧ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,courage|,brave|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V fasten|˩,industrial| + N part|,%implement|,linear|,#fasten|˩,industrial| + N affairs|,industrial|,#fasten|˩ + N human|,#occupation|ְλ,industrial|,*fasten|˩ + V fasten|˩,industrial| + N material|,*fasten|˩,generic|ͳ +ǹ N tool|þ,*fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + N clothing|,#body| + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +䤱 V excrete|й + N result|,desired| +ë N part|,%human|,hair|ë +ţ䶰 ADJ qValue|ֵ,amount|,many| + N clothing|,#body| +ˮ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,nerve| + V shy| +Һ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N human|,ProperName|ר,mass| + N human|,male| + N language|,#country|,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N stone|ʯ,?material| + N place|ط,city|,ProperName|ר,(German|¹) + N food|ʳƷ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(South Korea|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V ize|̬,PatientAttribute=(China|й) + N human|,undesired|ݬ,*betray|,treacherous| + N place|ط,city|,ProperName|ר,(China|й) +ܶ N place|ط,capital|,ProperName|ר,(Bermuda|Ľ) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,past|,(China|й) + N human|,#country|,ProperName|ר + N character|,(China|й) + N language|,(China|й) +ѧ N knowledge|֪ʶ,(China|й) +ѧ N human|,#knowledge|֪ʶ + N language|,#country|,ProperName|ר,(China|й) +ƴ N symbol|,#language|,#sound| + N human|,family|,male| + N human|,male| + N character|,(China|й) +ֿ N software|,@store|,character|,(China|й) + N community|,ProperName|ר,(China|й) + V beat| + N tool|þ,*beat| +ʵ V beat| + N tool|þ,*beat| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V VehicleGo|ʻ + V fly| + N attribute|,number|,&aircraft|,#fly| + N mark|־,*guide|,#VehicleGo|ʻ + V measure| + N attribute|,distance|,#VehicleGo|ʻ,#fly| + N attribute|,distance|,&VehicleGo|ʻ,&fly| + N ship| + N attribute|,number|,&aircraft|,#fly| + N attribute|,number|,&ship|,#VehicleGo|ʻ + N quantity|,amount|,&ship|,#VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#waters|ˮ,#VehicleGo|ʻ + N affairs|,VehicleGo|ʻ,#ship| + N human|,*VehicleGo|ʻ,#ship| +ҵ N affairs|,VehicleGo|ʻ,#ship| + N affairs|,#VehicleGo|ʻ,#aircraft| +ձ N army|,#sky| +ձ N human|,#occupation|ְλ,#sky| +չ˾ N InstitutePlace|,#affairs|,#transport|,#aircraft| +ջ N affairs|,transport|,#aircraft| +ĸ N weapon|,ship|,military| +· N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| +ģ N tool|þ,$recreation|,aircraft| +ĸ N weapon|,ship|,military| + N attribute|,speed|ٶ,&VehicleGo|ʻ,&fly| + N affairs|,#fly| +ɻ N aircraft| + N affairs|,VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| + N direction|,#VehicleGo|ʻ,#fly| + V VehicleGo|ʻ + N VehicleGo|ʻ + V VehicleGo|ʻ + V fly| + N human|,*VehicleGo|ʻ + N affairs|,#transport|,#ship| +˹˾ N InstitutePlace|,#affairs|,#transport|,#ship| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + V weep| + V weep| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,rich|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,desired| + ADJ aValue|ֵ,kind|,extravagant| + N human|,able|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,rich|,strong|ǿ,desired| + N attribute|,courage|,brave|,&human| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ N human|,undesired|ݬ,fierce| + N attribute|,courage|,brave|,&human| + N language|,#country|,ProperName|ר + N human|,rich|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,brave|,able|,desired| + N emotion|,FeelingByGood|,desired| +׳ N expression|,brave|,desired| + N beast| +׳ ADJ aValue|ֵ,courage|,brave|,desired| + N PenInk|ī,*write|д + N part|,%animal|,hair|ë + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + CLAS unit|λ,&electricity| + ADV {neg|} +ҡ ADJ aValue|ֵ,will|־,stubborn|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ԥ ADJ aValue|ֵ,will|־,stubborn|,desired| +ԥ V willing|Ը + ADJ qValue|ֵ,amount|,few| + N unit|λ,&weight| + CLAS unit|λ,&weight| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&volume|ݻ + ADV {neg|} +ޱ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +޴ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +޶ V BeSame|ͬ +޹֮ͬ V differ|ͬ +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ + ADV aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,easiness|,easy|,desired| + N character|,surname|,human|,ProperName|ר + V AptTo| + V BeWell|׳ + V FondOf|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ðʽ N human|,able|,desired| +ð ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ñ V BeSimilar| +ò ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ó V FondOf|ϲ,target=eat| +ó ADJ aValue|ֵ,taste|ζ,good|,desired| +ó V slack|͵ +ô N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ô N wealth|Ǯ,desired|,$earn|׬ +ô N expenditure| +ô˾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#accuse|ظ +ôϲ V expect|,content=succeed|ɹ,undesired|ݬ +ô N attribute|,GoodBad|û,&entity|ʵ +ô N phenomena|,undesired|ݬ,#unfortunate| +ö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| +ö N attribute|,behavior|ֹ,FondOf|ϲ,#fight|,&human| +ö˶ ADJ aValue|ֵ,circumstances|,good|,desired| +ö ADJ qValue|ֵ,amount|,many| +ö ADJ qValue|ֵ,amount|,many|,question| +ø N experience|,kindhearted|,desired| +ù ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,brave|,desired| +ú ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ú ADJ aValue|ֵ,circumstances|,good|,desired| +úö ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +úö ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,undesired|ݬ +û N expression|,kindhearted| +û N attribute|,GoodBad|û,&entity|ʵ +þ V unfortunate| +þ N time|ʱ,TimeLong| +ÿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ÿ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ÿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ÿ ADJ aValue|ֵ,reputation|,glorious|,desired| +ÿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N place|ط,ProperName|ר,#(movie|Ӱ),(US|) + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N result|,#estimate|,good| + V expect| + N emotion|,expect| + V FeelingByGood| + N human|,good|,desired| + N human|,sly|,undesired|ݬ + N human|,strong|ǿ,desired| + N time|ʱ,day|,#GetMarried| + N time|ʱ,day|,#joyful|ϲ + N time|ʱ,happy| +ɫ V FondOf|ϲ,target=female|Ů +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ +ɱ¾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#kill|ɱ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʤ V FondOf|ϲ,target=surpass|ǿ +ʤ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʹ V succeed|ɹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N fact|,desired| + N fact|,good|,desired| +¶ĥ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N fact|,good|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +˵ EXPR expression|,*agree|ͬ +˵˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V BeSimilar| + V WeatherFine| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ϸ N fact|,interesting|Ȥ +Ϸ N shows|,good| + V BeSimilar| +Ц ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Щ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ѧ V FondOf|ϲ,target=study|ѧ + N human|,superior|,desired| +ݶ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ݶ V slack|͵ + N emotion|,like|ϧ,kindhearted|,desired| +˼ V shameless|û + N human|,friend| + N attribute|,circumstances|,lucky|,&human| + ADV {comment|} +ս ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| +ս N human|,*FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#quarrel| +Ͼ V calm| +ת V BeRecovered|ԭ +׬ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +Ϊ֮ V ActGeneral|,manner=proper| + V lavish|˷,patient=time|ʱ + V spend| +ĵ N quantity|,amount|,exhaust|,#electricity| +ķ V spend| +ľ V exhaust| + V exhaust|,patient=strength| +ɢ V exhaust| +ɢ V exhaust|,industrial| +ʱ V exhaust|,patient=time|ʱ +ʱ V lavish|˷,patient=time|ʱ + V exhaust| + V lavish|˷ + V exhaust| + V spend| + V spend|,patient=fund|ʽ + N beast| + N InstitutePlace|,commercial| + N MusicTool| + N attribute|,name|,&physical| + N attribute|,size|ߴ,&physical| + V cry| + N symbol| + N time|ʱ,day| + N time|ʱ,day|,special| + V weep| +ų V become|Ϊ +ų V naming| +Ž N MusicTool| +Ž V cry| +ſ V weep| + V order| + N text|,*order| + N symbol| + V diagnose|,medical|ҽ + N tool|þ,#quantity|,#sequence| + N human|,*perform|,entertainment| + N clothing|,#body| + V call|ٻ + V weep| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| +ƴ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ƶ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ʒ ADJ qValue|ֵ,amount|,many| +ƺƵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ƽ N phenomena|,undesired|ݬ,unfortunate| +Ȼ ADJ aValue|ֵ,area|,wide| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +Ȼ֮ ADJ mental|,fair|,desired| +̺ ADJ qValue|ֵ,amount|,many| +̾ V sigh|̾ + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + V ExpressAgainst|Ǵ + V exhale| +dz V ExpressAgainst|Ǵ +ǻ V TakeCare| +Ƿ V respire| + V ExpressAgainst|Ǵ + V cry| + V drink| +Ȳ V praise|佱 +Ȳ V praise|佱 +ȳ V ExpressAgainst|Ǵ +ȵ V ExpressDissatisfaction|ʾ + V force|ǿ + V ask| + V dizzy|,cause=addict|Ⱥ +߳ V ExpressAgainst|Ǵ + V CarryOnBack| + N FlowerGrass| + N duty|,$bear|е + N place|ط,country|,ProperName|ר,(Holland|) +ɰ N part|,%clothing|,cubic|,@put| +ɰ N tool|þ,cubic|,@store| +ɶ N medicine|ҩ +ɻ N FlowerGrass| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Netherland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Holland|) + N money|,(Netherlands|) + N human|,(Netherland|) + N language|,#country|,ProperName|ר +ǹʵ V CarryOnBack|,patient=weapon| +Ҷ N part|,%plant|ֲ,hair|ë + V load|װ + N place|ط,city|,ProperName|ר,(China|й) + V check| + N part|,%plant|ֲ,embryo| + N part|,%thing|,heart| +˲ V check| +˴Ź N phenomena| +˴ N place|ط,country|,#weapon| +˵ N weapon|,$firing| +˵ͷ N weapon|,$firing| +˵ N weapon|,$firing| +˵վ N facilities|ʩ,space|ռ,*produce|,#electricity| +˶ V estimate| +˶ N attribute|,strength|,&entity|ʵ +˶ĸ N weapon|,ship|,military| +˶ V check| +˷ V issue|ַ +˷Ӧ N physical|,*ize|̬ +˹ N part|,%plant|ֲ,embryo| +˻ N medicine|ҩ +˼ V estimate| +˼ V BecomeLess| + N attribute|,strength|,&physical| +DZͧ N weapon|,ship|,military| +ȼ N material|,$burn|,*lighting|ȼ +ʵ V check| + N chemical|ѧ + V calculate| +Ǻ N chemical|ѧ + N fruit|ˮ + N weapon| + V remove| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,heart| +׼ V ExpressAgreement|ʾͬ + N part|,%physical| + N chemical|ѧ + N crop|ׯ +̳ N facilities|ʩ,@separate|,#crop|ׯ,agricultural|ũ + N crop|ׯ,young| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + V compile|༭ + V mix| + V sing| + COOR {and|} +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N wind|,weak| +ͷϸ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N clothing| +ͺ V reconcile| +ͺ V reconcile| +ͻ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͻ V weaken| +ͻ N fact|,communicate|,#peaceful|,politics| +ͽ V reconcile| +; V BeSame|ͬ,sport| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| +г V reveal|¶ +ƽ ADJ aValue|ֵ,effect|Ч,gentle|,desired| +ƽ N human|,military| +ƽ V exist|,manner=together|ͬ +ƽ N human| + V BeSame|ͬ,sport| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,religion|ڽ,male| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N sound|,#music| + N human|,*persuade|Ȱ˵ + N symbol|,#quantity| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +̸ V discuss|,content=peaceful|,politics| + N place|ط,ProperName|ר,(China|й) +ϡ V mediate| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ɫ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Լ N agreement|Լ,#peaceful|,politics| +Թ V ally| + ADJ aValue|ֵ,temperature|¶,warm| + N character|,surname|,human|,ProperName|ר +α ADV {comment|} +γ ADV {comment|} +ε ADV aValue|ֵ,degree|̶,very| +ε ADJ aValue|ֵ,kind|,question| +η ADV {comment|} +ι N {cause|ԭ,question|} +ο ADV {comment|} +ο CONJ {supplement|ݽ} +ֶΪ ADV {comment|} + ADJ aValue|ֵ,kind|,question| +ȥδ V do|,content=event|¼ +ʱ ADV time|ʱ,question| + N medicine|ҩ,(China|й) +ν V be|,question| + ADV {comment|} + ADJ aValue|ֵ,kind|,question| + ADV {cause|ԭ,question|} + ADV {manner|ʽ,question|} + ADV location|λ,question| +ֹ ADV aValue|ֵ,degree|̶,over| + V AmountTo|ܼ + ADJ aValue|ֵ,range|,all|ȫ + V fit|ʺ + V include| + V shut|ر +ϰ V manage|,manner=together|ͬ,commercial| +ϱ V compile|༭,manner=together|ͬ +ϲ V merge|ϲ +ϲ N human|,*merge|ϲ +ϳ V sing| +ϳ V forming|γ +ϳά N material| +϶Ϊһ V merge|ϲ +Ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϸ̳ N human|,*receive| +Ϸ N attribute|,standard|׼,law|ɷ,&event|¼ +Ϸ N place|ط,city|,ProperName|ר,(China|й) +ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϲ V merge|ϲ,patient=fund|ʽ,commercial| +Ϻ V fit|ʺ +ϻ N tree| +ϻ N tree| +ϻ V merge|ϲ,patient=fund|ʽ,commercial| +ϻ V attack|,manner=together|ͬ +ϼ N medicine|ҩ +ϼ V AmountTo|ܼ +ϼ ADJ aValue|ֵ,importance|,main| +ϼ V discuss| +ϼ V think|˼ +ϼ N community|,family|,complete| +Ͻ N metal|,material| +Ͻ N metal| +Ͽ V BeRecovered|ԭ,medical|ҽ +Ͽ ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + V ize|̬,PatientAttribute=correct|ȷ + V cooperate| + V ComeTogether| + V cooperate| +£ V merge|ϲ +ı N fact|,engage|,#crime|,together|ͬ,undesired|ݬ +ı V plan|ƻ,#crime|,manner=together|ͬ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V calculate| + ADJ aValue|ֵ,pattern|ʽ,proper|,desired| +ͬ N agreement|Լ +Χ V surround|Χ + V sleep|˯ +ҳ N part|,%machine| +һ V merge|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V discuss| +Ӫ V manage|,manner=together|ͬ,commercial| +Ӱ V TakePicture| +Ӱ V image|ͼ,$TakePicture| + V use|,manner=together|ͬ +Լ N document|,#agree|ͬ,commercial|,industrial| +բ V TurnOn| + V fit|ʺ + N institution|,news|,ProperName|ר,(US|) + V compile|༭,manner=together|ͬ + V merge|ϲ,patient=fund|ʽ,commercial| + V recreation| + V cooperate| + N human|,cooperate| + V merge|ϲ + N tool|þ,cubic|,@put| +д N tool|þ,*record|¼ +з N food|ʳƷ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| +ǹ N weapon|,*firing| + N beast| + N part|,%beast|,hair|ë + N waters|ˮ,linear| +Ӱ N part|,%land|½,#waters|ˮ,edge| +ӱ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ӵ N waters|ˮ,linear|,generic|ͳ +Ӵ N waters|ˮ,linear| +ӵ N waters|ˮ,linear| +ӵ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ӹ N waters|ˮ,small|С,linear| +ӹ N part|,%land|½,#waters|ˮ,edge| +ӿ N part|,%waters|ˮ,mouth| + N beast| + N waters|ˮ,linear| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׹ N shows| + N place|ط,capital|,ProperName|ר,(Vietnam|Խ) + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,linear| + N waters|ˮ,linear| +ɽ N place|ط,#country| +̲ N part|,%land|½,#waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N part|,%waters|ˮ,linear| + N part|,%waters|ˮ,linear|,ProperName|ר + N part|,%waters|ˮ,curved| + N waters|ˮ,linear|,mass| + N place|ط,ProperName|ר,(China|й) +з N fish| + N part|,%land|½,#waters|ˮ,edge| +Դ N part|,%waters|ˮ,head|ͷ + V transport|,instrument=ship| + N fish| + ADJ aValue|ֵ,dampness|ʪ,waterless| +֮ N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר +ն N place|ط,capital|,ProperName|ר,(Finland|) +պ ADJ aValue|ֵ,quality|,great|ΰ,desired| +պ ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר +³ N human|,official|,politics|,ProperName|ר,(USSR|) +Ȼ ADJ aValue|ֵ,degree|̶,extreme| +Ȼ ADJ aValue|ֵ,impression|ӡ,strong|ǿ + CLAS unit|λ,&frequency|Ƶ + ADJ aValue|ֵ,color|ɫ,brown| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N bird| +׷ͯ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ⱥ ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + V congratulate|ף +ش N expression|,@congratulate|ף +ص N expression|,@congratulate|ף +ص N readings|,@congratulate|ף + N tool|þ,*congratulate|ף + V congratulate|ף,cause=festival| +ϲ V congratulate|ף,cause=festival| + N letter|ż,@congratulate|ף + ECHO sound| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,status|,^passed|ϸ +ڰ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ڰ ADJ aValue|ֵ,brightness|,dark| +ڰ ADJ aValue|ֵ,color|ɫ,black|,white| +ڰ ADJ aValue|ֵ,color|ɫ,colored| +ڰ ADJ aValue|ֵ,correctness|,&entity|ʵ +ڰ N attribute|,trueness|α,&entity|ʵ +ڰ N stationery|ľ,@write|д +ڰ屨 N readings|,news| +ڰ N community|,crime|,#police|,undesired|ݬ +ڲ ADJ aValue|ֵ,color|ɫ,black| +ڳԺ V cheat|ƭ +ڵ N community|,crime|,#police|,undesired|ݬ +ڵ N facilities|ʩ,route|·,dark| +ڵ N fact|,crime|,#police|,undesired|ݬ +ڵϹ ADJ aValue|ֵ,brightness|,dark| +ڶ N celestial| +ڶ ADJ aValue|ֵ,brightness|,dark| +ڶ N plant|ֲ +ڷ N part|,%human|,hair|ë,black| +ڸ N stone|ʯ,material| +ڸҹ N time|ʱ,day|,night| +ڹ¡ ADJ aValue|ֵ,brightness|,dark| +ڹ N MusicTool| +ڹ N lights| +ں N waters|ˮ,ProperName|ר +ں N place|ط,city|,ProperName|ר,(China|й) +ں ADJ aValue|ֵ,brightness|,dark| +ں ADJ aValue|ֵ,color|ɫ,black| +ڻ N inanimate|,$(smuggle|˽),#crime|,undesired|ݬ +ڻ N inanimate|,undesired|ݬ +ڿ N human|,*damage|,#software|,undesired|ݬ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,*win|ʤ,sudden| + N livestock|,black| + N crop|ׯ + N account|,@record|¼,#name|,#crime| +ơ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,brightness|,dark| +Ȳ N disease| + N human|,#status|,^passed|ϸ + N human|,black| +ɫ ADJ aValue|ֵ,color|ɫ,black| +ɫ N physical|,#black| + N community|,crime|,#police|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,crime|,#police|,undesired|ݬ + N human|,#crime|,#police|,undesired|ݬ +ֵ N community|,crime| + N material|,?tool|þ + N attribute|,kind|,&character|,&symbol| + N natural|Ȼ + N attribute|,kind|,&character|,&symbol| + N stone|ʯ,material| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N beast| + N beast| +ѹѹ N qValue|ֵ,amount|,many| +ѹѹ ADJ qValue|ֵ,amount|,many| +ҹ N time|ʱ,day|,night| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,color|ɫ,black| + N fish| + N fruit|ˮ + N trace|,#skin|Ƥ,#human| + N trace|,celestial|,#weather| + N beast| +Ƥ ADJ aValue|ֵ,property|,#material| + N fish| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + N trace| +ۼ N trace| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ qValue|ֵ,amount|,few| +а ADJ aValue|ֵ,ability|,able|,help| +б ADJ aValue|ֵ,will|־,strong|ǿ + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,will|־,strong|ǿ +ݶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ץ V PayAttention|ע + V hate| + V repent|û +޲ V expect| +޲ V expect| + N fact|,undesired|ݬ,#sorry|ϧ +ɸ V worried|ż + V MakeSound| + V prosper| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,posture|,horizontal| + N part|,%character| +ᱩ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N place|ط,city|,ProperName|ר,(Japan|ձ) + N wealth|Ǯ +ֱײ V GoForward|ǰ +ᴩ V cross|Խ + V cross|Խ +̫ƽ V cross|Խ,LocationThru=waters|ˮ + N part|,%inanimate|,surfacial| + N mark|־ + V cross|Խ +½ V cross|Խ,LocationThru=land|½ + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +᳦ N part|,%AnimalHuman|,viscera| + V cross|Խ + N part|,%building|,bone| + N text|,$sign|д + N mark|־ + N part|,%inanimate|,surfacial| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ +ɨ V destroy| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ + V exist| + V happen| +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| + V die| +Ƽ N part|,%AnimalHuman|,flesh| + ADJ aValue|ֵ,direction| + V IllBehave| +аԵ V IllBehave| + V levy|,possession=expenditure|,manner=fierce| + N mark|־,#location|λ,#direction| +ب V cross|Խ + V estimate| + V measure| + V estimate| + N tool|þ,*measure|,#weight| +ɽ N land|½,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,ordinary| +㶨 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɳ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɽ N land|½,ProperName|ר,(China|й) + N attribute|,temperature|¶,lasting|,&physical| + N aspiration|Ը,desired|,lasting| + N celestial|,space|ռ + V MakeSound| + V expel| + V firing| + V firing|,military| +䶯 V excite|ж +䶯һʱ V excite|ж + V expel| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V firing|,military| +¡ V MakeSound| + V MakeSound| +Ȼ ADV aValue|ֵ,SoundVolume|,loud| +ը V firing|,military| +ը N weapon|,aircraft|,*firing| + V cheat|ƭ + V deceive|ƭ + V entice| +崫 V disseminate| +嶯 V excite|ж +ƭ V cheat|ƭ +ƭ V deceive|ƭ +ƭ V entice| + V rob| +Ȼ ADJ aValue|ֵ,behavior|ֹ,bustling| +̧ V MakeHigher|,commercial| +̧ V MakeHigher|,patient=price|۸,commercial| +ôЦ V laugh|Ц +Ц V laugh|Ц + V ServeAsFoil| + V WarmUp| + V dry| +決 V dry| + V dry| +濾 V cook| + V ServeAsFoil| + N tool|þ,@dry|,*cook| + V ServeAsFoil| + N CloudMist| +Ĥ N part|,%AnimalHuman|,#eye| + N tool|þ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N bird| + N letter|ż +蹵 N part|,%inanimate|,mouth| + N human|,able|,desired| + N bird| + N phenomena|,lucky|,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +鲨 N water|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| +鶼˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Honduras|鶼˹) +鶼˹ N place|ط,country|,ProperName|ר,(South America|) +鶼˹ N human|,(Honduras|鶼˹) + N water|ˮ + N phenomena|,undesired|ݬ,#waterlogging|,#weather| + ADJ aValue|ֵ,SoundVolume|,loud| + N water|ˮ,strong|ǿ,#waters|ˮ +ˮ N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N water|ˮ,strong|ǿ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ + N phenomena|,#liquid|Һ,#undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,quality|,great|ΰ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,attachment| +۾ N affairs|,industrial|,agricultural|ũ,commercial| +ͼ N plan|ƻ,great|ΰ +ΰ ADJ aValue|ֵ,posture|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V MakeBetter|Ż +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N material|,red|,*congratulate|ף + N payment| + N result|,desired|,#succeed|ɹ + N fact|,GetMarried|,die| +ϲ N fact|,GetMarried|,die| + N disease| +Ǵ N disease| + N payment| +챦ʯ N stone|ʯ,treasure|䱦 + N drinks|Ʒ +쳡 N place|ط,ProperName|ר,(Russia|) +쳾 N place|ط,ordinary|,#human| + N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +춹 N part|,%tree|,#love|,embryo| +춹 N part|,%vegetable|߲,embryo|,$eat| +춹 N vegetable|߲ + N human|,female|Ů +칯 N medicine|ҩ + V BeWell|׳ + N fruit|ˮ +캣 N place|ط,ProperName|ר + N beast| +컨 N medicine|ҩ,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N army|,ProperName|ר,past| + N payment| + V angry| + V shy| + N InsectWorm|,undesired|ݬ + N human|,#young| + N tool|þ,$PutOn|,*decorate|װ + N plant|ֲ +¥ N readings|,glorious|,(China|й) +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ + N crop|ׯ,?material| +ñ N clothing|,#head|ͷ,red| +ñ N human|,#occupation|ְλ,*TakeAway|ᶯ +ù N medicine|ҩ +ľ N wood|ľ + N human|,*reconcile|,#GetMarried| + N tool|þ,@punish|,sport| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N mark|־,red|,desired| + N human|,able| + N material| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,color|ɫ,red|,&human| + ADJ aValue|ֵ,color|ɫ,red|,desired| +ɫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ N attribute|,color|ɫ,red|,&physical| + V cook| +ʮ N community|,medical|ҽ +ʮֻ N community|,medical|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N tree| + N material|,?edible|ʳ + N crop|ׯ,?material| +ͨͨ ADJ aValue|ֵ,color|ɫ,red|,desired| +ͷļ N document|,formal|ʽ + N material| + N lights| + N lights| + N human|,#community|,politics| +ϸ N part|,%AnimalHuman|,liquid|Һ + N part|,%event|¼,nerve| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ + N emotion|,loyal|Т,desired| + N human|,*perform|,glorious|,entertainment| + N mark|־ +ѧ N knowledge|֪ʶ,literature| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N human|,female|Ů,beautiful| + V angry| +۲ N disease|,eye| +۲ N emotion|,jealous|ʼ + ADJ aValue|ֵ,color|ɫ,red|,desired| +Ҷ N part|,%plant|ֲ,hair|ë + N human|,religion|ڽ +ӧǹ N weapon|,*stab| + N phenomena|,desired|,#lucky| + N attribute|,countenance|,red|,&human| + N fruit|ˮ +֩ N InsectWorm|,undesired|ݬ + V swollen| + V cook| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,mouth| + N tool|þ,*disseminate| +ͷ N part|,%AnimalHuman|,mouth| + N disease| + N character|,surname|,human|,ProperName|ר + N human|,royal| + N human|,royal| + N human|,royal|,female|Ů + N beast| + N human|,young|,wise| +ͷ N AlgaeFungi|ֲ + N beast| + V MakeSound| + V cry| + V cry| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + ADJ aValue|ֵ,thickness|,thick| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N emotion|,like|ϧ,kindhearted|,desired| + N attribute|,thickness|,&physical| +˱ V treat|Դ,manner=biased|ƫ + V WellTreat|ƴ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,thickness|,&physical| +ն ADJ aValue|ֵ,thickness|,thick| + N tool|þ,$GiveAsGift| + N payment|,many| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʵ ADJ aValue|ֵ,thickness|,thick| +ʵ ADJ qValue|ֵ,amount|,many|,desired| + V expect| +޳ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N aValue|ֵ,weight|,heavy| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V SayHello|ʺ + V wait|ȴ + V RegardAs| +Ա N human|,redundant| +ίԱ N human|,official|,politics| + V wait|ȴ,content=LandVehicle| + N room|,@wait|ȴ,#LandVehicle| + N bird| + V wait|ȴ,content=interrogate|,police| +ѡ N human|,$select|ѡ + V wait|ȴ,content=cure|ҽ,medical|ҽ + N room|,@wait|ȴ,#cure|ҽ,medical|ҽ + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,future| + N character|,surname|,human|,ProperName|ר + N human|,female|Ů,royal| + N human|,future| + N location|λ,hind| + N time|ʱ,future| +뱲 N time|ʱ,process|,@alive|,half| +볡 N part|,%fact|,#compete|,#exercise| + N time|ʱ,process|,@alive|,half| + N human|,future| + N location|λ,hind|,space|ռ + N part|,AnimalHuman|,hind|,body| + ADJ aValue|ֵ,property|,$SetAside|,replace| +۾ N human|,military| + ADJ aValue|ֵ,location|λ,hind| + N location|λ,hind| + N part|,%physical|,hind|,body| + N human|,future| + N time|ʱ + N human|,family|,male| + N human|,friend|,*help| + V fight| + N place|ط,hind|,military| + N part|,%AnimalHuman|,foot| + N part|,%clothing|,foot| + V LookBack| + V rotate|ת +֮ V worried|ż + N result| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,unfortunate|,undesired|ݬ + V repent|û + N part|,%text| + V KeepOn|ʹ + V KeepOn|ʹ + N part|,%clothing|,body| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,effect|Ч,&drinks|Ʒ,&medicine|ҩ + N attribute|,strength|,&human| + ADJ aValue|ֵ,time|ʱ,hind| + ADV {supplement|ݽ} + V surpass|ǿ + N time|ʱ,ProperName|ר,past| +· N facilities|ʩ,linear| +· N facilities|ʩ,linear|,route|·,@GoBackward| + N human|,family|,female|Ů + N attribute|,power|,&human|,&organization|֯ + N part|,%building|,mouth| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,future| + N location|λ,hind|,space|ռ + ADJ time|ʱ,future| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N time|ʱ,future|,year| + N human|,family|,female|Ů + V fear| + N location|λ,hind| + N time|ʱ,ending|ĩ + V appear| +֮ N human|,able| + N affairs|,#provide| +ڲ N institution|,*provide| + N human|,future| + N human|,future|,*bear|е + N time|ʱ,afternoon| + N part|,%clothing|,body| + N part|,%human|,hind|,body| + ADJ aValue|ֵ,age|,adult| + N human|,adult| +η ADJ aValue|ֵ,ability|,able|,desired| + N human|,future| + N time|ʱ,future| + N fact|,#die|,#bury| +֮ʦ N human|,*teach|,future| + V MoveItBack| +̨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +̨ N facilities|ʩ,space|ռ,#perform| +̨ N human|,friend|,*help| + ADJ aValue|ֵ,source|Դ + N time|ʱ,future|,day| +Լ N disease| +ͷ ADJ aValue|ֵ,time|ʱ,future| +ͷ N location|λ,hind|,space|ռ +ͷ ADJ time|ʱ,future| + N part|,%animal|,leg| + V GoBackward| + N human|,*exercise|,(football|) + V KeepOn|ʹ +֢ N disease| + N human|,future| +Ӱ N trace|,#lights|,hind| +Ԯ N human|,*help| +Ժ N part|,%building|,space|ռ,hind| + N entity|ʵ +׺ N part|,language| + N part|,%LandVehicle|,@sit| + V cry| + V exhale| + V naming| + V exhale| +绽 V MakeTrouble| + V cry| + V weep| +ͺ N place|ط,city|,ProperName|ר,(China|й) + V call|ٻ + V cry| + V cry| + N human|,*cry| + V cry|,content=rescue| + ECHO sound| + N aspiration|Ը,expect| + V weep| + V respire| + N part|,%AnimalHuman|,viscera|,*respire| + N disease| + N part|,%AnimalHuman|,viscera|,*respire| +ϵͳ N part|,%AnimalHuman|,viscera|,*respire| +Х V MakeSound| +Х V GoThrough| + N character|,surname|,human|,ProperName|ר +Ӧ V fit|ʺ +Ӧ V reply| + N aspiration|Ը,expect| + V request|Ҫ +֮ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N character|,(China|й) + ECHO sound| + V despise| + ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| + V wave|ڶ + N tool|þ,cubic|,@WarmUp|,#liquid|Һ + N tool|þ,cubic|,@store| +« N plant|ֲ +« N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,past| + N part|,%human|,hair|ë + V TalkNonsense|Ϲ˵ + N InsectWorm|,*fly|,*sting| + N material|,?food|ʳƷ + N plant|ֲ + N material|,?food|ʳƷ + V IllBehave| + V MakeTrouble| + V quarrel| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܲ N medicine|ҩ,*improve| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N MusicTool| +˵ V TalkNonsense|Ϲ˵ +˵˵ V TalkNonsense|Ϲ˵ +˼ V guess|² + N fruit|ˮ +ͬ N facilities|ʩ,route|· + N part|,%AnimalHuman|,hair|ë + V TalkNonsense|Ϲ˵ + V TalkNonsense|Ϲ˵ + N human|,undesired|ݬ,*rob|,crime| + N part|,%AnimalHuman|,hair|ë +Ϊ V IllBehave| +Ϊ N human|,evil| + V wipe| + N MusicTool| + N character|,(China|й) + N InsectWorm|,*fly| + N FlowerGrass| + N shape| + N beast| +ٻ V damage| + N beast| + V entice|,means=please|ȡ +Ⱥ N human|,undesired|ݬ,friend| + N experience|,doubt| + V StateChange|̬ + V fasten|˩ + N shape| + N material|,?food|ʳƷ + V MakeLiving|ı +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N material|,*thicken|Ũ +Ū V deceive|ƭ +ǽֽ N paper|ֽ,*cover|ڸ,#skin|Ƥ,#building| +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϳ N human|,foolish| + V MakeLiving|ı + N place|ط,ProperName|ר + N waters|ˮ,surfacial| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,surfacial| +ɽɫ N attribute|,scene|,&inanimate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%land|½,#waters|ˮ,edge| +ɫ ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +ͤ N facilities|ʩ,space|ռ,#waters|ˮ,@WhileAway| + N shape|,linear|,round|Բ + N lights| + N shape|,linear|,round|Բ + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N beast| + N document|,past|,*order|,military| + N SportTool|˶ + N part|,%human|,hand| + N place|ط,dangerous|Σ,undesired|ݬ,#die| +ڰ V treat|Դ,manner=brave|,target=dangerous|Σ + V escape|,cause=dangerous|Σ +ǯ N tool|þ,*hold| + V look|,manner=greedy|̰ +ͷβ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +Ѩ N place|ط,dangerous|Σ,military|,#die| + V frighten|Ż + V protect| + N facilities|ʩ,#waters|ˮ,*protect| + N part|,%building|,skin|Ƥ +Ǻ N facilities|ʩ,#waters|ˮ,*protect| + V keep| + V protect|,scope=wrong| + N tool|þ,*protect| + V protect| + N part|,%army| + V protect|,patient=official|,royal|,military|,police| + V TakeCare| + V TakeCare|,medical|ҽ +Ա N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ,mass| + V protect|,patient=tree| + N facilities|ʩ,*protect| + N entity|ʵ,*protect| + N tool|þ,*protect|,#religion|ڽ +ʿ N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ +ʿ N human|,#occupation|ְλ,official|,*TakeCare|,*cure|ҽ,medical|ҽ + V protect| + N tool|þ,*protect|,#leg| + N human|,*protect|,*defend| + V protect| + N weapon|,ship|,military| +ϥ N tool|þ,*protect|,#leg| + V TakeCare|,medical|ҽ + V foster| + V maintain| + N document|,*prove|֤,#country|,#tour| + ADV {EachOther|໥} + V enrich|ʵ,manner=EachOther|໥ + V visit|,politics|,manner=EachOther|໥ + V relate|й + V exchange| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + N attribute|,ability|,tie|,&entity|ʵ +» V understand|,manner=EachOther|໥ +ͨ V exchange| +ͨ V provide| + ADV {EachOther|໥} + V help|,manner=EachOther|໥ + N community|,#help|,EachOther|໥ + N place|ط,city|,ProperName|ר,(China|й) + N shows| + N account|,#wealth|Ǯ + N community|,#family| + N part|,%building|,mouth| + N account|,*record|¼,#status| + N account|,@record|¼,#status| + N attribute|,status|,&human| + N attribute|,status|,&human| +ڲ N account|,@record|¼,#status| +ͷ N account|,#wealth|Ǯ + N location|λ,%room|,external| + N human|,family| + N FlowerGrass| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,color|ɫ,colored| + N attribute|,pattern|ʽ,&inanimate| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N disease| + N location|λ,#disease|,#wounded| + N shape| + V spend| + N tool|þ,#fire|,*WhileAway|,*congratulate|ף + ADJ aValue|ֵ,color|ɫ,grey| + N part|,%FlowerGrass|,body| + N part|,%FlowerGrass|,body| + N tool|þ,*decorate|װ + N material|,?clothing| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass| + N material|,?drinks|Ʒ + N LandVehicle| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N FlowerGrass|,mass| + N InsectWorm| + N tool|þ,*illuminate|,*congratulate|ף + N drinks|Ʒ,$addict|Ⱥ + N material|,?clothing| + N FlowerGrass| + N FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#plant|ֲ + V spend| + N part|,%FlowerGrass| +ʯ N material|,stone|ʯ,*build| + N material|,stone|ʯ,*build| +Ƕ N part|,%FlowerGrass|,embryo| + N part|,%FlowerGrass|,head|ͷ +Բ ADJ aValue|ֵ,circumstances|,happy|,desired| + N artifact|˹,*GiveAsGift|,#GetMarried| + N fruit|ˮ + N payment| + N human|,male|,flighty|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + N tool|þ,*decorate|װ + N FlowerGrass| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N time|ʱ,season|,#FlowerGrass| + ADJ aValue|ֵ,age|,aged| + N attribute|,posture|,#ShowOff|ҫ,&human| + N SportTool|˶ + N fact|,sport| + N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N material|,?food|ʳƷ + N LandVehicle|,#GetMarried| + N tool|þ,*look|,#aged|,#eye| + N tool|þ,*GiveAsGift| + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +¶ˮ N tool|þ,*MakeUp|ױ,liquid|Һ,fragrant| + N account|,*record|¼,#name| +ľ N plant|ֲ + N material|,?clothing| + N image|ͼ + N image|ͼ +ũ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N part|,%FlowerGrass| + N tool|þ,#fire|,*recreation|,*congratulate|ף + N tool|þ,cubic|,@planting|ֲ,#FlowerGrass| +ƿ N tool|þ,cubic|,*put|,#FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N time|ʱ,#FlowerGrass| + N mark|־,(US|) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(US|) +Ǯ V spend|,patient=money| +Ǯ˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ǹ N plans|滮,undesired|ݬ,*deceive|ƭ +ǹ N weapon|,past|,stab| +Ȧ N tool|þ,#die| + N part|,%FlowerGrass|,heart| +ɫ N attribute|,pattern|ʽ,&artifact|˹ + ADJ aValue|ֵ,color|ɫ,colored| + N crop|ׯ + N material|,?food|ʳƷ,*cook| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N tool|þ,#FlowerGrass| +˿ N part|,%FlowerGrass|,heart| +̳ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| +̳ N facilities|ʩ,space|ռ,@put|,#FlowerGrass| +Ƶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N room| +Ž ADJ aValue|ֵ,bearing|̬,beautiful|,desired| +Ž ADJ aValue|ֵ,color|ɫ,colored| + N part|,%FlowerGrass| + N attribute|,pattern|ʽ,&inanimate| + N expenditure| + N information|Ϣ,interesting|Ȥ + V TalkNonsense|Ϲ˵ + N disease|,#look|,#aged|,#eye| + N attribute|,pattern|ʽ,&artifact|˹ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N fact|,sport| +ҩ N part|,%FlowerGrass| +Ҭ N part|,%vegetable|߲,embryo|,$eat| +Ҭ N vegetable|߲ +԰ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +֦չ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N part|,%FlowerGrass|,body| + N human|,poor|,undesired|ݬ,*beg| + N part|,%FlowerGrass|,body| + ECHO sound| + V betray|,politics|,military| + ECHO sound| +Ȼ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ц V laugh|Ц +ȡ V please|ȡ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,grey| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + N part|,%thing|,heart| + N place|ط,country|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N material|,?clothing| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N tool|þ,*illuminate|,*decorate|װ + N place|ط,ProperName|ר,(China|й) +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N place|ط,#wealth|Ǯ,(US|) + N fact|,entertainment| + N part|,%human|,hair|ë,white| + N tool|þ,royal| + N human|,industrial|,(China|й) + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + CLAS unit|λ,&length|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,ProperName|ר,(China|й) + N human|,#country|,(China|й) + N human|,(China|й) +ɳ N place|ط,capital|,ProperName|ר,(Poland|) +ɽ N land|½,ProperName|ר,(China|й) +ʢ N place|ط,capital|,ProperName|ר,(the United States of America|) +ʢ N place|ط,provincial|ʡ,ProperName|ר,(US|) + ADJ aValue|ֵ,standard|׼,#temperature|¶ + N language|,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + N human|,(China|й) + N language|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V slide| + N SportTool|˶,sport| + N fact|,sport| + N part|,%machine| + V exercise|,sport| + N human|,sport| + N part|,%implement| + N facilities|ʩ,route|· + V slide| + N LandVehicle| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + V cook| + N part|,%implement| + ADJ aValue|ֵ,SmoothFinish|,polished| + V decline|˥,commercial| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| +ʯ N material| +ʯ N stone|ʯ +ʯ N material| +ˬ ADJ aValue|ֵ,SmoothFinish|,polished| +ǹ N human|,*firing|,military| + N tool|þ,*recreation| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͷ N human|,sly|,undesired|ݬ + V fly| + V slide| +ѩ V slide| +ѩ N human|,sport| + V draw| + N image|ͼ,$draw| + N part|,%character| + N stationery|ľ,@draw| + N readings|,#image|ͼ + N PenInk|ī,*draw| +伢 V pretend|װ + N stationery|ľ,@draw| + N account|,@gather|ɼ,#image|ͼ +Ϊ V restrain|ֹ + N readings|,#image|ͼ,crude|ª +๷ V fail|ʧ + V draw| + N account|,@gather|ɼ,#image|ͼ + N human|,literature|,*draw| + N human|,*draw|,literature| + N image|ͼ + N publications|鿯,#image|ͼ + N part|,%building|,nerve| +㾦 V enrich|ʵ +ü V MakeUp|ױ +ü N bird| + N image|ͼ,#shows| + N part|,%image|ͼ,appearance|,skin|Ƥ +Ƥ N tool|þ,*cover|ڸ,*deceive|ƭ +Ƭ N image|ͼ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + ADJ fail|ʧ +ʦ N human|,literature|,*draw| + N room|,@draw| +̳ N community|,#draw| +ͼ V draw| + N text|,#shows| + V draw|,content=image|ͼ +Ѻ V write|д,content=mark|־ +Ѻ V write|д,content=name| +Ժ N institution|,#draw| +չ N fact|,@display|չʾ,#image|ͼ + V cut| + V delimit| + V distinguish|ֱ + V draw| + V drive|Ԧ + V issue|ַ + V plan|ƻ + V issue|ַ + V WorthNot|ֵ + V worth|ֵ + V delimit| + V classify| + V distinguish|ֱ + V include| + V occupy|ռ + V draw| + V cut| + V distinguish|ֱ +ȭ V compete| +ʱ ADJ aValue|ֵ,kind|,special| + V calculate| + V worth|ֵ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N ship|,small|С + V StateChange|̬ + V alter|ı + V change| + V consume|ȡ + V gather|ɼ +ʹΪ V alter|ı,StateIni=sorrowful|,StateFin=strength| + V remove| + V StateChange|̬ + N material|,*feed|ι,#crop|ׯ +ɸΪ V alter|ı,StateIni=enemy|,StateFin=friend| + N affairs|,#chemical|ѧ,industrial| + N InstitutePlace|,factory|,@produce|,#chemical|ѧ,industrial| +ҵ N affairs|,#chemical|ѧ,industrial| +Ϊ˽ V cheat|ƭ + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + V remove| + N method|,*cure|ҽ + V alter|ı,patient=name| + V attribute|,name| +ŧ V inflamed| + N entity|ʵ,$mean|ָ +ʯ N stone|ʯ +Ϊ V disappear|ʧ + N material|,?clothing| +Ϊ V BeRecovered|ԭ,StateIni=safe| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,#chemical|ѧ +ѧ N chemical|ѧ +ѧҩƷ N chemical|ѧ + V check| + N room|,@check| + N part|,%implement| +Ե V gather|ɼ +Ϊ V alter|ı,StateIni=complete|,StateFin=part| +װ V MakeUp|ױ +װ V pretend|װ +ױ V MakeUp|ױ +ױƷ N tool|þ,*MakeUp|ױ +ױʦ N human|,#occupation|ְλ,*MakeUp|ױ + V alter|ı + V speak|˵ + N text|,$speak|˵ + V farewell| + N information|Ϣ +Ͷ V FitNot| + N part|,%talk|̸,nerve| + N thought|ͷ,#talk|̸ + N part|,%talk|̸,nerve| + V LookBack| + V speak|˵,content=past| + N shows| + N community|,*perform|,entertainment| +л ADJ aValue|ֵ,behavior|ֹ,tactful| +˵ ADV {comment|} + N part|,%communicate|,heart| +Ͳ N tool|þ,*disseminate|,#sound| +ͷ N part|,%talk|̸,nerve| +Ա N human|,#occupation|ְλ,employee|Ա +ϻ N human|,*speak|˵ +ϻ N tool|þ,*disseminate|,#sound| + N sound|,#language| + N text|,$speak|˵ + N tree| + N tree| + V ThinkOf|˼ + N character|,surname|,human|,ProperName|ר + V cherish|Ļ + N emotion| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + V cherish|Ļ + N part|,%AnimalHuman|,body| + N tool|þ,*tell|,#time|ʱ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V ThinkOf|˼,content=past| + V hate| + N human|,*hate| + V ThinkOf|˼,content=past| + V ThinkOf|˼ + V ThinkOf|˼ + V entice|,politics| +̥ V pregnant|,#medical|ҽ + V ThinkOf|˼ + V doubt| + N experience|,doubt| +ɲ ADJ aValue|ֵ,countenance|,doubt| +ɵ ADJ aValue|ֵ,countenance|,doubt| + N human|,*doubt| + V cherish|Ļ + V pregnant|,#medical|ҽ +Ŷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) + V OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + N thought|ͷ,evil| + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + N human|,undesired|ݬ,evil| + V OutOfOrder| + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N attribute|,reputation|,disgraced|,undesired|ݬ,&human|,&organization|֯ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V FeelingByBad| + N human|,undesired|ݬ,evil| +˵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V damage| + N fact|,undesired|ݬ + V OutOfOrder|,medical|ҽ + V WeatherBad| + N fund|ʽ,^$return| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V joyful|ϲ + V joyful|ϲ + V pass|ȹ,manner=joyful|ϲ + V praise|佱 +ϲϲ ADJ joyful|ϲ + V assemble|ۼ,manner=joyful|ϲ +һ V assemble|ۼ,manner=joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V congratulate|ף +׶ V joyful|ϲ +Ц N sound|,#joyful|ϲ + V farewell| + V joyful|ϲ +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ +Ц V laugh|Ц + V joyful|ϲ + N emotion|,like|ϧ,kindhearted|,desired| + V entertain|д +ӭ V welcome|ӭ +ӭ N fact|,welcome|ӭ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +Ծ V joyful|ϲ + V joyful|ϲ + V BeNear| + N shape| + V protect|,patient=environment| + N institution|,*protect|,#environment|,ProperName|ר + V BeNear| + N location|λ,%city| + V look| + V BeNear|,partner=waters|ˮ + N part|,%event|¼ + N attribute|,environment|,&entity|ʵ + V protect|,patient=environment| +滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) + N attribute|,cleanness|ྻ,spotless|,&space|ռ +Ⱦ V pollute|ʹ,patient=environment| + V flow|,manner=circulate|ѭ +· N facilities|ʩ,route|· + N earth|,space|ռ + V BeNear| + V coil| +ɽ V BeNear|,partner=land|½ +ɽ N location|λ,%land|½ + V look| + V clean|ʹ,patient=environment| + ADJ aValue|ֵ,form|״,round|Բ +֬ N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V GoBack| + ADV Vcontinue| + ADV aValue|ֵ,degree|̶,more| + ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ + ADV also|Ҳ + V return| + V return|,commercial| + V return|,possession=wealth|Ǯ,commercial| +Ϣ V return|,possession=wealth|Ǯ,commercial| + V return|,^Vable| + V return| + V return|,commercial| + ADJ aValue|ֵ,standard|׼,average| + V BeRecovered|ԭ,StateIni=die| + V resist| + V resist|,military| + V discuss|,content=price|۸,commercial| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V return| + ADV time|ʱ + CONJ {or|} + V resist| + V GoBack|,LocationFin=place|ط +ԭ V BeRecovered|ԭ +ԭ N chemical|ѧ +ԭø N chemical|ѧ +Ը V obey|ѭ,content=agree|ͬ +ծ V return|,possession=wealth|Ǯ,commercial| + V refute| + V BeRecovered|ԭ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + V weaken| + N part|,%machine|,*weaken| + N part|,%software|,*store| + N part|,%computer|,*store| + V BeRecovered|ԭ + V weaken| + ADJ weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + N attribute|,circumstances|,&event|¼ + V mediate| + V delay|,patient=build| + V weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + N part|,%land|½,skin|Ƥ + V delay| + V BeRecovered|ԭ + V delay|,patient=punish|,#police| + V fact|,punish|,#police| + V VehicleGo|ʻ,manner=slow| + V walk|,manner=slow| + V BeRecovered|ԭ + V delay|,content=levy| + V exchange| + V exchange|,commercial| + V replace| + V replace|,patient=affairs| + V replace|,patient=foot| + V replace|,patient=crop|ׯ,agricultural|ũ + V replace|,patient=LandVehicle| + V replace| + V cease|ͣ,content=defend|,military| + V cease|ͣ,content=defend|,military| + V exchange|,possession=location|λ + V exchange|,patient=affairs| + V replace|,patient=clothing| +仰˵ ADV {comment|} +ë V replace|,patient=hair|ë + V respire| +Ǯ V exchange|,possession=money| +ȡ V exchange| + V replace|,patient=human|,sport| + V exchange| +ҩ V BeSame|ͬ + V exchange|,possession=document| +ϴ V replace| + N part|,%machine|,*change|,#direction| +֮ ADV {comment|} +ҩ V replace|,patient=medicine|ҩ,medical|ҽ + V SufferFrom|,medical|ҽ + N emotion|,sad|dz,undesired|ݬ + N phenomena|,undesired|ݬ,#unfortunate| + V sad|dz +ǾҲ V ill|̬ + V ill|̬ + N location|λ,#ill|̬ +ûʧ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ûʧ V worried|ż,cause=ProsCons| + V ill|̬ +빲 V undergo|,content=hardship|,manner=together|ͬ + V SufferFrom| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + V cry| + V LookBack| + V call|ٻ + V call|ٻ + V foster| + ADJ aValue|ֵ,brightness|,bright| + V AppearanceChange|۱ + V illuminate| +Ȼһ V prosper| +ɢ V BeBad|˥ +ɢ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɢ V weaken| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official| + N human|,#occupation|ְλ,official|,#royal| + N undertake|,content=official| +¹ N human|,#occupation|ְλ,official|,#royal| +º N community|,official| +; N phenomena|,#official| + ADJ aValue|ֵ,trueness|α,fake|α +õ N fact|,*disseminate| +õ N tool|þ,*disseminate| +û V change| +þ N experience|,empty|,wrong| + V disappear|ʧ + V think|˼ + N thought|ͷ,empty| +Ӱ N image|ͼ,empty|,wrong| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V despise| + N land|½,desolate|,undesired|ݬ + N land|½,surfacial|,desolate|,undesired|ݬ + N phenomena|,undesired|ݬ,wane|˥ +IJ N FlowerGrass| +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ N human|,wrong|,undesired|ݬ +ĵ N land|½,surfacial|,desolate|,undesired|ݬ +ķ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ķ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +ķ V despise| +ķ V end|ս +Ľ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren|,undesired|ݬ +Į N land|½,surfacial|,desolate|,undesired|ݬ + N time|ʱ,year|,undesired|ݬ,desolate|,#unfortunate| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V end|ս +ɽ N land|½,desolate| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +Ұ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ԭ N land|½,desolate| + V abandon| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + V flurried| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +æ V flurried| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + V end|ս +ƲӲ ADJ aValue|ֵ,color|ɫ,yellow| +Ƴγ ADJ aValue|ֵ,color|ɫ,yellow| +Ƶ N time|ʱ,day|,happy| +ƶ N crop|ׯ +ƶ N part|,%vegetable|߲,embryo|,$eat| +ƶ N vegetable|߲ +Ʒ N InsectWorm|,*fly| +ƹ N part|,%vegetable|߲,embryo|,$eat| +ƹ N vegetable|߲ +ƺ N waters|ˮ,ProperName|ר,(China|й) +ƺ N waters|ˮ,linear|,ProperName|ר,(China|й) +ƺɫ ADJ aValue|ֵ,color|ɫ,brown| +ƺɫ ADJ aValue|ֵ,color|ɫ,yellow| +ƻ N FlowerGrass| +ƻ N FlowerGrass|,?food|ʳƷ +ƻ N part|,%vegetable|߲,embryo|,$eat| +ƻ N vegetable|߲ +ƻ N fish| +ƻޣ N FlowerGrass| +ƻ N time|ʱ,night| +ƽ N material|,?food|ʳƷ +ƽ N metal|,material| +ƽʱ N time|ʱ,good| +ƾ N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ,(China|й) +ľ N tree| + N thought|ͷ,empty| + N chemical|ѧ + N plant|ֲ +ëѾͷ N human|,young|,female|Ů +÷ N time|ʱ,season|,#RainSnow|ѩ +÷ N RainSnow|ѩ + N material|,?food|ʳƷ,#crop|ׯ + N bird| +ţ N livestock| + N tool|þ,@punish|,sport| +ۼ V become|Ϊ,isa=official|,politics| +Ȳ N disease| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɳ N stone|ʯ + ADJ aValue|ֵ,physique|,ripe| + N beast| + N beast| +ͭ N metal|,material| + N stone|ʯ +ԭ N land|½ + N livestock| + N material|,*lubricate| + N material|,?food|ʳƷ + N fish| + N stone|ʯ,?material| + N medicine|ҩ,(China|й) +ݺ N bird| + N bird| + N disease| + N fish| + N beast| + N character|,(China|й) +ǰ N medicine|ҩ + N InsectWorm|,undesired|ݬ,*fly| +ȳ N InsectWorm|,undesired|ݬ,*fly| + N part|,%implement| +Ƭ N part|,%MusicTool| + ADJ aValue|ֵ,rank|ȼ,official| +ʵ N human|,#occupation|ְλ,royal| +ʸ N character|,surname|,human|,ProperName|ר +ʹ N house|,royal| +ʹ N clothing|,#head|ͷ,royal| +ʺ N human|,royal|,female|Ů +ʼ ADJ aValue|ֵ,rank|ȼ,official| +ʼ N community|,royal| + N human|,royal| + N community|,royal| +̫ N human|,royal|,female|Ů +̫ N human|,royal|,male| +̻ V worried|ż +̻̲ V worried|ż +̻ V worried|ż +̿ V fear| +ֲ̿ V fear| + V fear| + ADJ aValue|ֵ,brightness|,bright| + V SelfMoveInManner|ʽ,manner=fast| + V illuminate| + V shake|ҡ + V wave|ڶ +ε V shake|ҡ +ε V wave|ڶ +ζ V wave|ڶ + V shake|ҡ + V wave|ڶ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־,*deceive|ƭ + N mark|־,commercial| + ADJ aValue|ֵ,duration|,TimeShort| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ V know|֪ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N text|,*deceive|ƭ +ѱ V deceive|ƭ +ѳ V deceive|ƭ +ѻ N text|,*deceive|ƭ +ƭ V deceive|ƭ + N text|,*deceive|ƭ + ADJ aValue|ֵ,color|ɫ,grey| + N material|,@build| + N stone|ʯ,waste| +Ұ ADJ aValue|ֵ,brightness|,dark| +Ұ ADJ aValue|ֵ,color|ɫ,grey| +Ұ ADJ aValue|ֵ,color|ɫ,white| +ҳ N stone|ʯ,waste| +ҹ N human|,female|Ů,able| +һɫ ADJ aValue|ֵ,color|ɫ,yellow| +ҽ N stone|ʯ,waste|,#burn| +ҿ N metal|,material| + ADJ aValue|ֵ,brightness|,dark| + V disheartened| + ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +ɫ ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,clearness|,blurred| +ɫ ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N beast| + V disheartened| +ɥ V disheartened| + V disperse|ɢ + V order| + V shake|ҡ + V wipe| +ӱ V write|д +Ӷ V shake|ҡ +Ӷ N human|,*shake|ҡ +ӷ V disappear|ʧ,industrial| +ӷ N attribute|,performance|,disappear|ʧ,&liquid|Һ,industrial| +Ӹ V shake|ҡ,patient=weapon| +Ӻ V excrete|й,patient=waste| +Ӻ V excrete|й,patient=waste| +Ӻ V write|д +ӻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӻ V lavish|˷ +ӽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӽ V lavish|˷ + V wipe| + V draw| + V spray| + V write|д + V write|д,manner=fluent| +ʦ V order|,patient=army| + V shake|ҡ,patient=hand| + V shake|ҡ + N attribute|,brightness|,&inanimate| + V illuminate| +Ի ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ի ADJ aValue|ֵ,brightness|,bright| +Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ӳ V illuminate| + N mark|־ +ī N PenInk|ī,*write|д + N mark|־ + ADJ aValue|ֵ,range|,extensive| +ָ V BeRecovered|ԭ +ָ V TakeBack|ȡ +ָ V resume|ָ +ָ N time|ʱ,@BeRecovered|ԭ,medical|ҽ +ָ֪ V BeRecovered|ԭ,StateIni=dizzy| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֻ ADJ aValue|ֵ,range|,extensive| +׳ N InsectWorm| +׳没 N disease| + V GoBack| + V circle| + V reply| + V turn|Ťת +ذ V visit| +ر V recompense| +ر V reply| +ر V revenge| +ر V evade|ر +ز V refute| +ز ADJ aValue|ֵ,ability|,unable|ӹ,GoBack| +س N part|,%AnimalHuman|,viscera| +س ADJ aValue|ֵ,impression|ӡ,good|,desired| +س ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +س V order|,#computer| +س N fact|,GoBack| +ش V BeRecovered|ԭ,medical|ҽ +ش V time|ʱ,season|,#start|ʼ +ش V reply| +ش N human|,*reply| +ص V MakeSound| +ص V GoBack|,Vachieve| +ص V reply|,instrument=letter|ż +ط V GoBack|,LocationFin=place|ط +ط V GoBack|,LocationFin=place|ط +ط V visit| +ظ V reply| +ظ V reply|,instrument=letter|ż +ع V LookBack| +ع ADJ aValue|ֵ,attachment|,past| +عչ N fact|,InstitutePlace|,@display|չʾ,#past| +ع V GoBack| +ع V include| +ع N disease| +ع N law|ɷ,#earth| +ع V cook|,manner=also|Ҳ +غ CLAS NounUnit|,&event|¼ +ػ V reply| +ػ ADJ aValue|ֵ,form|״,curved| +ػ V WarmUp|,industrial| +ػ V resist| +ػ V resist|,military| +ؼ V GoBack|,LocationFin=family| +ؽ N knowledge|֪ʶ,religion|ڽ +ؽͽ N human|,religion|ڽ +ؾ V recompense| +ؾ V revenge| +ؾ V salute|¾ +ؾ V reject|ؾ +ؿ N payment| + V GoBack| + N part|,%building|,nerve| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V flow|,manner=reverse|ߵ + N water|ˮ + V collect|,commercial| + V cook|,manner=also|Ҳ +¯ V cook|,manner=also|Ҳ +¯ V produce|,manner=also|Ҳ +· N facilities|ʩ,route|·,@GoBack| +· N image|ͼ,linear| +· N part|,%implement| + V BecomeLess| + N human|,ProperName|ר,(China|й) +ȥ V GoBack| + N sound| + V BeBad|˥ + V BeRecovered|ԭ,medical|ҽ + V BecomeMore| +ʦ V GoBack|,military| + V collect| + V obtain|õ +վ N InstitutePlace|,*collect|,#waste| +װ N facilities|ʩ,*collect| + V CausePartMove| + V resist| + V CausePartMove|,PatientPartof=head|ͷ + V LookBack| + V LookBack| +췦 V BeUnable|,content=help| +췦 V BeUnable|,content=help| + V BeUnable|,content=help| +֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ + V fill| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V repent|û +ͷ· N facilities|ʩ,route|·,@GoBack| +ζ V LookBack| +ζ ADJ aValue|ֵ,content|,substantial|ʵ,desired| + V GoBack|,LocationFin=place|ط + V circle| + V LookBack| + N sound| +ת V BeRecovered|ԭ + V reply|,instrument=letter|ż + N stationery|ľ,*hold| + V repair| + V SelfMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V circle| + V MoveItBack| + V LookBack| +¼ N readings|,#LookBack| + ADJ aValue|ֵ,behavior|ֹ,#LookBack| + N sound| + N text|,#reply| +Ӧ V reply| + V GiveAsGift| +ִ N text|,*reply| +ת V TurnRound| + N community|,ProperName|ר,(China|й) + V refute| + V reply| + V look| + V StateChange|̬ + V damage| + V destroy| + V produce|,manner=also|Ҳ + V slander|̰ +ٰ V slander|̰ +ٻ V damage| +ٻ V destroy| + V destroy| + ADJ aValue|ֵ,ability|,able|,destroy| + V destroy| + V remove| + V damage|,patient=appearance| + V damage| + V damage| +һ V suffer|,content=destroy| +Լ V disobey|Υ,content=MakeAppointment|Լ + V repent|û +ڲ V repent|û +ڸ V amend| +ڹ V repent|û,cause=wrong| +ڹ V document|,*express|ʾ,#repent|û +ں V repent|û + V repent|û +֮޼ V repent|û + V repent|û + N human|,*repent|û + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,ability|,able|,perception|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N emotion|,like|ϧ,kindhearted|,desired| + N phenomena|,desired| +ݹ V arrive| + V arrive| + N place|ط,capital|,ProperName|ר,(New Zealand|) + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,day| + N time|ʱ,day|,night| +ް ADJ aValue|ֵ,brightness|,dark| + V unfortunate| +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N artifact|˹,crime| + V entice|,means=GiveAsGift|,crime| +߽ N artifact|˹,crime| +¸ N artifact|˹,crime| +¸ V entice|,means=GiveAsGift|,crime| + V entice|,means=GiveAsGift|,crime| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N fact|,undesired|ݬ,disgraced| + V BeAble|ܹ + V ComeTogether| + ADJ aValue|ֵ,ability|,able|,desired| + N community| + N fact| + N fact|,@communicate| + V meet| + V pay| + N time|ʱ + N time|ʱ,important| + V understand| + AUX {modality|} + N mark|־ + V eat|,manner=together|ͬ +᳡ N place|ط,@communicate| +᳤ N human|,#occupation|ְλ,official|,#community| + N expenditure| + N InstitutePlace| + V ComeTogether| +Ự V speak|˵ + N mark|־ + N affairs|,calculate|,#wealth|Ǯ + N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ƹ N affairs|,calculate|,#wealth|Ǯ +ʦ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ + V meet| + N human|,*meet| + V ComeTogether| +͸ N tool|þ,*assemble|ۼ,#lights| +` N publications|鿯 +ῼ N fact|,#exam| + V meet|,partner=human| + V meet| + N mark|־ +ǩ V sign|д,manner=together|ͬ + V discuss| + V interrogate|,police| +ʦ V meet|,partner=army|,military| + N InstitutePlace| +̸ V discuss| + N room| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V meet| + N affairs| + V understand| + V perform| + V know|֪ + V understand| + N fact|,@communicate| + N institution|,politics|,#country| + N part|,%human| +Ա N human|,#community| +ս V endeavour| +ս V fight|,military| + V pay|,possession=money| + V pay|,possession=money| + V diagnose|,manner=together|ͬ,medical|ҽ +ַ N location|λ,%community| +ַ N location|λ,%fact|,@communicate| + V cook| + V ComeTogether| + V assemble|ۼ + V post|ʼ,commercial| +㱨 V tell| +㱨 N fact|,@tell| + V compile|༭ + N readings| + V post|ʼ,patient=money|,commercial| + V ComeTogether| +ϴ N location|λ,@ComeTogether| +ϵص N location|λ,@ComeTogether| +㼯 V ComeTogether| +㼯 V compile|༭ +㼯 V gather|ɼ + N quantity|,rate|,&money|,commercial| + V ComeTogether| + V post|ʼ,patient=money|,commercial| + N bill|Ʊ,#post|ʼ,#money|,commercial| + N human|,*post|ʼ,#money| + V ComeTogether|,#water|ˮ + N quantity|,rate|,&money|,commercial| +Ʊ N bill|Ʊ,#post|ʼ,#money|,commercial| + V perform| + V gather|ɼ + V evade|ر +伲ҽ V HideTruth|,content=wrong|,purpose=evade|ر,#amend| +伲ҽ ADJ HideTruth|,content=wrong|,purpose=evade|ر,#amend| +Ī V KeepSilence|˵ + V HideTruth| + V KeepSilence|˵ + V teach| +˲ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +˲ V endeavour|,content=teach| + V draw| +滭 V draw| +ɫ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ͼ V draw| + V draw| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,attachment| + N food|ʳƷ,generic|ͳ + N material|,?food|ʳƷ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| +谵 ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| + V dizzy| +赹 V dizzy| + ADJ aValue|ֵ,brightness|,dark| +軨 V disable|м,scope=look| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,yellow| +˯ V sleep|˯ + N human|,royal|,official|,undesired|ݬ + V dizzy| +˯ V sleep|˯ +ڵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +ڵ ADJ aValue|ֵ,brightness|,dark| +ڵ V dizzy| +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N celestial|,space|ռ +ѣ V dizzy| +ӹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fact|,GetMarried| + ADJ aValue|ֵ,time|ʱ,hind|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + V GetMarried|,love| + N attribute|,age|,#GetMarried|,&human| + N time|ʱ,day|,#GetMarried| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#GetMarried| +ɴ N clothing|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + N law|ɷ,#GetMarried| + N emotion| + N humanized|,undesired|ݬ + N mental| + N mental|,desired| +겻 V uneasy| +겻 V uneasy| +ɢ V fear| + N mental| + ADJ aValue|ֵ,clearness|,blurred| +뵰 N human|,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +جج ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼһ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,range|,all|ȫ +׺͹ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V MakeLiving|ı,means=slack|͵ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V associate| + V confuse| + V pretend|װ,content=RegardAs| + V pretend|װ,content=RegardAs| + V weave|,means=mix| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +˫ N fact|,compete|,sport| +켣 V appear|,manner=flighty| +콻 N tree| + V GoInto|,manner=secret| + V include|,manner=secret| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N phenomena|,disorder|,undesired|ݬ + N chemical|ѧ + N material|,@building| + V GoInto|,manner=secret| + V include|,manner=secret| +ħ N human|,evil|,undesired|ݬ +˫ N fact|,compete|,sport| +ͬ V confuse| +Ϊһ̸ V confuse| + V confuse| + V mix| +Ѫ ADJ aValue|ֵ,kind|,mixed| +Ѫ N human|,#kind|,mixed| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +ս V fight| +ս V fight|,military| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V abandon| + V exempt| + V split|ƿ +ȥ V endeavour|,manner=venture|ð + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + N part|,%place|ط,mouth| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,brightness|,bright| + V exempt| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADJ aValue|ֵ,width|,wide| +Ȼ V understand| + N disease|,#mouth| + N human|,*SufferFrom|,#mouth| + V CauseToLive|ʹ + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,physique|,alive| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + V alive| + N artifact|˹,generic|ͳ + N fact|,do|,engage| + N part|,%artifact|˹,#produce|,industrial| + ADV {emphasis|ǿ} + N tool|þ,*print|ӡˢ + N part|,%AnimalHuman| + N human|,interesting|Ȥ + V WhileAway|,means=jump| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V entice| + V exercise| + N fact|,generic|ͳ + N human| + N attribute|,performance|,&chemical|ѧ + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N artifact|˹,$produce|,generic|ͳ + N human|,religion|ڽ + V fit|ʺ + V CauseToLive|ʹ + ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs| + V check|,medical|ҽ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N shape| + N human|,#information|Ϣ,$catch|׽ס + N human|,*alive| + N attribute|,strength|,$function|,&AnimalHuman| + N attribute|,strength|,$function|,&physical| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +· N method|,*earn|׬,*alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V kill|ɱ + N part|,%implement| + V alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,frequency|Ƶ,^regular|,commercial| + N human|,*alive| + N part|,%machine| + N part|,%machine| + N part|,%machine| + ADJ aValue|ֵ,trueness|α,true|,desired| +ˮ N water|ˮ,*flow| + V appear| + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +̿ N chemical|ѧ +Ѫ V CauseToLive|ʹ,patient=nerve|,medical|ҽ + N human|,evil|,undesired|ݬ + V use|,manner=flexible| +Ծ V CauseToLive|ʹ +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +׽ V catch|׽ס + V alive| +ֵ N human|,*know|֪,#expression|,desired| +֯ V check|,medical|ҽ + CLAS NounUnit|,&entity|ʵ + N attribute|,relatedness|,&human| + N community| + N food|ʳƷ,generic|ͳ + N human|,friend| + N human|,friend| +﷿ N room|,@cook| + N human|,#occupation|ְλ,*cook| + N human| + N human|,#occupation|ְλ,*sell|,employee|Ա,commercial| + N human|,#occupation|ְλ,agricultural|ũ + N human|,friend| +ʳ N food|ʳƷ,generic|ͳ +ʳ N expenditure|,#edible|ʳ +ͬ PREP {partner} + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V angry| + N disease| + N emotion|,angry|,undesired|ݬ + N fire| + N weapon|,*firing| + N tool|þ,*lighting|ȼ,*illuminate| + ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V fight|,military| + N tool|þ,*lighting|ȼ + N tool|þ,cubic|,@put| + N place|ط,#fire|,#unfortunate|,#police|,undesired|ݬ + N LandVehicle| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +ͷ N part|,%LandVehicle|,head|ͷ,*pull| +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ N facilities|ʩ,space|ռ,#electricity| + V attack|,instrument=fire|,military| + N lights|,#fire| + N tool|þ,cubic|,@cook| + N fire|,strong|ǿ + ADJ aValue|ֵ,color|ɫ,red| + N attribute|,degree|̶,&cook|,&WarmUp| + N time|ʱ,important| + N beast| + N fire| + N part|,%machine| + V burn|,purpose=bury|,#human|,#die| + N bird| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N tool|þ,*hold| + N weapon|,*firing| +Ѳ N weapon|,ship|,military| +ר N human|,#knowledge|֪ʶ + N phenomena|,undesired|ݬ,#burn| + N tool|þ,*lighting|ȼ,*illuminate| + N tool|þ,*hold| + ADJ aValue|ֵ,temperature|¶,hot| + N attribute|,strength|,&army|,military| + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,factory|,*produce|,#electricity| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fight|,&army|,military| + N InsectWorm| + N fact|,congratulate|ף + N part|,%building| +¯ N tool|þ,*WarmUp| +ð V ExpressAnger|ʾŭ + N fire| + N material|,@lighting|ȼ +ū³³ N place|ط,city|,ProperName|ר,(US|) + N weapon|,*firing| + N tool|þ,*WarmUp| + N weapon|,generic|ͳ + N emotion|,angry|,undesired|ݬ +ǯ N tool|þ,*hold| +ǹ N weapon|,*firing| +ǽ N part|,%building|,*WarmUp|,skin|Ƥ + N attribute|,circumstances|,#fire|,#police|,undesired|ݬ + N fire| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,hot| +ɽ N land|½,*exhale| +ϼ V MakeBetter|Ż + V destroy|,instrument=fire| + N food|ʳƷ +ջ V worried|ż +üë ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N CloudMist|,colored| + N fire| + N attribute|,intensity|ǿ,&fire| + N phenomena|,scene|,beautiful| + ADJ aValue|ֵ,speed|ٶ,fast| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N attribute|,degree|̶,&cook|,&WarmUp| +ͷ N emotion|,angry|,undesired|ݬ +ͷ N fire| +ͷ N human|,#occupation|ְλ,military|,*cook| + N food|ʳƷ,flesh| +ȵ N food|ʳƷ + N weapon|,#firing|,military| + V guarantee|֤,scope=fire|,commercial| + N place|ط,military|,@fight| + N tool|þ,linear|,*transmit|,#electricity| + N celestial| + N fire| + N fire| +ҩ N weapon|,*firing| + N material|,liquid|Һ,$burn| + N phenomena|,undesired|ݬ,#fire|,#unfortunate| + V burn| +᳡ N InstitutePlace|,@burn|,#human|,#die| + N material|,*lighting|ȼ + N building|,#fire|,$burn| +ש N material|,@building| + V catch|׽ס + V catch|׽ס,military|,police| + V enjoy| + V gather|ɼ,agricultural|ũ + V obtain|õ + V obtain|õ,possession=text| + V enjoy| + V fulfil|ʵ + V obtain|õ + N human|,*obtain|õ + V enjoy|,content=reward| + N human|,$reward| + V enjoy|,content=rescue| + V earn|׬ +ȡ V obtain|õ +ʤ V win|ʤ + V enjoy|,content=release|ͷ,police| +Ϥ V know|֪ + V obtain|õ,possession=pros| +֪ V know|֪ +׼ V enjoy|,content=appreciate|޳ + COOR {or|} + ADV aValue|ֵ,degree|̶,ish| + COOR {or|} + ADV {comment|} + ADV {comment|} + COOR {or|} + V deceive|ƭ + V ignorant|֪ + N character|,surname|,human|,ProperName|ר + N disease| + N place|ط,capital|,ProperName|ר,(Solomon Islands|Ⱥ) + N human|,unable|ӹ,undesired|ݬ + N inanimate|,commercial|,generic|ͳ + N money| +һ V collect|,possession=money|,commercial| +һ֯ N part|,%institution|,#commercial|,#fund|ʽ,(institution|=UN|Ϲ) + N room|,%vehicle|ͨ,@put|,#inanimate| + N facilities|ʩ,space|ռ,@store| + N facilities|ʩ,space|ռ,@store| + N LandVehicle|,@transport|,#inanimate| + N ship|,*transport|,#inanimate| + N bill|Ʊ,#transport| + V pay|,possession=expenditure|,time=obtain|õ,commercial| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N tool|þ,@put|,#transport|,#vehicle|ͨ + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N wealth|Ǯ,commercial| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N ship|,*transport|,#inanimate| +Ʒ N inanimate|,commercial|,generic|ͳ +ɫ N human|,unable|ӹ,undesired|ݬ +ɫ N inanimate|,commercial|,generic|ͳ +ɫ N inanimate|,waste|,undesired|ݬ +ɫ N text|,undesired|ݬ + N inanimate|,commercial|,generic|ͳ +Դ N location|λ,@ExistAppear|,#inanimate| + V transport| + N quantity|,amount|,&transport| +ջ N facilities|ʩ,space|ռ,@put|,@store| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,commercial| + V damage| + N phenomena|,unfortunate|,undesired|ݬ + V unfortunate|,manner=many| +ӿڳ V unfortunate|,cause=speak|˵ +콵 V unfortunate|,LocationIni=sky| + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V damage|,patient=country| + V damage| + N phenomena|,unfortunate|,undesired|ݬ +ǽ V happen|,experiencer=unfortunate|,location=internal| + N phenomena|,unfortunate|,undesired|ݬ + N human|,crime|,undesired|ݬ +̥ N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V attack|,military| + V beat| + V bump|ײ + V defeat|սʤ + V kill|ɱ + V destroy| + V destroy|,military| + V OutOfOrder| + V stab| + V beat| + V beat| + V destroy| + N fact|,sport| + V defeat|սʤ + V destroy| + V destroy| + V destroy|,military| + V defeat|սʤ + V destroy| + V beat|,patient=SportTool|˶ + V damage| +ˮ V beat|,patient=liquid|Һ +ˮ V swim| + V defeat|սʤ + V beat| +Ҫ V beat|,PartOfTouch=heart| +Ҫ V express|ʾ,content=heart| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,base| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + ADJ aValue|ֵ,rank|ȼ,elementary| + N part|,%entity|ʵ,base| + N knowledge|֪ʶ,elementary| + N fact|,build| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + N part|,%organization|֯ +㵥λ N part|,%organization|֯ + ADJ aValue|ֵ,importance|,important| + N part|,%thing|,base| +ʵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N part|,%thing|,heart| + N place|ط,military| + N image|ͼ,dot|,#measure| + N part|,%thing|,base| + N part|,%thing|,heart| + N attribute|,SoundQuality|,important|,&music| + N attribute|,standpoint|,important|,&information|Ϣ +˵ N human|,*speak|˵ + N humanized| + N knowledge|֪ʶ,religion|ڽ +̵ N place|ط,religion|ڽ +ͽ N human|,religion|ڽ +ͽ N human|,religion|ڽ + N place|ط,capital|,ProperName|ר,(Ecuador|϶) + N material|,*feed|ι,#crop|ׯ + N place|ط,capital|,ProperName|ר,(Ukraine|ڿ) + ADJ aValue|ֵ,importance|,important| + N human|,desired|,important|,able| + N place|ط,capital|,ProperName|ר,(Rwanda|¬) + N attribute|,price|۸,&artifact|˹,commercial| + N fact|,build| + N fund|ʽ + N community|,#fund|ʽ +¡ N language|,#country|,ProperName|ר + N money|,(Papua New Guinea|Ͳ¼) + N money|,(Laos|) +ɫ N attribute|,color|ɫ,&physical| +ʯ N part|,%thing|,base| + N attribute|,standard|׼,&entity|ʵ + N symbol|,#quantity| + N mark|־,linear|,#measure| +Ƕ N language|,#country|,ProperName|ר + N stone|ʯ +ҵ N part|,%affairs|,base| + N part|,%animate|,#PassOn| + N method|,*cure|ҽ + PREP {cause} +ڹ ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#regulation|,#software| + ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#text|,#software| +׼ N attribute|,standard|׼,&entity|ʵ + N aircraft| + N machine| + N part|,%implement| + N time|ʱ + N time|ʱ,important| +ʧ ADJ aValue|ֵ,value|ֵ,precious| + N room|,%vehicle|ͨ + N facilities|ʩ,#aircraft|,@stay|ͣ + N human|,#occupation|ְλ,official|,#aircraft| + N LandVehicle|,#(train|) + N machine|,*produce| + ADJ aValue|ֵ,performance|,#machine|,#electricity| + V SelfMove|,military| + ADJ aValue|ֵ,ability|,able|,AlterLocation|ռλ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,performance| + N attribute|,performance|,SelfMove|,&entity|ʵ + N ship| + N room|,#machine| + N room|,%ship|,#machine| + V engage|,agricultural|ũ,#machine| + N human|,#occupation|ְλ,industrial| + N institution| + ADJ aValue|ֵ,kind| + N institution|,generic|ͳ + N part|,%implement| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N reason| + N time|ʱ + N thinking|˼,#venture|ð,treacherous|,politics| + N human|,*venture|ð,treacherous|,politics| + N part|,%implement| + N facilities|ʩ,@take|ȡ,#liquid|Һ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N implement| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,content|,secret| + N fact|,secret| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,effect|Ч,&organization|֯,&human| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| + N machine| + N machine| +ǹ N weapon|,*firing| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ⱥ N army|,#aircraft| + N part|,%aircraft|,body| + N animate|,generic|ͳ + N part|,%aircraft|,body| +ͷ N part|,%aircraft|,head|ͷ + N affairs|,#maintain|,#repair| +е ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +е N machine| +е N reason| +е ADJ aValue|ֵ,performance| +е V ize|̬ +е N army|,*TakeVehicle|,#LandVehicle| +е N army|,*TakeVehicle|,#LandVehicle| +е N human| +еʦ N human|,#occupation|ְλ,industrial| + N part|,%tool|þ,#time|ʱ + N attribute|,kind|,&aircraft| + N attribute|,kind|,&machine| +Ҫ ADJ aValue|ֵ,content|,secret| + N part|,%aircraft|,wing|,*fly| + N material|,liquid|Һ,*lubricate| + N phenomena|,desired| + N time|ʱ +Ե N attribute|,circumstances|,lucky|,&human| + ADJ aValue|ֵ,source|Դ,#machine|,$produce| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human| + N machine| + N machine|,*weave|,industrial| + N part|,%weapon|,*firing| + N community|,#aircraft| +Ա N human|,#occupation|ְλ,#aircraft| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + ADJ aValue|ֵ,kind|,queer| + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V treat|Դ,manner=biased|ƫ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,queer| + ADJ aValue|ֵ,form|״,undesired|ݬ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V check| + V delay| + V investigate| + V check|,commercial| + V check| + V check| + V prove|֤ + V detain|ס + V salute|¾ + V gather|ɼ + N fact|,unfixed|δ,#police| + V SetAside| + V SetAside| + V do|,manner=kindhearted| + V gather|ɼ,possession=material|,agricultural|ũ + V calculate| + N quantity|,amount|,&result|,#compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V SetAside| + V gather|ɼ +ͳɼ V ill|̬,cause=tired|ƣ + V gather|ɼ +ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ľ N tool|þ,*recreation|,#young| + ADJ aValue|ֵ,duration|,TimeLong| +ٳɶ V obtain|õ,possession=many|,means=gather|ɼ +ˮ N liquid|Һ,SetAside| + V SetAside| + V gather|ɼ +ѩ N RainSnow|ѩ +ѹ V surplus|ʣ,commercial| + N CloudMist| +Թ N emotion|,hate|,undesired|ݬ + N CloudMist| + V gather|ɼ +ѷ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +۴ V gather|ɼ + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,skin|Ƥ,flesh| + N part|,%AnimalHuman|,flesh| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,body| + N part|,%human|,body| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,flesh| + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| +ʳ V worried|ż + V HungryThirsty| + V suffer|,content=hardship| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + V HungryThirsty| + N human|,poor|,undesired|ݬ + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + N mark|־ + N part|,%building|,waste|,body| + N trace| + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V excited| + V excite|ж + V ill|̬,medical|ҽ + V irritate|ŭ + V jet| + V excited| + V jet| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + V excite|ж + V excited| + V angry| + N lights| + V MakeBetter|Ż + V CauseToLive|ʹ + N method| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,behavior|ֹ,strong|ǿ + V mobilize| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N water|ˮ +ŭ V irritate|ŭ + V excite|ж + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N emotion|,excited| + N medicine|ҩ +Խ ADJ aValue|ֵ,SoundVolume|,loud| + V BecomeMore| +ս V fight|,military| + V clean|ʹ + V improve| + V LaughAt|Ц + V satirize| +Ц V LaughAt|Ц + N bird| + N part|,%bird|,$eat|,embryo| + N food|ʳƷ +ɵ V fail|ʧ + N part|,%bird|,head|ͷ +ڻ N FlowerGrass| +ʯ N stone|ʯ,mine| + V damage|,#mating|,crime| + N human|,lascivious| +㹷 ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +㹷 ADJ inanimate|,secondary| +ë N part|,%bird|,hair|ë +ë N tool|þ,*wipe| +ëƤ ADJ aValue|ֵ,importance|,secondary| + N method|,undesired|ݬ,*deceive|ƭ +ڽ N medicine|ҩ,(China|й) +Ƥ N disease| +Ȯ ADJ aValue|ֵ,SocialMode|,good|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ȯ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N food|ʳƷ,#bird| + N facilities|ʩ,space|ռ,@foster|,#bird| + N food|ʳƷ,liquid|Һ +β N drinks|Ʒ,$addict|Ⱥ +βƻ N fact|,drink|,recreation| + N facilities|ʩ,space|ռ,@foster|,#bird| + N shape| +Ѫ N medicine|ҩ + N disease|,#foot| + N character|,surname|,human|,ProperName|ר + N human|,royal|,female|Ů + N result|,desired|,#succeed|ɹ + N tool|þ,linear|,*fasten|˩ + V catch|׽ס,police| + V catch|׽ס,police| + V catch|׽ס,#crime|,police| + V catch|׽ס,patient=addictive|Ⱥ,police| + V catch|׽ס,police| +˽ V catch|׽ס,#crime|,police| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N human| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Djibouti|) + N place|ط,capital|,ProperName|ר,(Djibouti|) + N place|ط,country|,ProperName|ר,(Africa|) +ᷨ N money|,(Djibouti|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kirghizstan|˹˹̹) +˹˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹ N language|,#country|,ProperName|ר +Ƭ N artifact|˹,precious| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¡ N place|ط,capital|,ProperName|ר,(Malaysia|) + N LandVehicle| +ճ N LandVehicle| + N human| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#congratulate|ף + V lucky| + N time|ʱ,day|,#lucky| + N MusicTool| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V lucky| + N artifact|˹,#lucky| +Ǹ V lucky| + N attribute|,circumstances|,&event|¼ + N information|Ϣ,good| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,degree|̶,extreme|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β + N fittings|,#electricity| + ADV aValue|ֵ,intensity|ǿ,strong|ǿ,extreme| + N part|,%earth|,edge| + N attribute|,boundary|,extreme|,&entity|ʵ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,contrariness|,&entity|ʵ + N human| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V ize|̬ + N bird| + ADV aValue|ֵ,behavior|ֹ,strong|ǿ +Ŀ V look|,manner=far|Զ +ĿԶ V look|,manner=far|Զ +Ʒ N attribute|,rank|ȼ,HighRank|ߵ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +΢С ADJ aValue|ֵ,size|ߴ,small|С +Ϊ ADV aValue|ֵ,degree|̶,extreme| +Ϊ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,boundary|,extreme|,&entity|ʵ + N attribute|,contrariness|,&entity|ʵ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,correctness|,politics| +ҷ N human| + ADJ aValue|ֵ,correctness|,politics| + N part|,%AnimalHuman|,bone| + N tree| +Ƥ N AnimalHuman| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V compile|༭ + V gather|ɼ +¼ V compile|༭ + N account| + N attribute|,attachment|,&human| + N character|,surname|,human|,ProperName|ר + N place|ط,@ComeToWorld| + N publications|鿯 + N attribute|,source|Դ,#ComeToWorld|,&human| + N InstitutePlace|,space|ռ,commercial| + V assemble|ۼ + V gather|ɼ + N publications|鿯 + V merge|ϲ +ɵ· N part|,linear|,#electricity| + V gather|ɼ +缫 N part|,#electricity| + V ComeTogether| + V assemble|ۼ + N fact|,@communicate| + V ComeTogether| + V assemble|ۼ + N thing|,mass| + V assemble|ۼ + V gather|ɼ +Ȩ V control| +ɢ N place|ط,#inanimate| + N InstitutePlace|,space|ռ,commercial| +˼ V gather|ɼ,possession=wisdom|ǻ + ADJ aValue|ֵ,attachment|,public| +廯 V ize|̬,PatientAttribute=public| + N system|ƶ,#rights|Ȩ,#own|,public| + N community| +Ź˾ N InstitutePlace|,commercial| +ž N army| +ѵ V teach| +Ҹ V obtain|õ,possession=many|,means=gather|ɼ + V gather|ɼ,possession=coupon|Ʊ֤ +ʼ N human|,*gather|ɼ +Լ ADJ aValue|ֵ,quality|,refined|,agricultural|ũ +Լ V ize|̬,PatientAttribute=refined|,agricultural|ũ +ԼӪ V engage|,manner=refined|,agricultural|ũ + N place|ط,city| + V assemble|ۼ + V control| + V gather|ɼ +Ӫ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +װ N tool|þ,@put|,#transport|,#vehicle|ͨ + V gather|ɼ,possession=fund|ʽ,commercial| + N publications|鿯 + V arrive| + STRU {Vachieve|} + COOR {and|} + V succeed|ɹ,scope=exam| + ADJ aValue|ֵ,standard|׼,average|,desired| + CONJ {and|} +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ﶯ V part|,%language| + ADJ aValue|ֵ,earliness|,early| + PREP {LocationFin} + PREP {TimeFin} + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + N affairs|,urgent| + V angry| + V willing|Ը + V worried|ż + N disease| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,fast| + N letter|ż,urgent| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V cure|ҽ +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +Ա N human|,*cure|ҽ,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N waters|ˮ,linear| + V refuse| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ֱ׷ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,hasty| +ǻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ɲ V cease|ͣ +ɲ V fix|ס + N affairs|,urgent| + ADJ aValue|ֵ,speed|ٶ,fast| + V TurnRound| + N affairs|,urgent| + ADJ aValue|ֵ,circumstances|,urgent|,medical|ҽ +Բ N disease| +Էʪ N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N human|,rash|ç +ӵ N human|,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N phenomena|,need|,urgent| + N phenomena|,need|,urgent| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V expect|,content=succeed|ɹ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ĸĸ N human|,rash|ç,undesired|ݬ + N fact|,cure|ҽ,medical|ҽ,urgent| +֢ N disease| + V obtain|õ,possession=method| + ADJ aValue|ֵ,speed|ٶ,fast| +ת V TurnRound|,manner=sudden| +ת V change|,manner=sudden| +תֱ V change|,manner=sudden| +תֱ ADJ change|,manner=sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N disease| + V hate| + N disease| + V GoForward|ǰ + V hate|,target=evil| + N wind|,strong|ǿ + V announce| + N disease| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| +ʻ V VehicleGo|ʻ,manner=fast| +ɫ V ExpressAnger|ʾŭ +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V inhale| +ȡ V inhale| +ȡ V obtain|õ + V BeNear| + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + CONJ {concession|ò} + ADV aValue|ֵ,duration|,TimeShort| + V arrive|,future| + PP aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + CONJ {concession|ò} + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,now|,day| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʹ CONJ {concession|ò} +˵ CONJ {supplement|ݽ} +λ V bear|е,patient=official|,royal| +ϯ ADJ aValue|ֵ,duration|,TimeShort| +ϯ V engage| + ADJ aValue|ֵ,property|,^$prepare|׼ + V jealous|ʼ + V jealous|ʼ + N human|,*jealous|ʼ + V hate| +Ͷ V jealous|ʼ,target=able| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,rank|ȼ,&entity|ʵ + N community|,#unripe| + N part|,%building|,nerve| + N attribute|,rank|ȼ,&entity|ʵ + ADJ quantity|,rate|,&rank|ȼ + N expenditure| + V ComeTogether| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V press|ѹ + V push| + V SqueezeOut| +Ҫ ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + V collect|,possession=money|,commercial| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| +üŪ V CausePartMove|,PatientPartof=eye|,purpose=show| + V gather|ɼ,possession=drinks|Ʒ,agricultural|ũ +ѹ V SqueezeOut| + V CausePartMove|,PatientPartof=eye|,purpose=show| +ռ V occupy|ռ + ADJ aValue|ֵ,possibility|,almost| + N furniture|Ҿ,space|ռ,@put| + N place|ط,country|,ProperName|ר,(Guinea|) + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,question| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,some|Щ + ADJ qValue|ֵ,amount|,many|,question| +ͼ N image|ͼ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADV aValue|ֵ,possibility|,almost| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,frequency|Ƶ,often| + N quantity|,rate|,#possibility|,&event|¼ + N place|ط,country|,ProperName|ר,(Africa|) +DZ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guinea-Bissau|DZ) +DZ N place|ط,country|,ProperName|ר,(Africa|) +Ƿ N money|,(Guinea|) + N human|,(Guinea|) +ʱ ADV time|ʱ,question| +ʱ CONJ {time|ʱ} +ά N bird| + ADJ qValue|ֵ,amount|,question| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N disease| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N AnimalHuman| + N part|,%building|,bone| + N part|,%animal|,tail|β + ADJ aValue|ֵ,attachment|,self| + N army|,friend| + N part|,%entity|ʵ,self| + N duty| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N attribute|,ability|,&human| + N method| + N method|,#industrial| + V MakeBetter|Ż +һ ADJ aValue|ֵ,ability|,able|,desired| + N human|,#occupation|ְλ,industrial| + N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + N attribute|,ability|,&human| + N method| +ʦ N human|,#occupation|ְλ,industrial| + N knowledge|֪ʶ + V MakeBetter|Ż +ල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + ADJ knowledge|֪ʶ + ADJ aValue|ֵ,behavior|ֹ + N cause|ԭ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ա N human|,#occupation|ְλ,industrial| +ת V give| +У N InstitutePlace|,@teach|,@study|ѧ,education| + N method| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ + N time|ʱ,ending|ĩ,#season| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N wind| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N publications|鿯 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V salute|¾ + V use| + V salute|¾ + N fact|,*salute|¾,#die| + N tool|þ,*salute|¾,#die| +Ʒ N tool|þ,*salute|¾,#die| + V salute|¾ + N medicine|ҩ + N medicine|ҩ,#experiment|ʵ + N quantity|,amount|,&consume|ȡ,&use|,#medicine|ҩ +С N quantity|,amount|,&use|,#medicine|ҩ + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V cross|Խ,LocationThru=waters|ˮ + V help| +ü ADJ qValue|ֵ,amount|,many| +üһ ADJ qValue|ֵ,amount|,many| + N place|ط,city|,ProperName|ר,(China|й) +ƶ V help|,patient=poor| + V benefit|,patient=human| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V depend| + V entrust|ί + V post|ʼ +Ĵ V SetAside| +Ĵ N part|,%computer| +ķ V SetAside| +ľ V reside|ס + V sell|,commercial| + V alive| + N bacteria|΢ + N human|,#wealth|Ǯ,undesired|ݬ + V reside|ס,education| + V SetAside| + V entrust|ί + V express|ʾ +ϣ V entrust|ί + V entrust|ί,ResultEvent=ProvideFor| + V entrust|ί + V express|ʾ +Ԣ V reside|ס + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| +ž ADJ aValue|ֵ,occasion|,quiet|,desired| +ž N attribute|,occasion|,quiet|,desired|,&space|ռ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,occasion|,quiet|,desired| + V calculate| + N character|,surname|,human|,ProperName|ר + V measure| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V plan|ƻ + N thought|ͷ + N tool|þ,*measure| +Ƴ̳ N LandVehicle|,$lend|,commercial| +Ƴ V calculate|,content=payment| +ƻ V plan|ƻ +ƻ V plan|ƻ,content=GiveBirth| +ƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ƻƶ N human|,*plan|ƻ +Ƽ V calculate|,content=price|۸,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=insufficiently|Ƿ,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=extreme|,commercial| +Ƽ V count|,content=quantity| +ƽ V debate| +ƽ V think|˼ + V calculate| + V measure| +ı N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ί N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ʱ V count|,content=time|ʱ +ʱ N tool|þ,*count|,#time|ʱ + V count| + N tool|þ,*count|,#quantity| + V calculate| + N tool|þ,*calculate| + N computer| + V help|,instrument=computer| + V ize|̬,#computer| + N tool|þ,calculate| + N InstitutePlace|,#computer|,#software| +ί N institution|,ProperName|ר,*plan|ƻ + V discuss| + N mark|־ + V record|¼ + V remember|ǵ + V sign|д + N text| +Dz V BeUnable|,content=remember|ǵ +dz V cherish|Ļ,content=hate| +ǵ V remember|ǵ +Ƿ V record|¼,content=result| +ǹ V record|¼,content=result| +ǹ V ThinkOf|˼ +ǹ V record|¼,content=result| +Ǻ N symbol| +Ǻ V cherish|Ļ,content=hate| +¼ V record|¼ +¼ N result| +¼ N text| +¼ N human|,desired|,*win|ʤ,#compete|,#WhileAway| + V write|д,content=name| + V remember|ǵ,Vachieve| +ȡ V remember|ǵ +ʵ ADJ aValue|ֵ,trueness|α,true|,&information|Ϣ + V record|¼,content=event|¼ +¶ V BeAble|ܹ,content=remember|ǵ + V record|¼ + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V explain|˵ + N text| + V LookBack| + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V remember|ǵ + V record|¼ + V record|¼,content=account|,commercial| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ס V remember|ǵ + ADV aValue|ֵ,time|ʱ + CONJ {cause|ԭ} +... COOR {supplement|ݽ} +ȳʵ V happen|,content=fact| +ȵ N wealth|Ǯ +ȶ ADJ aValue|ֵ,behavior|ֹ,lasting| +Ȼ CONJ {cause|ԭ} + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| +Լ N symbol|,#quantity|,#DoSum| + V GiveUp| + V evade|ر + V fear| + V jealous|ʼ +ɵ V fear| +ɶ V jealous|ʼ +ɺ V hate| +ɻ V evade|ر +ɿ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N time|ʱ,day|,@salute|¾,#die| +ʳ V evade|ر,content=consume|ȡ + N location|λ,surrounding|Χ,space|ռ + N time|ʱ + N attribute|,circumstances|,&human|,&event|¼ + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ů N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ժ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ + V KeepOn|ʹ +̳ V KeepOn|ʹ +̳ V receive| +̳ N human|,*receive| +̵ N part|,%machine| +̶ ADV aValue|ֵ,time|ʱ,hind| +̷Լ N disease| +̸ N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + V KeepOn|ʹ,patient=undertake| + V KeepOn|ʹ,patient=affairs| + V GoOn| + V KeepOn|ʹ +֮ ADV aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N system|ƶ +ͼ V supervise|,content=regulation| +ͼί N institution|,ProperName|ר,*check|,#regulation| +¼ N human|,*record|¼ +¼ V record|¼ +¼ N result|,#exercise|,sport| +¼ N text| +¼Ƭ N shows| + N regulation| + N account| + V commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ + N thing|,*commemorate|ʾ˼ + N time|ʱ,day|,@commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N account|,*commemorate|ʾ˼ + N stationery|ľ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N fact|,*commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ +Ʒ N tool|þ,*commemorate|ʾ˼ + N time|ʱ,day|,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ +Ʊ N coupon|Ʊ֤,#letter|ż,*commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ +ʵ N information|Ϣ,true| + V account|,@record|¼ + V record|¼,content=event|¼ +ί N institution|,ProperName|ר,*check|,#regulation| + N text| +Ҫ N text| +Ԫ N time|ʱ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V praise|佱 +α N human|,$WellTreat|ƴ +ν V reward| +ξ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V mobilize| + V agree|ͬ + V praise|佱 + N tool|þ,police|,*punish|,#crime| + N tool|þ,police|,#crime|,*detain|ס + ADJ aValue|ֵ,form|״,special| + V fasten|˩ + V hold| + V insert| + V mix| + V pick|ʰ + V press|ѹ + N tool|þ,*hold| +а N tool|þ,*fix|ס,medical|ҽ +в N part|,%entity|ʵ,space|ռ +д V transport|,manner=secret|,crime|,commercial| +е N facilities|ʩ,route|· +еӭ V welcome|ӭ +з N location|λ +з N part|,%inanimate|,mouth| +й V attack|,military| +й N character|,surname|,human|,ProperName|ר +л V attack|,military| +о N tool|þ,*hold| +п N clothing|,#body| +߼а ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,property|,$fill| +ı N food|ʳƷ + V relate|й +֫ N part|,%AnimalHuman|,arm| + N tool|þ,*hold| + N tool|þ,@put|,#wealth|Ǯ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѻ N fact|,desired| +Ѽ N result|,good|,desired| +ѽ N time|ʱ,festival|,@congratulate|ף +Ѿ N phenomena|,desired|,#lucky| +Ѿ N expression|,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| +ľ˹ N place|ط,city|,ProperName|ר,(China|й) +ż N human|,family|,mass|,#GetMarried| +Ʒ N physical|,good|,desired| + N time|ʱ,day|,#GetMarried| + N human|,desired|,female|Ů,beautiful| + N information|Ϣ,desired|,*ShowJoy|ʾϲ + N artifact|˹,good|,desired| + N text|,good|,desired| + N edible|ʳ,good|,desired| + CLAS NounUnit|,&InstitutePlace| + ADJ aValue|ֵ,kind| + N character|,surname|,human|,ProperName|ר + N community|,#knowledge|֪ʶ + N community|,family| + N human|,#occupation|ְλ,able| + N human|,able|,#knowledge|֪ʶ,#affairs| +Ҳ N wealth|Ǯ,#family| +Ҳ N InsectWorm|,agricultural|ũ +Ҳ N wealth|Ǯ,#family| +ҳ ADJ aValue|ֵ,kind|,ordinary| +ҳ N fact|,#family| +ҳ㷹 N fact|,ordinary| +ҳ㷹 N food|ʳƷ,thrifty| +ҳ N human|,official|,family| +ҳʽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ҳ ADJ attribute|,behavior|ֹ,fierce|,&human| +Ҵ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ N wealth|Ǯ,#family| +ҵ N wealth|Ǯ,#family| +ҵ N tool|þ,generic|ͳ,#electricity|,#family| +ҷ V visit| +ҷ N attribute|,SocialMode|,&family| +Ҹ N bird| +Ҹ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +һ N human| +һ N tool|þ,generic|ͳ +һ N weapon|,generic|ͳ +Ҽ N fact|,#family| +Ҽ N community|,family|,mass| +Ҽһ N community|,family|,mass| +ҽ N affairs|,education|,#family| +Ҿ N attribute|,circumstances|,family|,&human| +Ҿ N community|,family| +Ҿ N furniture|Ҿ +Ҿ N human|,#furniture|Ҿ,commercial| +Ҿ N human|,family|,female|Ů +Ҿ N human|,family|,mass| +ҿ N human|,family|,mass| +ҿ N quantity|,amount|,&human|,#family| + N location|λ,#family| + N community|,#family| + N community|,family| + ADJ aValue|ֵ,property|,#family|,$produce| + V unfortunate| + N account|,@record|¼,#family| + N process|,#family| + N bird| + N human|,mass|,family| +ʲ N tool|þ,generic|ͳ + N affairs|,#family| + N letter|ż,#family| + N human|,family| +˽ N wealth|Ǯ,#family| +ͥ N community|,family| +ͥİ N attribute|,circumstances|,peaceful|,&family| +ͥϷ N fact|,#family|,recreation| +ͥ N human|,female|Ů,#family| +ͥ N human|,female|Ů,family| +ͥҵ N affairs|,#study|ѧ,education| +ͽı ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N livestock| + N affairs|,#family| + N affairs|,#family| + N affairs|,#family| + N place|ط,#ComeToWorld| + N place|ط,@ComeToWorld| +С N human|,family| + N letter|ż,#family| + N livestock| + N fact|,eat|,entertain|д,#family| + V foster|,agricultural|ũ +ҵ N wealth|Ǯ,#family| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N expenditure|,#family| +õ N tool|þ,generic|ͳ,#electricity|,#family| + ADJ aValue|ֵ,reputation|,glorious|,desired| +԰ N place|ط,#family| + N affairs|,#family| + N community|,#family| + V DoSum|,means=add| + V MakeBetter|Ż + V add| + N place|ط,country|,ProperName|ר,(Canada|ô) + N place|ط,country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Ghana|) + V put| +Ӱ V endeavour| +Ӱ N payment| +Ӱӵ V endeavour| +ӱ V add| +ӱ ADJ qValue|ֵ,amount|,double| +Ӳ N edible|ʳ +ӳ V enlarge|,PatientAttribute=length| +ӳ V inlay|Ƕ +Ӵ V MakeBetter|Ż +Ӵ V enlarge| +ӵ N place|ط,capital|,ProperName|ר,(Nepal|Ჴ) +Ӷ N place|ط,city|,ProperName|ר,(India|ӡ) +ӷ N method|,*DoSum| +Ӹ V build|,quantity=many| +Ӹ V print|ӡˢ,quantity=many| +Ӹ V enlarge|,PatientAttribute=height|߶ +ӹ V produce| +ӹ V produce|,industrial| +ӹ N InstitutePlace|,@produce|,industrial| +ӹ V strengthen|ӹ +Ӻ V damage| +Ӻ N symbol|,*DoSum| +Ӻ V enlarge|,PatientAttribute=height|߶ +Ӽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ӽ N fish| +ӽ V MakeBetter|Ż +ӽ V SpeedUp|ӿ +Ӿ V damage| +ӿ V SpeedUp|ӿ +ӿ V enlarge| +˹ N place|ط,capital|,ProperName|ר,(Venezuela|ί) +ձȺ N waters|ˮ,surfacial|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N language|,#country|,ProperName|ר + CLAS unit|λ,&volume|ݻ + V add| + V add|,commercial| + V add|,patient=price|۸,commercial| + V ally| + V RegardAs|,ResultIsa=secret| +ô ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Canada|ô) +ô N place|ط,country|,ProperName|ר,(North America|) +ô N human|,(Canada|ô) +ôԪ N money|,(Canada|ô) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ghana|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Ghana|) +Ũ V thicken|Ũ +ũ N weapon|,*firing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Gabon|) +ǿ V MakeBetter|Ż + V WarmUp| +¯ N tool|þ,*WarmUp| + N tool|þ,*WarmUp| + V appreciate|޳ + V include| + V put| + N human|,*include| + V add| + V give| + CONJ {supplement|ݽ} + V MakeBetter|Ż + V deepen| +ʪ V moisten|ʪ + N symbol|,#quantity| + V SpeedUp|ӿ +ٶ N attribute|,speed|ٶ,&inanimate| + N tool|þ,*SpeedUp|ӿ +̬¡ N language|,#country|,ProperName|ר + V WarmUp| +н V add|,patient=payment| +ѹ V press|ѹ,industrial| + V CauseToDo|ʹ + CONJ {supplement|ݽ} +޸ V CauseToDo|ʹ,ResultEvent=amend| + V endeavour| + V feed|ι,patient=material| + V lubricate| +ͻ N aircraft|,*feed|ι +վ N InstitutePlace|,*feed|ι,commercial| +֮ CONJ {supplement|ݽ} + V MakeHeavier| + V damage| + V decline|˥ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N part|,%plant|ֲ,embryo| +Թ N part|,%plant|ֲ,embryo| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%animal|,mouth| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N clothing|,*protect|,military| + N part|,%AnimalHuman|,skin|Ƥ + NUM qValue|ֵ,sequence|,ordinal| +װ N part|,%ship| +ױ N chemical|ѧ +ױ N human|,military| +ױ N weapon|,generic|ͳ +׳ N InsectWorm| +״ N chemical|ѧ +׵ N attribute|,rank|ȼ,superior|,&entity|ʵ +׷ N human|,organization|֯,#associate| +׷ N chemical|ѧ +׸ N disease| +׹ N disease| +׹ N character| +׻ N chemical|ѧ +׼ N attribute|,rank|ȼ,superior|,&entity|ʵ +׿ N disease| +׿ N part|,%AnimalHuman|,skin|Ƥ +ȩ N chemical|ѧ +ȩˮ N chemical|ѧ + N chemical|ѧ + N gas| +ս N fact|,fight|,ProperName|ר +͸ N disease| + N fish| +״ N part|,%AnimalHuman|,nerve| +״ٻܼ N disease| +״ٻܿ N disease| +״ N chemical|ѧ +״ N disease| + N medicine|ҩ,*apply|ͿĨ + N time|ʱ +غͪ N medicine|ҩ + N clothing|,*protect|,military| + N metal| +ط N material|,*feed|ι,#crop|ׯ + N chemical|ѧ + ADJ aValue|ֵ,source|Դ,artificial| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N time|ʱ,@rest|Ϣ,@WhileAway| + V use| +ٰ V pretend|װ,content=RegardAs| +ٱ N money|,fake|α +ٳ V pretend|װ,content=RegardAs| +ٵѧ N human|,fake|α,undesired|ݬ +ٶ V RegardAs|,ResultIsa=true| +ٷ N tool|þ,*MakeUp|ױ,#hair|ë +ٷ N symbol|,#quantity|,#DoSum| +ٸ N part|,%plant|ֲ,base| +ٹ˽ V seek|ıȡ,means=use|,#rights|Ȩ,undesired|ݬ +ٹ N part|,%plant|ֲ,embryo| +ٻ N text|,*deceive|ƭ +ٻ N physical|,fake|α +ٽ V use| +ٿ N human|,*pretend|װ,#weep| +ð V pretend|װ,content=RegardAs| +ð N human|,*pretend|װ + V sleep|˯ + N tool|þ,*cover|ڸ + N attribute|,name|,fake|α,&human| + N symbol|,(Japan|ձ) + N time|ʱ,@rest|Ϣ,@WhileAway| +ʼ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + CONJ {condition|} + CONJ {condition|} +ɤ N sound|,#music| +ɽ N facilities|ʩ,space|ռ + V RegardAs|,ResultIsa=true| + N information|Ϣ,$guess|² +ʹ CONJ {condition|} + V release|ͷ,police| +˵ N information|Ϣ,$guess|² + V pretend|װ,content=die| + N phenomena|,fake|α + ADJ aValue|ֵ,trueness|α,^true| + N human|,enemy|,military| + N attribute|,form|״,&stone|ʯ + N phenomena|,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +ҩ N artifact|˹,#medicine|ҩ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V forge|α +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +װ V pretend|װ +װʥ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N attribute|,price|۸,&artifact|˹,commercial| + N attribute|,value|ֵ,&thing| +۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸ N attribute|,price|۸,&artifact|˹,commercial| +۸񲻷 ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap| + N attribute|,price|۸,&artifact|˹,commercial| +Ŀ N attribute|,price|۸,&thing|,commercial| +Ŀ N document|,*display|չʾ,#price|۸,commercial| +ǩ N mark|־,#price|۸ +Ǯ N attribute|,price|۸,&thing|,commercial| +ֵ N attribute|,value|ֵ,&thing| +ֵ N thought|ͷ,#value|ֵ +ֵ N regulation|,#value|ֵ +ֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ֵ N quantity|,amount|,&value|ֵ + V HoldWithHand| + V PropUp|֧ + V build| + N fact|,fight| + V obstruct|ֹ + N part|,%artifact|˹,bone| + N tool|þ,@put|,generic|ͳ + V withstand|ס +ܲס V WithstandNot|ס +ܴ CLAS NounUnit|,&aircraft| +ܵס V withstand|ס +ܿ V CauseToDo|ʹ,ResultEvent=fake|α +ܿ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ܿ ADJ aValue|ֵ,posture| + V HoldWithHand| + V build| + V put| + V build| +ʽ N attribute|,posture|,&animate| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,flighty|,undesired|ݬ,&human| + N attribute|,posture|,&animate| + N part|,%artifact|˹,bone| + N part|,%entity|ʵ,bone| + N part|,%text|,bone| + N tool|þ,@put|,generic|ͳ + N livestock| + V drive|Ԧ +ݳ V drive|Ԧ,patient=LandVehicle| + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ʻ V drive|Ԧ +ʻ N part|,%ship|,%aircraft|,room|,@drive|Ԧ +ʻ N part|,%LandVehicle|,room|,@drive|Ԧ +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Ԧ V control| +Ԧ V drive|Ԧ + V MarryTo| + V give| +޻ V damage| +޽ V connect|,agricultural|ũ +ױ N tool|þ,$GiveAsGift|,#MarryTo|,generic|ͳ + V destroy| +߻ V destroy|,military| +߻ N weapon|,aircraft|,military| + V destroy| +ս N fact|,fight|,destroy|,military| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,royal| + V supervise| + V supervise| + N facilities|ʩ,*supervise| +վ N InstitutePlace|,*supervise| + V supervise| +첿 N institution|,*supervise|,ProperName|ר,politics| +쳤 N human|,#occupation|ְλ,*supervise|,official|,police| + N human|,*supervise| +ೡ V supervise|,education| +ල V supervise| +ලԱ N human|,*supervise| +ල N human|,*supervise| +෸ N human|,crime|,undesired|ݬ,$detain|ס +๤ N human|,#occupation|ְλ,*supervise|,industrial| + V detain|ס,police| + N fact|,TakeCare|,police| +໤ V TakeCare| +໤Ȩ N rights|Ȩ,TakeCare|,police| +໤ N human|,*TakeCare| +໤ N human|,*protect| + V detain|ס,police| +࿼ V supervise|,education| +࿼ N human|,*supervise|,#exam|,education| + V supervise| + V control| +Ʊ V supervise|,content=select|ѡ +» N institution|,*supervise| + V check| + V supervise| + N part|,%computer|,*display|չʾ +Ե V steal|͵,crime| + V supervise| +ִ V punish| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N human|,#occupation|ְλ,*supervise|,police| +Ů N human|,#occupation|ְλ,*supervise|,police|,female|Ů +֤ V appreciate|޳ + V supervise|,content=produce| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V hide| +Ұ V hide|,military| +᲻ɴ ADJ aValue|ֵ,ability|,withstand|ס,desired| +᲻ɴ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ֲи ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ֲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ּ V obey|ѭ,content=thinking|˼ +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ N attribute|,will|־,strong|ǿ,&human| + ADJ aValue|ֵ,quality|,durable|,desired| + N part|,%plant|ֲ,embryo| + N weapon|,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,&human| +Ͳ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯ ADJ aValue|ֵ,circumstances|,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V believe| +Ų V believe| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ִ V obey|ѭ,content=thinking|˼ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,acute| + N part|,%inanimate|,head|ͷ + N human|,military| +⵶ N tool|þ,*cut|,acute| +ⶥ ADJ aValue|ֵ,form|״,acute| +ⶥ N part|,%inanimate|,head|ͷ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,form|״,sharp| + N fish| + N part|,%fish|,body| + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,form|״,acute| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̱ ADJ aValue|ֵ,content|,#satirize| + N human|,superior|,able|,desired| +챡 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N expression|,*explain|˵ + N letter|ż + N paper|ֽ,@write|д,#letter|ż + N text|,*explain|˵ + CLAS NounUnit|,&InstitutePlace|,&house| + N location|λ,space|ռ,internal| +䲻ݷ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +䲻ݷ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N facilities|ʩ,route|· + N human|,police|,military|,*scout| + N part|,%army| + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V pause|ͣ +䷢ N disease| + N attribute|,distance|,&time|ʱ,&space|ռ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,behavior|ֹ,tactful| +˰ N expenditure| + N attribute|,distance|,&space|ռ + V PickOut|γ,patient=crop|ׯ,agricultural|ũ +϶ N location|λ +϶ N time|ʱ +Ъ ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V planting|ֲ,agricultural|ũ + V cook| + V produce| +尾 V punish| + N food|ʳƷ + V undertake| +汸 V own|,manner=also|Ҳ +沢 V occupy|ռ,military| + V undertake|,content=other| + V SelfMove|,manner=fast| +֮ V own|,manner=also|Ҳ + V PayAttention|ע + V manage|,manner=also|Ҳ + V teach|,education| + V undertake| + ADJ aValue|ֵ,performance|,alike| +ݻ N computer| + N attribute|,performance|,#fit|ʺ,&information|Ϣ,&implement| +ղ V include| +Ӫ V manage|,manner=also|Ҳ + V use|,manner=also|Ҳ + V own|,manner=also|Ҳ +ְ V undertake|,content=other| +ְְҵ N affairs|,#occupation|ְλ,other| + V be|,manner=also|Ҳ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +縺 V bear|е +ؽ N part|,%AnimalHuman|,bone| +Ħ챻 ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ͷ N location|λ,%part| +ͷ N part|,%AnimalHuman|,body| + N mark|־,#clothing|,$PutOn| +ι N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ܶ V endeavour|,manner=hardship| +׿ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V suffer|,content=hardship|,manner=extreme| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,*betray|,treacherous| +鳼 N human|,undesired|ݬ,official|,treacherous| +黫 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,commercial|,crime|,*deceive|ƭ + V damage|,purpose=mating|,crime| +ϸ N human|,police|,military|,*scout| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +Ц V laugh|Ц +а ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + V damage|,purpose=mating|,crime| + N human|,undesired|ݬ,*betray|,treacherous| +թ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + N human|,undesired|ݬ,treacherous| + V shut|ر + V KeepSilence|˵ +Ĭ V KeepSilence|˵ + N house|,#InsectWorm| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N material|,?clothing| +˿ N material|,?clothing| + V check| + V restrain|ֹ,patient=self| +첨 V distinguish|ֱ,information|Ϣ,#electricity| + V check| + V check| + N human|,*check| +Ա N human|,#occupation|ְλ,*check| + V check|,police| +쳤 N human|,#occupation|ְλ,*check|,official|,police| + N human|,#occupation|ְλ,*check|,official|,police| +Ժ N institution|,*check|,police| + V check|,Vachieve| + V PayAttention|ע + V check| +춨 V distinguish|ֱ + V reveal|¶ + N human|,*reveal|¶ + V check| + V LookFor|Ѱ + V check| + V repair| + V check| + V exam| + V check|,#medical|ҽ + V check| + V check|,military| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) + N letter|ż + N place|ط,country|,ProperName|ר,(Cambodia|կ) +կ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) +կ N place|ط,country|,ProperName|ר,(Asia|) +կ N language|,#country|,ProperName|ר + N letter|ż + N chemical|ѧ + N land|½ + N fact|,ize|̬ + ADJ aValue|ֵ,performance|,industrial| + N attribute|,performance|,industrial|,&inanimate| + N chemical|ѧ + V choose|ѡ +ѡ V choose|ѡ + V gather|ɼ + V pick|ʰ +ö V gather|ɼ,possession=waste| + ADJ aValue|ֵ,content|,simple|,desired| + N character|,surname|,human|,ProperName|ר + N letter|ż + N letter|ż,past| + N publications|鿯,news| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N attribute|,name|,simple|,&entity|ʵ + N naming|,manner=simple| + ADJ aValue|ֵ,content|,simple|,desired| +򵥻 ADJ aValue|ֵ,content|,shallow|dz +򵥻 V handle|,manner=careless| +򵥻 N human|,*ize|̬ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +֮ ADV {comment|} + N ize|̬,PatientAttribute=simple| + V ize|̬,PatientAttribute=simple| + N character|,simple|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,simple|,desired| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,content|,simple|,desired| + N document|,@record|¼,#process|,#human| + ADJ aValue|ֵ,content|,simple|,desired| +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +Ҫ ADJ aValue|ֵ,content|,concise|,desired| +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʷ N fact|,#time|ʱ,simple| + V describe|д,manner=simple| + N character|,simple|,(China|й) + N character|,simple|,(China|й) +ͼ N image|ͼ +Ѷ N news|,simple| +֮ ADV {comment|} +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,content|,easy|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| + N document|,regulation|,simple| +Ȩ V MakeBetter|Ż,politics| +ֱ ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + V break|۶ + N tool|þ,*break|۶ + N part|,%publications|鿯 + V break|۶ + V compile|༭ + V start|ʼ + V destroy| + N tool|þ,*break|۶ + N quantity|,rate|,&price|۸,commercial| + V compile|༭ + V compile|༭ + V compile|༭ +Ӱ N image|ͼ +ֽ N image|ͼ + N tool|þ,*break|۶ + V DoSum| + V DoSum|,means=subtract| + V subtract| + V subtract|,range=half| + V BecomeLess|,scope=produce|,industrial| + V subtract| + V BecomeLess| + V subtract| + N method|,*DoSum| + V AlterMeasurement|,ResultEvent=bony| + N attribute|,range|,BecomeLess|,&price|۸,commercial| + N symbol|,*DoSum| + V SlowDown| + V BecomeLess|,scope=price|۸,commercial| + V subtract|,patient=expenditure| + V SlowDown| + V exempt| + V subtract| + V weaken| +ȥ V DoSum| + V weaken| +ɫ V weaken| +ɱ V weaken| + V subtract| + N quantity|,amount|,#DoSum| +˰ V subtract|,patient=expenditure| + V SlowDown| + N tool|þ,*SlowDown| + V BecomeLess| +С V subtract| + V weaken|,patient=punish|,police| +ѹ V weaken|,patient=press|ѹ,industrial| +Ա V BecomeLess|,scope=employee|Ա + V subtract|,patient=unfortunate| + V weaken|,patient=shiver| + N tool|þ,*weaken|,#shiver| + N tool|þ,*weaken|,#shiver| + V BecomeLess| + N FlowerGrass| + V recommend|Ƽ + N tool|þ,@sleep|˯ + V recommend|Ƽ + N facilities|ʩ,space|ռ,@detain|ס,animal| + N part|,%building|,mouth| + N part|,%house| + V check| + N information|Ϣ + V investigate| + V mean|ָ + N tool|þ,*look|,#self| + V distinguish|ֱ + V distinguish|ֱ + V estimate| + N fact|,*estimate| + N human|,*estimate| + N information|Ϣ + V appreciate|޳ +ͼ N human|,*estimate| + PREP {cause} + V conduct|ʵʩ + V kick|߲ +̤ V damage| +Լ V obey|ѭ,content=MakeAppointment|Լ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ͷ N human|,undesired|ݬ + V sell|,cost=cheap|,commercial| + N human|,undesired|ݬ + V appear| + V meet| + V perception|֪,means=look| + V read| + N thought|ͷ + STRU {Vachieve|} + V appear|,location=publications|鿯 + ADJ aValue|ֵ,ability|,able|,desired| + V grow|ɳ + V perception|֪ + N thought|ͷ +ʶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,form|״,square| +ʩ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V endeavour| +ֲ V despise|,target=ordinary| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V BeRecovered|ԭ + V read| + N thought|ͷ + V disloyal|,cause=wealth|Ǯ + V meet| +ǰ V read| +ʼ V differ|ͬ + V read| +ʶ V enrich|ʵ,material=experience| +ʶ N experience| + V enrich|ʵ,material=experience| +δ ADJ aValue|ֵ,kind|,special| +΢֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N information|Ϣ +ϰ V drill|ϰ +ϰ N human|,*study|ѧ,education| + V read| +Ц V LaughAt|Ц +Ч V succeed|ɹ +Ϊ V dare| +˼Ǩ ADJ aValue|ֵ,behavior|ֹ,^lasting| + V read| +֤ N experience| +֤ V perception|֪,means=look| +֤ N human|,*prove|֤,#police| + V appear|,location=publications|鿯 + N part|,%chemical|ѧ + N part|,%implement| + N part|,%tool|þ,#fasten|˩ + N part|,%computer|,%MusicTool| + V write|д + N weapon|,*firing| + N tool|þ,#firing| +¥ N facilities|ʩ,space|ռ,@look| +ͷ N mark|־ +ͷ N part|,%weapon|,*firing| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N beast| + N weapon|,*firing| + CLAS NounUnit|,&thing| + N letter|ż + N part|,%artifact|˹,#produce|,industrial| + V MakeBetter|Ż + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + N human|,desired|,able| + N human|,desired|,employee|Ա,able|,#exercise| + N human|,desired|,employee|Ա,able|,#exercise| + V BeWell|׳ + ADJ aValue|ֵ,kind|,ordinary|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ȫ V MakeBetter|Ż +ȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V exercise| + N facilities|ʩ,@exercise|,sport| +̸ ADJ aValue|ֵ,ability|,able|,speak|˵ + V exercise| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,unable|ӹ,remember|ǵ + N human|,*forget| +θ ADJ aValue|ֵ,ability|,able|,MakeBetter|Ż + V alive| +׳ V BeWell|׳ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N weapon|,ship|,military| + N human|,#occupation|ְλ,official|,#ship|,military| + N weapon|,ship|,military| + N army|,#ship| + N weapon|,%ship|,*firing|,military| +ͧ N weapon|,ship|,military| + ADJ aValue|ֵ,performance|,able|,$transport|,#ship| +ֻ N weapon|,ship|,military| + N weapon|,*stab| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ü N part|,%human|,hair|ë + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) +Ŵѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) + V farewell| + V farewell| + ADJ aValue|ֵ,speed|ٶ,slow| + N fact|,change|,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,continuous| + V prosper| +Ѿ V prosper| + V disperse|ɢ + N land|½,linear|,#water|ˮ + N part|,%land|½,linear|,#water|ˮ + V build| + V establish| + V propose| + N material|,*build| + V build|,Vachieve| + V establish|,patient=community|,politics| + V establish|,patient=capital|,politics| + N fact|,#build| + V succeed|ɹ +ҵ V succeed|ɹ + V establish|,patient=country|,politics| + V associate| + V establish|,patient=army|,military| + N time|ʱ,day|,festival|,#army|,@congratulate|ף + V establish| + V build|,Vachieve| + V build| +貿 N institution|,*build|,ProperName|ר,politics| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) + N human|,*build| + V donate| + V establish|,PatientProduct=organization|֯ +ί N institution|,*build|,ProperName|ר,politics| +У V establish|,PatientProduct=InstitutePlace| +ҵ V succeed|ɹ + V propose| + N text|,$propose|,$discuss|,$debate| + V build| + N part|,%organization|֯,bone| + N building|,generic|ͳ,space|ռ + V build| + N material|,*build| + N building|,generic|ͳ,space|ռ +ѧ N knowledge|֪ʶ,#build| +ҵ N affairs|,#build|,industrial| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + V BeOpposite| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V ize|̬,PatientAttribute=hard|Ӳ + N attribute|,circumstances|,hardship|,&event|¼ +ʬ N part|,%AnimalHuman|,*die|,body| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ζ ADJ aValue|ֵ,taste|ζ + ADV aValue|ֵ,time|ʱ,future| + V attack| + N human|,#occupation|ְλ,official|,military| + V incite|ָʹ + N part|,%tool|þ,#recreation|,#compete| + PREP {PartOfTouch} + PREP {PatientProduct} + ADV {comment|} + PREP {content} + PREP {patient} + PREP {possession} + AUX {tense|ʱ̬,future|} +...乬 N discharge| + N human|,able|,military| + N human|,able|,military| + ADV time|ʱ,past| +ʹ V fulfil|ʵ,means=^amend| + V amend|,content=err|,means=endeavour| + V amend|,content=crime|,means=endeavour| + V amend|,content=crime|,means=endeavour| + N human|,#occupation|ְλ,official|,military| +ƾͼ V defeat|սʤ,means=use|,#method| + ADV aValue|ֵ,possibility|,almost| + V endure| + N human|,#occupation|ְλ,official|,military| + V come|,future| + N time|ʱ,future| + N human|,#occupation|ְλ,official|,military| + N community|,family|,military| +ʿ N human|,military|,mass| +˧ N human|,official|,military| +Ϣ V rest|Ϣ +ı V pity| +Ž V doubt| + V maintain| + V rest|Ϣ +Ҫ AUX {tense|ʱ̬,future|} +ָ N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,hand| + V wash|ϴ + N water|ˮ,concentrated| + N part|,%plant|ֲ,$eat|,embryo| + N tool|þ,sticky|,*fix|ס,*fasten|˩ +ϴ V wash|ϴ +Һ N water|ˮ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,linear| + N part|,%land|½,#waters|ˮ,edge| + N location|λ,north|,%land|½,#waters|ˮ + N location|λ,east|,%land|½,#waters|ˮ + N waters|ˮ,linear| + V decline|˥ + N place|ط + N waters|ˮ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%waters|ˮ,mouth| + N ship| + N material|,?food|ʳƷ,#crop|ׯ + N location|λ,south|,%land|½,#waters|ˮ +ɽ N attribute|,power|,politics|,&country| +ɽ N land|½ +ɽ N place|ط,#human|,country|,politics| +ˮ N water|ˮ,#waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N location|λ,%waters|ˮ,middle| + N human|,crime|,undesired|ݬ,*rob| + N place|ط,city|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N location|λ,surrounding|Χ,space|ռ + N place|ط,military|,@fight| + N place|ط,#country| + N place|ط,#country| + N place|ط,#country| + N character|,surname|,human|,ProperName|ר +ʯ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N part|,%ship| + V mobilize| + V praise|佱 + V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| + V reward|,punish| + N reward|,punish| +ƶ N regulation|,#reward|,#punish| + V reward|,punish| + N payment|,*reward|,$GiveAsGift| + V reward| + N payment|,*reward|,$GiveAsGift| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ʒ N tool|þ,*reward|,$GiveAsGift|,desired| +ڷ V reward|,punish| +ȯ N bill|Ʊ,*reward|,$GiveAsGift|,desired| + V reward| +ѧ N fund|ʽ,*reward|,#study|ѧ,education| +Ҵ V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| +» N human|,$reward| +״ N document|,*prove|֤,#reward| + V ParticularAbout| + V discuss| + V explain|˵ + V speak|˵ + N text| + V reconcile| + V speak|˵ + V discuss|,content=price|۸,commercial| + V explain|˵ + V ParticularAbout| + ADJ aValue|ֵ,quality|,refined|,desired| + V teach|,content=knowledge|֪ʶ,education| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V debate| + V explain|˵ + V estimate| + V explain|˵ + V mediate| + V ParticularAbout| +ʦ N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V explain|˵ +̨ N facilities|ʩ,space|ռ,@teach| +̳ N facilities|ʩ,space|ռ,@teach| +̳ N fact|,@communicate| + N room|,education| +ϰ V teach|,education| +ѧ V teach|,content=knowledge|֪ʶ,education| + V speak|˵ + N readings|,*teach|,education| + N fact|,teach|,education| + N human|,#occupation|ְλ,industrial| + N human|,#occupation|ְλ,industrial| + N thinking|˼ +Ķ ADJ aValue|ֵ,kind|,special|,desired| +Ķ V use|,patient=method|,refined| + V cook| + N material|,?food|ʳƷ + N food|ʳƷ + N food|ʳƷ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown|,NotLight|Ũ + N material|,?food|ʳƷ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + V BecomeLess| + V MoveItDown| + V defeat|սʤ + V fall| + V subtract| + V surrender| + V put|,patient=mark|־ + V BecomeLess| + V MakeLower| + V subtract| + V defeat|սʤ + V surrender| + V degrade| + V degrade| + V degrade|,education| + V BecomeLess|,scope=price|۸ + V arrive| + V defeat|սʤ,partner=strong|ǿ + V arrive| + V fall| +ɡ N tool|þ,#fall|,#aircraft| + V ComeToWorld| +ˮ V WeatherBad| +ˮ N quantity|,amount|,&RainSnow|ѩ +˳ V surrender| + V WeatherBad| + V cool| + V MoveItDown| +ѹ V MakeLower|,patient=voltage|ѹ + N liquid|Һ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ +ְ V degrade| +ּ V publish|,ContentProduct=document|,royal| + N plant|ֲ + N crop|ׯ,?material| + N plant|ֲ + N material|,?food|ʳƷ + N stone|ʯ,material| +ʯ N stone|ʯ +ʯ N stone|ʯ,material| + V FormChange|α + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,color|ɫ,black| + V burn|,industrial| + ADJ aValue|ֵ,color|ɫ,yellow| + V worried|ż + N attribute|,distance|,#TakePicture| + ADJ aValue|ֵ,dampness|ʪ,dried| + N emotion|,worried|ż + V worried|ż +Dz V uneasy| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ͷö V unfortunate| + N stone|ʯ,material| + V worried|ż + N chemical|ѧ + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V worried|ż + V worried|ż + ADJ aValue|ֵ,stickiness|,sticky| + V fasten|˩ + N material| + N material|,*fasten|˩ + N tool|þ,*print|ӡˢ + N tool|þ,medical|ҽ + N tool|þ,*wrap|,#electricity| + V fasten|˩ +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ + N part|,%tool|þ,#record|¼ +ľ N material|,?tool|þ + N tool|þ,cubic|,@put|,#medicine|ҩ,medical|ҽ + N stone|ʯ,material| +Ƥ N material| +Ƭ N part|,%tool|þ,#record|¼ +ˮ N stationery|ľ,*fasten|˩ +Ь N clothing|,#foot| +Ь N clothing|,#foot|,#RainSnow|ѩ +ѥ N clothing|,#foot|,#RainSnow|ѩ +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ɪ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +״ ADJ aValue|ֵ,form|״ + V BeOpposite| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V BeAcross|ཻ + V associate| + V mating| + V submit| +׾ V fail|ʧ + V entrust|ί + V dispatch|Dz +ͷ V release|ͷ +ʧ֮ V lose|ʧȥ + V fight|,military| + V BeAcross|ཻ + N location|λ,BeAcross|ཻ,#route|· + N location|λ,BeAcross|ཻ,#route|· +· N location|λ,BeAcross|ཻ,#route|· + V submit| + V SetAside| + V BeAcross|ཻ + V admit| + V entrust|ί + V explain|˵ + V admit| + V entrust|ί + V explain|˵ + N fact|,#associate| + V tell| + N image|ͼ,dot| + N part|,%space|ռ,dot| + V separate| + V pay| + V compete| + V fight| + V fight|,military| + V pay| + V submit| + N part|,%AnimalHuman|,nerve| + V pay| + V submit| + V associate| + ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ +ʽ ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ + V return| + V exchange| + N machine|,#communicate| + V return| + V BeAcross|ཻ +㴦 N location|λ,@ComeTogether| + V fight|,military| + V submit|,commercial| + N time|ʱ,@submit|,commercial| + V appear| + V mix| + V associate| +ʻ N human|,*associate|,female|Ů + N shows|,#associate| + V happen|,manner=together|ͬ + V associate| + V connect| + V entrust|ί +Ӱ V replace|,patient=affairs| + V BeAcross|ཻ + N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| + V fulfil|ʵ + V submit|,possession=document|,education| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ڳ V praise|佱 +ڳ V praise|佱,manner=together|ͬ + N pay|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,#electricity| + V exchange| + N electricity| + V pay| + V mating|,#animal| + N attribute|,relatedness|,&human| + V mix| + V discuss| + V fight| + V sell| +˰ V pay|,possession=expenditure| +̸ V talk|̸ + V replace| +ͨ N fact|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,*transport|,#information|Ϣ +ͨ N institution|,#vehicle|ͨ,ProperName|ר,politics| +ͨ N vehicle|ͨ +ͨ N law|ɷ,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| +ͨ N quantity|,amount|,&vehicle|ͨ,&VehicleGo|ʻ +ͨ¹ N phenomena|,#vehicle|ͨ,unfortunate|,undesired|ݬ +ͨ N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ +ͨ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ͨӵ N phenomena|,crowded|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +ͷӶ V speak|˵ + V associate| +β V mating|,#animal| +ӳ V AppearanceChange|۱ +ӳ V illuminate| + N music|,entertainment| + N community|,*perform|,#music|,entertainment| + N music|,entertainment| + V speak|˵ + V submit|,purpose=check| + N furniture|Ҿ,space|ռ,@sit| + N affairs|,#buy|,#sell|,commercial| + N affairs|,#money|,commercial| +׻ N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,#buy|,#sell|,commercial| + N attribute|,relatedness|,&human| + N shows|,#associate| + V associate|,partner=friend| + V associate| +ս V fight|,military| + V explain|˵ + V pay| +֯ V mix| + V mating| + N part|,%place|ط,surrounding|Χ,#city| + N part|,%place|ط,surrounding|Χ,#city| + N human|,*reside|ס + N part|,%place|ط,surrounding|Χ,#city| + V tour| + V irrigate|,agricultural|ũ + V spray| + V spray|,industrial| + V irrigate| + V irrigate|,agricultural|ũ +ˮ V irrigate| + V produce|,industrial| + V fill| +ע V fill| +ע V give| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N celestial| +ƻ ADJ aValue|ֵ,temperature|¶,hot| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ε ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V shy| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V indulge| + V indulge| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V masticate|׽ + V TalkNonsense|Ϲ˵ + V MakeTrouble| + V mix| + V mix| + N machine|,*mix| + N machine|,*mix| + V mix| + V MakeTrouble| + V mix| + V mix| + V MakeTrouble| + V deceive|ƭ + V MakeTrouble| + V break|۶ +½ V connect| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V amend| + V pretend|װ +ý ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ý ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + N human|,*pretend|װ + V HideTruth| + V amend| + V amend|,medical|ҽ + V lucky| + N part|,%AnimalHuman|,foot| + N part|,%inanimate|,base| + N stone|ʯ,waste| +Ű N part|,%AnimalHuman|,foot| +ű N part|,%AnimalHuman|,foot| +ű N publications|鿯,#shows|,entertainment| +Ų N part|,%AnimalHuman|,foot| +Ų N attribute|,distance|,&walk| +ŵ N tool|þ,*illuminate|,#entertainment| +ŵ N part|,%AnimalHuman|,foot| +ŷ N human|,#occupation|ְλ,*TakeAway|ᶯ +Ÿ N part|,%AnimalHuman|,foot| +ż N part|,%AnimalHuman|,foot| + N attribute|,strength|,&leg| + N payment|,#TakeAway|ᶯ + N tool|þ,police|,#crime|,#foot|,*detain|ס +¯ N tool|þ,*WarmUp|,#foot| + N part|,%AnimalHuman|,foot| + N disease| +ּ N facilities|ʩ,#build| +̤ N LandVehicle| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + N part|,%AnimalHuman|,foot| + ADJ aValue|ֵ,attachment|,foot| + N location|λ,#foot|,beneath| + N part|,%AnimalHuman|,foot| +Ѿ N part|,%AnimalHuman|,foot| +ӡ N trace|,#SelfMove|,#CauseToMove|,#foot| + N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,foot| +ֺ N part|,%AnimalHuman|,foot| +ֺϸ ADJ aValue|ֵ,length|,long| +ע N part|,%text| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ʊ V debate| +ƻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V deny| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N MusicTool| + V compete| + V fight| + N human|,*perform|,entertainment| + N image|ͼ,angular| + N land|½,#waters|ˮ + N location|λ,space|ռ,angular| + N part|,%AnimalHuman|,*feel| + N part|,%space|ռ,space|ռ,angular| + N shape| + N tool|þ,past|,*drink|,#drinks|Ʒ + CLAS unit|λ,&money|,(China|й) +dz N tool|þ,*measure| +Ƕ N attribute|,distance|,&location|λ +Ƕ N standpoint| +Ǹ N metal|,material| +¥ N facilities|ʩ,space|ռ,@look| + N location|λ,space|ռ,angular| +Ĥ N part|,%AnimalHuman|,eye| +Ĥ N disease| + N phenomena|,sport| +ɫ N human|,*perform|,entertainment| +ʯ N stone|ʯ,material|,mine| + N metal|,material| + V compete| + V fight| + N image|ͼ,cubic| +״ N shape| +׶ N image|ͼ,cubic| + N food|ʳƷ + N food|ʳƷ + V obtain|õ,military|,police| + V submit| +ɷ V pay|,possession=money| +ɸ V pay| +ɻ V obtain|õ,military|,police| +ɿ V pay|,possession=money| + V pay| +˰ V pay|,possession=expenditure| + V remove| +е V remove|,patient=weapon|,military|,police| +е V surrender|,military|,police| + V coil| + V kill|ɱ +ʳ N machine|,*lift| +ʼ N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʾ֭ V think|˼ + N tool|þ +ɱ V kill|ɱ + N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʹ V painful|ʹ + N fact|,kill|ɱ,police| + V attack|,military| + V steal|͵ + V destroy| +Ϯ V steal|͵ + N system|ƶ,generic|ͳ,religion|ڽ + V teach| + V teach|,education| +̰ N plans|滮,#teach|,education| +̲ N readings|,*teach|,education| +̳ N readings|,*teach|,education| +̵ V teach| +̵Ա N human|,#occupation|ְλ,*teach|,politics| +̸ V improve|,patient=education| +̹ N human|,#occupation|ְλ,employee|Ա,education| +̹ N human|,#occupation|ְλ,*teach| +̻ V teach| +̻ N human|,religion|ڽ +̻ N community|,religion|ڽ +̻ V teach| +̻ V teach|,education| +̾ N tool|þ,*teach|,generic|ͳ +̿ N readings|,*teach|,$study|ѧ,education| +̿ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) + N human|,#occupation|ְλ,*teach| + V teach|,education| +Ա N human|,#occupation|ְλ,*teach| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա,#teach| + N place|ط +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ ADJ human|,#occupation|ְλ,*teach|,education| +ʦ N human|,#occupation|ְλ,*teach|,education| +ʿ N human|,religion|ڽ + N room|,education| + N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V teach|,education| + V incite|ָʹ + N InstitutePlace|,religion|ڽ + N thinking|˼ + N thinking|˼,stiff| + N human|,stiff|,undesired|ݬ +ͷ N human|,#occupation|ְλ,*teach| +ͷ N human|,#occupation|ְλ,*teach|,military|,past| +ͽ N human|,religion|ڽ +ί N institution|,ProperName|ר,#education| + N affairs|,#teach| +ѧ V teach|,education| +ѧ N plans|滮,#teach|,education| +ѧ N method|,*teach|,education| +ѧҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ѵ V ExpressAgainst|Ǵ +ѵ N experience| + V teach|,research|о + N part|,%InstitutePlace|,*teach|,*research|о + N part|,%InstitutePlace|,*teach|,*research|о + V teach| + N reason|,religion|ڽ + N attribute|,ProsCons|,pros|,desired|,&teach| + N affairs|,education| + V teach| + N institution|,ProperName|ר,#education| +ĸ V improve|,patient=education| + N human|,#knowledge|֪ʶ,education| + N institution|,ProperName|ר,#education| +ѧ N knowledge|֪ʶ,#education| +Ա N human|,#occupation|ְλ,*teach|,education| +ְ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| + V ize|̬ +ĸ N bacteria|΢,material|,?food|ʳƷ + N LandVehicle| +γ N LandVehicle| + N LandVehicle| + ADV aValue|ֵ,degree|̶,more| + PREP {contrast} +ϱ ADV aValue|ֵ,degree|̶,ish| +ϱ ADV aValue|ֵ,degree|̶,more| +Ͼ V HaveContest| + V HaveContest| + ADJ aValue|ֵ,weight|,NotHeavy|,ish| + ADJ aValue|ֵ,time|ʱ,late| +Ϊ ADV aValue|ֵ,degree|̶,more| +֮ PREP {contrast} + ADJ aValue|ֵ,sex|Ա,male| + V cry| + V employ| + V naming| + V order| + V request|Ҫ +в ADJ aValue|ֵ,possibility|,impossible|,$naming| +з N attribute|,name|,&entity|ʵ +к V cry| +к N human|,*cry| +к N human|,*cry| +к V praise|佱 +л N human|,poor|,undesired|ݬ +л V cry| +о V praise|佱 +п V protest| +п V sigh|̾ +п಻ V protest| + V ExpressAgainst|Ǵ + V cry|,content=sell|,commercial| + V cry| + V ExpressDissatisfaction|ʾ + V protest| + V cry| + N sound|,cry| + V ShowBadEmotion|ʾ + V call|ٻ + V naming| + V naming| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N facilities|ʩ,space|ռ,@store| + V StripOff|ȥ + V lift| + V reveal|¶ +Ҵ V reveal|¶ +ҵ V reveal|¶,patient=secret| +Ҷ V reveal|¶,patient=undesired|ݬ +ҷ V reveal|¶ +ҸͶ V uprise| +ҿ V open| +ҿ V reveal|¶ +¶ V reveal|¶ +Ļ V start|ʼ +ʾ V announce| +ʾ V reveal|¶ +ʾ N human|,*reveal|¶ + V announce| + V approach|ӽ + V catch|׽ס + V connect| + V meet| + V receive| + V replace| +Ӱ V replace|,content=bear|е +Ӱ N human|,*bear|е +Ӳ V help|,scope=GiveBirth|,medical|ҽ +Ӵ V associate| +Ӵ V fight|,military| +Ӵ V touch| +Ӵ N phenomena|,#touch|,loose|,undesired|ݬ +ӴȾ ADJ aValue|ֵ,behavior|ֹ,#touch| +ӴȾ N disease| +Ӵ V entertain|д +Ӵ N room|,@entertain|д +ӴԱ N human|,#occupation|ְλ,*entertain|д +Ӵվ N InstitutePlace|,@entertain|д +ӵ V meet|,Vachieve| +ӵ V receive|,Vachieve| +ӵ V touch|,patient=land|½,#electricity| +ӵ N location|λ,@BeAcross|ཻ +Ӷ ADJ aValue|ֵ,behavior|ֹ,continuous| +ӷ V replace|,content=defend|,military| +ӷ V entertain|д +ӹ V replace|,content=manage| +ӹ V obey|ѭ +Ӻ V connect| +ӻ V MakeBetter|Ż,industrial| +ӻ V fight|,military| +ӻ V receive| +Ӽ V help| +Ӽ V meet| +ӽ V BeNear| +ӽ ADJ aValue|ֵ,distance|,near| +ӽ V approach|ӽ +ӽ V approach|ӽ +ӿ N part|,%software| + V do|,manner=replace| + N SportTool|˶,sport| + N fact|,compete|,sport| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,behavior|ֹ,continuous| +Ŀ N tool|þ,*look| + V include| + ADJ aValue|ֵ,content|,concise|,desired| +Ǣ V associate| + V BeNear| + V replace|,content=bear|е + V connect| + V help|,scope=GiveBirth|,medical|ҽ + V include| + V receive| +ջ N machine|,*receive|,#information|Ϣ +վ N InstitutePlace|,@receive|,information|Ϣ + N human|,*receive| + V bear|е + V accept| + V suffer|,content=interrogate|,police| + N human|,*receive| + V follow| + V replace| +ͨ V connect| +ͷ V associate| +ͷ V connect| +ͷ V connect|,industrial| +ͷ V meet| + V ShowLove|ʾ,means=CausePartMove| +ᄉ N tool|þ,*look|,#physical| + CONJ {supplement|ݽ} + V connect|,#electricity| + N facilities|ʩ,#electricity| + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,continuous| +Ӧ V help| +Ӧ V provide| +վ V meet|,location=facilities|ʩ,#vehicle|ͨ + V cure|ҽ +ס V catch|׽ס,Vachieve| + V GoOn| + V catch|׽ס,Vachieve| + V follow| + V appear| + V appear| + ADJ aValue|ֵ,range|,all|ȫ +Դϲ V joyful|ϲ +Կ AUX {modality|} + N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,route|· +ֵ N facilities|ʩ,route|· +ֵ N place|ط,#reside|ס +ֵ N facilities|ʩ,*illuminate|,#route|· +ַ N human|,*reside|ס,near| +־ N attribute|,scene|,&facilities|ʩ,&building| +ֿ N location|λ,#route|·,angular| + N facilities|ʩ,route|· + N place|ط,#reside|ס + N location|λ,%route|· + N InstitutePlace|,space|ռ,commercial| +̸ V talk|̸ +ͷ N location|λ,#route|·,space|ռ,angular| +ͷβ N location|λ,#route|·,space|ռ + N facilities|ʩ,route|· + N location|λ,%route|· + N attribute|,rank|ȼ,&human| + N part|,%building|,nerve| +ײ N attribute|,status|,&human| +׶ N process|,#time|ʱ +׶ ADJ aValue|ֵ,behavior|ֹ +׼ N attribute|,rank|ȼ,&human| +׼ N attribute|,status|,&human| + N part|,%building|,nerve| + N human|,crime|,undesired|ݬ,$detain|ס + V break|۶ + V obstruct|ֹ +س V improve| +ض V BlockUp| +ض V break|۶ +ض V obstruct|ֹ +ظ V due| +ظ N time|ʱ,@due| +ػ V obtain|õ +ػ V attack|,military| + V detain|ס + V BlockUp|,#waters|ˮ + N part|,%inanimate|,surfacial| +ȡ V separate| +Ȼ ADV aValue|ֵ,degree|̶,extreme| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| +̱ V paralyse|̱ +֫ V cure|ҽ,#limb|֫ +ֹ V due| +ֹ N time|ʱ,@due| + PREP {TimeFin} + V attack| + V force|ǿ + N phenomena|,undesired|ݬ,#unfortunate| + V rob| +ٲ V rob|,possession=wealth|Ǯ +ٳ V control|,means=fierce|,crime| +ٳ N human|,*control|,crime| +ٶ V rob| +ٷ N human|,crime|,undesired|ݬ,*rob| +ٺ V alive|,#unfortunate| +ٻ V control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| + V rob| + N phenomena|,unfortunate|,undesired|ݬ +ɫ V rob|,target=female|Ů,purpose=mating| + V rescue|,patient=human|,crime| + N attribute|,behavior|ֹ,&human| + N attribute|,length|,&inanimate| + V compile|༭,means=subtract| + V economize|ʡ + N location|λ,dot| + N part|,%document| + N part|,%inanimate| + N part|,%physical| + N shape| + N time|ʱ,festival|,@congratulate|ף +ڰ V restrain|ֹ,patient=sorrowful| +ڵ V economize|ʡ,patient=electricity| +ڹ N part|,%thing|,important| +ڹ N time|ʱ,important| +ڼ N time|ʱ,day|,@rest|Ϣ,@WhileAway| +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڽ ADJ aValue|ֵ,behavior|ֹ,lasting| +ڽ N disease| + N time|ʱ,season| + V economize|ʡ,patient=expenditure| + N part|,%machine| +¼ V record|¼ + N attribute|,speed|ٶ,&act|ж +ú V economize|ʡ,patient=material| +Ŀ N shows| + V economize|ʡ,patient=strength| + N attribute|,speed|ٶ,&music|,&language| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ V economize|ʡ +ʳ V subtract|,patient=consume|ȡ +ˮ V economize|ʡ,patient=water|ˮ +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| +ʳ V alive|,manner=thrifty| + V economize|ʡ,patient=material| + V surplus|ʣ + V prohibit|ֹ,ResultEvent=GiveBirth| +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ V economize|ʡ +ԼͶ ADJ aValue|ֵ,ability|,able|,economize|ʡ +֫ N AnimalHuman|,generic|ͳ + V control| + V restrain|ֹ + N attribute|,speed|ٶ,&event|¼ + N attribute|,speed|ٶ,&music|,&language| + N fruit|ˮ +۹ N food|ʳƷ + N fruit|ˮ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N human|,able|,desired| +ܳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ܳ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ܳ˲ N human|,able|,desired| + N artifact|˹,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble| + ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Czech|ݿ) +ݱ N information|Ϣ,desired|,#win|ʤ,#succeed|ɹ +ݾ N facilities|ʩ,route|· +ݾ N method|,convenient| +ݿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ˺˹工 N place|ط,ProperName|ר +ݿ˺˹工 N human|,(Czechoslovak|ݿ˺˹工) +ݿ˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ N language|,#country|,ProperName|ר +ȵ V VieFor| + N part|,%AnimalHuman|,hair|ë +ë N part|,%AnimalHuman|,hair|ë + V exhaust| +߳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +߾ V exhaust| +߾ȫ V endeavour| + V endeavour| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,color|ɫ,white| +ྻ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N tool|þ,*cleanness|ྻ,generic|ͳ +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| + V AlterForm|״ + V GiveBirth| + N document|,commercial| + V finish| + N location|λ,dot| + V produce| + V twine| + V weave| +᰸ V finish|,police| +᰸ N quantity|,rate|,&finish|,police| + V disable|м,scope=speak|˵ + N human|,undesired|ݬ,*SufferFrom|,#speak|˵ + V ally| + V associate| + V StateChange|̬,StateFin=ice| +᳦ N part|,%AnimalHuman|,viscera| +᳦ N disease| + V forming|γ + V become|Ϊ,isa=enemy| + V AmountTo|ܼ +ᵳӪ˽ V collude| +֯ N part|,%AnimalHuman|,flesh| +ṹ N part|,%entity|ʵ,bone| +ṹ N attribute|,ability|,$forming|γ,&artifact|˹ + V kill|ɱ + N result| + N disease| +˲ N disease| +˸˾ N bacteria|΢ +˾ N medicine|ҩ + V GetMarried| + V merge|ϲ + N human|,*merge|ϲ + V pay|,commercial| + V GetMarried| + N human|,*GetMarried| + N image|ͼ,$TakePicture|,#GetMarried| + V collude| +Ἧ V ComeTogether| +Ἧ V assemble|ۼ +ύ V associate| + N disease|,#swollen| +ᾧ ADJ aValue|ֵ,form|״ +ᾧ N natural|Ȼ +ᾧ N result| +ᾧ״ ADJ aValue|ֵ,form|״ + N result| + V AlterForm|״ + N thought|ͷ,$decide| + V ally| +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease|,#eye| + V GetMarried| + V calculate|,commercial| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V forming|γ,PatientProduct=community| +ʯ N stone|ʯ,#disease| +ʯ N disease| +ʵ V GiveBirth| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| +ʵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʶ V associate| + V cease|ͣ + V finish| + N expression|,*finish| +˪ V StateChange|̬ + V calculate|,commercial| +Ϊ V become|Ϊ +β N part|,&event|¼,tail|β +β N part|,&music|,tail|β + V forming|γ +ҵ V finish|,scope=study|ѧ,education| + N wealth|Ǯ,surplus|ʣ + N expression|,*finish| +ԩ V become|Ϊ,isa=enemy| +Ե V tie| + V cure|ҽ + V calculate|,commercial| + V BeRecovered|ԭ,#skin|Ƥ,medical|ҽ + N character|,surname|,human|,ProperName|ר + V dismiss| + V excrete|й + V explain|˵ + V handle| + V know|֪ + V remove| + N result|,$handle| + V send| + V separate| + V soothe|ο + V remove| +ͬ V remove|,patient=document| + V explain|˵ +ⶳ V StateChange|̬ +ⶳ V resume|ָ +ⶾ V cure|ҽ,content=fever|,medical|ҽ +ⶾ V cure|ҽ,content=poison|,medical|ҽ + V explain|˵ + V release|ͷ +ź N time|ʱ,(China|й) +ž N army|,(China|й) +ž N publications|鿯,news|,military|,(China|й) +ǰ N time|ʱ,(China|й) +ǰ ADJ time|ʱ,past| + N place|ط,(China|й) + V discharge| + V remove|,patient=hate| +׹ V cease|ͣ,military| + V cease|ͣ,content=prohibit|ֹ + V rescue| + V destroy| + V handle| +⿪ V separate| + V remove|,patient=HungryThirsty| + V remove|,patient=difficult| +ϵ V handle| + V translate|,#computer|,#software| + V remove|,patient=upset| + V CauseToDo|ʹ,ResultEvent=^secret| + V remove|,patient=difficult| + V donate| + V help|,scope=wealth|Ǯ +Ƹ V discharge| + V split|ƿ +ʬ N human|,*split|ƿ,medical|ҽ +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*split|ƿ,medical|ҽ + V remove|,patient=angry| +Ȱ V soothe|ο + V cure|ҽ,content=fever| +ɢ V remove| + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + V excrete|й + N attribute|,ability|,&human| + N attribute|,posture|,&human| +˵ V explain|˵ +˵ N text|,*explain|˵ +˵Ա N human|,*explain|˵ + V handle|,patient=problem| + V perish| + V release|ͷ +Χ V remove|,patient=surround|Χ,military| +Χ V rescue|,StateIni=embarrassed|Ϊ +Χ V rescue|,patient=surround|Χ,military| + V analyze| + V remove|,patient=sad|dz +ְ V dismiss|,ResultIsa=official| + N human|,family|,female|Ů + N human|,female|Ů,adult| + N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,mass| + N human|,family|,mass|,female|Ů + V GiveUp| + V obstruct|ֹ + V persuade|Ȱ˵ + V prohibit|ֹ + N system|ƶ,religion|ڽ + N tool|þ,*decorate|װ,$PutOn| +䱸 V defend| +䱸 V obstruct|ֹ + V GiveUp| + V prohibit|ֹ +䵶 N tool|þ,religion|ڽ +佾 V GiveUp|,content=arrogant| + N aspiration|Ը,PayAttention|ע + V GiveUp|,content=addict|Ⱥ + V prohibit|ֹ,politics| +ָ N tool|þ,*decorate|װ,$PutOn| + N tool|þ,@LieDown| + V use| + PREP {purpose} + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ĩ N material|,?food|ʳƷ + N gas|,*kill|ɱ + N attribute|,range|,&entity|ʵ + N part|,%entity|ʵ + N part|,%human|,#community| + N place|ط +籮 N mark|־ + N tool|þ,*measure| +綨 V delimit| +綨 V explain|˵ + N waters|ˮ,linear| + N part|,%software| +ʯ N mark|־ +˵ N information|Ϣ + N phenomena|,sport| + N attribute|,boundary|,&entity|ʵ + N location|λ,ending|ĩ + N mark|־ +׮ N mark|־ + V borrow| + V use| + V lend| + V lend|,commercial| + PREP {purpose} + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| +赶ɱ V damage| + V dispatch|Dz + V lend|,commercial| +跽 N part|,%account|,commercial|,#human| + V lend| + V lend|,commercial| +ŷ V ExpressAgainst|Ǵ + V use|,patient=reason| +軨׷ V GiveAsGift| + V use|,patient=time|ʱ + V study|ѧ + V use| + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + N reason|,fake|α,undesired|ݬ + V use| + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| + N money|,commercial|,$lend| + V borrow| +ʬ V BeRecovered|ԭ + V reside|ס + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + PREP {purpose} + V borrow| + V borrow|,commercial| + V use| + V borrow| +ծ V borrow|,possession=fund|ʽ,commercial| +֧ V borrow|,possession=fund|ʽ,commercial| + V use| + V use| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N clothing|,*protect|,military|,past| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%language| +ʶ N part|,%language| + N part|,%AnimalHuman|,skin|Ƥ + V engage| + V explain|˵ + V guide| + V recommend|Ƽ + N human|,*guide| + N human|,*reconcile|,#GetMarried| + N letter|ż,*prove|֤ + ADJ aValue|ֵ,performance|,explain|˵ + V PayAttention|ע + V oppose| + V situated| + N physical| + N disease| + N beast| + V persuade|Ȱ˵ + N regulation|,#religion|ڽ + CLAS NounUnit|,&fact| + V due| + V due| +ʱ CONJ {time|ʱ} + N tool|þ,*wipe| + N human|,female|Ů + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,nerve| + N part|,%physical|,nerve| + N attribute|,physique|,&human| +ƣ V tired|ƣ + N part|,%AnimalHuman|,flesh| + CLAS unit|λ,&weight| +ƽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + N metal| + N metal|,material| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N account|,*record|¼,#name|,#win|ʤ,past| + V succeed|ɹ,scope=exam|,result=include|,education| + N PenInk|ī,*write|д +̻Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,#metal| + N place|ط,capital|,ProperName|ר,(Cambodia|կ) +𲻻 ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ӳ ADJ aValue|ֵ,brightness|,bright| +ѿ V flee| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,circumstances|,steady|,desired| + N mark|־ + N quantity|,amount|,&wealth|Ǯ + N part|,%human|,hair|ë,yellow| + N human|,religion|ڽ +ŬĿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʯ N material|,?tool|þ,precious| + N material|,?tool|þ,precious| + N lights|,bright| + N fish| + N InsectWorm| +𻨲 N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,yellow| + N time|ʱ,#GetMarried| + N bird| + N tree|,?medicine|ҩ +˪ N medicine|ҩ + N attribute|,price|۸,&metal|,commercial| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,commercial| + N InstitutePlace|,space|ռ,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,mine| + N part|,human|,female|Ů,foot| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ƶ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ǯ N wealth|Ǯ +Ǯ N beast| +ǹ N fish| + N time|ʱ,autumn| + N affairs|,#wealth|Ǯ,commercial| +ڲ N human|,*control|,#commercial| +ڹͷ N human|,#commercial| +ڼ N human|,#wealth|Ǯ,rich|,commercial| +ڽ N community|,#wealth|Ǯ,commercial| +ȶ N attribute|,circumstances|,peaceful|,&money|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɳ N place|ط,capital|,ProperName|ר,(Zaire|) + N metal| + N metal|,generic|ͳ +˹ N place|ط,capital|,ProperName|ר,(Jamaica|) +˿ N beast| +˿ȸ N bird| + N metal|,#wealth|Ǯ +ݲؽ V GetMarried|,undesired|ݬ + N celestial|,space|ռ,#weather| + N FlowerGrass|,?medicine|ҩ + N fish|,*recreation| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Կ N part|,%entity|ʵ,important|,heart| +Կ N tool|þ,*open|,*shut|ر + N FlowerGrass| + N tool|þ,*cure|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N metal|,material| + N facilities|ʩ,space|ռ + N attribute|,name|,empty|,&entity|ʵ + N mark|־,commercial| +ǵ N house|,royal| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now| + N time|ʱ,now|,day| + V differ|ͬ + ADJ aValue|ֵ,time|ʱ,future| + N time|ʱ,future| + N time|ʱ,now|,year| + N human|,now| + N time|ʱ,now|,day| + N time|ʱ,#alive| + N time|ʱ,#alive| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now|,night| + N time|ʱ,now|,past| + N sound|,#language| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%place|ط,mouth| + N place|ط,city|,ProperName|ר,(China|й) +ͲΤ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zimbabwe|ͲΤ) +ͲΤ N place|ط,country|,ProperName|ר,(Africa|) +ͲΤԪ N money|,(Zimbabwe|ͲΤ) +ֵ V talk|̸,manner=joyful|ϲ +ζ ADJ aValue|ֵ,property|,joyful|ϲ + N payment| +Һ N part|,%AnimalHuman|,liquid|Һ + N human|,family|,male| + N part|,%clothing|,body| + N mental| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,tightness|ɽ,tight| + V tighten|ս + V approach|ӽ + V shut|ر + ADJ aValue|ֵ,content|,concise|,desired| + V follow| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +״̬ N attribute|,circumstances|,urgent|,&entity|ʵ + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V BeNear| + V BeNear| + N human|,*reside|ס,near| +ܹ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,tightness|ɽ,tight| + V relate|й + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired|,commercial| +ȱ V lack|ȱ,commercial| + ADJ aValue|ֵ,tightness|ɽ,tight| + N clothing|,#body| + V follow| + V shrink|С + V BeNear| + V hold| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + V uneasy| +׷ V chase|׷ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?clothing| + N fact|,compete|,sport| + N material|,?clothing| + N bird| + N FlowerGrass| + N material|,?clothing| + N mark|־,*reward|,*GiveAsGift| + V MakeBetter|Ż + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,city|,ProperName|ר,(China|й) + ADV {emphasis|ǿ} + ADJ aValue|ֵ,kind|,special| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +Сĵ N human|,cautious| +С΢ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V GoForward|ǰ + V GoInto| + V buy|,commercial| + V drink| + V eat| + V obtain|õ + V submit| + V succeed|ɹ,sport| + V approach|ӽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V prosper| + V consume|ȡ + V engage| + N process| + N attribute|,speed|ٶ,&dig|ھ + V SelfMoveInManner|ʽ + N part|,%place|ط,mouth| + N transport|,commercial| + N attribute|,speed|ٶ,&event|¼ + CONJ {supplement|ݽ} + V start|ʼ,content=leave|뿪 + V attack|,military| + V attack|,military| + N human|,*attack|,military| + V submit| + V prosper| + N knowledge|֪ʶ,#grow|ɳ + N human|,#knowledge|֪ʶ + V buy|,possession=artifact|˹,commercial| + V attack|,military| + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V meet| + V SelfMoveInManner|ʽ + V GoForward|ǰ + V GoForward|ǰ,military| + N part|,%implement|,mouth| + N part|,%place|ط,mouth| + V transport|,commercial| + N human|,*transport|,commercial| + V GoInto| + STRU {Vdirection|,internal|} + N human|,*GoInto| + V GoInto| +ȡ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȡ N mental| +ȥ V GoInto| +ȥ STRU {Vdirection|,internal|} + V GoInto| +ʳ V eat|,patient=edible|ʳ +ʿ N human|,*succeed|ɹ,#exam|,past| +ˮ V GoInto|,agent=liquid|Һ +ˮբ N facilities|ʩ,#waters|ˮ + V GoForward|ǰ,GoBackward| + N attribute|,range|,&event|¼ + V embarrassed|Ϊ +ά V embarrassed|Ϊ + V GoInto|,LocationFin=room| + N payment| + V GoForward|ǰ + V GoOn|,Vgoingon|չ + V conduct|ʵʩ + N music| + V check|,commercial| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +һ ADJ aValue|ֵ,degree|̶,more| + N fact|,prosper| +չ V prosper| +վ V GoInto|,LocationFin=facilities|ʩ,#LandVehicle| + N payment| + N method|,#calculate| +פ V arrive| +פ V arrive|,military| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N character|,surname|,human|,ProperName|ר + V upgrade| + V meet| + N shows| + V upgrade| +ְ V upgrade| + V meet| + V detain|ס,police|,crime| + N place|ط,#prohibit|ֹ + V prohibit|ֹ + N system|ƶ + V WithstandNot|ס +ס V EndureNot| +ס V WithstandNot|ס + V withstand|ס +ס V withstand|ס + N place|ط,#prohibit|ֹ + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=gamble|IJ + V evade|ر + V evade|ر,medical|ҽ + N regulation|,*evade|ر + V prohibit|ֹ + N text|,*prohibit|ֹ + N place|ط,#prohibit|ֹ + N place|ط,#prohibit|ֹ,#exercise| + V prohibit|ֹ,ResultEvent=compete|,sport| + V withstand|ס + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=use| + V prohibit|ֹ,ResultEvent=transport|,commercial| +ֹ V prohibit|ֹ +ֹ N prohibit|ֹ +ֹ N human|,prohibit|ֹ +Ʒ N artifact|˹,generic|ͳ,#prohibit|ֹ + V restrain|ֹ + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N location|λ,surrounding|Χ,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,distance|,near| + N location|λ,surrounding|Χ + N time|ʱ,now| +ʷ N fact|,#time|ʱ + N facilities|ʩ,route|· + N waters|ˮ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,surrounding|Χ,space|ռ,#city| + N attribute|,distance|,near| + N attribute|,circumstances|,now|,&entity|ʵ + ADV aValue|ֵ,time|ʱ,now| + N human|,friend|,#reside|ס +· N facilities|ʩ,route|· + ADJ aValue|ֵ,time|ʱ + ADV aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + N time|ʱ,future| + N time|ʱ,future| + N human|,family| + N human|,family|,intimate| + N time|ʱ,now| + N time|ʱ,now| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V ill|̬,#eye| + N disease|,#eye| +ˮ¥̨ N attribute|,circumstances|,convenient|,&entity|ʵ +ˮ¥̨ȵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,similarity|ͬ,alike| +ֵ N symbol|,#quantity| +Щ N time|ʱ,now| + N cause|ԭ + ADJ aValue|ֵ,distance|,near| + N image|ͼ,$TakePicture|,#human| + N stone|ʯ,waste| + V soak| + N medicine|ҩ +û V soak| + V soak| +Ⱦ V influence|Ӱ + V soak| + V ill|̬ + V soak| +ʪ V become|Ϊ,descriptive=wet|ʪ,cause=soak| +͸ V soak| + V soak| + N human|,*soak| + V KeepOn|ʹ + V OwnNot| + V PayAttention|ע + ADJ aValue|ֵ,degree|̶,extreme| + V endeavour| + V exhaust| + ADJ qValue|ֵ,range|,all|ȫ + CONJ {concession|ò} + ADV {modality|} + CONJ {concession|ò} + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,earliness|,early| + V endeavour| +Ϊ V endeavour| + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| +Ȼ ADV aValue|ֵ,possibility|,possible| +˽֪ ADJ aValue|ֵ,property|,$know|֪ + ADV aValue|ֵ,ability|,able|,please|ȡ +ƾ ADJ aValue|ֵ,GoodBad|û,good|,desired| +۵ V perception|֪,#look| +ͷ N location|λ,ending|ĩ +ͷ N time|ʱ,ending|ĩ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| +ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| + V conduct|ʵʩ,content=duty| + ADV aValue|ֵ,earliness|,early| + V conduct|ʵʩ,content=duty| +ְ V endeavour| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,desired| + N attribute|,bearing|̬,&human| + N attribute|,strength|,&human| + N emotion|,FondOf|ϲ + N human|,enemy|,strong|ǿ + N attribute|,strength|,&AnimalHuman| + N human|,mass|,strong|ǿ + V kick|߲ +ͷ N attribute|,strength|,&AnimalHuman| +ͷ N emotion| +ͷ N emotion|,excited| + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +; ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N medicine|ҩ,(China|й) + N character|,(China|й) +ҵҵ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N part|,%plant|ֲ,body| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,brightness|,bright| + N natural|Ȼ + N natural|Ȼ,generic|ͳ + N attribute|,form|״,&inanimate| + N part|,%inanimate| +ʯ N stone|ʯ,mine| + N natural|Ȼ,generic|ͳ + N part|,%implement|,#electricity| +Ө ADJ aValue|ֵ,clearness|,clear| +Ө͸ ADJ aValue|ֵ,clearness|,clear| +״ N natural|Ȼ,generic|ͳ + N beast|,*swim| + V occupy|ռ + V occupy|ռ,military| + N beast|,*swim| + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(Japan|ձ) + N MusicTool| + N shows| +ʦ N place|ط,capital| +Ϸ N shows| + V fear| + V surprise| + V stupefied|ľȻ + V MakeTrouble| + V fear| + V cry| + V flurried| +ʧ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +ʧ V fear| +δ V flurried| + V cry| + V fear| + N thunder| + V surprise| + V MakeTrouble| + ADJ aValue|ֵ,ability|,frighten|Ż +˵ ADJ aValue|ֵ,degree|̶,extreme| +̾ V surprise| +κ N phenomena|,undesired|ݬ,#unfortunate| +κ N water|ˮ,strong|ǿ +춯 ADJ aValue|ֵ,ability|,frighten|Ż +ϲ V joyful|ϲ + V frighten|Ż + ADJ aValue|ֵ,ability|,able|,frighten|Ż +Ķ ADJ aValue|ֵ,ability|,frighten|Ż + V awake| + V surprise| + V surprise| + V surprise| + V dizzy| + V twitch|鴤 + V surprise| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&AnimalHuman| + N humanized|,undesired|ݬ + N part|,%AnimalHuman|,liquid|Һ,#mating| + N part|,%entity|ʵ,heart| + N part|,%physical|,heart| + ADJ aValue|ֵ,content|,accurate|׼,desired| + N army|,strong|ǿ,desired|,military| + V MakeBetter|Ż,patient=army|,patient=institution| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʷ׳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + ADJ aValue|ֵ,content|,simple|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V read|,manner=attentive|ϸ + N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,ability|,able|,desired| +ϸ V planting|ֲ,manner=attentive|ϸ,agricultural|ũ + ADJ aValue|ֵ,brightness|,bright| + ADV aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N part|,%entity|ʵ,heart| +ӹ V produce|,industrial| + V subtract| + V subtract| + N attribute|,strength|,&AnimalHuman| +ݽ ADJ tired|ƣ + V refine|,industrial| + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| +ܶ N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ǿ ADJ aValue|ֵ,ability|,able|,desired| +ƣ V tired|ƣ +ƣ V tired|ƣ +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,quality|,refined|,desired| +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ N attribute|,content|,accurate|׼,&mental|,&act|ж + ADJ aValue|ֵ,quality|,refined|,desired|,military| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N attribute|,strength|,&AnimalHuman| + N mental| + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N disease| +Ժ N InstitutePlace|,@cure|ҽ,#disease|,#mental|,medical|ҽ + ADJ aValue|ֵ,strength|,weak| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +֢ N disease| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human| + ADJ aValue|ֵ,attachment|,mental| + ADJ aValue|ֵ,attachment|,mental| + N mental| + N part|,%entity|ʵ,bone| +ͨ ADJ BeAble|ܹ +ͨ V BeAble|ܹ +ͨ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ ADJ aValue|ֵ,quality|,refined|,desired| +ѡ V choose|ѡ + N material|,?food|ʳƷ,salty| +Һ N part|,%AnimalHuman|,liquid|Һ,#mating| + V endeavour| +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| + V BeAble|ܹ +տ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + V refine|,industrial| +װ ADJ aValue|ֵ,property|,$wrap|,refined| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + V GoThrough| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N attribute|,distance|,&earth| + N character|,surname|,human|,ProperName|ר + V endure| + V manage| + N material|,industrial| + N part|,%AnimalHuman|,nerve| + N part|,%human|,#female|Ů,liquid|Һ,#mating| + N phenomena|,#female|Ů,#medical|ҽ + N publications|鿯 + V undergo| + PREP {time} + V handle| + V WithstandNot|ס + ADV aValue|ֵ,frequency|Ƶ,often| + V withstand|ס + ADJ aValue|ֵ,content|,good| + N publications|鿯,religion|ڽ + N publications|鿯,good| + N attribute|,distance|,&earth| + N fund|ʽ + V manage| + V GoThrough| + N process| + V undergo| + PREP {time} +֯ N community|,commercial|,ProperName|ר + N community|,commercial|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N affairs|,industrial|,agricultural|ũ,commercial| +ò N part|,%aircraft|,@sit| +÷ N law|ɷ,commercial| +÷ N law|ɷ,commercial| +ü» N part|,%institution|,politics|,(institution|=UN|Ϲ) + N tree|,commercial| +ʦ N human|,#occupation|ְλ,commercial| + V decline|˥,commercial| +Ч N attribute|,effect|Ч,&act|ж,commercial| +ѧ N knowledge|֪ʶ,#commercial| +ѧ N human|,#knowledge|֪ʶ + N human|,#occupation|ְλ,commercial| + V manage| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N human|,#occupation|ְλ,commercial| + ADJ aValue|ֵ,duration|,TimeLong| +ò˥ ADJ aValue|ֵ,duration|,TimeLong| +òϢ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + N human|,#occupation|ְλ,official|,commercial| + N experience| + V undergo| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| +ó N affairs|,commercial| +óί N institution|,commercial|,ProperName|ר,(China|й) + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#female|Ů,#disease| + V engage|,content=commercial|,commercial| +» N part|,%institution|,politics|,(institution|=UN|Ϲ) + V handle| + V sell|,commercial| + V undergo| + V withstand|ס +γ N attribute|,distance|,&earth| +γ N tool|þ,*measure| + N publications|鿯,religion|ڽ +ϴ ADJ aValue|ֵ,ability|,able|,withstand|ס,$wash|ϴ + N attribute|,distance|,&earth| + N material|,industrial| + V sell| + V sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ѫ N part|,%human|,#female|Ů,liquid|Һ,#mating| + N experience| + V undergo| +鲻 ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ḻ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,attachment|,experience| +̸֮ N text|,#experience| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӫ V manage| +Ӫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V GoThrough| + ADJ aValue|ֵ,content|,neat|,desired| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,@take|ȡ,#liquid|Һ + N shape| +֮ N human|,foolish|,undesired|ݬ + V irrigate|,agricultural|ũ + N facilities|ʩ,mine| + ADJ aValue|ֵ,content|,neat|,desired| + N part|,%facilities|ʩ,mouth| + N part|,%facilities|ʩ,mouth|,mine| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +ˮ N water|ˮ +ˮˮ V RelateNot|޹ + N InstitutePlace|,mine| + N material|,?food|ʳƷ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N human|,#occupation|ְλ,police| + N institution|,police| + N information|Ϣ,*tell|,#dangerous|Σ + N tool|þ,*tell|,#dangerous|Σ + V defend| + N place|ط,military|,$defend| + N human|,#occupation|ְλ,police| + N institution|,police| +ͤ N facilities|ʩ,space|ռ,police|,@defend| + N institution|,police| + N human|,#occupation|ְλ,official|,police| + N LandVehicle|,police| + N tool|þ,#sound| + N tool|þ,#sound|,#police| + N institution|,police| + N clothing|,police| + V persuade|Ȱ˵ + N human|,*persuade|Ȱ˵ + N human|,#occupation|ְλ,official|,police| + N human|,official|,police| + N weapon|,police| + V PayAttention|ע +䲿 N army| + N human|,*obstruct|ֹ,military| + N facilities|ʩ,*prohibit|ֹ,linear| + N institution|,police| + N institution|,police| + N expression|,*persuade|Ȱ˵ + V PayAttention|ע + N aspiration|Ը,PayAttention|ע + N institution|,police| + N tool|þ,*tell|,#dangerous|Σ +Ȯ N livestock|,police| +ʾ V persuade|Ȱ˵ + V PayAttention|ע + V defend| + N human|,#occupation|ְλ,*protect| +Ա N human|,#occupation|ְλ,*protect| + N attribute|,rank|ȼ,&official|,police| +е N weapon| + V understand| +Ա N human|,#occupation|ְλ,police| + N tool|þ,*tell|,#dangerous|Σ + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N character|,surname|,human|,ProperName|ר + N part|,%shows| + N tool|þ,#shows|,#recreation| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + N attribute|,circumstances|,&entity|ʵ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,#scene| +ɫ N attribute|,scene|,&inanimate| +ɫ ADJ aValue|ֵ,scene|,beautiful|,desired| +̩ N artifact|˹,literature|,(China|й) + N tree| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + V respect| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +׵ N part|,%AnimalHuman|,#head|ͷ,#bone| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N electricity| +ӡˢ N fact|,print|ӡˢ + V look|,manner=calm| + V wait|ȴ,manner=quiet| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,static|̬ +ѧ N knowledge|֪ʶ,#strength| + N part|,%AnimalHuman|,nerve| + N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ĭ V KeepSilence|˵ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| +̬ ADJ aValue|ֵ,behavior|ֹ,static|̬ +̬ ADJ aValue|ֵ,circumstances|,steady| + V maintain| +ֹ ADJ aValue|ֵ,behavior|ֹ,static|̬ +ֹ ADJ aValue|ֵ,occasion|,quiet| +ֹ ADJ aValue|ֵ,ability|,unable|ӹ,SelfMove| + V sit|,manner=quiet| + V uprise|,means=sit| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N attribute|,circumstances|,&entity|ʵ + N location|λ,surrounding|Χ,space|ռ + N place|ط + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N location|λ,%country|,internal| + N location|λ,%country|,external| + N attribute|,circumstances|,&entity|ʵ + V respect| + V respect| +Զ֮ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V GiveAsGift| + V salute|¾ + V tell| + V congratulate|ף,means=drink| +Ժ N InstitutePlace|,@TakeCare|,#aged| + V salute|¾ +Ľ V respect| +Ľ N human|,*respect| + V respect| + V invite| +η V respect| + V submit| +л V refuse| + V respect| +ҵ V endeavour| +ҵ N emotion|,endeavour|,desired| + N emotion|,salute|¾,desired| + V respect| + N tool|þ,*look|,#self| + N tool|þ,@put| + N tool|þ,@put|,#image|ͼ +Ƭ N part|,%tool|þ,#look| +̨ N furniture|Ҿ,*MakeUp|ױ +ͷ N attribute|,scene|,&inanimate| +ͷ N part|,%tool|þ,#look| + N tool|þ,*look| + N tool|þ,*look|,#self| + N facilities|ʩ,route|· + N image|ͼ,linear|,straight|ֱ + N method| + V flow| +ֱ ADJ aValue|ֵ,form|״,upright| + N character|,(China|й) + N disease| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V attack| + ADJ aValue|ֵ,range|,all|ȫ + ADV {emphasis|ǿ} +Ȼ ADV {emphasis|ǿ} + V HaveContest| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete|,scope=VehicleGo|ʻ + V compete|,scope=swim| + N fact|,exercise|,sport| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete| +Ͷ V HaveContest|,scope=propose|,#price|۸,commercial| + V HaveContest| + V HaveContest|,scope=sell|,commercial| +ѡ V engage|,content=select|ѡ,politics| + V HaveContest| + ADJ aValue|ֵ,ability|,able|,HaveContest| + V human|,*HaveContest| + N human|,*HaveContest| + N fact|,exercise|,sport| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V clean|ʹ + N human|,entertainment| +ֵ N attribute|,value|ֵ,&produce|,industrial| + N quantity|,amount|,pure|,&physical| + V clean|ʹ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + V excrete|й + N place|ط,spotless|,desired|,religion|ڽ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + V add| +ֵ N attribute|,value|ֵ,&physical| + N attribute|,weight|,&physical| +׬ V earn|׬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright|,#eye| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + N attribute|,circumstances|,embarrassed|Ϊ,&human|,&organization|֯ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ +̬ V attribute|,bearing|̬,&human|,embarrassed|Ϊ + V hold| + V pull| + V MakeTrouble| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ + V worried|ż + V cure|ҽ + V investigate| + V research|о + V handle| + N process|,ending|ĩ + ADV {emphasis|ǿ} + V amend| + V assemble|ۼ + V twine| + N human|,*obstruct|ֹ + V keep| + N human|,mass|,*obstruct|ֹ +Ա N human|,*check| + V MakeWorried| + V tie| + N fact|,quarrel| + N fact|,quarrel| + V ComeTogether| + V assemble|ۼ +ƫ V amend|,content=wrong| + V amend| + NUM qValue|ֵ,amount|,cardinal|,mass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +² N part|,%vegetable|߲,embryo|,$eat| +² N vegetable|߲ +» N part|,%vegetable|߲,embryo|,$eat| +» N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| +ñ V farewell|,TimeRange=TimeLong| +ò V ill|̬,TimeRange=TimeLong| +ö֮ ADJ aValue|ֵ,duration|,TimeLong| +ú N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless|,TimeRange=TimeLong| +þ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +þ ADJ aValue|ֵ,duration|,TimeLong| +ϲ ADJ aValue|ֵ,property|,^$decide| +Υ V farewell| + ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| + N {duration|} + V cure|ҽ + NUM qValue|ֵ,amount|,cardinal|,mass| + N time|ʱ,TenDays|Ѯ +Ź N stationery|ľ,@drill|ϰ,#character| +ţ֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ +ţһë ADJ qValue|ֵ,amount|,few| +Ȫ N place|ط,humanized|,#die| +ѧ N community|,ProperName|ר,politics|,(China|й) +һ V lucky| + N sky| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + N qValue|ֵ,rate|,BecomeLess|,commercial| + N place|ط,country|,ProperName|ר,(China|й) + N drinks|Ʒ,$addict|Ⱥ +ư N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưɼ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưŮ N human|,#occupation|ְλ,*entertain|д,female|Ů +Ʊ N tool|þ,cubic|,@put|,#drinks|Ʒ +Ʋ N food|ʳƷ,#drinks|Ʒ +Ʋ N food|ʳƷ,generic|ͳ +Ƴ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +Ƶ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +Ƶ N InstitutePlace|,@reside|ס,#tour|,commercial| +ƹ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ƹ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ +ƺ N tool|þ,cubic|,@put|,#drinks|Ʒ +ƻ N FlowerGrass|,?drinks|Ʒ +ƻ N fact|,drink|,recreation| +Ƽ N InstitutePlace|,commercial|,@drink|,@addict|Ⱥ +Ƽ N InstitutePlace|,commercial|,space|ռ,@eat| +ƾ N material|,liquid|Һ,$burn|,?medicine|ҩ + N attribute|,ability|,#drink|,#addictive|Ⱥ,&human| +¥ N InstitutePlace|,@eat|,commercial| +ĸ N material|,?drinks|Ʒ +ҷ N human|,unable|ӹ,undesired|ݬ + N food|ʳƷ + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ȫ N place|ط,city|,ProperName|ר,(China|й) + N human|,friend|,undesired|ݬ + N human|,#drinks|Ʒ,commercial| +ʯ N chemical|ѧ +ʳ N food|ʳƷ,generic|ͳ +ͽ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ + N part|,%human|,skin|Ƥ +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д +ҩ N material|,?drinks|Ʒ + N inanimate|,waste| + N part|,%AnimalHuman|,*smell| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N facilities|ʩ,space|ռ,@foster|,#livestock| +Ƿ N material|,*feed|ι,#crop|ׯ + V help| + V rescue| +ȹ V rescue|,patient=country| +Ȼ V rescue|,cure|ҽ +Ȼ N LandVehicle|,@cure|ҽ,medical|ҽ +Ȼ N InstitutePlace|,@rescue|,military|,medical|ҽ +Ȼ V cure|ҽ +Ȼ V remove|,patient=fire| +ȼ V help| +ȼ V rescue| +ȼ V help| +ȼ N human|,*help| +ȿ V help| + V rescue| + V rescue| + V rescue| +Ȧ N tool|þ,*rescue|,#swim| +ͧ N ship|,*rescue| + N community|,*help| + N human|,*help| + V cure|ҽ + V rescue|,StateIni=perish| + N human|,*help| + N human|,*rescue|,desired| +Ӧ V help| +Ԯ V help| + V rescue|,StateIni=unfortunate| + V cure|ҽ + V help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,past| + N attribute|,relatedness|,friend|,&human| + N human|,friend| +ɰ N fact| +ɰ N fact|,police| +ɲ V ill|̬,medical|ҽ +ɶ N emotion|,hate|,undesired|ݬ +ɽ N human|,friend| +ɽɽ N place|ط,city|,ProperName|ר,(US|) +ɾ N house|,original|ԭ + N law|ɷ,#time|ʱ + N time|ʱ,past| +ʯʱ N time|ʱ,past| +ʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,pattern|ʽ,old| +ַ N place|ط + N part|,%AnimalHuman|,bone| + N tool|þ,*grind|ĥ +ʳ N part|,%AnimalHuman|,*bite|ҧ + N human|,family|,male| +˸ N human|,family|,male| +˾ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| +ȡ V bear|е + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + V engage| + V fulfil|ʵ + V obey|ѭ + V relate|й + PREP {concerning} + CONJ {concession|ò} + ADV {emphasis|ǿ} +Ͳ V eat|,patient=edible|ʳ +ʹ CONJ {supplement|ݽ} +͵ ADV aValue|ֵ,location|λ,special| +͵ȡ V use|,patient=material| +Ͷ V engage|,content=study|ѧ,education| +ͷ V surrender| +ͷ V surrender| +ͽ ADJ aValue|ֵ,distance|,near| + V sleep|˯ + V undertake| + N human|,*undertake| + V estimate| + V be|,manner=emphasis|ǿ + CONJ {concession|ò} + ADJ {emphasis|ǿ} + ADV {emphasis|ǿ} +˵ ADV {supplement|ݽ} + CONJ {concession|ò} +λ V arrive|,location=location|λ + V finish| +ѧ V engage|,content=study|ѧ,education| +ҵ V obtain|õ,possession=occupation|ְλ +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ + V die| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V undertake|,content=official| + V sit| + V sit| + N character|,surname|,human|,ProperName|ר +Ϲ V salute|¾ +Ϲ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + V restrain|ֹ +в V catch|׽ס,police| +д V call|ٻ,detain|ס,police| +н ADJ aValue|ֵ,demeanor|,cautious|,undesired|ݬ +н V detain|ס,police| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V obey|ѭ,manner=stiff| +Ʊ N bill|Ʊ,*catch|׽ס,police| + V embarrassed|Ϊ + V restrain|ֹ +Ѻ V detain|ס,police| + V detain|ס,police| +ѻ V attack| +ѻ N human|,*firing|,military| + N character|,surname|,human|,ProperName|ר + N house| + V reside|ס + V situated| +Ӱ˼Σ V PayAttention|ע,target=dangerous|Σ +Ӷ V BeMember|,whole=many| +Ӹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +Ӽ V manage|,patient=family| +Ӽ N location|λ,middle| + CLAS unit|λ + V reside|ס +Ȩ N rights|Ȩ,*reside|ס + N human|,*reside|ס +Ժ N place|ط,#official|,@reside|ס + N place|ط,@reside|ס + N place|ط,@reside|ס +ίԱ N institution|,#reside|ס,politics|,(China|й) +Ȼ ADV {emphasis|ǿ} +ʿ N human|,religion|ڽ + N room| + N place|ط,@reside|ס +ί N institution|,#reside|ס,politics|,(China|й) +IJ V cherish|Ļ,content=evil| + N location|λ,middle| + V situated|,location=middle| +ס V reside|ס +ס N human|,*reside|ס + N livestock|,young| + N livestock|,young| + N FlowerGrass| +ջ N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + CLAS NounUnit|,&fact| + N attribute|,circumstances|,&entity|ʵ + N institution| + N tool|þ,*recreation| +ֲ ADJ aValue|ֵ,range|,pieced|Ƭ +ֲ N part|,%entity|ʵ +ֳ N human|,#occupation|ְλ,official|,*manage| +ִ ADJ aValue|ֵ,duration|,TimeShort| +ִ ADJ aValue|ֵ,width|,narrow|խ +ִ V uneasy| + V cure|ҽ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&place|ط,&organization|֯ + ADV aValue|ֵ,property|,RelateNot|޹ + N human|,*RelateNot|޹ + V delimit| + N attribute|,property|,delimit|,&event|¼ + V undergo|,content=delimit| + ADJ aValue|ֵ,range|,pieced|Ƭ + V masticate|׽ +׽ ADJ aValue|ֵ,ability|,able|,$masticate|׽ +׽ V masticate|׽ +׽ V think|˼ +׽ N human|,*masticate|׽ + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N symbol|,#calculate| + ADJ aValue|ֵ,range|,all|ȫ + V choose|ѡ + V do| + V lift| + N part|,%fact|,#act|ж + V quote| + V start|ʼ +ٰ V condole|° +ٰ V engage| +ٱ V accuse|ظ,police| +ٱ N human|,*accuse|ظ,police| +ٱ V congratulate|ף +ٲʤ ADJ qValue|ֵ,amount|,many| +ٲ V walk| +ٳ V quote| +ٴ N part|,%fact|,#act|ж +ٶ N part|,%fact|,#act|ж +ٷ ADV aValue|ֵ,range|,all|ȫ +ٹ N place|ط,country|,complete| +ٹ N place|ط,country|,complete| +ټ N community|,family|,complete| +ټ V recommend|Ƽ + V quote|,patient=example|ʵ +Ŀ V CausePartMove|,PatientPartof=eye| +岻 V hesitate|ԥ + V lift| + N human|,*succeed|ɹ,#exam|,past| + N tool|þ,*lift| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,reputation|,glorious|,desired| +˫ ADJ aValue|ֵ,importance|,important| +Ŀ V attract|,target=PayAttention|ע + V uprise| + V lift|,patient=hand| + V engage| +һ V deduce| +ծ V borrow|,possession=fund|ʽ,commercial| +֤ V quote|,content=information|Ϣ,#police| +ֹ N attribute|,behavior|ֹ,&human| + N fact|,sport| + ADJ aValue|ֵ,importance|,important| +ɥ V disappointed|ʧ +ɥ V sorrowful| + V ComeTogether| + V assemble|ۼ +۱ N place|ط,precious| +۱ϩ N chemical|ѧ +۱ V StateChange|̬ +۱ϩ N chemical|ѧ +۲ V eat| +۹ N tool|þ,*illuminate| +ۺ V ComeTogether| +ۺ N chemical|ѧ +ۻ N fact|,recreation| +ۻ V meet| +ۻ V gather|ɼ +ۼ V ComeTogether| +ۼ V assemble|ۼ +ۼ V gather|ɼ +ۼ V destroy|,military| +۽ V assemble|ۼ,patient=lights| +۾ V PayAttention|ע +۾ V reside|ס +۾ N place|ط,#reside|ס + V levy| +£ V ComeTogether| +ϩ N chemical|ѧ +ɳ V add| + V meet| +ϩ N material| +ϩ N chemical|ѧ + V assemble|ۼ,patient=human| + N chemical|ѧ + V refuse| + V reject|ؾ +ܲ V reject|ؾ,$catch|׽ס +ܸ V refuse|,content=pay| +ܾ V refuse| +ܾ V reject|ؾ +ܾ N human|,*deny| +ǧ֮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V refuse| +η V hide|,patient=wrong| + V depend| + N document|,*prove|֤ + N information|Ϣ + V occupy|ռ,military| + PREP {AccordingTo} +ݱ V obey|ѭ,content=information|Ϣ +ݳ ADV {comment|} +ݴ ADV {comment|} +ݵ N facilities|ʩ,space|ռ,military| + V debate| +ʵ ADV aValue|ֵ,behavior|ֹ,faithful| + V defend|,military| +˵ ADV {comment|} +Ϊ V cheat|ƭ +֪ ADV {comment|} +Ϥ ADV {comment|} + ADJ aValue|ֵ,size|ߴ,big| +ޱ V change| +޴ ADJ aValue|ֵ,area|,wide| +޴ ADJ aValue|ֵ,size|ߴ,big| +޴ ADJ qValue|ֵ,amount|,many| +޶ ADJ qValue|ֵ,amount|,many| +޷ ADJ aValue|ֵ,size|ߴ,big| +޸ N human|,#wealth|Ǯ,rich| +޸ N wealth|Ǯ,many| +޽ N tool|þ,*reward|,$GiveAsGift|,desired| +޽ N human|,able|,desired| +޿ N money|,many| + N water|ˮ + N waters|ˮ,linear| + N part|,%LandVehicle|,leg| + N ship| + N human|,able|,desired| + N human|,big| +ͷ N human|,able|,desired| + N sound|,loud| + N celestial| + N human|,*perform|,glorious|,entertainment| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N publications|鿯,great|ΰ + N money|,many| + N human|,#wealth|Ǯ,rich| + N human|,able|,desired| + CLAS NounUnit|,&part|,die| + N implement| + V own| + V provide| +߱ V own| + V sign|д,content=name| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,kind|,special| +˵ ADV {comment|} +΢ ADJ aValue|ֵ,range|,all|ȫ,desired| +˵ ADV {comment|} +˵ ADV {comment|} + V own| +б ADJ aValue|ֵ,ability|,able|,store| +еֿ ADJ aValue|ֵ,ability|,able|,resist| +кЯ ADJ aValue|ֵ,ability|,able|,$bring|Я,#weapon| +ʷ ADJ aValue|ֵ,value|ֵ,important| + ADJ aValue|ֵ,ability|,able|,teach| + N human|,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,attract| +ѹ ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$BeRecovered|ԭ + V from| + V from| + V occupy|ռ + V sit| + V break|۶ + N tool|þ,*break|۶ + N part|,%tool|þ,*bite|ҧ +ⴲ N machine|,*break|۶ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ֲ N InstitutePlace|,@associate|,@recreation|,#literature|,#entertainment|,#sport| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N expression| +䷨ N knowledge|֪ʶ,#regulation|,#language| + N symbol| + N expression| + V fear| + V fear| + N fire| + N tool|þ,*illuminate| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N shows| +籾 N publications|鿯,#shows|,entertainment| + V change| + V change|,manner=strong|ǿ +糡 N InstitutePlace|,@perform|,entertainment| +綾 ADJ aValue|ֵ,cleanness|ྻ,poison| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +Ŀ N document|,@announce|,#shows|,entertainment| + N fact|,#shows|,$BaseOn|,entertainment| +̳ N community|,#perform|,entertainment| +ʹ V painful|ʹ + N community|,*perform|,entertainment| + N affairs|,#perform|,entertainment| + N human|,#occupation|ְλ,*manage|,#perform|,entertainment| +Ժ N InstitutePlace|,@perform|,entertainment| + V add| + N image|ͼ,#shows| + N human|,*perform|,entertainment| + V finish|,#perform|,entertainment| + N attribute|,kind|,entertainment|,&shows| + N community|,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V abandon| + V donate| + N expenditure|,$levy| + V donate|,possession=money| + N expenditure|,$donate| + V abandon| + V die| + V donate| + V donate| + V donate| + V donate|,possession=money| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V tired|ƣ +뵡 V tired|ƣ + N experience|,#tired|ƣ + V FondOf|ϲ + V ThinkOf|˼ + N human|,family| + V FormChange|α + CLAS NounUnit|,&publications|鿯 + V bend| + N document| + N document|,*exam| + V engage| + N publications|鿯 + N shape| + N tool|þ,*measure| +̸ V withdraw|˳ + V bend| + V bend| + V engage| + V flee|,crime| + V resume|ָ +IJ N part|,%vegetable|߲,embryo|,$eat| +IJ N vegetable|߲ + N addictive|Ⱥ + N machine|,*lift| +Ҷ N InsectWorm|,*fly| + N CloudMist| + N document|,*exam| + N food|ʳƷ + N document| + N tool|þ,*store|,#document| + N material|,?clothing| + N tool|þ,#FlowerGrass| + V CausePartMove| + V break|۶ + V rob| +ȡ V rob| + V choose|ѡ + V dig|ھ + V dig|ھ,mine| + N machine|,*dig|ھ + ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ͷ ADJ aValue|ֵ,behavior|ֹ,stubborn| + N human|,official|,royal|,past| +ʿ N human|,official|,royal|,past| +ʿ N music|,entertainment| + V awake| + V know|֪ + V perception|֪ + V sleep|˯ + V know|֪ + V perception|֪ + V regard|Ϊ + V know|֪ + V understand| + V OutOfOrder| + V decide| + V kill|ɱ,police| + ADV {neg|} + N result|,decide| + N human|,*decide| + N human|,*decide| + V HaveContest| + V ResultIn| + ADJ aValue|ֵ,importance|,important| + V decide| + N document|,#decide| + N aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + V fight| + N attribute|,will|־,&human|,&organization|֯ + V decide| + ADV {neg|} + V OutOfOrder| + V separate| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fact|,compete| +ʤ V HaveContest| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fact|,calculate|,commercial| + N aspiration|Ը,expect| + V willing|Ը +һ V HaveContest| + V decide| + N document|,#decide| +鰸 N document|,#decide| +ս V fight|,military| + N method| + V farewell| + N method|,*succeed|ɹ + V OwnNot| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,special| + V separate| + V disappear|ʧ + N part|,%land|½,skin|Ƥ + ADV {neg|} + N music|,good|,desired| + V BeRecovered|ԭ +󲿷 ADJ qValue|ֵ,amount|,fragment| + ADJ qValue|ֵ,amount|,fragment| + ADJ aValue|ֵ,kind|,special| + V laugh|Ц + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,behavior|ֹ,free| + ADV aValue|ֵ,degree|̶,extreme| +Գɱ N expenditure|,commercial| +Զ N quantity|,amount|,&physical| +Ի ADJ aValue|ֵ,behavior|ֹ,free| + N quantity|,amount|,&physical| +ֵ N quantity|,amount|,&physical| + ADV {neg|} + N attribute|,ability|,special|,&human| + V disappear|ʧ + N attribute|,ability|,special|,&human| + V separate|,politics| + V BeBad|˥,female|Ů,#age|,#GiveBirth| + N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + N attribute|,environment|,$separate|,&physical| + V KeepSilence|˵ +· V BeUnable| +· N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʳ V refuse|,content=eat| +ʳ V uprise| + V OwnNot|,scope=gather|ɼ,agricultural|ũ + V disappointed|ʧ +޽ ADJ aValue|ֵ,kind|,special| + V prohibit|ֹ,ResultEvent=GiveBirth|,medical|ҽ +Ե ADJ aValue|ֵ,ability|,able|,exempt|,#transmit| +Ե N material|,*exempt|,#transmit|,#electricity| +Ե N material|,*exempt|,#transmit|,#electricity| + N attribute|,ability|,special|,&human| + N method|,special| +֢ N disease| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADV aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + V separate| + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADJ aValue|ֵ,content|,even| +һ ADJ aValue|ֵ,content|,even| + ADJ aValue|ֵ,content|,even| + N AlgaeFungi|ֲ + N bacteria|΢ + N medicine|ҩ,#bacteria|΢ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N army|,generic|ͳ + N part|,%army| + N publications|鿯,news|,military|,(China|й) + N weapon| + V HaveContest|,scope=weapon|,military| + V control|,patient=weapon|,military| + V restrain|ֹ,patient=weapon|,military| + N army| + N part|,%army|,military| + N human|,#occupation|ְλ,official|,military| + N LandVehicle|,army|,military| + N weapon|,*stab| + N army| + N human|,undesired|ݬ,#military| + N law|ɷ,military| + N punish|,AccordingTo=law|ɷ,military| + N army| + N expenditure|,military| + N part|,army|,#place|ط,military| + N clothing|,military| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,military| + N affairs|,industrial|,military| + N affairs|,industrial|,military| + N result|,desired|,military| + N human|,#occupation|ְλ,official|,military| +ʿ N human|,#military| +ܻ N institution|,military| + N system|ƶ,military|,undesired|ݬ + N human|,undesired|ݬ,#military| + N MusicTool|,military| + N mark|־,military| + N weapon|,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N human|,commercial|,#military| + N fact|,military|,secret| + N plans|滮,military| + N attribute|,status|,#army|,&human|,military| + N law|ɷ,military| + N weapon|,ship|,military| + N army| + N army| + N music|,military| +ֶ N part|,%army|,#music|,military| + N part|,%army|,#music|,military| + N fact|,salute|¾,military| + N attribute|,strength|,&army|,military| +ˮƽ N attribute|,rank|ȼ,military| + N food|ʳƷ,military| + N human|,family|,#military| + N attribute|,age|,#military|,&human| + N text|,*order|,military| +ɽ N aValue|ֵ,behavior|ֹ,strict| +״ N text|,*guarantee|֤ +״ N text|,*guarantee|֤,military| + N army| +ñ N clothing|,#head|ͷ,military| + N human|,mass|,#military| +Ʒ N artifact|˹,military| + N mark|־,military| + N attribute|,circumstances|,&fight|,military| + N part|,army|,#place|ط,military| +Ȩ N attribute|,power|,&human|,&organization|֯,military| + N human|,#occupation|ְλ,military| +ʦ N human|,#occupation|ְλ,friend|,military| +ʷ N fact|,#time|ʱ,military| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,#occupation|ְλ,#military| + N affairs|,military| +· N human|,#occupation|ְλ,*judge|ö,military| +·ͥ N institution|,police|,*judge|ö,military| +¹ҵ N affairs|,industrial|,military| +¹ίԱ N institution|,military| +» V ize|̬,military| +» N place|ط,military| +¼ N community|,military| +¼ N human|,#knowledge|֪ʶ,military| + N attribute|,strength|,&army|,military| +ʩ N facilities|ʩ,military| +̬ N attribute|,circumstances|,&physical|,military| + N affairs|,exercise|,sport|,military| +ѧ N human|,#knowledge|֪ʶ,military| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education|,military| +ռ N human|,*occupy|ռ,military| + N human|,family|,#military| + N affairs|,exercise|,sport|,military| + N army| + N part|,%army| + N attribute|,strength|,&army|,military| +ί N institution|,military|,ProperName|ר,(China|й) + N affairs|,military| + N attribute|,rank|ȼ,&official|,military| +У N InstitutePlace|,@teach|,@study|ѧ,education|,military| +е N weapon| +е N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N attribute|,behavior|ֹ,&army|,military| + N artifact|˹,$provide|,military| + N human|,#occupation|ְλ,military| +ѵ N fact|,drill|ϰ,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,military| + N clothing|,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס + ADJ aValue|ֵ,ability|,able|,$use|,military| + N affairs|,military| +ְ N attribute|,occupation|ְλ,military|,&human| + N army| +ת N aValue|ֵ,property|,alter|ı +װ N clothing|,military| + N human|,#occupation|ְλ,official|,royal| + N human|,male| + N human|,official| + N human|,#occupation|ְλ,official|,royal| + N human|,#occupation|ְλ,official|,royal| + N system|ƶ,politics|,royal| + N human| +ר N system|ƶ,politics|,royal| + N human|,desired|,gracious| + N human|,good|,desired| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strict| + N land|½ + ADJ aValue|ֵ,slope|¶,steep| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V finish| + V finish| + V dredge|ͨ +ബ N ship| + N place|ط,#human| + N livestock|,superior| + N livestock|,superior| + ECHO sound| + N place|ط,capital|,ProperName|ר,(Afghanistan|) +¡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cameroon|¡) +¡ N place|ط,country|,ProperName|ר,(Africa|) +ʲ N place|ط,city|,ProperName|ר,(China|й) +ʲ׶ N place|ط,ProperName|ר + N place|ط,capital|,ProperName|ר,(Sudan|յ) + N drinks|Ʒ +ȵ N InstitutePlace|,@drink|,commercial| +ȶ N material|,?drinks|Ʒ +ȹ N InstitutePlace|,@drink|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N InstitutePlace|,@drink|,commercial| + N material|,?food|ʳƷ + V block|ס + N character|,surname|,human|,ProperName|ר + N coupon|Ʊ֤,#money| + V hold| + V restrain|ֹ + V stay|ͣ + N tool|þ,*fix|ס + CLAS unit|λ,&heat| +ǹ N weapon|,*firing| + N LandVehicle|,*transport|,#inanimate| + N tool|þ,*measure| + N tool|þ,*fix|ס + V OutOfOrder| + V OutOfOrder|,military| + V stay|ͣ +ϣ N fact|,recreation|,sing| + N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) +ɴ N language|,#country|,ProperName|ר +Ƭ N account|,@record|¼ + N material|,?clothing| +ǯ N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Qatar|) + N place|ط,country|,ProperName|ר,(Africa|) +Ƕ N money|,(Qatar|) + N human|,(Qatar|) +ͨ N image|ͼ +ס V block|ס + N part|,%place|ط,mouth|,@check| + N tool|þ,*fix|ס + V vomit|³ +Ѫ N disease| +Ѫ V vomit|³,medical|ҽ + V CauseToLive|ʹ + V StateChange|̬ + V TurnOn| + V cultivate| + V dig|ھ + V disperse|ɢ + V engage| + V establish| + V function| + V manage| + V open| + V pay| + V remove| + V start|ʼ + V start|ʼ,content=leave|뿪 + V write|д +...֮Ⱥ N become|Ϊ,isa=example|ʵ + V start|ʼ,content=leave|뿪 + V establish| + N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + N attribute|,size|ߴ,&publications|鿯 + V start|ʼ + V announce|,commercial| + V gather|ɼ,industrial| + V begin|ʼ + N part|,shows|,head|ͷ + N part|,text|,head|ͷ + V CauseToLive|ʹ + V drive|Ԧ + V drive|Ԧ,patient=LandVehicle| +ϲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + V believe| + V discharge| + V start|ʼ + N human|,*establish| + N time|ʱ,spring|,early| + V attack| + V cure|ҽ + V GoBackward| + V decline|˥ + V teach| + V escape| + V guide| + V function| + N process|,early| + V CauseToGrow|ʹɳ + V cultivate| + V gather|ɼ,industrial| +ƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + N place|ط,@research|о,@produce| +Э N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + V start|ʼ,content=eat| + V DoSum| + V appear| + V cease|ͣ,content=prohibit|ֹ +Թ N disease| + N place|ط,city|,ProperName|ר,(China|й) + V LeaveFor|ǰ + V start|ʼ,content=do| + N part|,%artifact|˹,*OpenShut| + V StateChange|̬ + V establish|,patient=country|,politics| + V function| + V start|ʼ,content=VehicleGo|ʻ + N facilities|ʩ,route|·,#waters|ˮ + V StateChange|̬ + V establish|,content=account|,commercial| + V pregnant| + V StateChange|̬ + V prosper|,scope=mental| + V satisfied| + V cultivate|,agricultural|ũ + V engage| + V engage|,content=communicate| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=fight|,military| + V TurnOn| + V propose|,content=price|۸ + V display|չʾ,commercial| + N attribute|,width|,&room| + V announce|,content=reward| + V start|ʼ,content=teach| + V indulge| + V GoForward|ǰ + V cease|ͣ,content=prohibit|ֹ + N part|,%compete|,head|ͷ,sport| + V write|д + V exam| + V read| + V dig|ھ + V start|ʼ,content=teach|,education| + V start|ʼ,education| + V cultivate|,agricultural|ũ + V sharpen|ʹ + V speak|˵ + V OutOfOrder| + V wounded| +쳵 V SpeedUp|ӿ +쳵 V VieFor| + V gather|ɼ,possession=mine|,industrial| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=planting|ֲ,agricultural|ũ + V start|ʼ,content=collect|,agricultural|ũ + V quote| + V FormChange|α +· V build|,PatientProduct=route|· +· N part|,linear|,#electricity| +·ȷ N human|,guide| +̵ V ExpressAgreement|ʾͬ + N place|ط,capital|,ProperName|ר,(Egypt|) + V open|,patient=part| +ź V succeed|ɹ,time=begin|ʼ +żɽ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +żɽ V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ʿ N human|,wise|,desired| +Ļ V begin|ʼ +Ļ N text|,#begin|ʼ + V start|ʼ,content=TakePicture| + V start|ʼ,commercial| +̻ N quantity|,rate|,#start|ʼ,&money|,commercial| +̼ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| +̼۸ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| + V ExpressAgainst|Ǵ + V firing|,military| +ƪ N part|,information|Ϣ,head|ͷ +Ʊ V announce| +Ʊ V write|д,ContentProduct=bill|Ʊ,commercial| +ն N place|ط,city|,ProperName|ר,(South Africa|Ϸ) + V open| +ǹ V firing| +ǻ V speak|˵ + V understand| + V start|ʼ,compete| + V start|ʼ,content=compete|,sport| +ɽ V dig|ھ,industrial| +ɽ N human|,past|,#start|ʼ +ɽʦ N human|,past|,#start|ʼ + V conduct|ʵʩ,education| + V establish| +ʼ N process|,early| +ʼ V start|ʼ +ʿ N material|,?clothing| + V release|ͷ,police| + V start|ʼ,commercial| +ˮ N water|ˮ,$drink| +˾ N material|,?clothing| +̨ V start|ʼ,entertainment| +ٵ N process|,early| +ͥ V start|ʼ,police| +ͨ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ͷ V begin|ʼ +ͷ N process|,early| + V CauseNotToBe|ʹ֮ + V CauseToGrow|ʹɳ + V cultivate| + V dig|ھ + ADV aValue|ֵ,amount|,over| +Ц V please|ȡ + V LeaveFor|ǰ +θ V improve|,patient=aspiration|Ը,#eat| + V open|,patient=tool|þ + N expenditure| +С V flee| +С V stupefied|ľȻ + V joyful|ϲ + V please|ȡ + V tease|ȡ +ѧ V start|ʼ,education| + V laugh|Ц + V enrich|ʵ + V start|ʼ,entertainment| +ҵ V start|ʼ +ҵ V start|ʼ,commercial| +ҵ N human|,*establish| +ҹ V endeavour| +Դ V MakeBetter|Ż,#wealth|Ǯ + V dig|ھ,industrial| +ի N time|ʱ,festival|,@congratulate|ף,#eat|,religion|ڽ +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V start|ʼ +ս V start|ʼ,content=fight|,military| + V FormChange|α + V start|ʼ,commercial| + V pay|,commercial| + V write|д,ContentProduct=bill|Ʊ,commercial| + V start|ʼ,content=fight|,military| + V start|ʼ,content=levy| +֧ N expenditure| +֧ V pay| +֧ V pay|,possession=payment| + V explain|˵ + V endeavour| + V remove| + V wipe| + V dry| + N attribute|,kind|,&character|,&symbol| + N human|,$study|ѧ,$imitate|ģ,desired| +ģ N human|,$study|ѧ,$imitate|ģ,desired| + N attribute|,kind|,&character|,&symbol| + N attribute|,kind|,&character|,&symbol| + V win|ʤ + N music|,$sing|,#win|ʤ + V win|ʤ,GoBack| + ADJ aValue|ֵ,tolerance|,generous|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,undesired|ݬ +̾ V sigh|̾ + V print|ӡˢ + N publications|鿯,mass| + V publish| + N publications|鿯 + V publish| + N character|,surname|,human|,ProperName|ר + V endure| + V RegardAs| +Ƶһ ADJ aValue|ֵ,importance|,important| + N place|ط,capital|,ProperName|ר,(Australia|Ĵ) +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V check| + V investigate| + V investigate| + V investigate| + V investigate| +̽ V investigate| +̽ N human|,*investigate|,industrial| + V amend| + V check| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge| + N part|,%land|½,mouth| + N facilities|ʩ,#liquid|Һ,#crop|ׯ + ADJ aValue|ֵ,SmoothFinish|,rugged|,undesired|ݬ + V unfortunate| + N place|ط,capital|,ProperName|ר,(Uganda|ڸɴ) + V break|۶ + V gather|ɼ,possession=material|,#burn| + N tool|þ,*split|ƿ,*break|۶ + V break|۶ + V TakeCare| + V cure|ҽ + V depend| + V look| + V read| + V regard|Ϊ + V supervise| + V visit| + STRU {Vtry|} + V cure|ҽ + V request|Ҫ,ResultEvent=cure|ҽ + V disgust| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V despise| + V RegardAs| + V perception|֪ + V perception|֪ + V regard|Ϊ + V treat|Դ + V perception|֪,means=look| + V PayAttention|ע + ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ + V undergo|,content=predict|Ԥ,#BecomeLess|,commercial| + N standpoint| +ʹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V TakeCare| + V supervise| + V undergo|,content=predict|Ԥ,#prosper| + V TakeCare|,medical|ҽ + N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ + N human|,*TakeCare|,medical|ҽ + V TakeCare|,patient=house| + V perception|֪,means=look| + V TakeCare| + V cure|ҽ + V look| + V read| + V visit| + ADV {comment|} + V supervise|,content=mouth| + V look|,content=price|۸ + V perception|֪ + V imitate|ģ + V be| + ADV {comment|} + V despise| + V perception|֪ + V recreation| + V FondOf|ϲ +ȥ ADV {comment|} + N human|,#occupation|ְλ,police| + V supervise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,#country|,politics|,TimeShort| +̨ N facilities|ʩ,space|ռ,@look| +ͷ N thing|,*worth|ֵ,#look| +ͷ V thing|,*worth|ֵ,#read| +͸ V know|֪ +͸ V perception|֪ + V visit| + ADV {comment|} +ҽ V request|Ҫ,ResultEvent=cure|ҽ + V undergo|,content=predict|Ԥ,#BecomeMore|,commercial| + V FondOf|ϲ + V PayAttention|ע +׼ V believe| + V RegardAs| + V RegardAs| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N attribute|,physique|,&animate| + N character|,surname|,human|,ProperName|ר + N machine|,*collect|,#crop|ׯ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| +ܰ N FlowerGrass| +Ҹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +̩ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ͭ N metal|,material| +ׯ N facilities|ʩ,route|· + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V sing|,manner=strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V help|,scope=wealth|Ǯ,manner=generous| + V die|,manner=brave| +֮ V help|,scope=wealth|Ǯ,manner=generous| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + N part|,%plant|ֲ,skin|Ƥ +˰ V MakeLiving|ı,manner=poor| + N part|,%plant|ֲ,skin|Ƥ + N physical|,waste| + V CarryOnBack| + V lift| + V pick|ʰ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V HaveContest| + V equal| + V fight| + V refuse| + V resist| + V withstand|ס + V refute| + V refute|,police| + N human|,*refute| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#disease| +ס V WithstandNot|ס +ס V withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#illuminate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#MakeTrouble| + V fight|,partner=waterless| + V HaveContest| + V equal| + V fight|,partner=waterlogging| +Ѫ N medicine|ҩ + V resist| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#electricity| + V refuse| + V reject|ؾ + ADJ aValue|ֵ,ability|,able|,destroy|,#bacteria|΢,medical|ҽ + N medicine|ҩ,*destroy|,#bacteria|΢ +ǿ N attribute|,strength|,withstand|ס,#straighten|ֱ,&inanimate| +Ԯ N fact|,*fight|,ProperName|ר,military| + V disobey|Υ,content=order| +ĥ N attribute|,strength|,obstruct|ֹ,#grind|ĥ,&thing| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| + N fact|,*fight|,ProperName|ר,military| +ս N fact|,*fight|,ProperName|ר,military| + N medicine|ҩ,*destroy|,#bacteria|΢ +˰ V refuse|,content=pay| + V accuse|ظ,police| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + N part|,%human|,*destroy|,#bacteria|΢,#medical|ҽ +ѹǿ N attribute|,strength|,withstand|ס,#press|ѹ,&inanimate| +ҩ ADJ aValue|ֵ,ability|,able|,withstand|ס,#medical|ҽ + V protest| + N human|,*protest| + V resist| +ԭ N physical|,medical|ҽ + V fight|,content=unfortunate|,#weather| +ս V fight|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shiver| + V resist| +ס V withstand|ס + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V excited| + V WeatherBad| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N disease| + V dry| + N furniture|Ҿ,space|ռ,$WarmUp|,@sleep|˯ +ͷ N part|,%furniture|Ҿ,$WarmUp|,@sleep|˯ + N furniture|Ҿ,space|ռ,@put| + V check| + V exam| +ʿ V exam|,purpose=include|,education| +ȡ V fail|ʧ,scope=exam|,result=include|,education| + V fail|ʧ,scope=exam|,result=include|,education| + V check| + V investigate| + N community|,*investigate| + N place|ط,@exam| +ѧ V exam|,purpose=include|,education| + V amend| + V research|о + ADJ knowledge|֪ʶ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#past| +ѧ N human|,#knowledge|֪ʶ + N human|,#exam| + V check| + V exam| + ADJ aValue|ֵ,quality|,refined|,desired| + V investigate| + V research|о + N document|,#exam| + N beast| + N thinking|˼ + V think|˼ + V estimate| + V check| +ȡ V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + N human|,unripe|,*exam| + V exam| +˶ʿ V exam|,purpose=include|,education| + V exam|,purpose=include|,education| +о V exam|,purpose=include|,education| + V exam| + N fact|,exam|,important| +֤ V research|о + V beat| + V punish| + N document|,$copy|д + N material|,?clothing| + V beat| + V punish| + V interrogate| + V interrogate|,police| + V WarmUp| + V cook| + V WarmUp| + N food|ʳƷ + N tool|þ,@dry|,*cook| +Ѽ N food|ʳƷ + N addictive|Ⱥ + V BeNear| + V approach|ӽ + V depend| + V lean|п + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%furniture|Ҿ + V approach|ӽ,LocationFin=edge| +ס ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ס ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ס ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ס ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,@lean|п +ı N human|,$employ| + V BeNear| + ADJ aValue|ֵ,distance|,near| + V approach|ӽ +£ V approach|ӽ +ɽ N human|,friend| +ɽɽ V use|,patient=material| +ɽɽˮˮ V use|,patient=material| + N character|,(China|й) + N stone|ʯ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V request|Ҫ + V ExpressAgainst|Ǵ + N character|,surname|,human|,ProperName|ר + N part|,%plant|ֲ,limb|֫ + N part|,%tool|þ,arm| +¶ N community|,ProperName|ר,(China|й) + CLAS NounUnit|,&plant|ֲ + V beat| +İ V disable|м,scope=speak|˵ +Ĵ V beat| +Ŀİ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +Ŀİ V walk| +Ŀײײ V walk| + V bump|ײ + V quarrel| +ͷ V salute|¾ +ͷ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&physical| + N shape|,round|Բ +״ ADJ aValue|ֵ,form|״ + N attribute|,kind|,&thing| + N part|,%organization|֯ +ư ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +Ƴ N human|,#occupation|ְλ,official|,*manage| +ƶ N money|,(Nicaragua|) +ƻ N publications|鿯 +Ƽ N knowledge|֪ʶ +Ƽ N community|,*research|о,#knowledge|֪ʶ +Ƽ ADJ aValue|ֵ,kind|,#knowledge|֪ʶ +ƽ N knowledge|֪ʶ,education| +ƽƬ N shows|,#knowledge|֪ʶ,education| +ƾ V exam|,past|,royal| + N money|,(Costa Rica|˹) + N money|,(El Salvador|߶) +¡ N place|ط,city|,ProperName|ר,(Germany|¹) + N place|ط,capital|,ProperName|ר,(Sri Lanka|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Comoros|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħ޷ N money|,(Comoros|Ħ) +Ŀ N part|,%knowledge|֪ʶ +ɿ N place|ط,capital|,ProperName|ר,(Guinea|) + N knowledge|֪ʶ + N language|,#country|,ProperName|ר + N part|,%organization|֯,#employee|Ա + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kuwait|) + N place|ط,country|,ProperName|ר,(Asia|) +س N place|ط,capital|,ProperName|ר,(Kuwait|) + N human|,(Kuwait|) +ί N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) + N language|,#country|,ProperName|ר +Э N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +ѧ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ѧ N knowledge|֪ʶ +ѧ V ize|̬,PatientAttribute=knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ѧо N affairs|,research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N fact|,research|о + N InstitutePlace|,*research|о,#knowledge|֪ʶ +Ŀ N affairs|,#research|о,#knowledge|֪ʶ +Ա N human|,#occupation|ְλ,employee|Ա + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ +Dz N fish| + V pant| +ȴ V pant| + N disease| + V pant| + ADJ aValue|ֵ,standard|׼,average|,desired| + V fit|ʺ + V worth|ֵ +ɰ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ ADJ aValue|ֵ,ability|,able|,$store| +ɱ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ɱ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +ɱȼ۸ N attribute|,price|۸,lasting|,&artifact|˹,commercial| +ɱȽ ADJ aValue|ֵ,ability|,able|,$compare|Ƚ +ɱ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$compile|༭,#software| +ɱ ADJ aValue|ֵ,ability|,able|,$change| +ɱӲ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ绤 ADJ aValue|ֵ,ability|,able|,$refute| +ɱ ADJ aValue|ֵ,ability|,able|,$debate| +ɱ ADJ aValue|ֵ,ability|,able|,$express|ʾ +ɲ ADJ aValue|ֵ,ability|,able|,$refute| +ɲ ADJ aValue|ֵ,ability|,able|,$remove| +ɲ ADJ aValue|ֵ,ability|,able|,$use| +ɲ ADJ aValue|ֵ,ability|,able|,$control| +ɲ ADJ aValue|ֵ,ability|,able|,$handle| +ɲ ADJ aValue|ֵ,ability|,able|,$measure| +ɲ ADJ aValue|ֵ,ability|,able|,$perception|֪ +ɲж ADJ aValue|ֵ,ability|,able|,$dismount|ж +ɳ ADJ aValue|ֵ,ability|,able|,$return| +ɳ ADJ aValue|ֵ,ability|,able|,$remove| +ɳ ADJ aValue|ֵ,ability|,able|,$forming|γ +ɳ֮ N time|ʱ,important| +ɳ ADJ aValue|ֵ,ability|,able|,GoOn| +ɳ ADJ aValue|ֵ,ability|,able|,withstand|ס +ɳ ADJ attribute|,ability|,able|,withstand|ס,&organization|֯,&event|¼ +ɳ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ɳ ADJ aValue|ֵ,ability|,able|,$satisfied| +ɳ ADJ aValue|ֵ,ability|,able|,$lend|,commercial| +ɴ ADJ aValue|ֵ,ability|,able|,$store| +ɴ͸ ADJ aValue|ֵ,ability|,able|,$stab| +ɴ ADJ aValue|ֵ,ability|,able|,$PutOn| +ɴ ADJ aValue|ֵ,ability|,able|,$disseminate| +ɴС ADJ aValue|ֵ,ability|,able|,$adjust| +ɵõ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɵ N medicine|ҩ +ɵǼ ADJ aValue|ֵ,ability|,able|,$record|¼ +ɵݽ ADJ aValue|ֵ,ability|,able|,$subtract| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɶ ADJ aValue|ֵ,ability|,able|,$decide| +ɶ ADJ aValue|ֵ,ability|,able|,$understand| +ɶ ADJ attribute|,ability|,able|,$understand|,&information|Ϣ +ɶҡ ADJ aValue|ֵ,ability|,able|,$shake|ҡ +ɶ ADJ aValue|ֵ,ability|,able|,$read| +ɶ ADJ attribute|,ability|,able|,$read|,&information|Ϣ +ɶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɷ ADJ aValue|ֵ,ability|,able|,$announce| +ɷ ADJ aValue|ֵ,ability|,able|,$oppose| +ɷ ADJ aValue|ֵ,ability|,withstand|ס,desired| +ɷ ADJ aValue|ֵ,ability|,able|,$defend| +ɷֹ ADJ aValue|ֵ,ability|,able|,$escape| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷֽ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$classify| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$analyze| +ɷ N aspiration|Ը +ɷ CONJ {question|} +ɸ ADJ aValue|ֵ,ability|,able|,$amend| +ɸ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɸ ADJ aValue|ֵ,ability|,able|,$cultivate| +ɸ ADJ aValue|ֵ,ability|,able|,$alter|ı +ɸ ADJ aValue|ֵ,ability|,able|,$improve| +ɹ ADJ aValue|ֵ,ability|,able|,$occupy|ռ +ɹʹ ADJ aValue|ֵ,ability|,able|,$use| +ɹ ADJ aValue|ֵ,ability|,able|,$estimate|,commercial| +ɹ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ɹ ADJ aValue|ֵ,degree|̶,very| +ɹ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɹ黹 ADJ aValue|ֵ,ability|,able|,$return| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultIn| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultFrom|Ե +ɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ɺ N human|,official|,past| +ɺ ADV aValue|ֵ,time|ʱ,proper| +ɺͽ ADJ aValue|ֵ,ability|,able|,$reconcile| +ɺͽ N attribute|,ability|,reconcile|,&organization|֯ +ɺ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɻ ADJ aValue|ֵ,ability|,able|,$exchange| +ɻ ADJ aValue|ֵ,ability|,able|,$weaken| +ɻӷ ADJ aValue|ֵ,ability|,able|,$disappear|ʧ +ɻָ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻظ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɻ ADJ aValue|ֵ,ability|,able|,$LookBack| +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɼ ADJ aValue|ֵ,ability|,able|,$count| +ɼ ADJ aValue|ֵ,ability|,able|,$calculate| +ɼǵ ADJ aValue|ֵ,ability|,able|,$remember|ǵ +ɼ̳ ADJ aValue|ֵ,ability|,able|,$receive| +ɼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɼӹ ADJ aValue|ֵ,ability|,able|,$produce| +ɼٶ ADJ aValue|ֵ,ability|,able|,$deduce| +ɼ ADJ aValue|ֵ,ability|,able|,$fit|ʺ +ɼ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɼ ADJ aValue|ֵ,ability|,able|,$weaken| +ɼ CONJ {comment|} +ɼ N lights| +ɽ ADJ aValue|ֵ,ability|,able|,$exchange| +ɽ̸ ADJ aValue|ֵ,ability|,able|,$talk|̸ +ɽӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +ɽ ADJ aValue|ֵ,ability|,able|,$accept| +ɽ ADJ aValue|ֵ,ability|,able|,$handle| +ɽ ADJ aValue|ֵ,ability|,able|,$explain|˵ +ɽ ADJ aValue|ֵ,ability|,able|,$transport| +ɾ ADJ aValue|ֵ,ability|,frighten|Ż +ɾ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ɾ ADJ aValue|ֵ,ability|,able|,$amend| +ɾס ADJ aValue|ֵ,ability|,able|,@reside|ס +ɾܾ ADJ aValue|ֵ,ability|,able|,$refuse| +ɾ ADJ aValue|ֵ,ability|,able|,$decide| +ɿ N medicine|ҩ,?addictive|Ⱥ +ɿ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ɿ ADJ aValue|ֵ,trueness|α,true|,desired| +ɿ N human|,true|,desired| +ɿ N attribute|,trueness|α,true|,&thing| +ɿ N drinks|Ʒ +ɿ ADJ aValue|ֵ,ability|,able|,$carve| +ɿ ADJ aValue|ֵ,ability|,able|,$control| +ɿع N tool|þ,*control|,#electricity| +ɿع N tool|þ,*control|,#electricity| +ɿ ADJ aValue|ֵ,taste|ζ,good|,desired| +ɿڿ N drinks|Ʒ +ɿˡ ADJ aValue|ֵ,ability|,able|,$forgive|ԭ +ɿˡ N attribute|,ability|,$forgive|ԭ,&act|ж + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,$understand| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V pity| +о ADJ aValue|ֵ,ability|,able|,$propose| +¼ ADJ aValue|ֵ,ability|,able|,$record|¼ +û ADJ aValue|ֵ,ability|,able|,$levy| +ģ ADJ aValue|ֵ,ability|,able|,$imitate|ģ +Ĩ ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,possibility|,possible| + N attribute|,possibility|,possible|,&event|¼ + ADV {comment|} +ܱԽ ADJ aValue|ֵ,ability|,able|,$surpass|ǿ + N attribute|,possibility|,&event|¼ + ADJ aValue|ֵ,ability|,able|,reverse|ߵ + N attribute|,ability|,able|,reverse|ߵ,&event|¼ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +µ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ʵ ADJ aValue|ֵ,ability|,able|,$climb|ʵ +Ʒ ADJ aValue|ֵ,ability|,able|,$savor| + ADJ aValue|ֵ,ability|,able|,$sit| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$rescue| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,$request|Ҫ +ȡ ADJ aValue|ֵ,property|,worth|ֵ,desired| +ȡ ADJ aValue|ֵ,ability|,able|,$remove| +Ȧɵ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$endure| + ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ + N attribute|,ability|,able|,StateChange|̬,&physical| + ADJ aValue|ֵ,ability|,able|,$perform| +ˮ ADJ aValue|ֵ,ability|,able|,$walk| + ADJ fit|ʺ +͸ ADJ aValue|ֵ,ability|,able|,$influence|Ӱ + ADJ aValue|ֵ,ability|,able|,$produce| +ʪ ADJ aValue|ֵ,ability|,able|,$moisten|ʪ +ʪ N attribute|,ability|,&moisten|ʪ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$eat| +ʳ N attribute|,ability|,able|,$eat|,&physical| + CONJ {but|} + ADV {emphasis|ǿ} + ADJ aValue|ֵ,ability|,able|,$use| +ջ ADJ aValue|ֵ,ability|,able|,$MoveItBack| +˵ ADJ aValue|ֵ,ability|,able|,$persuade|Ȱ˵ + ADJ aValue|ֵ,ability|,able|,awake| + ADJ aValue|ֵ,behavior|ֹ,flexible| + N attribute|,behavior|ֹ,flexible|,&thing| + ADJ aValue|ֵ,ability|,able|,$accuse|ظ +̾ ADJ aValue|ֵ,ability|,able|,$sorry|ϧ + ADJ aValue|ֵ,ability|,able|,$listen| +̸ͨн ADJ aValue|ֵ,ability|,able|,$discuss| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ƶ ADJ aValue|ֵ,ability|,able|,$deduce| +˻ ADJ aValue|ֵ,ability|,able|,$GoBack| +ڿ ADJ aValue|ֵ,ability|,able|,$satirize| + ADJ aValue|ֵ,ability|,able|,$resume|ָ + ADJ aValue|ֵ,possibility|,possible| +ɼ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +ν V be| + ADJ aValue|ֵ,ability|,able|,$abandon| +ϧ V sorry|ϧ +Ϩ ADJ aValue|ֵ,ability|,able|,$remove| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ +뵽 ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +֪ V deduce| + N attribute|,ability|,&sell| + ADJ aValue|ֵ,ability|,able|,$consume|ȡ +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| + ADJ aValue|ֵ,ability|,able|,$believe| +Ŷ N attribute|,ability|,able|,$believe|,&mental| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + N attribute|,ability|,able|,$fulfil|ʵ,&thinking|˼ +޸ ADJ aValue|ֵ,ability|,able|,$repair| + ADJ aValue|ֵ,ability|,able|,$repair| +ѡ ADJ aValue|ֵ,ability|,able|,$choose|ѡ +ѱ ADJ aValue|ֵ,ability|,able|,$cultivate| +ѹ ADJ aValue|ֵ,ability|,able|,$shrink|С +ѹե ADJ aValue|ֵ,ability|,able|,$SqueezeOut| +ӳ ADJ aValue|ֵ,ability|,able|,$enlarge| +֤ ADJ aValue|ֵ,ability|,able|,$prove|֤ + ADJ aValue|ֵ,ability|,able|,$ize|̬ +Һ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ҽ ADJ aValue|ֵ,ability|,able|,$cure|ҽ +ֲ N attribute|,ability|,$TakeAway|ᶯ,$install|װ,&software| +ֲ N attribute|,ability|,$TakeAway|ᶯ,$planting|ֲ,&plant|ֲ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| + AUX {modality|} +Ա ADJ aValue|ֵ,ability|,able|,$guarantee|֤,&human| +Ա N attribute|,ability|,able|,$guarantee|֤,&human| +Ա ADJ aValue|ֵ,ability|,able|,$escape| +Ա任 ADJ aValue|ֵ,ability|,able|,$replace| +Թ ADJ aValue|ֵ,ability|,able|,$estimate| +Ժ ADJ aValue|ֵ,ability|,able|,$respire| +Ի ADJ aValue|ֵ,ability|,able|,$obtain|õ +Լ ADJ aValue|ֵ,ability|,able|,$perception|֪ +Խܱ ADJ aValue|ֵ,ability|,able|,$guarantee|֤ + ADJ aValue|ֵ,ability|,able|,$satisfied| +ȷ ADJ aValue|ֵ,ability|,able|,$decide| +ʶ ADJ aValue|ֵ,ability|,able|,$know|֪ +ʡȥ ADJ aValue|ֵ,ability|,able|,$remove| +ʵ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$deduce| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ӻ ADJ aValue|ֵ,ability|,able|,$delay| + ADJ aValue|ֵ,ability|,able|,$quote| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$drink| + ADJ aValue|ֵ,ability|,able|,$quote| +ӡˢ ADJ aValue|ֵ,ability|,able|,$print|ӡˢ +п ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,ability|,able|,$exempt| +û ADJ aValue|ֵ,ability|,able|,$replace| +Ԥ ADJ aValue|ֵ,ability|,able|,$pay| +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +Ԥδ V time|ʱ,future|,$predict|Ԥ +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ + ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ + ADJ aValue|ֵ,ability|,able|,$add| +չ ADJ aValue|ֵ,ability|,able|,$unfold|̯ +۵ ADJ aValue|ֵ,ability|,able|,$fold|ߡ + ADJ aValue|ֵ,ability|,able|,$defeat|սʤ +˰ ADJ aValue|ֵ,performance|,#collect| + ADJ aValue|ֵ,ability|,able|,$debate| + ADJ aValue|ֵ,ability|,able|,$debate| +֤ʵ ADJ aValue|ֵ,ability|,able|,$prove|֤ +֪ ADJ aValue|ֵ,ability|,able|,$know|֪ +ִ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ,desired| +ֲ ADJ aValue|ֵ,ability|,able|,$planting|ֲ +ػ ADJ aValue|ֵ,ability|,able|,$obtain|õ +׷ ADJ aValue|ֵ,ability|,able|,$need| +׷ ADJ aValue|ֵ,ability|,able|,$follow| + ADJ aValue|ֵ,ability|,able|,$use| +֯ ADJ aValue|ֵ,ability|,able|,$establish| + V HungryThirsty| + V expect| + N aspiration|Ը,expect| + V expect| + V consume|ȡ + V defeat|սʤ + V delimit| + V occupy|ռ,military| + V restrain|ֹ + CLAS unit|λ,&weight| +˵ʤ V defeat|սʤ,partner=enemy|,military| +˷ V defeat|սʤ +˷ V defeat|սʤ,military| +˸ V TakeBack|ȡ +˸ N institution|,police|,ProperName|ר,politics|,(Soviet|) +˼ V loyal|Т +˿ V levy| + CLAS unit|λ,&weight| + N SportTool|˶ + N money|,(Czechoslovakia|ݿ) + N money|,(Czech|ݿ) + N money|,(Slovakia|˹工) + N place|ط,ProperName|ר,(Russia|˹) + N human|,(Crimea|) +ķֹ N house|,institution|,#politics|,(Russia|˹) +ֶ N human|,official|,politics|,ProperName|ר,(US|) +¡ V produce| +޵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Croatia|޵) +޵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ǹ͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ N language|,#country|,ProperName|ר + N money|,(Brazil|) +ڿ˼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʲ׶ N place|ط,ProperName|ר,(Asia|) +ʲ׶ N language|,#country|,ProperName|ר +͡ N disease| +߲ N money|,(Zambia|ޱ) + V restrain|ֹ + V carve| + V delimit| + N time|ʱ + N time|ʱ,special| +̰ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +̱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̲ݻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +̶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̶ N mark|־,linear|,#measurement| +̹ ADJ aValue|ֵ,content|,profound| +̹ V remember|ǵ +̻ V describe|д +̻ V carve| +̿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +̿ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V carve|,ContentProduct=character| + ADJ aValue|ֵ,source|Դ,different| + N human|,*buy|,commercial| + N human|,*engage| + N human|,*tour| + N human|,*visit| + N human|,commercial| +Ͳ N part|,%vehicle|ͨ,room|,@reside|ס +ͳ N LandVehicle|,*transport|,human| +ʹ N ship|,*transport|,#human| +ʹ V RegardAs|,entertainment| +Ͷ N community|,$invite|,*compete|,sport| +ͷ N food|ʳƷ +ͷ N room| +͹ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +͹ N attribute|,correctness|,correct|ȷ,desired|,&mental| +ͻ N human|,*buy|,#commercial| +ͻ N aircraft|,*transport|,human| +ͼ N community|,ProperName|ר,(China|й) + N human|,mass|,commercial| + N quantity|,amount|,&human|,commercial| + N ship|,*transport|,#human| + ADJ aValue|ֵ,fullness|,full| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,#tour| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human|,*visit| + N human|,commercial| + N human|,commercial| + N entity|ʵ + N room| +Դ N location|λ,@ExistAppear|,#human|,commercial| + V transport| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +ջ N InstitutePlace|,@reside|ס,#tour|,commercial| + N affairs|,education| + N expenditure|,$levy| + V levy| + N part|,%knowledge|֪ʶ,$study|ѧ,education| +α N readings|,*teach|,$study|ѧ,education| +α N readings|,#plans|滮,education| +γ N part|,%knowledge|֪ʶ,$study|ѧ,education| +μ N time|ʱ,@rest|Ϣ,education| +μ N exercise|,education| +ʱ N time|ʱ,education| +ʱ N time|ʱ,hour|ʱ,education| + N room|,education| +˰ N expenditure| +˰ V levy|,possession=expenditure|,commercial| + N room|,education| + N attribute|,content|,&information|Ϣ + N problem| + N part|,%InstitutePlace|,*research|о + ADJ aValue|ֵ,attachment|,education| + N readings| + N affairs|,education| +Ķ N affairs|,#read|,education| +ҵ N affairs|,#study|ѧ,education| + N text|,education| +ҵ N affairs|,education| + ADJ aValue|ֵ,attachment|,education| + V levy|,commercial| + N furniture|Ҿ,space|ռ,@put| + V agree|ͬ + V willing|Ը +϶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +϶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +϶ ADJ aValue|ֵ,correctness|,upright|,desired| +϶ V admit| +϶ V agree|ͬ + N human|,official|,politics|,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kenya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǰ N money|,(Kenya|) + N human|,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ػ ADJ place|ط,ProperName|ר,(US|) + V bite|ҧ +ҧ V bite|ҧ +Ӳͷ V endeavour| + V engage|,agricultural|ũ +ѻ V cultivate|,agricultural|ũ + N place|ط,#crop|ׯ,agricultural|ũ +ֳ V engage|,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V request|Ҫ,manner=sincere| + V request|Ҫ,manner=sincere| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,dented| + V damage| + V deceive|ƭ + N facilities|ʩ,mine| + V kill|ɱ + N part|,%earth|,mouth| +ӵ N facilities|ʩ,mine| +ӵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ӻ V damage| +ӿ ADJ aValue|ֵ,SmoothFinish|,rugged| +ɹƭ V cheat|ƭ +ƭ V cheat|ƭ + V cheat|ƭ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V endeavour| + V pant| + V speak|˵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V dump| + N location|λ,space|ռ,empty| + N sky| + N time|ʱ,#idle| +հ N attribute|,content|,empty|,&entity|ʵ +հ N weapon|,*firing| +ճ N part|,%AnimalHuman|,viscera| +ճ N LandVehicle|,$lend|,empty|,commercial| +յ N time|ʱ,#idle| +յ ADJ aValue|ֵ,fullness|,empty| +յ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +յ N method|,#speed|ٶ,#vehicle|ͨ +յ N place|ط +յ N place|ط,empty| +յ V adjust|,patient=temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ豸 N tool|þ,*adjust|,#temperature|¶ +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ն N part|,%inanimate|,mouth| +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +նԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +շ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +շ N house|,$lend| +շ V defend|,patient=sky| +ո ADJ aValue|ֵ,fullness|,empty| +ո N symbol|,#computer| +ջ V talk|̸,content=empty| +ջ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ռ N sky| +ռ N attribute|,space|ռ,&inanimate| +ռվ N facilities|ʩ,#aircraft|,#celestial| +ս V fall|,military| +ս N army|,#sky| +ս N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| +վ N army|,#sky| +տյ ADJ aValue|ֵ,fullness|,empty| +տҲ ADJ aValue|ֵ,fullness|,empty| +տ˵׻ V TalkNonsense|Ϲ˵ +տ ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V talk|̸,content=empty| + N {fullness|} + N phenomena|,unfortunate|,#aircraft|,undesired|ݬ + N gas| +ǰ ADJ aValue|ֵ,kind|,special| +ǰ ADJ aValue|ֵ,kind|,special| +ǻ N shape|,cubic| +Ա N human|,#occupation|ְλ,military| +ȱ V OwnNot| +ȱ N attribute|,occupation|ְλ,empty|,&human| + V fail|ʧ,scope=take|ȡ + N attribute|,speed|ٶ,&SelfMove| +̸ V talk|̸,content=empty| +̸ N human|,*TalkNonsense|Ϲ˵ +Ͷ V drop|Ͷ +ͷ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͷ N fact|,disloyal| +ͷ֧Ʊ N coupon|Ʊ֤,#wealth|Ǯ,fake|α +ͷ֧Ʊ N information|Ϣ,empty|,fake|α,undesired|ݬ +λ N location|λ,@sit|,empty| +Ϯ V attack|,military| +϶ N location|λ,space|ռ,empty| +϶ N time|ʱ,#idle| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,#idle| + N thought|ͷ,empty| + N human| + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,property|,^$occupy|ռ + N sky| + V transport| + ADJ aValue|ֵ,property|,^$load|װ +ս V fight|,location=sky| + N location|λ,%sky| +зʽ N fact|,check|,#army|,military| +¥ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +С N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| + N tool|þ,*WhileAway| +ת V rotate|ת + N part|,%inanimate|,mouth| + N time|ʱ,important| + V fear| + V frighten|Ż + V uneasy| +ֲ N emotion|,fear| +ֲ V fear| +ֲ N thing|,*frighten|Ż +ֲ N human|,*damage|,crime| +ֲ N knowledge|֪ʶ,#damage|,crime| +ֻ N emotion|,fear| +ֻ V fear| +־ V fear| + N AnimalHuman|,past| + ADV {comment|} + V frighten|Ż + N character|,surname|,human|,ProperName|ר + N part|,%inanimate|,mouth| +׵ N facilities|ʩ,route|· +׶ N part|,%inanimate|,mouth| +׾ N attribute|,length|,&mouth| +׾ N part|,%tool|þ,#TakePicture| + N facilities|ʩ,space|ռ,religion|ڽ +ȸ N bird| +϶ N part|,%inanimate|,mouth| +Ѩ N part|,%inanimate|,mouth| + N human|,ProperName|ר,past|,literature|,(China|й) + V accuse|ظ + V control| + V dump| +ظ V accuse|ظ + V accuse|ظ + V control| +Ʋ ADJ aValue|ֵ,possibility|,impossible|,$control| +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$control| +̨ N part|,%implement|,@control| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| + V dig|ھ + V research|о + V scratch|ץ +Ŷ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +۶ V LookFor|Ѱ,location=expression|,content=wrong| + N attribute|,age|,&livestock| + N part|,%AnimalHuman|,mouth| + N part|,%building|,mouth| + N part|,%inanimate|,mouth| + N part|,%tool|þ,*cut|,heart| +ڰ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ڱ N attribute|,reputation|,#praise|佱,&human|,&organization|֯ +ڲ N attribute|,ability|,&speak|˵ +ڲźõ N human|,able| +ڳ V disable|м,scope=speak|˵ +ڳ N attribute|,ability|,&speak|˵ +ڳ N sound|,#language| +ڳ N attribute|,odor|ζ,stinky|,undesired|ݬ +ڳ V boast| +ڴ N part|,%clothing|,cubic|,@put| +ڴ N tool|þ,cubic|,@put| +ڷ V accept| +ڷ V eat|,medical|ҽ +ڷҺ N medicine|ҩ +ڸ N attribute|,circumstances|,happy|,#eat|,&human| +ڸ N food|ʳƷ,generic|ͳ +ڸ V HungryThirsty| +ڸ N experience|,#eat| +ڹ N text|,*admit|,#crime|,#police| +ں N text| +ں N tool|þ,*MakeUp|ױ +ڻ N information|Ϣ,empty|,fake|α,undesired|ݬ +ڽ N part|,%AnimalHuman|,mouth| +ڽ V quarrel| +ڽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ھ N attribute|,size|ߴ,&mouth| +ھ N attribute|,standard|׼,&entity|ʵ +ڿ V HungryThirsty| +ڿ V speak|˵ + N food|ʳƷ + N text| +۸ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ģ N AlgaeFungi|ֲ,$eat| + N part|,%InsectWorm|,mouth| + N attribute|,bearing|̬,#speak|˵,&human| + N information|Ϣ,#language| + N sound|,#language| +ǻ N part|,%AnimalHuman|,mouth| +ǻ N part|,%InstitutePlace|,#mouth|,medical|ҽ + N MusicTool| + ADJ aValue|ֵ,age|,young|,#animal| + ADJ aValue|ֵ,habit|ϰ + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + N sound| + V debate| + N text|,$speak|˵ +ʵ N reason|,undesired|ݬ +ķ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V exam| + V exam|,education| + V teach| + V teach|,education| + V speak|˵ +ˮ N part|,%AnimalHuman|,liquid|Һ +ͷ ADJ aValue|ֵ,kind|,$speak|˵ +ͷ N expression| + N part|,%AnimalHuman|,mouth| +ζ N emotion|,FondOf|ϲ + N part|,%AnimalHuman|,mouth| + N sound|,#language| + N result|,wrong|,undesired|ݬ,#speak|˵ + N food|ʳƷ + N information|Ϣ,$speak|˵ + V translate| + N attribute|,SoundQuality|,&speak|˵ + N sound|,#language| + N language|,$speak|˵ + N tool|þ,*protect|,#mouth| + ADJ aValue|ֵ,habit|ϰ +ʷ V ExpressAgainst|Ǵ + N location|λ,#OutOfOrder| + N location|λ,#disease|,#wounded| + N part|,%inanimate|,mouth| + V beat| + V cover|ڸ + V detain|ס,police| + V fasten|˩ + V levy|,police| + N part|,%clothing|,*fasten|˩ + V reverse|ߵ + V subtract| +۳ V subtract| +۷ V subtract| +۽ V levy|,police| +ۿ V subtract|,patient=money| + V detain|ס,police| + V beat|,patient=SportTool|˶ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɱ V beat| +ѹ V detain|ס +Ѻ V detain|ס,police| +Ѻ V levy|,police| +Ѻ N fact|,sell|,police| + N part|,%clothing|,*fasten|˩ +ס V detain|ס + N part|,%clothing|,*fasten|˩ + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*attack| + N human|,undesired|ݬ,*rob|,crime| + N human|,undesired|ݬ,enemy| +ܳ N human|,undesired|ݬ,enemy| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V decline|˥ +ݳ N thinking|˼ +ݻ ADJ aValue|ֵ,color|ɫ,yellow| +ݼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ݽ ADJ aValue|ֵ,dampness|ʪ,dried| +ݽ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ݾ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ľ괺 V BeRecovered|ԭ +ɬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ˮ N time|ʱ,season|,waterless| +ή ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ή V decline|˥ +Ҷ N InsectWorm|,*fly| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +﷦ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V decline|˥ + V weep| +ޱ V weep| +޿ V weep| + V weep| +ɥ V unsatisfied| + N sound|,#weep| + V accuse|ظ,manner=weep| +Ц V embarrassed|Ϊ + N house|,#animal|,#alive| + N part|,%earth|,mouth| + N part|,%inanimate|,mouth| + N place|ط,crime| + N part|,%inanimate|,mouth| + N wealth|Ǯ,$owe|Ƿ +۶ N part|,%inanimate|,mouth| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + N phenomena|,undesired|ݬ,unfortunate| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,undesired|ݬ,unfortunate| +ദ N phenomena|,undesired|ݬ,#unfortunate| +൨ N part|,%AnimalHuman|,viscera| +භ V endeavour| + V study|ѧ,manner=diligent| + V endeavour| +๤ N affairs|,industrial|,hardship| +๤ N human|,#occupation|ְλ,employee|Ա +๦ V endeavour| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V result|,miserable|,undesired|ݬ +ຣ N attribute|,environment|,miserable|,&human|,&organization|֯ +ຮ ADJ aValue|ֵ,temperature|¶,cold| +ྡ V lucky| +ྡ V lucky| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N human|,#occupation|ְλ,employee|Ա + V drill|ϰ,manner=diligent| + V upset| + N phenomena|,undesired|ݬ,#unfortunate| + V upset| +ɬ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ +ɬ V sorrowful| +ˮ N part|,%AnimalHuman|,liquid|Һ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N water|ˮ,bitter| +˼ V think|˼,manner=endeavour| +˼ڤ V think|˼,manner=endeavour| +ʹ N phenomena|,undesired|ݬ,#unfortunate| +ͷ N attribute|,taste|ζ,&edible|ʳ,bitter| +ͷ N phenomena|,undesired|ݬ,#unfortunate| +ζ N attribute|,taste|ζ,bitter|,&inanimate| +Ц V sigh|̾ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ĺ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ľӪ V endeavour| + V inferior| + V suffer| +ս V fight|,manner=endeavour| + N phenomena|,undesired|ݬ,#unfortunate| + N tree| + N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ᰮ V FondOf|ϲ,degree=extreme| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ + N time|ʱ,season|,hot| + V BeSimilar|,degree=extreme| + N fact|,damage|,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@put|,@store| + N physical|,$store| +Ʒ N artifact|˹,$store|,commercial|,generic|ͳ + N language|,#country|,ProperName|ר +ⷿ N facilities|ʩ,space|ռ,@put|,@store| + CLAS unit|λ,&ChargeQuantity| + N attribute|,volume|ݻ,&facilities|ʩ + N clothing|,#leg| + N tool|þ,linear|,#clothing|,*fasten|˩ + N part|,%clothing|,leg| + N part|,%clothing|,#leg| + N clothing|,#leg| + N clothing|,#leg| + V boast| + V praise|佱 + V boast| + V boast| +亣 V boast| +佱 V praise|佱 + V boast| +̸ V boast| + CLAS unit|λ,&volume|ݻ +ҫ V ShowOff|ҫ +ҫ V boast| + V praise|佱 + V boast| + N expression|,*boast| + V end|ս + V perish| +̨ V end|ս +̨ V perish|,politics| + V hold| + N tool|þ,cubic|,@put| + V BeBeyond|Խ + V GoThrough| + V cross|Խ + V sit| + V GoOut|ȥ + N attribute|,distance|,&facilities|ʩ + ADJ aValue|ֵ,attachment|,#country| +˾ N InstitutePlace|,commercial| +ҵ N InstitutePlace|,commercial| + V cross|Խ + ADJ aValue|ֵ,time|ʱ + V GoInto| + V sit| + ADJ aValue|ֵ,time|ʱ + N facilities|ʩ,route|· + V cross|Խ,LocationThru=waters|ˮ +Խ V BeBeyond|Խ +Խ V cross|Խ + N part|,%AnimalHuman|,#body| + N part|,%AnimalHuman|,bone| + CLAS NounUnit|,&inanimate|,^liquid|Һ + N shape| + CLAS unit|λ,&money|,(China|й) + N part|,%plant|ֲ,base| + N tool|þ,*measure| +龥 N part|,%plant|ֲ,body| +״ N shape| + N tool|þ,*eat| + N tool|þ,*eat| + V VieFor| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V joyful|ϲ +챨 N publications|鿯,news| +첽 V run| +첽 V walk| + N edible|ʳ +쳵 N LandVehicle| +쳵 N facilities|ʩ,route|·,#speed|ٶ +쵱 ADJ aValue|ֵ,speed|ٶ,fast| +쵶ն ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V VieFor| + N emotion|,joyful|ϲ,desired| +칥 V attack|,sport| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N physical|,$post|ʼ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +ӱ V VieFor| +ӱ ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж + N part|,%tool|þ,#TakePicture| +˿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fact|,#joyful|ϲ,desired| + ADJ aValue|ֵ,speed|ٶ,fast| +ٻ ADJ aValue|ֵ,behavior|ֹ,fast|,flexible| +ת ADJ aValue|ֵ,speed|ٶ,fast| +ͧ N ship| +ο V joyful|ϲ +Ѷ N news| +Ҫ ADV aValue|ֵ,duration|,TimeShort| + V satisfied| + N fish| + N part|,%physical| + N human|,forthright|ˬ + V AtEase| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V AtEase| + ADJ aValue|ֵ,area|,wide| +խ V economize|ʡ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V WellTreat|ƴ + N attribute|,width|,&physical| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V soothe|ο + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ˡ V forgive|ԭ + V AtEase| + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,occasion|,^crowded|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ο V soothe|ο + V enlarge|,PatientAttribute=boundary|,#time|ʱ + N time|ʱ,@enlarge|,#boundary|,#time|ʱ + V StripOff|ȥ,patient=clothing| +ԣ ADJ qValue|ֵ,amount|,sufficient| + N money|,(Angola|) +խ N attribute|,width|,&physical| + V indulge| + ADJ aValue|ֵ,speed|ٶ,slow| + N fund|ʽ + N part|,%document| + V entertain|д + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,speed|ٶ,slow| + V detain|ס +ʽ N attribute|,pattern|ʽ,&artifact|˹ + N part|,%text| + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + V calculate| + N character|,surname|,human|,ProperName|ר + V estimate| + V help| + V rescue| + V help| +︴ V rescue|,patient=country| + V calculate| + V estimate| + V rescue| + V amend|,content=wrong| + V calculate| + V estimate| + V amend| +ʱ V amend|,content=wrong| + V help| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V run|,manner=fast| + N water|ˮ + V cry|,#livestock| + N wind|,strong|ǿ +籩 N weather|,#RainSnow|ѩ,#wind| + V joyful|ϲ + N fact|,undesired|ݬ +Ȯ N disease| + ADJ aValue|ֵ,behavior|ֹ,sincere| + N human| + N human|,undesired|ݬ,*mad| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ,degree=extreme| +Ц V laugh|Ц + N text|,undesired|ݬ + N wind|,strong|ǿ + V draw| + N part|,%artifact|˹,bone| + N part|,%thing|,bone| + N part|,%artifact|˹,bone| + N regulation| +ͼ N image|ͼ + N part|,%artifact|˹,bone| + N InstitutePlace|,mine| + N stone|ʯ,mine| + N location|λ,#stone|ʯ,mine|,@ExistAppear| + N physical|,mine| +Ʒ N physical|,mine| + N human|,#occupation|ְλ,official|,mine| + N LandVehicle|,mine| + N stone|ʯ,waste|,mine| + N part|,%land|½,mine| + N tool|þ,*illuminate|,mine| + N human|,#occupation|ְλ,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| +Ȫ N waters|ˮ,#mine| +Ȫˮ N drinks|Ʒ +ɰ N stone|ʯ,mine| +ɽ N InstitutePlace|,mine| +ʯ N stone|ʯ,mine| + N part|,%land|½,mine| + N inanimate|,mine| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N inanimate|,mine| + N institution|,#mine|,ProperName|ר,politics| +ҵ N affairs|,mine| + N stone|ʯ,waste|,#mine| + N attribute|,kind|,&mine| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,size|ߴ,big| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V lavish|˷ + V cease|ͣ,content=affairs|,undesired|ݬ + V cease|ͣ,content=affairs|,education|,undesired|ݬ +ճ־ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,special| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Զ ADJ aValue|ֵ,area|,wide| +Զ ADJ aValue|ֵ,duration|,TimeLong|,past| +ְ V cease|ͣ,content=affairs|,undesired|ݬ + N attribute|,circumstances|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + CONJ {supplement|ݽ} + V IllTreat| + V InDebt| + V InDebt|,commercial| + V lack|ȱ + V lack|ȱ,commercial| + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V InDebt|,possession=fund|ʽ,commercial| + V affairs|,*InDebt|,commercial| + V affairs|,*InDebt|,commercial| + V IllTreat| + V lose|ʧȥ + V InDebt| + V InDebt|,commercial| + V InDebt|,commercial| +Ƿ V InDebt|,commercial| +Ƿ V owe|Ƿ,commercial| +ʴ V InDebt|,commercial| +ʴ V disappear|ʧ + V InDebt|,commercial| + V GuiltilyConscious| + N clothing|,#head|ͷ,*protect| + N clothing|,*protect| +Ȼ ADJ aValue|ֵ,height|߶,tall| + V look|,manner=secret| + V perception|֪ + V look|,manner=secret| +̽ V look|,manner=secret| + V look|,manner=secret| + N human|,*look|,secret|,undesired|ݬ + N crop|ׯ + N crop|ׯ + N part|,%plant|ֲ,embryo|,?food|ʳƷ + N tool|þ,#wind|,*cool| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N human|,official| + N place|ط,ProperName|ר,(Canada|ô) + N human|,able|,desired| + N human|,official| +ΰ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N human|,undesired|ݬ,$order| + V GiveAsGift| + V GiveAsGift| + N tool|þ,linear|,@transmit| + V GiveAsGift| + V shy| + V shy| + V shy| + V shy| + V shy| +ɫ N attribute|,countenance|,shy|,&human| + V shy| + V shy| + V shy| + V OutOfOrder| + V defeated|,military| + V inflamed| + V defeated|,military| + V inflamed| + V defeated|,military| +ɢ V defeated|,military| + V flee| + V flee| + N disease| + V inflamed| + ADJ aValue|ֵ,sex|Ա,female|Ů +Ƕ N human|,female|Ů,entertainment| + N human|,family|,male| + N place|ط,city|,ProperName|ר,(China|й) + N AlgaeFungi|ֲ,?medicine|ҩ,$eat| + N InsectWorm|,generic|ͳ +ѧ N knowledge|֪ʶ,#InsectWorm| +ѧ N human|,#knowledge|֪ʶ,#InsectWorm| + N shows|,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N shows|,(China|й) + N human|,family|,mass|,male| + CLAS NounUnit|,&inanimate| + N shape| + V wrap| + V wrap| + V wrap| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V decline|˥ + V surround|Χ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V tired|ƣ + V tired|ƣ + V ignorant|֪ + N attribute|,circumstances|,miserable|,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V unfortunate| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N phenomena|,undesired|ݬ,poor| +ѻ N community|,family|,poor|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V MakeWorried| + V defend|,military| +̶ V RashlyAct| + V contain| + N symbol| + N symbol| +Լ N part|,%AnimalHuman|,flesh| + V enlarge| + V enlarge|,#organization|֯,military| + V MakeBetter|Ż + V enlarge| + V enlarge| + V MakeBetter|Ż + N fact|,discuss| + V enlarge| + V add|,patient=army|,military| +ɢ V disperse|ɢ +ɢ V disseminate| + N SportTool|˶ +չ V CauseToGrow|ʹɳ +չ V enlarge| + V enlarge| + V enlarge|,medical|ҽ + ADJ aValue|ֵ,area|,wide| + V destroy| + V enlarge| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V farewell| + V walk| +ǰ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| +Ҷ N tree| + N physical|,waste| + V handle|,patient=waste| + N physical|,waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| + V attract| + V attract|,commercial| + V attract|,politics|,commercial| + V excrete|й + V force|ǿ + V help| + V include|,manner=force|ǿ + V pull| + V recreation|,entertainment| + V talk|̸ + V transport| + V transport|,military| + N place|ط,capital|,ProperName|ר,(Morocco|Ħ) + V AlterForm|״,PatientAttribute=long| + V unsatisfied| + V foster| + V pull| + V relate|й + V talk|̸ + N machine| +˹ N language|,#country|,ProperName|ר + V include|,manner=force|ǿ + N place|ط,ProperName|ר + N language|,#country|,ProperName|ר + V StomachTrouble|֢ + N money|,(Maldives|) + N fittings|,industrial| +˹ N place|ط,capital|,ProperName|ר,(Nigeria|) +ϵ V associate| +϶ N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) + N SportTool|˶ + V owe|Ƿ +ҳ V talk|̸ + V mediate|,ResultEvent=fight| + V associate| + V transport| + V open| + V separate| + V attract|,target=human|,ResultEvent=SeekPleasure|Ѱ,#commercial| + V attract|,target=human|,commercial| + V transport|,patient=human| + V collude| + V pull| + N community|,*urge|ʹ,#sport| + N attribute|,strength|,#pull|,&physical| + N part|,%clothing| + V drill|ϰ,military| +£ V entice| + N place|ط,ProperName|ר + N part|,%building|,mouth| + V cook| + N food|ʳƷ +ģ N tool|þ +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| + N place|ط,city|,ProperName|ר,(China|й) +ʺ V excrete|й,patient=waste| + V ShowLove|ʾ,means=CausePartMove| + N part|,%artifact|˹,arm| +˿ V straighten|ֱ,industrial| + N part|,%clothing| +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Latvia|ά) +ά N place|ط,country|,ProperName|ר,(Europe|ŷ) +ά N language|,#country|,ProperName|ר +ϡ V StomachTrouble|֢ + V mediate| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +բ V TurnOff|ֹ +ֱ V straighten|ֱ +ס V catch|׽ס + N character|,(China|й) + N MusicTool| + N tool|þ,*disseminate| + N human|,religion|ڽ +ﻨ N FlowerGrass| + N community|,religion|ڽ +ͽ N human|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N material| + N tool|þ,*illuminate| + N stationery|ľ,@write|д + N PenInk|ī,*write|д + N InsectWorm| + N tool|þ,*decorate|װ + ADJ aValue|ֵ,color|ɫ,yellow| +Ⱦ V AlterColor|ɫ +̨ N tool|þ,@put|,#illuminate| + N tool|þ,image|ͼ +ֽ N paper|ֽ,*wrap| +ֽ N paper|ֽ,@write|д + N tool|þ,*illuminate| + ADJ aValue|ֵ,property|,$cook| + N time|ʱ,month| + N food|ʳƷ + N food|ʳƷ +÷ N FlowerGrass| + N food|ʳƷ +ζ N food|ʳƷ +ζ N food|ʳƷ,generic|ͳ + N time|ʱ,month| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ζ N attribute|,taste|ζ,peppery|,&physical| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ECHO {modality|} + N community|,*urge|ʹ,#sport| + N FlowerGrass|,?medicine|ҩ + N land|½,#crop|ׯ + N place|ط,city|,ProperName|ר,(Germany|¹) + N lights| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lesotho|) + N place|ط,country|,ProperName|ר,(Africa|) + N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V arrive| + V come| + V happen| + ADV qValue|ֵ,amount|,almost| + N human|,*visit| + V prohibit|ֹ + ADV aValue|ֵ,earliness|,late| + V appear|,content=water|ˮ + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ü ADV aValue|ֵ,earliness|,early| + V visit| +ǹ N weapon|,*firing| + N text| + N letter|ż +༦ N bird| + V ToAndFro| +ȥ V ToAndFro| + N physical|,$post|ʼ + PREP {scope} + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V excited| + PREP {scope} + N human|,*visit| + V ToAndFro| + N attribute|,source|Դ,&physical| + N material| +ϼӹ V produce| + V approach|ӽ + V arrive| +ȥ N process| +· N attribute|,source|Դ,&physical| +· N facilities|ʩ,route|·,#approach|ӽ +· ADJ aValue|ֵ,attachment|,unfixed|δ +· N artifact|˹,commercial|,generic|ͳ + N time|ʱ,future|,year| +ȥ V ToAndFro| + N human|,*post|ʼ + N time|ʱ,future| + N attribute|,circumstances|,future|,&human| + N attribute|,circumstances|,future|,&human| + N attribute|,strength|,#happen|,&physical|,&event|¼ +ͷ N cause|ԭ +ͷ N emotion|,#FondOf|ϲ +ͷ N emotion|,FondOf|ϲ +ͷ N human|,*help| + V ToAndFro| + V associate| + N text| + N letter|ż,$post|ʼ + V post|ʼ,patient=letter|ż + N purpose|Ŀ + N cause|ԭ +Դ N attribute|,source|Դ,&physical| +Դ V ResultFrom|Ե +߲ ADJ aValue|ֵ,tolerance|,generous|,desired| +֮ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V ResultFrom|Ե + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V blame|Թ + N character|,surname|,human|,ProperName|ר + V deny| + V depend| + V disobey|Υ,content=MakeAppointment|Լ + V stay|ͣ +Ƥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ƥ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V depend| +ծ V deny|,content=owe|Ƿ,commercial| + V deny|,content=owe|Ƿ,commercial| + V disobey|Υ,content=MakeAppointment|Լ + ADJ aValue|ֵ,color|ɫ,blue| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ʯ N stone|ʯ,treasure|䱦 + N attribute|,kind|,original|ԭ,&readings| + N thing|,$BaseOn| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ + N human|,#occupation|ְλ,employee|Ա +칤 N human|,#occupation|ְλ,employee|Ա +ɫ ADJ aValue|ֵ,color|ɫ,blue| + N sky|,blue| +ͼ N image|ͼ + N facilities|ʩ,space|ռ,@foster|,#livestock| + N fittings|,%building| + N part|,%readings| + N fittings|,%building| +Ŀ N part|,%shows|,%readings|,name| + V block|ס + V block|ס +Ӱ N facilities|ʩ,#waters|ˮ + V attack|,sport| + V block|ס +· V block|ס +· N thing|,*obstruct|ֹ +·ǿ N human|,crime|,undesired|ݬ,*rob| + V block|ס,sport| + V obstruct|ֹ + ADV aValue|ֵ,location|λ,middle| +ס V block|ס + V block|ס + N tool|þ,cubic|,@put| + N phenomena|,sport| + N SportTool|˶ + N fact|,exercise|,sport| + N fact|,compete|,sport| +̳ N community|,sport| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,earliness|,late| + N part|,%building| + N part|,%building| +ɺ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɺ V decline|˥ +β N part|,%AnimalHuman|,viscera| +β N disease| + N FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N money|,(Namibia|ױ) + N money|,(South Africa|Ϸ) + N place|ط,city|,ProperName|ר,(China|й) + N water|ˮ,strong|ǿ + V HoldInArm|§ + V attract| + V bear|е + V control| + V look| + V read| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + N human|,lazy|,undesired|ݬ + V unwilling|Ը + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N human|,lazy|,female|Ů +ͷ N human|,lazy| + N human|,lazy| + N human|,lazy|,undesired|ݬ + N human|,lazy|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ɢ V slack|͵ + N tool|þ,linear|,#electricity| + N tool|þ,linear|,*fasten|˩ +³ N LandVehicle| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V OutOfOrder| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,soft| + V inflamed| +õ V OutOfOrder| +ú ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,color|ɫ,colored|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N stone|ʯ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,ripe| +̯ N attribute|,circumstances|,disorder|,undesired|ݬ,&organization|֯ + V dizzy|,cause=addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V flow|,quantity=many| +IJ V catch|׽ס,manner=improper|,police| +ĵ N text|,used|,undesired|ݬ +ķ V issue|ַ,manner=improper| +ķ V break|۶,#tree|,manner=improper| +Ŀķ V break|۶,#tree|,manner=improper| + V use|,manner=improper| +ְȨ V use|,patient=power|,manner=improper| + N character|,(China|й) + ADJ aValue|ֵ,SoundVolume|,loud| + N character|,(China|й) +ͷ N tool|þ,*beat| + N beast| +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZΪ V collude| +DZͻ V run| +Ǵ N disease| +ǹ N livestock| +Ǻ N PenInk|ī,*write|д +ǽ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +̻ V eat| +β N FlowerGrass|,undesired|ݬ +Ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N CloudMist| + N beast| + N part|,%building|,nerve| + N part|,%building|,nerve| + N part|,%building|,head|ͷ + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,male|,past| +è N livestock| + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + ADJ aValue|ֵ,brightness|,bright| +ʶ V recite|ж + ADJ aValue|ֵ,SoundVolume|,loud| + V recite|ж + N human|,recite|ж + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N water|ˮ +˳ N water|ˮ +˴ N tool|þ,*recreation| +˵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ V lavish|˷ +˷ N human|,lavish|˷ +˻ N water|ˮ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N thinking|˼,#flighty| + N water|ˮ +ͷ N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ +ͷ N water|ˮ +ӿ V jet| + N human|,male|,flighty|,undesired|ݬ + N human|,undesired|ݬ + V TakeOutOfWater| + V cheat|ƭ + V seek|ıȡ +̱ V seek|ıȡ,possession=fund|ʽ + V TakeOutOfWater| +ȡ V cheat|ƭ +ȡ V seek|ıȡ + N character|,surname|,human|,ProperName|ר + V do| + V invite| + V tired|ƣ +ͱ V guarantee|֤,scope=engage|,commercial| +ͱ V protect|,scope=engage|,commercial| +ʹ V tired|ƣ +Ͷ V engage| +Ͷ N time|ʱ,day|,@congratulate|ף,#employee|Ա +Ͷ N human|,industrial| +Ͷ N quantity|,amount|,&human|,#do| +Ͷܼ ADJ aValue|ֵ,property|,BaseOn|,#strength| +Ͷ N human|,#occupation|ְλ,employee|Ա +Ͷ V tired|ƣ +Ͷ޹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +͸ V teach|,#police| +͹ N human|,#occupation|ְλ,employee|Ա +͹ N institution|,#employee|Ա,ProperName|ר,politics| +͹ N community|,#occupation|ְλ,employee|Ա +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ͼ N result|,#succeed|ɹ,desired| +ͽ V teach|,police| +ͽ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +Ϳ N fact|,endeavour| + V tired|ƣ + N human|,industrial| +µ V endeavour| +˲ V lavish|˷ +ģ N human|,desired| + V upset| +ʦ V SayHello|ʺ,military| +ʦ V use|,military| + V wounded| + N affairs|,#engage| + N payment| +ַ V farewell| +ݽ V engage|,rest|Ϣ + N human|,mass| + V engage| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,quality|,durable|,desired| + N facilities|ʩ,space|ռ,@foster|,#livestock| +β ADJ aValue|ֵ,ability|,withstand|ס,desired| +β ADJ aValue|ֵ,circumstances|,steady|,desired| +η N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +ι ADJ aValue|ֵ,circumstances|,steady|,desired| +ι ADJ aValue|ֵ,quality|,durable|,desired| +μ V remember|ǵ +ο ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ο ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,behavior|ֹ,steady|,desired| + N method|,undesired|ݬ,*deceive|ƭ + N tool|þ,space|ռ,@detain|ס,#animal| +ɧ N text|,*protest| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,age|,aged| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,tough|,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,aged| + N place|ط,country|,ProperName|ר,(Laos|) +ϰʽ N human|,able|,desired| +ϰ׸ɶ N drinks|Ʒ,$addict|Ⱥ +ϰ N human|,ordinary| +ϰ N human|,*employ|,commercial| +ϰ N human|,female|Ů,*employ|,commercial| +ϰ N human|,family| +ϱ N fund|ʽ +ϲ N human|,male| +ϲ N human|,rich|,desired| +ϳ N house|,#animal|,#alive| +ϳ N place|ط,crime| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ϴŮ N human|,female|Ů,^GetMarried|,aged| +ϴ ADJ aValue|ֵ,age|,aged| +ϴ ADV aValue|ֵ,degree|̶,very| +ϴ N human|,*drive|Ԧ,#ship| +ϴ N human|,family| +ϴ N human|,strong|ǿ,male| +ϴ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ϴ N human|,aged|,female|Ů +ϴ N human|,female|Ů +ϴү N human|,aged|,male| +ϴү N human|,male| +ϵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,#aged|,desired| +ϵ N human|,adult| +ϵ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ϸ N human|,family|,male|,aged| +Ϲ N human|,family|,male| +Ϲ N human|,aged|,male| +Ϲ N human|,family|,male| +ϹŶ N human|,undesired|ݬ,stubborn| +ϹŶ N implement|,generic|ͳ +Ϲ N regulation| +Ϻ N human|,aged|,male| +Ϻ N human|,indifferent|Į +Ϻ N beast|,aged| +Ϻ N human|,sly|,undesired|ݬ +ϻ N beast| +ϻƨ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϻǯ N tool|þ,*hold| +ϻ N disease|,#look|,#aged|,#eye| +ϻ V decline|˥ +ϻ N expression| +ϼ N place|ط,@ComeToWorld| +ϼ N part|,%AnimalHuman|,skin|Ƥ,#disease| +Ͻ N human|,desired|,able| +Ͻ N human| +Ͻ N human|,able|,desired| +Ͼ N phenomena|,#aged| +Ͼ N drinks|Ʒ,$addict|Ⱥ + N human|,mass| +ʵʵ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +ݺ V weep| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,aged|,mass| + N tree| + ADJ aValue|ֵ,#age|,aged| +· N facilities|ʩ,route|· + N human|,#occupation|ְλ,female|Ů,employee|Ա +ʶ; ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,age|,aged| +ı ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,family|,female|Ů,aged| + ADJ aValue|ֵ,age|,aged| +겡ѧ N knowledge|֪ʶ,#aged|,medical|ҽ +겡ѧ N human|,*cure|ҽ,medical|ҽ + N human|,aged| +ţƳ ADJ aValue|ֵ,speed|ٶ,slow| +ũ N human|,agricultural|ũ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,able|,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,aged|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,weak|,undesired|ݬ +ǰ N human|,family|,aged| + N human|,family| + N human|,family|,mass| + N place|ط,(China|й) + N human|,aged| + N human|,family|,aged| +˼ N human|,aged| +˼ N human|,family| + N celestial| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N human| + ADJ aValue|ֵ,age|,aged|,young| +ٱ N place|ط,undesired|ݬ +̸ N text|,boring|,undesired|ݬ +̸ N text|,ordinary| +ʦ N human|,*teach|,education| +ʦ N human|,able|,industrial| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted| +ʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʽ N attribute|,kind|,old|,&artifact|˹ + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,desired|,able| + N beast| +̫ N human|,aged|,female|Ů +̫̫ N human|,aged|,female|Ů +̫ү N human|,aged|,male| +̬ ADJ aValue|ֵ,age|,aged|,undesired|ݬ +̬ ADJ aValue|ֵ,bearing|̬,aged|,undesired|ݬ + N humanized| +ү N humanized| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,undesired|ݬ,stubborn| + N human|,#space|ռ,foreign| + N human|,undesired|ݬ,unable|ӹ + N human|,aged|,male| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Laos|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N human|,#reside|ס,village| +С N human|,family|,mass| +С N human|,mass| + N human|,family|,male| + N human|,male| +߳ŭ V angry| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ү N human| +ү N human|,family|,male| +ү N human|,undesired|ݬ,official| +үү N human|,aged|,male| +үү N human|,family|,male| +ү N human|,family|,male| +ү N human|,male| +һ N human|,aged| +һ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,sly|,undesired|ݬ + ADJ aValue|ֵ,age|,aged|,young| + ADJ aValue|ֵ,ability|,able|,desired| +ʸ N human|,desired|,able| + N human|,family|,male| + N human|,military|,past| + N human|,official|,military| + N human|,past| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird| + N human|,adult| + N human|,adult|,undesired|ݬ + N human|,aged|,female|Ů + N human|,family|,female|Ů +ү N human|,family|,male| + N food|ʳƷ + V cook| + V press|ѹ +ӱ N food|ʳƷ + N tool|þ,*AlterForm|״,#level|ƽ + N tool|þ,*fasten|˩,industrial| +ӡ N mark|־ +ӡ V record|¼ + ADJ aValue|ֵ,dampness|ʪ,waterlogging| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V carve| + V force|ǿ + V tighten|ս +ձ V force|ǿ +ս V tighten|ս + V force|ǿ + V rob| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + V laugh|Ц + N music| + V willing|Ը +ִ˲ƣ V FondOf|ϲ +ֶ N community|,#music| +ֹ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ֹ N attribute|,behavior|ֹ,optimistic|ֹ,&human|,organization|֯ +ֹ N human|,optimistic|ֹ +ֺǺ V joyful|ϲ + N publications|鿯,@record|¼,#music| + N MusicTool| + N music| +Ȥ N emotion|,joyful|ϲ,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#joyful|ϲ +̳ N community|,#music| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,happy|,#lucky| + N community|,#music| + N shows| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V willing|Ը + N sound|,#music| +԰ N place|ط,happy|,#lucky| + N part|,%music| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N thunder| + N weapon| +״ N facilities|ʩ,*check| +״Ա N human|,military| +״վ N facilities|ʩ,*check| +״򲻶 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +״򲻶 ADJ aValue|ֵ,will|־,strong|ǿ,desired| +׵ N thunder| +׶ ADJ aValue|ֵ,SoundVolume|,loud| +׹ N humanized|,#thunder| +׹ N weapon| +׻ V damage|,agent=thunder| +׿δ N place|ط,capital|,ProperName|ר,(Iceland|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V WeatherBad| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound|,#thunder| +ͬ V BeSimilar| + N RainSnow|ѩ,#thunder| + N RainSnow|ѩ,#thunder| + N attribute|,strength|,strong|ǿ,desired|,&physical| + N emotion|,angry|,undesired|ݬ + N thunder| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N metal| + N part|,%FlowerGrass|,embryo| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V endeavour| + V gather|ɼ + V pile|ѷ + V tired|ƣ +۴ ADV aValue|ֵ,frequency|Ƶ,often| +ۻ V gather|ɼ +ۼ V relate|й +ۼ V AmountTo|ܼ +ۼ N quantity|,amount|,$AmountTo|ܼ,&physical| +ۼΪ V AmountTo|ܼ +ۼ ADJ aValue|ֵ,kind|,ordinary| +۽̲ ADJ refuse|,content=amend| +۽ V BecomeMore| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V tired|ƣ +¾ ADJ aValue|ֵ,duration|,TimeLong| +׸ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ + V build| + N SportTool|˶ + V beat| +̨ N facilities|ʩ,space|ռ,@compete| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,bone| +߹ N part|,%AnimalHuman|,bone| +߼伡 N part|,%AnimalHuman|,flesh| +Ĥ N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + V CompareTo| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ʪԹؽ N disease| + V BeSimilar| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| + V BeSimilar| +ͬ V BeSimilar| + V deduce| + N celestial| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ѧ N knowledge|֪ʶ + N part|,%AnimalHuman|,liquid|Һ + N trace|,#weep| +Ứ N part|,%AnimalHuman|,liquid|Һ,#eye| +˶ N human|,*weep| + V weep| +ˮ N part|,%AnimalHuman|,liquid|Һ + V weep| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,#eye| +Һ N part|,%AnimalHuman|,liquid|Һ +ӯӯ V weep| + N part|,%AnimalHuman|,liquid|Һ + N part|,%inanimate|,edge| + N image|ͼ,angular| + N part|,%inanimate|,edge| +⾵ N tool|þ + N image|ͼ,cubic| +׶̨ N image|ͼ,cubic| + N part|,%inanimate|,edge| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר + V cool| + V perception|֪,content=cold| + N phenomena|,undesired|ݬ,$IllTreat| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| +䲻 ADJ aValue|ֵ,behavior|ֹ,sudden| +䲼 N material|,?clothing| + V store|,#cold| +䳰ȷ V satirize| +䴲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +䵭 V IllTreat| +䵭 ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +䵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +䵭 V despise| + N food|ʳƷ +䶳 V cool| + N information|Ϣ,wrong|,undesired|ݬ + N wind|,cold| + V cure|ҽ,means=cool|,medical|ҽ +乬 N house|,undesired|ݬ + N lights| +亸 V fasten|˩,industrial| +亹 N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N artifact|˹,commercial|,generic|ͳ +侲 V calm| + ADJ aValue|ֵ,behavior|ֹ,strict| + N gas|,cold| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@store| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V IllTreat| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +í V fasten|˩,industrial| + ADJ aValue|ֵ,kind|,queer| + N affairs|,undesired|ݬ + N human|,*win|ʤ,sudden| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V cool| +ů N attribute|,circumstances|,&human| +ů N attribute|,temperature|¶,&weather| + N food|ʳƷ +Ƨ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N facilities|ʩ,*cool| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ȴ V cool| +ȴ N tool|þ,cool| +ɼ N tree| +ʳ N edible|ʳ,cold| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,cold| +Ц V LaughAt|Ц +Ѫ N AnimalHuman|,generic|ͳ +Ѫ N human|,fierce| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N text|,*satirize|,*IllTreat|,undesired|ݬ + N phenomena|,undesired|ݬ,#IllTreat| + N drinks|Ʒ,cold| + N phenomena|,undesired|ݬ,#IllTreat| + V press|ѹ,industrial| +ս V fight| + ADJ aValue|ֵ,temperature|¶,cold| + CLAS unit|λ,&money|,$earn|׬ + CLAS unit|λ,&money|,(China|й) +嶨 V decide| + CLAS unit|λ,&length| + V amend| + N fruit|ˮ + N drinks|Ʒ + N tree| +԰ N community|,#music|,entertainment| + N fruit|ˮ + V engage|,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + V engage|,agricultural|ũ +ͷ N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Lebanon|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lebanon|) + N place|ط,country|,ProperName|ר,(Asia|) +۰ N money|,(Lebanon|) + N human|,(Lebanon|) + N human|,ordinary|,mass| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + N community|,ProperName|ר,(China|й) + N fittings|,%building| + N fittings|,%building| + N beast| +è N beast| + V from| + V leave|뿪 + V farewell| + V leave|뿪 +벻 V BeUnable|,content=leave|뿪 + V leave|뿪,LocationIni=community| + N part|,%machine| + V separate| +鸾Ů N human|,female|Ů,*separate|,#GetMarried| + V leave|뿪,LocationIni=family| + V separate| +뾭ѵ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +뾭ѵ V betray| +뾳 V leave|뿪,LocationIni=place|ط +뿪 V leave|뿪 +˻ N human|,*separate|,#GetMarried| + V FitNot| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ȥ V leave|뿪 +Ⱥ V MakeLiving|ı,manner=lonely| + V cease|ͣ,content=undertake| +ɢ ADJ aValue|ֵ,attachment| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ + ADJ aValue|ֵ,content|,unattached|ɢ + V cease|ͣ,content=undertake| + ADJ aValue|ֵ,performance|,#software| + V leave|뿪,LocationIni=family| + V FitNot| + ADJ aValue|ֵ,property| +ı N tool|þ,*separate| +Ļ N tool|þ,*separate| + N attribute|,strength|,#separate|,&thing| + V cease|ͣ,content=undertake| + V separate| +ְ V cease|ͣ,content=undertake| + N part|,%physical| + V PutInOrder| + V ShowInterest| + V handle| + N knowledge|֪ʶ + V manage| + N reason| + V manage|,patient=wealth|Ǯ,commercial| + V ShowInterest| + AUX {modality|} + V MakeUp|ױ,scope=hair|ë +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#hair|ë + AUX {modality|} + N knowledge|֪ʶ + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| + N knowledge|֪ʶ + V PayAttention|ע + V ShowInterest| + V understand| + V transport| + V understand| + N attribute|,ability|,#understand|,&AnimalHuman| + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N method|,*cure|ҽ +ʦ N method|,*cure|ҽ + V debate| + N knowledge|֪ʶ +ۼ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment| + N thinking|˼ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N human|,*manage| +³ N human|,*manage| +¹ N institution|,*manage|,(UN|Ϲ) +» N institution|,*manage| +˳ V PutInOrder| +Ȼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N aspiration|Ը,expect| +뻯 ADJ aValue|ֵ,GoodBad|û,good|,desired| +뻯 ADJ aValue|ֵ,content| + N human| + ADJ aValue|ֵ,property| + N attribute|,ability|,control|,&human| +ʶ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧʿ N human|,literature| +Ӧ AUX {modality|} + N reason| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֱ׳ V FeelNoQualms| + N attribute|,ability|,control|,&human| + N character|,surname|,human|,ProperName|ר + N fruit|ˮ +ҽ V replace| +ǻ N human|,official|,politics|,ProperName|ר,(China|й) + N fruit|ˮ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| + N part|,%inanimate|,generic|ͳ + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + CLAS unit|λ,&length| +ﰺ N place|ط,city|,ProperName|ר,(France|) + N location|λ,internal| + N attribute|,distance|,AlterLocation|ռλ + N process| +̱ N mark|־ + N part|,%tool|þ,viscera|,#LandVehicle| +ﺣ N waters|ˮ,ProperName|ר +Y N part|,%AnimalHuman|,#body| + N money|,(Italy|) + N money|,(San Marino|ʥŵ) + CLAS unit|λ,&money|,(Italy|) + N money|,(Swaziland|˹ʿ) + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| +Ū N facilities|ʩ,space|ռ,@reside|ס + N human|,able|,desired| +˹ N place|ط,capital|,ProperName|ר,(Portugal|) +ͨ V betray| +ͷ ADJ aValue|ֵ,location|λ,internal| +ͷ N location|λ,internal| + N room| + N part|,%MusicTool| +Ƕ N money|,(Iran|) +Ӧ V help| +Լ¬ N place|ط,city|,ProperName|ר,(Brazil|) + N fish| + N fish| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N fact| + N tool|þ,$GiveAsGift| + N fact|,religion|ڽ + N time|ʱ,week| + N time|ʱ,week|,day| +ݶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N InstitutePlace|,religion|ڽ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| +˾ N part|,%institution|,*manage|,#diplomatic|⽻ + N clothing| + N tool|þ,*recreation|,*congratulate|ף + N regulation| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N money|,$GiveAsGift| +ñ N clothing|,#head|ͷ +ò N attribute|,behavior|ֹ,gracious|,desired|,&human| + N tool|þ,*salute|¾,*congratulate|ף +Ʒ N tool|þ,$GiveAsGift| + V refuse|,manner=modest|ǫ + V associate|,manner=equal| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N room| + N tool|þ,$GiveAsGift| + N fact| + N fact|,WellTreat|ƴ + V praise|佱 + N character|,(China|й) + N character|,(China|й) +֦ N fruit|ˮ +֦ N tree| + N human|,#occupation|ְλ,official| + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N fruit|ˮ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| + N attribute|,prettiness|,beautiful|,&human| + ADJ aValue|ֵ,behavior|ֹ,strict| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,SoundVolume|,strict| +нԼ V economize|ʡ + V mobilize| +ͼ V endeavour| + N stone|ʯ,material| +ʯ N stone|ʯ,material| + N stone|ʯ + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,time|ʱ,past|,all|ȫ + V undergo| + N process| + ADJ aValue|ֵ,time|ʱ,past| + N time|ʱ,past| + N system|ƶ,*calculate|,#time|ʱ + ADJ aValue|ֵ,time|ʱ,past| + V undergo| + V undergo| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + N time|ʱ,year|,past| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V undertake| +ʱ V spend| +ʷ N fact|,#time|ʱ +ʷ N InstitutePlace|,@display|չʾ,#past| +ʷ N standpoint| +ʷ N shows| +ʷʹ N affairs|,#dispatch|Dz +ʷΨ N knowledge|֪ʶ +ʷС˵ N publications|鿯 +ʷ ADJ aValue|ֵ,value|ֵ,important| +ʷѧ N human|,#knowledge|֪ʶ + V quote| + V undergo|,content=dangerous|Σ + ADJ aValue|ֵ,form|״,sharp| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + V benefit| + N character|,surname|,human|,ProperName|ר + N fund|ʽ,$earn|׬,commercial| + N money|,(Sierra Leone|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Liberia|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Liberia|) +Ԫ N money|,(Liberia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Libya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǵɶ N money|,(Libya|) + N attribute|,ProsCons|,&event|¼ +ά N place|ط,capital|,ProperName|ר,(Gabon|) +˰ V alter|ı,StateIni=payment|,StateFin=expenditure| + V benefit|,patient=country| + V benefit|,patient=country| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,ProsCons|,&event|¼ + V benefit|,patient=self| + N thinking|˼,benefit|,#self| + N weapon|,*stab| +ǻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +¡ N place|ط,capital|,ProperName|ר,(Malawi|) + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| + N place|ط,capital|,ProperName|ר,(Peru|³) + V benefit|,patient=community| + V urge|ʹ,ResultEvent=excrete|й,medical|ҽ + N medicine|ҩ,*urge|ʹ,#excrete|й + N implement|,good| + N weapon|,sharp| +Ǯ N fund|ʽ,$earn|׬,commercial| + N wealth|Ǯ,desired|,$earn|׬ + V SetAside|,patient=wealth|Ǯ,commercial| + N quantity|,rate|,&payment|,commercial| +˰ N wealth|Ǯ,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| +Ϣ N wealth|Ǯ,desired|,$earn|׬ +ŵ N place|ط,capital|,ProperName|ר,(Saudi Arabia|ɳذ) + N attribute|,effect|Ч,&act|ж +մ N payment|,$gather|ɼ + V use| + N quantity|,rate|,&use| + V entice| + V benefit| +Ѭ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N example|ʵ + N fact|,discuss| + N time|ʱ,@rest|Ϣ + ADV {supplement|ݽ} + N attribute|,kind|,special|,&event|¼ + ADJ aValue|ֵ,kind|,ordinary| +й ADJ aValue|ֵ,kind|,ordinary| +֤ N example|ʵ + N example|ʵ + N character|,(China|й) + N disease| + N disease| + V CauseToBe|ʹ֮ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,posture|,straight|ֱ + V compile|༭ + V establish| + V put|,result=stand|վ + V stand|վ + V record|¼ + V record|¼,police| + N standpoint| + N time|ʱ,day|,spring| + ADV aValue|ֵ,location|λ,special| + V CeaseSelfMove|ֹ + N time|ʱ,day|,winter| + ADJ aValue|ֵ,performance|,*forming|γ,#law|ɷ,politics| + V forming|γ,patient=law|ɷ,politics| + N institution|,*forming|γ,#law|ɷ,politics| +Ȩ N rights|Ȩ,*forming|γ,#law|ɷ,politics| + N human|,*forming|γ,#law|ɷ + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| + CLAS unit|λ,&bulk| + ADJ aValue|ֵ,form|״,cubic| +ͼӰ V succeed|ɹ +ͼӰ ADJ succeed|ɹ + V establish|,PatientProduct=result|,desired| + N furniture|Ҿ,cubic|,@put| + V establish|,patient=country|,politics| +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + V establish|,content=account|,commercial| + V record|¼,content=family| + ADJ aValue|ֵ,duration|,TimeShort| + N attribute|,form|״,cubic|,&building| + N facilities|ʩ,route|· + ADV aValue|ֵ,duration|,TimeShort| + V explain|˵,content=standpoint| + N standpoint| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ,day|,autumn| +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʽ ADJ aValue|ֵ,posture|,straight|ֱ + V swear| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lithuania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| +彻 N attribute|,form|״,cubic|,&building| + N sound| + N time|ʱ,day|,summer| + V establish|,patient=law|ɷ + N system|ƶ,official| + V ExpressAgreement|ʾͬ + V create|,PatientProduct=new| + V compile|༭ +ҵ V start|ʼ,content=affairs| + V decide| + N thinking|˼ + V stand|վ +־ V decide| + N artifact|˹,#image|ͼ,literature| + N part|,%machine| + N part|,%building|,bone| +׶֮ N place|ط,small|С + V BaseOn| + V situated| + N standpoint| + CLAS NounUnit|,&inanimate| + N shape| + N material|,*feed|ι,#crop|ׯ +ѡ V choose|ѡ +ѩ N RainSnow|ѩ +״ ADJ aValue|ֵ,form|״,round|Բ + N part|,%physical| + N part|,%physical| + V fall| + N material|,*build| +ˮ N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + V BeMember| + N attribute|,kind|,&character|,&symbol| + V BeMember| + V BeMember| + N attribute|,ability|,&physical| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&physical| + V endeavour| + V BeUnable| + N space|ռ,#strength| + V fulfil|ʵ,manner=endeavour| + V defeat|սʤ,manner=endeavour| + N attribute|,intensity|ǿ,&event|¼ + V obstruct|ֹ + N attribute|,strength|,&physical| + V defeat|սʤ,manner=endeavour| + N attribute|,strength|,&entity|ʵ + V defeat|սʤ + N attribute|,strength|,&human| + N attribute|,strength|,&physical| + V endeavour| +ʿ N human|,strong|ǿ +ܼ V BeAble|ܹ +ͼ V endeavour| + V amend|,content=wrong| + N livestock| +ѧ N knowledge|֪ʶ + V debate| + V seek|ıȡ + V endorse|ӵ + N artifact|˹,good|,desired| + CLAS unit|λ,&length| + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V aValue|ֵ,content|,unattached|ɢ,#speak|˵,undesired|ݬ + N human|,mass| + N human|,mass| + N human|,mass| + V ally| + N text| + V engage|,manner=together|ͬ + N community| +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N institution|,#police|,ProperName|ר,politics|,(US|) + N institution|,#place|ط,politics| + N system|ƶ +ӵ N human| + V disseminate|,manner=ally| + N system|ƶ +а N system|ƶ + N part|,%institution|,politics|,(institution|=UN|Ϲ) + N community|,compete|,sport| + N part|,%army|,#sky| + N fact|,defend| + V ally| +Ϲ N institution|,ProperName|ר,#country| +Ϲ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲѧ N part|,%institution|,education|,(institution|=UN|Ϲ) +Ϲͯ N part|,%institution|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲҵչ֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲ滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) +Ϲ̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +ϹѧĻ֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +Ϲƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲʳũҵ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ϲó׺ͷչ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +Ϲ߼רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲ˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲر N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲ N law|ɷ,ProperName|ר,(UN|Ϲ) +Ϲѵо N part|,%institution|,politics|,(institution|=UN|Ϲ) +ϻ N community| +ո N LandVehicle|,*collect|,agricultural|ũ + N community| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + V recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,discuss| + V relate|й,partner=computer| + V connect| + V ally| + V connect| + N army| + V associate| +紦 N institution|,diplomatic|⽻ +Ա N human|,*transport|,#information|Ϣ +վ N institution|,diplomatic|⽻ + V ally| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + N fact|,compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V connect| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + V connect| +ϯ N fact|,discuss| +ϵ V associate| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N human|,*transport|,#information|Ϣ + V connect|,#mental| + V sell|,manner=together|ͬ + V associate| + N fact|,recreation| + V ally|,means=GetMarried| +Ӫ N fact|,together|ͬ,commercial| +Ӫҵ N InstitutePlace|,commercial|,industrial| + V transport|,manner=ally| +չ N fact|,display|չʾ,together|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N FlowerGrass| + N FlowerGrass| +ź N FlowerGrass| + N part|,%FlowerGrass|,embryo| +̨ N furniture|Ҿ,#humanized|,religion|ڽ + N part|,%FlowerGrass|,$eat|,embryo| + N furniture|Ҿ,#humanized|,religion|ڽ + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N character|,surname|,human|,ProperName|ר + V connect| + V contain| + N part|,%army| + ADV {emphasis|ǿ} + N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,property|,$relate|й + N part|,%army|,military| + V firing| + N symbol|,#quantity|,#DoSum| + N part|,%implement| + N facilities|ʩ,#waters|ˮ + N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| + ADJ connect| + V connect| + ADJ attribute|,similarity|ͬ,alike|,&entity|ʵ + V destroy| + N tool|þ,$fasten|˩ + N publications|鿯,#image|ͼ + V connect| + N thing|,*connect| +Ӵ N part|,%language| +Ӵ ADJ part|,%language| + N thing|,*connect| + V connect| + N human|,family|,mass| + N clothing|,#leg| + V relate|й + ADV aValue|ֵ,frequency|Ƶ,often| +æ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,continuous| +಻ ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| +Ƥ ADJ aValue|ֵ,kind| +ƪ ADJ aValue|ֵ,range|,all|ȫ +ƪ ADJ qValue|ֵ,amount|,many| +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ +Ƭ V connect| + N medicine|ҩ,(China|й) + V undertake|,manner=GoOn| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,frequency|Ƶ,often| + V connect| + N InstitutePlace|,*sell|,@buy|,commercial| +Ӧ N fact|,respond|Ӧ,continuous| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + ADJ aValue|ֵ,area|,wide| +ͨ V connect| +ͬ PREP {partner} + V connect| + ADJ aValue|ֵ,property|,$connect| +д V write|д,manner=connect| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N shows| + N attribute|,behavior|ֹ,continuous|,&event|¼ +ѡ V undertake|,manner=GoOn| +ҹ N time|ʱ,day|,night| +ȹ N clothing| +ȹ N clothing|,#leg| + V use|,manner=GoOn| +Ƹ N place|ط,city|,ProperName|ר,(China|й) + V publish| +ս N part|,%army| +սԱ V defeated| +ת V endeavour|,duration=morning|,duration=night| + ADJ aValue|ֵ,behavior|ֹ,continuous| +׺ V connect| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ɿ N clothing|,#leg| +޺ N part|,%human|,hair|ë + N tool|þ,*collect|,#crop|ׯ + N tool|þ,*collect|,#crop|ׯ + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,price|۸,cheap|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N institution|,politics|,honest| + V establish|,PatientProduct=institution|,politics|,honest| + V pity| + V like|ϧ + V pity| +ϧ V pity| + N character|,(China|й) + N water|ˮ + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,mark|־,commercial| + N material|,?tool|þ +Ļ N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ +Ӳ N material|,?tool|þ + V levy| + V restrain|ֹ + V levy|,possession=wealth|Ǯ + V hide| + N attribute|,countenance|,&AnimalHuman| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + V excited| +첱Ӵ V angry| + N part|,%AnimalHuman|,skin|Ƥ + N attribute|,reputation|,glorious|,desired|,&human| + N part|,%AnimalHuman|,skin|Ƥ +̶ N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N tool|þ,cubic|,@put|,*wash|ϴ + N tool|þ,*perform|,#shows| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N tool|þ,linear|,*fasten|˩ + N part|,%machine| +ù N medicine|ҩ + N SportTool|˶ + N bacteria|΢ + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V FondOf|ϲ + V love| + V FondOf|ϲ + N emotion|,love| + N human|,friend|,*love|,desired| + V burn|,industrial| + V refine|,industrial| + V produce|,PatientProduct=medicine|ҩ + V refine|,patient=metal|,industrial| +ֳ N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V burn|,industrial| + N drinks|Ʒ + V refine|,patient=metal|,industrial| + N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V produce|,industrial| + V produce|,material|,#edible|ʳ +ͳ N InstitutePlace|,@produce|,factory|,industrial| + V refine|,industrial| + ADJ aValue|ֵ,ability|,able|,desired| + V drill|ϰ + V drill|ϰ,military| + N material|,?clothing| + V drill|ϰ,military| + ADJ aValue|ֵ,ability|,able|,desired| + V exercise| + V exercise|,obtain|õ +ȵ N bird| +ϰ V drill|ϰ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ + N food|ʳƷ,military| + N InstitutePlace|,*sell|,@buy|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N facilities|ʩ,space|ռ,@put|,@store| + N material|,?edible|ʳ,?clothing| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ũ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ʊ N coupon|Ʊ֤,#edible|ʳ +ʳ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ʳ N crop|ׯ,?edible|ʳ + N material|,?edible|ʳ +վ N facilities|ʩ,provide|,#material|,#edible|ʳ + N food|ʳƷ,military| + ADJ aValue|ֵ,temperature|¶,chilly| + V change|,StateFin=chilly| + V cool| + V disheartened| + V perception|֪,content=cold| + V cook| + ADJ aValue|ֵ,temperature|¶,chilly| +˿ ADJ aValue|ֵ,temperature|¶,chilly|,desired| + N food|ʳƷ + N food|ʳƷ + N wind|,chilly| + ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ñ N clothing|,#head|ͷ + N food|ʳƷ + N house|,@cool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,chilly| +̨ N part|,%house|,space|ռ +ͤ N facilities|ʩ,space|ռ +ϯ N tool|þ,@LieDown| +Ь N clothing|,#foot| + N attribute|,temperature|¶,chilly|,&space|ռ + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,#waters|ˮ + N part|,%building|,bone| + N part|,%inanimate|,%space|ռ,edge| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N plans|滮,good| + N medicine|ҩ,good| + N plans|滮,good| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N time|ʱ,important|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ʦ N human|,*teach|,good| +̬ V BeGood|̬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N time|ʱ,night|,happy| + N emotion| +ķ V understand|,content=crime| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| +ҩ N medicine|ҩ,good| +Ե N attribute|,relatedness|,intimate|,#GetMarried|,&human| +֪ N experience| + ADJ aValue|ֵ,kind|,superior| +ݬ ADJ aValue|ֵ,content|,mixed| + NUM qValue|ֵ,amount|,cardinal| + ADJ qValue|ֵ,amount|,double| + ADJ qValue|ֵ,amount|,some|Щ + CLAS unit|λ,&weight| + N place|ط,#waters|ˮ +ܾ V defeated| + N direction|,mass| + N part|,%entity|ʵ,mass|,aspect| + N part|,%physical|,edge| + N part|,%physical|,head|ͷ,tail|β + N mental|,physical| + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N fact|,differ|ͬ + N attribute|,contrariness|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β +ֻ V ize|̬ +Ź N tool|þ,*measure| + N human|,family|,mass| + N fact|,differ|ͬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V embarrassed|Ϊ +һ ADJ aValue|ֵ,frequency|Ƶ + N part|,%physical|,edge| + ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ܲ N army|,*fight|,#land|½,#waters|ˮ,military| +ܶ N animal|,*alive|,#land|½,#waters|ˮ +ս N fact|,fight|,#land|½,#waters|ˮ,military| +ȫ ADJ aValue|ֵ,range|,all|ȫ,desired| +ȫ V fulfil|ʵ +Ϊ V lucky| + N method| +ͷ N part|,%entity|ʵ,aspect| +ͷ N part|,%entity|ʵ,mass|,aspect| + N part|,%entity|ʵ,mass|,aspect| +Ը V willing|Ը,manner=EachOther|໥ + N part|,%physical|,head|ͷ,tail|β + N room| +С޲ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N attribute|,sex|Ա,male|,female|Ů,&animate| +Թϵ N attribute|,relatedness|,#mating|,&animate| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + ADJ aValue|ֵ,ability| + N part|,%human|,mass|,aspect| + ADJ qValue|ֵ,amount|,double| + N attribute|,property|,double|,&entity|ʵ + N part|,%human|,head|ͷ +ް߰ ADJ aValue|ֵ,age|,aged| +޲Բ ADJ aValue|ֵ,age|,aged| + CLAS NounUnit|,&LandVehicle| + CLAS unit|λ,&LandVehicle| + V measure| + N quantity|,amount|,&entity|ʵ + N quantity|,amount|,&inanimate| + N tool|þ,*measure| + V QuantityChange| + N fact|,change| + N tool|þ,*measure| + N part|,%language| + N attribute|,measurement|,&physical| + V ize|̬ + N quantity|,amount|,&physical| + N tool|þ,*measure| + N tool|þ,*measure| + V do|,manner=proper| + V do|,manner=proper| +ƿ N tool|þ,*measure| +Ϊ V do|,manner=proper| + ADJ aValue|ֵ,kind|,special| + V do|,manner=proper| + N measure|,content=temperature|¶ + V estimate|,content=punish|,police| +Ѫѹ N measure|,content=strength| +ֵ N quantity|,amount|,&physical| + N part|,%physical| + V dry| + V dry| +ɹ V dry| + ADJ aValue|ֵ,brightness|,bright| + N attribute|,quality|,strong|ǿ,desired|,&thing| + N attribute|,brightness|,&physical| + N lights| + N lights| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V appear| + V forgive|ԭ + V understand| +½ V forgive|ԭ +½ V understand| + V incite|ָʹ + V lift| + V spray| + V tease|ȡ +ò V incite|ָʹ +ò V tease|ȡ +ÿ V lift| + V lift| + V talk|̸ + V talk|̸ + V talk|̸ + V talk|̸ +ο V AtEase| +Ż N weapon|,aircraft|,military| + N human|,employee|Ա + N human|,friend| + V cure|ҽ +Ƴ N process|,#cure|ҽ,#disease| +Ʒ N method|,*cure|ҽ,#disease| +Ч N attribute|,effect|Ч,&cure|ҽ,medical|ҽ + V maintain| +Ժ N InstitutePlace|,@maintain|,medical|ҽ + V burn| +ԭ V burn|,patient=land|½ +ԭ֮ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,few| +޼ ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,distance|,far|Զ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ɶ N place|ط,ProperName|ר,(China|й) +ɶ뵺 N land|½,#waters|ˮ,ProperName|ר,(China|й) +ɺ N waters|ˮ,linear|,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) +Զ ADJ aValue|ֵ,distance|,far|Զ +ʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʲ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ʵ V decline|˥ + V finish| + V know|֪ + STRU {MaChinese|} +˲ ADJ aValue|ֵ,circumstances|,urgent| +˲ ADJ aValue|ֵ,kind|,special| +˲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˲ ADJ aValue|ֵ,kind|,special| +˵ N expression|,*surprise| +˽ V finish| +˽ V fulfil|ʵ +˽ V know|֪ +˽⵽ V know|֪ +˾ V finish| +˾ N process|,ending|ĩ + V know|֪ +ȴ V fulfil|ʵ +ָ V know|֪ + V finish| + V look| + V MoveItDown| + V defeat|սʤ + V put| +̵ V defeat|սʤ +̻ V damage|,agricultural|ũ + V put| + N tool|þ,police|,*detain|ס,#crime| + N tool|þ,police|,*detain|ס,#crime| + N character|,surname|,human|,ProperName|ר + N attribute|,quality|,&human| + N food|ʳƷ,*feed|ι,#animal| + N material| + V predict|Ԥ +ϵ V predict|Ԥ +ϼ V predict|Ԥ +Ͼ N material|,liquid|Һ,?food|ʳƷ,$drink| + V arrange| + V cook| + N edible|ʳ + V handle| + N tool|þ,generic|ͳ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V predict|Ԥ + N material|,?clothing|,?tool|þ + V PutInOrder| + V include| + V quote| +б N human|,#occupation|ְλ,military| +г N LandVehicle| +г N human|,#occupation|ְλ,official|,#LandVehicle| +гԱ N human|,#occupation|ְλ,employee|Ա,#LandVehicle| +е N FlowerGrass|,?medicine|ҩ +е N land|½,mass| +ж V PutInOrder| +и N money|,(Bulgaria|) +й N place|ط,country|,mass| +о V quote| +п N money|,(Albania|) + N human|,official|,politics|,ProperName|ר,(Russia|˹) +ǿ N place|ط,country|,mass|,past| +ϯ V engage| + N money|,(Romania|) +֧ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,past| + V FormChange|α +ѱ V change| +ѷ N trace|,#FormChange|α +Ѻ N trace|,#FormChange|α +ѻ V FormChange|α +ѽ V FormChange|α +ѿ V FormChange|α +ѿ V FormChange|α +ѿ N location|λ,#OutOfOrder| + N trace|,#FormChange|α +϶ N trace|,#FormChange|α + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ҷ N attribute|,intensity|ǿ,&shiver|,#land|½ +һ N fire|,strong|ǿ +Ҿ N human|,family| +Ҿ N human|,family|,#military| + N celestial|,hot| +ʿ N human|,*die|,desired| + N human|,family|,#die| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fire| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ӵ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ӽ N result|,undesired|ݬ,#crime| + N livestock|,useless|,undesired|ݬ + N human|,undesired|ݬ + N attribute|,circumstances|,bad|,&human|,&organization|֯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,bad|,undesired|ݬ + V catch|׽ס +Բ V catch|׽ס +Թ N livestock|,*catch|׽ס,#beast| +Ի N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +Ի V obtain|õ + N human|,*catch|׽ס,#beast|,agricultural|ũ + V seek|ıȡ,possession=new| +ǹ N weapon|,*firing| +ȡ V catch|׽ס +ȡ V seek|ıȡ + N human|,#occupation|ְλ,*catch|׽ס,#beast|,agricultural|ũ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ɱ V catch|׽ס,kill|ɱ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ͷ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + N AnimalHuman|,$catch|׽ס + N bird| + N character|,(China|й) +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N affairs|,planting|ֲ,tree|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N community| + N tree| +ֲ N artifact|˹,#tree| +ֲƷ N artifact|˹,#tree| +ֳ N place|ط,@planting|ֲ,#tree| +ִ N place|ط,#tree| +ֵ N land|½,#tree| +ֺ N tree| +ּ N money|,(Malaysia|) +ּ N language|,#country|,ProperName|ר +ֿ N human|,official|,ProperName|ר,(US|) + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ľ N tree| +ũ N human|,#occupation|ְλ,*planting|ֲ,#tree|,agricultural|ũ + N place|ط,@planting|ֲ,#tree| + N sound|,#tree| + N place|ط,#tree| +Ա N human|,#occupation|ְλ,*manage|,#tree| +ҵ N affairs|,planting|ֲ,tree|,agricultural|ũ +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| + N facilities|ʩ,route|· +о N human|,*reside|ס + N tree| + N chemical|ѧ +׷ N material|,*feed|ι,#crop|ׯ +׹ N lights| +׻ N fire| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +֬ N chemical|ѧ + N RainSnow|ѩ,strong|ǿ + N RainSnow|ѩ,strong|ǿ + V BeNear| + ADV aValue|ֵ,time|ʱ,future| + V arrive| + V facing| + PREP {time|ʱ} +ٱ V farewell| +ٲ V labour|ٲ +ٳ ADJ aValue|ֵ,location|λ,special| +ٳ ADJ aValue|ֵ,time|ʱ,special| +ٴ ADJ aValue|ֵ,property|,#cure|ҽ,medical|ҽ +ٴҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ٵ V undergo| +ٵ PREP {time} +ٺ V BeNear|,partner=waters|ˮ +ٺ V BeNear|,partner=waters|ˮ +ٽ V BeNear|,partner=waters|ˮ +ٽ V facing|,partner=route|· +ٽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ٽ V BeNear| +ٿʾ V slack|͵ + ADJ aValue|ֵ,time|ʱ,#facing|,#mouth|,sport| + V arrive|,LocationFin=house| +ġ V imitate|ģ + V labour|ٲ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ V slack|͵ +ʱ N human|,military| +ʱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʱ N human|,#occupation|ְλ,employee|Ա,TimeShort| +ʱ N attribute|,duration|,TimeShort|,&entity|ʵ +˯ ADJ aValue|ֵ,time|ʱ,#BeNear|,#sleep|˯ + N time|ʱ,@BeNear|,#die| +ͷ V happen| +Σ V BeNear|,partner=die| +Σ ADJ aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V facing|,partner=dangerous|Σ,manner=^fear| + ADJ aValue|ֵ,time|ʱ,#BeNear|,#leave|뿪 + N place|ط,city|,ProperName|ר,(China|й) +ս ADJ aValue|ֵ,time|ʱ,#BeNear|,#fight| +ĥǹ V slack|͵ + V flee| + ADJ aValue|ֵ,time|ʱ,#BeNear|,partner=die| + ADJ aValue|ֵ,distance|,near| +ڰ N place|ط,country|,*BeNear| +ڴ N place|ط,village|,*BeNear| +ڹ N place|ط,country|,*BeNear| +ڼ N human|,*BeNear|,#reside|ס +ڽ N image|ͼ,angular| +ڽ V BeNear| +ڽ ADJ aValue|ֵ,distance|,near| +ڽ V BeNear| +ڽ N location|λ,near| +ھ N human|,*BeNear|,#reside|ס +ھ N human|,*reside|ס,near| +ھӼ N human|,*BeNear|,#reside|ס + N human|,#reside|ס,near| + N place|ط,#reside|ס + N human|,*reside|ס,near| + N human|,#reside|ס,near| + N part|,%fish|,skin|Ƥ +۴α ADJ qValue|ֵ,amount|,many| +ۼ N part|,%fish|,skin|Ƥ +۾ N part|,%plant|ֲ,body| +Ƭ N part|,%fish|,skin|Ƥ +צ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +צ N part|,%fish|,skin|Ƥ +צ N part|,%thing|,secondary| + V filter| + V spray| +ܰ N part|,%AnimalHuman|,liquid|Һ +ܰͽ N part|,%AnimalHuman|,nerve| +ܰϸ N part|,%animate| +ܲ N disease| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +쾡 ADJ aValue|ֵ,content|,detailed|,desired| +ϴ V wash|ϴ +ԡ V wash|ϴ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + V borrow| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ϧ V grudge| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +Ĺ N human|,miser|,undesired|ݬ + V pick|ʰ + V pick|ʰ,Vgoingon|չ + N character|,(China|й) + N character|,name|,human|,ProperName|ר + N sound| + ADJ aValue|ֵ,quality|,refined|,desired| + N part|,%plant|ֲ,embryo| + N part|,%plant|ֲ,embryo| + N image|ͼ,cubic| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + N inanimate| + NUM qValue|ֵ,amount|,cardinal| + N symbol|,sport| +㲿 N part|,%implement| + N quantity|,amount|,&unit|λ,#temperature|¶ +㹤 N affairs|,industrial| +㹤 N human|,#occupation|ְλ,employee|Ա +㻨Ǯ N money| + N part|,%implement| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + V sell| + N part|,%implement| +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,importance|,secondary| +߰ N inanimate|,secondary| +Ǯ N money| +ɢ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʳ N edible|ʳ + V sell| +۵ N InstitutePlace|,*sell|,@buy|,commercial| +۶ N quantity|,amount|,&sell|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +ҵ N affairs|,commercial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ inanimate|,secondary| +ͷ ADJ inanimate|,secondary| +ͷ N part|,%physical|,*surplus|ʣ + N quantity|,amount|,&unit|λ,#temperature|¶ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ǯ N money| + N edible|ʳ + N attribute|,age|,&animate| + N attribute|,duration|,&entity|ʵ + N part|,%plant|ֲ,embryo| + N tool|þ,*MakeSound| + N tool|þ,*MakeSound| + N human|,#occupation|ְλ,entertainment| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N beast| + N beast| + N character|,surname|,human|,ProperName|ר + V damage| + V rise| +賿 N time|ʱ,morning| + V punish| + V surpass|ǿ + V surpass|ǿ + V rise| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ű V damage| + V damage| + N FlowerGrass| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N tool|þ,cubic|,@store|,#human|,#die| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +鳵 N LandVehicle|,*transport|,#human|,#die| +鵤 N medicine|ҩ,good| +鵤ҩ N medicine|ҩ,good| + N emotion| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N lights|,#humanized| + N lights|,queer| + N mental| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N attribute|,behavior|ֹ,flexible|,&entity|ʵ + N thinking|˼ +һ V own|,possession=thought|ͷ +è N livestock| + ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,behavior|ֹ,clever|,&implement| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N room|,@salute|¾,#die| +ͨ V know|֪,#information|Ϣ,manner=fast| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| +֥ N AlgaeFungi|ֲ,?medicine|ҩ + N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,@store|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V decline|˥ +԰ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%land|½,head|ͷ + V collect| + V guide| + V know|֪ + V own| + N part|,%AnimalHuman|,head|ͷ + N part|,%clothing|,#head|ͷ + V receive| + V understand| + V guide|,patient=employee|Ա + N human|,#occupation|ְλ,official| +쳪 V guide|,ResultEvent=sing|,entertainment| +쳪 N human|,*guide|,#sing|,entertainment| + N fittings|,%clothing| + N fittings|,%clothing|,*fasten|˩ +쵼 N fact|,order|,control| +쵼 V guide| +쵼 N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼λ N attribute|,status|,&human|,#guide| +쵼 N method|,*guide| +쵼ɲ N human|,official| +쵼Ǹ N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N human|,official| +쵼ˮƽ N attribute|,rank|ȼ,&human|,#guide| +쵼ͬ־ N human|,official| +쵼С N part|,%organization|֯,*guide|,official| +쵼 N method|,*guide| +쵼 N human|,official| +쵼 N attribute|,behavior|ֹ,&human|,#guide| +쵼 N attribute|,effect|Ч,&human|,#guide| +쵽 V collect|,Vachieve| +쵽 V guide| + V guide|,ResultEvent=walk| + V guide|,ResultEvent=SelfMove| + N place|ط + N place|ط,#country| + V guide|,patient=community| + N human|,official| + V guide|,ResultEvent=VehicleGo|ʻ + N human|,#occupation|ְλ,*guide|,#ship| + N institution|,diplomatic|⽻ +캣 N waters|ˮ,surfacial|,#country| +캽 V guide|,ResultEvent=VehicleGo|ʻ +캽 N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| +캽Ա N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| + V know|֪ + V understand| +콭 V guide|,ResultEvent=VehicleGo|ʻ +콭 N human|,#occupation|ְλ,*guide|,#ship| + V perception|֪ + V request|Ҫ,ResultEvent=teach| + N tool|þ,$PutOn|,*decorate|װ + N tool|þ,$PutOn|,*decorate|װ + N sky|,#country| + N part|,%clothing|,#head|ͷ +· V guide|,ResultEvent=SelfMove| + V understand| + V grateful|м +ȡ V collect| + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +¹ N institution|,diplomatic|⽻ + V receive| +ˮ N waters|ˮ,surfacial|,#country| +ͷ V guide| + N place|ط,#country| + V understand| + V surpass|ǿ + V undertake|,content=important| + V undertake|,content=important| + N human|,official| + N aspiration|Ը,become|Ϊ,#official| + V foster| + V use| + V own| +֤ N human|,$ExpressAgreement|ʾͬ + N part|,%entity|ʵ,aspect| + N place|ط,#country| + N mark|־,$PutOn| + N human|,*own|,#place|ط + N part|,%clothing|,#head|ͷ + V admit|,content=crime| + ADJ aValue|ֵ,kind|,other| +辶 V create|,PatientProduct=method|,manner=other| + N account|,*record|¼ + CONJ {supplement|ݽ} + V create|,PatientProduct=different| +¯ V start|ʼ,manner=also|Ҳ + ADJ aValue|ֵ,kind|,other| + CONJ {supplement|ݽ} + ADV aValue|ֵ,kind|,other| +һ CONJ {supplement|ݽ} +һ PRON other| + V CauseToDo|ʹ + CLAS NounUnit|,&paper|ֽ + V ResultIn| + N fact|,compete|,#drink| + V order| + N text|,*order| + N text|,past| + N time|ʱ,season| + N character|,surname|,human|,ProperName|ר + N mark|־,*order| + V ResultIn| +˲ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#uneasy| +˲ ADJ aValue|ֵ,ability|,able|,MakeWorried| +˳ V CauseToDo|ʹ,ResultEvent=despise| +˴۽ ADJ aValue|ֵ,ability|,able|,attract| +˴۽ N thing|,*teach| +˶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +˷ָ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +˸ ADJ aValue|ֵ,circumstances|,happy|,desired| +˹ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| +˻ ADJ aValue|ֵ,ability|,able|,LookBack| +˾η ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#fear| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| +ëȻ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +ջ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#upset| +ƣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,property|,attract| + ADJ aValue|ֵ,ability|,able|,irritate|ŭ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N fact|,$disgust|,undesired|ݬ +ŷ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#believe| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +ź ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +۶ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +Ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#pant| +Ŀ ADJ aValue|ֵ,property|,attract| +Ż ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +нֹ V obey|ѭ + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + N location|λ + N part|,%building|,#liquid|Һ,@flow| + N place|ط,#reside|ס + N shape| + V slide| + N water|ˮ,fast| + V exercise| + V walk| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ˮ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + V refuse| + V please|ȡ +֮ V flee| + V flee| + N material| + N material|,?building| + N fruit|ˮ + N weapon| + N fruit|ˮ + N weapon|,$firing| + N chemical|ѧ + V ize|̬ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +þ N chemical|ѧ + N chemical|ѧ +ͭ N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + V cook| + V PassOn| + V SetAside| + V keep| + V receive| + V request|Ҫ,ResultEvent=stay|ͣ + V stay|ͣ + V study|ѧ,#foreign| + V stay|ͣ + V SetAside|,commercial| + N money|,foreign|,$SetAside|,commercial| + V SetAside| + V wait|ȴ +쿴 V suffer|,content=punish| + V PassOn| +· V defend| + V defend| + V stay|ͣ + V stay|ͣ,education| + V SetAside|,patient=space|ռ + V stay|ͣ,cause=satisfied| + V FondOf|ϲ + V study|ѧ,location=(US|) + V MakeTrouble| + V PassOn| + V request|Ҫ,patient=human|,ResultEvent=stay|ͣ + V undertake| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N tool|þ,*disseminate| + V defend| + V engage| + V reside|ס + V PassOn| + V PayAttention|ע +ѧ V study|ѧ +ѧ N human|,*study|ѧ,#foreign|,education| + V tell| +Բ N readings|,@record|¼,#thought|ͷ + V study|ѧ,#foreign| +һ V SetAside|,patient=knowledge|֪ʶ,#teach| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӱ V TakePicture| + V employ| + V SetAside| + V SetAside| + V defend| + V SetAside| +Ȩ N rights|Ȩ,*SetAside| +ס V detain|ס,Vachieve| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N disease| +θ N part|,%AnimalHuman|,viscera| + V SelfMove| + V circulate|ѭ,commercial| + V disseminate| + V flow| + N ill|̬ + ADJ aValue|ֵ,property|,^$fulfil|ʵ + V fail|ʧ + V labour|ٲ + ADJ aValue|ֵ,behavior|ֹ,fluent|,speak|˵ + ADJ aValue|ֵ,content|,easy|,desired| + N process| +ͼ N image|ͼ + V PassOn| + V disseminate| + V roam| + N weapon|,$firing| + V roam| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + V flow| + V roam| +ʲ N wealth|Ǯ +ʽ N fund|ʽ,*SelfMoveInManner|ʽ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V exile| + N disease| + N time|ʱ + V excrete|й,patient=waste| + V flow| +ˮ N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + N human|,undesired|ݬ,*rob|,crime| + V roam| +˺ N human|,*roam|,poor|,undesired|ݬ + N drop|Ͷ,patient=liquid|Һ,LocationIni=eye| +ʧ V roam| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| + V stay|ͣ,cause=satisfied| + V stay|ͣ,cause=satisfied| + N quantity|,amount|,#flow|,&water|ˮ + N tool|þ,*measure|,#amount|,#water|ˮ,#flow| +¶ V express|ʾ + V reside|ס +å N human|,undesired|ݬ,#crime| +åϰ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +åΪ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +å N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| + N disease| + N attribute|,outlook|ǰ,&human| + N time|ʱ + N community|,#knowledge|֪ʶ +ɢ V disperse|ɢ +ɳ N stone|ʯ + N human|,*withdraw|˳,#education| +ʧ V disappear|ʧ + V disappear|ʧ +ˮ N water|ˮ,*flow| +ˮ N facilities|ʩ,@produce| +ˮ N account|,@record|¼,#wealth|Ǯ +ˮҵ N method|,*produce|,industrial| + N tool|þ,*decorate|װ + N attribute|,speed|ٶ,&flow|,#water|ˮ + V flow| + N physical|,liquid|Һ,generic|ͳ +ѧ N knowledge|֪ʶ +ͨ V circulate|ѭ +ͨ N quantity|,amount|,#circulate|ѭ,&water|ˮ,wealth|Ǯ +ͨȯ N money| +ͨҵ N affairs|,commercial| +ͨʽ N fund|ʽ,*SelfMoveInManner|ʽ + V flee| + N tool|þ,*catch|׽ס,#fish| + N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + ADJ aValue|ֵ,form|״ + N celestial| + N weapon|,past| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| + V prosper| +в N disease| +вѧ N knowledge|֪ʶ,#disease|,medical|ҽ +и N music| +и N human|,*compile|༭,#music|,entertainment| +ɫ N attribute|,color|ɫ,&physical| + ADJ aValue|ֵ,property|,CauseAffect|Ⱦ,medical|ҽ +Ըð N disease| + N disease| +Ѫ V bleed|Ѫ + N information|Ϣ,wrong|,undesired|ݬ +Է N information|Ϣ,wrong|,undesired|ݬ + N information|Ϣ,wrong|,undesired|ݬ +ʽ V become|Ϊ,descriptive=empty| + N place|ط,#waters|ˮ + ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ + N edible|ʳ,liquid|Һ +ת V circulate|ѭ,commercial| +ת V roam| + N character|,surname|,human|,ProperName|ר + N tree| + N attribute|,circumstances|,happy|,&human|,&organization|֯ + N artifact|˹,$weave| + N tree|,mass| + N MusicTool| + N tree| + N part|,%tree|,limb|֫ + N place|ط,city|,ProperName|ר,(China|й) +ݺ N bird| + NUM qValue|ֵ,amount|,cardinal|,mass| + N tool|þ,*measure| + N location|λ,%celestial|,%land|½ + ADJ aValue|ֵ,form|״ + N medicine|ҩ + N human|,family| + V uneasy| + N livestock| + N time|ʱ,month| +· N time|ʱ,month| + ADJ aValue|ֵ,status|,official| + N beast|,humanized| + N character|,surname|,human|,ProperName|ר + N humanized|,royal| + N ship| + N FlowerGrass| + N medicine|ҩ + N tool|þ,*illuminate| + N part|,%land|½,mouth| +ɷ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + N beast|,humanized| + N house|,#humanized| + N medicine|ҩ + N part|,%bird|,bone| + N part|,%ship|,bone| +dz N tool|þ,agricultural|ũ,*take|ȡ,#liquid|Һ + N beast| + N drinks|Ʒ + N material|,?drinks|Ʒ + N drinks|Ʒ + N wind|,strong|ǿ + N part|,%humanized|,mouth| +ʭ N InsectWorm| +̶ N place|ط,dangerous|Σ +̶Ѩ N place|ط,dangerous|Σ + N human|,entertainment| +ڻԾ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ͷ N part|,%LandVehicle|,*drive|Ԧ,arm| +ͷ N part|,%tool|þ,*OpenShut| + N humanized| +Ϻ N fish| + N crop|ׯ,?material| + N FlowerGrass|,?medicine|ҩ + N fruit|ˮ + V fight| + ADJ aValue|ֵ,age|,aged| + N ship| + V disable|м,scope=listen| + V disable|м,scope=listen|,scope=speak|˵ + N human|,undesired|ݬ,*disable|м,#listen|,#speak|˵ + N human|,undesired|ݬ,*disable|м,#listen| + V cover|ڸ + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + V lighting|ȼ + V entice| + V put|,patient=hand| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@cook| +ͳ ADJ aValue|ֵ,content|,simple|,undesired|ݬ +ͷ N part|,%LandVehicle| + V cover|ڸ + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + N part|,%mine| +¡ V FormChange|α,StateFin=protruding|͹ +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¡ N character|,surname|,human|,ProperName|ר +¡ N time|ʱ,winter| +¡¡ V MakeSound| +¡ V FormChange|α,StateFin=protruding|͹ +¡ N emotion|,strong|ǿ +¡ N time|ʱ,season|,hot| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¢ N part|,%land|½,agricultural|ũ +¢ V control| +£ V AmountTo|ܼ +£ V ComeTogether| +£ V approach|ӽ +£ N tool|þ,*MakeUp|ױ +¤ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¤ N place|ط,ProperName|ר,(China|й) +¥ N character|,surname|,human|,ProperName|ר +¥ N house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%building|,nerve| +¥ N part|,%house|,head|ͷ +¥ N house| +¥ N house| +¥ N part|,%house| +¥Ⱥ N building| +¥ N location|λ,%building| +¥̨ N building| +¥̨ N part|,%house|,space|ռ +¥ù N building| +¥ N part|,%building|,nerve| +¥ N location|λ,%building| +¥ N house|,generic|ͳ +¦ N aValue|ֵ,physique|,weak|,undesired|ݬ +¦ N character|,surname|,human|,ProperName|ר +¦ N phenomena|,undesired|ݬ,#unfortunate| +¦ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +§ V HoldInArm|§ +§ V gather|ɼ +§ V lift| +§ V rob| +§ V HoldInArm|§ +¨ N tool|þ,cubic|,@put| +¨ N tool|þ,cubic|,@put| +© V leak|© +© V lose|ʧȥ +© V ^tell| +© V leak|© +© N disease| +© V leak|©,agent=electricity| +© N attribute|,quality|,weak|,undesired|ݬ,&event|¼ +© N part|,%inanimate|,mouth| +©ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +© N tool|þ,*fill| +© V exposure|¶,agent=information|Ϣ +© V leak|©,agent=gas| +© V speak|˵,manner=difficult| +© N part|,%inanimate|,mouth| +© V leak|©,agent=lights| +© N tool|þ,*tell|,#time|ʱ +© N part|,%inanimate|,mouth| +© N tool|þ,cubic|,*TakeOutOfWater| +©˰ V evade|ر,content=expenditure|,commercial| +© V flee| +©֮ N human|,crime|,undesired|ݬ,*flee| +©й V exposure|¶ +©й V reveal|¶ +©ҹ N time|ʱ,day|,night| +© N part|,%inanimate|,mouth| +© N tool|þ,*fill| +ª ADJ aValue|ֵ,bearing|̬,thrifty|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ª ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ª N room|,thrifty| +ªϰ N attribute|,habit|ϰ,#addict|Ⱥ,bad|,&AnimalHuman| +« N FlowerGrass|,?material| +« N medicine|ҩ,(China|й) +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ +«έ N FlowerGrass|,?material| +« N MusicTool| +¬ N character|,surname|,human|,ProperName|ר +¬ N money|,(Armenia|) +¬ N money|,(Azerbaijan|ݽ) +¬ N money|,(Byelorussia|׶˹) +¬ N money|,(Estonia|ɳ) +¬ N money|,(Georgia|³) +¬ N money|,(Kazakhstan|˹̹) +¬ N money|,(Kirghizstan|˹˹̹) +¬ N money|,(Latvia|ά) +¬ N money|,(Lithuania|) +¬ N money|,(Russia|˹) +¬ N money|,(Tajikistan|˹̹) +¬ N money|,(Turkmenistan|˹̹) +¬ N money|,(Ukraine|ڿ) +¬ N money|,(Uzbekistan|α˹̹) +¬ N place|ط,capital|,ProperName|ר,(Zambia|ޱ) +¬ɭ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,capital|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¬ɭ N money|,(Luxemburg|¬ɭ) +¬ɭ N human|,(Luxemburg|¬ɭ) +¬ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rwanda|¬) +¬ N place|ط,country|,ProperName|ר,(Africa|) +¬﷨ N money|,(Rwanda|¬) +­ N part|,%AnimalHuman|,head|ͷ +­ N part|,%AnimalHuman|,bone| +® N house| +®ɽ N place|ط,ProperName|ר,(China|й) +®ɽĿ N attribute|,trueness|α,true|,&thing| +® N house| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N fire| +¯ ADJ aValue|ֵ,ability|,able|,desired| +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N material|,*lighting|ȼ,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N part|,%implement|,viscera| +¯ N attribute|,temperature|¶,&tool|þ +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N stone|ʯ,waste| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +° V rob| +° V rob|,military|,police| +° V rob| +± V cook| +± V ize|̬ +±ˮ N water|ˮ,salty| +± N chemical|ѧ +±ζ N food|ʳƷ +² V catch|׽ס +² N human|,$catch|׽ס +² N human|,$catch|׽ס,military| +² V catch|׽ס,military|,police| +³ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ N character|,surname|,human|,ProperName|ר +³ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +³ N edible|ʳ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ç ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +³ N place|ط,ProperName|ר,(China|й) +´ N part|,%land|½,base| +µ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +µµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µµΪ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +µ N tool|þ,*press|ѹ,#crop|ׯ +¶ N RainSnow|ѩ +¶ V express|ʾ +¶ V reveal|¶ +¶ V reveal|¶ +¶ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +¶ N beast|,*swim| +¶ N drinks|Ʒ,$addict|Ⱥ +¶ V WellKnown| +¶ V exposure|¶ +¶ V appear| +¶ˮ N RainSnow|ѩ +¶ V reside|ס +¶ N location|λ,external|,space|ռ +¶ N facilities|ʩ,mine| +¶ú N facilities|ʩ,mine| +¶ͷ V appear| +¶ڶ V exposure|¶ +¶һ V ShowOff|ҫ +¶һ V express|ʾ +¶Ӫ V reside|ס +¶ N RainSnow|ѩ +· N attribute|,distance|,&physical| +· N attribute|,kind|,&physical| +· N attribute|,rank|ȼ,&physical| +· N character|,surname|,human|,ProperName|ר +· N facilities|ʩ,route|· +· N fact|,tour| +· N method| +· N place|ط +· N reason| +· N part|,%route|·,edge| +· N mark|־,#route|· +·ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| +· N attribute|,distance|,#tour| +· N facilities|ʩ,*illuminate|,#route|· +· N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +· N part|,%route|· +· N expenditure|,*tour| +· N attribute|,behavior|ֹ,#transport|,&organization|֯ +· V GoThrough| +· N part|,%facilities|ʩ,route|·,base| +· V rob| +· PREP {LocationThru} +· N human|,#occupation|ְλ,police|,#route|· +· N facilities|ʩ,route|· +· N method| +· N institution|,#transport|,#route|· +· N part|,%place|ط +· N fact|,#vehicle|ͨ,#VehicleGo|ʻ +· N part|,%facilities|ʩ,route|·,skin|Ƥ +· N mark|־,#route|· +·ǩ N document|,*agree|ͬ,#vehicle|ͨ +· N human|,*GoThrough| +· N human|,unfamiliar|϶ +· N location|λ,%route|· +· N process|,#tour| +· N method| +· N document|,*agree|ͬ,#vehicle|ͨ +·͸ N institution|,news|,ProperName|ר,(UK|Ӣ) +·; N facilities|ʩ,route|· +·; N fact|,tour| +· N plans|滮,#tour| +·׸ N place|ط,capital|,ProperName|ר,(Mauritius|ë˹) +·˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +· N facilities|ʩ,*obstruct|ֹ,#AlterLocation|ռλ,#route|· +· N attribute|,relatedness|,&human|,&organization|֯ +· N method| +·ӿ V associate|,manner=extensive| +·Ұ V associate|,manner=extensive| +¹ N beast| +¹ N facilities|ʩ,space|ռ,military| +¹ N part|,%AnimalHuman|,*feel| +¹ N material|,?medicine|ҩ +¹˭ V unfixed|δ +¹ص N place|ط,city|,ProperName|ר,(Holland|) +¹ N facilities|ʩ,space|ռ,military| +º N place|ط,ProperName|ר,(China|й) +» N character|,surname|,human|,ProperName|ר +» N payment| +» N payment|,past| +¼ N account|,*record|¼ +¼ V employ| +¼ V record|¼ +¼ V record|¼ +¼ V record|¼,police| +¼ȡ V include| +¼ V record|¼ +¼ V TakePicture| +¼ V record|¼,content=image|ͼ +¼ N tool|þ,@record|¼,#image|ͼ +¼ N tool|þ,*TakePicture| +¼Ƭ N shows| +¼ N affairs|,entertainment| +¼ V record|¼,content=sound| +¼ N tool|þ,@record|¼,#sound| +¼ N tool|þ,*record|¼,#sound| +¼Ա N human|,*record|¼,#sound| +¼Ӱ V record|¼,content=image|ͼ +¼ V employ| +¼ V compile|༭ +½ N character|,surname|,human|,ProperName|ר +½ N land|½ +½ NUM qValue|ֵ,amount|,cardinal| +½ N crop|ׯ +½ N land|½ +½ N land|½,waters|ˮ,sky| +½ N army|,#land|½ +½ձ N army| +½· N facilities|ʩ,route|· +½ ADJ aValue|ֵ,sequence| +½ V transport| +½ս N fact|,fight|,#land|½ +½ս N army| +¾ͬ V cooperate| +¿ N livestock| +¿ V FitNot| +¿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +¿ N livestock| +¿Ƥ N medicine|ҩ +¿ N livestock| + N character|,surname|,human|,ProperName|ר + N metal| + N tool|þ +Ͻ N material|,metal| + N material| + N human|,friend| + N army|,generic|ͳ + N part|,%army| + V tour| +ð N human|,friend|,#tour| +ò N expenditure|,*tour| +ó N human|,#occupation|ְλ,official|,military| +ó N fact|,tour|,*AlterLocation|ռλ +ó N process|,#tour| +õ N InstitutePlace|,@reside|ס,#tour|,commercial| +÷ N expenditure|,*tour| +ù N InstitutePlace|,@reside|ס,#tour|,commercial| +ùϰ N human|,*employ|,commercial| +ý V obey|ѭ +þ V reside|ס +þӺ V reside|ס +ÿ N human|,*tour| +ÿ N human|,*tour|,*AlterLocation|ռλ + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| +˳ N place|ط,city|,ProperName|ר,(China|й) +; N fact|,tour| + V tour| +а N tool|þ,cubic|,@put|,#tour| +г N LandVehicle|,*tour| +д N tool|þ,cubic|,@put|,#tour| + N InstitutePlace|,#tour| + N InstitutePlace|,#tour|,commercial| + N community|,*tour| + N human|,*tour| + N affairs|,#tour| + V tour| +γ N LandVehicle|,*tour| +ʤ N place|ط,glorious|,@tour| +Ь N clothing|,#foot|,*tour| +ҵ N affairs|,#tour| + N human|,*tour| + N expenditure|,*tour| + N clothing|,#foot| + V conduct|ʵʩ + V walk| +Ĵ N part|,%implement| + N document|,@record|¼,#process| + N document|,@record|¼,#process| + ADJ aValue|ֵ,courage|,brave|,desired| + V engage|,content=occupation|ְλ,new| + V conduct|ʵʩ +Լ V conduct|ʵʩ,content=ExpressAgreement|ʾͬ + ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +ż ADJ aValue|ֵ,kind|,ordinary| +Ž̲ V refuse|,content=amend| +Žֹ V BeUnable|,content=restrain|ֹ + ADV aValue|ֵ,frequency|Ƶ,again| +Բˬ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V suffer|,frequency=again| + CLAS NounUnit|,&inanimate| + N tool|þ,linear|,*fasten|˩ + ADV aValue|ֵ,behavior|ֹ,^continuous| + V explain|˵ + V sad|dz + V think|˼ + N gas| +ȷ N chemical|ѧ +Ȼ N chemical|ѧ +Ȼ N chemical|ѧ + N material|,?clothing| +ù N medicine|ҩ + N gas| + N law|ɷ + V manage| + V restrain|ֹ + N system|ƶ +ɷ N law|ɷ +ɼ V restrain|ֹ,patient=self| +ʦ N human|,#occupation|ְλ,police|,#law|ɷ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| + V order| + N quantity|,rate|,&quantity| +ʲ V guide|,patient=army|,military| +ʶ V guide|,patient=community| +ʶ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʶ V write|д,manner=careless| + V guide| + V order| +Ȼ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| +ɾ V obey|ѭ,content=regulation| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V filter| +˲ V filter|,patient=electricity| +˲ N tool|þ,*filter|,#electricity| + N tool|þ,*filter| + V filter| +ɫ N tool|þ,*filter|,#color|ɫ +Һ N tool|þ,liquid|Һ,*filter| +ֽ N paper|ֽ,*filter| + ADJ aValue|ֵ,color|ɫ,green| +̲ N material|,?drinks|Ʒ +̵ N information|Ϣ,*agree|ͬ +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ +̵ N land|½,@planting|ֲ,FlowerGrass|,tree| +̶ N crop|ׯ +̷ N material|,*feed|ι,#crop|ׯ +̻ V ize|̬ +̿ N document|,*reside|ס,#country| + N part|,%building| +ֺú N human|,*rob|,#rich|,*help|,#poor| +ֺú N human|,undesired|ݬ,*rob|,crime| +Ӣ N human|,*rob|,#rich|,*help|,#poor| +ɫ ADJ aValue|ֵ,color|ɫ,green| +ɫʳƷ N edible|ʳ,#plant|ֲ,^$pollute|ʹ +ɫֲ N plant|ֲ,green| + ADJ aValue|ֵ,color|ɫ,green| +ˮ N waters|ˮ,green| +ˮɽ N place|ط,beautiful| +ͷѼ N bird| +Ҷ N part|,%plant|ֲ,hair|ë + N land|½,@planting|ֲ,FlowerGrass|,tree| + N facilities|ʩ,@exercise|,@compete|,sport| + ADJ aValue|ֵ,color|ɫ,green| + N trace|,#tree| +ӨӨ ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,FlowerGrass|,tree| + N land|½ + V CausePartMove| + ADJ aValue|ֵ,source|Դ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N part|,%AnimalHuman|,embryo| +Ѱ N part|,%AnimalHuman|,embryo| +ѳ N part|,%AnimalHuman|,female|Ů,viscera|,#GiveBirth| +ѻ N part|,%AnimalHuman|,embryo| +֬ N medicine|ҩ +ʯ N stone|ʯ,material| +ϸ N part|,%AnimalHuman|,embryo| + N part|,%AnimalHuman|,embryo| + V CauseToDo|ʹ,ResultEvent=disorder| + V FeelingByBad| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N fact|,uprise|,undesired|ݬ,politics| + V mix| + N phenomena|,disorder|,undesired|ݬ +ұ N human|,military|,undesired|ݬ +Ҳ V gather|ɼ,means=break|۶,manner=improper|,agricultural|ũ +ҵ V TalkNonsense|Ϲ˵ +ҷ׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ҷ׷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ҷظ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ҹ V associate|,scope=sex|Ա,manner=improper| +ҸŮϵ V associate|,scope=sex|Ա,manner=improper| +Һ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ +һǮ V lavish|˷ +ҿñ V damage|,politics| + V roam| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + V establish|,manner=improper| + N time|ʱ,disorder| +˵ V TalkNonsense|Ϲ˵ +̯ V issue|ַ,manner=improper| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N phenomena|,undesired|ݬ,disorder|,#unfortunate| + V GoThrough|,manner=fast| + V rob| +Ӷ V rob| +Ӷ N human|,*rob|,undesired|ݬ +ӹ V GoThrough|,manner=fast| +ȡ V rob| + N look|,manner=fast| +Ӱ N part|,%thing|,bone| + ADJ aValue|ֵ,content|,simple|,desired| + ADV aValue|ֵ,degree|̶,ish| +Գ ADJ aValue|ֵ,length|,long|,ish| +Գ N attribute|,name|,simple|,&entity|ʵ +Դ ADJ aValue|ֵ,size|ߴ,big|,ish| +Դ V contain|,quantity=few| +Դζ ADJ aValue|ֵ,taste|ζ,sour|,ish| +Լ ADV aValue|ֵ,degree|̶,ish| +ȥ V discharge| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,size|ߴ,small|С,ish| +ѷһ ADJ inferior|,degree=ish| +֪һ V know|֪,degree=ish| + V wave|ڶ + CLAS NounUnit|,&event|¼ + N part|,%LandVehicle|,leg| + V replace| + N shape| + N ship| +ְ V replace| +ֳ N part|,%implement| +ִ N ship| +ֵ V replace| +ֶ N ship| +ַ V replace| +ֻ V replace| +ֻ V circulate|ѭ +ֻ V circulate|ѭ,religion|ڽ +ֻ N machine| +ּ V damage|,purpose=mating|,crime| + N part|,%thing|,bone| + V replace| +ʽ ADJ aValue|ֵ,performance| +̥ N part|,%LandVehicle|,leg| + V shape| + V rest|Ϣ +ѵ V drill|ϰ + N LandVehicle|,*SelfMove|,#disable|м +ֵ V engage|,content=bear|е + N part|,%implement| +ת V circulate|ѭ + N part|,%LandVehicle|,leg| + V circulate|ѭ,#planting|ֲ,agricultural|ũ + N attribute|,relatedness|,&human| +״ N attribute|,content|,&language| +׶ N place|ط,capital|,ProperName|ר,(UK|Ӣ) + N attribute|,behavior|ֹ,&human| +ѧ N knowledge|֪ʶ,#behavior|ֹ +Ƥ N money|,(Honduras|鶼˹) + N unit|λ,&lights| + N lights| + N attribute|,sequence|,&event|¼ + V sink|³ + V unfortunate| +ɥ V decline|˥ + V perish| +Ϊ V become|Ϊ + V perish| + N fittings|,%clothing| + V decide| + V discuss| + N knowledge|֪ʶ + V regard|Ϊ + N text| + N thought|ͷ + PREP {AccordingTo} +۴ V decide| +۴ V punish| +۵ N human|,enemy|,#debate| +۵ N reason| +۵ N reason| +۶ N thought|ͷ +۹ V reward| +ۼ V discuss| +ۼ V decide|,content=price|۸ +۾ N information|Ϣ,*debate|,*explain|˵ + V fit|ʺ + N reason| + V explain|˵ +˵ N text| +˵ ADV {comment|} +̳ N fact|,@communicate| + N text|,$propose|,$discuss|,$debate| + N text|,#research|о +ļ N publications|鿯,#research|о + N publications|鿯,ProperName|ר +ս V debate| + V debate| +֤ N information|Ϣ,*explain|˵ + N publications|鿯 +ű V AlterGrade|伶,AccordingTo=status| + V decide| + N FlowerGrass| +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܽľ N FlowerGrass|,?medicine|ҩ + N fish| + N trace| +ݶ N tool|þ,*fix|ס,*fasten|˩ +ݺ N MusicTool| +ݺ N tool|þ,*MakeSound| +ĸ N tool|þ,*fix|ס,*fasten|˩ +˨ N part|,%implement| +˿ N tool|þ,*fix|ס,*fasten|˩ +˿ N tool|þ,*tighten|ս,*loosen| + N part|,%tool|þ,#fix|ס,#fasten|˩ + N trace| + N part|,%implement| + N part|,%implement| +״ ADJ aValue|ֵ,form|״ + N fish| + CLAS NounUnit|,&inanimate| + N character|,surname|,human|,ProperName|ר + V filter| + V gather|ɼ + N place|ط,country|,ProperName|ר,(Romania|) + N tool|þ,*catch|׽ס,#bird| +ް N place|ط,capital|,ProperName|ר,(Angola|) +޲ N crop|ׯ,?material| +޵µ N place|ط,provincial|ʡ,ProperName|ר,(US|) +޵õ N place|ط,ProperName|ר +޵õ N human|,(Rhode island|޵õ) +޵ N place|ط,ProperName|ר +޵ N human|,(Rhodesia|޵) +޹ N human|,*disable|м +޺ N human|,religion|ڽ + N crop|ׯ,?material| + V quote| + N place|ط,capital|,ProperName|ר,(Italy|) +ʵ N human|,royal| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Romania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rumania|) + N human|,(Rumania|) + N language|,#country|,ProperName|ר + N tool|þ,*tell|,#direction| +˹ N human|,official|,politics|,ProperName|ר,(US|) + V gather|ɼ + V include| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V speak|˵ +߼ N reason| +߼ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N MusicTool| + ADJ aValue|ֵ,occasion|,bustling| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N livestock| + N livestock| + ADJ aValue|ֵ,property|,exposure|¶ +¶ V aValue|ֵ,property|,exposure|¶ + N crop|ׯ + ADJ aValue|ֵ,property|,exposure|¶ + N tool|þ,linear|,*transmit|,#electricity| + V MoveItDown| + V ResultFrom|Ե + V decline|˥ + V fall| + V inferior| + V lose|ʧȥ + V sink|³ + V subtract| + V undergo| + V fail|ʧ,scope=exam|,result=include|,education| + V write|д + V FormChange|α,StateFin=bony| +Ϊ V become|Ϊ + N attribute|,different|,#water|ˮ,&waters|ˮ +䳱 V WeatherBad| + V succeed|ɹ +䵽 V undergo| + V undergo| + V ComeToWorld| + V fall| + V fail|ʧ + N location|λ,@arrive|,military| + N location|λ,@arrive|,sport| + N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| +仧 V reside|ס +仨ˮ V defeated| +仨 N crop|ׯ,?material|,$eat| +Ķ V flee| + V BecomeLess|,scope=price|۸ + V reside|ס +侮ʯ V damage| + V fail|ʧ + V sign|д,content=name| + V weep| + ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ѻ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V fail|ʧ + V fall|,LocationIni=livestock| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ļ V finish| + V unfortunate| +Ƹ V fail|ʧ,scope=$employ| + N celestial| +ɫ V AppearanceChange|۱ +ʵ V AtEase| +ʵ V decide| +ʵ V fulfil|ʵ +ˮ N human|,undesired|ݬ,*fail|ʧ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V suffer|,content=catch|׽ס,police|,crime| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| + N human|,bad|,undesired|ݬ +ѡ V fail|ʧ,scope=$select|ѡ +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N tree| + N lights|,#celestial| + V put|,#recreation| + V sit| + N character|,(China|й) + N money|,(Lesotho|) + N place|ط,capital|,ProperName|ר,(Togo|) +ɣ N place|ط,city|,ProperName|ר,(Swiss|ʿ) +ɼ N place|ط,city|,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N beast| +մ N crop|ׯ,?material| + N material|,?clothing| + N part|,%AnimalHuman|,nerve| + N shape| + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + N part|,%human|,hair|ë +ﲻ ADJ qValue|ֵ,amount|,many| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ,?material| + N medicine|ҩ + V paralyse|̱ + N tool|þ,cubic|,@put| + V CauseToDo|ʹ,ResultEvent=careless| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V paralyse|̱ +Դ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +鲼 N material|,?clothing| + N tool|þ,cubic|,@put| +鷳 V MakeTrouble| +鷳 ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +鷳 ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V produce|,industrial| + N disease| +粡 N human|,*SufferFrom|,disease| +粡 N human|,*SufferFrom|,disease| +黨 N food|ʳƷ + N FlowerGrass| + N medicine|ҩ +齫 N tool|þ,*gamble|IJ +齴 N material|,?food|ʳƷ + ADJ aValue|ֵ,taste|ζ,peppery| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,bright| +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ľ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ȸ N bird| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ +ʡ N place|ط,ProperName|ר,(US|) + N tool|þ,linear|,*fasten|˩ +ҩ N medicine|ҩ + N material|,?food|ʳƷ + N disease| + N human|,undesired|ݬ,#disease| + N trace|,undesired|ݬ,#disease| + V cure|ҽ +Ʒ N medicine|ҩ,?addictive|Ⱥ +ҩ N medicine|ҩ + N character|,(China|й) + N place|ط,ProperName|ר + N human| + N human|,ProperName|ר + N material|,?tool|þ,#decorate|װ + V pile|ѷ + N symbol| + CLAS unit|λ,&length| + V pile|ѷ +ͷ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ͷ N place|ط,city| + N symbol| + N tool|þ,*gamble|IJ,#money| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N InsectWorm| + N character|,surname|,human|,ProperName|ר + N livestock| + N part|,%tool|þ,#recreation| + N place|ط,country|,ProperName|ר,(Malaysia|) + N tool|þ,@sit|,#livestock| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,@sit|,#livestock| + N part|,%livestock|,body| + N tool|þ,*tell|,#time|ʱ + N InsectWorm| +ͣ V VieFor| +ͣ ADJ aValue|ֵ,behavior|ֹ,continuous| + N LandVehicle| + N FlowerGrass|,?medicine|ҩ + N machine| +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Madagascar|˹) +˹ N place|ط,country|,ProperName|ר,(Africa|) +˹ӷ N money|,(Madagascar|˹) + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N human|,careless|,undesired|ݬ + N weapon|,*stab| +ɹ V succeed|ɹ + N place|ط,capital|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(Cambodia|կ) + N tool|þ,*illuminate| + N army|,#livestock| + N livestock|,mass| + N livestock| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Africa|) +ʲ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Malta|) + N language|,#country|,ProperName|ר +ֽ N paper|ֽ + N InsectWorm|,*fly| + N human|,#occupation|ְλ,employee|Ա +ʬ V endeavour| + N clothing| +Լ N agreement|Լ,ProperName|ר,#(China|й),#(Japan|ձ) + CLAS unit|λ,&speed|ٶ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N clothing|,#body| + N livestock|,young| + N money|,(Germany|¹) + N money|,ProperName|ר +˹ N human| +˼ N human|,#knowledge|֪ʶ,ProperName|ר,(Germany|¹) + N metal|,material| + N clothing|,#leg| + N place|ط,capital|,ProperName|ר,(Equatorial Guinea|) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Africa|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malawi|ά) +ά N place|ط,country|,ProperName|ר,(Africa|) +ά߲ N money|,(Malawi|ά) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malaysia|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Malaysia|) + N place|ط,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Maldives|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mali|) + N place|ط,country|,ProperName|ר,(Africa|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + CLAS unit|λ,&PhysicsPower| + N knowledge|֪ʶ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,ProperName|ר +· N facilities|ʩ,route|· +¹ N beast| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| +ǹ N place|ط,capital|,ProperName|ר,(Nicaragua|) + N place|ط,capital|,ProperName|ר,(Philippines|ɱ) +ƥ N livestock|,mass| +ƨ N human|,*please|ȡ + N place|ط,capital|,ProperName|ר,(Mozambique|Īɣȿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Macedonia|) + N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר +ǰ N human|,undesired|ݬ,$employ| +ǹ N weapon|,*firing| + N SportTool|˶ +¬ N place|ط,capital|,ProperName|ר,(Lesotho|) + N place|ط,city|,ProperName|ר,(France|) + N material|,*build| + ADV aValue|ֵ,duration|,TimeShort| + N tool|þ,cubic|,*TakeOutOfWater| +ܶȺ N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N knowledge|֪ʶ,#sit|,#livestock| +˹ N place|ط,capital|,ProperName|ר,(Oman|) + N part|,%livestock|,foot| + N material| + N part|,%tool|þ,#livestock|,#foot| + ADJ aValue|ֵ,form|״ +Ͱ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ͷ N MusicTool| +β N part|,%livestock|,tail|β +β N tree| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| + N beast| +ѥ N clothing|,#foot| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N tool|þ,space|ռ,@sit| + N tool|þ,#foot|,#livestock| + N part|,%livestock|,hair|ë +濨 N fact|,entertainment| + N human|,#occupation|ְλ,*protect| + N crop|ׯ,?material| + N fish| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + STRU {MaChinese|} + STRU {MaChinese|,question|} + N medicine|ҩ,?addictive|Ⱥ + V bury| + V hide| + V bury| + V hide| +û V despise| +û V hide| + V bury| + V bury| +ͷ V endeavour| +ͷ V endeavour| + V bury| +Թ V blame|Թ + V bury| + V buy|,commercial| + N human|,commercial|,past| + N human|,*buy|,commercial| + V buy|,cost=expensive| + V please|ȡ + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V buy|,commercial| + V exchange|,manner=venture|ð,commercial| + N affairs|,#buy|,#sell|,commercial| +ͬ N agreement|Լ,commercial| +˫ N human|,*buy|,*sell|,commercial| + V buy|,commercial| +ͨ V entice|,means=GiveAsGift|,crime| +һһ V obtain|õ,manner=^pay|,condition=buy|,commercial| + V endorse|ӵ + N human|,*buy|,commercial| + N human|,#commercial|,*buy| + N crop|ׯ + N FlowerGrass|,?medicine|ҩ + N InsectWorm|,*fly| + N material|,?clothing| +ѳ N InsectWorm| + N part|,%crop|ׯ,body| +˷ N tool|þ,*disseminate| + N crop|ׯ,young| + N place|ط,capital|,ProperName|ר,(Bahrain|) +Ƭ N food|ʳƷ + N time|ʱ,autumn|,@collect|,#crop|ׯ + V collect|,agricultural|ũ + N part|,crop|ׯ + N land|½,#crop|ׯ +ѿ N part|,crop|ׯ + N InsectWorm|,undesired|ݬ,*fly| + N crop|ׯ + V betray| + V sell| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V MakeLiving|ı,means=sing| +úܻ ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V sell|,Vachieve| + N human|,*sell|,commercial| +г N affairs|,commercial| + V sell| +Ƥҩ V boast| + V ShowOff|ҫ,content=clever| + V betray|,target=country| + N human|,*betray|,#country| + V please|ȡ + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + V endeavour| + V endeavour| + V endeavour| +Ū V ShowOff|ҫ +Ū V show|,content=lascivious| +Ūɧ V show|,content=lascivious| + V show|,content=lascivious| +Ͷ V SeekRefuge|Ͷ + V MakeLiving|ı,means=perform| + V engage|,content=lascivious|,crime| + N human|,#commercial|,*sell| + ADJ aValue|ֵ,age|,aged| + V walk| + N place|ط,city|,ProperName|ר,(US|) + V walk| + V walk| + V GoForward|ǰ + V walk| + V walk| + V walk| + N experience| + N part|,%AnimalHuman|,nerve| + N phenomena|,#medical|ҽ + N phenomena| + V shiver| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| + N part|,%plant|ֲ,nerve| + N part|,%thinking|˼,nerve| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HideTruth| + V HideTruth| + V HideTruth|,^Vable| +ùȥ V HideTruth|,Vable| + V HideTruth|,Vachieve| + V deceive|ƭ + V HideTruth| + V HideTruth| +ȥ V HideTruth|,Vcontinue| + V HideTruth|,Vgoingon|չ +ͷ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADV aValue|ֵ,degree|̶,ish| + N human| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,fullness|,full| + N character|,surname|,human|,ProperName|ר + N community|,ProperName|ר,(China|й) + V due| + V fill| +ں V despise| + N result|,desired| + V doubt| + V arrive|,LocationFin=extreme| + V cherish|Ļ + V believe| + ADJ qValue|ֵ,amount|,many| +ڴӦ V agree|ͬ,manner=forthright|ˬ +໰ V speak|˵,content=lascivious| + ADJ aValue|ֵ,fullness|,full| + V exposure|¶,#countenance| +洺 V satisfied| +Ц V laugh|Ц +Ŀ ADJ aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ +ǻ V cherish|Ļ +ǻȳ V cherish|Ļ,content=sincere| +ǻ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ɽҰ N location|λ,land|½ +ù V teach|,manner=stiff| +ú N fact|,succeed|ɹ + ADJ aValue|ֵ,range|,all|ȫ + V satisfied| + N celestial| + N time|ʱ,day|,#young| +ض V GoBack|,#succeed|ɹ + ADJ place|ط,ProperName|ר,(China|й) + N human| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V fulfil|ʵ + V satisfied| + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,fullness|,full| + N part|,%plant|ֲ,body| + V disperse|ɢ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +˹ N place|ط,city|,ProperName|ר,(UK|Ӣ) + N place|ط,capital|,ProperName|ר,(Thailand|̩) + N place|ط,ProperName|ר,(US|) + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N sound| + N MusicTool| + N FlowerGrass|,?medicine|ҩ + V FormChange|α + V SlowDown| + ADJ aValue|ֵ,speed|ٶ,slow| + N LandVehicle| + V IllTreat| + ADJ aValue|ֵ,speed|ٶ,slow| + V run| + N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,speed|ٶ,slow| +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,kind| +Բ N disease| +Էʪ N disease| + N attribute|,behavior|ֹ,NotQuick|ګ,undesired|ݬ,&human| + N human|,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + V spill| + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V walk| + N human|,*walk| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V irrigate|,agricultural|ũ + N image|ͼ + N human|,*draw|,entertainment| + V talk|̸ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| +ɽҰ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,range|,extensive| + N sky| +Ҫ V propose|,content=price|۸,commercial| +ޱ߼ ADJ aValue|ֵ,area|,wide| +ޱ߼ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V spill| + V tour| + V tour|,#internet| + N human|,*tour| +á ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +á V deceive|ƭ +á V ExpressAgainst|Ǵ +á N human|,*ExpressAgainst|Ǵ +â N part|,%crop|ׯ +âڱ V uneasy| +â N fruit|ˮ +â N chemical|ѧ +â N time|ʱ,day| +ã ADJ aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãã ADJ aValue|ֵ,area|,wide| +ãã ADJ aValue|ֵ,clearness|,blurred| +ãȻ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãͷ V ignorant|֪ +ãͷ V unfixed|δ +ä V disable|м,scope=look| +ä ADJ disable|м,scope=look| +ä N part|,%AnimalHuman|,viscera| +ä V obey|ѭ +ä N location|λ,^$perception|֪ +ä V RashlyAct| +ä N human|,mass|,*roam| +äĿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +äĿ N human|,*salute|¾ +äĿ N attribute|,behavior|ֹ,rash|ç,&event|¼ +ä N location|λ,^$perception|֪ +ä N human|,undesired|ݬ,*disable|м,#look| +ä ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +äϹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +äͯ N human|,undesired|ݬ,young|,*disable|м,#look| +ä N character|,#disable|м,#look| +å N human|,ordinary| +æ V VieFor| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æ V VieFor| +æͣ V endeavour| +æ V endeavour| +æ͵ V rest|Ϣ,time=busy|æ +æµ V endeavour| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ææµµ V endeavour| +ç ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ç ADJ aValue|ֵ,clearness|,blurred| +ç N human|,rash|ç +çç ADJ aValue|ֵ,area|,wide| +çç ADJ aValue|ֵ,scene|,exuberant|ï,desired| +çԭ N land|½,surfacial|,desolate|,undesired|ݬ +çײ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +è N livestock| +è ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +èͷӥ N bird| +è N beast| +é N FlowerGrass| +é N character|,surname|,human|,ProperName|ר +é N FlowerGrass| +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é® N house| +éٿ V know|֪ +é N house| +ę́ N drinks|Ʒ,$addict|Ⱥ,ProperName|ר +ę́ N drinks|Ʒ,$addict|Ⱥ +é N house| +ê N tool|þ,*detain|ס,#ship| +ê N place|ط,#ship|,@stay|ͣ +ê N tool|þ,*detain|ס,#ship| +êλ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ë V BecomeLess|,commercial| +ë V BecomeLess|,scope=value|ֵ +ë ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ë ADJ aValue|ֵ,kind| +ë ADJ aValue|ֵ,property|,^succeed|ɹ +ë ADJ aValue|ֵ,size|ߴ,small|С +ë N bacteria|΢ +ë N character|,surname|,human|,ProperName|ר +ë N material|,?clothing| +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë CLAS unit|λ,&money|,(China|й) +ë N tree| +ë N PenInk|ī,*write|д +ëֽ N paper|ֽ,@write|д +ë N attribute|,quality|,weak|,undesired|ݬ,&thing| +ë N disease| +ë N phenomena|,undesired|ݬ,#BeBad|˥ +ë N material|,?tool|þ +ë N material|,?clothing| +ë ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ë N InsectWorm| +ë N shape| +ëػ N FlowerGrass|,?medicine|ҩ +ë N part|,%vegetable|߲,embryo|,$eat| +ë N vegetable|߲ +ë N part|,%AnimalHuman|,hair|ë +ë N material|,?clothing| +ëij N InstitutePlace|,@produce|,factory|,industrial| +ë N material|,?clothing| +ëȻ V fear| +ë N tool|þ,*wipe| +ë N tool|þ,*cover|ڸ,#sleep|˯ +ë N part|,%AnimalHuman| +ë˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritius|ë˹) +ë˹ N place|ط,country|,ProperName|ר,(Africa|) +ë˹¬ N money|,(Mauritius|ë˹) +ë˹ N human|,(Mauritius|ë˹) +ë ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritania|ë) +ë N place|ط,country|,ProperName|ר,(Africa|) +ë N human|,(Mauritania|ë) +ë N wealth|Ǯ,desired|,$earn|׬ +ë N quantity|,rate|,&wealth|Ǯ,#earn|׬ +ë N language|,#country|,ProperName|ר +ë N material|,?clothing| +ë¿ N livestock| +ëë N human|,young| +ëë N RainSnow|ѩ,weak| +ë N material|,?clothing| +ë N artifact|˹ +ëƤ N material|,?clothing| +ë N facilities|ʩ,#liquid|Һ,#crop|ׯ +ë ADJ aValue|ֵ,form|״ +ë N material|,?clothing| +ëɪǹ N weapon|,*firing| +ëë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ëԼ V recommend|Ƽ,content=self| +ë̺ N tool|þ,*cover|ڸ +ëϸ N part|,%AnimalHuman|,nerve| +ëϸѪ N part|,%AnimalHuman|,nerve| +ë N material|,?clothing| +ë N beast| +ë N clothing|,#body| +ë ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë N human|,official|,politics|,ProperName|ר,(China|й) +ëձ N material|,?clothing| +ë֯Ʒ N clothing| +ë֯Ʒ N material|,?clothing| +ë N tree| +ë״ ADJ aValue|ֵ,form|״ +ë N InsectWorm| +ì N weapon|,stab| +ì V FitNot| +ì ADJ aValue|ֵ,similarity|ͬ,FitNot| +ì N fact|,FitNot| +ì״ ADJ aValue|ֵ,form|״,acute| +ìͷ N weapon|,*stab| +í V fasten|˩,industrial| +í N part|,%implement| +í V fasten|˩,industrial| +î N character|,(China|й) +îʱ N time|ʱ,hour|ʱ +î N part|,%artifact|˹,#wood|ľ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ð ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ð ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ð V jet| +ð V venture|ð +ð V RegardAs|,means=pretend|װ +ð V jet| +ð V offend| +ð V venture|ð +ð V excrete|й,patient=waste| +ð V angry| +ð V appear| +ð V appear|,manner=many| +ð ADJ qValue|ֵ,amount|,many| +ð V surpass|ǿ +ð V GoForward|ǰ,manner=rash|ç +ð V collect|,means=cheat|ƭ +ð V venture|ð +ð N human|,rash|ç +ð V naming|,ResultIsa=name| +ð V replace|,means=naming|,#name| +ð ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ðƻ N thing|,$forge|α +ðʧ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ð֮ V venture|ð,content=suffer|,#ExpressAgainst|Ǵ +ð ADJ aValue|ֵ,circumstances|,dangerous|Σ +ð ADJ aValue|ֵ,courage|,brave| +ð V venture|ð +ðռ N human|,*venture|ð +ð ADJ aValue|ֵ,clearness|,blurred| +ð V use| +ðз ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ð V venture|ð,content=WeatherBad| +ð V venture|ð +ðΣ V venture|ð +ñ N clothing|,#head|ͷ +ñ N part|,%physical| +ñ N mark|־,$PutOn| +ñ N clothing|,#head|ͷ +ñ N part|,%clothing|,#head|ͷ +ñ N clothing|,#head|ͷ +ñ N mark|־ +ñ N part|,%clothing|,#head|ͷ +ò N attribute|,appearance|,&physical| +ò V BeIndependent| +ò V BeSimilar| +òʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ó N affairs|,commercial| +óٻ N institution|,commercial|,ProperName|ר,(China|й) +ó N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +óȻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ó N affairs|,#buy|,#sell|,commercial| +óױ N facilities|ʩ,*obstruct|ֹ,#commercial| +óײ N institution|,#commercial|,ProperName|ר,politics| +ó׶ N quantity|,amount|,&sell|,commercial| +ó׷ N law|ɷ,#commercial| +ó N quantity|,amount|,&sell|,commercial| +ó N quantity|,amount|,#InDebt|,&commercial| +ó N place|ط,commercial| +ó N human|,commercial| +ó˳ N quantity|,amount|,#earn|׬,&commercial| +ó N fact|,associate|,commercial| +óȶ N attribute|,circumstances|,peaceful|,&commercial| +óս N fact|,HaveContest|,#commercial| +ô STRU {MaChinese|} +õ N character|,(China|й) +õ N FlowerGrass| +ö CLAS NounUnit|,&inanimate| +÷ N character|,surname|,human|,ProperName|ר +÷ N fruit|ˮ +÷ٿ N money|,(Mozambique|Īɣȿ) +÷ N disease| +÷ N FlowerGrass| +÷¹ N beast| +÷ N RainSnow|ѩ +÷ N fruit|ˮ +ø N part|,animate| +ù N bacteria|΢ +ù V OutOfOrder| +ù N bacteria|΢ +ù V OutOfOrder| +ù N time|ʱ,season|,#RainSnow|ѩ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N part|,%facilities|ʩ,mine| +ú N stone|ʯ,waste| +ú˶ N stone|ʯ,material|,$burn| +ú N stone|ʯ,material|,$burn|,waste| +ú N material|,liquid|Һ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N InstitutePlace|,mine| +ú N material|,gas|,$burn| +ú N tool|þ,cubic|,@store|,#gas| +ú N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +ú N material|,$burn| +ú̿ N tool|þ,material|,*lighting|ȼ,$burn| +ú N land|½,#mine| +ú N gas|,waste| +ú N stone|ʯ,waste| +úҤ N facilities|ʩ,mine| +ú N material|,liquid|Һ,$burn| +ú N material|,waste|,$burn| +úש N tool|þ,material|,$burn| +ú N material|,$burn| +û V OwnNot| +û V disappear|ʧ +û V inferior| +û V sink|³ +û V spill| +û ADV {neg|,past|} +û ADV {neg|} +ûݲ V remember|ǵ +ûϢ V BeUnable|,content=prosper| +ûʶ ADJ BeUnable|,content=speak|˵ +û V BeUnable| +û V BeUnable| +ûֿ ADJ aValue|ֵ,wholeness|ȱ,complete| +ûϵ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V OwnNot|,possession=strength| +û ADJ aValue|ֵ,content|,boring|,undesired|ݬ +û V decline|˥ +ûŶ ADJ aValue|ֵ,possibility|,impossible| +û ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +û V die| +ûŪ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +û׶ V ignorant|֪ +û׶ V unfixed|δ +ûûҹ ADJ aValue|ֵ,duration|,TimeLong| +ûʲô ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û¶ ADJ aValue|ֵ,circumstances|,idle|,desired| +û¶ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V levy| +ûܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷû ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ûû ADJ aValue|ֵ,behavior|ֹ,continuous| +ûû ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +û V shameless|û +û ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +û V ExistNot| +û V OwnNot| +û V inferior| +û ADV {neg|,past|} +ûб ADJ aValue|ֵ,content|,empty| +ûв ADJ aValue|ֵ,content|,pure|,desired| +ûг嵭 ADJ aValue|ֵ,concentration|Ũ,concentrated| +ûи ADJ aValue|ֵ,circumstances|,relax|,desired| +û׶ V unfixed|δ +û ADJ aValue|ֵ,occasion|,quiet|,desired| +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,relax|,desired| +ûѧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +û׼ V unfixed|δ +û谭 ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ +û׼ V unfixed|δ +ü N part|,%AnimalHuman|,hair|ë +ü N part|,%paper|ֽ,head|ͷ +üɫ V joyful|ϲ +üЦ V laugh|Ц +üȥ V show|,content=lascivious| +üë N part|,%AnimalHuman|,hair|ë +üĿ N attribute|,appearance|,&AnimalHuman| +üĿ N attribute|,outlook|ǰ,&event|¼ +üĿ N attribute|,prettiness|,&AnimalHuman| +üĿ N part|,%thinking|˼,nerve| +üĿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ü N part|,%AnimalHuman|,hair|ë +üͷ N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,head|ͷ +ý N human|,*reconcile|,#GetMarried| +ý N physical|,*connect| +ý N institution|,*disseminate|,#news| +ý N physical|,*connect| +ý N human|,*reconcile|,#GetMarried| +ý N human|,*reconcile|,#GetMarried| +ý N institution|,*disseminate|,#news| +ý N tool|þ,*disseminate| +ý N physical| +þ N metal| +þ N lights| +þש N material|,*build| +ÿ ADJ qValue|ֵ,amount|,all|ȫ +ÿ CONJ {time|ʱ} +ÿ CONJ {time|ʱ} +ÿ V decline|˥ +ÿÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿʮ ADJ aValue|ֵ,frequency|Ƶ +ÿʱÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿһ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,day| +ÿСʱһ ADJ aValue|ֵ,frequency|Ƶ +ÿҳ N quantity|,amount|,&part|,#readings| +ÿҹ ADJ aValue|ֵ,frequency|Ƶ +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,week| +ÿܶ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿһ N time|ʱ,day|,#week| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + V satisfied| +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,(US|) + N attribute|,name|,good|,&entity|ʵ + N {prettiness|} + N attribute|,behavior|ֹ,good|,&human| + N part|,beautiful|,%AnimalHuman|,hair|ë + N money|,(US|) + N experience|,#beautiful| + N fact|,plan|ƻ,#shows|,entertainment| + N human|,#occupation|ְλ,*plan|ƻ,#shows|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + N place|ط,country|,ProperName|ר,(North America|) + N mark|־,#country|,(US|) + N army|,ProperName|ר,(US|) + N army|,ProperName|ר,(US|) +½ս N army|,ProperName|ר,(US|) + N human|,black| +վ N army|,ProperName|ר,(US|) +½ N army|,ProperName|ר,(US|) + N human|,(US|) + N institution|,*research|о,#aircraft|,(US|) + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V beautify| + ADJ aValue|ֵ,status|,(US|) + N human|,(China|й),(US|) + N money|,(US|) + N attribute|,scene|,beautiful|,&inanimate| + N drinks|Ʒ,good|,$addict|Ⱥ + N army|,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + N institution|,news|,ProperName|ר,(US|) + ADJ aValue|ֵ,circumstances|,happy|,desired| +ò ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ò N attribute|,appearance|,beautiful|,&human| + N thought|ͷ,#dream|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N attribute|,reputation|,glorious|,&human|,&organization|֯ + N human|,male|,beautiful|,desired| +Ů N human|,female|Ů,beautiful|,desired| +Ի V naming| + N human|,desired|,beautiful|,female|Ů + V MakeUp|ױ,#human| +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#human| +ҵ N affairs|,*MakeUp|ױ,#human| +Ժ N InstitutePlace|,@MakeUp|ױ,commercial| + N human|,commercial|,(US|) +ʳ N edible|ʳ,good|,desired| +ʳ N human|,able|,#eat| +ʽ ADJ aValue|ֵ,pattern|ʽ,(US|) + N fact|,*draw| + N knowledge|֪ʶ,entertainment| + N InstitutePlace|,@display|չʾ,literature| + N community|,literature| + N place|ط,country|,ProperName|ר,(US|),(USSR|) +̸ N fact|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N food|ʳƷ,#taste|ζ,good|,desired| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#literature| +ѧ N human|,#knowledge|֪ʶ + V praise|佱 + N affairs|,education|,#entertainment| + N attribute|,reputation|,glorious|,&human|,&organization|֯ +Ԫ N money|,(US|) +Ժ N InstitutePlace|,@teach|,@study|ѧ,#entertainment|,education| +Ժѧ N human|,*study|ѧ,education|,entertainment| +չ N InstitutePlace|,@display|չʾ,literature| +в N attribute|,quality|,weak|,undesired|ݬ,&thing| + N place|ط,ProperName|ר + V joyful|ϲ + V ignorant|֪ + V sleep|˯ + N human|,family|,female|Ů +÷ N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,young|,female|Ů + V please|ȡ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̬ N attribute|,bearing|̬,#please|ȡ,&human|,undesired|ݬ + V please|ȡ,target=foreign| + CLAS NounUnit|,&community|,#family| + CLAS NounUnit|,&knowledge|֪ʶ + CLAS NounUnit|,&weapon| + N attribute|,kind|,&physical| + N community|,#family| + N community|,#knowledge|֪ʶ + N community|,religion|ڽ + N method| + N part|,%building|,mouth| + N part|,%implement| +Ű N part|,%implement|,*hold|,*OpenShut|,hand| +Ű N tool|þ,*cover|ڸ,*protect|,#mouth|,#house| +ų N part|,%AnimalHuman|,*bite|ҧ +Ŵ N part|,%building|,mouth| +ŵ V fit|ʺ,scope=status| +ŵ N method| +Ŷ N part|,%building|,mouth| +Ŷ N part|,%building|,mouth| +ŷ N human|,#occupation|ְλ,*defend|,#building| +ŷ N part|,%building|,#mouth|,@defend| +Ż N attribute|,status|,&human| +Ż N community| +Ż N part|,%building|,mouth| +Ż֮ N thinking|˼,biased|ƫ,undesired|ݬ +ż N method| +ż N part|,%building|,mouth| +Ž N human|,sport| +ž N human|,#occupation|ְλ,*defend|,#building|,police| +ž N method| +ſ N method| +ſ N part|,%building|,mouth| +ſȸ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ſ N human| +ſ N location|λ,space|ռ,#mouth|,#building| +ſ N part|,%building|,mouth| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%InstitutePlace|,#commercial|,mouth| + N tool|þ,*MakeSound| +¥ N part|,%building|,#mouth|,space|ռ +· N attribute|,relatedness|,&human| +· N method| + N attribute|,prettiness|,&physical| + N part|,%InstitutePlace|,#commercial|,mouth| + N mark|־,#building| + N symbol|,#building| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +ǰ N location|λ,%building|,mouth| + N fact|,exercise| + N part|,%building|,mouth| + N humanized| + N human|,*study|ѧ + N fact|,sell|,commercial| +в N part|,%InstitutePlace|,*sell|,commercial| + N room|,@GoInto| +ͥ N attribute|,status|,&human| +ͥ N part|,%building|,mouth| +ͥ ADJ aValue|ֵ,occasion|,bustling|,desired| +ͽ N human|,*study|ѧ +⺺ N human|,undesired|ݬ,unable|ӹ + N human|,#occupation|ְλ,*protect|,*defend| + N human|,*study|ѧ + N part|,%AnimalHuman|,*bite|ҧ + V cure|ҽ +ﲡ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ﲿ N part|,%InstitutePlace|,@cure|ҽ,medical|ҽ +ﻼ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + N attribute|,power|,&entity|ʵ + N fittings|,%building|,mouth| + N part|,%building|,mouth| + V FeelingByBad| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V cover|ڸ + V stay|ͣ +ƺ« N problem| + N fact|,frighten|Ż,undesired|ݬ + N thunder| +Ʋ V FeelingByBad| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ +ӳ N LandVehicle| + SUFFIX aValue|ֵ,mass| + V pregnant|,agricultural|ũ +ȶ V begin|ʼ +ȶ V pregnant| +ȷ V pregnant|,agricultural|ũ + V appear| +ѿ V pregnant|,agricultural|ũ + V HideTruth| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V cover|ڸ + V dizzy| + V guess|² + V obtain|õ + N place|ط,country|,ProperName|ר,(Mongolia|ɹ) +ɱ V HideTruth| +ɴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɵά N place|ط,capital|,ProperName|ר,(Uruguay|) +ɹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mongolia|ɹ) +ɹ N place|ط,country|,ProperName|ר,(Asia|) +ɹŹ N place|ط,country|,ProperName|ר,(Asia|) +ɹ N language|,#country|,ProperName|ר +ɺ V HideTruth| +ɻ V HideTruth| +ά N place|ط,capital|,ProperName|ר,(Liberia|) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N knowledge|֪ʶ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,bright| + V suffer|,content=unfortunate| +ƭ V deceive|ƭ + V cover|ڸ,Vachieve| + V suffer| +֮ܲԩ N suffer|,content=unfortunate| + N place|ط,city|,ProperName|ר,(Canada|ô) +ͷת V dizzy| +ͷת V ignorant|֪ +ڹ V ignorant|֪ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,clan| + N community|,#ally| + N place|ط,#community| +˹ N place|ط,country|,*ally|,military|,desired|,#(WWII|ս) +˾ N army|,#country|,*ally|,military|,desired|,#(WWII|ս) + N human|,friend|,$ally| +Ա N human|,friend|,$ally| + N human|,official|,#ally| + N metal| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| +͹ V attack|,manner=strong|ǿ +ͻ N beast| +ͻ V beat| +ͽ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N bird| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N beast| + N beast|,past| + N fact|,dream| +λ N thought|ͷ,#dream| +λӰ N thought|ͷ,#dream| +μ V perception|֪ +ξ N thought|ͷ,#dream| + N fact|,dream| + V expect|,degree=extreme| + N thought|ͷ,#dream| + V expect| + V excrete|й,medical|ҽ + V walk|,time=dream| + N human|,*walk|,*dream| +߽ V speak|˵,time=dream| +߽ N text|,#dream| +߽ N human|,*speak|˵,*dream| + N thought|ͷ,#dream| + N character|,surname|,human|,ProperName|ר +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bangladesh|ϼ) +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N place|ط,city|,ProperName|ר,(India|ӡ) + N human|,ProperName|ר,past|,literature|,(China|й) + V CausePartMove|,#eye| + V ill|̬ + V sleep|˯ +з V CausePartMove| +з۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +ۿ V look| +ۿ V look|,manner=strong|ǿ + N chemical|ѧ + V lavish|˷ +ҷ V lavish|˷ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N food|ʳƷ + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N crop|ׯ + V FondOf|ϲ + V MakeMisunderstand|ʹ֪ + V attract| + V ignorant|֪ +Թ N facilities|ʩ,complicated| +Թ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ժ ADJ aValue|ֵ,clearness|,blurred| +Ժ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ժ V dizzy| +Ի V MakeMisunderstand|ʹ֪ +Ի󲻽 V confuse| +Խ N direction|,wrong| + ADJ aValue|ֵ,clearness|,blurred| + V FondOf|ϲ +· V ignorant|֪,content=direction| +· N part|,%AnimalHuman|,viscera| +ã ADJ aValue|ֵ,clearness|,blurred| +ȹ N clothing|,#leg|,#female|Ů + ADJ aValue|ֵ,ability|,&attract| + V FondOf|ϲ +ʧ V lose|ʧȥ +; V ignorant|֪ + N CloudMist|,blurred| + N entity|ʵ,*deceive|ƭ + N believe|,undesired|ݬ + N emotion|,believe|,undesired|ݬ +ס V attract| + V ignorant|֪ + N problem|,#guess|²,#recreation| +յ N result| + N problem|,#guess|²,#recreation| + ADJ aValue|ֵ,range|,all|ȫ +ֲ V enrich|ʵ +ֲ...IJ V enrich|ʵ +ֺ V enrich|ʵ + N humanized|,religion|ڽ + V BeNear|,partner=die| +֮ N time|ʱ,@BeNear|,#die| + V disperse|ɢ + N fact|,religion|ڽ +ɢ V disperse|ɢ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N part|,%plant|ֲ,embryo| + CLAS unit|λ,&length| +״ N material|,#food|ʳƷ,$eat|,sour| +׷ N food|ʳƷ +׷ N food|ʳƷ +׷ N material|,?food|ʳƷ,#crop|ׯ +׻ ADJ aValue|ֵ,color|ɫ,yellow| +׾ N drinks|Ʒ,$addict|Ⱥ + N place|ط,city|,ProperName|ר,(Italy|) + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N material|,?food|ʳƷ,#crop|ׯ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| + N food|ʳƷ,liquid|Һ + N InsectWorm| +н ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ˮ N water|ˮ,waste| + ADJ aValue|ֵ,behavior|ֹ,secret| +ط N document|,medical|ҽ,#medicine|ҩ +ط N method|,*cure|ҽ +ؾ N method|,secret| +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Peru|³) +³ N place|ط,country|,ProperName|ר,(South America|) +³ N human|,(Peru|³) + ADJ aValue|ֵ,behavior|ֹ,secret| + N fact|,secret| +ܻ N fact|,discuss|,secret| + N human|,#occupation|ְλ,employee|Ա +鳤 N human|,#occupation|ְλ,official| +鴦 N part|,%institution|,politics|,(institution|=UN|Ϲ) +鴦 N part|,%organization|֯ + N part|,%organization|֯ + N information|Ϣ + V LookFor|Ѱ +ʳ V LookFor|Ѱ,content=edible|ʳ + V excrete|й + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,taste|ζ,sweet| + N food|ʳƷ +۷ N InsectWorm|,*fly| +۸ N fruit|ˮ +۽ N food|ʳƷ,#fruit|ˮ + N part|,%FlowerGrass|,nerve| + N time|ʱ,#GetMarried| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ܱ ADJ aValue|ֵ,property|,$shut|ر +ܲɷ ADJ aValue|ֵ,relatedness|,intimate| +ܲ V exist| +ܶ N attribute|,density|ܶ,&physical| +ܷ ADJ aValue|ֵ,property|,$shut|ر +ܷȦ N tool|þ,*shut|ر +ܷ N attribute|,tightness|ɽ,&implement| +ܼ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ܼ ADJ aValue|ֵ,property| + N tree| + N symbol|,secret| + ADJ aValue|ֵ,density|ܶ,dense| +ܲ ADJ aValue|ֵ,density|ܶ,dense| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,density|ܶ,dense| +ı V plan|ƻ +ı N human|,*plan|ƻ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| + V discuss|,manner=secret| +ʵ ADJ aValue|ֵ,density|ܶ,dense| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̸ N fact|,talk|̸,secret| +̸ V talk|̸,manner=secret| +̽ N human|,#occupation|ְλ,police|,military|,*scout| +Ъ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,friend| +Ʋ V AptTo| +ֲ V planting|ֲ,agricultural|ũ + N crop|ׯ,?material| +ް N clothing|,#body| +ޱ N tool|þ,*cover|ڸ,#sleep|˯ +޲ N material|,?clothing|,?tool|þ +޷ N fact|,produce| +޷ij N InstitutePlace|,@produce|,factory|,industrial| +޷֯ N fact|,produce| +޺֩ N InsectWorm|,undesired|ݬ +޺ N clothing|,#body| +޻ N material|,?clothing|,?tool|þ +޿ N clothing|,#leg| + N InsectWorm| +ë N clothing|,#leg| +ë N clothing|,#body| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ɴ N material|,?clothing| + N land|½,@planting|ֲ,#crop|ׯ + N tool|þ,linear|,*fasten|˩ +Ь N clothing|,#foot| + N material|,?clothing|,?tool|þ + N InsectWorm|,undesired|ݬ + N clothing| +֯Ʒ N clothing|,generic|ͳ + N part|,%plant|ֲ,embryo| + V sleep|˯ + ADJ aValue|ֵ,hardness|Ӳ,soft| + N material|,clothing| +ౡ N attribute|,strength|,&human| +೤ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V enlarge| + N livestock| + N place|ط,city|,ProperName|ר,(China|й) +ب V enlarge| + N clothing|,#head|ͷ,royal| + V discharge| + V escape| + V exempt| + V remove| + V exempt| + V obstruct|ֹ + V escape| + ADJ aValue|ֵ,property|,^$pay| + V OwnNot|,possession=clothing| + V StripOff|ȥ,patient=clothing| +Ʊ ADJ aValue|ֵ,property|,^$pay| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,cheap| +ȥ V discharge|,Vachieve| + V escape| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V aValue|ֵ,ability|,able|,$exempt| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V exempt|,ResultEvent=submit| +˰Ʒ N artifact|˹ + V exempt|,ResultEvent=punish|,police| + ADJ aValue|ֵ,ability|,able|,exempt|,#disease|,medical|ҽ + ADJ attribute|,ability|,able|,exempt|,#disease|,medical|ҽ + N attribute|,ability|,escape|,&human| + V exempt|,ResultEvent=accuse|ظ,police| + V exempt| + V exempt| +˰ V exempt|,ResultEvent=submit| +ְ V dismiss| + V exempt|,ResultEvent=punish|,police| + V endeavour| + V mobilize| + V mobilize| + V urge|ʹ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ǿ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǿ V endeavour| +ǿ V force|ǿ +ǿ ADJ qValue|ֵ,amount|,few| + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Burma|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Burma|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +廳 V LookBack| + V LookBack| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ԫ N money|,(Burma|) + ADJ aValue|ֵ,hardness|Ӳ,soft| + N attribute|,range|,&entity|ʵ + V facing| + N food|ʳƷ + N location|λ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%entity|ʵ,aspect| + N part|,%image|ͼ + N part|,%physical|,head|ͷ + N part|,%physical|,surfacial| + N part|,%physical|,surfacial|,external| + N shape| + N part|,%implement| + N tool|þ,#cook| + N food|ʳƷ + N LandVehicle|,*tour| +ͻ N food|ʳƷ +ʦ N human|,#occupation|ְλ,*cook| +治ɫ V calm| +沿 N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ +泯 V facing| + V facing| + V facing| + V facing| + N quantity|,amount|,&money| + N material|,?food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ +۳ N InstitutePlace|,@produce|,factory|,industrial| + V excited| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N food|ʳƷ +Ƽ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,size|ߴ,surfacial|,&inanimate| + N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ + N tool|þ,*cover|ڸ + N part|,%AnimalHuman|,skin|Ƥ + N material|,?clothing| + V facing| +ò N attribute|,appearance|,#skin|Ƥ,&AnimalHuman| +ò N attribute|,appearance|,&inanimate| +òһ ADJ aValue|ֵ,newness|¾,new|,desired| + N part|,%entity|ʵ,aspect|,all|ȫ +㵽 ADJ aValue|ֵ,range|,all|ȫ + V disappointed|ʧ +Ŀ N attribute|,appearance|,&AnimalHuman| +Ŀ N attribute|,appearance|,&inanimate| +Ŀ N attribute|,reputation|,&human| +Ŀȫ V change|,result=^$perception|֪ +Ŀһ V change|,StateFin=new| + N part|,%AnimalHuman|,skin|Ƥ +Ǣ V discuss| +ǰ N location|λ,InFront|ǰ + N attribute|,appearance|,&AnimalHuman| +ɫ V fear| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɴ N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,relatedness|,intimate| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ʳ N food|ʳƷ + V appear| + V appear| + V meet| + V teach|,manner=self| +ڻ V teach|,content=method|,manner=self| + ADJ aValue|ֵ,relatedness|,intimate| + N tool|þ +̸ V talk|̸ + N food|ʳƷ,liquid|Һ + N food|ʳƷ + N food|ʳƷ +ɫ V fear| + V benefit| + V facing| + V discuss| + N tool|þ,*protect|,#skin|Ƥ +ֵ N attribute|,value|ֵ,&coupon|Ʊ֤,&money| +ֵ N quantity|,amount|,&coupon|Ʊ֤,&money| + N attribute|,reputation|,&human|,&organization|֯ + N part|,%physical|,skin|Ƥ + N animal|,young| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N physical|,young| + N plant|ֲ,young| +紲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ľ N plant|ֲ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,fatness|,bony|,desired| +ͷ N phenomena|,#fact| + N human|,future| +կ N place|ط,village| + N human| + N plant|ֲ,young| + N community|,ProperName|ר,(China|й) + V MakeBetter|Ż + V copy|д +軭 V describe|д +軭 V draw| + V describe|д +ü V MakeUp|ױ +ġ V describe|д + V describe|д + N describe|д + V describe|д +д V describe|д + V AimAt| +׼ V AimAt| + ADJ aValue|ֵ,size|ߴ,small|С + V despise| +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N time|ʱ,hour|ʱ + N time|ʱ,special| + CLAS unit|λ,&time|ʱ + N tool|þ,*tell|,#time|ʱ + N part|,%tool|þ,#tell|,#time|ʱ,#minute| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +ã V aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,clearness|,blurred| +ã V unfixed|δ +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,space|ռ,religion|ڽ + N InstitutePlace|,*sell|,@buy|,commercial| + N facilities|ʩ,religion|ڽ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,content|,refined| + ADJ aValue|ֵ,age|,young| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N knowledge|֪ʶ,superior| +ֻش V succeed|ɹ,scope=cure|ҽ + N text|,interesting|Ȥ + N human|,*BeAble|ܹ,#speak|˵ + V despise| + V slander|̰ + V despise| + V TurnOff|ֹ + V destroy| + V disappear|ʧ + V sink|³ +֮ N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + V TurnOff|ֹ + V remove|,patient=fire| + N tool|þ,*remove|,#fire| + N tool|þ,*remove|,#fire| + V perish| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V destroy| + N destroy| + V destroy|,patient=bacteria|΢,medical|ҽ + V kill|ɱ,crime| + V perish| + V disappear|ʧ + N human|,mass| + ADJ aValue|ֵ,attachment| + N human|,military| + V unfortunate| + N attribute|,behavior|ֹ,&human|,&organization|֯ + N law|ɷ +񷨵 N document|,#law|ɷ + N house| + N emotion|,angry|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N music| +谮 N human|,*FondOf|ϲ,#music| + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,employee|Ա +񹤳 N fact|,#employee|Ա + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N affairs|,#VehicleGo|ʻ,#aircraft| + ADJ aValue|ֵ,attachment| + N location|λ,%community| + N community|,politics|,ProperName|ר,(China|й) + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,police| + N institution|,police| + N music| + N community|,politics|,ProperName|ר,(China|й) +Ʒ N artifact|˹,^military|,generic|ͳ + N attribute|,circumstances|,&human|,&organization|֯ + N emotion| +Ȩ N rights|Ȩ + N affairs| + ADJ aValue|ֵ,attachment| +° N fact|,police| + N fact|,police| + N duty|,police| + N attribute|,habit|ϰ,&human| +ѧ N knowledge|֪ʶ +ί N institution|,#community|,ProperName|ר,politics|,(China|й) + N emotion| +ѡ V undergo|,content=select|ѡ,agent=community| + N expression| +ҥ N music| + N aspiration|Ը,expect| + V estimate| + N estimate| +ר N human|,*investigate| + ADJ aValue|ֵ,ability|,able|,$use| +Թ V unsatisfied| + N fact|,function|,politics| + N human|,undesired|ݬ,*betray|,treacherous| + N affairs| + N institution|,ProperName|ר,politics| + N human|,mass| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N community|,politics|,ProperName|ר,(US|) + N community|,politics|,(China|й) + N human|,politics| + V ize|̬ + N thinking|˼ + N community| +ͥ N community| + N place|ط,village| + N human| +ʲ׼ N community| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| + V apply|ͿĨ + V drink| + V fold|ߡ + V inlay|Ƕ + V shut|ر + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,ability|,nimble|,#perception|֪ +ж N attribute|,behavior|ֹ,clever|,&physical| + N attribute|,behavior|ֹ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human|,&organization|֯ + V pity| + V sad|dz + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + N aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N ability|,#look|,#eye| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,future|,day| + V understand| + N attribute|,brightness|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ƿ V distinguish|ֱ,content=correctness| +鰵 V investigate| +찵 V investigate| + V know|֪ + ADJ aValue|ֵ,content|,easy|,desired| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + N time|ʱ,ProperName|ר,#royal|,#country| + N facilities|ʩ,*illuminate| + N time|ʱ,future|,day| + N chemical|ѧ + N facilities|ʩ + N celestial| +λ ADJ aValue|ֵ,brightness|,bright| + N fire| +ִ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + N material|,sticky| + N tool|þ,*look|,#self|,bright| + N phenomena|,#judge|ö,fair|,police| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,easy|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ know|֪ + ADJ aValue|ֵ,content|,opened| + V know|֪ + N text|,*order| + ADJ aValue|ֵ,content|,opened| + N symbol| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ŀ V brighten|ʹ,patient=eye| +Ŀŵ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +մ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,year|,future| +ǰ N part|,%plant|ֲ,hair|ë + N time|ʱ,ProperName|ר,#royal|,#country| +ȷ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ȷ V decide| +˲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N time|ʱ,future| + N time|ʱ,future|,day| +ջƻ N physical|,used| +ʯ N chemical|ѧ +ʾ V teach|,manner=opened| +˵ V speak|˵,opened| +˹ N place|ط,capital|,ProperName|ר,(Byelorussia|׶˹) + N time|ʱ,future| + N time|ʱ,future|,day| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ϸ ADJ aValue|ֵ,property|,$enrich|ʵ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +Ϻ N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N tool|þ,*transmit|,#electricity| +Ƭ N letter|ż + N human|,*perform|,glorious|,entertainment| + N human|,wise|,desired| + N celestial| +ܱ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V fight| +֤ N information|Ϣ,*prove|֤ +֪ V know|֪ +֪ʷ V disobey|Υ +֪ V ask| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N material|,$burn|,*lighting|ȼ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,family|,male|,young| + V MakeSound| + V cry| + V express|ʾ +ƽ V protest| + V MakeSound| + V cry| +ձ V cease|ͣ,content=fight|,military| +࿪ V guide| +ǹ V firing| +ǹʾ V firing| + N bird|,#MakeSound| +л V thank|л +ԩ V protest| + V cry|,#bird| + N weapon|,past| + V carve| + V remember|ǵ + V carve| + V remember|ǵ + N mark|־,#implement| + N text|,$carve| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,name|,&entity|ʵ +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,reputation|,Notwellknown| +鴫 ADJ aValue|ֵ,trueness|α,true|,desired| + N food|ʳƷ,glorious| + N account|,*record|¼,#name| + N drinks|Ʒ,glorious| + N artifact|˹,glorious|,generic|ͳ,commercial| + N LandVehicle|,glorious| + N attribute|,name|,&entity|ʵ + N place|ط,glorious| + N human|,*cook|,glorious| +ʷ ADJ aValue|ֵ,reputation|,glorious|,desired| + N part|,%language| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ʵ V perish| + N account|,*record|¼,#name| + N quantity|,amount|,&human|,&organization|֯ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N place|ط,city|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,value|ֵ,precious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N attribute|,name|,&organization|֯ + N human|,desired|,able|,glorious| + N human|,official|,glorious|,military| + N human|,*perform|,glorious|,entertainment| + V undergo|,content=naming| + N drinks|Ʒ,$addict|Ⱥ,glorious| + N expression|,glorious| + N attribute|,reputation|,wealth|Ǯ,&human|,&organization|֯ +˫ V obtain|õ,possession=reputation|,possession=wealth|Ǯ + N {NounUnit|} + V become|Ϊ +а V succeed|ɹ,scope=HaveContest| +а V succeed|ɹ,scope=compete| +ǰé V succeed|ɹ,scope=HaveContest| + N human|,*perform|,glorious|,entertainment| + N human|,desired|,able|,glorious| +ɽ V fail|ʧ +Ŀ N attribute|,kind|,&inanimate| +Ŀ ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N artifact|˹,glorious|,generic|ͳ,commercial| + N mark|־,#name| + N mark|־,*visit| + N mark|־,desired|,glorious| +ƲƷ N artifact|˹,glorious|,generic|ͳ,commercial| +Ƭ N tool|þ,*display|չʾ,#status|,#occupation|ְλ,#name| +Ʒ N artifact|˹,glorious|,generic|ͳ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N music|,glorious| + N human|,desired|,glorious| +ɽ N land|½,glorious| +ɽ N place|ط,glorious| + N attribute|,reputation|,&human|,&organization|֯ + V enjoy|,content=glorious| +ʤ N place|ط,glorious|,@tour| +ʤż N place|ط,glorious|,beautiful|,desired|,#tour| +ʦ N human|,*teach|,glorious| +ʿ N human|,desired|,glorious| + N human|,literature|,glorious| + N attribute|,kind|,&inanimate| + N reason| + N result| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N location|λ + N text|,glorious|,desired| +ĺ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҽ N human|,medical|ҽ,*cure|ҽ,glorious| + ADJ aValue|ֵ,trueness|α,fake|α + N attribute|,name|,&entity|ʵ + ADJ aValue|ֵ,trueness|α,fake|α + N human|,*perform|,glorious|,entertainment| +ŲƷ N artifact|˹,glorious|,generic|ͳ,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + N attribute|,reputation|,&human|,&organization|֯ +ɨ V unfortunate|,scope=disgraced| +һʱ V enjoy|,content=glorious| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N publications|鿯,glorious| + N attribute|,name|,&entity|ʵ + N publications|鿯,glorious| + N attribute|,circumstances|,&human|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N information|Ϣ,*order| + V order| + N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| + V write|д + N attribute|,strength|,&animate|,&organization|֯ + V order| + N text|,*order| + N attribute|,strength|,&animate|,&organization|֯ + N part|,%AnimalHuman|,strength| + V RegardAs| + N human|,*RegardAs| + N information|Ϣ +; V unfortunate| + N attribute|,circumstances|,&human| + V shoot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N text|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ + V LookFor|Ѱ + V TryToKnow|Ū + V feel| + V stroke| +Ŷ V ignorant|֪ +ͷ V ignorant|֪ + V PickOut|γ + V TryToKnow|Ū + V LookFor|Ѱ,content=route|·,time=night| +Ŷ V understand| + V TryToKnow|Ū + V LookFor|Ѱ + V TryToKnow|Ū +ͷ V understand| +͸ V understand| +Ϲ V LookFor|Ѱ,content=route|·,time=night| +ġ V copy|д +ġ V imitate|ģ +ġд V copy|д +ġд V describe|д +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ N vegetable|߲ +Ģ V MakeTrouble| +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ V slack|͵ +Ģ N vegetable|߲ +Ģ N CloudMist| +ģ N regulation| +ģ N tool|þ,*produce| +ģ N tool|þ,*build| +ģ N tool|þ,*produce| +ģ N human|,desired|,$imitate|ģ +ģ V imitate|ģ +ģ V CauseToDo|ʹ,ResultEvent=blurred| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ V mix| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ N tool|þ,*produce| +ģ N part|,%entity|ʵ +ģ黯 V aValue|ֵ,property|,$ize|̬ +ģ黯 V ize|̬ +ģ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ģ V imitate|ģ +ģ N tool|þ,*imitate|ģ +ģʽ N attribute|,pattern|ʽ,&physical| +ģʽʶ V perception|֪,content=pattern|ʽ,#computer| +ģ N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģض N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģ N tool|þ,*produce| +ģѹ V produce|,industrial| +ģ N attribute|,appearance|,&AnimalHuman| +ģ N tool|þ,*produce| +Ĥ N part|,%AnimalHuman| +Ĥ N shape| +Ĥ V salute|¾ +ĤƬ N part|,%implement| +ĥ V MakeTrouble| +ĥ V OutOfOrder| +ĥ V brighten|ʹ +ĥ V grind|ĥ +ĥ V lavish|˷,patient=time|ʱ +ĥ V remove| +ĥ V rub|Ħ +ĥ N tool|þ,*grind|ĥ +ĥ V turn|Ťת +ĥ V embarrassed|Ϊ +ĥ V rub|Ħ +ĥ V slack|͵ +ĥ N machine|,*grind|ĥ +ĥ V sharpen|ʹ,patient=tool|þ +ĥʯ N tool|þ,*rub|Ħ +ĥÿ V AtEase| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ V brighten|ʹ +ĥ V OutOfOrder| +ĥ V improve| +ĥ N material|,*rub|Ħ,generic|ͳ +ĥ V disappear|ʧ +ĥ V remove| +ĥ N phenomena|,undesired|ݬ,#unfortunate| +ĥ V unfortunate| +ĥ N tool|þ,*grind|ĥ +ĥɰ N material|,?tool|þ +ĥʴ V OutOfOrder|,industrial| +ĥ V OutOfOrder|,industrial| +ĥ V grind|ĥ,industrial| +ĥ V CausePartMove|,PatientPartof=mouth| +ĥ V TalkNonsense|Ϲ˵ +ĥ V slack|͵ +ĥƤ V TalkNonsense|Ϲ˵ +ĥ V improve| +Ħ V research|о +Ħ V rub|Ħ +Ħ V stroke| +Ħ V HaveContest| +Ħ V rub|Ħ +Ħ N attribute|,strength|,rub|Ħ,&entity|ʵ +Ħ ADJ aValue|ֵ,newness|¾,new|,desired| +Ħ N tool|þ,*illuminate|,#LandVehicle| +Ħά N language|,#country|,ProperName|ר +Ħӵɳ N place|ط,capital|,ProperName|ר,(Somalia|) +Ħ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Morocco|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħķ N money|,(Morocco|Ħ) +Ħ N human|,(Morocco|Ħ) +Ħɸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,capital|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ħɸ N human|,(Monaco|Ħɸ) +Ħ ADJ aValue|ֵ,height|߶,tall| +Ħ¥ N house| +Ħ N machine| +Ħг N LandVehicle| +Ħд N ship| +Ħл N human|,military| +Ħ N InstitutePlace|,#tool|þ,#communicate|,commercial| +Ħͧ N ship| +Ħ V stroke| +ħ N humanized|,undesired|ݬ +ħ N method|,undesired|ݬ,*deceive|ƭ +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ +ħ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ħ N attribute|,power|,&human|,&organization|֯ +ħ N shows| +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħԱ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ,fierce| +ħ N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ +ħ N FlowerGrass|,?edible|ʳ +ħ N phenomena|,dangerous|Σ,#unfortunate| +Ĩ V TurnRound| +Ĩ V apply|ͿĨ +Ĩ V remove| +Ĩ V wipe| +Ĩ V weep| +Ĩ V suicide|ɱ +Ĩ V embarrassed|Ϊ +Ĩ N tool|þ,*wipe| +Ĩ N tool|þ +Ĩÿ V AtEase| +Ĩ V slander|̰ +Ĩ V apply|ͿĨ,material=material|,industrial| +Ĩȥ V remove| +Ĩɱ V remove| +Ĩɷ V remove| +Ĩ㾨 N beast|,*swim| +Ĩһӻ V fail|ʧ +ĩ N part|,%thing|,head|ͷ +ĩ N part|,%thing|,secondary| +ĩ N process|,ending|ĩ +ĩ N shape| +ĩ N time|ʱ,ending|ĩ +ĩ N location|λ,ending|ĩ +ĩ N time|ʱ,TenDays|Ѯ,#hot| +ĩ N time|ʱ,day|,#hot| +ĩ N part|,%thing|,secondary| +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N process|,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,#die| +ĩ N part|,%thing|,head|ͷ +ĩ N time|ʱ,ending|ĩ +ĩβ N process|,ending|ĩ +ĩҶ N time|ʱ,ending|ĩ,royal| +ĩ N shape| +Ī N character|,surname|,human|,ProperName|ר +Ī AUX {modality|} +Ī ADV aValue|ֵ,range|,all|ȫ +Ī ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Ī ADJ aValue|ֵ,content|,profound|,desired| +Īȱȸ N place|ط,capital|,ProperName|ר,(Papua New Guinea|Ͳ¼) +Ī CONJ {comment|} +Ī V inferior| +Ī״ ADJ aValue|ֵ,possibility|,impossible|,$describe|д +Ī N place|ط,capital|,ProperName|ר,(the Comoros|Ħ) +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ī ADV {modality|} +Ī ADV {modality|} +Īɣȿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mozambique|Īɣȿ) +Īɣȿ N place|ط,country|,ProperName|ר,(Africa|) +Īɣȿ N human|,(Mozambique|Īɣȿ) +Ī˹ N place|ط,capital|,ProperName|ר,(Russia|˹) +Ī ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Īһ V BeUnable|,content=decide| +ī N PenInk|ī,*write|д +ī ADJ aValue|ֵ,brightness|,dark| +ī ADJ aValue|ֵ,color|ɫ,black| +ī N community| +ī N knowledge|֪ʶ +ī N place|ط,country|,ProperName|ר,(Mexico|ī) +ī N artifact|˹,#image|ͼ,entertainment| +ī N fish| +ī N place|ط,city|,ProperName|ר,(Australia|Ĵ) +ī N character|,surname|,human|,ProperName|ר +ī N PenInk|ī,liquid|Һ,#write|д +ī ADJ aValue|ֵ,color|ɫ,black| +ī N trace|,#write|д +ī N tool|þ,*protect|,#eye|,#look| +ī ADJ aValue|ֵ,color|ɫ,green| +īɫ ADJ aValue|ֵ,color|ɫ,green| +īسɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +īط N human|,stiff| +īˮ N PenInk|ī,liquid|Һ,#write|д +īˮ N knowledge|֪ʶ +īˮ N trace| +ī ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mexico|ī) +ī N place|ط,country|,ProperName|ר,(South America|) +ī N place|ط,capital|,ProperName|ר,(Mexico|ī) +ī N human|,(Mexico|ī) +ī N waters|ˮ,(Mexico|ī) +ī N water|ˮ,(Mexico|ī) +ī N fish| +ī֭ N PenInk|ī,liquid|Һ,#write|д +Ĭ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ĭ V write|д +Ĭ V condole|° +Ĭ V recite|ж +Ĭ V recite|ж +Ĭ N shows| +ĬĬ ADJ aValue|ֵ,occasion|,quiet|,desired| +ĬĬ ADV aValue|ֵ,behavior|ֹ,gentle| +ĬĬ ADJ aValue|ֵ,reputation|,Notwellknown| +Ĭ V LookBack| +Ĭ V recite|ж +ĬƬ N shows| +Ĭ N result|,#agree|ͬ +ĬȻ ADV aValue|ֵ,behavior|ֹ,gentle| +Ĭ V agree|ͬ +Ĭ V write|д +Ĭ V think|˼ +Ĭд V write|д +Ĭ V agree|ͬ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N gas|,#liquid|Һ,round|Բ +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į N land|½,surfacial|,barren| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ĮĮ ADJ aValue|ֵ,area|,wide| +ĮĮ ADJ aValue|ֵ,clearness|,blurred| +ĮȻ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į V despise| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +İ N facilities|ʩ,route|· +İ· N human|,unfamiliar|϶ +İ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +İ N human|,unfamiliar|϶ +ı V plan|ƻ +ı V seek|ıȡ +ıƺ V kill|ɱ,purpose=wealth|Ǯ,crime| +ı V uprise| +ı V seek|ıȡ,possession=pros| +ı V kill|ɱ,crime| +ı V plan|ƻ +ı V seek|ıȡ,possession=fund|ʽ +ı N plans|滮 +ı V meet|,partner=EachOther|໥ +ı V seek|ıȡ +ıȡ V seek|ıȡ +ıɱ V kill|ɱ,crime| +ı V MakeLiving|ı +ı V seek|ıȡ +ı· V seek|ıȡ,possession=method|,#alive| +ıʿ N human|,friend| +ı V plan|ƻ,content=fact| +ı V seek|ıȡ,possession=occupation|ְλ +ı˽ V seek|ıȡ,possession=pros|,undesired|ݬ +ıְ V seek|ıȡ,possession=occupation|ְλ +IJ V seek|ıȡ +IJ V seek|ıȡ,possession=pros|,undesired|ݬ +IJ V seek|ıȡ,possession=wealth|Ǯ +IJȡ V seek|ıȡ +IJȡ V seek|ıȡ,possession=wealth|Ǯ +ij ADJ aValue|ֵ,kind|,certain|ij +ijij ADJ aValue|ֵ,kind|,certain|ij +ijЩ ADJ aValue|ֵ,kind|,certain|ij +Ĵ N character|,(China|й) +Ĵָ N part|,%AnimalHuman|,hand| +ĵ ADJ aValue|ֵ,sex|Ա,male| +ĵ N FlowerGrass| +ĵ N place|ط,city|,ProperName|ר,(China|й) +ĵ N fish| +Ķ CLAS unit|λ,&area| +Ķ N quantity|,amount|,&create|,agricultural|ũ +Ķ N quantity|,amount|,&create|,agricultural|ũ +ķ N character|,(China|й) +ķͰ N place|ط,capital|,ProperName|ר,(Swaziland|˹ʿ) +ĸ ADJ aValue|ֵ,importance|,main| +ĸ ADJ aValue|ֵ,sex|Ա,female|Ů +ĸ N human|,family|,female|Ů +ĸ N part|,%implement| +ĸ N part|,%thing|,base| +ĸ N emotion|,like|ϧ,kindhearted|,desired| +ĸ N plant|ֲ +ĸ N InsectWorm| +ĸ˾ N InstitutePlace|,commercial| +ĸ N livestock|,female|Ů +ĸ N aircraft| +ĸ N machine| +ĸ N bird|,female|Ů +ĸϻ N beast|,female|Ů +ĸϻ N human|,female|Ů,undesired|ݬ,fierce| +ĸ N livestock|,female|Ů +ĸţ N livestock|,female|Ů +ĸŮ N human|,family|,mass| +ĸ N human|,family|,female|Ů +ĸ N part|,%AnimalHuman|,$drink|,liquid|Һ +ĸι V feed|ι,patient=part|,#AnimalHuman| +ĸɽ N beast|,female|Ů +ĸʨ N beast|,female|Ů +ĸ N human|,family|,female|Ů +ĸϵ ADJ aValue|ֵ,attachment| +ĸ N image|ͼ,linear| +ĸ N part|,machine| +ĸУ N InstitutePlace|,@teach|,@study|ѧ,education| +ĸ ADJ aValue|ֵ,attachment| +ĸ N livestock| +ĸҺ N chemical|ѧ +ĸ N sound|,#language| +ĸ N language| +ĸ N plant|ֲ +ĸ N livestock|,female|Ů +ĸ N human|,family|,mass| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N mark|־,#facilities|ʩ,#bury|,#human|,#die| +Ĺ N part|,%facilities|ʩ,#facilities|ʩ,#bury|,#human|,#die|,route|· +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺǰ N location|λ,%facilities|ʩ,InFront|ǰ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĹѨ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĺ ADJ aValue|ֵ,earliness|,late| +ĺ N time|ʱ,night| +ĺ N time|ʱ,spring| +ĺij N fact|,persuade|Ȱ˵ +ĺ N aValue|ֵ,age|,aged| +ĺ N time|ʱ,#aged| +ĺɫ N attribute|,scene|,night|,&inanimate| +ĺ N CloudMist| +Ļ N part|,%shows| +Ļ N tool|þ,#perform| +Ļ N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,#perform| +Ļ N tool|þ,#perform|,*cover|ڸ,*decorate|װ +Ļ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +Ļ V incite|ָʹ,manner=hidden| +Ļ N human|,*incite|ָʹ,hidden| +Ļ N fact|,hidden|,undesired|ݬ +Ļ N fact|,hidden|,undesired|ݬ +Ļ N news|,#fact|,#hidden| +ĻϢ N time|ʱ,@rest|Ϣ,#look|,#listen|,#shows| +Ļ N human|,#occupation|ְλ,official| +ļ V gather|ɼ +ļ V include| +ļ V gather|ɼ,possession=fund|ʽ +ļ V gather|ɼ +ļ V gather|ɼ +ļ V gather|ɼ +Ľ V admire|Ľ +Ľ N character|,surname|,human|,ProperName|ר +Ľ V admire|Ľ +Ľ N place|ط,city|,ProperName|ר,(Germany|¹) +Ľ N character|,surname|,human|,ProperName|ר +ľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľ V paralyse|̱ +ľ N tool|þ,cubic|,@store|,#human|,#die| +ľ N tree| +ľ N wood|ľ +ľ N material|,wood|ľ +ľ N tool|þ,*print|ӡˢ +ľ N shape|,wood|ľ +ľ ADJ aValue|ֵ,attachment|,wood|ľ +ľ N material|,wood|ľ +ľ N material|,wood|ľ,*lighting|ȼ,$burn| +ľ N artifact|˹,$carve|,entertainment| +ľ N human|,#occupation|ְλ,industrial| +ľ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ľ N AlgaeFungi|ֲ +ľ N ship| +ľ N human|,#occupation|ְλ,employee|Ա +ľ N fruit|ˮ +ľ N shape|,wood|ľ +ľʯ N stone|ʯ +ľ N material|,?paper|ֽ +ľ N human|,#occupation|ְλ,employee|Ա +ľ V carve|,LocationFin=wood|ľ,literature| +ľ N shape|,wood|ľ +ľ N FlowerGrass| +ľ N material|,wood|ľ +ľ N SportTool|˶ +ľ N plans|滮 +ľ N tool|þ,*recreation| +ľ N crop|ׯ,?material| +ľ N human|,*die|,dried| +ľż N tool|þ,*recreation| +ľ N tool|þ,generic|ͳ,#wood|ľ +ľȻ V stupefied|ľȻ +ľ N fruit|ˮ +ľ̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ľͷ N material|,wood|ľ +ľͷľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľͷ˶ N human|,NotQuick|ګ,undesired|ݬ +ľϬ N FlowerGrass| +ľϬ N food|ʳƷ +ľϬ N tree| +ľ N celestial| +ľѳ V fixed|Ѷ +ľ N MusicTool| +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľګ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľܽ N FlowerGrass| +ľ N clothing|,#foot| +ľ N tool|þ,*beat| +ľ N food|ʳƷ +ľ N tree| +Ŀ N document|,@record|¼ +Ŀ N part|,%AnimalHuman|,#eye| +Ŀ N part|,%text| +Ŀ N purpose|Ŀ +Ŀ N tool|þ,#weapon|,$AimAt|,$firing| +Ŀֵ N quantity|,amount|,&entity|ʵ +Ŀʶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ĿϾ ADJ aValue|ֵ,amount|,many| +ĿϾ ADJ qValue|ֵ,amount|,many| +Ŀб V look|,manner=PayAttention|ע +Ŀת V look|,manner=PayAttention|ע +Ŀ V measure|,instrument=eye| +Ŀ N part|,%readings|,content| +Ŀ N purpose|Ŀ +Ŀĵ N location|λ,@arrive| +Ŀĸ N location|λ,@arrive| +Ŀɿڴ V stupefied|ľȻ +Ŀ V perception|֪,means=look| +Ŀ N experience| +Ŀ N thinking|˼ +Ŀdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ綹 ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ŀ׺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ŀ V perception|֪,means=look| +Ŀ N human|,*perception|֪ +Ŀ N human|,*prove|֤,#police| +Ŀ֤ N human|,*perception|֪ +Ŀ V perception|֪,means=look| +Ŀ N tool|þ,*look| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ŀ¼ N part|,%readings|,content| +Ŀ¼ N part|,%thing|,kind| +Ŀɫ V ignorant|֪ +Ŀǰ N time|ʱ,now| +Ŀ ADJ aValue|ֵ,property|,look| +Ŀ V farewell|,means=look| +Ŀ޷ ADJ aValue|ֵ,behavior|ֹ,undesired|ݬ +Ŀȫţ ADJ aValue|ֵ,ability|,able|,desired| +Ŀѣ V dizzy|,medical|ҽ +Ŀ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V TakeCare|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N FlowerGrass|,#livestock| + N place|ط,@foster|,#livestock|,agricultural|ũ + N music| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N land|½,#FlowerGrass| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ʦ N human|,#occupation|ְλ,religion|ڽ +ͯ N human|,agricultural|ũ,*TakeCare|,#livestock| +ͯ N human|,agricultural|ũ,*foster|,*TakeCare|,#livestock| + V TakeCare|,patient=livestock| +Ů N human|,female|Ů,agricultural|ũ,*foster|,*TakeCare|,#livestock| +Ȯ N livestock|,agricultural|ũ,*TakeCare|,#livestock| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ҵ N affairs|,#livestock|,agricultural|ũ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + N character|,surname|,human|,ProperName|ר +ºĬ N human|,religion|ڽ,ProperName|ר +˹ N human|,religion|ڽ + V CauseToDo|ʹ + V MakeTrouble| + V believe| + V catch|׽ס + V hold| + V occupy|ռ,military| + PREP {instrument} + PREP {patient} + PREP {scope} +ð V catch|׽ס,police| +òȥ ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò V BeUnable| +ò V BeUnable|,content=believe| +ò׼ V BeUnable|,content=believe| +ô V reverse|ߵ,sport| +õ V obtain|õ,means=take|ȡ +õ V BeAble|ܹ +õ V believe| +õ׼ V believe| +ö V decide| +û V catch|׽ס,police| +ü V show|,content=arrogant| + N human|,official|,politics|,ProperName|ר,(France|) +Ȩ V obtain|õ,possession=power|,politics| + V MakeTrouble| +ɧ N place|ط,capital|,ProperName|ר,(Bahamas|͹) + V manage| + ADJ aValue|ֵ,ability|,able|,desired| +ֺϷ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ + V decide| + ADJ aValue|ֵ,kind|,question| +Ķ N location|λ +Ķ N location|λ,question| + N location|λ + N location|λ,question| + CONJ {concession|ò} +λ PRON human|,question| +Щ ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,kind|,question| +һ N time|ʱ,day|,question| + STRU {MaChinese|} +ź V cry| +ź V cry| + N chemical|ѧ + ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + CONJ {EventResult|¼} +Dz˹ N place|ط,city|,ProperName|ר,(Italy|) +Ƕ N location|λ,question| +Ǹ ADJ aValue|ֵ,kind|,special| +ǻ N time|ʱ,special| + N location|λ,special| +ô ADV aValue|ֵ,degree|̶,more| +ô CONJ {EventResult|¼} +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ĩ CONJ {EventResult|¼} +ʱ N time|ʱ +ʱ N time|ʱ +Щ ADJ aValue|ֵ,kind|,special| +Щ PRON entity|ʵ + ADJ aValue|ֵ,degree|̶,more| + N time|ʱ + N character|,(China|й) + V include| + V pay|,commercial| + V receive| + V submit| +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɸ V enjoy|,content=happy| +ɺ V surprise| +ɻ V entice|,means=GiveAsGift|,crime| +ɻ V receive|,possession=artifact|˹,crime| +ɽ V win|ʤ,military| + V enjoy|,content=chilly| + V ignorant|֪ +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Namibia|ױ) +ױ N place|ط,country|,ProperName|ר,(Africa|) +ױ N human|,(Namibia|ױ) + V include| +˰ V pay|,content=expenditure| +˰ N human|,*pay| +˰ N duty|,#pay| + N community|,ProperName|ר,(China|й) + N gas| +ʵ N tool|þ,*illuminate| + V be| + CONJ {EventResult|¼} + V be| + CONJ {supplement|ݽ} + V feed|ι,patient=drinks|Ʒ + V feed|ι,patient=drinks|Ʒ,means=part|,#AnimalHuman| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| +̲ N drinks|Ʒ +̷ N food|ʳƷ + N food|ʳƷ + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +ţ N InstitutePlace|,*foster|,livestock| +Ƥ N food|ʳƷ +ƿ N tool|þ,cubic|,@put|,*feed|ι +ˮ N part|,%AnimalHuman|,$drink|,liquid|Һ + N food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ N tool|þ,*feed|ι + N part|,%AnimalHuman|,*bite|ҧ + N livestock| + N food|ʳƷ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N tool|þ,*feed|ι + V endure| + V withstand|ס +Ͳס V WithstandNot|ס +͵ס V withstand|ס +ͷ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +͸ ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#waterless| +ͺֲ N plant|ֲ,*withstand|ס,#waterless| +ͻ ADJ aValue|ֵ,ability|,able|,withstand|ס,#fire| +ͻ N material|,*withstand|ס,#fire| +ͻש N material|,?building| +; ADJ aValue|ֵ,quality|,durable|,desired| +; N attribute|,quality|,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hardship| + N attribute|,strength|,&AnimalHuman| +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#grind|ĥ +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#rub|Ħ +ĥ N attribute|,ability|,able|,withstand|ס,#grind|ĥ,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +Ѱζ ADJ aValue|ֵ,content|,profound|,desired| + V endure| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + ADJ aValue|ֵ,able|,endure|,desired| + ADJ attribute|,able|,endure|,desired|,&human| + ADJ attribute|,able|,endure|,desired|,&human| +Է ADJ attribute|,able|,endure|,desired|,&human| + ADJ aValue|ֵ,quality|,durable|,desired| +Ʒ N artifact|˹,generic|ͳ +Ʒ N artifact|˹,generic|ͳ + CONJ {but|} +κ V treat|Դ + N money|,(Nigeria|) + N direction|,south| + N place|ط,country|,ProperName|ר,(Yugoslavia|˹) +ϰ N part|,%land|½,#waters|ˮ,edge|,south| +ϰ N part|,%earth|,south| +ϱ N attribute|,distance|,south|,north|,&earth| +ϱ N direction|,south|,north| +ϱ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϱ N location|λ,south| +ϲ N location|λ,south| +ϲ N part|,%place|ط,#south|,#country| +ϲ N location|λ,south| +ϲ N place|ط,city|,ProperName|ר,(China|й) +ϳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϳ N place|ط,country|,ProperName|ר,(South Korea|) +ϴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ϴ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +϶ N location|λ,ending|ĩ,south| +Ϸ N direction|,south| +Ϸ N location|λ,south| +Ϸ N part|,%place|ط,#south|,#country| +Ϸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Africa|Ϸ) +Ϸ N place|ط,country|,ProperName|ר,(Africa|) +ϷǺ N language|,#country|,ProperName|ר +Ϸ N wind| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ N part|,%vegetable|߲,embryo|,$eat| +Ϲ N vegetable|߲ +Ϲ N part|,%country|,south| +Ϻ N waters|ˮ,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korea|) +Ϻ N place|ط,country|,ProperName|ר,(South Korea|) +Ϻ N MusicTool| +ϻ N food|ʳƷ,commercial| +ϼ N part|,%earth|,south|,edge| +ϼ N place|ط,ProperName|ר +Ͻ N part|,%country|,south| +Ͻ N part|,%place|ط,surrounding|Χ,#city|,south| +Ͼ N place|ط,city|,ProperName|ר,(China|й) +Ͼѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ͽ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽһ N thought|ͷ,dream|,desired| +´ N part|,%land|½,base| + N place|ط,ProperName|ר,south|,(America|) + N place|ط,ProperName|ר,south|,(America|) + N character|,surname|,human|,ProperName|ר + N location|λ,south| +Ϻ V cooperate| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,south|,(Europe|ŷ) +Ǩ V AlterLocation|ռλ,direction=south| +ɳ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yugoslavia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹˹͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N human|,(Yugoslavia|˹) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר + N FlowerGrass|,?medicine|ҩ +ͨ N place|ط,city|,ProperName|ר,(China|й) +γ N law|ɷ,#earth| + V LeaveFor|ǰ,direction=south| + N place|ط,ProperName|ר,south|,(Asia|) +Ǵδ½ N place|ط,ProperName|ר,south|,(Asia|) + N place|ط,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +ԯ V FitNot| + N information|Ϣ,*guide| + N tool|þ,*measure|,#direction| +ս V fight| + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,male| + N human|,male|,young| +в N room|,#male|,@excrete|й +е N fact|,compete|,sport|,#male| +е N sound|,#music| +ж N community|,male|,sport| +ж N human|,male| +з N part|,%community|,#GetMarried|,aspect| +и N sound|,#music| +к N human|,male|,young| +к N human|,male|,young| +к N human|,male|,young| +о N human|,royal| +о N human|,female|Ů,royal| + N fact|,exercise|,sport|,#male| +ŮŮ N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ůƽ N attribute|,behavior|ֹ,fair|,#sex|Ա,&human|,&organization|֯ + N fact|,exercise|,sport|,#male| + N human|,male|,friend|,desired| + N human|,male|,family| + N human|,family|,male| + N human|,male| + N sound|,#music| + N human|,male| + N human|,male|,*study|ѧ,education| +ʿ N human|,male| +˫ N fact|,exercise|,sport|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N attribute|,sex|Ա,male|,&human| + N human|,male| + N sound|,#music| +װ N clothing|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N human|,male| +Ӻ N human|,male| + ADJ aValue|ֵ,behavior|ֹ,male| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,possibility|,difficult|,undesired|ݬ + V embarrassed|Ϊ + N phenomena|,undesired|ݬ,#unfortunate| +Ѱ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ѳ ADJ aValue|ֵ,earliness|,late| +Ѳ V delay| +Ѳ V fail|ʧ +Ѳ V labour|ٲ,manner=difficult| +Ѵ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +Ѵ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +ѵ V MakeTrouble| +ѵ V defeat|սʤ +ѵ ADV {emphasis|ǿ} +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż,desired| +ѵ N phenomena|,undesired|ݬ,#unfortunate| +Ѷ N attribute|,easiness|,&event|¼ +ѹ ADJ aValue|ֵ,property|,^$blame|Թ +ѹ ADV {comment|} +ѹ N phenomena|,undesired|ݬ,#unfortunate| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$GoThrough| +ѹ V sorrowful| +ѹ V unfortunate| +ѽӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +ѽѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ѿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѿ V embarrassed|Ϊ +ѿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ѿ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ѿ V shy| +ѿ ADJ aValue|ֵ,easiness|,difficult|,$control| + V BeUnable|,content=escape| + N human|,undesired|ݬ,*escape|,#unfortunate| +Ӫ N InstitutePlace|,@include|,#human|,#escape|,#unfortunate| +רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ܿɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ƥ ADJ aValue|ֵ,ability|,unable|ӹ,$equal| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ɫ N attribute|,countenance|,passive|,&human| +ϼ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,difficult| + V ill|̬,medical|ҽ + V sorrowful| +˵ ADV {comment|} + N phenomena|,difficult|,undesired|ݬ + N problem|,difficult|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| + ADJ aValue|ֵ,ability|,unable|ӹ,$forget| + ADJ aValue|ֵ,property|,^$forget| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ѵ N human|,*BeSame|ͬ,#circumstances| +ѵ N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Գ ADJ aValue|ֵ,ability|,unable|ӹ,$undergo| +Ը ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +Թ ADJ aValue|ֵ,ability|,unable|ӹ,$estimate| +Ի ADJ aValue|ֵ,ability|,unable|ӹ,$obtain|õ +Խӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +Ծ ADJ aValue|ֵ,easiness|,difficult|,$perception|֪ + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,easiness|,difficult|,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д + ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ + ADJ aValue|ֵ,ability|,unable|ӹ,$endure| +͸ ADJ aValue|ֵ,ability|,unable|ӹ,$leak|© +ʹ ADJ aValue|ֵ,ability|,unable|ӹ,$use| + ADJ aValue|ֵ,ability|,unable|ӹ,$believe| + ADJ aValue|ֵ,ability|,unable|ӹ,$deduce| + ADJ aValue|ֵ,easiness|,difficult|,$guess|² + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ԥ ADJ aValue|ֵ,easiness|,difficult|,$predict|Ԥ + ADJ aValue|ֵ,easiness|,difficult|,$guess|² +׽ ADJ aValue|ֵ,easiness|,difficult|,$understand| + N {easiness|} + N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ + V BeUnable| +׷ ADJ aValue|ֵ,ability|,unable|ӹ,$follow| + N shape| + N tool|þ,cubic|,@put| +ҳ N InsectWorm| +ҿϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V contain| + N disease| + V scratch|ץ + N part|,%AnimalHuman|,head|ͷ +Բ N part|,%AnimalHuman|,head|ͷ +ԳѪ N disease| +Դ N part|,%AnimalHuman| +Դ N part|,%AnimalHuman|,head|ͷ +Եͼ N image|ͼ,#diagnose|,medical|ҽ +Ժ N thinking|˼ +Ժ N thinking|˼ +Լ N thinking|˼ +Խ N part|,%AnimalHuman|,liquid|Һ +Խ N thinking|˼ +Կ N part|,%AnimalHuman|,head|ͷ + V attribute|,wisdom|ǻ,wise|,&human| + N human|,#occupation|ְλ,wise| +Ͷ N affairs|,#mental|,engage| +Ͷ N human|,#occupation|ְλ,wise| + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +Ĥ N part|,%AnimalHuman|,head|ͷ +Ĥ N disease| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,head|ͷ +嵹 V reverse|ߵ,patient=sequence|,scope=engage| + N disease| +Ѫ N disease| + N part|,%AnimalHuman|,head|ͷ + N thinking|˼ + V angry| + V upset| +պ V blame|Թ +ջ V angry| +ŭ V angry| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +߳ŭ V angry| + V IllBehave| + V MakeTrouble| + V SufferFrom|,medical|ҽ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V do| + V quarrel| +ֱŤ V quarrel| +ֲ V ill|̬,medical|ҽ +ַ V quarrel| +ַ V IllBehave| +ֹ V happen| +ֺ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ּ V suffer|,content=HungryThirsty| +־ N shows| + V upset| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V MakeTrouble| + V uprise|,politics| + N place|ط,#city|,bustling| + N place|ط,#city|,bustling| +Ц V err| + V quarrel| + N tool|þ,*tell|,#time|ʱ + V tease|ȡ + N stone|ʯ + N material|,?clothing| + N material|,?clothing| + N material|,?clothing| + V HungryThirsty| + V disheartened| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,time|ʱ,internal| + N location|λ,internal| +ڲ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڲ ADJ aValue|ֵ,location|λ,internal| +ڲ N location|λ,internal| +ڲ N location|λ,space|ռ,internal| +ڲ N text|,#news|,secret| +ڲ V contain| +ڲ N part|,%inanimate|,skin|Ƥ,internal| +ڳѪ V bleed|Ѫ +ڴ N part|,%computer| +ڵ N place|ط,internal| +ڵ N human|,family|,male| +ڶ V decide| +ڶ N part|,%AnimalHuman|,viscera| +ڷ N fact|,excrete|й +ڷ V eat|,medical|ҽ +ڸ N institution|,#country|,politics| +ڹ N method| +ڹƤ N part|,%plant|ֲ,embryo| +ں N waters|ˮ,surfacial|,internal| +ں N information|Ϣ +ں N attribute|,strength|,$exhaust|,&implement| +ں N attribute|,strength|,$exhaust|,&organization|֯ +ں N part|,%entity|ʵ,heart| +ں N waters|ˮ,linear|,internal| +ں N fact|,fight|,internal| +ں V fact|,fight|,internal| +ڻ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڼ N human|,undesired|ݬ,*betray|,treacherous| +ڽ N image|ͼ,angular|,internal| +ھ N facilities|ʩ,#perform| +ھ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ھ V regret|Ǹ +ڿ N knowledge|֪ʶ,medical|ҽ +ڿҽ N human|,#occupation|ְλ,medical|ҽ,*cure|ҽ + N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + N attribute|,strength|,&entity|ʵ +½ N land|½,internal| + V uprise|,politics| +ޱ N place|ط,capital|,ProperName|ר,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N information|Ϣ + N human|,family| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N information|Ϣ +ȼ N part|,%vehicle|ͨ,*drive|Ԧ +ȼ N LandVehicle| + N disease| + N human|,family|,female|Ů + N attribute|,content|,&readings|,&information|Ϣ +Ҫ N text| + N disease| +ʡ V LookBack| +̥ N part|,%LandVehicle|,leg| + ADJ aValue|ֵ,range|,all|ȫ + N location|λ,surrounding|Χ,space|ռ + N affairs| + N affairs|,military| + N institution|,#police|,ProperName|ר,politics| + N facilities|ʩ,space|ռ,linear|,#electricity| + N human|,*scout| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,behavior|ֹ,hidden| + V sell|,range=country|,commercial| + N mental| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,desired|,able| + N human|,desired|,able| + N human|,family|,male| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N fire| + N clothing| +ྭ N human|,commercial| + V MoveItInto| + N cause|ԭ +⻼ N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,source|Դ,original|ԭ + N part|,%AnimalHuman|,viscera| +լ N room| +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ս N fact|,fight| + N affairs| + N institution|,#police|,ProperName|ר,politics| + N human|,family|,female|Ů +ڧ N fact|,fight|,internal| +ڧ V fact|,fight|,internal| +ڧ V fight|,range=internal|,politics| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,green| + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,ability|,&AnimalHuman| + N character|,surname|,human|,ProperName|ר + N part|,%physical|,strength| +ܲ ADJ aValue|ֵ,ability|,able|,create| +ܴ ADJ aValue|ֵ,ability|,able|,$transmit| +ܶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܷ AUX {modality|,question|} +ܸı ADJ aValue|ֵ,ability|,able|,$alter|ı +ܸ ADJ aValue|ֵ,ability|,able|,desired| +ܸ V BeAble|ܹ,content=perform| +ܹɽ N human|,able|,desired| +ܹ V BeAble|ܹ +ܺ V exhaust|,patient=material| +ܼ N attribute|,rank|ȼ,#strength|,&inanimate| +ܼ N attribute|,ability|,$look|,&space|ռ +ܿ ADJ aValue|ֵ,ability|,able|,$open| +ܿ˷ ADJ aValue|ֵ,ability|,able|,$defeat|սʤ + N attribute|,ability|,&physical| + N part|,%physical|,strength| +˽ ADJ aValue|ֵ,ability|,able|,$know|֪ + N attribute|,ability|,&AnimalHuman| + N human|,able|,desired| + V willing|Ը,content=undertake|,#HighRank|ߵ,#LowRank|͵ + ADJ aValue|ֵ,ability|,able|,alive| + N fact|,$BeAble|ܹ + N human|,able|,desired| +˵ ADJ aValue|ֵ,ability|,able|,desired| +ͨ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ϸ˵ ADJ aValue|ֵ,ability|,able|,$explain|˵ + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,$translate| + ADJ aValue|ֵ,ability|,able|,$employ| +Դ N part|,%physical|,strength| + ADJ aValue|ֵ,ability|,able|,$borrow| + N character|,(China|й) + N human|,young|,female|Ů + N CloudMist| +޺ N tool|þ,*illuminate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ + N material|,*build| + N stone|ʯ + N stone|ʯ + N material|,*feed|ι,#crop|ׯ +๸ N stone|ʯ,waste| +ཬ N stone|ʯ + N material|,*decorate|װ + N waters|ˮ,surfacial| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +Ţ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ţ N place|ط,dirty|,waterlogging|,undesired|ݬ +ţ뺣 V disappear|ʧ + N tool|þ,*recreation| +ɳ N stone|ʯ +ɳ ADJ aValue|ֵ,content|,mixed| +ʯ N stone|ʯ +ˮ N water|ˮ,#stone|ʯ +ˮ N human|,#occupation|ְλ,*build|,industrial| + N image|ͼ,$carve| +̶ N waters|ˮ,surfacial| + N waters|ˮ,surfacial| + N stone|ʯ + N human|,agricultural|ũ +߽ N human|,#occupation|ְλ,*build|,industrial| + N fish| + N human|,religion|ڽ,female|Ů + N place|ط,country|,ProperName|ר,(Nepal|Ჴ) +Ჴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nepal|Ჴ) +Ჴ N place|ط,country|,ProperName|ר,(Asia|) +Ჴ¬ N money|,(Nepal|Ჴ) +Ჴ N human|,(Nepal|Ჴ) +Ჴ N language|,#country|,ProperName|ר + N human|,religion|ڽ,female|Ů +Ŷ N chemical|ѧ +Ŷ N inanimate|,#addictive|Ⱥ,undesired|ݬ +Ŷж N disease| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nicaragua|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Nicaragua|) +ϣ N place|ط,capital|,ProperName|ר,(Cyprus|·˹) + N human|,official|,politics|,ProperName|ר,(US|) + N material| +޺ N waters|ˮ,linear|,ProperName|ר,(Egypt|) +ն ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Niger|ն) +ն N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nigeria|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Nigeria|) + N place|ط,capital|,ProperName|ר,(Niger|ն) + V forming|γ + V imitate|ģ + V plan|ƻ +ⶨ V forming|γ +ⶩ V forming|γ + V compile|༭,ContentProduct=text| +⽨ V build| + N humanized| + V forming|γ + V forming|γ + PRON {SecondPerson|} + PRON {SecondPerson|,mass|} +һ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +׷Ҹ V HaveContest| + V hide| + V hide| +伣 V hide| + ADJ aValue|ֵ,trueness|α,fake|α + N letter|ż +Ӱ V hide| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V disgust| + N InsectWorm|,undesired|ݬ +巳 V disgust| +ζ V disgust| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + V betray| + V disobey|Υ + N human|,undesired|ݬ,*betray|,treacherous| + N location|λ + N quantity|,amount|,#InDebt|,&commercial| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +淴 ADJ aValue|ֵ,behavior|ֹ,treacherous| + N wind| +澳 N phenomena|,undesired|ݬ,#unfortunate| + V predict|Ԥ + ADJ aValue|ֵ,direction|,GoBack| + N attribute|,SocialMode|,treacherous|,&human|,&organization|֯ +ʱ ADJ aValue|ֵ,direction| +ʱ뷽 ADJ aValue|ֵ,direction| +ˮ V VehicleGo|ʻ,direction=GoBack| + ADJ aValue|ֵ,direction|,GoBack| + V SelfMove|,manner=negative| +ת V decline|˥ +ת V reverse|ߵ + N human|,undesired|ݬ,family|,treacherous| + V engage| + V sink|³ +簮 V like|ϧ +ˮ V sink|³ + V decline|˥ +費 ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V pick|ʰ +黨Dz V associate|,partner=female|Ů,manner=lascivious| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ζ V gamble|IJ + ADJ aValue|ֵ,time|ʱ,year| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N part|,%time|ʱ,@alive| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,year| + N time|ʱ,year|,special| + N unit|λ,&time|ʱ +갮 N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ,&artifact|˹,#year| +곤 ADJ aValue|ֵ,age|,aged| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,early|,year| +һ N time|ʱ,festival|,@congratulate|ף + N time|ʱ + N time|ʱ,ending|ĩ,year| + ADJ aValue|ֵ,frequency|Ƶ,year| + N time|ʱ,year| +극 N fact|,eat|,#congratulate|ף,#festival| + N time|ʱ + N time|ʱ,year| +긴һ ADV aValue|ֵ,duration|,TimeLong| +긻ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,age|,aged| +ߵۿ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + ADJ aValue|ֵ,age|,aged| + N attribute|,name|,#country|,#official|,&time|ʱ +껪 N time|ʱ +껭 N image|ͼ,*congratulate|ף,#festival| + N artifact|˹,$buy|,*congratulate|ף,#festival| +꼶 N attribute|,rank|ȼ,&education| + N attribute|,age|,&animate| + N time|ʱ,@rest|Ϣ + N publications|鿯 + N time|ʱ,festival|,@congratulate|ף +꾰 N attribute|,circumstances|,&event|¼,#crop|ׯ +꾰 N attribute|,scene|,&event|¼ + ADJ aValue|ֵ,age|,aged| + N tool|þ,*show|,#time|ʱ + N fund|ʽ,$earn|׬,commercial| + N attribute|,age|,&animate| + N trace|,#tree|,#grow|ɳ + ADJ aValue|ֵ,age|,aged| +ĩ N part|,%time|ʱ,year|,ending|ĩ + N time|ʱ,year| + N account|,@record|¼,#time|ʱ + ADJ aValue|ֵ,age|,young| +ŮԱ N human|,*perform|,female|Ů,entertainment| + N human|,young| + ADJ aValue|ֵ,age|,young| + N human|,young| + N attribute|,age|,young| +Ѹ ADJ aValue|ֵ,age|,aged| + N attribute|,age|,&animate| + N time|ʱ +ͷ N phenomena|,#collect|,#crop|ׯ +ͷ N time|ʱ +ͷ N time|ʱ,TimeLong| +ͷ N unit|λ,&time|ʱ +Ϣ N fund|ʽ,$earn|׬,commercial| + N quantity|,amount|,&year| +۶ N quantity|,amount|,&sell|,commercial| +н N payment|,#year| +ҹ N time|ʱ,night| +ҹ N fact|,eat|,*congratulate|ף,#festival| + ADJ aValue|ֵ,age|,young| +⻨ ADJ aValue|ֵ,age|,aged| + N time|ʱ + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + N time|ʱ,ending|ĩ,year| + V grind|ĥ + N tool|þ,*grind|ĥ + V grind|ĥ + N tool|þ,*grind|ĥ + V chase|׷ + V expel| + V PlayWith|Ū + V ThinkOf|˼ + V recite|ж + V study|ѧ,education| + V recite|ж + V recite|ж,content=text|,religion|ڽ + V ThinkOf|˼,content=friend| + V remember|ǵ + V recite|ж,content=publications|鿯 + V study|ѧ,education| +ͷ N thought|ͷ + N tool|þ,*recite|ж,#text|,religion|ڽ +߶ V talk|̸ + N human|,family|,female|Ů + N human|,female|Ů,adult| + N community|,family| + N human|,family|,male| + N humanized|,female|Ů + N human|,royal|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů,adult| +Ӿ N army|,female|Ů + V ResultIn| + N drinks|Ʒ,$addict|Ⱥ + V produce|,industrial| + V ResultIn| + V produce|,PatientProduct=drinks|Ʒ + V produce|,industrial| + N bird| + N bird| +񾡹 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N bird| + N tool|þ,space|ռ,@detain|ס,#bird| + V cry|,agent=bird| +ﻨ N attribute|,scene|,good|,&place|ط + N part|,%bird|,mouth| + V investigate| + V look| + V excrete|й + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + N tool|þ,*wipe| +򳣹 N fact|,check|,#liquid|Һ,medical|ҽ + N part|,%AnimalHuman|,#excrete|й + N disease| +֢ N disease| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ +Һ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + V forge|α + V press|ѹ + V produce| + V forge|α + N human|,*forge|α + N character|,surname|,human|,ProperName|ר + V bite|ҧ + V bite|ҧ + ADJ connect| + V connect| + N tool|þ,*pick|ʰ + N metal| + N character|,(China|й) + PRON {SecondPerson|} + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ˮ N drinks|Ʒ + N chemical|ѧ +֭ N drinks|Ʒ + V StateChange|̬ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ + V StateChange|̬ + V StateChange|̬ + N StateChange|̬ + V StateChange|̬ + N attribute|,strength|,&entity|ʵ + ADV aValue|ֵ,behavior|ֹ,attentive|ϸ + V look| + N human|,look| + V look| +Ѫø N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,SoundQuality|,strong|ǿ + ADJ aValue|ֵ,countenance|,stately|ׯ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADV {modality|} + ADV {modality|} + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ը ADV {modality|} +š V press|ѹ +ţ N aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ţ N character|,surname|,human|,ProperName|ר +ţ N livestock| +ţ N LandVehicle| +ţ N medicine|ҩ +ţ N livestock|,young| +ţ N human|,#knowledge|֪ʶ,ProperName|ר,(UK|Ӣ) +ţ N unit|λ,&strength| +ţ N medicine|ҩ +ţ N part|,%livestock|,*feel| +ţ N humanized|,agricultural|ũ +ţ N celestial| +ţ N drinks|Ʒ +ţ N food|ʳƷ +ţƤ N material|,?clothing|,?tool|þ +ţƤֽ N paper|ֽ,*wrap| +ţ N food|ʳƷ +ţͷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ţ N beast| +ţ N human|,#occupation|ְλ,*foster|,#livestock| +ţп N clothing|,#leg| +Ť V hold| +Ť V rotate|ת +Ť V turn|Ťת +Ť V wounded| +Ť V fight| +Ť V rotate|ת +Ť N beast| +Ť V twine| +Ť V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +ŤΪӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ťӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ť V pretend|װ +Ť V alter|ı +Ť V wounded| +Ť V catch|׽ס,transport| +Ťͷ V CausePartMove|,PatientPartof=head|ͷ +Ťͷ V TurnRound| +Ť V perform|,content=shows|,entertainment| +Ťת V CausePartMove| +Ťת V reverse|ߵ +Ťת V turn|Ťת +ť N character|,surname|,human|,ProperName|ר +ť N part|,%clothing|,*fasten|˩ +ť N part|,%implement|,hand| +ť N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%implement|,hand| +Ŧ N entity|ʵ,*tie| +Ŧ N part|,%clothing|,*fasten|˩ +Ŧױ N place|ط,city|,ProperName|ר,(Germany|¹) +ŦԼ N place|ط,city|,ProperName|ר,(US|) +ŦԼ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +ŧ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й +ŧ N disease| +ŧ N human|,undesired|ݬ,unable|ӹ +ŧ N disease| +ŧ N disease| +ŧ N disease| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ +Ũ N attribute|,hue|Ũ,&color|ɫ +Ũ N attribute|,concentration|Ũ,&liquid|Һ +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,density|ܶ,dense| +Ũ V StateChange|̬,industrial| +Ũ N StateChange|̬,industrial| +Ũ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ũ N affairs|,agricultural|ũ +ũ N character|,surname|,human|,ProperName|ר +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹,agricultural|ũ,#crop|ׯ,generic|ͳ +ũ N InstitutePlace|,space|ռ,agricultural|ũ +ũ N place|ط,village| +ũ˿ N human|,*function|,village| +ũ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹ +ũ N affairs|,agricultural|ũ,industrial|,commercial| +ũ N community|,family|,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N machine|,agricultural|ũ +ũ N tool|þ,agricultural|ũ +ũ N knowledge|֪ʶ,#agricultural|ũ +ũ N human|,agricultural|ũ +ũ N implement|,agricultural|ũ,generic|ͳ +ũ N tool|þ,agricultural|ũ,generic|ͳ +ũԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,#agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N law|ɷ,#time|ʱ +ũ N time|ʱ,month| +ũ N time|ʱ,month| +ũ N affairs|,agricultural|ũ +ũó N affairs|,agricultural|ũ,commercial| +ũ N community|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũū N human|,agricultural|ũ +ũū N human| +ũ N house|,agricultural|ũ +ũʱ N time|ʱ,@engage|,#agricultural|ũ +ũ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ũ N time|ʱ,@pause|ͣ,#agricultural|ũ +ũ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ũѧԺ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũҩ N chemical|ѧ,#agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũҵ N institution|,#agricultural|ũ,ProperName|ר,politics| +ũҵ N human|,#occupation|ְλ,agricultural|ũ +ũҵ˰ N expenditure| +ũʦ N human|,#occupation|ְλ,#knowledge|֪ʶ,agricultural|ũ +ũ ADJ aValue|ֵ,attachment|,agricultural|ũ +ũ N crop|ׯ,generic|ͳ +Ū V CauseToDo|ʹ +Ū V PlayWith|Ū +Ū V WhileAway| +Ū V do| +Ū V handle| +Ū V take|ȡ +Ū V CauseToDo|ʹ +Ū V TryToKnow|Ū +Ū V damage| +Ū V damage| +Ū V MakeTrouble| +Ū V TryToKnow|Ū +Ūɳ׾ V fail|ʧ +Ū V TryToKnow|Ū +Ū V TryToKnow|Ū +Ū V kill|ɱ +Ū N facilities|ʩ,route|· +Ū V deceive|ƭ +Ū V damage| +Ū V pollute|ʹ +Ū V damage| +ū N human|,employee|Ա +ū N human|,undesired|ݬ,*MakeBad|Ӻ +ū V ize|̬ +ū N human|,employee|Ա +ū N organization|֯ +ū N attribute|,behavior|ֹ,passive|,undesired|ݬ,&human| +ū N system|ƶ +ū N human|,*own| +ū N human|,employee|Ա +ūϥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ū V damage| +Ŭ V CausePartMove| +Ŭ³ķ N money|,(Bhutan|) +ŬⰢ巨 N place|ط,capital|,ProperName|ר,(Tonga|) +Ŭ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ŭ V endeavour| +Ŭ߿Ф N place|ط,capital|,ProperName|ר,(Mauritania|ë) +Ŭ V CausePartMove|,PatientPartof=mouth| +ŭ V angry| +ŭ N emotion|,angry|,undesired|ݬ +ŭɶ V angry| +ŭ V ExpressAgainst|Ǵ +ŭ V angry| +ŭ V ExpressAnger|ʾŭ +ŭ V angry| +ŭ V MakeSound| +ŭ V MakeSound| +ŭ V cry| +ŭ N emotion|,angry|,undesired|ݬ +ŭĿ V ExpressAnger|ʾŭ +ŭ N emotion|,angry|,undesired|ݬ +ŭ V look|,manner=angry| +ŭ N water|ˮ,strong|ǿ +ŭɫ V ExpressAnger|ʾŭ +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N human|,family|,female|Ů,young| +Ů N human|,female|Ů +Ů N human|,female|Ů,rich| +Ů N human|,female|Ů,*protect| +Ů N human|,*fight|,female|Ů,military| +Ů N room|,#female|Ů,@excrete|й +ŮԱ N human|,#occupation|ְλ,female|Ů,employee|Ա,#LandVehicle| +Ů N fact|,compete|,sport|,#female|Ů +Ů N sound|,#music| +ŮԱ N human|,employee|Ա,female|Ů,commercial|,*sell| +Ů N human|,female|Ů,*mediate| +Ů N community|,female|Ů,sport| +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N part|,%community|,#GetMarried|,aspect| +Ůм N human|,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*entertain|д +Ů N sound|,#music| +Ů N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů質 N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů N human|,#occupation|ְλ,female|Ů,industrial| +Ů N human|,#occupation|ְλ,industrial|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,royal|,female|Ů +Ů̳ N human|,female|Ů,*receive| +Ůҳ N human|,female|Ů,official|,family| +Ů๤ N human|,#occupation|ְλ,female|Ů,*supervise|,industrial| +Ů N human|,official|,military| +Ů N human|,wise|,female|Ů,desired| +Ů N human|,#occupation|ְλ,female|Ů,official|,commercial| +Ů N human|,#occupation|ְλ,female|Ů,police| +Ů N human|,official|,female|Ů,police| +Ů N human|,family|,female|Ů +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,adult| +Ů N human|,#occupation|ְλ,female|Ů,agricultural|ũ,*catch|׽ס,#beast| +Ů N human|,female|Ů +Ůðռ N human|,female|Ů,*venture|ð +Ů N fact|,exercise|,sport|,#female|Ů +Ůͽ N human|,female|Ů,undesired|ݬ,betray|,treacherous| +Ů N human|,female|Ů,friend| +Ů N human|,employee|Ա,female|Ů +Ůǿ N human|,female|Ů,able|,desired| +Ů N human|,female|Ů,family| +Ů N community|,religion|ڽ +Ů๤ N human|,*clean|ʹ,employee|Ա,female|Ů +ŮȨ N rights|Ȩ,#human|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ůɱ N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ůɳ N human|,female|Ů,royal|,(Russia|˹) +Ů N humanized|,female|Ů +Ů N sound|,#music| +Ů N human|,female|Ů,*study|ѧ,education| +Ůʫ N human|,female|Ů,*compile|༭,literature| +Ůʿ N human|,female|Ů,adult| +Ůг N human|,female|Ů,official|,#city| +Ů˫ N fact|,compete|,sport|,#female|Ů +Ů˾ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#LandVehicle| +Ůͯ N human|,female|Ů,young| +ŮͯӾ N human|,young|,#military|,female|Ů +Ů N human|,royal|,female|Ů +Ů N human|,undesired|ݬ +ŮУ N human|,#occupation|ְλ,female|Ů,official|,education| +Ůż N human|,#occupation|ְλ,female|Ů,*gather|ɼ,*compile|༭,#news| +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N attribute|,sex|Ա,female|Ů,&human| +Ů N human|,female|Ů +Ů N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ů޵Ժ N human|,#occupation|ְλ,female|Ů,religion|ڽ,official| +Ů N human|,family|,male| +Ů˵ N human|,female|Ů,*speak|˵ +ŮԱ N human|,#occupation|ְλ,*perform|,female|Ů,entertainment| +Ůħ N humanized|,undesired|ݬ,evil|,female|Ů +Ůҵ N human|,female|Ů,*employ|,commercial| +ŮӶ N human|,employee|Ա,female|Ů +ŮӶ N human|,employee|Ա,female|Ů +Ů N human|,female|Ů,friend| +ŮԤԼ N human|,female|Ů,*predict|Ԥ +Ů N sound|,#music| +Ů N human|,female|Ů,*entertain|д +Ůϯ N human|,female|Ů,official| +Ůװ N clothing|,#female|Ů +Ů N human|,female|Ů,adult| +Ůܶ N human|,#occupation|ְλ,female|Ů,official| +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,past| +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N facilities|ʩ,space|ռ,house|,*planting|ֲ,#plant|ֲ +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N tool|þ,cubic|,@put|,#liquid|Һ +ů N tool|þ,*cover|ڸ +ů N experience|,excited| +ůƿ N tool|þ,cubic|,@put|,#liquid|Һ +ů N facilities|ʩ,*WarmUp|,#building| +ůķ V soothe|ο +ůɫ N attribute|,hue|Ũ,&color|ɫ,warm| +ůˮƿ N tool|þ,cubic|,@put|,#liquid|Һ +Ű ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ű V damage|,crime| +Űɱ V kill|ɱ,manner=fierce|,crime| +ű N disease| +ű N disease| +ű N InsectWorm|,undesired|ݬ,*influence|Ӱ,#disease| +Ų V SelfMoveInManner|ʽ +Ų V TakeAway|ᶯ +Ų N place|ط,country|,ProperName|ר,(Norway|Ų) +Ų V recompense| +Ų V TakeAway|ᶯ +Ų V borrow|,commercial| +Ų ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Norway|Ų) +Ų N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ų N money|,(Norway|Ų) +Ų N language|,#country|,ProperName|ר +ŲѶ V SelfMoveInManner|ʽ +ŲѶ V TakeAway|ᶯ,patient=family| +Ų V cheat|ƭ +Ų V use|,commercial| +Ųù N human|,*cheat|ƭ,crime|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ų N human|,undesired|ݬ,timid| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +Ŵ ADJ aValue|ֵ,stickiness|,sticky| +Ŵ N crop|ׯ +Ŵ N material|,?food|ʳƷ,#crop|ׯ +ŵ N text|,$admit| +ŵ N human|,ProperName|ר +ŵ N tool|þ,*reward|,$GiveAsGift|,desired| +ŵ N human|,$reward| +ŵ N place|ط,ProperName|ר,(France|) +ŵ N information|Ϣ,*MakeAppointment|Լ,#bear|е +Ŷ ECHO sound| +ŷ N character|,surname|,human|,ProperName|ר +ŷ N place|ط,ProperName|ר +ŷ N institution|,ProperName|ר +ŷ V ize|̬,PatientAttribute=foreign| +ŷ N place|ط,ProperName|ר +ŷķ CLAS unit|λ,&resistance| +ŷ N institution|,ProperName|ר +ŷǴ½ N place|ط,ProperName|ר +ŷ N character|,surname|,human|,ProperName|ר +ŷԪ N money|,(Europe|ŷ) +ŷԪ N place|ط,#country|,ProperName|ר,(Europe|ŷ) +ŷ ADJ aValue|ֵ,attachment|,ProperName|ר,(Europe|ŷ) +ŷ N place|ط,ProperName|ר +ŷ޹ͬ N institution|,ProperName|ר +ŷ޾ùͬ N institution|,ProperName|ר +ŷ N human|,(Europe|ŷ) +Ÿ N bird| +Ź V beat| +Ź N character|,surname|,human|,ProperName|ר +Ź V beat| +ź N fruit|ˮ +ź N food|ʳƷ +ź N material|,?food|ʳƷ +ź ADJ aValue|ֵ,color|ɫ,purple| +źɫ ADJ aValue|ֵ,color|ɫ,grey| +Ż V vomit|³ +Ż V StomachTrouble|֢ +Ż V vomit|³ +Ż N human|,*StomachTrouble|֢,medical|ҽ +ŻѪ V endeavour| +ŻѪ V bleed|Ѫ,means=vomit|³ +ż N human|,$believe| +ż N human|,family|,mass| +ż N human|,friend| +ż N image|ͼ +ż ADJ qValue|ֵ,amount|,double| +żȾ N material|,*AlterColor|ɫ +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż V fit|ʺ +żȻ ADJ aValue|ֵ,kind|,special| +żȻ N attribute|,frequency|Ƶ,rarely|ż,&event|¼ +ż N thing|,$respect| +Ž V soak| +Ž N material|,*feed|ι,#crop|ׯ +ſ V FallDown| + V climb|ʵ + V crawl| + N beast| + N LandVehicle| + V climb|ʵ + V crawl| +Ӿ V exercise|,sport| + N tool|þ,*wipe| +ﲩ N place|ط,capital|,ProperName|ר,(Surinam|) +׶ N place|ط,ProperName|ר +׶ԭ N place|ط,ProperName|ר + V fear| + V guess|² + ADV {comment|} + V shy| + N SportTool|˶ + V TakePicture| + V beat| + V please|ȡ + V post|ʼ +...ƨ V please|ȡ +İо V praise|佱 +İ N MusicTool| +İ V beat|,commercial| +İ V decide| +İ V recreation|,entertainment| +Ĵ V beat| +ķ V post|ʼ +ƨ V please|ȡ + N human|,*please|ȡ + V sell|,commercial| + V sell|,manner=HaveContest|,commercial| +Ƭ V produce|,#shows| + V TakePicture| + V beat|,PartOfTouch=hand| + V praise|佱 + V TakePicture| +ֽ N account|,*record|¼ + N SportTool|˶ + N attribute|,speed|ٶ,&music|,&language| + CLAS NounUnit|,&physical| + V PutInOrder| + V discharge| + V drain|ų + V drill|ϰ,entertainment| + N food|ʳƷ + N part|,%army| + V push| + N ship| +Ű V PutInOrder|,#print|ӡˢ +ų ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ +ų N human|,#occupation|ְλ,official|,military| +ų N attribute|,performance|,discharge|,&thing| +ų V discharge| +ų V drain|ų +ų V remove| +ų V discharge| +ŵ N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ +Ŷ V PutInOrder| +ŷ V PutInOrder| +ŷ V drain|ų +Ź N food|ʳƷ +Ź V irrigate|,agricultural|ũ +Żʿ N human|,*oppose| +ż V discharge| +Ž V mediate| + V drain|ų,content=liquid|Һ,agricultural|ũ + V drill|ϰ,entertainment| + V PutInOrder| + V put| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V GiveBirth| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ѽ V mediate| + V excrete|й,patient=gas|,industrial| +Dz V WhileAway| + N SportTool|˶ + V drain|ų +ɽ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ˮ V drain|ų,patient=liquid|Һ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N quantity|,amount|,&ship| + N attribute|,performance|,discharge|,&thing| +ͷ N human|,$study|ѧ,$imitate|ģ,desired| +ͷ N human|,*fight|,military| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V oppose| + V drain|ų,patient=waste| +й V drain|ų +й V excrete|й,medical|ҽ +йϵͳ N part|,%AnimalHuman|,viscera|,*excrete|й + N attribute|,clan|,&human| +а N account|,@record|¼,sequence|,#compete| + V arrange|,patient=sequence| + V drill|ϰ,entertainment| +ӡ V print|ӡˢ +ǽ V remove|,content=difficult| +ӳ N LandVehicle| + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,*recreation| +Ʒ N facilities|ʩ,religion|ڽ +ƺ N mark|־,#InstitutePlace|,commercial| +ƺ N mark|־,commercial| +Ƽ N attribute|,price|۸,&physical|,commercial| +λ N tool|þ,*salute|¾,#die| + N document|,*prove|֤,#vehicle|ͨ + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,@write|д +ǻ V QuantityChange|,commercial| +ǻ V hesitate|ԥ +ǻ V roam| + V CauseToBe|ʹ֮ + N attribute|,style|,&human| + N attribute|,style|,&physical| + N community| + N community|,#knowledge|֪ʶ + V dispatch|Dz + V issue|ַ +ɱ N community| +ɲ V ExpressAgainst|Ǵ +ɳ N institution|,police| +Dz V dispatch|Dz + ADJ aValue|ֵ,source|Դ + V associate| + V climb|ʵ + V tie| +ʱ V protest|,means=CompareTo| +ʳ V tie| +ʵ V climb|ʵ +ʵ N human|,*climb|ʵ + V SeekRefuge|Ͷ,partner=power| + V associate| + V climb|ʵ +̸ V talk|̸ +Ե V climb|ʵ +Ե V endeavour| + V break|۶ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&fact| + CLAS NounUnit|,&inanimate| + N attribute|,price|۸,&inanimate| + V build| + V check| + V circle| + V sell|,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +̰ V rob| +̲ V check| +̳ N tool|þ,*measure|,#weight| +̴ V check| +̵ N facilities|ʩ,route|· +̵ V check| +̶ N food|ʳƷ +̸ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +̻ V stay|ͣ +̻ V check|,content=artifact|˹,commercial| +̾ V situated| +̿ V check|,content=artifact|˹,commercial| +Ū V PlayWith|Ū + ADJ aValue|ֵ,form|״,curved| + V coil| + V plan|ƻ + V think|˼ + N part|,%building|,nerve| + V CausePartMove|,PatientPartof=leg| + V interrogate| + N tool|þ,*salute|¾,$burn| + V circle| + V stay|ͣ + N livestock| + V check|,content=account|,#wealth|Ǯ,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +ڵ V ask| +ڵ V interrogate| + N stone|ʯ +ʯ N stone|ʯ + V expect| + V look| +ͷ N entity|ʵ,$expect| + V expect| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge|,agricultural|ũ + V distinguish|ֱ + V judge|ö + V judge|ö,police| +б V distinguish|ֱ +д V punish|,police| +ж V judge|ö +ж V judge|ö +ж N judge|ö +ж V judge|ö +ж N result|,#judge|ö +ж N attribute|,ability|,*judge|ö,&physical| +жȷ ADJ aValue|ֵ,correctness|,upright|,desired| +о N attribute|,standard|׼,&entity|ʵ +о V judge|ö +о N document|,*judge|ö + N example|ʵ,police|,#fact| + V distinguish|ֱ + V differ|ͬ + ADJ aValue|ֵ,similarity|ͬ,different| + V punish|,police| + V punish|,police| + V betray| + V uprise|,crime| +ѱ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ѱ V betray| +ѱ V betray|,crime| +ѹ V betray|,target=country| +Ѿ N army| + V betray| + V uprise| + V betray| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| +ͽ N human|,*betray|,treacherous|,undesired|ݬ + ADJ aValue|ֵ,size|ߴ,big| + N character|,surname|,human|,ProperName|ר +Ӵ ADJ aValue|ֵ,size|ߴ,big| +Ȼ N AnimalHuman|,big| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,importance|,branch|֧ + ADJ aValue|ֵ,kind|,other| + N location|λ,edge| + N part|,%character| +Ա ADJ aValue|ֵ,direction| +Ա N location|λ,edge| +Թ V look| +Թ N human|,*look| +Լ V relate|й +· N part|,implement|,electricity| + N part|,%building|,mouth| +ò ADJ aValue|ֵ,behavior|ֹ,tactful| + N human|,other| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V study|ѧ,education| + N language|,#country|,ProperName|ר + V quote| +֤ N information|Ϣ,*explain|˵ +֧ ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,fatness|,fat| +ִ N FlowerGrass|,?medicine|ҩ +ֺ ADJ aValue|ֵ,fatness|,fat| + N {fatness|} +ͷ N fish| + N human|,fat| + V put| + V throw| +׹ V brighten|ʹ,industrial| +ê V OutOfOrder| +ê V stay|ͣ +ê N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + V abandon| + V sell|,commercial| +ͷ¶ V appear| + N image|ͼ,linear| + V throw| + V MakeSound| + V cry| + V cut|,industrial| + V dig|ھ + V subtract| + N tool|þ +ٱ N drinks|Ʒ,ice| +ٴ N machine|,*produce| +ٴ N tool|þ +ٵ N tool|þ +ٸ V investigate| +ٹ N human|,#occupation|ְλ,industrial| + N tool|þ + V cook|,medical|ҽ + N tool|þ,*recreation| + N weapon|,*firing| +ڱ N army|,*firing| +ڱ N human|,*firing|,military| +ڵ N weapon|,$firing| +ڻ N human|,military| +ڻ N fire| +ڻ V firing|,military| +ڽ N weapon|,ship|,military| +¥ N facilities|ʩ,space|ռ,military|,@defend| + N sound| +ͧ N weapon|,ship|,military| +Ͳ N human|,#speak|˵ +λ N location|λ,@firing|,military| + N part|,%facilities|ʩ,@firing|,military| + N part|,%facilities|ʩ,mine| + N tool|þ,*WhileAway|,*congratulate|ף + V cook|,medical|ҽ + V forge|α + N clothing|,#body| + N human|,friend| + N clothing|,#body| +˵dz V undertake|,content=official| + V engage| + V flee| + V run| +ܱ N tool|þ,*tell|,#time|ʱ +ܲ V run| +ܳ N SportTool|˶,#LandVehicle| +ܵ V engage|,content=commercial|,manner=single| +ܵ N part|,%facilities|ʩ,route|·,#aircraft|,@slide| +ܵ N part|,%facilities|ʩ,route|·,@compete|,sport| +ܵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +ܶ V StomachTrouble|֢ +ܽ V MakeLiving|ı,means=perform| + V engage| + V perform|,entertainment| + V compete|,sport| + V exercise| +ܵߵ V endeavour| +ö N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +ȶ V engage| +Ь N SportTool|˶,#clothing|,#foot| + CLAS NounUnit|,&stone|ʯ,#waste|,#excrete|й + ADJ aValue|ֵ,tightness|ɽ,loose| + N shape| + N shape|,loose| + N shape|,round|Բ + V slack|͵ + V soak| +ݲ V pretend|װ,content=ill|̬,purpose=slack|͵ +ݲ N food|ʳƷ +ݲ V cook|,PatientProduct=drinks|Ʒ +ݷ V cook|,PatientProduct=food|ʳƷ +ݷ N food|ʳƷ +Ģ V MakeTrouble| +Ģ V slack|͵ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N tool|þ,*remove|,#fire| +ĭ N material| +ɴ N material|,?clothing| + V fail|ʧ +ͩ N tree| +Ӱ N thinking|˼,empty| + N waters|ˮ,surfacial| + N part|,%animate|,embryo| +߸ N part|,%plant|ֲ,base| +̥ N part|,%AnimalHuman|,embryo| +ѿ N part|,%plant|ֲ,embryo| + V cultivate| + V install|װ + V pile|ѷ + V repair| +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ + V cultivate| + V cultivate|,medical|ҽ + V cultivate| +ֲ V cultivate| +ֲ V planting|ֲ +ֲ V teach| + N character|,surname|,human|,ProperName|ר + V InDebt|,commercial| + V recompense| +Ȿ V InDebt|,possession=fund|ʽ,commercial| +ⲻ V apologize|Ǹ +⳥ V recompense| + V recompense|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ +Ǹ V apologize|Ǹ +Ǯ V InDebt| +Ǯ V pay|,possession=money| +Ц V apologize|Ǹ + V InDebt|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ + V follow| + V follow| + V ServeAsFoil| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ + V undertake|,content=judge|ö,police| + N community|,*judge|ö,police| +Ա N human|,*judge|ö,police| + V GiveAsGift|,purpose=MarryTo| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ +ͬ V follow| +Ц V please|ȡ + N sound| + V bury| + V MarryTo| + V fit|ʺ + V issue|ַ + V mating| + V mix| + V seek|ıȡ,fit|ʺ + V worth|ֵ +䱸 V arrange| +䱸 V arrange|,military| +䱸 N machine|,generic|ͳ + N quantity|,rate|,&mix| +䲻һ V FitNot| + N edible|ʳ + N fact|,issue|ַ,#electricity| + N room| + V mating| + N quantity|,amount|,$delimit|,&entity|ʵ +䷽ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V issue|ַ + V cooperate| + V coordinate|Э + N fact|,cooperate| +Ĭ N mental|,#coordinate|Э,desired| + N part|,generic|ͳ + N human|,*help| + N human|,entertainment| + V mix|,patient=material| +¥ N house| +ż N human|,family| + V mix|,patient=MusicTool| +ɫ V mix|,patient=color|ɫ + V sell| + V include|,military| + V fit|ʺ + ADJ qValue|ֵ,amount|,all|ȫ +׳ V forming|γ,PatientProduct=complete| +Ϸ V perform|,entertainment| +ҩ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V MakeSound| + V arrange| + V arrange|,military| + V produce| + V produce|,medical|ҽ + V mating|,agricultural|ũ + V PutOn|,Vgoingon|չ + V respect| + V PutOn|,Vgoingon|չ + V PutOn|,Vgoingon|չ + V respect| + ADJ qValue|ֵ,amount|,many|,desired| + CLAS NounUnit|,&plant|ֲ + V jet| + V jet| +緢 V jet| +緹 ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +緹 V laugh|Ц + N tool|þ,cubic|,*spray|,#liquid|Һ + V irrigate| + N tool|þ,cubic|,*spray|,#liquid|Һ + V decorate|װ + N material|,liquid|Һ,*decorate|װ + V jet| +ɻʻԱ N human|,*drive|Ԧ,#aircraft| +ʽ ADJ aValue|ֵ,performance| +ʽɻ N aircraft| +Ȫ N facilities|ʩ,@jet|,#liquid|Һ + V spray| + V jet| +Ϳ V apply|ͿĨ + N tool|þ,*moisten|ʪ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%tool|þ,*moisten|ʪ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N land|½ +軨 N FlowerGrass| +辰 N tool|þ,*decorate|װ +ǻ N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,property|,$planting|ֲ + N tool|þ,*decorate|װ + ECHO sound| + V ExpressAgainst|Ǵ + V cook| + V cook| + ADJ aValue|ֵ,attachment|,#cook| + N knowledge|֪ʶ,#cook| +ѧ N human|,*cook| + V cook| + V cook| + V spray| + V excited| + V jet| + N character|,surname|,human|,ProperName|ר + N FlowerGrass| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,form|״,disorder| + ADJ aValue|ֵ,tightness|ɽ,loose| +ͷ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ﳵ N LandVehicle| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N chemical|ѧ +ɰ N material| + N chemical|ѧ + N part|,%ship| + N part|,%vehicle|ͨ,*cover|ڸ + V enlarge| + V enlarge| + ADJ aValue|ֵ,property|,$enlarge| + V enlarge| + N human|,friend| +Ϊ V collude| + N human|,friend| + N human|,friend|,#love| + N bird| + V prosper| + CLAS NounUnit|,&inanimate| + V pick|ʰ + V please|ȡ + V praise|佱 + V help|,scope=perform| + V please|ȡ + V praise|佱 + V bump|ײ + V meet| + V touch| + V try| + V congratulate|ף + V fail|ʧ + V meet| + V fail|ʧ + N tool|þ,*shut|ر + V meet| + ADV aValue|ֵ,time|ʱ,proper| + V meet| + N tool|þ,*shut|ر +ͷ V meet| +ͷ N fact|,@communicate| +һӻ V fail|ʧ +Ӳ V handle|,patient=difficult| +ײ V bump|ײ + N artifact|˹,coarse| + N material|,*build|,coarse| + N material|,?clothing| + N artifact|˹,coarse| +˪ N medicine|ҩ,*kill|ɱ + N thunder| + N thunder| + V ExpressAgainst|Ǵ + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&physical| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V beat| + V estimate| + N part|,%material|,#clothing| + V write|д,ContentProduct=thought|ͷ + V estimate| + V refute| + V ExpressAgainst|Ǵ + V announce|,politics| + V sell|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +г N InstitutePlace|,*sell|,@buy|,commercial| + V reply|,politics| + V amend| +ҵ V amend|,patient=text| + N symbol| + N document| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,&produce| + V produce|,quantity=many| + V estimate| + N human|,*estimate| + V estimate| + N human|,*estimate| +ʾ V express|ʾ,politics| + N document| + V read|,politics| +ע N part|,%text| +ת V write|д,ContentProduct=thought|ͷ,issue|ַ +׼ V ExpressAgreement|ʾͬ +׼ N human|,*ExpressAgreement|ʾͬ + V CausePartMove| + V FormChange|α,StateFin=OutOfOrder| + V FormChange|α,StateFin=enlarge| + V PutOn| + V open| + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + V PutOn| +ִ V prepare|׼,content=fight|,military| + N clothing|,#body| +¶ V announce| +¶ V reveal|¶ +ɢ V CausePartMove| +ɳ V choose|ѡ,content=heart| +Ǵ V endeavour| + V read| + V StripOff|ȥ + V beat| + V break|۶ + V damage| + V separate| + N shape| + V split|ƿ + N method|,*fight|,military| + N tool|þ,*break|۶,*split|ƿ +ɽ V cut| +ɽ V cut|,industrial| + ADJ aValue|ֵ,speed|ٶ,fast| +ͷ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N MusicTool| + V BeNear| + V BeNear| + V BeNear| +ơ N drinks|Ʒ,$addict|Ⱥ +ơ N drinks|Ʒ,$addict|Ⱥ +ơƳ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +ơƻ N material|,?drinks|Ʒ +Ƣ N part|,%AnimalHuman|,viscera| +Ƣ N attribute|,behavior|ֹ,&AnimalHuman| +Ƣ N emotion|,bad|,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce| +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ƣθ N emotion|,FondOf|ϲ +Ƣ N disease| +Ƣ N part|,%AnimalHuman|,viscera| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣǿ N attribute|,strength|,withstand|ס,#tired|ƣ,&inanimate| +ƣ V decline|˥,commercial| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ƣ V slack|͵ +ƣڱ V endeavour| +ƣڱ V tired|ƣ +ƣ V slack|͵ +Ƥ V StateChange|̬,StateFin=tough| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƥ N character|,surname|,human|,ProperName|ר +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N material|,?tool|þ +Ƥ N part|,%animate|,skin|Ƥ +Ƥ N part|,%artifact|˹,skin|Ƥ +Ƥ N part|,%physical|,skin|Ƥ +Ƥ N shape| +Ƥ N tool|þ,*wrap| +Ƥ N tool|þ,cubic|,@put| +Ƥ˾ N InstitutePlace|,undesired|ݬ,commercial| +Ƥͷ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +Ƥ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,*measure|,#length| +Ƥ N fittings|,%clothing| +Ƥ N part|,%implement| +Ƥ N tool|þ,$PutOn| +Ƥ N part|,%implement| +Ƥ N food|ʳƷ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥֲ N method|,*cure|ҽ +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N clothing|,#body| +Ƥ N artifact|˹,commercial|,generic|ͳ +Ƥп N clothing|,#body| +Ƥ N tool|þ,cubic|,@put| +Ƥ N human|,#occupation|ְλ,industrial| +Ƥ V wounded| +Ƥë ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥë N knowledge|֪ʶ,NotProfound|dz +Ƥë N material|,?clothing|,?furniture|Ҿ +Ƥ N material| +Ƥ N SportTool|˶ +Ƥ N tool|þ,*WhileAway| +Ƥʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ƥʵ ADJ aValue|ֵ,quality|,durable|,desired| +Ƥ ADJ aValue|ֵ,attachment|,#part|,#AnimalHuman| +Ƥע V cure|ҽ +Ƥ֯ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,linear|,*transmit|,#electricity| +Ƥ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥ N tool|þ,cubic|,@put| +ƤЦⲻЦ V pretend|װ,content=laugh|Ц +ƤЬ N clothing|,#foot| +Ƥѥ N clothing|,#foot| +Ƥ N disease| +Ƥ N clothing|,#body| +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N disease| +Ƥ֬ N part|,%AnimalHuman|,nerve| +Ƥֽ N paper|ֽ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| +Ƥ N material|,?clothing|,?furniture|Ҿ +ƥ CLAS NounUnit|,&material|,&livestock| +ƥ V equal| +ƥ V fit|ʺ +ƥ V equal| +ƥ N human|,ordinary| +ƥ V GetMarried| +ƥ V fit|ʺ +Ʀ N disease| +Ʀ N human|,undesired|ݬ,evil| +Ʀ N human|,undesired|ݬ,evil| +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƨ N place|ط,far|Զ +ƨ EXPR expression|,*ExpressDissatisfaction|ʾ +ƨ N gas|,#AnimalHuman|,waste| +ƨ N part|,%AnimalHuman|,base| +ƨ N part|,%animal|,base| +ƨ N part|,%thing|,waste|,head|ͷ +Ʃ N example|ʵ +Ʃ N expression|,#BeSimilar| +Ʃ ADV {supplement|ݽ} +Ʃ N expression|,#BeSimilar| +ƪ CLAS NounUnit|,&text| +ƪ N text| +ƪ N attribute|,area|,&paper|ֽ +ƪ N attribute|,content|,&text| +ƪĿ N part|,%readings|,content| +ƪ N text| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,form|״,slanted| +ƫ V like|ϧ +ƫ N result|,undesired|ݬ,wrong| +ƫ N document|,#medicine|ҩ,medical|ҽ +ƫ V despise| +ƫ V like|ϧ +ƫ V protect| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N thought|ͷ,biased|ƫ,undesired|ݬ +ƫ N fish| +ƫ V leave|뿪 +ƫƧ ADJ aValue|ֵ,distance|,far|Զ +ƫƧ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ƫƫ ADV aValue|ֵ,will|־,strong|ǿ,desired| +ƫƫ ADV {emphasis|ǿ} +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫʳ V eat|,medical|ҽ +ƫ̱ N disease| +ƫ̻ V protect|,manner=biased|ƫ +ƫƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N attribute|,outlook|ǰ,wrong|,&human|,&organization|֯,&event|¼ +ƫ V endorse|ӵ +ƫб ADJ aValue|ֵ,form|״,slanted| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ V result|,undesired|ݬ,wrong| +ƫԶ ADJ aValue|ֵ,distance|,far|Զ +ƫ N lights| +ƫ V ParticularAbout| +ƫת V rotate|ת +Ƭ CLAS NounUnit|,&inanimate| +Ƭ ADJ aValue|ֵ,range|,fragment| +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ V cut| +Ƭ ADJ qValue|ֵ,amount|,few| +Ƭ N shape| +Ƭ N payment|,#perform| +Ƭ N part|,%entity|ʵ +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ N part|,%entity|ʵ +Ƭ N medicine|ҩ +Ƭײ V disappear|ʧ,military| +Ƭײ V disappear|ʧ,military| +Ƭ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +Ƭ N attribute|,range|,pieced|Ƭ,&event|¼ +Ƭʱ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ޴ V disappear|ʧ,military| +Ƭ N shape| +Ƭ N shows| +Ƭ N tool|þ,@record|¼ +Ƭ N tool|þ,@record|¼,#music| +ƭ V deceive|ƭ +ƭ N fact|,deceive|ƭ,undesired|ݬ +ƭȡ V cheat|ƭ +ƭ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƭ V deceive|ƭ,human| +ƭ˵Ķ N entity|ʵ,*deceive|ƭ +ƭ N method|,*deceive|ƭ,undesired|ݬ +ƭ N human|,*deceive|ƭ,undesired|ݬ,crime| +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V roam| +Ʈ N tool|þ,*decorate|װ,$PutOn| +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V decline|˥ +Ʈ V roam| +ƮƮȻ V satisfied| +ƮȻ V float|Ư +Ʈ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈҡ V float|Ư +Ʈҡ V wave|ڶ +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ư V AlterColor|ɫ +Ư V float|Ư +Ư V wash|ϴ +Ư V AlterColor|ɫ +Ư׷ N material|,*AlterColor|ɫ +Ư V roam| +Ư ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +Ư V float|Ư +Ư ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ư ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ư V float|Ư +ƯȾ V AlterColor|ɫ +Ưϴ V wash|ϴ +Ư V float|Ư +ư N tool|þ,cubic|,*TakeOutOfWater| +ưô N RainSnow|ѩ,strong|ǿ +Ʊ N bill|Ʊ,*choose|ѡ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ +Ʊ N human|,undesired|ݬ,$detain|ס +Ʊ N money| +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N attribute|,price|۸,&coupon|Ʊ֤,commercial| +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N quantity|,amount|,&coupon|Ʊ֤,&money| +Ʊ N tool|þ,cubic|,#select|ѡ +Ʊѡ V choose|ѡ,politics| +Ʊ N human|,*FondOf|ϲ,#perform|,#entertainment| +Ʊ֤ N coupon|Ʊ֤ +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N money| +Ʋ V TakeOutOfWater| +Ʋ V abandon| +Ʋ N part|,%character| +Ʋ V throw| +Ʋ V abandon| +Ʋ V abandon| +Ʋ V despise| +Ƴ V look| +Ƴ V perception|֪ +ƴ V endeavour| +ƴ V endeavour| +ƴ V fight|,military| +ƴ V merge|ϲ +ƴ V fasten|˩ +ƴ V endeavour| +ƴ N food|ʳƷ +ƴ V endeavour| +ƴͼϷ N fact|,recreation| +ƴд V write|д +ƴ N MakeSound| +ƴ N character| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +Ƶ V appear| +Ƶ N attribute|,range|,&frequency|Ƶ +Ƶ N facilities|ʩ,#disseminate| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +ƵƵ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N phenomena|,sound| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ N attribute|,richness|ƶ,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N community|,family|,poor| +ƶ V ize|̬,PatientAttribute=poor| +ƶ N human|,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N attribute|,richness|ƶ,poor|,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +ƶũ N human|,#occupation|ְλ,agricultural|ũ +ƶѪ N disease| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&inanimate| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ V savor| +Ʒ V savor|,patient=drinks|Ʒ +Ʒ V savor| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,style|,&text| +Ʒ ADJ aValue|ֵ,color|ɫ,red| +Ʒ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +Ʒ ADJ aValue|ֵ,color|ɫ,green| +Ʒ N attribute|,name|,&artifact|˹ +Ʒ N attribute|,name|,&artifact|˹ +Ʒ V estimate| +Ʒͷ V ExpressAgainst|Ǵ +Ʒͷ V estimate| +Ʒ CLAS unit|λ,&volume|ݻ +Ʒζ N attribute|,style|,&physical| +Ʒζ V savor| +Ʒζ V think|˼ +Ʒλ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒλ N attribute|,rank|ȼ,&physical| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒѧ ADJ aValue|ֵ,behavior|ֹ,good|,desired| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&entity|ʵ +Ʒ N attribute|,kind|,&animate| +Ʒ N attribute|,kind|,&physical| +Ʒ V savor|,patient=drinks|Ʒ +Ƹ V MarryTo| +Ƹ V employ| +Ƹ N tool|þ,$GiveAsGift|,#GetMarried| +Ƹ N time|ʱ,@undertake| +Ƹ V employ| +Ƹ V invite| +Ƹ V CauseToBe|ʹ֮ +Ƹ V employ| +Ƹ N system|ƶ,#employ| +Ƹ N document|,#employ| +ƸΪ V CauseToBe|ʹ֮ +Ƹ V employ| +ƹ ECHO sound| +ƹ N fact|,exercise|,sport| +ƹ N SportTool|˶ +ƹ N fact|,exercise|,sport| +ƹ N fact|,compete|,sport| +ƹ N fact|,compete|,sport| +ƹ̳ N community|,sport| +ƺ N land|½ +ƺ CLAS unit|λ,&area| +ƻ N character|,(China|й) +ƻ N fruit|ˮ +ƻ N food|ʳƷ,#fruit|ˮ +ƻ N drinks|Ʒ,$addict|Ⱥ,#fruit|ˮ +ƻ N aValue|ֵ,color|ɫ,green| +ƻ N tree|,#fruit|ˮ +ƻ԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ +Ƽ N FlowerGrass| +Ƽˮ V meet| +ƽ V AlterForm|״,level|ƽ +ƽ V BeSame|ͬ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ V attack|,military|,police| +ƽ N character|,surname|,human|,ProperName|ר +ƽ V equal| +ƽ V equal|,sport| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ峵 N LandVehicle| +ƽ N tool|þ,*print|ӡˢ +ƽ V prosper| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N land|½ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ N aValue|ֵ,similarity|ͬ,alike| +ƽ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽȻ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽ V PutInOrder|,patient=earth|,agricultural|ũ +ƽ N land|½,surfacial| +ƽط粨 N fact|,disorder| +ƽط粨 N phenomena|,undesired|ݬ,disorder|,#unfortunate| +ƽһ V happen|,manner=sudden| +ƽ V attack|,military|,police| +ƽ V calm| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ V amend| +ƽ ADJ aValue|ֵ,form|״,surfacial| +ƽ CLAS unit|λ,&area| +ƽ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&size|ߴ,&area| +ƽ N house| +ƽ V put|,result=level|ƽ +ƽ V separate| +ƽɫ V equal| +ƽ V BeRecovered|ԭ +ƽ V calm| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,even|,desired| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| +ƽ N attribute|,strength|,&physical| +ƽľ N SportTool|˶ +ƽ ADJ aValue|ֵ,SmoothFinish|,polished| +ƽ N part|,%AnimalHuman|,flesh| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ N attribute|,price|۸,$stabilize|ʹ,&artifact|˹,commercial| +ƽ V stabilize|ʹ,patient=price|۸,commercial| +ƽ N image|ͼ,angular| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ N attribute|,circumstances|,peaceful|,desired|,&entity|ʵ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ N attribute|,PhysicsPower|,standard|׼ +ƽ N quantity|,amount|,&entity|ʵ +ƽֵ N quantity|,amount|,&entity|ʵ +ƽ N thinking|˼ +ƽ V put| +ƽ N wind| +ƽ¯ N facilities|ʩ,space|ռ,@produce|,#metal| +ƽ CLAS unit|λ,&area| +ƽ N image|ͼ,surfacial| +ƽͼ N image|ͼ +ƽ N human|,ordinary| +ƽ N time|ʱ,year| +ƽ N time|ʱ,year|,#crop|ׯ +ƽƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽƽ ADJ aValue|ֵ,kind|,ordinary| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ƽֱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽֱ V explain|˵ +ƽƽ V equal| +ƽ N place|ط,capital|,ProperName|ר,(North Korea|) +ƽ N time|ʱ,ordinary| +ƽ N material|,?clothing|,?tool|þ +ƽ N sound|,#language| +ƽ ADJ aValue|ֵ,duration|,TimeLong| +ƽ N time|ʱ,#alive| +ƽʱ N time|ʱ,ordinary| +ƽʱ N time|ʱ,peaceful|,^fight| +ƽ V BeSame|ͬ,sport| +ƽ˳ V lucky| +ƽ ADV aValue|ֵ,frequency|Ƶ,often| +ƽ̨ N part|,%building|,space|ռ +ƽ̹ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V LieDown| +ƽ V add| +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ƽ V LieDown| +ƽϢ V BeRecovered|ԭ +ƽϢ V attack|,military|,police| +ƽϢ V calm| +ƽ N facilities|ʩ,mine|,space|ռ +ƽĶ V estimate| +ƽľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,rank|ȼ,alike| +ƽ ADJ aValue|ֵ,sequence|,alike| +ƽ V AlterLocation|ռλ +ƽ V stabilize|ʹ +ƽ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ƽ ADJ aValue|ֵ,content|,easy|,desired| +ƽ׽ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ƽӹ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N fish| +ƽԭ N land|½,surfacial| +ƽ N time|ʱ,month| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽչ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V AlterForm|״,level|ƽ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽװ ADJ aValue|ֵ,property|,$store| +ƽ N part|,%AnimalHuman|,foot|,#disease| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ V lean|п +ƾ N document|,*prove|֤ +ƾ V visit| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƾ V enjoy|,content=scene| +ƾ V look| +ƾ N document|,*prove|֤ +ƾ N document|,*prove|֤ +ƾ֤ N document|,*prove|֤ +ƾ֤ N information|Ϣ,*prove|֤ +ƿ CLAS NounUnit|,&inanimate| +ƿ N tool|þ,cubic|,@put| +ƿ N part|,%tool|þ,*shut|ر +ƿ N phenomena|,undesired|ݬ,hardship| +ƿ N part|,%tool|þ,mouth| +ƿ N part|,%tool|þ,*shut|ر +ƿװ ADJ aValue|ֵ,property|,$store|,#cubic| +ƿ N tool|þ,cubic|,@put| + V estimate| + V judge|ö + N text| + V estimate| + V estimate| + V select|ѡ + V estimate| + V estimate| + V judge|ö + V estimate|,content=unit|λ + V estimate|,content=unit|λ,education| + V estimate|,content=affairs| + V estimate|,content=result| + V estimate| + V estimate|,content=rank|ȼ + V estimate| +ĸ ADJ aValue|ֵ,GoodBad|û,good|,$estimate| + N human|,*estimate| + V estimate|,content=reward| + V estimate| + N shows| + V estimate| +ۼ N human|,*estimate| +Ա N human|,*estimate| +Ա N text|,*explain|˵ + V judge|ö + N human|,*estimate| + V estimate| + N shows| + N text|,*explain|˵ +˵ V estimate| +Ϊ V RegardAs| +ί N human|,*estimate| +ί N institution|,*estimate| +н V judge|ö,content=payment|,commercial| +ѡ V choose|ѡ + V estimate| + N text| + V estimate| + V abandon| + V cover|ڸ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N image|ͼ + V remove| + V restrain|ֹ + V cover|ڸ + V dismiss| + V remove| + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N part|,%building|,mouth| +Ļ N part|,%machine|,*look|,#computer| + V abandon| + N facilities|ʩ,*protect| + V protect| + ADJ aValue|ֵ,form|״,slanted| + N part|,%land|½,skin|Ƥ +µ N land|½ +µ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +¶ N attribute|,slope|¶,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V dump| +ø N human|,female|Ů,undesired|ݬ,fierce| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ˮ V discourage|ˮ +ī V draw|,literature| +ˮ N time|ʱ,festival|,@congratulate|ף + ADV aValue|ֵ,degree|̶,very| +ΪҪ ADJ aValue|ֵ,importance|,important| + N human|,aged|,female|Ů + N human|,employee|Ա,female|Ů + N human|,family|,female|Ů +ż N community|,#family| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ + ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +ϱ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + V float|Ư + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V defeat|սʤ + V defeat|սʤ,military| + V destroy|,military| + V remove| + V reveal|¶ + V split|ƿ +ư V reveal|¶,patient=fact|,police| +ư ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +Ʊ N ship| +Ʋ V lose|ʧȥ,possession=wealth|Ǯ +Ʋ V BeUnable|,content=return|,commercial| +Ʋ ADJ aValue|ֵ,circumstances|,InDebt|,commercial| +Ʋ V fail|ʧ +Ʋ N human|,*BeUnable|,#return|,#owe|Ƿ,undesired|ݬ,commercial| +Ƴ V remove| +Ʒ V spend| +Ƹ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ƹ V disobey|Υ,content=regulation| +ƻ V alter|ı,manner=all|ȫ +ƻ V damage| +ƻ V destroy| +ƻ V disobey|Υ +ƻ ADJ aValue|ֵ,ability|,able|,damage| +ƻ N human|,*damage| +ƻ V reveal|¶,police| +ƻ V attack|,military| +ƻ V destroy|,military| +ƾԲ V BeRecovered|ԭ +ƾ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ƾ V improve| +ƿ V split|ƿ +ƿ N location|λ,#disease|,#wounded| +ƿڴ V ExpressAgainst|Ǵ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N entity|ʵ,generic|ͳ,waste| + N entity|ʵ,waste| +ò ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V disobey|Υ,content=regulation| +˸ V OutOfOrder| +˸ V OutOfOrder| +˸ V wounded| + V FormChange|α,StateFin=OutOfOrder| + V decline|˥ + V decline|˥,commercial| + V open|,patient=part|,means=split|ƿ +ն V guess|² + V disappear|ʧ +˷ N disease| + V FormChange|α,StateFin=OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ΪЦ V laugh|Ц + ADJ aValue|ֵ,kind|,special| + V appear|,agricultural|ũ + V start|ʼ,agricultural|ũ + V start|ʼ,industrial| + V start|ʼ,content=build| + V appear| +˹ V start|ʼ,content=build| + V win|ʤ,sport| + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| +Ь N clothing|,#foot|,*OutOfOrder| +Ь N human|,lascivious|,female|Ů,undesired|ݬ + V translate| +Լ V disobey|Υ,content=MakeAppointment|Լ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N attribute|,strength|,&AnimalHuman| + N mental| + N attribute|,courage|,&AnimalHuman| + V BeNear| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V approach|ӽ + V force|ǿ +Ȳ V undergo|,content=force|ǿ +Ȳ V worried|ż +Ⱥ V damage|,politics| +Ƚ V approach|ӽ + ADJ aValue|ֵ,circumstances|,urgent| +Ҫ V need| +ʹ V force|ǿ + PREP {condition} +ü ADJ aValue|ֵ,circumstances|,urgent| + N stone|ʯ,waste| + V analyze| + V split|ƿ +ʰ V explain|˵ +ʸ V split|ƿ,patient=part|,#AnimalHuman| +ʹ V labour|ٲ,means=cure|ҽ +ʽ V analyze| +ʿ V split|ƿ + N part|,%physical|,surfacial| + V analyze| + V FallDown| + V GoForward|ǰ + V apply|ͿĨ + V attack| + V beat| +˱ V touch|,PartOfTouch=part|,#AnimalHuman| +˴ V beat| +˷ V MakeUp|ױ +˷ N tool|þ,*MakeUp|ױ +˾ V remove|,patient=fire| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ V fail|ʧ + N tool|þ,cubic|,@put|,#wealth|Ǯ + V touch|,PartOfTouch=part|,#AnimalHuman| + V remove| +˷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V jump| + V shiver| + V shiver|,medical|ҽ +ͨ ECHO sound| + N InstitutePlace|,*sell|,@buy|,commercial| + V build| + N furniture|Ҿ,space|ռ,@LieDown|,@sleep|˯ + V unfold|̯ +̳ V explain|˵ +̵ N method|,#readings| +̵ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̸ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̹ܹ N human|,#occupation|ְλ,industrial| +̹ V build|,PatientProduct=facilities|ʩ,route|· +̿ V undergo|,Vgoingon|չ +· V build|,PatientProduct=facilities|ʩ,route|· +· N human|,#occupation|ְλ,industrial| + V exist| + N part|,%InstitutePlace|,#commercial|,mouth| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V lavish|˷ +ƽ V unfold|̯ +ƽ· V build|,PatientProduct=route|· + V build| +̯ V unfold|̯ +ǵ ADJ qValue|ֵ,amount|,many| +λ N location|λ,space|ռ,#sleep|˯ + V explain|˵ +չ V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա +ʹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Portugal|) + N fruit|ˮ +Ѹ N food|ʳƷ +Ѽ N facilities|ʩ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ѿ N drinks|Ʒ,$addict|Ⱥ + N bacteria|΢ +ղ N human|,*gather|ɼ,agricultural|ũ + N material|,?edible|ʳ + N tree|,#fruit|ˮ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Portugal|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + N humanized|,religion|ڽ + N human|,kindhearted|,desired| + N attribute|,behavior|ֹ,#religion|ڽ + N tree| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר +Ѱ N tool|þ,cubic|,@put| +Ѳ N FlowerGrass| +ѹӢ N FlowerGrass| + N tree| + N tool|þ,#wind|,*cool| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʵ޻ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N facilities|ʩ,#plant|ֲ + ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ N attribute|,range|,extensive|,&entity|ʵ +ղ V investigate| +ն N material|,?drinks|Ʒ +շ V disseminate|,content=knowledge|֪ʶ,#law|ɷ +ջ N regulation|,commercial| +ռ V CauseToDo|ʹ,ResultEvent=exist|,manner=extensive| +ռ V disseminate| +ռ ADJ disseminate| +ռ V exist|,manner=extensive| +ռ N quantity|,rate|,&disseminate| +ս V WeatherChange| + N money|,(Botswana|) + N place|ط,capital|,ProperName|ר,(Cape Verde|ý) +³ʿ N place|ط,ProperName|ר +³ʿ N human|,(Prussia|³ʿ) +ͨͨ ADJ aValue|ֵ,kind|,ordinary| +ʲͼ N language|,#country|,ProperName|ר +ͬ V congratulate|ף +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ N symbol|,#quantity|,#DoSum| +ͨ N language| +ͨ N human|,ordinary| +ѡ V select|ѡ + V illuminate| + N character|,surname|,human|,ProperName|ר + N part|,%land|½,#waters|ˮ,edge| + N account|,@record|¼ + V compile|༭ + N experience|,believe| + N publications|鿯,@record|¼,#music| + V compile|༭,ContentProduct=music| +д V compile|༭ + N publications|鿯,@record|¼,#music| + V exposure|¶ +ع V exposure|¶ +¶ V exposure|¶ +ɹ N illuminate| + N water|ˮ,fast| +ٲ N water|ˮ,fast| + CLAS NounUnit|,&fact| + CLAS NounUnit|,&publications|鿯 + V expect| + N time|ʱ +ڴ V expect| +ڻ N artifact|˹,commercial|,generic|ͳ +ڻ V affairs|,commercial| +ڼ N time|ʱ +ڿ N publications|鿯 + V due| +ĩ N time|ʱ,ending|ĩ,education| + V expect| +Ʊ N bill|Ʊ + N aspiration|Ը,expect| + V expect| +ֵ N aspiration|Ը,expect| + N attribute|,boundary|,&time|ʱ + N time|ʱ,middle|,education| + V damage| + V deceive|ƭ + V use| +۸ V damage| + V damage| + V HideTruth| +ƭ V deceive|ƭ +ƭ ADJ aValue|ֵ,property|,*deceive|ƭ +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ӳ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V HideTruth| + V damage| +ѹ V damage| +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ V deceive|ƭ + V reside|ס + V stay|ͣ + V reside|ס + V stay|ͣ +Ϣ V reside|ס + N character|,surname|,human|,ProperName|ר + N emotion|,sorrowful| + N human|,family| + N human|,family|,female|Ů +޶ N human|,family|,mass| +޶С N human|,family|,mass| +ɢ V unfortunate|,scope=lose|ʧȥ,family| + N human|,family|,female|Ů + N human|,family|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ƴ˴ V merge|ϲ +± N fact|,fight|,#(China|й),#(Japan|ձ) +ɰ N tool|þ,*recreation| + V ExpressAnger|ʾŭ +ϰ ADJ aValue|ֵ,form|״,rugged| +ϰ V uneasy| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| +Ϧ N time|ʱ,day|,night| +һ N time|ʱ,day| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + ADJ aValue|ֵ,property|,speak|˵,bustling| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + N phenomena|,undesired|ݬ,#WeatherBad| + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V sorrowful| +Ȼ V sorrowful| + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + N tool|þ,*transmit|,#electricity| +᲼ N material|,?tool|þ + N character|,surname|,human|,ProperName|ר + N tool|þ,*decorate|װ,generic|ͳ +Ṥ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ṥ N image|ͼ,$apply|ͿĨ +Ṥ N image|ͼ,$draw| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| +һ ADJ aValue|ֵ,brightness|,dark| +һ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +έ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ƥ N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƥ N part|,%material|,#apply|ͿĨ,skin|Ƥ + N tool|þ,*decorate|װ,generic|ͳ + NUM qValue|ֵ,amount|,cardinal|,mass| + V produce| + ADJ aValue|ֵ,kind|,special| + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + PRON {it|} + ADJ aValue|ֵ,importance|,secondary| + ADV aValue|ֵ,sequence|,ordinal| + ADV location|λ,hind| + N time|ʱ,future| + N location|λ + N time|ʱ +ò ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ʵ ADV aValue|ֵ,trueness|α,true| + ADJ aValue|ֵ,kind|,other| + PRON {it|} + ADJ aValue|ֵ,kind|,other| + N location|λ + N tool|þ,*recreation| + V equal| + N tool|þ,*recreation| + N human|,*FondOf|ϲ,#recreation| + N part|,%tool|þ,#recreation| +ʥ N human|,desired|,wise|,sport| + N human|,*engage|,#compete|,sport| +̳ N community|,sport| + N knowledge|֪ʶ,#sport| + N part|,%tool|þ,#recreation| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,kind|,single| + ADJ aValue|ֵ,kind|,special| + N human|,desired|,wise| + N language|,#country|,ProperName|ר +湦 N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,kind|,queer| + V ignorant|֪ + N attribute|,scene|,good|,&inanimate| +ɾ ADJ aValue|ֵ,value|ֵ,precious|,desired| +漣 N entity|ʵ,queer| +漣 ADJ aValue|ֵ,kind|,queer| +澰 N attribute|,scene|,good|,&inanimate| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ȱ V lack|ȱ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N text|,desired| + N text|,undesired|ݬ + N information|Ϣ,queer| +Ϯ V attack|,manner=sudden|,military| +Ч N attribute|,effect|Ч,good|,&entity|ʵ,&act|ж +ι״ ADJ aValue|ֵ,form|״,queer| +ѫ N result|,desired| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N phenomena|,desired|,#lucky| + N phenomena|,queer| + N method| +װ N clothing|,queer| + N FlowerGrass| + ADJ aValue|ֵ,similarity|ͬ,different| + N facilities|ʩ,route|·,branch|֧ +· N facilities|ʩ,route|· + V despise| +; N facilities|ʩ,route|·,wrong| + N information|Ϣ + N land|½ + V irrigate|,agricultural|ũ + ADJ aValue|ֵ,form|״,rugged|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| +᫲ƽ ADJ aValue|ֵ,form|״,rugged| + N part|,%AnimalHuman|,body| + N part|,%fish|,body| + N part|,%AnimalHuman|,body| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADJ aValue|ֵ,form|״,neat|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete| + N character|,surname|,human|,ProperName|ר +뱸 ADJ aValue|ֵ,wholeness|ȱ,complete| +볪 V sing|,entertainment| + ADJ aValue|ֵ,content|,neat|,desired| + V MakeSound| + V WellKnown| + N place|ط,city|,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,property|,MakeSound|,together|ͬ +ˢˢ ADJ aValue|ֵ,content|,neat|,desired| +ͷ V GoForward|ǰ + V cooperate| +Э V cooperate| + ADJ aValue|ֵ,depth| + ADJ aValue|ֵ,form|״,neat|,desired| +ץ V manage|,manner=cooperate| + V recreation|,entertainment| + N mark|־ + N place|ط,#human| + N tool|þ,@hang|,#mark|־ + N mark|־ +콢 N weapon|,ship|,military| +쿪ʤ V succeed|ɹ +쿪ʤ V win|ʤ + N clothing|,#body|,#female|Ů + N human|,*lift|,#mark|־ + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,opened| + N mark|־ + V recite|ж + V request|Ҫ + V recite|ж + V request|Ҫ + N character|,surname|,human|,ProperName|ר + N material|,?drinks|Ʒ + V sit| + N army| + N human|,military| + N part|,%army| +ﳵ V TakeVehicle|,patient=LandVehicle| +ﻢ V embarrassed|Ϊ +ᆵ N human|,#occupation|ְλ,police| + V TakeVehicle|,patient=livestock| +ʿ N human|,military| + N human|,#occupation|ְλ,*TakeVehicle|,#livestock| + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&event|¼ + V PickOut|γ + V appear| + V arise| + V collect| + V compile|༭ + V do| + V establish| + V happen| + V rise| + V start|ʼ + STRU {Vable|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + V write|д + V begin|ʼ + V compile|༭ + N human|,*compile|༭ + V start|ʼ,content=leave|뿪 + ADV aValue|ֵ,time|ʱ,early| + V arise| + V do| + N location|λ,space|ռ,@begin|ʼ + V lift| + V start|ʼ + V start|ʼ,content=fly| + V WeatherBad|,#wind| + V SelfMoveInDirection| + ADJ aValue|ֵ,form|״,rugged| + V compile|༭,ContentProduct=text| + V start|ʼ,content=VehicleGo|ʻ + V IllBehave| + V cook| + V unfortunate|,cause=fire|,police| + V obtain|õ,means=LookFor|Ѱ,#crime| + V collect|,possession=artifact|˹,commercial| + V prosper| + N attribute|,price|۸,&artifact|˹,commercial| + N reason| + V SelfMoveInDirection| + V endeavour| + N fact|,#alive| + N room| + V arise| + STRU {Vdirection|,upper|} + STRU {Vresult|} + STRU {Vstart|} + STRU {Vsuppose|ٶ} + V arise| + V SelfMoveInDirection| + ADJ aValue|ֵ,rank|ȼ,elementary| +ê V start|ʼ,content=VehicleGo|ʻ + V naming| + V start|ʼ,content=run|,sport| + N location|λ,@start|ʼ,#run|,sport| + V swollen| + N process| +Ȧ V clean|ʹ,agricultural|ũ +ɫ N result|,#improve|,desired| + V arise| + V start|ʼ,content=leave|뿪 +ʼ V begin|ʼ + V uprise|,politics| + V swear| + V start|ʼ + ADV aValue|ֵ,time|ʱ,early| +ˮ V swollen| + V BeRecovered|ԭ,medical|ҽ + V accuse|ظ,police| + N document|,*accuse|ظ,police| +״ N document|,*accuse|ظ,police| + V start|ʼ,content=jump|,sport| +ͷ ADV aValue|ֵ,time|ʱ,early| +ͷ V start|ʼ + ADV aValue|ֵ,time|ʱ,early| + V start|ʼ,content=leave|뿪 +ҹ V arise|,purpose=excrete|й + V doubt| + N fact|,uprise|,politics| + V uprise|,politics| + N human|,*uprise|,politics| + N cause|ԭ + V BeRecovered|ԭ + V employ| +Դ V ResultFrom|Ե +Դ N cause|ԭ + V start|ʼ,content=transport| +̰ ADJ aValue|ֵ,duration|,TimeLong| + V lift| +ػ N machine|,*lift| + N material|,?food|ʳƷ + N tool|þ,*open|,#tool|þ + V function| + ADJ aValue|ֵ,form|״,wrinkled| + V start|ʼ,content=VehicleGo|ʻ + ADJ aValue|ֵ,form|״,wrinkled| + ADV {comment|} + CONJ {emphasis|ǿ} + ADV {comment|} +д ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ֹ CONJ {emphasis|ǿ} + V beg| + V request|Ҫ + V surrender|,military| + V request|Ҫ,ResultEvent=pity| + V beg| + V request|Ҫ + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ +Ԯ V request|Ҫ,ResultEvent=help| +ؤ N human|,poor|,undesired|ݬ + V expect| + V upmove| + V bird|,^fly| + V manage|,patient=affairs|,#industrial| + N plans|滮 + V expect| +ҵ N affairs| +ͼ N aspiration|Ը,expect| +ͼ V try| + V expect| +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ V manage|,patient=affairs|,AccordingTo=commercial| +ҵ N human|,#occupation|ְλ,commercial| +ҵ N community|,commercial| + V explain|˵ + V open| + V start|ʼ + V teach| + V start|ʼ,content=leave|뿪 + V teach| + V TurnOn| + V start|ʼ +ɱ N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + V teach| +ʽ ADJ aValue|ֵ,content| + N human|,*teach| + V open| + V start|ʼ,content=VehicleGo|ʻ + V teach| + V CauseToDo|ʹ,ResultEvent=doubt| +ʾ V teach| + N text|,*announce| + V incur| + V start|ʼ,content=quarrel| + V use| + V start|ʼ,content=transport| + V start|ʼ,content=VehicleGo|ʻ + V carve| + N document|,*MakeAppointment|Լ + V fit|ʺ + V fit|ʺ + N time|ʱ,important| + N bill|Ʊ,#wealth|Ǯ + N document|,*MakeAppointment|Լ + N human|,friend| +Լ N agreement|Լ + V build| + N part|,%building|,nerve| + N attribute|,ability|,&human| + N implement|,generic|ͳ + N part|,%AnimalHuman|,viscera| + N implement| + N part|,%AnimalHuman| + N part|,%implement|,generic|ͳ + N implement|,generic|ͳ + N music| + N tool|þ,generic|ͳ + N implement|,generic|ͳ +е N implement|,generic|ͳ +е N weapon|,generic|ͳ +е N fact|,sport| +е N fact|,sport| +Լ N disease| + V PayAttention|ע + V angry| + N attribute|,bearing|̬,&human| + N attribute|,odor|ζ,&physical| + N attribute|,strength|,&AnimalHuman| + N gas| + N gas|,#human| + V irritate|ŭ + N tool|þ,*inhale|,#gas| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V angry| + N disease|,pant| + V pant| + V pant| + N part|,%building| + N machine|,*beat| + N tool|þ,*inlay|Ƕ +洬 N ship| + ADJ aValue|ֵ,performance| +Һѹ ADJ aValue|ֵ,performance| + N attribute|,demeanor|,&human| + N attribute|,tolerance|,&human| + V disheartened| + V pant| + N part|,%implement| + N attribute|,occasion|,&event|¼ + V angry| + N mental| + N part|,%implement| + V break|۶,industrial| + N part|,%plant|ֲ,base| + N attribute|,strength|,&AnimalHuman| + N part|,%AnimalHuman|,viscera| + N disease| +᳤ ADJ aValue|ֵ,courage|,brave|,desired| + V fasten|˩,industrial| + N attribute|,circumstances|,&entity|ʵ + N weather| + V ize|̬,PatientAttribute=gas| + V pant| +ܻ V worried|ż + N attribute|,behavior|ֹ,&human| + V die| + N part|,%AnimalHuman| + N part|,%building| + N part|,%inanimate| + N part|,%plant|ֲ + N attribute|,tolerance|,&human| + N gas| +ú N material|,$burn| + N part|,%AnimalHuman| + N part|,%implement| + ADJ aValue|ֵ,circumstances|,$shut|ر + N part|,%bird|,#gas| + N tool|þ,cubic|,@put|,#gas| + V angry| + V disheartened| + ADJ disheartened| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,demeanor|,&human| + N shape| + ADJ aValue|ֵ,courage|,brave|,desired| +ǹ N weapon|,*firing| + N tool|þ +ɫ V BeWell|׳ + N attribute|,strength|,&physical| +ư ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,circumstances|,&human|,&organization|֯ +Ѿ V decline|˥ +Ѿ V end|ս +̬ N attribute|,PhysicState|״̬,gas|,&physical| + N gas| + N facilities|ʩ,mine| +Ͳ N tool|þ,*fill|,#gas| +ͷ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + N gas| +ɽ ADJ aValue|ֵ,courage|,brave|,desired| +ζ N attribute|,odor|ζ,&physical| +ζ N emotion|,FondOf|ϲ +ζͶ V fit|ʺ + N attribute|,temperature|¶,&weather| +Ϣ N attribute|,odor|ζ,&physical| +Ϣ N gas| +Ϣ V decline|˥ + N attribute|,occasion|,&event|¼ + N knowledge|֪ʶ,#weather| + N weather| +̨ N InstitutePlace|,*investigate|,#weather| +ǧ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N aircraft|,#WeatherChange| +ѧ N knowledge|֪ʶ,#weather| +վ N InstitutePlace|,*investigate|,#weather| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) + N disease| + V ill|̬ + N gas| +Ѫ N attribute|,strength|,&AnimalHuman| +ѹ N attribute|,strength|,&gas| +ѹ N attribute|,strength|,&gas| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pant| + N attribute|,behavior|ֹ,&human| + N attribute|,quality|,&human| +׳ɽ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V swollen| + PREP {TimeFin} + N time|ʱ,now| +Ϊֹ N time|ʱ,now| + V abandon| +Ͷ V amend|,content=wrong| +ʴ V include|,ResultWhole=army|,military| + N human|,$abandon|,young| +ҷ V defeated|,military| +ͼ V amend|,content=wrong| +Ȩ V abandon|,possession=choose|ѡ +Ȩ V abandon|,possession=compete| + V die| +Ӥ V abandon|,possession=human|,young| +Ӥ V human|,young|,$abandon| + V abandon| + N gas| + N LandVehicle| +ҵ N affairs|,#LandVehicle| +ù N InstitutePlace|,@reside|ס,#tour|,#LandVehicle|,commercial| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| + N ship| + N machine|,*beat| + N tool|þ,*illuminate| + N tool|þ,*MakeSound| + N part|,%implement| + V ize|̬,industrial| + N part|,%machine| + N drinks|Ʒ,$addict|Ⱥ +ַ N machine|,*produce|,#electricity| +ֻ N machine| +ˮ N drinks|Ʒ +ͧ N ship| + N material|,liquid|Һ,$burn|,*lighting|ȼ + V weep| + V weep| + V finish| + V break|۶ + V calculate| +ͷȥβ V subtract| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡô ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ CONJ {time|ʱ} +ǡ ADV {emphasis|ǿ} +ǡǡ ADV {emphasis|ǿ} +ǡǡ෴ ADV {supplement|ݽ} +ǡ ADV aValue|ֵ,time|ʱ,proper| +ǡ PREP {contrast} +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ PREP {contrast} +Ǣ V discuss| +Ǣ V fit|ʺ +Ǣ V discuss| +Ǣ̸ V discuss| +Ǣ̸ N fact|,discuss| +ǣ V guide| +ǣ V pull| +ǣ V relate|й +ǣҶ V ThinkOf|˼ +ǣ V relate|й +ǣ V obstruct|ֹ +ǣ V restrain|ֹ +ǣ V restrain|ֹ,military| +ǣ V influence|Ӱ +ǣ V ThinkOf|˼ +ǣ V relate|й +ǣ V connect| +ǣ V relate|й +ǣţ N celestial| +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣ V relate|й +ǣ V tie| +ǣͷ V guide| +ǣ V ally| +ǣ V control| +ǣߴ V reconcile| +ǣ V pull| +ǣ N LandVehicle|,*pull| +ǣ N attribute|,strength|,#pull|,&physical| +ǣ V restrain|ֹ,military| +ǣƲ N army| +ǥ N tool|þ,*stab| +ǥ N tool|þ,*stab|,#stone|ʯ +Ǧ N metal| +Ǧ N tool|þ,*print|ӡˢ +Ǧ N PenInk|ī,*write|д +Ǧ N material|,?tool|þ +Ǧ N tool|þ,*build| +Ǧ N SportTool|˶ +Ǧӡ V print|ӡˢ +Ǧֱ ADJ aValue|ֵ,posture|,upright| +Ǧ ADJ aValue|ֵ,source|Դ,metal| +Ǧж N disease| +Ǧ N tool|þ,*print|ӡˢ +ǧ NUM qValue|ֵ,amount|,cardinal|,mass| +ǧ NUM qValue|ֵ,amount|,many| +ǧ V aValue|ֵ,kind|,many| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ V differ|ͬ,scope=many| +ǧٿ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ǧ V MakeBetter|Ż +ǧټ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ǧ֮һ NUM qValue|ֵ,amount| +ǧ N human|,mass| +ǧ CLAS unit|λ,&electricity| +ǧ CLAS unit|λ,&electricity| +ǧ ADJ aValue|ֵ,duration|,TimeLong| +ǧ V call|ٻ +ǧ N community|,#family|,many| +ǧ ADJ aValue|ֵ,weight|,heavy| +ǧ N tool|þ,*lift| +ǧﶥ N tool|þ,*lift| +ǧ N human|,family|,female|Ů +ǧ N wealth|Ǯ,many| +ǧ CLAS unit|λ +ǧһ N time|ʱ,dangerous|Σ +ǧ N army|,strong|ǿ +ǧ CLAS unit|λ,&weight| +ǧ N FlowerGrass| +ǧ N livestock|,desired|,fast| +ǧ ADJ aValue|ֵ,distance|,far|Զ +ǧ N human|,able|,desired| +ǧ N tool|þ,*look|,#far|Զ +ǧ N phenomena|,*damage|,#software| +ǧƪһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ǧٹ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ǧǧ NUM qValue|ֵ,amount|,many| +ǧ N time|ʱ,TimeLong| +ǧҵ N affairs|,great|ΰ,TimeLong| +ǧɽˮ ADJ aValue|ֵ,distance|,far|Զ +ǧ CLAS unit|λ,&volume|ݻ +ǧ˿ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ǧͷ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ǧͷ ADJ qValue|ֵ,amount|,many| +ǧ CLAS unit|λ,&electricity| +ǧʱ CLAS unit|λ,&electricity| +ǧ NUM qValue|ֵ,amount|,many| +ǧ ADV {modality|} +ǧǧ ADV {modality|} +ǧ N phenomena|,undesired|ݬ,hardship| +ǧ N text|,many| +ǧѷ ADJ qValue|ֵ,amount|,few| +ǧһʱ ADJ qValue|ֵ,amount|,few| +ǧȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ǧ CLAS unit|λ,&frequency|Ƶ +ǧ N time|ʱ,year| +Ǩ V SelfMoveInManner|ʽ +Ǩ V change| +Ǩ V TakeAway|ᶯ,patient=capital| +Ǩ V endure| +Ǩ V obey|ѭ +Ǩ V surrender| +Ǩ V TakeAway|ᶯ,patient=family| +Ǩŭ V blame|Թ +Ǩ V TakeAway|ᶯ +Ǩ V delay| +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ,patient=family| +ǩ V sign|д +ǩ N tool|þ +ǩ N tool|þ,#mark|־ +ǩ V write|д +ǩ V record|¼ +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V send| +ǩͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩ V sign|д,ContentProduct=name| +ǩ N human|,*sign|д +ǩ V receive|,means=sign|д +ǩ V sign|д +ǩЭ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩԼ V sign|д,content=agreement|Լ,commercial| +ǩ֤ N document| +ǩע V write|д +ǩ V sign|д,ContentProduct=name| +Ǫ NUM qValue|ֵ,amount|,cardinal| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫǫ N human|,desired|,modest|ǫ +ǫ V refuse|,manner=modest|ǫ +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ǭ ADJ aValue|ֵ,sex|Ա,male| +Ǭ N natural|Ȼ +Ǭ¡ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ǭ ADJ aValue|ֵ,color|ɫ,black| +ǭ N human|,mass| +Ǯ N character|,surname|,human|,ProperName|ר +Ǯ N fund|ʽ +Ǯ N money| +Ǯ CLAS unit|λ,&weight|,(China|й) +Ǯ N wealth|Ǯ +Ǯ N tool|þ,cubic|,@put| +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N wealth|Ǯ,$obtain|õ,commercial| +Ǯ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ǯׯ N InstitutePlace|,past|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ǯ V pick|ʰ +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǯ N affairs|,industrial| +ǯ N human|,#occupation|ְλ,industrial| +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǰ ADJ aValue|ֵ,source|Դ,original|ԭ +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ N location|λ,InFront|ǰ +ǰ NUM qValue|ֵ,sequence|,ordinal| +ǰ N time|ʱ,past| +ǰ뱲 N time|ʱ,process|,@alive|,half| +ǰ볡 N part|,%fact|,#compete|,#exercise| +ǰ N time|ʱ,morning| +ǰ N time|ʱ,process|,@alive|,half| +ǰ N time|ʱ,morning| +ǰҹ N time|ʱ,day|,night| +ǰ N human|,clan| +ǰ N part|,%human|,arm| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N time|ʱ,past| +ǰ֮ N information|Ϣ,*persuade|Ȱ˵ +ǰ N phenomena|,past| +ǰ N attribute|,outlook|ǰ,&thing| +ǰƽ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ V guide| +ǰ N place|ط,military|,InFront|ǰ +ǰ N part|,%AnimalHuman|,head|ͷ +ǰ N location|λ,InFront|ǰ +ǰ N human|,family|,female|Ů,past| +ǰ N human|,employee|Ա,*exercise| +ǰ N human|,guide| +ǰ N human|,family|,male| +ǰ V KeepOn|ʹ +ǰ V fail|ʧ +ǰ ADV aValue|ֵ,duration|,TimeLong| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ ADV qValue|ֵ,amount|,almost| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ N part|,%clothing|,body| +ǰ V GoForward|ǰ +ǰ N attribute|,outlook|ǰ,&thing| +ǰ N attribute|,scene|,&physical| +ǰ N fact|,crime|,undesired|ݬ,past| +ǰ V come| +ǰ N example|ʵ +ǰ N location|λ,InFront|ǰ +ǰ N part|,%AnimalHuman|,nerve| +ǰٷʴ N disease| +ǰ N disease| +ǰ N part|,%LandVehicle|,leg| +ǰé N community|,*succeed|ɹ,#HaveContest| +ǰ N part|,%building|,mouth| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N location|λ,InFront|ǰ,space|ռ +ǰ N time|ʱ,past|,year| +ǰ N location|λ,InFront|ǰ +ǰͺ V KeepOn|ʹ +ǰ N time|ʱ,early| +ǰ N human|,family|,female|Ů +ǰǰ N process| +ǰ V PartSelfMove| +ǰ N human|,past| +ǰȥ V LeaveFor|ǰ +ǰ N human|,past| +ǰ N human|,#occupation|ְλ +ǰ N human|,past| +ǰ N time|ʱ,past|,day| +ǰ N human|,military|,*look|,*defend| +ǰ N physical|,past| +ǰ² EXPR remember|ǵ,content=past| +ǰ ADJ aValue|ֵ,kind|,special| +ǰδ ADJ aValue|ֵ,kind|,special| +ǰ̨ N facilities|ʩ,space|ռ,#perform| +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N time|ʱ,past|,day| +ǰͥ N part|,%AnimalHuman| +ǰͷ ADJ aValue|ֵ,time|ʱ,past| +ǰͷ ADJ location|λ,InFront|ǰ +ǰ; N attribute|,outlook|ǰ,&thing| +ǰ; V prosper| +ǰ N part|,%animal|,leg| +ǰ V LeaveFor|ǰ +ǰ N human|,*exercise|,(football|) +ǰ޹ ADJ aValue|ֵ,kind|,special| +ǰϦ N time|ʱ,past| +ǰ N place|ط,military|,InFront|ǰ +ǰ߲ N army| +ǰ N part|,%text| +ǰԲ V FitNot| +ǰ N place|ط,military|,InFront|ǰ +ǰ V CausePartMove|,PatientPartof=body| +ǰҹ N time|ʱ,past| +ǰʶ N thought|ͷ +ǰ N process| +ǰԵ N attribute|,relatedness|,&human| +ǰհ V predict|Ԥ +ǰհ N attribute|,ability|,predict|Ԥ,&human|,&organization|֯ +ǰ N information|Ϣ +ǰ N entity|ʵ,InFront|ǰ +ǰ PRON {ThirdPerson|} +ǰô N part|,language| +ǰ׺ N part|,language| +ǰ N process|,early| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ ADJ aValue|ֵ,behavior|ֹ,secret| +DZ V walk|,manner=secret| +DZ V hide| +DZ V flee|,manner=secret| +DZ V sink|³ +DZ V hide| +DZ N time|ʱ,@GiveBirth|,#disease| +DZ V hide| +DZ V reside|ס,manner=hide| +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ N water|ˮ +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ V GoInto| +DZ V GoInto|,manner=secret| +DZ V sink|³ +DZˮ V sink|³ +DZˮͧ N weapon|,ship|,military| +DZˮ N clothing|,*sink|³ +DZˮԱ N human|,#occupation|ְλ,*sink|³ +DZ̨ N information|Ϣ +DZ̨ N text|,#shows| +DZ V flee|,manner=secret| +DZͧ N weapon|,ship|,military| +DZ N tool|þ,*look| +DZ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +DZ V SelfMoveInManner|ʽ,location=waters|ˮ +DZ V walk|,manner=secret| +DZѪ N part|,%AnimalHuman|,liquid|Һ +DZĬ V influence|Ӱ,manner=tactful| +DZʶ N mental| +DZӾ V swim| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ N attribute|,ability|,possible|,&entity|ʵ +Dz V discharge| +Dz V dispatch|Dz +Dz V expel| +Dzɢ V discharge| +Dz V expel| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dz ADJ aValue|ֵ,content|,easy|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,depth|,shallow|dz +dz ADJ aValue|ֵ,duration|,TimeShort| +dz ADJ aValue|ֵ,hue|Ũ,light| +dz ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dzֹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +dz N waters|ˮ +dzɫ ADJ aValue|ֵ,color|ɫ,brown|,light| +dzɫ ADJ aValue|ֵ,color|ɫ,red|,light| +dz N thought|ͷ +dz ADJ aValue|ֵ,content|,simple|,desired| +dzɫ ADJ aValue|ֵ,color|ɫ,blue|,light| +dzª ADJ aValue|ֵ,content|,empty|,undesired|ݬ +dzɫ N attribute|,color|ɫ,light|,&physical| +dz̲ N land|½ +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +Ǵ V ExpressAgainst|Ǵ +ǵ N part|,%inanimate|,mouth| +ǵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ƕ V inlay|Ƕ +Ƕ V inlay|Ƕ +ǶԹ N disease| +Ƿ V CausePartMove| +Ƿ V CausePartMove|,PatientPartof=head|ͷ +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +Ƿ V BecomeLess|,scope=produce| +Ƿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ƿ N wealth|Ǯ,$owe|Ƿ,$return| +Ƿȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƿȱ V lack|ȱ +Ƿ V gather|ɼ,possession=few| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ƿծ V owe|Ƿ +Ƿ V owe|Ƿ +Ƿ V owe|Ƿ,possession=wealth|Ǯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N emotion|,regret|Ǹ +Ǹ N emotion|,regret|Ǹ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ N emotion|,regret|Ǹ +ǹ N weapon|,*firing|,generic|ͳ +ǹ N weapon|,*stab| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N weapon|,*stab| +ǹ N weapon|,$firing| +ǹ N weapon|,generic|ͳ +ǹ V firing| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N part|,%weapon| +ǹֵ N fact|,firing| +ǹ N weapon|,generic|ͳ +ǹɱ V kill|ɱ,manner=firing| +ǹ N sound|,#firing| +ǹ N human|,*firing| +ǹ N part|,%weapon| +ǹе N weapon| +ǹ N part|,%facilities|ʩ,#military|,@firing| +ǹ N part|,%physical| +ǹս N fact|,firing| +ǹ֧ N weapon|,mass| +ǹӶ N weapon|,$firing| +Ǻ V ill|̬ +ǻ N attribute|,SoundQuality|,&sound| +ǻ N attribute|,SoundVolume|,&sound| +ǻ N part|,%physical|,body| +ǻ N sound| +ǻ N AnimalHuman|,generic|ͳ +ǻ N attribute|,SoundQuality|,&speak|˵ +Ǽ N character|,(China|й) +Ǽ N community|,ProperName|ר,(China|й) +ǽ N part|,%building|,skin|Ƥ +ǽ N publications|鿯,news| +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,base| +ǽ N location|λ,%building|,skin|Ƥ +ǽֽ N paper|ֽ,*decorate|װ,#building| +Ǿޱ N FlowerGrass| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ N character|,surname|,human|,ProperName|ר +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +ǿ N human|,undesired|ݬ +ǿ V force|ǿ +ǿ V debate|,manner=fierce| +ǿʶ V debate|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿ N human|,crime|,undesired|ݬ,*rob| +ǿ N human|,enemy|,strong|ǿ +ǿ N attribute|,quality|,strong|ǿ,desired|,&thing| +ǿ V express|ʾ,manner=emphasis|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ N community|,sport|,strong|ǿ +ǿ V attack|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,durable|,desired| +ǿ N place|ط,country|,strong|ǿ +ǿ V surpass|ǿ +ǿ ADJ aValue|ֵ,courage|,brave|,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ V strengthen|ӹ +ǿ N weapon|,aircraft|,military| +ǿ V force|ǿ +ǿ V force|ǿ +ǿ V force|ǿ,patient=human| +ǿ V damage|,purpose=mating|,crime| +ǿ鷸 N human|,*damage|,crime|,lascivious| +ǿ N chemical|ѧ +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ N human|,official|,military| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ǿ V order| +ǿǿ N fact|,commercial|,undesired|ݬ +ǿ V force|ǿ +ǿ V request|Ҫ,manner=force|ǿ +ǿȨ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ǿȨ N affairs|,#country|,politics| +ǿ N human|,able|,desired| +ǿ V force|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ V improve|,patient=physique| +ǿʢ V prosper| +ǿʹ V force|ǿ +ǿ N human|,able|,desired| +ǿ N human|,able|,sport| +ǿ V surpass|ǿ +ǿ N chemical|ѧ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯,sport| +ǿļ N medicine|ҩ,*cure|ҽ,#heart| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce| +ǿ V force|ǿ +ǿջЦ V laugh|Ц,manner=force|ǿ +ǿӲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿӲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿռ V occupy|ռ +ǿ N human|,able|,desired| +ǿֱ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ V force|ǿ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ V refute| +ǿ֮ĩ V decline|˥ + V VieFor| + V cut| + V rob| + V refute| + V rob| + V buy|,manner=endeavour| + N fact|,buy|,#endeavour| +糱 N fact|,buy|,#endeavour| +һ V undergo|,content=sell| + V rob| +ٰ N fact|,#rob|,police| +ٷ N human|,*rob|,crime|,undesired|ݬ + V rescue|,manner=endeavour|,medical|ҽ + V rob| + V gather|ɼ,manner=endeavour|,agricultural|ũ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +ֻ N artifact|˹,able|,$sell| + V VieFor| + V rescue|,StateIni=dangerous|Σ + V repair|,manner=endeavour| + V transport|,manner=endeavour| +ռ V occupy|ռ + V planting|ֲ,manner=endeavour|,agricultural|ũ + N tool|þ,*dig|ھ + V beat| + V cheat|ƭ +ô V beat| +ô V irritate|ŭ +ö V decide| +ù V rob| +ÿ V beat|,result=open| + V recreation| + V beat|,patient=part|,#house| + V MakeSound| +թ V cheat|ƭ +թ V cheat|ƭ +թ N human|,*cheat|ƭ,crime| + V cheat|ƭ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| +Ȼ ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N facilities|ʩ,route|·,#waters|ˮ +Ŷ N part|,%facilities|ʩ,base| +ź N facilities|ʩ,route|·,#waters|ˮ +ſ N part|,%facilities|ʩ + N facilities|ʩ,route|·,#waters|ˮ + N fact|,recreation| +ͷ N part|,%facilities|ʩ +ͷ N facilities|ʩ,space|ռ,military| +ܢ N part|,%route|· + V look| +Ʋ V despise| +Ƽ V perception|֪,means=look| + V look| + ADJ aValue|ֵ,height|߶,tall| + N character|,surname|,human|,ProperName|ר +ľ N tree| +ɴ N material|,?clothing| +Ǩ V TakeAway|ᶯ,patient=family| +ζ N place|ط,capital|,ProperName|ר,(Guyana|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,*function|,#foreign|,#country| +Ȱ N institution|,ProperName|ר,politics|,(China|й) +Ȱ N human|,*function|,#foreign|,#country| +Ⱦ V function|,#foreign|,#country| +Ⱦ N human|,family| + N community|,#human|,#country|,(China|й) + N human|,*function|,#foreign|,#country| + N human|,family| + N affairs|,#human|,#function|,#foreign|,#country| + N place|ط + N fund|ʽ +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ɶ칤 ADJ aValue|ֵ,quality|,refined|,desired| +ɸ V do|,manner=dexterous| +ɺ V fit|ʺ +ɿ N food|ʳƷ +Ŀ V create|,PatientProduct=reason|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +ȡ V rob| + ADJ aValue|ֵ,ability|,able|,desired| + N fact| + N human|,able|,desired| + N fact|,meet| + V meet| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#weapon| +ʳ N part|,%bird|,wing| + V lift| + V CausePartMove| + V FormChange|α,StateFin=curved| + V upmove| +̱ V die| +̳ N human|,able|,desired| + V FormChange|α,StateFin=curved| + V expect| + V CausePartMove|,PatientPartof=head|ͷ + V upmove| +β ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,slope|¶,steep| +Ͱ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +Ͱ ADJ aValue|ֵ,slope|¶,steep| +ͱ N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +λ N artifact|˹,able|,$sell| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ƥ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ƥ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N method|,*succeed|ɹ + N part|,%inanimate|,mouth| + N method| + V BeNear| + V cut| + V fit|ʺ + ADV {modality|} +в AUX {modality|,neg|} +в˰ N tool|þ,@cut|,#cook| +г ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +г V cut|,#cure|ҽ,medical|ҽ +д V research|о +ж V shrink|С,means=cut| +ж V separate|,means=cut| +з֮ʹ N phenomena|,undesired|ݬ,#unfortunate| +и V break|۶ +к V fit|ʺ +л V alter|ı +м V remember|ǵ,manner=modality| +м V evade|ر +н V BeSimilar| +п V split|ƿ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V cut|,#cook| + V diagnose|,medical|ҽ + N food|ʳƷ + N image|ͼ,surfacial| + N part|,%physical|,surfacial| +ĩ V cut|,#cook| +Ī AUX {modality|,neg|} +Ƭ V cut| +Ƭ N part|,%AnimalHuman| + AUX {modality|} + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,content|,accurate|׼,desired| + AUX {modality|,neg|} + N image|ͼ,linear| + V cut|,industrial| + V fit|ʺ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeShort| + COOR {and|} + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| +ӳ V fear|,entertainment| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| + V fear|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + V steal|͵,crime| +Թ V steal|͵,possession=country|,politics|,crime| +Թ V steal|͵,possession=country|,politics|,crime| +˽ V talk|̸,secret| +˽ V talk|̸,secret| +ȡ V steal|͵ +ȡ V steal|͵,crime| +ȡ V steal|͵,politics| + V listen|,manner=secret| +Ц V laugh|Ц,manner=hidden| + N human|,*steal|͵,crime|,undesired|ݬ + V respect| +ղ N human|,#occupation|ְλ,$dispatch|Dz,official|,#royal| + V respect| + V attack|,military| +ַ V damage| +ַ V damage|,crime| +ֺ V damage| +ֻ V attack|,patient=(China|й) + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + V attack|,military| +ս N fact|,*attack|,military| + N human|,*attack|,military| +Ȩ V fact|,disobey|Υ,#law|ɷ,crime| +ȨΪ N fact|,disobey|Υ,#law|ɷ,crime| + V MakeTrouble|,military| + V attack|,military| +ʴ V damage| + V cheat|ƭ + V occupy|ռ + V occupy|ռ,military| +Ϯ V attack| +Ϯ V attack|,military| +ռ V occupy|ռ,military| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,GetMarried| + N human|,family| + N human|,female|Ů +װ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ױ ADJ aValue|ֵ,trueness|α,true| +ױ N character|,true| +ױд ADJ aValue|ֵ,trueness|α,true| +ױ N letter|ż +׺ N attribute|,relatedness|,&chemical|ѧ +׻ʿ N human|,*FondOf|ϲ +׼ N human|,family| +׽ ADJ aValue|ֵ,relatedness|,intimate|,desired| +׾ N human|,family| +׿ ADV aValue|ֵ,behavior|ֹ,self| + V undergo| +侳 V undergo|,content=circumstances| + V arrive| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +޼ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + N human|,family| + N human|,family| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +и N emotion|,like|ϧ,kindhearted|,desired| + V ShowLove|ʾ,means=CausePartMove| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,clan| + N fact|,GetMarried| + ADV aValue|ֵ,behavior|ֹ,self| + N attribute|,relatedness|,&human| + N human|,family| + N human|,royal|,male| + V ShowLove|ʾ,means=CausePartMove| + N human|,friend| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,friend|,family| +Ե N attribute|,relatedness|,&animate| + V manage|,patient=country|,politics| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,family| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +س N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ش N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ػʵ N place|ط,city|,ProperName|ר,(China|й) +ǻ N shows| + N MusicTool| + N MusicTool|,generic|ͳ +ټ N part|,%MusicTool| +ʦ N human|,#occupation|ְλ,*perform|,#music|,entertainment| + N part|,%MusicTool| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| +ڷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڷܺѧ V FondOf|ϲ,target=study|ѧ +ڹѧ V study|ѧ +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڼּ V ProvideFor|,patient=family|,manner=thrifty| +ڼԼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿҿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| + N human|,*fight|,military| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +ѧ V study|ѧ,manner=diligent| +ӹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V engage|,content=politics|,manner=diligent| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +۲ N part|,%vegetable|߲,embryo|,$eat| +۲ N vegetable|߲ + V catch|׽ס + V catch|׽ס,military| +ܻ V catch|׽ס + V catch|׽ס + N bird|,generic|ͳ +ݵ N food|ʳƷ + N animal|,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N room|,@sleep|˯ + V sleep|˯ +޾ N tool|þ,generic|ͳ,*sleep|˯ +ʳ N fact|,alive| + N room|,@sleep|˯ + V soak| +Ƣ ADJ aValue|ֵ,impression|ӡ,good|,desired| + N FlowerGrass|,generic|ͳ + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,color|ɫ,BlueGreen| + ADJ aValue|ֵ,color|ɫ,black| + N crop|ׯ,generic|ͳ + N human|,young|,generic|ͳ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N vegetable|߲,generic|ͳ + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ظԭ N place|ط,ProperName|ר,(China|й) + N FlowerGrass|,green| + V surpass|ǿ +ഺ ADJ aValue|ֵ,age|,adult| +ഺ N time|ʱ,#young| +ഺ껪 N aValue|ֵ,age|,adult| +ഺ ADJ aValue|ֵ,time|ʱ,adult| +ഺ N time|ʱ,young| + N material|,?tool|þ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +ൺ N place|ط,city|,ProperName|ר,(China|й) +ඹ N part|,%vegetable|߲,embryo|,$eat| +ඹ N vegetable|߲ +๤ N human|,young|,industrial| + N disease| + N fruit|ˮ +ຣ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ཷ N part|,%vegetable|߲,embryo|,$eat| +ཷ N vegetable|߲ + N part|,%AnimalHuman|,nerve| + N community|,#young|,ProperName|ר,(China|й) +ɫ ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +÷ N fruit|ˮ +ù N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N crop|ׯ,generic|ͳ + N crop|ׯ,generic|ͳ,young| + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,age|,young| + N human|,young| +깬 N InstitutePlace|,#young|,@recreation| + N community|,religion|ڽ + N time|ʱ,#young| + N human|,young| + N community|,#young|,ProperName|ר,(China|й) +ɴ N crop|ׯ,generic|ͳ +ɽ N land|½,green| +ɽˮ N place|ط,beautiful| + N human|,young|,mass| +그 N fact|,crime|,#young| +˿ N part|,%human|,female|Ů,hair|ë + N tree| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̦ N AlgaeFungi|ֲ +̴ N tree| + N human|,official|,desired| + N sky| + N fact|,undesired|ݬ,queer|,sudden| +ͭ N metal| +ͭ N tool|þ,metal| + N beast| +Ϻ N fish| + N clothing|,black| + N human|,female|Ů,*perform|,entertainment| + N fish| +׳ N human|,young| + N emotion|,like|ϧ,kindhearted|,desired| + N crop|ׯ + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,behavior|ֹ,^stately|ׯ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + ADJ aValue|ֵ,size|ߴ,small|С + ADJ aValue|ֵ,weight|,NotHeavy| + V despise| +ᱡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ᱡ͸ ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| +ᳵ V tour|,manner=thrifty| + V despise|,target=enemy| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +׾ ADJ aValue|ֵ,easiness|,easy|,desired| + N affairs|,industrial| +ḡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ḡŮ N human|,flighty|,undesired|ݬ,female|Ů,young| + V recreation| +Ṥ N affairs|,industrial| +Ṥҵ N affairs|,industrial| +Ṥҵ N institution|,#industrial|,ProperName|ר,politics| +ṤҵƷ N artifact|˹,#industrial| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +赭д ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V despise| +ƮƮ ADJ aValue|ֵ,weight|,NotHeavy| + N LandVehicle| + N army| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ȡ V defeat|սʤ,manner=easy| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V wounded|,degree=insufficiently|Ƿ + ADJ aValue|ֵ,SoundVolume|,weak| + V suicide|ɱ + V despise| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ˮ N chemical|ѧ + ADJ aValue|ֵ,circumstances|,relax|,desired| +΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢ ADJ aValue|ֵ,content|,NotProfound|dz +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + V believe| + ADJ aValue|ֵ,weight|,NotHeavy| +Ӧ N army| +ս N weapon|,ship|,military| + ADJ aValue|ֵ,easiness|,easy|,desired| + N music| +ӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N material|,liquid|Һ,$burn| + N attribute|,behavior|ֹ,event|¼,&human| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,weight|,&physical| +ػ N attribute|,degree|̶,&aValue|ֵ,&event|¼ +װ ADJ aValue|ֵ,weight|,NotHeavy| +װ V tour|,manner=thrifty| +װ V fight| +٬ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +٬Ů N human|,flighty|,undesired|ݬ,female|Ů,adult| + N gas| +ⵯ N weapon| + N gas| + N chemical|ѧ + N chemical|ѧ + V CausePartMove| + V FallDown| + ADJ aValue|ֵ,form|״,slanted| + V dump| + V endeavour| + V end|ս +㵹 V dump| +㸲 V FallDown| +㸲 V reverse|ߵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҵ V lose|ʧȥ,possession=wealth|Ǯ + N image|ͼ,angular| + N RainSnow|ѩ,strong|ǿ + V tell|,manner=free| +̸ V communicate|,manner=ShowEmotion|ʾ + V listen|,manner=PayAttention|ע + V tell|,manner=free| + V FondOf|ϲ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,property|,FondOf|ϲ,&human|,&organization|֯,&event|¼ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,free| + V sell|,cost=cheap|,commercial| +б ADJ aValue|ֵ,form|״,slanted| +б V tilt|б +б N attribute|,slope|¶,&inanimate| +к V flow| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HaveContest| +ע V flow| +ע V put| + N human|,#occupation|ְλ,official|,royal|,past| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V count| + V fulfil|ʵ,commercial| + V remove| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + N account|,@record|¼ + N material|,?drinks|Ʒ + V check| + V reveal|¶ + V check| +峥 V return|,commercial| +峪 V sing|,entertainment| +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峺 ADJ aValue|ֵ,clearness|,clear| +峿 N time|ʱ,morning| + V remove| + N human|,*remove| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| +ǵ V remember|ǵ + ADJ aValue|ֵ,SoundQuality|,good|,desired| +嵥 N account|,@record|¼ +嵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +嵭 ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +嵭 ADJ aValue|ֵ,taste|ζ,desired| + N human|,#exercise| + N human|,#occupation|ְλ,*clean|ʹ,#route|·,employee|Ա + V check|,commercial| + N wind|,weak|,chilly| + ADJ aValue|ֵ,behavior|ֹ,arrogant| + N human|,official|,honest|,desired| + N regulation| +庮 ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +庮 ADJ aValue|ֵ,temperature|¶,cold| +廪 N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +廪ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + N {clearness|} + V destroy| +ͽ N human|,religion|ڽ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V clean|ʹ +๤ N human|,#occupation|ְλ,*clean|ʹ,employee|Ա + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +徲 ADJ aValue|ֵ,occasion|,quiet|,desired| +徻 ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V arrange| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,SocialMode|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƿ V request|Ҫ,ResultEvent=return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#fever| +ɨ V clean|ʹ + ADJ aValue|ֵ,fatness|,bony| +ˬ ADJ aValue|ֵ,circumstances|,relax|,desired| +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˬ V satisfied| +ˮ N water|ˮ,spotless| + V calculate|,commercial| + V reveal|¶,ExpressAgainst|Ǵ + N human|,*remove| +̸ V TalkNonsense|Ϲ˵ + N food|ʳƷ,liquid|Һ + V return| + ADJ aValue|ֵ,content|,pure|,desired| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&image|ͼ + ADJ aValue|ֵ,content|,concise|,desired| +ϴ V discharge| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + V restrain|ֹ,ResultEvent=expect| + V soothe|ο + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V awake| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +һɫ ADJ aValue|ֵ,content|,neat|,desired| + N sound|,#language| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,liquid|Һ,?food|ʳƷ + N time|ʱ,morning| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N knowledge|֪ʶ,religion|ڽ + N facilities|ʩ,religion|ڽ,space|ռ + V cook| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + V cook| + V PropUp|֧ + V lift| + V WeatherFine| + V WeatherFine| + V WeatherFine| + N sky| + V WeatherFine| + V WeatherFine| + N fact|,undesired|ݬ,queer|,sudden| + N tool|þ,*tell|,#WeatherChange| + N chemical|ѧ,poison| + N attribute|,circumstances|,&entity|ʵ + N emotion| + N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,love|,desired| +鰮 N emotion|,love|,desired| +鱨 N information|Ϣ +鱨 N information|Ϣ,military| +鱨Ա N human|,#occupation|ְλ,*analyze| +鱨Ա N human|,#occupation|ְλ,police|,military|,*scout| +鲻Խ V EndureNot| + N emotion| + N human|,enemy|,#love| + N emotion| + N emotion| + N human|,male|,*love|,*mating|,undesired|ݬ +鸾 N human|,female|Ů,*love|,*mating|,undesired|ݬ + N emotion| + N music|,$sing| +黳 N emotion| +鼱 N time|ʱ,urgent| + N part|,%fact|,bone| + N part|,%shows|,bone| +龰 N attribute|,occasion|,&event|¼ +龳 N attribute|,occasion|,&event|¼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ,military| + N reason| + N human|,friend|,*love|,desired| + N emotion| +Ȥ N emotion|,FondOf|ϲ + N human|,friend|,*love|,desired| + N attribute|,rank|ȼ,#emotion|,&human| + N attribute|,circumstances|,&entity|ʵ + N letter|ż,*express|ʾ,#love| +˼ N emotion| +˼ N emotion|,desired| + N emotion| +Ǩ V change| +ͬ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V fit|ʺ + N attribute|,circumstances|,&entity|ʵ + N emotion|,FeelingByBad| + N emotion|,generic|ͳ + N emotion|,desired| + N emotion|,friend| + N emotion|,friend| + N cause|ԭ + N aspiration|Ը,mating| +Ը V willing|Ը + N emotion|,FondOf|ϲ + N emotion| + ADV aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| +̼ ADV aValue|ֵ,duration|,TimeShort| +֮ ADV aValue|ֵ,duration|,TimeShort| + V employ| + V invite| + V request|Ҫ +밲 V SayHello|ʺ + V request|Ҫ,ResultEvent=benefit| + V request|Ҫ,ResultEvent=agree|ͬ + N letter|ż,*invite| +뽵 V surrender| + V request|Ҫ,ResultEvent=teach| + V entertain|д,target=human| + V beg| + V request|Ҫ + N human|,*request|Ҫ +͹ EXPR expression|,*welcome|ӭ + EXPR expression|,*welcome|ӭ +ʾ V ask| + N letter|ż,*invite| + V request|Ҫ,ResultEvent=benefit| + AUX {neg|} +ӧ V request|Ҫ,ResultEvent=do| +Ը V protest| +ս V request|Ҫ,ResultEvent=do| + V apologize|Ǹ + V congratulate|ף + N fact|,congratulate|ף +칦 V congratulate|ף,cause=win|ʤ + V congratulate|ף + V joyful|ϲ +ף V congratulate|ף + N material|,?tool|þ,#decorate|װ,precious| +֬ N material|,?food|ʳƷ,?medicine|ҩ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N human|,poor|,undesired|ݬ + V fight|,military| +⵰ N human|,poor|,undesired|ݬ +ʵ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V melancholy| + N human|,enemy|,*fail|ʧ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N human|,poor|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,ugly|,undesired|ݬ +Ƨ N place|ط,poor| +׼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +׷ V chase|׷ + N character|,surname|,human|,ProperName|ר + N time|ʱ + N time|ʱ,autumn| + N time|ʱ,year| +ﲥ V planting|ֲ,autumn|,agricultural|ũ +ﲨ N part|,%human|,female|Ů,#eye| + N time|ʱ,day|,autumn| + N wind|,#autumn| +ˬ N phenomena|,#WeatherFine|,autumn|,desired| +ﺣ N FlowerGrass| +޷ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N part|,%time|ʱ,autumn|,ending|ĩ +^ N time|ʱ,autumn| + N time|ʱ,autumn| +ǧ N tool|þ,*recreation| + V gather|ɼ,#crop|ׯ,autumn|,agricultural|ũ +ˮ N part|,%human|,female|Ů,#eye| + N time|ʱ,autumn| +ׯ N crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N land|½ + N part|,%AnimalHuman|,head|ͷ + N disease| + N character|,surname|,human|,ProperName|ר + N SportTool|˶,generic|ͳ + N earth| + N earth|,space|ռ + N fact|,exercise| + N shape|,round|Բ + N facilities|ʩ,space|ռ,@compete|,sport| + N community|,compete|,sport| + N part|,%plant|ֲ,embryo| + N knowledge|֪ʶ,#sport| + N part|,%plant|ֲ,body| +򾥸 N part|,%vegetable|߲,embryo|,$eat| +򾥸 N vegetable|߲ + N bacteria|΢ + N fact|,exercise| +˶ N fact|,exercise| + N facilities|ʩ,#compete|,sport| + N facilities|ʩ,#compete|,sport| + N human|,*FondOf|ϲ,#look|,#sport| + N shape| + N SportTool|˶ + N fact|,compete|,sport| + N human|,sport| +̳ N community|,#exercise| + N image|ͼ,cubic|,round|Բ +Ь N SportTool|˶,#clothing|,#foot| + N human|,*compete|,glorious|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N knowledge|֪ʶ,#sport| +Ա N human|,#occupation|ְλ,sport| +״ ADJ aValue|ֵ,form|״,round|Բ + V request|Ҫ + V seek|ıȡ + V ShowLove|ʾ + V request|Ҫ,ResultEvent=succeed|ɹ + V request|Ҫ + V request|Ҫ + V calculate| + V buy|,commercial| + V request|Ҫ,ResultEvent=reconcile|,military| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=meet| + V request|Ҫ,ResultEvent=teach| + V handle| + V request|Ҫ,ResultEvent=help| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=satisfied| +ȫ V request|Ҫ,degree=over| + V surrender| + V request|Ҫ,ResultEvent=help| + N MakeLiving|ı +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ͬ V request|Ҫ,ResultEvent=BeSame|ͬ +ѧ V request|Ҫ,ResultEvent=study|ѧ +ѧ V study|ѧ,education| +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ +Ԯ V request|Ҫ,ResultEvent=help| +ս V request|Ҫ,ResultEvent=fight|,military| +֪ V request|Ҫ,ResultEvent=study|ѧ +֪ N aspiration|Ը,request|Ҫ,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,property|,$request|Ҫ +ְ V seek|ıȡ,possession=occupation|ְλ +ְ N human|,*seek|ıȡ,#occupation|ְλ + V request|Ҫ,ResultEvent=help| + V detain|ס,police| + N human|,crime|,undesired|ݬ,$detain|ס + N LandVehicle|,*transport|,#crime|,police| + N human|,crime|,undesired|ݬ,$detain|ס + V detain|ס,police| +׹ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ͽ N human|,crime|,undesired|ݬ,$detain|ס + N human|,official|,#community| + N human|,official|,#community| + N human|,royal| + V swim| + V cross|Խ,means=swim| + V SelfMove| + V become|Ϊ + V please|ȡ + V please|ȡ + V become|Ϊ,descriptive=safe| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V facing| +׸ V please|ȡ + V become|Ϊ +֮ V seek|ıȡ + N place|ط,#human| + V distinguish|ֱ + N human|,#occupation|ְλ,official| + V distinguish|ֱ + V separate| + ADJ aValue|ֵ,importance|,secondary| +ί N institution|,politics|,(China|й) + N place|ط + ADJ aValue|ֵ,attachment|,place|ط + N place|ط + V ize|̬ + ADJ aValue|ֵ,attachment|,place|ط + N InsectWorm| + ADJ aValue|ֵ,form|״,curved| + N music|,$sing| + N part|,%earth|,angular| + N text|,$sing| + V deceive|ƭ + N fittings| + N tool|þ,*measure| + N attribute|,SoundQuality|,&music| +ߺ͹ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N SportTool|˶ + N fact|,exercise| + V alter|ı,StateIni=true|,StateFin=fake|α + V explain|˵,manner=wrong| + ADJ aValue|ֵ,form|״,curved| + N quantity|,rate|,&distance| + N image|ͼ,curved| +ͻн V escape|,ResultEvent=dangerous|Σ + ADJ aValue|ֵ,form|״,round|Բ + N image|ͼ,linear|,curved| + N shows| +ӭ V please|ȡ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| + N fact|,hardship| + N part|,%implement| + N music|,$sing| + N InsectWorm| + N part|,%human|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + V CausePartMove| + N character|,surname|,human|,ProperName|ר + V defeat|սʤ + N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V surrender| + V surrender| + V surrender| + N attribute|,property|,&part|,eye| + V SelfMove| + V situated| + N phenomena|,disgraced|,#shy|,undesired|ݬ +ϥ V CausePartMove|,PatientPartof=leg| +ָ ADJ qValue|ֵ,amount|,few| + V drive|Ԧ + V expel| + V run| + V dispatch|Dz + V drive|Ԧ + V urge|ʹ + V drive|Ԧ,patient=LandVehicle| + V expel| + V remove| + V CauseToDo|ʹ + V expel| +Dz V dispatch|Dz +Dz V exile| +Dz V expel| +Dz V urge|ʹ +ɢ V expel| +ʹ V dispatch|Dz +ʹ V urge|ʹ + V exile| + V expel| + V expel|,LocationIni=country| + N weapon|,ship|,military| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,#liquid|Һ,linear| + N method|,*communicate| +ȡ V choose|ѡ +ȡ V seek|ıȡ +ȡ V take|ȡ +ȡ V take|ȡ,commercial| +ȡ V use| +ȡ V study|ѧ,content=pros| +ȡ V take|ȡ,commercial| +ȡ V replace| +ȡ PREP {LocationThru} +ȡ V obtain|õ +ȡ V prohibit|ֹ +ȡ֮ V replace| +ȡ V imitate|ģ +ȡ V TakeBack|ȡ +ȡ V choose|ѡ,content=image|ͼ +ȡ V ResultFrom|Ե +ȡ V ResultFrom|Ե +ȡ V WhileAway| +ȡ V tease|ȡ +ȡ V naming| +ȡΪ V naming| +ȡů V WarmUp|,patient=self| +ȡ ADJ aValue|ֵ,content|,neat|,desired| +ȡ V equal| +ȡ V do|,manner=sly| +ȡ V choose|ѡ +ȡʤ V win|ʤ +ȡ V remove| +ȡ N human|,*remove| +ȡЦ V LaughAt|Ц +ȡ V take|ȡ,possession=letter|ż +ȡ V undergo|,content=believe| +ȡ V undergo|,content=believe| +ȡ V check| +ȡ V choose|ѡ,content=example|ʵ +ȡ V please|ȡ +ȡ֤ V gather|ɼ,possession=information|Ϣ +ȡ֮ ADJ qValue|ֵ,amount|,many| +ȡ V obtain|õ +ȡ V TakeAway|ᶯ +Ȣ V MarryFrom|Ȣ +Ȣ V MarryFrom|Ȣ +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȥ N emotion|,FondOf|ϲ +Ȥ N purpose|Ŀ +Ȥ N fact|,interesting|Ȥ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥζ N emotion|,FondOf|ϲ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N text|,interesting|Ȥ +ȥ V RegardAs|,entertainment| +ȥ V from| +ȥ V go|ȥ +ȥ V leave|뿪 +ȥ V remove| +ȥ V send| +ȥ STRU {Vdirection|} +ȥ V remove| +ȥ N location|λ +ȥ N place|ط +ȥ V AlterProperty|,PatientAttribute=property| +ȥȡ V choose|ѡ,content=refined| +ȥ V remove| +ȥ N time|ʱ,spring|,winter| +ȥ ADJ aValue|ֵ,performance|,clean|ʹ +ȥ V SelfMove| +ȥ· N facilities|ʩ,route|·,@GoOut|ȥ +ȥ N time|ʱ,year|,past| +ȥ N sound|,#language| +ȥ V die| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥ V LeaveFor|ǰ,manner=fast| +ȥα V remove|,patient=fake|α +ȥۼ N tool|þ,*remove|,#dirty| +ȥ N direction| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥְ V dismiss|,ResultIsa=occupation|ְλ +Ȧ N community| +Ȧ V detain|ס +Ȧ V detain|ס,agricultural|ũ +Ȧ V detain|ס,police| +Ȧ V draw| +Ȧ N facilities|ʩ,space|ռ,@foster|,#livestock| +Ȧ N image|ͼ,cubic|,round|Բ +Ȧ N shape|,round|Բ +Ȧ V surround|Χ +Ȧ V draw| +Ȧ V ExpressAgreement|ʾͬ +Ȧ N material|,*feed|ι,#crop|ׯ +Ȧ ADJ aValue|ֵ,relatedness|,intimate| +Ȧ N plans|滮,*deceive|ƭ,undesired|ݬ +Ȧ N furniture|Ҿ,space|ռ,@sit| +Ȧ V read| +Ȧ V sign|д,#read| +Ȧ N shape|,round|Բ +ȧ N part|,%AnimalHuman|,bone| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N character|,surname|,human|,ProperName|ר +Ȩ N rights|Ȩ +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ N human|,official|,past| +Ȩ V estimate| +Ȩ V estimate|,content=ProsCons| +Ȩ N human|,*estimate| +Ȩ N rights|Ȩ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ ADJ aValue|ֵ,duration|,TimeShort| +Ȩʱ ADV aValue|ֵ,time|ʱ,TimeShort| +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N human|,#power|,able|,desired| +Ȩʿ N human|,#power| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,range|,&power| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ֮ N method| +Ȩ N rights|Ȩ +Ȩ N rights|Ȩ,duty| +ȩ N chemical|ѧ +Ȫ N waters|ˮ,surfacial| +Ȫˮ N waters|ˮ,surfacial| +Ȫˮ N water|ˮ +Ȫ N part|,%waters|ˮ,mouth| +Ȫ N waters|ˮ,surfacial| +ȪԴ N location|λ,@ExistAppear| +ȪԴ N part|,%waters|ˮ,head|ͷ +ȪԴ N waters|ˮ,surfacial| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +ȫ N character|,surname|,human|,ProperName|ר +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N human|,able|,desired| +ȫ ADJ aValue|ֵ,length|,all|ȫ +ȫ N attribute|,name|,&entity|ʵ +ȫ N process| +ȫ N community|,ProperName|ר,(China|й) +ȫ V equal| +ȫ ADV aValue|ֵ,range|,all|ȫ +ȫλ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N place|ط,country|,complete| +ȫΧ ADJ aValue|ֵ,range|,country| +ȫ˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,attachment|,country| +ȫ N fact|,discuss| +ȫ N publications|鿯 +ȫ N community|,family|,complete| +ȫҸ N food|ʳƷ +ȫҸ N image|ͼ,$TakePicture|,#human|,#family| +ȫ V destroy| +ȫ N attribute|,scene|,complete|,&inanimate| +ȫ N attribute|,circumstances|,&entity|ʵ +ȫ N army| +ȫû V defeated| +ȫ N paper|ֽ,#print|ӡˢ +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫԸ V endeavour| +ȫò N attribute|,appearance|,&entity|ʵ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ N system|ƶ,#rights|Ȩ,#own|,public| +ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫ ADV aValue|ֵ,time|ʱ,year|,complete| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,attachment| +ȫ V ize|̬ +ȫս N plans|滮 +ȫ N place|ط +ȫȨ N attribute|,power|,&human|,&organization|֯ +ȫȨ N duty| +ȫȨ N human|,#duty| +ȫȨ N human|,official| +ȫȻ ADV aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ ADJ aValue|ֵ,duration|,#day| +ȫѧ N human|,*study|ѧ,education| +ȫɫ ADJ aValue|ֵ,color|ɫ +ȫɫä N human|,*disable|м +ȫ N part|,%AnimalHuman|,body| +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫע ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ȫʡ N place|ط,all|ȫ +ȫʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ȫʢ V prosper| +ȫʤ V win|ʤ +ȫʼȫ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ȫ N publications|鿯 +ȫ N quantity|,amount|,&entity|ʵ +ȫ ADJ aValue|ֵ,speed|ٶ,fast| +ȫ N attribute|,speed|ٶ,fast| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N part|,%entity|ʵ,complete| +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N fact|,discuss| +ȫѡ N human|,*select|ѡ,mass| +ȫ N time|ʱ,day| +ȫ ADJ aValue|ֵ,ability|,able|,withstand|ס,#WeatherBad| +ȫ N InstitutePlace|,*TakeCare|,#young|,#human| +ȫ N text| +ȫϢ ADJ aValue|ֵ,ability| +ȫ N facilities|ʩ,route|· +ȫ N place|ط,@fight|,military| +ȫ ADJ aValue|ֵ,newness|¾,new| +ȫȫ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȫ N sound|,#music| +ȫԱ N human|,employee|Ա +ȫ˻ N fact|,sport| +ȫ֪ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫԶ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ȭ V BeRecovered|ԭ,medical|ҽ +Ȭ V BeRecovered|ԭ,medical|ҽ +ȭ N fact|,beat| +ȭ N fact|,exercise| +ȭ N part|,%AnimalHuman|,hand| +ȭ V beat| +ȭ N fact|,sport| +ȭ N fact|,exercise| +ȭ V bend| +ȭȭ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȭ N human|,$choose|ѡ,*compete|,sport| +ȭͷ N part|,%AnimalHuman|,hand| +ȭ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ȯ N livestock| +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%livestock|,*bite|ҧ +Ȯ V BeAcross|ཻ +Ȯ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ȯ ADJ aValue|ֵ,form|״,dissimilar| +ȯ N coupon|Ʊ֤ +Ȱ V mobilize| +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V mediate|,ResultEvent=fight| +Ȱ V persuade|Ȱ˵,ResultEvent=surrender| +Ȱ V mediate| +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵,ResultEvent=drink| +Ȱ V persuade|Ȱ˵ +Ȱ˵ V persuade|Ȱ˵ +Ȱ˵ N human|,*persuade|Ȱ˵ +Ȱο V soothe|ο,means=persuade|Ȱ˵ +Ȱҵ N InstitutePlace|,*sell|,@buy|,commercial| +Ȱ V obstruct|ֹ,means=persuade|Ȱ˵ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V disappear|ʧ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N quantity|,amount|,&lack|ȱ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ȱĬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ȱ N emotion|,regret|Ǹ +ȱ V lack|ȱ,commercial| +ȱ V pay|,quantity=lack|ȱ +ȱ N part|,%place|ط,mouth| +ȱ V cease|ͣ +ȱ V lack|ȱ +ȱʧ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱˮ ADJ aValue|ֵ,dampness|ʪ,dried| +ȱϯ V disappear|ʧ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N disease|,#mouth| +Ȳ N chemical|ѧ +ȳ V disable|м,scope=walk| +ȳ N human|,undesired|ݬ,*disable|м,#walk| +ȴ V GoBackward| +ȴ V reject|ؾ +ȴ V cure|ҽ,content=disease| +ȴ V GoBackward| +ȴ V reject|ؾ +ȵ N bird| +ȵռ V occupy|ռ +ȵ V appear| +ȵ N place|ط,@meet|,#male|,#female|Ů +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V guarantee|֤ +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V decide| +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V establish| +ȷ ADJ aValue|ֵ,content|,substantial|ʵ +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ ADJ aValue|ֵ,content|,accurate|׼,desired| +ȷ V decide| +ȷʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷʵɿ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ȷ V believe| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V diagnose|,medical|ҽ +ȷ֤ N information|Ϣ,*prove|֤ +ȷ֤ V prove|֤ +ȸ N bird| +ȸ N disease| +ȸӥ N bird| +ȸԾ V WhileAway|,means=jump| +ȸԾ V joyful|ϲ +ȹ N clothing|,#leg|,#female|Ů +ȹϵ N attribute|,relatedness|,&human|,undesired|ݬ +ȹ N clothing|,#leg|,#female|Ů +ȹװ N clothing|,#female|Ů +ȹ N clothing|,#leg|,#female|Ů +Ⱥ CLAS NounUnit|,&AnimalHuman| +Ⱥ N entity|ʵ,mass| +ȺȺ V cooperate| +Ⱥ N land|½,mass| +Ⱥ N human|,desired|,beautiful|,female|Ů,mass| +Ⱥ V reside|ס +Ⱥå N human|,mass| +Ⱥ V appear| +Ⱥ N material|,*apply|ͿĨ,*decorate|װ +Ⱥ N emotion| +Ⱥɽ N land|½ +Ⱥ N entity|ʵ,mass| +ȺȺ ADJ aValue|ֵ,courage|,brave|,desired| +Ⱥ N human|,able|,desired|,mass| +Ⱥ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ȺӢ N human|,able|,desired|,mass| +Ⱥ N human|,mass| +Ⱥ˶ N fact| +Ⱥӵ N weapon|,$firing| +Ȼ ADV aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ CONJ {but|} +Ȼ CONJ {but|} +Ȼ CONJ {time|ʱ} +Ȼŵ V agree|ͬ +ȼ V burn| +ȼ V lighting|ȼ +ȼ V shoot| +ȼ N material|,$burn|,*lighting|ȼ +ȼü֮ N affairs|,urgent| +ȼ N material|,gas|,$burn| +ȼֻ N machine| +ȼ V burn| +ȼյ N weapon|,$firing| +ȼ N part|,%implement| +ȼ N material|,liquid|Һ,*burn| +Ƚ ADJ aValue|ֵ,speed|ٶ,slow| +Ƚ N character|,surname|,human|,ProperName|ר +ȽȽ ADJ aValue|ֵ,speed|ٶ,slow| +Ⱦ V AlterColor|ɫ +Ⱦ V SufferFrom| +Ⱦ V influence|Ӱ +Ⱦ V undergo| +Ⱦ V ill|̬ +Ⱦ N material|,*AlterColor|ɫ +Ⱦɫ V AlterColor|ɫ +Ⱦɫ N part|,%animate| +Ⱦ V suffer|,content=CauseAffect|Ⱦ +Ⱦָ V damage| +Ⱦָ V engage| +ȿ N part|,%fruit|ˮ,flesh|,$eat| +ȿ N part|,%physical|,flesh| +ȿ N part|,%fruit|ˮ,flesh| + N place|ط + N stone|ʯ + N stone|ʯ + N character|,surname|,human|,ProperName|ר + V bend| + V reject|ؾ + V resist| + V rob| + V CausePartMove|,PatientPartof=arm| + V remove| + V rob| + V cry| + V cry| + V CauseToDo|ʹ + V invite| + V sell| + V surrender| + PREP {agent} +...ԱŸ V obstruct|ֹ,ResultEvent=GoInto| +ò V surrender| +ö V give| +ø V sell| + V ExpressAgreement|ʾͬ,content=subtract|,#payment| +· V benefit| +λ V cease|ͣ,content=undertake|,politics| +λ V provide|,possession=space|ռ + V sell| + V provide|,possession=space|ռ + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + V give| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,undesired|ݬ + V speak|˵ +ˡ V forgive|ԭ + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ qValue|ֵ,amount|,many| + V MakeTrouble| +Ŷ V uprise| + V MakeTrouble| + ADJ aValue|ֵ,property|,MakeTrouble| + V MakeTrouble| + V GoRound|Χ + V MakeTrouble| + V coil| + V confuse| +Ʋ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ʋ V speak|˵,manner=hidden| +Ƶ V GoRound|Χ +Ȧ V GoRound|Χ +Ȧ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ȧ V circle| + V walk| + ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ + V speak|˵,manner=hidden| + V cross|Խ +Զ V GoRound|Χ + N part|,implement|,#electricity| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V ResultIn| + V attract| + V incur| + V irritate|ŭ + V offend| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +ǻ V ResultIn|,result=damage| +ǻ V MakeTrouble| +ǻ V ResultIn|,result=damage| + V incur| +鷳 V MakeTrouble| + V angry| + V MakeTrouble| + V MakeTrouble| + V WarmUp| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V perception|֪,content=cold| +Ȱ V like|ϧ +ȳ N fact| +ȳ N emotion|,endeavour| +ȳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȴ N component|,space|ռ,%earth| +ȴ N disease| +ȵ ADJ aValue|ֵ,content|,interesting|Ȥ +ȵ N place|ط,$welcome|ӭ +ȵ N problem|,important| +ȵ N electricity| +ȵ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ȵż N fittings|,%tool|þ +ȶ N attribute|,temperature|¶,&physical| +ȶ N attribute|,temperature|¶,fever|,&human| +ȷ V WarmUp|,medical|ҽ +Ⱥ V part|,%physical| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ȼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȼ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + N gas|,hot| + N part|,%AnimalHuman|,liquid|Һ +ӯ V weep| + N attribute|,strength|,hot|,&physical| +ѧ N knowledge|֪ʶ + V love| + N attribute|,heat|,&physical| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N experience|,excited| + N wind|,hot| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +Ż N inanimate|,commercial|,generic|ͳ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,strength|,&heat| + N gas| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,excited| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V exercise| +ˮ N water|ˮ,hot| +ˮ N tool|þ,*WarmUp| +ˮƿ N tool|þ,cubic|,@store|,#liquid|Һ +ˮ N tool|þ,*WarmUp|,#water|ˮ + ADJ aValue|ֵ,temperature|¶,hot| + V expect| + N facilities|ʩ,linear|,@transmit|,#information|Ϣ + N lights| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ѫ N emotion|,faithful|,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N drinks|Ʒ,hot|,generic|ͳ +Դ N location|λ,@ExistAppear|,#hot| +Ƶ ADJ aValue|ֵ,performance|,#hot|,$guide| + V FondOf|ϲ + V expect|,undesired|ݬ + V FondOf|ϲ + V expect|,undesired|ݬ + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N part|,%plant|ֲ,embryo| +ʰ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +־ʿ N human|,desired|,faithful| +御 ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,behavior|ֹ,&human| + N attribute|,physique|,&AnimalHuman| + N attribute|,strength|,&community| + N human| + N human|,ThirdPerson| + N human|,adult| + N human|,all|ȫ + N human|,mass| + ADJ qValue|ֵ,amount|,all|ȫ +˲ N human|,able|,desired| +˲ N human|,able|,desired| +˲ű V appear|,#human|,#able| +˲żü EXPR appear|,#human|,#able| +˲н N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| +˲ EXPR appear|,#human|,#able| +˲ N FlowerGrass|,?medicine|ҩ +˳ N human|,mass| +˳ N attribute|,name|,&thing| +˳ N attribute|,property|,&language| +˴ CLAS unit|λ,&human| +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ί N institution|,politics|,(China|й) +˴ N human|,#institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +˵ N emotion|,kindhearted|,desired| +˵ N knowledge|֪ʶ +˵ N human| +˶ N human|,mass| +˶ N quantity|,amount|,&human|,family| +˷ N human|,crime|,undesired|ݬ +˷ N human|,crime|,undesired|ݬ +˷ V defend|,patient=sky| +˸ V surpass|ǿ,scope=human| +˸ N attribute|,behavior|ֹ,&human| +˹ ADJ aValue|ֵ,source|Դ,artificial| +˹ N fact|,translate|,literature| +˹ V respire|,#rescue|,medical|ҽ +˹ N artifact|˹ +˹ N knowledge|֪ʶ +˺ N human|,mass| +˻ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +˻ ADJ aValue|ֵ,attachment| +˼ N trace|,#human| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʹϵ N attribute|,relatedness|,&human| +˼ N community|,family| +˼ PRON {ThirdPerson|} +˼ N earth| +˽ N human|,able|,desired| +˾ V use|,patient=human| +˾ ADJ qValue|ֵ,rate| +˿ N quantity|,amount|,&human| +˿ N quantity|,amount|,&human|,family| +˿ڳ ADJ aValue|ֵ,density|ܶ,dense|,#human| +˿ڹ N quantity|,amount|,over|,&human| +˿ڹʣ N quantity|,amount|,over|,&human| +˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +˿ղ N fact|,investigate|,#quantity|,#human| +˿ͳ V calculate|,content=human| +˿ͳ N quantity|,amount|,&calculate| +˿ͳѧ N knowledge|֪ʶ +˿ϡ ADJ quantity|,amount|,few|,&human| + V tired|ƣ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N human|,generic|ͳ + N part|,%animate|,#PassOn| +ѧ N knowledge|֪ʶ,#human| + N attribute|,strength|,&human| + N quantity|,amount|,#employee|Ա,&organization|֯ + N LandVehicle| + N human|,mass| + N attribute|,relatedness|,&human| + N army|,generic|ͳ + N human|,mass| +Ϊ ADJ qValue|ֵ,amount|,over|,#employee|Ա + N human|,mass| + N human|,mass| + N money|,(China|й) + N house|,ProperName|ר,(China|й) +ž N army|,ProperName|ר,(China|й) +ձ N publications|鿯,news|,(China|й) + N institution|,politics|,(China|й) + N attribute|,strength|,&human| + CLAS ActUnit|,&act|ж +Ʒ N attribute|,behavior|ֹ,&human| + N attribute|,relatedness|,&human| + N emotion| + N fact|,help| + N attribute|,wisdom|ǻ,&human| +ζ N emotion|,kindhearted|,desired| +ծ N emotion|,grateful|м,desired| +Ȩ N attribute|,rights|Ȩ,&human| +Ⱥ N human|,mass| + PRON {ThirdPerson|,mass|} +ɽ˺ ADJ aValue|ֵ,occasion|,bustling|,desired| + N part|,%human| + N time|ʱ,TimeLong|,#alive| + N standpoint| +ʿ N human| +ʿ N human|,glorious| + N earth| + N earth| + N affairs|,#human| + N affairs|,#human|,#employee|Ա + N fact| + N fact|,#human| +² N institution|,#employee|Ա,ProperName|ר,politics| +´ N part|,%institution|,*manage|,#employee|Ա +¾ N part|,%institution|,*manage|,#employee|Ա + N attribute|,strength|,&community| +ֲ ADJ aValue|ֵ,strength|,weak| +ٱ V guarantee|֤,scope=die|,commercial| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N quantity|,amount|,&human| + N part|,%human|,body| +ͷ N attribute|,relatedness|,&human| +ͷ N quantity|,amount|,&human| +ͷܶ ADJ aValue|ֵ,occasion|,crowded| +Ϊ ADJ aValue|ֵ,source|Դ,artificial| + N knowledge|֪ʶ + N knowledge|֪ʶ + N human| +ﻭ N image|ͼ,$draw| + N image|ͼ,$draw| + N aspiration|Ը,expect| + N emotion| +ĸ V uneasy| +Ļ̻ V uneasy| + N emotion| +е N facilities|ʩ,route|·,@walk| + N attribute|,behavior|ֹ,&human| + N AnimalHuman| +ѡ N human|,$choose|ѡ + N attribute|,occasion|,#human|,&place|ط +Կη ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V defeated|,military| +Ӱ N trace|,#lights|,#human| +Ա N human|,employee|Ա,mass| +Ա ADJ aValue|ֵ,strength|,weak| +Ա ADJ qValue|ֵ,amount|,few| +Ե N attribute|,relatedness|,&human| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V obey|ѭ,content=thinking|˼ +߾ V catch|׽ס,patient=human|,patient=artifact|˹,crime|,#police| + ADJ aValue|ֵ,source|Դ,artificial| + N material|,?clothing|,?furniture|Ҿ,artificial| + N food|ʳƷ,artificial| + N aircraft| +ά N material| +֤ N information|Ϣ,*prove|֤ + N human|,undesired|ݬ,$detain|ס + N attribute|,kind|,&human| + V endure| +̲ס V EndureNot| +̶ N FlowerGrass|,?medicine|ҩ +̿ V laugh|Ц,manner=WithstandNot|ס + N endure| + V endure| + V endure|,content=MakeBad|Ӻ + V forgive|ԭ +踺 V bear|е + V endure| +ʹ V endure|,content=painful|ʹ +޿ V EndureNot| + V endure| + ADJ aValue|ֵ,quality|,durable|,desired| +ʹ N part|,%AnimalHuman| +; N attribute|,will|־,strong|ǿ,&human| + N attribute|,will|־,strong|ǿ,&human| + V CauseToBe|ʹ֮ + N character|,surname|,human|,ProperName|ר + V indulge| + V undertake| +κ ADJ qValue|ֵ,amount|,all|ȫ +ν V engage|,content=teach|,education| +ο V engage|,content=teach|,education| +Թ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V AlterIsa|Ƿ + V CauseToBe|ʹ֮ + N human|,*CauseToBe|ʹ֮ +ƾ V indulge| + N attribute|,duration|,#engage|,&human| + V satisfied| +Ψ V CauseToBe|ʹ֮,AccordingTo=intimate| +Ψ V CauseToBe|ʹ֮,AccordingTo=ability| + N affairs| +۵ N attribute|,behavior|ֹ,flighty|,&human| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N phenomena|,sport| + V CauseToBe|ʹ֮ + V employ| +ְ V undertake|,content=occupation|ְλ +صԶ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V RegardAs| + V admit| + V agree|ͬ + V bear|е + V distinguish|ֱ + V know|֪ +ϴ V admit|,content=wrong| +ϵ V know|֪ +϶ V regard|Ϊ +Ϲ V buy|,commercial| +Ϲ V bear|е,content=buy| +Ϲ N human|,*bear|е,#buy| +Ͻ V pay| +Ͼ V donate| +Ͽ V agree|ͬ + V collect| + V know|֪ +ʶ V know|֪ +ʶ N knowledge|֪ʶ + V surrender| +ͬ V admit| +ͬ N emotion|,admit| +Ϊ V regard|Ϊ + V betray| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +֤ V prove|֤ +֪ ADJ know|֪ +֪ V know|֪ +׼ V regard|Ϊ + V admit|,content=crime| + N part|,%tool|þ,*cut|,heart| + N weapon|,*stab| +о N part|,%machine|,*cut|,heart| +Ѹ N human|,female|Ů,*GiveBirth| + V pregnant|,#medical|ҽ + N time|ʱ,@pregnant| + V fasten|˩ + V fasten|˩ + V abandon| + V throw| + V abandon| + ADV {Vcontinue|} +Ծ ADV {Vcontinue|} +Ȼ ADV {Vcontinue|} + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,time|ʱ,day| + N celestial| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N time|ʱ + N time|ʱ,day|,special| + N time|ʱ,morning| + N unit|λ,&time|ʱ +ձɽ V decline|˥ +ձ N publications|鿯 +ձ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N waters|ˮ,ProperName|ר +ձ N human|,(Japan|ձ) +ղ N quantity|,amount|,&crop|ׯ,&artifact|˹,#day| +ճ ADJ aValue|ֵ,kind|,ordinary| +ճ N affairs|,ordinary| +ճ N plans|滮 +ճ̱ N readings|,#plans|滮 +ճ N time|ʱ,day|,morning| +մ N stationery|ľ,*print|ӡˢ +ոһ ADV aValue|ֵ,duration|,TimeLong| +չ N affairs|,industrial|,#day| +չ N human|,#occupation|ְλ,industrial|,#day| +չ N payment| +չ N lights|,#celestial| +չ N tool|þ,*illuminate| +պ N time|ʱ,future| +ջ V gather|ɼ,manner=TimeLong| +ռ N readings| +ռ N readings| +ռ N time|ʱ,day|,morning| +ռ ADV aValue|ֵ,degree|̶,very| +ս ADV aValue|ֵ,degree|̶,very| +ս˥ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +վ N army|,ProperName|ר,(Japan|ձ) +տ N place|ط,city|,ProperName|ר,(China|й) +տ N army|,ProperName|ר,(Japan|ձ) + V endeavour| + N tool|þ,*show|,#time|ʱ + N time|ʱ,day|,night| + N place|ط,city|,ProperName|ר,(Swiss|ʿ) + N time|ʱ,day| +ǰ N time|ʱ,past| + ADJ aValue|ֵ,speed|ٶ,slow| +ҹҹ ADJ aValue|ֵ,duration|,TimeLong| + N human|,commercial|,(Japan|ձ) +䲡 N disease| +ͷ N celestial| + N InstitutePlace|,*TakeCare|,#young|,#human| + N language|,(Japan|ձ) + V change| +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,night| +Լҹ ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,degree|̶,very| + V BecomeMore| + ADJ aValue|ֵ,property|,$use| +ðٻ N artifact|˹,generic|ͳ,commercial| +Ʒ N artifact|˹ + N language|,#country|,ProperName|ר +Ԫ N money|,(Japan|ձ) +Բ N money|,(Japan|ձ) + N attribute|,circumstances|,&human| + ADJ aValue|ֵ,speed|ٶ,fast| + N lights| + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,#illuminate|,#celestial| + ADV aValue|ֵ,degree|̶,very| +־ N document| + N time|ʱ,afternoon| + N attribute|,circumstances|,&human| + N time|ʱ + N time|ʱ,day| + N lights| + N affairs|,military| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + N human|,past| + N affairs|,military| +װ N clothing|,military| + N part|,%beast|,*feel| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N place|ط,city|,ProperName|ר,(China|й) +س N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V prosper| +ٹ V GoBack| +ٻ N attribute|,reputation|,glorious|,desired|,&human| +ٻ N attribute|,situation|״,rich|,glorious|,desired|,&human| +ٻ V obtain|õ + N attribute|,reputation|,&human|,&organization|֯ +빲 V bear|е,means=together|ͬ + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + N experience|,#reputation| + N human|,military|,*disable|м + V obtain|õ + V StateChange|̬,StateFin=liquid|Һ + V StateChange|̬,StateFin=liquid|Һ,industrial| + N character|,surname|,human|,ProperName|ר + V fit|ʺ +ں V merge|ϲ +ں V merge|ϲ,industrial| +ڻ V StateChange|̬,StateFin=liquid|Һ +ڻ V merge|ϲ +ڻͨ V understand| +ڽ V StateChange|̬,StateFin=liquid|Һ +Ǣ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + V joyful|ϲ +ͨ V circulate|ѭ,commercial| + V provide|,possession=fund|ʽ + V burn|,industrial| +۵ N attribute|,boundary|,&burn| +۶ V break|۶,#electricity| +ۻ V StateChange|̬,StateFin=liquid|Һ +۽ V StateChange|̬,StateFin=liquid|Һ,industrial| + V burn|,industrial| +¯ N facilities|ʩ,space|ռ,@burn|,#metal|,@produce|,#material| + V StateChange|̬,StateFin=liquid|Һ,industrial| + N stone|ʯ + V produce|,means=burn|,industrial| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ܶ N part|,%inanimate|,mouth| +ܻ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܼ N chemical|ѧ +ܽ N inanimate| +ܽ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܽ N quantity|,rate|,StateChange|̬,&inanimate| +ܽ N attribute|,ability|,#liquid|Һ +ʴ V StateChange|̬,StateFin=liquid|Һ,industrial| +Һ N water|ˮ,*contain|,#material| + N chemical|ѧ + V agree|ͬ + N character|,surname|,human|,ProperName|ר + V contain| + V endure| +ݲ V TolerateNot| +ݲ÷ V TolerateNot|,target=disagree|ͬ +ݻ N attribute|,volume|ݻ,&inanimate| + N attribute|,volume|ݻ,&inanimate| +ò N attribute|,appearance|,&AnimalHuman| + V contain| + N tool|þ,@put|,@store|,generic|ͳ + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V endure| + V forgive|ԭ + V reside|ס + ADJ aValue|ֵ,ability|,able|,$agree|ͬ + V agree|ͬ + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + ADJ aValue|ֵ,easiness|,easy|,desired| +׷ V happen|,manner=easy| +׸ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +׽ V accept|,manner=easy| + N material|,?clothing|,?tool|þ + N part|,%AnimalHuman|,hair|ë +޲ N material|,?clothing|,?tool|þ +޻ N tool|þ,*decorate|װ +޿ N clothing|,#leg| +ë N material|,?clothing|,?tool|þ +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë״ ADJ aValue|ֵ,form|״,hair|ë +ͷ N material|,?clothing|,?tool|þ,*weave| +ͷ N tool|þ,*weave| + N material|,*decorate|װ + N material|,?clothing|,?tool|þ,*weave| + N clothing|,#body| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +߳ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N attribute|,necessity|Ҫ,redundant|,&entity|ʵ +Ա N human|,employee|Ա,redundant| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V PlayWith|Ū + V rub|Ħ + V PlayWith|Ū + V rub|Ħ +Ū V PlayWith|Ū + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N fact|,exercise| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + N emotion|,gentle| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| +⻬ ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + N fact|,sport| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N fish| + ADJ aValue|ֵ,behavior|ֹ,passive| + N part|,%AnimalHuman|,flesh| + N part|,%fruit|ˮ,flesh|,$eat| +ⲫ V fight|,military| +ⶡ N food|ʳƷ,#flesh| +ⶹޢ N fruit|ˮ + N tree|,?medicine|ҩ + ADJ aValue|ֵ,fatness|,fat| +⼦ N bird| + N part|,%animate|,flesh| +˰ߴ ADJ aValue|ֵ,behavior|ֹ,passive| + N disease| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĩ N food|ʳƷ,#flesh| +ţ N livestock| + N food|ʳƷ,#flesh| +Ƥ N part|,%human|,skin|Ƥ +Ƥ N part|,%livestock|,skin|Ƥ +Ƭ N food|ʳƷ,#flesh| + N bird| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| + N food|ʳƷ + N food|ʳƷ,$eat|,liquid|Һ + N part|,%AnimalHuman|,body| + N part|,%human|,body| + N food|ʳƷ,#flesh| + N part|,%AnimalHuman|,#eye| +Ʒ N food|ʳƷ,#flesh| +д N human|,enemy| + N livestock| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + V eat| + V crawl| +䶯 V crawl| + V crawl| + N human|,literature| + N human|,literature|,ProperName|ר,past| + N community|,#knowledge|֪ʶ + N human|,literature| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N beast|,*swim| + N human|,young| + N human|,young| +ţ N human|,employee|Ա + V BeSimilar| + CONJ {condition|} + ADV {supplement|ݽ} +糣 ADV aValue|ֵ,frequency|Ƶ,regular| + V joyful|ϲ +һ V BeSame|ͬ + ADJ aValue|ֵ,kind|,special| +˵ȵ COOR {and|} + ADJ aValue|ֵ,kind|,special| + ADV {supplement|ݽ} + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +̺ V ignorant|֪ +編 V imitate|ģ + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + CONJ {condition|} + ADV {manner|ʽ,question|} +绢 ADJ aValue|ֵ,ability|,able| +ݱ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V joyful|ϲ +缢ƿ V worried|ż +罺 ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV time|ʱ,now| +׹ ADJ aValue|ֵ,reputation|,glorious|,desired| +ı ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +γ V understand| +ɢ V flee| +ƽʱһ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,behavior|ֹ,proper|,#time|ʱ,desired| +ǰ ADV {comment|} + V prosper| + CONJ {condition|} +ɥ V sorrowful| + ADV {comment|} + ADV {comment|} +ʵ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʵ N attribute|,size|ߴ,&physical| +ظ V AtEase| + ADJ qValue|ֵ,amount|,all|ȫ +黹 V return|,quantity=all|ȫ + V return|,quantity=all|ȫ +˻ V return|,quantity=all|ȫ +˹ ADJ aValue|ֵ,degree|̶,more| +ͬ V BeSimilar| +һ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV {supplement|ݽ} +ϸ V SeekRefuge|Ͷ + V satisfied| + N tool|þ,*decorate|װ +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ը V fulfil|ʵ,patient=aspiration|Ը +ԸԳ V satisfied| + ADJ qValue|ֵ,amount|,many| + V joyful|ϲ +ձ V uneasy| + V damage| + V slander|̰ + V ExpressAgainst|Ǵ + N human|,*ExpressAgainst|Ǵ +û V slander|̰ + N human|,young| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N shape|,liquid|Һ +鰩 N disease| + ADJ aValue|ֵ,color|ɫ,white| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N part|,%AnimalHuman|,*bite|ҧ +δ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| +鷿 N part|,%AnimalHuman|,body| + N food|ʳƷ + N bird|,?food|ʳƷ +黯 V ize|̬,PatientAttribute=liquid|Һ,industrial| +黯 N chemical|ѧ + N medicine|ҩ,liquid|Һ +齺 N material|,sticky|,*fix|ס,*fasten|˩ + N food|ʳƷ +ĸ N human|,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +Ʒ N edible|ʳ + N chemical|ѧ + N material|,?food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ״ ADJ aValue|ֵ,form|״ +ͻ N disease| + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N material| + N part|,%AnimalHuman|,*bite|ҧ +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N livestock|,young| +״ ADJ aValue|ֵ,form|״ + PRON {SecondPerson|} +۳ N character|,surname|,human|,ProperName|ר + V GoInto| + V fit|ʺ + V include| + N payment| +벻 V lack|ȱ +볡 V GoInto| +볡ȯ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +봺 V start|ʼ,agent=time|ʱ,spring| +뵳 V include|,ResultWhole=community|,politics| +붬 V start|ʼ,agent=time|ʱ,winter| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + V GoInto|,LocationFin=facilities|ʩ + ADJ aValue|ֵ,content|,profound|,desired| + V include|,SourceWhole=community|,commercial| +뻧 V GoInto|,LocationFin=house| +뻭 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V include| + N human|,*include| + V include|,ResultWhole=community| +뾳 V GoInto|,LocationFin=country| + N part|,%building|,mouth| +ڴ N part|,%building|,mouth| + V attack|,military| + V store| + N readings|,NotProfound|dz + V appear| + V sleep|˯ + V sleep|˯ + ADJ FondOf|ϲ + V FondOf|ϲ +ħ V FondOf|ϲ +ľ ADJ aValue|ֵ,content|,profound|,desired| + V attack|,military| + N human|,*attack|,military| + V start|ʼ,agent=time|ʱ,autumn| + V FondOf|ϲ + ADJ aValue|ֵ,kind|,special| + N sound|,#language| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + V start|ʼ +˯ V sleep|˯ + V bury| + V include|,ResultWhole=community|,politics| + V include|,ResultWhole=institution| + V record|¼,content=internet| +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Χ V win|ʤ +ζ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| + V include|,ResultWhole=army|,military| +ϯ V sit| + V start|ʼ,agent=time|ʱ,summer| +ѡ V win|ʤ +ѧ V include|,ResultWhole=education|,education| +ѧ N fact|,exam| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҩ V RegardAs|,ResultIsa=medicine|ҩ +ҹ N time|ʱ,night| + V suffer|,content=detain|ס,crime|,police| +Ժ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V record|¼,LocationFin=account|,commercial| +׸ V MarryTo| + V sit| + V put|,LocationFin=tool|þ + N tool|þ,@LieDown| +촯 N disease| +쵥 N tool|þ,@LieDown|,*cover|ڸ + N tool|þ,*cover|ڸ + N tool|þ,@LieDown| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +װ ADJ aValue|ֵ,property|,soft|,#wrap| + N tool|þ,*record|¼ + N material|,?clothing|,?tool|þ + N wind| + N medicine|ҩ + N part|,%AnimalHuman|,bone| +ͷ N human|,undesired|ݬ,timid| + N tool|þ,linear| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V ize|̬,PatientAttribute=soft| + V win|ʤ + N software| + N software| + V detain|ס,police| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ĥ V MakeTrouble| +ľ N wood|ľ,material| + N tool|þ,*record|¼ +Ƭ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,hardness|Ӳ,soft|,ish| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ʳ N edible|ʳ,generic|ͳ +ˮ N water|ˮ + N food|ʳƷ + N part|,%building|,nerve| +嶯 N AnimalHuman|,generic|ͳ + N part|,%LandVehicle|,@sleep|˯ +ϯ N part|,%LandVehicle|,@sit| +ϯ N part|,%LandVehicle|,@sleep|˯ + N attribute|,content|,interesting|Ȥ,readings| + N drinks|Ʒ,generic|ͳ +Ӳ N part|,%software|,%computer| +½ N fact|,*arrive|,#aircraft| + N part|,%LandVehicle|,@sit| + N part|,%AnimalHuman|,mouth| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sweden|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Sweden|) + N human|,(Sweden|) + N language|,#country|,ProperName|ר + N money|,(Cambodia|կ) +ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swiss|ʿ) +ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʿ N money|,(Liechtenstein|֧ʿ) +ʿ N money|,(Swiss|ʿ) +ʿ N human|,(Swiss|ʿ) +ѩ N RainSnow|ѩ,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| +񲻿ɵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V BecomeLess|,manner=sudden| + N image|ͼ,angular| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&human| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N time|ʱ + N time|ʱ,year| + N time|ʱ,month| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V decorate|װ + V lubricate|,industrial| + V moisten|ʪ + V lubricate|,industrial| +󻬼 N material|,liquid|Һ,*lubricate| + N material|,liquid|Һ,*lubricate| +֬ N material|,liquid|Һ,*lubricate| +ɫ V MakeBetter|Ż +ɫ V decorate|װ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V moisten|ʪ + CONJ {condition|} + N InsectWorm| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V calm| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V inferior| + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + V weaken| + V ill|̬,#eye| + N chemical|ѧ + N attribute|,quality|,weak|,&human|,&organization|֯ +С ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V indulge| + V spray| + V spread| + V throw| + V release|ͷ,patient=LandVehicle| + N humanized|,evil| + V IllBehave| + N place|ط,ProperName|ר +ɳĮ N place|ط,ProperName|ר + V recreation| + V TalkNonsense|Ϲ˵ + V please|ȡ + V release|ͷ + V IllBehave| + V excrete|й,patient=liquid|Һ + V IllBehave| + V ExpressAnger|ʾŭ + V leak|©,content=gas| + V cease|ͣ + V release|ͷ +ֲ V cease|ͣ + V die| +ȥ V die| + N tool|þ,strong|ǿ,desired|,*win|ʤ + V run| +Ⱦ V run| + V throw|,patient=tool|þ,#catch|׽ס,#fish| +Ѽ V run| +Ѿ V run| +Ұ V IllBehave| + V spray| + V spread| + V weep| + V fall| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ˮ V LandVehicle|,spread|,#water|ˮ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + V spray| + N character|,surname|,human|,ProperName|ר +߶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|߶) +߶ N place|ط,country|,ProperName|ר,(South America|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|ά) +ά N place|ط,country|,ProperName|ר,(South America|) +ղ N place|ط,city|,ProperName|ר,(Yugoslavia|˹) + N place|ط,city|,ProperName|ר,(Yugoslavia|˹) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Samoa|Ħ) +Ħ N place|ط,country|,ProperName|ר +Ħ N language|,#country|,ProperName|ר + N food|ʳƷ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,nerve| + N disease| + N part|,%fish|,*respire| + V fill| + N part|,%artifact|˹,generic|ͳ + N place|ط,country|,ProperName|ר,(Senegal|ڼӶ) + N place|ط,important|,military| + N place|ط,(China|й) + N sound|,#language| + V suffer|,content=$BlockUp|,experiencer=LandVehicle| + N language|,#country|,ProperName|ר + N money|,(Ghana|) +ά N place|ط,ProperName|ר,(Yugoslavia|˹) +ά-޵ N language|,#country|,ProperName|ר +ά N human|,(Yugoslavia|˹) +ά N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sierra Leone|) + N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Senegal|ڼӶ) +ڼӶ N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ N human|,(Senegal|ڼӶ) +·˹ N aValue|ֵ,attachment|,#country|,ProperName|ר,(Cyprus|·˹) +·˹ N place|ط,country|,ProperName|ר,(Asia|) +·˹ N money|,(Cyprus|·˹) +·˹ N human|,(Cyprus|·˹) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Seychelles|) + N place|ط,country|,ProperName|ר,(Africa|) +¬ N money|,(Seychelles|) + N human|,(Seychelles|) + N language|,#country|,ProperName|ר + N place|ط,(China|й) +ά N place|ط,ProperName|ר,(Spain|) +ʧ EXPR lucky| + N sound|,#language| + N part|,%artifact|˹,generic|ͳ + N community|,ProperName|ר,(Yugoslavia|˹) + V compete| + N fact|,compete| + V surpass|ǿ + N facilities|ʩ,space|ռ,@compete|,sport| + N SportTool|˶,LandVehicle|,*compete| + N fact|,compete|,#LandVehicle| + N process|,#compete| + V surpass|ǿ + V compete|,sport| + N fact|,compete|,run| + N fact|,compete| +ͧ N ship|,*compete| +ͧ˶ N fact|,compete|,#ship|,sport| + N material|,?tool|þ + N material|,?tool|þ + NUM qValue|ֵ,amount|,cardinal|,mass| +K N community|,(US|) +˸Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +˽ N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +ʮ N attribute|,occupation|ְλ,mass|,&human| +൹ V engage|,content=affairs|,#duty|,#sequence| +̥ N human|,family|,mass| + ADJ qValue|ֵ,amount| + ADJ aValue|ֵ,form|״ + N music| + N fact|,eat| +· N location|λ,%route|· + V die| + N phenomena|,undesired|ݬ,#unfortunate|,#die| + N human|,family| + N time|ʱ,past| +ϵ N time|ʱ,past| + N knowledge|֪ʶ +۷ N knowledge|֪ʶ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,frequency|Ƶ,again| + N time|ʱ,summer|,hot| + N time|ʱ,day|,night| +ҹ N time|ʱ,day|,night| +é® V invite| + N place|ط,#human|,country|,politics|,mass| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ +һ ADJ aValue|ֵ,property|,$merge|ϲ + ADJ part|,implement| + N fact|,exercise|,sport| +Զ N fact|,exercise|,sport| + N crop|ׯ + V KeepSilence|˵ +ż N tool|þ,#TakePicture| + ADJ aValue|ֵ,form|״ + N image|ͼ,angular| + N knowledge|֪ʶ,#image|ͼ +ǰ N tool|þ,*measure| +dz N tool|þ,*measure| +Ƿ N tree| +ǹε N tool|þ,*cut| +Ǻ N symbol|,#quantity|,#DoSum| +ǿ N clothing|,#leg| + N fact|,love| + N material|,metal| + ADJ aValue|ֵ,form|״ + N land|½,surfacial|,#waters|ˮ + ADJ aValue|ֵ,property|,$merge|ϲ + N army| + N army|,generic|ͳ + ADJ aValue|ֵ,form|״ +⾵ N tool|þ,#lights| + V order| + N LandVehicle| +ֳ N LandVehicle| + N knowledge|֪ʶ + N food|ʳƷ + N time|ʱ + ADJ qValue|ֵ,amount|,some|Щ + V lucky| +ʮ V BeGood|̬ +˼ V think|˼,manner=attentive|ϸ +˼ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ͷ ADV aValue|ֵ,frequency|Ƶ,often| +ͨ N tool|þ +ά ADJ aValue|ֵ,form|״,cubic| +λһ ADJ aValue|ֵ,property|,$merge|ϲ +Ⱥ ADJ qValue|ֵ,amount|,some|Щ + N edible|ʳ,#taste|ζ,good| + N MusicTool| +Ķ V hesitate|ԥ + N place|ط,city|,ProperName|ר,(China|й) + N time|ʱ,month| +· N time|ʱ,month| +㶦 V BeOpposite| + NUM qValue|ֵ,amount|,cardinal|,mass| +ɡ N shape| +ɡ N tool|þ,#RainSnow|ѩ,*protect| +ɡ N human|,military| +ɡ N army| +ɡ V fall|,sport|,military| +ɡͶ V drop|Ͷ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ɢ V disperse|ɢ +ɢ V issue|ַ +ɢ N medicine|ҩ +ɢ V release|ͷ +ɢ V spread| +ɢ N human|,military| +ɢ N human|,military|,undesired|ݬ +ɢ V disseminate| +ɢ V disseminate| +ɢ V spread| +ɢ V walk| +ɢ V finish|,entertainment| +ɢ N fact|,sport| +ɢ V issue|ַ +ɢ V spread| +ɢ N disease|,#eye| +ɢ V finish| +ɢ V separate| +ɢ N inanimate|,commercial| +ɢ N medicine|ҩ +ɢ N text| +ɢ V separate| +ɢ V disperse|ɢ +ɢ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɢ V disperse|ɢ +ɢ V fall| +ɢ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɢ V remove|,patient=upset| +ɢ V remove|,patient=heat| +ɢȹ N part|,%tool|þ,*remove|,#heat| +ɢƬ N part|,%tool|þ,*remove|,#heat| +ɢ N tool|þ,*remove|,#heat| +ɢɢ V remove|,patient=upset| +ɢʧ V disappear|ʧ +ɢ̯ V separate| +ɢ N text| +ɢļ N human|,*compile|༭,literature| +ɢʫ N text| +ɢϯ N location|λ,@sit| +ɢ V MakeHappy|ʹϲ,means=WhileAway| +ɢװ ADJ aValue|ֵ,property|,$wrap|,unattached|ɢ +ɢװơ N drinks|Ʒ,$addict|Ⱥ +ɢ N location|λ,@sit| +ɢ V disappear|ʧ +ɢ V disappear|ʧ +ɣ N character|,surname|,human|,ProperName|ר +ɣ N part|,%tree|,embryo| +ɣ N tree| +ɣ N InsectWorm| +ɣ N language|,#country|,ProperName|ר +ɣԡ N fact|,wash|ϴ,#body| +ɣƤֽ N paper|ֽ +ɣ N tree| +ɣҶ N part|,%tree|,hair|ë +ɣĺ N time|ʱ,#aged| +ɣ԰ N facilities|ʩ,space|ռ,*planting|ֲ +ɣ N part|,%tree|,embryo| +ɣ N place|ط,@ComeToWorld| +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤӲ ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +ɤӺ ADJ aValue|ֵ,SoundQuality|,good|,desired| +ɥ N fact|,salute|¾,#die| +ɥ V lose|ʧȥ +ɥ V fear| +ɥ N clothing|,*salute|¾,#die| +ɥ V fear| +ɥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N fact|,uprise|,undesired|ݬ,politics| +ɥ V die| +ɥż V lose|ʧȥ,possession=human| +ɥ V disheartened| +ɥ V unfortunate| +ɥȨ V surrender| +ɥ V die| +ɥʧ V lose|ʧȥ +ɥʧ N human|,*lose|ʧȥ +ɥ N fact|,salute|¾,#die| +ɥIJ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N expenditure|,#salute|¾,#die| +ɥ N sound|,*tell|,#die| +ɦ V scratch|ץ +ɦͷŪ V show|,content=flighty| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɧ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ɧ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ɧ N fact|,uprise|,undesired|ݬ,politics| +ɧȺ N human|,disorder|,undesired|ݬ,mass| +ɧ N human|,female|Ů,flighty|,undesired|ݬ +ɧ N human|,*compile|༭,literature| +ɧ N fact|,uprise| +ɧ ADJ aValue|ֵ,occasion|,bustling| +ɧ V MakeTrouble| +ɧ N human|,*compile|༭,literature| +ɧī N human|,*compile|༭,literature| +ɨ V GoThrough| +ɨ V remove| +ɨ V wipe| +ɨ N tool|þ,*wipe| +ɨ V remove| +ɨ V wipe| +ɨ V destroy|,military| +ɨ V wipe|,patient=part|,#building| +ɨس V expel| +ɨ V remove|,patient=medicine|ҩ,#addict|Ⱥ +ɨ V wipe|,patient=room| +ɨ V condole|° +ɨ V destroy|,patient=crime|,police| +ɨ V destroy|,patient=lascivious|,police| +ɨ׽ N weapon|,ship|,military| +ɨͧ N weapon|,ship|,military| +ɨä V exempt|,ResultEvent=ignorant|֪ +ɨ V look|,industrial| +ɨ N tool|þ,look|,industrial| +ɨ V destroy|,military| +ɨĹ V condole|° +ɨ V shoot| +ɨβ V finish| +ɨ V disappointed|ʧ +ɨ V disappoint| +ɨѩ N LandVehicle|,*remove|,#RainSnow|ѩ +ɨ N tool|þ,*wipe| +ɨ N celestial| +ɨ N human|,undesired|ݬ,*CauseToDo|ʹ,#unfortunate| +ɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɩɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɪ N MusicTool|,(China|й) +ɪɪ V shiver| +ɪɪ ECHO sound| +ɪ V shiver| +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N attribute|,scene|,&inanimate| +ɫ N attribute|,color|ɫ,&physical| +ɫʰ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫͷ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ N attribute|,standard|׼,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N lights|,colored| +ɫ N human|,lascivious|,undesired|ݬ +ɫ N food|ʳƷ +ɫ N material|,?food|ʳƷ +ɫ N human|,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ɫä N disease|,#eye| +ɫä N human|,undesired|ݬ,*disable|м,#look| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ N phenomena|,#color|ɫ,#lights| +ɫ ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ +ɫ N human|,lascivious|,undesired|ݬ +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɫ N part|,%animate|,#color|ɫ +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ֯ N material|,?clothing| +ɫ N tool|þ,*gamble|IJ +ɬ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ɭ ADJ aValue|ֵ,brightness|,dark| +ɭ N tree| +ɭԱ N human|,*remove|,fire| +ɭȻ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| +ɭɭ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭ ADJ aValue|ֵ,behavior|ֹ,strict| +ɮ N human|,religion|ڽ +ɮ V lack|ȱ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,mass|,#religion|ڽ +ɮͽ N human|,religion|ڽ +ɮ٤ N human|,(Singhalese|ɮ٤) +ɮ٤ N language|,#country|,ProperName|ר +ɯ N character|,(China|й) +ɯ N clothing| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰ N material|,?building| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰʯ N stone|ʯ,material| +ɰ N material|,?food|ʳƷ +ɰ N stone|ʯ,material| +ɰ N stone|ʯ,material| +ɰ N part|,%inanimate| +ɰֽ N tool|þ,*grind|ĥ +ɰ N stone|ʯ,material| +ɱ V fight| +ɱ V fight|,military| +ɱ V kill|ɱ +ɱ V weaken| +ɱ N chemical|ѧ,*destroy|,#InsectWorm| +ɱ羰 V discourage|ˮ +ɱ V kill|ɱ +ɱ￴ V frighten|Ż +ɱȡ V WorthNot|ֵ +ɱź V frighten|Ż +ɱ V subtract|,patient=price|۸,commercial| +ɱ ADJ aValue|ֵ,ability|,able|,remove|,#bacteria|΢,medical|ҽ +ɱ V remove|,patient=bacteria|΢,purpose=clean|ʹ,medical|ҽ +ɱ N chemical|ѧ,*destroy|,#bacteria|΢ +ɱ¾ V kill|ɱ +ɱ¾ V kill|ɱ,crime| +ɱ V destroy| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ V fulfil|ʵ,patient=compile|༭,#readings| +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ,#human| +ɱ V kill|ɱ,crime| +ɱ˰ N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| +ɱ˲Ѫ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˲Ѫ V kill|ɱ,crime| +ɱ˲գ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˷ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱԽ V rob| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ V endeavour| +ɱ֮ N phenomena|,undesired|ݬ,#unfortunate| +ɱ V kill|ɱ,patient=AnimalHuman| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ N weapon| +ɱ V kill|ɱ +ɱͷ V kill|ɱ +ɱһӰ V frighten|Ż +ɲ V cease|ͣ +ɲ N facilities|ʩ,space|ռ,religion|ڽ +ɲ V fix|ס +ɲ V TurnOff|ֹ,content=machine| +ɲ V cease|ͣ +ɲ V fix|ס +ɲ ADJ aValue|ֵ,duration|,TimeShort| +ɲǼ ADJ aValue|ֵ,duration|,TimeShort| +ɲʱ ADJ aValue|ֵ,duration|,TimeShort| +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ ADJ aValue|ֵ,form|״,round|Բ +ɳ N character|,surname|,human|,ProperName|ר +ɳ N stone|ʯ,material| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N place|ط,military|,@fight| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N tool|þ,*exercise| +ɳ N land|½ +ɳ N fish| +ɳ N furniture|Ҿ,space|ռ,@sit| +ɳ N tool|þ,cubic|,@cook| +ɳ N land|½,surfacial|,desolate|,undesired|ݬ +ɳ N human|,royal|,(Russia|˹) +ɳ N food|ʳƷ +ɳ N material|,?food|ʳƷ +ɳ N InstitutePlace|,@WhileAway|,commercial| +ɳϾ N bacteria|΢ +ɳĮ N land|½,surfacial|,barren| +ɳĮ V ize|̬,PatientAttribute=barren|,#stone|ʯ +ɳ N tool|þ,military| +ɳ N stone|ʯ,material| +ɳɳ ECHO sound| +ɳʯ N stone|ʯ,material| +ɳ N place|ط,city|,ProperName|ר,(China|й) +ɳ̲ N land|½ +ɳ N money|,(Saudi Arabia|ɳ) +ɳ N place|ط,country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ N place|ط,country|,ProperName|ר,(Asia|) +ɳ N land|½ +ɳ N stone|ʯ +ɳ N thinking|˼ +ɳ ADJ thinking|˼ +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ N disease|,#eye| +ɳ ADJ aValue|ֵ,material|,stone|ʯ +ɳ N land|½ +ɳ N shape| +ɳ N stone|ʯ,material| +ɳ N beast| +ɴ N material|,?clothing| +ɴ N tool|þ +ɴ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ɴ N furniture|Ҿ,cubic|,@store| +ɴ N part|,%building| +ɴ N tool|þ,*illuminate| +ɴ N part|,%machine| +ɴ N clothing| +ɴ N clothing| +ɴ N material|,linear| +ɵ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N human|,foolish|,undesired|ݬ +ɵǺ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N text|,foolish| +ɵ N attribute|,strength|,stiff|,&human| +ɵ V laugh|Ц,manner=foolish| +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵñ N human|,foolish|,undesired|ݬ +ɵ N event|¼,foolish| +ɵͷɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵЦ V laugh|Ц,manner=foolish| +ɵ V stupefied|ľȻ +ɵ N human|,foolish|,undesired|ݬ +ɶ ADJ aValue|ֵ,kind|,question| +ɶ N entity|ʵ,question| +ɷ V cease|ͣ +ɷ V tighten|ս +ɷ V weaken| +ɷ V TurnOff|ֹ,patient=machine| +ɷ V cease|ͣ +ɷ N part|,%vehicle|ͨ,*TurnOff|ֹ +ɷ V tighten|ս +ɷѿ V think|˼,manner=endeavour| +ɷĻ V think|˼,manner=endeavour| +ɷ羰 V discourage|ˮ +ɷβ V finish| +ɷβ N process|,ending|ĩ +ɷн V pretend|װ +ɷס V cease|ͣ +ɸ V filter| +ɸ N tool|þ,*filter| +ɸ V shiver| +ɸѡ V choose|ѡ +ɸ N tool|þ,*filter| +ɹ V dry| +ɹ V illuminate| +ɹ V dry| +ɹ̫ V illuminate| +ɹͼ V print|ӡˢ +ɹ N addictive|Ⱥ +ɺ N character|,(China|й) +ɺ N material|,?tool|þ,#decorate|װ,precious| +ɺ N stone|ʯ,material| +ɻ V cover|ڸ +ɻ N tool|þ,*cover|ڸ +ɼ N tree| +ɼľ N wood|ľ +ɽ N character|,surname|,human|,ProperName|ר +ɽ N land|½ +ɽ N shape| +ɽ N land|½ +ɽ N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ɽ N medicine|ҩ,(China|й) +ɽ N FlowerGrass| +ɽ軨 N FlowerGrass| +ɽ N place|ط,city| +ɽ N land|½ +ɽȹ N FlowerGrass| +ɽ N place|ط,village| +ɽ N FlowerGrass| +ɽ N facilities|ʩ,route|· +ɽ N medicine|ҩ +ɽ N land|½ +ɽ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɽ N part|,%land|½,head|ͷ +ɽ N part|,space|ռ,%land|½,head|ͷ +ɽ N human|,past| +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽ N shows| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,head|ͷ +ɽ N wind| +ɽ N land|½ +ɽˮ ADJ aValue|ֵ,duration|,TimeLong| +ɽˮ N phenomena|,#unfortunate|,undesired|ݬ +ɽˮԶ ADJ aValue|ֵ,distance|,far|Զ +ɽˮԶ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N music|,$sing| +ɽ N part|,%land|½,base| +ɽ N land|½ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽˮɫ N attribute|,scene|,&inanimate| +ɽ N place|ط,#human|,country|,politics| +ɽ N place|ط,ProperName|ר,(China|й) +ɽ N fruit|ˮ +ɽ N place|ط,#country| +ɽ N water|ˮ,strong|ǿ,#land|½ +ɽ N physical| +ɽ N bird| +ɽ N part|,%land|½,body| +ɽ N waters|ˮ,linear| +ɽ N part|,%land|½,base| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,body| +ɽ N tree| +ɽ N part|,%land|½,body| +ɽ´ N part|,%land|½,base| +ɽ· N facilities|ʩ,route|· +ɽ N land|½ +ɽ N land|½ +ɽè N beast| +ɽë N tree| +ɽ N community|,religion|ڽ +ɽ N human|,agricultural|ũ +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽ N part|,%land|½,skin|Ƥ +ɽǽ N part|,%house| +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽˮ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɽ N land|½ +ɽ N place|ط +ɽȪ N waters|ˮ,surfacial| +ɽȸ N bird| +ɽɫ N attribute|,scene|,&inanimate| +ɽɽˮˮ N attribute|,scene|,&inanimate| +ɽˮ N attribute|,scene|,&inanimate| +ɽˮ N image|ͼ,$draw| +ɽˮ N image|ͼ,$draw| +ɽˮ V BeNear| +ɽͷ N community|,undesired|ݬ +ɽͷ N facilities|ʩ,military|,space|ռ,#land|½ +ɽͷ N part|,%land|½,head|ͷ +ɽ N place|ط +ɽ N place|ط +ɽ N land|½ +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽϵ N place|ط +ɽϿ N part|,%land|½,linear|,#water|ˮ +ɽ N place|ط,village| +ɽ N part|,%land|½,skin|Ƥ +ɽ N livestock| +ɽ N part|,%livestock|,hair|ë,?material| +ɽ N part|,%land|½,body| +ɽҩ N part|,%vegetable|߲,embryo|,$eat| +ɽҩ N vegetable|߲ +ɽ¥ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N part|,%vegetable|߲,embryo|,$eat| +ɽ N vegetable|߲ +ɽ N land|½ +ɽկ N place|ط +ɽ亣ζ N food|ʳƷ,generic|ͳ +ɽׯ N house| +ɽ N part|,%earth|,mouth| +ɽ N land|½ +ɽ N fruit|ˮ +ɽ N tree| +ɽ N bird| +ɽ N beast| +ɾ V remove| +ɾ V remove| +ɾ V remove| +ɾͼ V compile|༭,means=subtract| +ɾ V MakeBetter|Ż +ɾ V compile|༭,means=subtract| +ɾ V subtract| +ɾں N symbol|,#text| +ɾȥ V remove| +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ N human|,*persuade|Ȱ˵,undesired|ݬ +ɿ V incite|ָʹ + N clothing|,#body| + V CausePartMove| + V escape| + V illuminate| + V wounded| + V escape| + V wounded| + N thunder| +ʽ ADJ aValue|ֵ,behavior|ֹ,sudden| +ս N fact|,fight|,military| + V illuminate| + V escape| + V illuminate| + N lights| + N tool|þ,#TakePicture|,*illuminate| + N tool|þ,*illuminate|,#information|Ϣ + V attack|,manner=sudden|,military| +ս N fact|,fight|,military| + V escape| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V illuminate| + V illuminate| + V SelfMoveInManner|ʽ + V escape| +ʧ N phenomena|,unfortunate|,undesired|ݬ +˸ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +˸ V illuminate| +˸ V KeepSilence|˵ + V appear|,manner=fast| +ҫ V illuminate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N shows| + V BeAble|ܹ + V do|,manner=self| +ó V BeAble|ܹ +ְ V cease|ͣ,content=undertake|,manner=self| +Ȩ V control|,patient=power|,manner=self| + V do|,manner=self| + V do|,manner=self| + V ProvideFor| + ADJ qValue|ֵ,amount|,many|,desired| + V ProvideFor| + N expenditure|,*ProvideFor| + N food|ʳƷ,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ + N food|ʳƷ,place|ط,@reside|ס + V BeAble|ܹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ưո V do|,manner=willing|Ը +Ʊ N readings|,precious| +Ʊ N human|,*debate| +ƴ V WellTreat|ƴ +ƺ N result| +ƾ N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,religion|ڽ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + V BeAble|ܹ +ս V BeAble|ܹ,content=fight| + N place|ط,city|,ProperName|ר,(China|й) +ͷ N place|ط,city|,ProperName|ר,(China|й) + V incite|ָʹ + V shake|ҡ + N tool|þ,#wind|,*cool| +ȱ N fish| +ȳ N tool|þ,#crop|ׯ,generic|ͳ +ȶ V incite|ָʹ +ȶ V shake|ҡ +ȷ V MakeTrouble| +ȹ N part|,%tool|þ,#wind|,#cool|,bone| +Ȼ V incite|ָʹ + N tool|þ,#wind|,*cool| + N tool|þ,#wind|,*cool| + N shape| + N tool|þ,#wind|,*cool| + V copy|д + V repair| +д V copy|д + N attribute|,dampness|ʪ,&physical| + N attribute|,dampness|ʪ,&physical| + V damage| + N disease|,wounded| + V disgust| + V offend| + V sorrowful| +˰ N trace|,#wounded| +˱ V sorrowful| +˱ N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲Ա N human|,*wounded| +˲Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲ V lose|ʧȥ,possession=wealth|Ǯ +˲ V disable|м +˲ N human|,*disable|м,undesired|ݬ +˷ V fever| +˷ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˸ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +˺ V damage| +˺ V offend| +˺ N disease| +˺ N human|,undesired|ݬ,*wounded| +˺ N trace|,#wounded| +˻ V sorrowful| +˽ N wounded| +˿ N location|λ,#disease|,#wounded| +Խ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N attribute|,circumstances|,&wounded|,#medical|ҽ + V damage|,patient=human| + V offend|,patient=human| + N attribute|,circumstances|,&wounded|,#medical|ҽ +캦 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʹ N disease| + N phenomena|,wounded|,die|,undesired|ݬ +¹ N phenomena|,unfortunate|,wounded|,die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V sorrowful| +IJĿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ + N affairs|,commercial| + V discuss| + N human|,#occupation|ְλ,commercial| + N music| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̱ N mark|־,commercial| +̱귨 N law|ɷ,#mark|־,commercial| +̱Ȩ N rights|Ȩ,#mark|־,commercial| +̲ N place|ط,city|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̳ N community|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̴ N ship|,commercial| +̴ N human|,#occupation|ְλ,official|,#ship| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +̶ V decide|,means=discuss| +̶ V discuss| +̶ N human|,commercial| +̷ N law|ɷ,commercial| +̷ N human|,#occupation|ְλ,*sell|,commercial| +̸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +̺ N InstitutePlace|,*sell|,@buy|,commercial| +̻ N institution|,commercial| +̼ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +̼ N human|,#occupation|ְλ,commercial| +̼ N fact|,*investigate|,#physical| +̼ N institution|,*investigate|,#physical| +̽ N community|,commercial| + V discuss| + N human|,commercial| +ó N affairs|,commercial| +IJ N character|,surname|,human|,ProperName|ר +Ʒ N artifact|˹,commercial|,generic|ͳ +Ʒ N building|,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ʒ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ǣ V discuss| + N attribute|,environment|,&commercial| +ȶ V discuss| +ȶ V think|˼ + N human|,#occupation|ְλ,commercial| + N symbol|,#quantity| +̸ V discuss| + V discuss| + V think|˼ + N affairs|,commercial| + N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +ܹ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| + N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ ADJ aValue|ֵ,attachment|,commercial| +ҵ N affairs|,commercial| +ҵ N place|ط,commercial| + V discuss| + N attribute|,reputation|,&human|,&organization|֯ + V think|˼ + V FondOf|ϲ + V appreciate|޳ + V enjoy| + V grant| + V reward| +ʹ V grant| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͼ V distinguish|ֱ,literature| +Ǯ N payment|,#commercial| +ʶ V FondOf|ϲ + V enjoy| + N fact|,*joyful|ϲ,desired| +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѩ V enjoy|,content=RainSnow|ѩ + V enjoy|,content=celestial| + N time|ʱ + N time|ʱ,afternoon| +η N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + V GoForward|ǰ + V GoUp|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,time|ʱ,past| + V apply|ͿĨ + V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| + V climb|ʵ + V do| + V install|װ + N location|λ + V provide| + NUM qValue|ֵ,sequence|,ordinal| + V submit| + V tighten|ս + V undergo|,content=disseminate| + STRU {Vachieve|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + ADV {range} + STRU {scope} +ϰװ V engage|,content=affairs|,#duty|,#sequence| +ϰ NUM qValue|ֵ,amount|,many| +ϰ V engage|,content=affairs|,#duty| +ϰ N human|,#occupation|ְλ,employee|Ա,*engage|,#affairs|,#duty| +ϰ볡 N fact|,compete|,sport|,InFront|ǰ +ϰ N time|ʱ,year|,half|,InFront|ǰ +ϰ N time|ʱ,morning| +ϰ N location|λ,%human|,body|,half|,upper| +ϰ N part|,%human|,body|,half|,upper| +ϰҹ N time|ʱ,day|,night|,half|,InFront|ǰ +ϰ N time|ʱ,month|,half|,InFront|ǰ +ϱ V tell| +ϱ V undergo|,content=disseminate| +ϱ N human|,clan| +ϱ N part|,%AnimalHuman|,arm| +ϱ N community|,official| +ϱ N part|,%entity|ʵ,aspect| +ϱ V become|Ϊ,descriptive=fat|,#animal| +ϱ N human|,*visit| +ϲ V BeUnable|,content=fulfil|ʵ +ϲȥ V BeUnable|,content=GoUp|ȥ +ϲȥ V BeUnable|,content=fulfil|ʵ +ϲ V provide|,possession=food|ʳƷ +ϲ N humanized| +ϲ V exercise| +ϲ N method|,superior|,desired| +ϲ N part|,%entity|ʵ +ϲ㽨 N system|ƶ +ϲ N organization|֯ +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=perform|,entertainment| +ϳ V control|,patient=power| +ϳ V climb|ʵ,LocationFin=LandVehicle| +ϳ ADJ aValue|ֵ,quality|,superior|,desired| +ϴ V climb|ʵ,LocationFin=ship| +ϴ V sleep|˯ +ϴ N part|,%AnimalHuman|,mouth| +ϴ N human|,past| +ϵ V misunderstand| +ϵƭ V misunderstand| +ϵ V human|,*misunderstand| +ϵ V lighting|ȼ +ϵ V lighting|ȼ,patient=tool|þ +ϵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ϵȱ N human|,military| +ϵ N humanized| +ϵ V suicide|ɱ +ϵ V BecomeMore|,#price|۸ +ϵ V dispatch|Dz,#human| +ϵ V transport|,#artifact|˹,#fund|ʽ +϶ V StateChange|̬,#cool| +Ϸ N aValue|ֵ,direction|,upper| +Ϸ N weapon|,royal|,mark|־ +Ϸ N room| +Ϸ V accuse|ظ +Ϸɻ V climb|ʵ,LocationFin=aircraft| +Ϸ V condole|° +Ϸ V provide|,possession=material|,#crop|ׯ +Ϸ N attribute|,property|,good|,&entity|ʵ +Ϸ N direction| +ϸ V engage|,content=affairs|,#duty| +ϸ V accuse|ظ +ϸ N time|ʱ,week|,past| +ϸ N time|ʱ,month|,past| +Ϲ V engage|,content=affairs|,#duty| +Ϲ V entice|,means=GiveAsGift|,crime| +Ϲ V salute|¾,means=provide| +Ϲ V bite|ҧ,sport| +Ϲ V misunderstand| +Ϲ N time|ʱ,past| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ V brighten|ʹ +Ϲ V prosper| +Ϻ N place|ط,city|,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ϻ N part|,%AnimalHuman|,viscera| +ϺȾ N disease| +ϻ V angry| +ϻ V ill|̬,medical|ҽ +ϻ V enrich|ʵ,material=artifact|˹,commercial| +ϻ V enrich|ʵ,patient=furniture|Ҿ,commercial| +ϼ N community|,official| +ϼ N part|,%army| +ϼ N community|,official| +ϼ쵼 N community|,official| +ϼ˾ N part|,%army| +ϼָӹ N human|,official|,military| +ϼ N method|,superior|,desired| +Ͻ N human|,#occupation|ְλ,official|,military| +Ͻ V apply|ͿĨ,material=liquid|Һ,industrial| +Ͻ V submit| +Ͻ V submit| +Ͻ V LeaveFor|ǰ,LocationFin=facilities|ʩ +Ͻ ADJ aValue|ֵ,sequence|,InFront|ǰ +Ͻ V prosper| +Ͻ N aspiration|Ը,expect|,#MakeBetter|Ż +Ͼ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͽ V study|ѧ,content=affairs|,education| +Ͽ V study|ѧ,education| +Ͽ V teach|,education| +Ͽ ADJ aValue|ֵ,location|λ,upper| +Ͽ ADJ aValue|ֵ,content|,easy|,desired| + V apply|ͿĨ,material=material|,industrial| + V GoUp|ȥ + STRU {Vdirection|,upper|} + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%waters|ˮ + N organization|֯ +¥ V climb|ʵ,LocationFin=part|,#building| +¥ V climb|ʵ,LocationFin=part|,#building| +· V start|ʼ,content=leave|뿪 + V GoUp|ȥ,LocationFin=livestock| + V begin|ʼ + V shut|ر + V visit| + N community|,official| + N part|,%entity|ʵ,aspect| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,past|,year| + ADJ aValue|ֵ,age|,aged| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥ֯ N part|,%AnimalHuman|,skin|Ƥ +Ʒ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +· N attribute|,outlook|ǰ,good|,desired|,&situation|״ +· N facilities|ʩ,route|· + N location|λ,space|ռ + V pant| +ǧ NUM qValue|ֵ,amount|,many| +ǰ V approach|ӽ +ȥ V GoUp|ȥ +ȥ STRU {Vdirection|,upper|} +Ȧ׶ V misunderstand| + V undertake|,content=official| +ɫ V AlterColor|ɫ +ɫ ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,all|ȫ + N clothing|,#body|,generic|ͳ + N part|,%AnimalHuman|,body|,half|,upper| + N sound|,#language| + V BecomeMore| + V rise| +ʿ N human|,#occupation|ְλ,military| + V appear|,location=InstitutePlace|,commercial| + V know|֪ + N location|λ,HighRank|ߵ + V start|ʼ + V tell| + ADJ aValue|ֵ,kind|,special| +˰ V pay|,possession=expenditure|,commercial| +˾ N human|,official| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + V worth|ֵ + ADJ aValue|ֵ,age|,aged| + V fix|ס +̨ V appear|,location=facilities|ʩ,entertainment| +̨ V control|,content=power|,politics| +̨ V obtain|õ,possession=power|,politics| + N part|,%AnimalHuman|,mouth| + V undergo|,content=feed|ι,military| + V misunderstand| + N part|,%AnimalHuman|,body|,half|,upper| + N humanized| + V rise|,LocationFin=celestial| +ͷ N community|,official| +ͷ N part|,%entity|ʵ,aspect| + V engage|,content=affairs|,#duty|,#sequence|,night| +ξ N human|,#occupation|ְλ,official|,military| +ֶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(the Upper Volta|ֶ) +ֶ N place|ط,country|,ProperName|ר + N time|ʱ,morning| + N human|,#age|,mass| + N human|,#clan|,mass| + N human|,#rank|ȼ,mass| +´ V look| + V deceive|ƭ + V do|,content=crime|,crime| + N text| + N attribute|,boundary|,&entity|ʵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +У N human|,#occupation|ְλ,official|,military| + N time|ʱ,week|,past| +ڶ N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| +һ N time|ʱ,day|,#week|,past| + V punish|,police| + ADJ aValue|ֵ,direction|,upper| +Ч V imitate|ģ +ѧ V engage|,content=study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + V perform|,entertainment| + V rise| +ҹ V engage|,content=affairs|,#duty|,#sequence|,night| + N clothing|,#body|,generic|ͳ + V MoveItUp| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) +ӳ V perform|,content=shows|,entertainment| + N aValue|ֵ,location|λ + N location|λ,%waters|ˮ + N part|,%waters|ˮ + N time|ʱ,month|,past| + V engage|,content=affairs|,#duty|,#sequence|,morning| + V BecomeMore|,commercial| + V rise| + V engage| + V engage|,content=fight|,military| +֫ N part|,%human|,limb|֫ + N time|ʱ,week|,past| +װ V MakeUp|ױ,entertainment| +װ N clothing|,#body|,generic|ͳ + N location|λ,space|ռ + N part|,%AnimalHuman|,mouth|,upper| + N part|,%AnimalHuman|,mouth|,upper| + N character|,surname|,human|,ProperName|ר + V respect| + ADV {Vcontinue|} +в ADJ aValue|ֵ,ability|,unable|ӹ,kill|ɱ +д V unfixed|δ +з N weapon|,royal|,mark|־ + ADV {emphasis|ǿ} +δ ADV {neg|,past|} + N clothing|,#leg|,female|Ů + N part|,%inanimate|,head|ͷ + N part|,%plant|ֲ,head|ͷ +ҹ N human|,*drive|Ԧ,#ship| + V transport| +Ӵ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +ӻ V disseminate|,content=information|Ϣ +ӽ V transport| +Ŷ V disseminate|,content=information|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +Ϣ V rest|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ѷһ ADJ inferior|,degree=ish| +ݼ ADJ aValue|ֵ,duration|,TimeShort| + V WarmUp| + V burn| + V cook| + V fever| +ձ N tool|þ,cubic|,@put|,*WarmUp| +ձ N food|ʳƷ +ջ V burn| +ջ V burn|,agricultural|ũ +ջ V destroy| +ջ V lighting|ȼ +ռ N food|ʳƷ +ռ N chemical|ѧ +վ N drinks|Ʒ,$addict|Ⱥ + V produce|,literature| + V wounded| + V burn|,patient=tool|þ +ĵ N weapon|,*lighting|ȼ + V burn| + N character|,(China|й) +ҩ N FlowerGrass| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר +ع N time|ʱ,#young| +ع N time|ʱ,beautiful| +ػ N time|ʱ,#young| +ػ N time|ʱ,beautiful| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,age|,young| + V cease|ͣ + V lack|ȱ + V lose|ʧȥ + ADJ qValue|ֵ,amount|,few| +ٰ EXPR expression|,*soothe|ο +ٰͷ N human|,young| +ٲ ADJ aValue|ֵ,importance|,important| +ٲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ٲ ADJ aValue|ֵ,importance|,important| +ٴ V wait|ȴ,duration=TimeShort| +ٵÿ ADJ qValue|ֵ,amount|,few| +ٶ N human|,young| +ٸ N human|,female|Ů,adult|,#GetMarried| +ٺ V wait|ȴ,duration=TimeShort| +ټ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ٽ N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| + N human|,family|,female|Ů,adult| + N human|,female|Ů,adult| + N human|,young|,male| + N human|,young| +ͯ N human|,young| +그 N human|,crime|,young|,undesired|ݬ +깬 N InstitutePlace|,#young|,@recreation| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ů N human|,female|Ů,young| +ʱ ADV aValue|ֵ,duration|,TimeShort| + ADJ qValue|ֵ,amount|,few| + N community| +ξ N human|,#occupation|ְλ,official|,military| +ȶ N community|,#young| +ȶԱ N human|,%community|,#young| +У N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| +ү N human|,family|,male|,young| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +׳ ADJ aValue|ֵ,age|,adult| + V cry|,#bird| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N sound|,#bird| + N tool|þ,*MakeSound| +ڱ N human|,military|,*look|,*defend| +ڿ N part|,%place|ط,mouth| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N tool|þ,*MakeSound| + N character|,surname|,human|,ProperName|ר + V explain|˵ +˾ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳƷ N physical|,extravagant| +ݻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N aspiration|Ը + V expect|,manner=extravagant| + N aspiration|Ը + V OnCredit| +޹ V buy|,manner=OnCredit| +Ƿ V OnCredit| + V sell|,manner=OnCredit| + N beast| + N FlowerGrass|,?medicine|ҩ +Ы N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,form|״,curved|,linear| + V crawl| + N thing|,redundant| + N part|,%AnimalHuman|,mouth| + N shape| +ִ V HungryThirsty| + N sound|,#language| + N sound|,#language| +̦ N physical| +ͷ N human|,military|,#information|Ϣ,$catch|׽ס +ͷ N part|,%AnimalHuman|,mouth| +ս V debate| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + ADJ aValue|ֵ,kind|,firstPerson| + V abandon| + V donate| + N facilities|ʩ,space|ռ,@foster|,#livestock| + N house| +᱾ĩ V WorthNot|ֵ +᲻ V grudge| + V GrudgeNot| +Ἲ V endeavour| + N human|,*supervise|,#reside|ס +Զ V WorthNot|ֵ + N part|,%human|,bone|,religion|ڽ + V abandon| + N human|,family| + V endeavour| + V endeavour| + N human|,friend|,#reside|ס + V remove|,police| + V remove|,police| + V TakePicture| + V consume|ȡ + V handle| +㻤 N part|,%AnimalHuman|,nerve| +㻤ٷʴ N disease| +㻤 N disease| +¼ V TakePicture| + N tool|þ,*measure| +ȡ V TakePicture| +ȡ V consume|ȡ + V maintain|,patient=BeWell|׳ + ADJ aValue|ֵ,standard|׼,#temperature|¶ +϶ ADJ aValue|ֵ,standard|׼,#temperature|¶ + V TakePicture| + N tool|þ,*TakePicture|,#shows| +Ӱ V record|¼,content=image|ͼ,entertainment| +Ӱ N tool|þ,*TakePicture| +Ӱ N human|,#occupation|ְλ,*TakePicture|,#news| +Ӱ N facilities|ʩ,space|ռ,@TakePicture|,#shows| +Ӱʦ N human|,#occupation|ְλ,*TakePicture| +Ӱ N facilities|ʩ,space|ռ,@TakePicture| +Ӱչ N fact|,display|չʾ,#image|ͼ,#TakePicture| + V control|,content=power|,politics| + V produce|,entertainment| + V firing| + V jet| + V shoot| + N attribute|,distance|,firing|,&weapon| + V firing| + N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| +ָ N part|,%army| +ָ N part|,%army| + V firing|,patient=weapon| +侫 V excrete|й + N inanimate|,generic|ͳ,liquid|Һ + V shoot|,sport| + N human|,*shoot|,sport| +Ƶ N attribute|,frequency|Ƶ,&shoot| + N human|,*firing| + N human|,*shoot|,sport| + N lights| + V fear| + V defeat|սʤ + V surrender| + V relate|й + V undergo| + V walk| +漰 V relate|й + V read| + N bird| + V obtain|õ,possession=experience| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V relate|й,partner=affairs|,diplomatic|⽻ + V relate|й,crime| + V engage| + N community|,generic|ͳ + N institution| + N institution|,generic|ͳ + ADJ aValue|ֵ,attachment|,organization|֯ + N organization|֯ +ᱣ N affairs|,#guarantee|֤,commercial| +ᱣϻ N system|ƶ,#guarantee|֤,commercial| +ᱣƶ N system|ƶ,#guarantee|֤,commercial| +Ƹ N wealth|Ǯ +İ N attribute|,circumstances|,peaceful|,&country| +λ N attribute|,status|,&human| + N attribute|,SocialMode|,&organization|֯ +ḣ N fact|,#organization|֯,help| +Ṥ N affairs|,$undertake| +ϵ N attribute|,relatedness|,&human| +ữ V ize|̬ + N affairs|,$undertake| +ᾭ ADJ aValue|ֵ,attachment|,organization|֯,commercial| +ѧ N knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N human|,desired|,able|,glorious| +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ʹ N human|,desired|,glorious| +Ч N attribute|,effect|Ч,&act|ж +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,organization|֯,politics| +ƶ N system|ƶ,politics| +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +м N human|,desired|,important|,able| + N system|ƶ + N human| +罻 V associate| +罻 N human|,*associate|,desired|,able|,glorious| +罻 N attribute|,performance|,associate|,&organization|֯,&human| +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N text|,estimate| + N place|ط,#community| + N community| +ŷ N community| +Ա N human|,#institution| + N place|ط,#human|,country|,politics| + V establish| + V forming|γ + CONJ {condition|} +豸 N machine|,generic|ͳ +豸ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +趨 V establish| +跨 V try| + V defend|,military| + V hide| + CONJ {condition|} + V forming|γ,PatientProduct=plans|滮 + N plans|滮 + V plan|ƻ +ʦ N human|,#occupation|ְλ,*plan|ƻ +ʦ N human|,*plan|ƻ +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ + N human|,#occupation|ְλ,*plan|ƻ +۶ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V establish| + V hide| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + CONJ {condition|} +ɫ V AlterColor|ɫ + V guess|²,content=circumstances| +ʩ N facilities|ʩ,generic|ͳ +ʹ CONJ {condition|} + V guess|² + N thought|ͷ + V entertain|д + V entertain|д,ResultEvent=eat| +Ӫ V reside|ס,military| +Ӫ N place|ط,@reside|ס,military| + V install|װ + V choose|ѡ,content=place|ط,#entertain|д + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V express|ʾ +걨 V tell| +걨 V tell|,commercial| + V debate| + V debate|,police| + V ExpressAgainst|Ǵ + V express|ʾ + V request|Ҫ + N human|,*request|Ҫ + N document|,*request|Ҫ + N shows| +ʱ N time|ʱ,hour|ʱ + V explain|˵ +˵ V explain|˵ + V accuse|ظ,police| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ,politics| + N character|,surname|,human|,ProperName|ר +л V thank|л +ѩ V amend|,content=wrong| +ԩ V amend|,content=wrong| + V ExpressAgainst|Ǵ + V persuade|Ȱ˵ + N character|,(China|й) + V MakeSound| + V CausePartMove| + V enlarge| +Ԯ V help| +Ԯ V rescue| + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V request|Ҫ,ResultEvent=help| + V CausePartMove| + ADJ aValue|ֵ,ability|,able|,CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V CausePartMove|,PatientPartof=leg| +ѩ V amend|,content=wrong| + V CausePartMove|,PatientPartof=body| +ԩ V amend|,content=wrong| +չ V CausePartMove| +չ V enlarge| +չ V unfold|̯ +չ ADJ aValue|ֵ,ability|,unable|ӹ,$enlarge| + V endorse|ӵ + V endorse|ӵ,content=fair| + CLAS NounUnit|,&clothing| + N attribute|,behavior|ֹ,&human| + N part|,%AnimalHuman|,body| + N part|,%physical|,%organization|֯,body| + PRON {self|} + V unfortunate|,scope=disgraced| + N attribute|,physique|,&AnimalHuman| + N part|,%AnimalHuman|,body| +ɼ V depend| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +ֲ ADJ aValue|ֵ,status|,unfixed|δ + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +֤ N document|,*prove|֤,#status| + N attribute|,height|߶,&human| + V die| + V time|ʱ,#die| + V pregnant| + N attribute|,status|,&human| +Ӹλ N human|,HighRank|ߵ +侳 V undergo|,content=circumstances| + N attribute|,height|߶,&human| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,body| + N location|λ,%human|,body| + N experience| + N phenomena| + N attribute|,ability|,&animate| + V undergo| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| +彡׳ N human|,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V endeavour| +ǰҹƵ N human|,*display|չʾ + N attribute|,physique|,&human| + V die| +޷ ADJ aValue|ֵ,richness|ƶ,poor| +ʿ V guide| + V suffer|,content=detain|ס,#police| + N part|,%AnimalHuman|,body|,mental| +Ӱ N trace|,#body| + V pregnant| + V PutOn| + N attribute|,posture|,&AnimalHuman| + N part|,%AnimalHuman|,body| + N pregnant| +ӹǶ N attribute|,physique|,&human| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,earliness|,late| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,content|,profound|,desired| +ͬ V ShowEmotion|ʾ,content=pity| +ɲ ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,steady| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + N emotion|,hate|,undesired|ݬ + N location|λ,internal|,space|ռ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,content|,&information|Ϣ + N attribute|,depth|,&physical|,#cubic| +ʹ V hate| +ҹ N time|ʱ,day|,night| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + ADJ aValue|ֵ,range|,extensive| + N room|,#female|Ů,@reside|ס + N waters|ˮ,surfacial| + N attribute|,color|ɫ,red|,&physical| +ɫ ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,content|,profound|,desired| + V respire| + V MakeBetter|Ż +ĸ V MakeBetter|Ż,patient=improve| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,NotLight|Ũ + N attribute|,relatedness|,&human| + V investigate|,manner=attentive|ϸ + ADJ aValue|ֵ,content|,profound|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ +ɫ N attribute|,color|ɫ,blue|,&physical| +ıԶ V think|˼,manner=profound| +dz N attribute|,depth|,&physical| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + N emotion|,love|,desired| + N emotion|,friend|,desired| + N emotion|,friend|,desired| + N time|ʱ,autumn|,ending|ĩ + V GoInto| + ADJ aValue|ֵ,range|,all|ȫ +dz ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ɽ N land|½ + ADV aValue|ֵ,degree|̶,very| + V undergo|,content=accept| +ܸж V excited| +ˮ N waters|ˮ,deep| +ˮ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ˮը N weapon| +˼ V think|˼ +˼ V think|˼ +˼ N human|,*think|˼ +ͨʵ N human|,ability|,able|,desired| + V believe|,manner=very| +Ų V believe|,manner=very| +ҹ N time|ʱ,night| + N thinking|˼,profound| +Ԩ N waters|ˮ,deep| +Զ ADJ aValue|ֵ,content|,profound|,desired| + V study|ѧ,education| +տ ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,circumstances|,urgent| + V BeAble|ܹ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,depth|,deep| + N human|,HighRank|ߵ + N tool|þ,linear|,*fasten|˩ +ʿ N human|,HighRank|ߵ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,bearing|̬,&AnimalHuman| + N humanized| + N mental| + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ʹ N fact|,*fit|ʺ +û ADJ appear|,manner=secret| + N human|,religion|ڽ + N human|,religion|ڽ +񹤹 ADJ aValue|ֵ,quality|,refined|,desired| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N text|,humanized| +񻰰 ADJ aValue|ֵ,kind|,queer| + N mental| + N part|,%AnimalHuman|,nerve| +񾭲 N disease|,#mad| +񾭲ר N human|,medical|ҽ,*cure|ҽ +񾭴 N disease|,#mad| +񾭹֢ N disease| +ĩ N part|,%AnimalHuman|,nerve| +ʹ N disease| +Ƥ N disease| +ѧ N human|,medical|ҽ,*cure|ҽ + N disease| + N mental|,uneasy| + V uneasy| + N part|,%AnimalHuman|,nerve| + N attribute|,strength|,strong|ǿ,&human| + N humanized| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,content|,profound| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N humanized| +Ů N humanized|,female|Ů + N human|,*firing|,able| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,bearing|̬,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V show|,content=arrogant| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǹ N human|,*firing|,able| + N attribute|,bearing|̬,&AnimalHuman| + N material|,?medicine|ҩ +ɫ N attribute|,bearing|̬,&AnimalHuman| + N facilities|ʩ,space|ռ,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥַ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +˼ N mental| + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,speed|ٶ,fast| +̬ N attribute|,countenance|,&AnimalHuman| +ͨ N attribute|,ability|,&animate| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͯ N human|,young|,wise|,desired| + V expect| + N attribute|,strength|,&human|,&organization|֯ + N humanized| + N image|ͼ,$draw|,#humanized| +ѧ N knowledge|֪ʶ,religion|ڽ +ѧʿ N human|,religion|ڽ +ҽ N human|,*cure|ҽ,medical|ҽ,able| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,demeanor|,beautiful|,desired|,&human| +ְԱ N human|,#occupation|ְλ,religion|ڽ +־ N mental| + N place|ط,country|,ProperName|ר,(China|й) + N facilities|ʩ,religion|ڽ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + V check| + V interrogate|,police| + V know|֪ + V check| +Ա N human|,*investigate| + V check| + V amend| + V estimate| + V check|,content=readings| + V check| + V check|,commercial| +Ƴ N human|,#occupation|ְλ,official|,*check|,commercial| +Ʒ N law|ɷ +ƾ N part|,%institution|,*check|,commercial| + N part|,%institution|,*check|,commercial| +Ա N human|,#occupation|ְλ,*check|,commercial| + V judge|ö,police| + V understand|,content=beautiful| + N thinking|˼,*understand|,#beautiful| + V judge|ö,police| +г N human|,#occupation|ְλ,official|,*judge|ö,#crime|,police| +д N fact|,judge|ö,#crime|,police| +л N institution|,*judge|ö,#crime|,police| +ǰ ADJ aValue|ֵ,time|ʱ,#police| +Ȩ N rights|Ȩ,*judge|ö,#crime|,police| +ͥ N institution|,*judge|ö,#crime|,police| +Ա N human|,#occupation|ְλ,*judge|ö,#crime|,police| + V check| + V estimate| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʱ V estimate|,manner=correct|ȷ + V look|,manner=attentive|ϸ + V interrogate|,police| +У V amend| +Ѷ V interrogate|,police| + V discuss| + V think|˼ + V check| + N human|,family|,female|Ů + N human|,female|Ů,adult| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,kind|,question| + V surpass|ǿ + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} +ô ADJ aValue|ֵ,kind|,question| +Ϊ ADV aValue|ֵ,degree|̶,extreme| + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| +ʯ N disease| +ʯ N disease|,#viscera| + N part|,%AnimalHuman|,nerve| + N medicine|ҩ +´ N disease| + N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V soak| + N part|,%building| +© V leak|© + V GoInto| + V influence|Ӱ +ˮ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +͸ N fact|,soak| +͸ V influence|Ӱ +͸ V leak|© +͸ N army| +͸ N attribute|,ability|,drain|ų,#liquid|Һ +͸ѹ N attribute|,strength|,&entity|ʵ +͸ N human|,*influence|Ӱ + CLAS NounUnit|,&sound| + N attribute|,SoundVolume|,#AnimalHuman| + N attribute|,SoundVolume|,&sound| + N attribute|,reputation|,&human|,&organization|֯ + N sound| + N sound|,#language| + V debate| + N sound| + V announce| + N part|,%AnimalHuman|,#MakeSound| + N part|,%tool|þ,#shows| + N attribute|,SoundVolume|,&sound| + V MakeMisunderstand|ʹ֪ + ADJ aValue|ֵ,performance|,#sound|,$control| + N music| + V weep| + N part|,%AnimalHuman|,#MakeSound| + V announce| + N attribute|,reputation|,&human|,&organization|֯ +Ǽ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + N method|,#sound|,*scout| +ɱ N human|,military|,#sound| + N attribute|,SoundVolume|,#AnimalHuman| + N information|Ϣ +ɫ N attribute|,countenance|,&human| +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,&event|¼ +ƺƴ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + N attribute|,speed|ٶ,&sound| + V ExpressAgainst|Ǵ + N attribute|,reputation|,&human|,&organization|֯ + N attribute|,reputation|,&human|,&organization|֯ +Ϣ N information|Ϣ +Ϣ N sound| + N sound| +ѧ ADJ aValue|ֵ,attachment| +ѧ N knowledge|֪ʶ,#sound| +ѧ N human|,#knowledge|֪ʶ,#sound| + V announce| + N sound| + N sound|,#AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ +Ԯ V help| +ѧ N knowledge|֪ʶ,#language| + V reveal|¶ + V GiveBirth|,medical|ҽ + V SufferFrom| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,^cook| + ADJ aValue|ֵ,physique|,unripe| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + V alive| + N attribute|,circumstances|,&human| + N attribute|,strength|,&animate|,&organization|֯ + V exist| + N fact|,exist| + V grow|ɳ + V happen| + N human|,*study|ѧ,education| + N human|,male|,*perform|,entertainment| + V lighting|ȼ +Ӳ V imitate|ģ +Ӳ V imitate|ģ,manner=stiff| + V ill|̬,medical|ҽ + V earn|׬,possession=wealth|Ǯ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V GiveBirth|,medical|ҽ + V produce| +λ N part|,%organization|֯,*produce|,*build|,industrial| +ʣ N quantity|,amount|,over|,&inanimate| + N attribute|,ability|,&produce| + N attribute|,ability|,&produce| + N quantity|,amount|,&produce|,industrial| + N human|,*produce| + N inanimate|,generic|ͳ + V grow|ɳ + N location|λ,#grow|ɳ + N medicine|ҩ + N time|ʱ,#grow|ɳ + N medicine|ҩ + N time|ʱ,day|,@ComeToWorld| + ADJ aValue|ֵ,ability|,able|,create| + V create| + V eat|,^cook| + N expression| + V alive| + V exist| + N attribute|,ability|,*MakeLiving|ı,&animate|,&organization|֯ +Ȩ N rights|Ȩ,*alive| + N FlowerGrass|,?medicine|ҩ + N land|½,desolate| +ػ N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V grow|ɳ + V grow|ɳ,experiencer=hair|ë + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ +Һ N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + V catch|׽ס + N human|,family|,male| + V exist| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V alive| + N land|½,desolate| + V alive| + N attribute|,circumstances|,&human| +Ʒ N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N expenditure| + N fact|,#alive| +ˮƽ N attribute|,quality|,&CauseToLive|ʹ +ˮƽ N attribute|,quality|,&CauseToLive|ʹ,#wealth|Ǯ + N artifact|˹,generic|ͳ + V lighting|ȼ,patient=fire| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,circumstances|,&human| + N method|,*earn|׬,*alive| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,source|Դ,original|ԭ +Ӳק ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ӳק V pull|,manner=rash|ç + ADJ aValue|ֵ,duration|,TimeLong| +ϲ N time|ʱ,process|,@alive| + ADJ aValue|ֵ,physique|,^cook| + V farewell| + N attribute|,performance|,&human| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ˮ N liquid|Һ,?medicine|ҩ + N army| + N attribute|,strength|,new|,&physical| + N human|,mass| +Ϳ̿ V unfortunate| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +· N method|,*earn|׬,*alive| +췹 V fixed|Ѷ + N attribute|,strength|,&animate|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N part|,%entity|ʵ,heart| +ĸ N human|,family|,female|Ů + V fear| +ơ N drinks|Ʒ,$addict|Ⱥ +Ƨ ADJ aValue|ֵ,kind|,queer| +ƽ N time|ʱ,process|,@alive| + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + V angry| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ǰ ADV aValue|ֵ,time|ʱ,InFront|ǰ,#alive| + V catch|׽ס +Ȥ N emotion|,joyful|ϲ,desired| + N human| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף +ɫ V MakeBetter|Ż +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɱ ADJ aValue|ֵ,power|,strong|ǿ +ĸ N human|,family| +ʯ N stone|ʯ,?material| +ʯ N stone|ʯ,?material| + N human|,unable|ӹ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ˮ N water|ˮ +˿ N material|,?clothing|,?tool|þ + ADJ aValue|ֵ,importance|,important| + N fact|,alive|,die| + N fact|,alive|,die| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,importance|,important| +̬ N attribute|,circumstances|,&animate| +̬ƽ N attribute|,circumstances|,&animate| +̬ѧ N knowledge|֪ʶ +̬ѧ N human|,#knowledge|֪ʶ + N metal|,material| + N stone|ʯ +̻ V study|ѧ,manner=stiff| + ADJ aValue|ֵ,attachment| + N animate|,generic|ͳ + N fact|,*control|,#animate| +ﻯѧ N knowledge|֪ʶ + N chemical|ѧ +Ĥ N material| +Ȧ N animate|,generic|ͳ + N animate|,generic|ͳ +ѧ N knowledge|֪ʶ,#animate| +ѧ N human|,#knowledge|֪ʶ + N attribute|,speed|ٶ,&animate| +Ϣ V alive| +Ϣ V own|,possession=fund|ʽ +Ф N attribute|,kind|,&human| +Ч V function| + N attribute|,behavior|ֹ,&AnimalHuman| + V OutOfOrder| + N attribute|,occupation|ְλ,&human| + N process|,#alive|,#engage| + V GiveBirth|,medical|ҽ + V doubt| + N affairs|,#buy|,#sell|,commercial| +⾭ N method|,#buy|,#sell|,commercial| + N human|,#occupation|ְλ,commercial| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N material|,?food|ʳƷ + V GiveBirth|,medical|ҽ + V forge|α +ֳ V GiveBirth|,medical|ҽ +ֳ ADJ aValue|ֵ,attachment|,#GiveBirth| +ֳ N part|,%AnimalHuman|,viscera|,*mating| +ֳ N part|,%AnimalHuman|,viscera|,*mating| + N livestock| + N part|,%livestock|,body| + N human|,family|,male| +Ů N human|,family|,female|Ů + N livestock| + N tool|þ,#livestock|,*salute|¾ + N livestock| + N livestock| + V BecomeMore| + V appear| + V lift| + V rise| + CLAS unit|λ,&volume|ݻ + V upgrade| + V rise| + V rise| + V upgrade| + V undergo|,content=upgrade| + V StateChange|̬,StateFin=gas|,industrial| + V prosper| + V refine| + V upgrade| + V rise| + N part|,%aircraft|,*lift| + N machine|,*lift| + V rise|,LocationFin=sky| +ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V lift|,patient=tool|þ +ʽ N fact|,lift|,#tool|þ + V appear| +Ǩ V undergo|,content=upgrade| + V rise| +ѧ V upgrade|,#education| +ѹ V BecomeMore|,scope=voltage|ѹ +ֵ V BecomeMore|,scope=value|ֵ,commercial| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N tool|þ,route|· +֮Է V CauseToDo|ʹ,ResultEvent=$punish|,police| + N tool|þ,linear|,*fasten|˩ +ʡ V check| +ʡ V discharge| +ʡ V economize|ʡ +ʡ V know|֪ +ʡ N place|ط,provincial|ʡ +ʡ N human|,official|,#provincial|ʡ +ʡ N place|ط,city|,#provincial|ʡ +ʡԼ V economize|ʡ +ʡ V escape| +ʡ N place|ط +ʡ N place|ط +ʡ N attribute|,rank|ȼ,&entity|ʵ +ʡ N place|ط +ʡ V economize|ʡ,patient=strength| +ʡ V discharge| +ʡ V SayHello|ʺ +ʡȥ V discharge| +ʡȴ V economize|ʡ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʡ V check| +ʡ V investigate| +ʡ V visit| +ʡί N institution|,politics|,(China|й) +ʡ V know|֪ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʢ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢ N character|,surname|,human|,ProperName|ר +ʢ V contain| +ʢ V exist| +ʢ V load|װ +ʢ ADJ qValue|ֵ,amount|,many|,desired| +ʢ V exist|,manner=many| +ʢ V undergo|,$disseminate|,manner=extensive| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢıʽ N fact|,check|,#army|,military| +ʢ N fact|,congratulate|ף,stately|ׯ +ʢ N clothing|,generic|ͳ +ʢ N fact|,stately|ׯ +ʢһʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ V pregnant| +ʢ N phenomena|,stately|ׯ +ʢǰ N phenomena|,stately|ׯ +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ N tool|þ,cubic|,@put|,generic|ͳ +ʢ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʢ N emotion|,generous|,desired| +ʢ N time|ʱ,autumn| +ʢ N time|ʱ,flourishing|,desired| +ʢ N fact|,stately|ׯ +ʢ N time|ʱ,season|,hot| +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ N time|ʱ,summer| +ʢļ N time|ʱ,summer| +ʢʱ N time|ʱ,summer| +ʢ ADJ aValue|ֵ,circumstances|,flourishing| +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ V praise|佱 +ʢװ ADJ aValue|ֵ,attire|װ,stately|ׯ,desired| +ʢװ N clothing| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ N part|,%physical|,*surplus|ʣ +ʣ V surplus|ʣ +ʣ V surplus|ʣ +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ N thing|,*surplus|ʣ +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʤ V succeed|ɹ +ʤ V surpass|ǿ +ʤ V undertake| +ʤ V win|ʤ +ʤ N attribute|,effect|Ч,&event|¼ +ʤ N place|ط,glorious|,@tour| +ʤ N attribute|,effect|Ч,&event|¼ +ʤ V surpass|ǿ +ʤ N place|ط,beautiful|,desired| +ʤ ADJ aValue|ֵ,circumstances|,good|,desired| +ʤ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʤ N result|,win|ʤ +ʤ V win|ʤ +ʤ N human|,*win|ʤ +ʤȯ N attribute|,ability|,#win|ʤ,&event|¼ +ʤ V BeAble|ܹ +ʤ V undertake|,manner=able| +ʤ V surpass|ǿ +ʤ V surpass|ǿ +ʤ V win|ʤ,scope=fact|,#police| +ʤ V surpass|ǿ +ʤ N result|,win|ʤ +ʤ N human|,*win|ʤ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N human|,desired| +ʥ N human|,royal| +ʥ N place|ط,city|,ProperName|ר,(Brazil|) +ʥ N place|ط,city|,ProperName|ר,(US|) +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N humanized|,*congratulate|ף,#festival|,*GiveAsGift| +ʥ N tree|,*congratulate|ף +ʥҹ N time|ʱ,night|,festival|,@congratulate|ף +ʥ N facilities|ʩ,religion|ڽ +ʥ N place|ط,religion|ڽ +ʥǸ N place|ط,capital|,ProperName|ר,(Chile|) +ʥ N place|ط,capital|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ N place|ط,country|,ProperName|ר,(Africa|) +ʥ N place|ط,capital|,ProperName|ר,(Dominica|) +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N readings|,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N humanized|,religion|ڽ +ʥŵ N place|ط,capital|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʥĸ N humanized|,religion|ڽ +ʥ N place|ط,capital|,ProperName|ר,(Grenada|ɴ) +ʥ N human|,desired| +ʥ N human|,desired|,wise| +ʥ߶ N place|ط,capital|,ProperName|ר,(El Salvador|߶) +ʥͽ N attribute|,status|,&human|,religion|ڽ +ʥͽ N attribute|,status|,religion|ڽ,&human| +ʥ N human|,desired|,wise| +ʥӤ N phenomena|,#WeatherChange| +ʥԼɪ N place|ط,capital|,ProperName|ר,(Costa Rica|˹) +ʥս N fact|,fight| +ʦ N army|,generic|ͳ +ʦ N character|,surname|,human|,ProperName|ר +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ N human|,*teach|,education| +ʦ N human|,able|,desired| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,#occupation|ְλ,official|,military| +ʦ N human|,*teach|,education| +ʦ V study|ѧ +ʦ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ V imitate|ģ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ ADJ aValue|ֵ,attachment| +ʦѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ N human|,*teach| +ʦ N human| +ʦ N human|,religion|ڽ +ʦ N human|,female|Ů,#teach| +ʦ N human|,*study|ѧ,*teach|,mass|,education| +ʦͽ N human|,*study|ѧ,*teach|,mass|,education| +ʦ N part|,%army| +ʦү N human|,#occupation|ְλ,official|,past| +ʦү N human|,friend| +ʦ N human|,*teach|,education|,mass| +ʧ N attribute|,effect|Ч,useless|,undesired|ݬ,&event|¼ +ʧ V disobey|Υ +ʧ V fail|ʧ +ʧ V lose|ʧȥ +ʧ N result|,wrong|,undesired|ݬ +ʧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʧ V defeated| +ʧ V defeated|,military| +ʧ V fail|ʧ +ʧ N human|,*defeated| +ʧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧ V fail|ʧ +ʧ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +ʧ V unfortunate| +ʧ V disappear|ʧ +ʧ V disable|м,scope=listen| +ʧ V flurried| +ʧ N bill|Ʊ +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ N place|ط,#country|,$lose|ʧȥ +ʧ V lose|ʧȥ +ʧ V BeBad|˥ +ʧ V obtain|õ +ʧ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʧ V flurried| +ʧ V unfortunate|,cause=fire|,police| +ʧ V fail|ʧ +ʧ V FallDown| +ʧ V disloyal| +ʧ N disease| +ʧ V BeUnable|,content=control| +ʧ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʧ V disobey|Υ,content=regulation| +ʧ V defeated| +ʧ V lose|ʧȥ,possession=love| +ʧ V BeUnable|,content=control| +ʧ V lose|ʧȥ +ʧ V exposure|¶,experiencer=fact| +ʧ V ill|̬,scope=sleep|˯,medical|ҽ +ʧ V disable|м,scope=look| +ʧ V suffer|,content=steal|͵ +ʧȥ V UndergoNot| +ʧȥ V lose|ʧȥ +ʧȥ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧȥ֪ V dizzy| +ʧȴ V lose|ʧȥ +ʧɢ V disappear|ʧ +ʧɫ V uneasy| +ʧɫ V unfortunate| +ʧ N phenomena|,unfortunate|,undesired|ݬ +ʧ V FeelingByBad| +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V BeUnable|,content=MakeSound| +ʧ V MakeSound|,manner=careless| +ʧʹ V weep| +ʧʱ V lose|ʧȥ,possession=time|ʱ +ʧʵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʧ V unfortunate|,police| +ʧ V lose|ʧȥ,possession=power| +ʧ V fall|,manner=careless| +ʧ V defeated|,military| +ʧˮ V remove|,patient=liquid|Һ +ʧ V OutOfOrder| +ʧ V fail|ʧ +ʧ V disappointed|ʧ +ʧ N artifact|˹,generic|ͳ +ʧ N result|,wrong|,undesired|ݬ +ʧ V suffer|,content=occupy|ռ,military| +ʧЦ V laugh|Ц,manner=WithstandNot|ס +ʧЧ V end|ս +ʧ V disobey|Υ,content=MakeAppointment|Լ +ʧ V OutOfOrder| +ʧѧ V lose|ʧȥ,possession=education| +ʧѪ V bleed|Ѫ +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ ADJ lose|ʧȥ,possession=affairs| +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ N quantity|,rate|,#lose|ʧȥ,#affairs|,&human| +ʧҵ N human|,lose|ʧȥ,#affairs| +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ V disappointed|ʧ +ʧ V unfortunate|,scope=aspiration|Ը +ʧ V disable|м,scope=MakeSound| +ʧԼ V disobey|Υ,content=MakeAppointment|Լ +ʧ V BeBad|˥,scope=accurate|׼ +ʧ֮ V lose|ʧȥ +ʧ֮ V lose|ʧȥ,possession=time|ʱ +ʧְ V disobey|Υ,content=system|ƶ +ʧ V lose|ʧȥ,possession=weight| +ʧ N phenomena|,#lose|ʧȥ,#weight| +ʧ N human|,#lose|ʧȥ +ʧ V disappear|ʧ +ʧ V FallDown| +ʧ V err| +ʨ N beast| +ʨ N beast| +ʨӹ N livestock| +ʨͷ N food|ʳƷ +ʩ N character|,surname|,human|,ProperName|ר +ʩ V conduct|ʵʩ +ʩ V grant| +ʩ V use| +ʩ V damage| +ʩ V shoot| +ʩ V feed|ι,patient=material|,agricultural|ũ +ʩ V build|,industrial| +ʩ N facilities|ʩ,space|ռ,@build| +ʩ N human|,*WellTreat|ƴ +ʩ V conduct|ʵʩ +ʩ V teach| +ʩ V rescue| +ʩ V salute|¾ +ʩ V donate| +ʩ N part|,%language| +ʩ V show|,content=fierce| +ʩ V conduct|ʵʩ +ʩҩ V GiveAsGift|,possession=medicine|ҩ +ʩ V use| +ʩ V use| +ʩ V grant| +ʩչ V conduct|ʵʩ +ʩ V conduct|ʵʩ,content=thinking|˼,politics| +ʩ V cure|ҽ +ʩ N human|,*donate|,#religion|ڽ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ V moisten|ʪ +ʪ N attribute|,dampness|ʪ,&physical| +ʪȼ N tool|þ,*measure|,#dampness|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N gas|,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,hardness|Ӳ,soft| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ͸ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N disease| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʫ N text| +ʫ N text| +ʫ N text| +ʫ N readings| +ʫ N readings| +ʫ N expression| +ʫƪ N fact| +ʫƪ N text| +ʫ黭 N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N human|,*compile|༭,literature| +ʫ N human|,literature| +ʫ N readings| +ʫ̳ N community|,literature| +ʫ N text| +ʫ N emotion| +ʫѡ N readings| +ʫ N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N readings| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,bone| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬλ V slack|͵ +ʬλز V slack|͵ +ʭ N InsectWorm|,undesired|ݬ +ʭ N InsectWorm|,undesired|ݬ +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮߵ N land|½ +ʮ N time|ʱ,winter| +ʮ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮָ N part|,%AnimalHuman|,viscera| +ʮָ N disease| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ V satisfied| +ʮ ADJ aValue|ֵ,ability|,nimble|,desired| +ʮҪ ADJ aValue|ֵ,importance|,important| +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,attachment| +ʮ CLAS unit|λ,&length| +ʮþ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʮ N time|ʱ +ʮ궯 N fact|,ProperName|ר,(China|й) +ʮƽ N fact|,ProperName|ר,(China|й) +ʮŲ ADJ qValue|ֵ,frequency|Ƶ,rarely|ż +ʮȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮȫʮ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮ N place|ط,ProperName|ר,(China|й) +ʮ CLAS unit|λ,&volume|ݻ +ʮҾſ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ʮʫ N text| +ʮʫ N human|,literature| +ʮǧ ADJ aValue|ֵ,distance|,far|Զ +ʮ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʮһ N time|ʱ,month| +ʮһ· N time|ʱ,month| +ʮа˾ ADV aValue|ֵ,possibility|,possible| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮ֮˾ ADV aValue|ֵ,possibility|,possible| +ʮּ N tool|þ,religion|ڽ +ʮֽͷ N facilities|ʩ,route|· +ʮ· N facilities|ʩ,route|· +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,content|,pure|,desired| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʯ N character|,surname|,human|,ProperName|ר +ʯ N image|ͼ,#stone|ʯ +ʯ N stone|ʯ,?material| +ʯ N fish| +ʯ N material|,#stone|ʯ,*build| +ʯ N tool|þ,*print|ӡˢ +ʯ N facilities|ʩ,$carve| +ʯ N PenInk|ī,*write|д +ʯ N part|,%land|½ +ʯ V disappear|ʧ +ʯ N SportTool|˶ +ʯ N image|ͼ,$carve| +ʯ N part|,%vegetable|߲,embryo|,$eat| +ʯ N vegetable|߲ +ʯ CLAS NounUnit|,&stone|ʯ +ʯ N chemical|ѧ +ʯ N tool|þ,medical|ҽ +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N material|,*build| +ʯʯ N material|,*build| +ʯ N material|,*build| +ʯׯ N place|ط,city|,ProperName|ר,(China|й) +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N medicine|ҩ,(Chiina|й) +ʯ N image|ͼ,$carve| +ʯ N building| +ʯ N stone|ʯ +ʯ N material| +ʯ N stone|ʯ +ʯ N fruit|ˮ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯ N material| +ʯĥ N tool|þ,*grind|ĥ +ʯī N stone|ʯ +ʯ N chemical|ѧ +ʯ쾪 ADJ aValue|ֵ,impression|ӡ,good|,desired| +ʯ N tool|þ,generic|ͳ +ʯʱ N time|ʱ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯʨ N place|ط,city|,ProperName|ר,(China|й) +ʯ N SportTool|˶ +ʯͷ N stone|ʯ,?material| +ʯͷӶ N stone|ʯ,?material| +ʯ N livestock| +ʯӡ V print|ӡˢ +ʯӢ N material|,?tool|þ,#decorate|װ,precious| +ʯӢ N tool|þ,*tell|,#time|ʱ +ʯ N material|,liquid|Һ,$burn| +ʯ N material|,gas|,$burn| +ʯ N human|,#occupation|ְλ,commercial| +ʯ֯ N community| +ʯ N stone|ʯ,?material| +ʯӶ N stone|ʯ,?material| +ʰ V gather|ɼ +ʰ V pick|ʰ +ʰ NUM qValue|ֵ,amount|,cardinal|,mass| +ʰ V PutInOrder| +ʰ V punish| +ʰ V repair| +ʰ ADJ aValue|ֵ,behavior|ֹ,public| +ʰ V pick|ʰ +ʰȡ V gather|ɼ +ʰȡ V pick|ʰ +ʰ V imitate|ģ +ʰ촦 V InstitutePlace|,@collect|,#lose|ʧȥ +ʰ V gather|ɼ,possession=$lose|ʧȥ +ʰŲ V recompense| +ʰ N tool|þ,*disseminate| +ʱ ADJ aValue|ֵ,time|ʱ,now| +ʱ N attribute|,time|ʱ,&language| +ʱ N character|,surname|,human|,ProperName|ר +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ N time|ʱ,hour|ʱ,special| +ʱ N time|ʱ,important| +ʱ N time|ʱ,season| +ʱ...ʱ CONJ {accompaniment|} +ʱ N publications|鿯,#news| +ʱ N phenomena|,bad| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱҴ ADJ aValue|ֵ,circumstances|,urgent| +ʱ ADJ aValue|ֵ,value|ֵ,precious| +ʱ N attribute|,different|,&time|ʱ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱʱ ADJ aValue|ֵ,behavior|ֹ,^continuous| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ...ʱ CONJ {accompaniment|} +ʱ N time|ʱ +ʱ CONJ {time|ʱ} +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʱ N time|ʱ +ʱǨ V change| +ʱ N time|ʱ +ʱ N time|ʱ,important| +ʱ N attribute|,price|۸,&inanimate| +ʱ N time|ʱ +ʱ N readings|,#plans|滮 +ʱ N aValue|ֵ,property|,#time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ,season| +ʱ N attribute|,circumstances|,&country|,politics| +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ̱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ +ʱ N time|ʱ,season| +ʱ N time|ʱ +ʱ N human|,now| +ʱ N time|ʱ +ʱ N attribute|,SocialMode|,&entity|ʵ +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ̿ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N fact| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N attribute|,speed|ٶ,&AlterLocation|ռλ +ʱ̬ N attribute|,property|,&language| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N fact| +ʱ N time|ʱ,now| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| +ʱ N attribute|,boundary|,#time|ʱ,&event|¼ +ʱЧ N attribute|,boundary|,&time|ʱ +ʱЧ N attribute|,effect|Ч,&entity|ʵ,&act|ж +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʱ N attribute|,sequence|,&event|¼ +ʱ N attribute|,circumstances|,&thing| +ʱ˲ V unfortunate| +ʱ N part|,%tool|þ,#tell|,#time|ʱ +ʱֵ N time|ʱ +ʱ N time|ʱ,near| +ʱ N tool|þ,*tell|,#time|ʱ +ʱװ N clothing|,#body| +ʱװ N fact|,display|չʾ,#clothing| +ʱװģ N human|,*display|չʾ,#clothing| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,new|,desired| +ʱ V prosper| +ʲ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ʲ NUM qValue|ֵ,amount|,cardinal|,mass| +ʲ N tool|þ,*decorate|װ +ʲ ADJ qValue|ֵ,amount|,many| +ʲô ADJ aValue|ֵ,kind|,question| +ʲô N entity|ʵ,question| +ʲ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʲ N tool|þ,generic|ͳ +ʳ V eat| +ʳ N food|ʳƷ,*feed|ι,#animal|,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ +ʳ V HungryThirsty| +ʳ ADJ aValue|ֵ,performance|,*eat|,#FlowerGrass| +ʳݶ N animal|,*eat|,#FlowerGrass| +ʳ N part|,%AnimalHuman|,viscera| +ʳ N disease| +ʳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ֪ζ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N tool|þ,*feed|ι,*catch|׽ס,#fish| +ʳŲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N part|,%AnimalHuman|,viscera| +ʳܰ N disease| +ʳ N bird| +ʳ N human|,*eat| +ʳ N human|,*help| +ʳ N food|ʳƷ,generic|ͳ +ʳ N material|,?food|ʳƷ,#crop|ׯ +ʳ N attribute|,ability|,&eat| +ʳ N method|,*cure|ҽ +ʳƷ N food|ʳƷ,generic|ͳ +ʳƷ N InstitutePlace|,*sell|,@buy|,commercial| +ʳ N account|,*record|¼,#edible|ʳ +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| +ʳ⶯ N animal|,*eat|,#flesh| +ʳ N fact|,#eat|,#reside|ס +ʳ N InstitutePlace|,space|ռ,@eat| +ʳ N material|,?food|ʳƷ +ʳ N edible|ʳ,generic|ͳ +ʳ N fact|,#eat| +ʳж N disease|,#poison| +ʳ N attribute|,habit|ϰ,#consume|ȡ,&AnimalHuman| +ʳ N material|,?food|ʳƷ +ʳ V disobey|Υ,content=MakeAppointment|Լ +ʳ N beast| +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,performance|,$use|,#consume|ȡ +ʳþ N AlgaeFungi|ֲ +ʳ N material|,liquid|Һ,?food|ʳƷ +ʳ N aspiration|Ը,expect|,#consume|ȡ +ʳָ N part|,%AnimalHuman|,hand| +ʴ V InDebt| +ʴ V bite|ҧ,industrial| +ʴ V InDebt|,possession=fund|ʽ,commercial| +ʴ V affairs|,*InDebt|,commercial| +ʴ V carve|,means=bite|ҧ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact| +ʵ N part|,%plant|ֲ,embryo| +ʵʵ V recompense| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ N expression| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʵ ADJ aValue|ֵ,property|,own|,#weapon| +ʵ V load|װ,patient=weapon| +ʵ ADJ aValue|ֵ,location|λ,special| +ʵ V do|,manner=endeavour| +ʵɼ N human|,*endeavour| +ʵ N text|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ N phenomena|,pros| +ʵ N result|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ N attribute|,price|۸,true|,&physical|,commercial| +ʵ V conduct|ʵʩ +ʵ V fulfil|ʵ +ʵ N attribute|,effect|Ч,&thing| +ʵ N information|Ϣ,*prove|֤ +ʵ N example|ʵ +ʵ N attribute|,strength|,&human|,&organization|֯ +ʵλ N attribute|,strength|,&human|,&organization|֯ +ʵ¼ N text| +ʵ N attribute|,circumstances|,&entity|ʵ +ʵȨ N attribute|,power|,&human|,&organization|֯ +ʵʩ V conduct|ʵʩ +ʵʩ ADJ aValue|ֵ,ability|,able|,desired| +ʵʩ N human|,*conduct|ʵʩ +ʵʱ ADJ aValue|ֵ,duration|,TimeShort| +ʵʱ ADV aValue|ֵ,time|ʱ,alike| +ʵʵ ADV aValue|ֵ,degree|̶,very| +ʵ N fact|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ʵ N entity|ʵ +ʵ N physical|,generic|ͳ +ʵ﹤ N payment| +ʵϰ V drill|ϰ +ʵϰ N human|,study|ѧ,education| +ʵϰҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ʵϰҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ʵ V fulfil|ʵ +ʵЧ N attribute|,effect|Ч,&entity|ʵ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ V conduct|ʵʩ +ʵ V experiment|ʵ +ʵ N InstitutePlace|,@research|о,@experiment|ʵ,#knowledge|֪ʶ +ʵ N human|,*experiment|ʵ +ʵҵ N affairs|,industrial|,commercial| +ʵҵ N human|,#occupation|ְλ,industrial|,commercial| +ʵ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʵ N attribute|,effect|Ч,&thing| +ʵ N thinking|˼,#effect|Ч +ʵ N human| +ʵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADV {comment|} +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵս N fact|,fight| +ʵ֤ N information|Ϣ,*explain|˵ +ʵ N entity|ʵ,generic|ͳ +ʵ N part|,%entity|ʵ,heart| +ʵ ADV aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ qValue|ֵ,amount|,sufficient| +ʶ N knowledge|֪ʶ +ʶ V know|֪ +ʶ V distinguish|ֱ +ʶ V distinguish|ֱ +ʶ V attribute|,ability|,#distinguish|ֱ,&human| +ʶ V know|֪,content=artifact|˹ +ʶ V know|֪ +ʶȤ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʶʱΪ V obey|ѭ +ʶ; N human|,wise|,desired| +ʶ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ʶ V study|ѧ,content=character| +ʷ N character|,surname|,human|,ProperName|ר +ʷ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷ N fact| +ʷ N place|ط,#fact|,#time|ʱ +ʷ N readings| +ʷ N information|Ϣ +ʷǰ ADJ aValue|ֵ,time|ʱ,past| +ʷʫ N text| +ʷʫ ADJ aValue|ֵ,content|,great|ΰ,desired| +ʷʫ N human|,literature| +ʷʵ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷǰ ADJ aValue|ֵ,kind|,special| +ʷѧ N knowledge|֪ʶ +ʸ V swear| +ʸ N text|,$swear| +ʸ N weapon|,$firing| +ʸڷ V deny| +ʸ N symbol|,#quantity| +ʸͼ N image|ͼ +ʸ־ V endeavour| +ʸ־ V endeavour| +ʸ־ V endeavour| +ʹ V CauseToDo|ʹ +ʹ N human|,*transmit|,#letter|ż +ʹ V use| +ʹ... V CauseToDo|ʹ,ResultEvent=^PayAttention|ע +ʹ...ķ V MakeWorried| +ʹ V stabilize|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʹɳ V CauseToGrow|ʹɳ +ʹ V CauseToExist|ʹ +ʹ V CauseToDo|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʹ V CauseToDo|ʹ +ʹ V sharpen|ʹ +ʹ N institution|,diplomatic|⽻ +ʹ V MakeTrouble| +ʹ V dispatch|Dz +ʹ V use| +ʹ V CauseToLive|ʹ +ʹ V KeepOn|ʹ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʹ N attribute|,status|,diplomatic|⽻ +ʹ V endeavour| +ʹ V clean|ʹ +ʹ V brighten|ʹ +ʹ N affairs|,#dispatch|Dz +ʹŮ N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů +ʹȻ V ResultIn| +ʹ˲ ADJ aValue|ֵ,ability|,able|,upset| +ʹ˷ŭ ADJ aValue|ֵ,ability|,able|,angry| +ʹ˷ ADJ aValue|ֵ,ability|,able|,itch| +ʹƣ ADJ aValue|ֵ,ability|,able|,tired|ƣ +ʹŷ ADJ aValue|ֵ,ability|,able|,believe| +ʹ ADJ aValue|ֵ,ability|,able|,joyful|ϲ +ʹܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ʹ˸֪ V MakeOthersKnowledge|ʹ˸֪ +ʹ N community|,diplomatic|⽻ +ʹ֪ V MakeMisunderstand|ʹ֪ +ʹϲ V MakeHappy|ʹϲ +ʹ V MakeEqual|ʹ +ʹʧ V CauseToBeHidden|ʹʧ +ʹ V angry| +ʹɫ V tell|,manner=secret| +ʹ V use| +ʹ÷ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʹüֵ V attribute|,value|ֵ,&thing| +ʹ V attribute|,age|,&artifact|˹ +ʹ V pollute|ʹ +ʹթ V deceive|ƭ +ʹ N human|,$dispatch|Dz,official| +ʹ N human|,*transmit|,#letter|ż +ʹ֮ V CauseNotToBe|ʹ֮ +ʹ֮ V CauseToBe|ʹ֮ +ʺ N stone|ʯ,#AnimalHuman|,waste| +ʺ N InsectWorm| +ʻ V VehicleGo|ʻ +ʼ ADV aValue|ֵ,duration|,TimeShort| +ʼ V begin|ʼ +ʼ V start|ʼ +ʼĩ N process| +ʼҵ V start|ʼ,content=study|ѧ,education| +ʼ ADV aValue|ֵ,duration|,TimeLong| +ʼղи ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼղ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼ N human|,past| +ʼ N bird|,past| +ʼٸ N human|,*start|ʼ +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,kind|,&language| +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N fact| +ʽ N symbol| +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N symbol| +ʾ V express|ʾ +ʾ V order| +ʾ V tell| +ʾ V ShowLove|ʾ +ʾ N tool|þ,*measure| +ʾ N tool|þ,*measure|,#electricity| +ʾ V ExpressDissatisfaction|ʾ +ʾͬ V ExpressDisagreement|ʾͬ +ʾ V show|,content=example|ʵ +ʾ V show|,content=example|ʵ +ʾŭ V ExpressAnger|ʾŭ +ʾ V surrender| +ʾ˼ V commemorate|ʾ˼ +ʾͬ V ExpressAgreement|ʾͬ +ʾ V uprise| +ʾϲ V ShowJoy|ʾϲ +ʾ V express|ʾ +ʾͼ N readings|,express|ʾ +ʿ N human| +ʿ N human|,able| +ʿ N human|,literature| +ʿ N human|,male| +ʿ N human|,military| +ʿ N tool|þ,#recreation| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,literature| +ʿŮ N human|,mass|,young| +ʿ N attribute|,will|־,&human|,&army| +ʿ N human|,HighRank|ߵ +ʿ N human|,#occupation|ְλ,military| + N attribute|,clan|,&physical| + N place|ط + N time|ʱ + N time|ʱ,#alive| + N emotion|,hate|,undesired|ݬ + N human|,undesired|ݬ,enemy| + V PassOn| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ +ഫ V PassOn| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N time|ʱ +ĩ N time|ʱ,ending|ĩ + N community|,family| + N location|λ,%earth| + N attribute|,relatedness|,&human| + N human|,friend| + N place|ط +籭 N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| +ս N fact|,fight|,military| +緶Χ ADJ aValue|ֵ,range|,extensive| + N standpoint| +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ó֯ N InstitutePlace|,ProperName|ר,commercial| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +֯ N part|,%institution|,#medical|ҽ,(institution|=UN|Ϲ) +ݼ N land|½,tall| + N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ѧ N human|,#language| +֪ʶȨ֯ N part|,%institution|,#politics|,(institution|=UN|Ϲ) + N human| +ó N InstitutePlace|,ProperName|ר,commercial| + N attribute|,environment|,earth| + N human|,ordinary| + N location|λ,%earth| + ADJ aValue|ֵ,duration|,TimeLong| + N fact| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Դ N celestial|,#humanized| +Ϯ V PassOn| +Ϯ ADJ aValue|ֵ,source|Դ + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ +ӽ N part|,%vegetable|߲,embryo|,$eat| +ӽ N vegetable|߲ + V TakeCare| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N duty| + V engage| + N fact| + N phenomena|,unfortunate|,undesired|ݬ +°빦 V succeed|ɹ +± V fail|ʧ +±ع ADJ do|,manner=self| +± N fact| +± N phenomena|,sudden|,#unfortunate|,undesired|ݬ +²˳ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +³ ADV {comment|} +¶ N fact|,undesired|ݬ +¹ N phenomena|,unfortunate|,undesired|ݬ +¹ش ADJ aValue|ֵ,importance|,important| +¹Ǩ V change| +º N time|ʱ,future| +¼ N result|,desired| +¼ N time|ʱ,@rest|Ϣ +¼ N fact| +¼ N {EventResult|¼} + N reason| + N example|ʵ +ǰ N time|ʱ,past| + N fact| +Ȩ N duty| +ʵ N fact| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵʤ۱ EXPR aValue|ֵ,trueness|α,true| + N fact| + N attribute|,circumstances|,&entity|ʵ +̬ N attribute|,circumstances|,&entity|ʵ + N entity|ʵ + N affairs| + N institution| + N time|ʱ,past| + N fact| +ҵ N affairs| +ҵ N institution| +ҵλ N institution| +ҵ N expenditure|,*CauseToLive|ʹ,#institution| +ҵ N emotion|,endeavour|,desired| + N affairs| + N cause|ԭ + N part|,%fact| +ԸΥ V FitNot|,contrast=aspiration|Ը + N human|,undesired|ݬ,#crime|,$MakeBad|Ӻ + V remove| + V wipe| +ĿԴ V wait|ȴ + V swear| + N text|,$swear| +IJ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ĵ N text|,$swear| +ʦ V swear| +ʦ V swear|,military| + V swear| + N text|,$swear| +Ը N text|,$swear| +Լ N text|,$swear| + V die| + V disappear|ʧ + V die| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&physical| + N attribute|,outlook|ǰ,&physical| + N attribute|,power|,&AnimalHuman|,&organization|֯ + N attribute|,strength|,&physical| + N mark|־ + N part|,%AnimalHuman|,viscera| +Ʊ ADV aValue|ֵ,possibility|,possible| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ƴﻢ V embarrassed|Ϊ +ƽ ADV aValue|ֵ,possibility|,possible| +ƾ V equal|,scope=strength| + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N attribute|,behavior|ֹ,sly|,undesired|ݬ,&human| + N human|,sly|,undesired|ݬ + N attribute|,power|,&AnimalHuman|,&organization|֯ +Χ N attribute|,range|,#power|,&organization|֯ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +̬ N attribute|,circumstances|,&entity|ʵ +ͷ N attribute|,outlook|ǰ,&physical| +ͷ N attribute|,strength|,&physical| +ڱ V fixed|Ѷ + ADV aValue|ֵ,correctness|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,kind|,special| + V be| +ǵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ƿ N attribute|,correctness|,&event|¼ +Ƿ N fact|,quarrel| +Ƿ CONJ {question|} + V addict|Ⱥ +Ⱥ N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| +Ⱥ N fact|,$FondOf|ϲ,#WhileAway| +Ⱥ N addictive|Ⱥ +ɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ѫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V bite|ҧ +ɾ N part|,%AnimalHuman| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V fit|ʺ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʵ䷴ V fail|ʧ +ʶ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʷ CONJ {time|ʱ} +ʷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ V fit|ʺ +ʿɶֹ V cease|ͣ +ʿ ADJ aValue|ֵ,taste|ζ,good|,desired| + N quantity|,amount|,some|Щ + ADJ aValue|ֵ,age|,proper| +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ V fit|ʺ +Ӧ N attribute|,ability|,#fit|ʺ,&thing| +Ӧ֢ N disease| + ADJ aValue|ֵ,behavior|ֹ,proper| + N attribute|,effect|Ч,&artifact|˹ +ں ADJ aValue|ֵ,ability|,able|,VehicleGo|ʻ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V alive|,condition=fit|ʺ + ADJ aValue|ֵ,standard|׼,average|,desired| + V engage|,politics| +Ů N image|ͼ,#beautiful|,#female|Ů +; N process|,#official|,#engage| + V TakeCare| +̴ N human|,#occupation|ְλ,*TakeCare|,employee|Ա +̷ V TakeCare| +̺ V TakeCare| +Ů N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V explain|˵ + V release|ͷ + V remove| +ͷ V release|ͷ +ͷ N human|,*release|ͷ,police| +Ȼ V AtEase| + V explain|˵ + N information|Ϣ +IJ N human|,ProperName|ר,religion|ڽ + V MakeBetter|Ż + V MakeUp|ױ + V RegardAs| + V RegardAs|,entertainment| + V cover|ڸ + V decorate|װ + N tool|þ,*decorate|װ,generic|ͳ +δ N reason|,fake|α,undesired|ݬ +Ʒ N tool|þ,*decorate|װ,generic|ͳ + N tool|þ,*decorate|װ,generic|ͳ + V RegardAs|,entertainment| + N attribute|,name|,&human| + N human|,family| + N community| + N InstitutePlace|,commercial| + N place|ط,city| +г N InstitutePlace|,*sell|,@buy|,commercial| +г N attribute|,price|۸,&artifact|˹,commercial| +г N human|,#occupation|ְλ,official|,#city| +гְλ N occupation|ְλ,official|,#city| +и N institution|,*manage|,#city| +л N FlowerGrass|,#mark|־,#city| +м N InstitutePlace|,*sell|,@buy|,commercial| +м ADJ aValue|ֵ,attachment|,#city| +м N attribute|,price|۸,&artifact|˹,commercial| +н N part|,%place|ط,surrounding|Χ,#city| +н CLAS unit|λ,&weight| +о N place|ط,commercial| +оС N human|,vulgar|,undesired|ݬ +о֮ͽ N human|,vulgar|,undesired|ݬ +п N human|,commercial| +пϰ N attribute|,behavior|ֹ,vulgar|,undesired|ݬ,&human| + ADJ aValue|ֵ,attachment|,#city| + N attribute|,environment|,&event|¼,commercial| + N human|,#city| + N part|,%place|ط,city|,body| + N attribute|,appearance|,&city| +ί N institution|,politics|,(China|й) + N place|ط,city| + ADJ aValue|ֵ,attachment|,#affairs|,#city| + N affairs|,#city| + N institution|,*manage|,#city| + N part|,%place|ط,city|,heart| + V depend| +ѲŰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǿ V damage|,means=use|,#power| + V damage|,means=use|,#power| + N part|,%organization|֯ + N room| + N location|λ,%room|,internal| + N music| +ֶ N community|,*perform|,#music| +װʦ N human|,#occupation|ְλ,*decorate|װ + N location|λ,%room|,external| + N attribute|,temperature|¶,&room| + V investigate| + V look| + V treat|Դ +Ӳ V investigate| +Ӳ N result|,wrong|,#calculate|,#measure| +Ӵ N software|,#(Microsoft|΢) +Ӷ V ignorant|֪,#look| +ӽ N standpoint| +Ӿ N experience|,#look| + N attribute|,ability|,#look|,&AnimalHuman| +Ƶ N attribute|,frequency|Ƶ,&image|ͼ + V RegardAs| + N part|,%AnimalHuman|,nerve|,#look| + V undertake|,content=official| + ADJ aValue|ֵ,attachment|,#experience| + N experience| +ͬ V RegardAs| +ͬϷ V despise| +ͬ· ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ͼ N image|ͼ +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease| +Ϊ V RegardAs| + N attribute|,scene|,&inanimate| +Ұ N attribute|,range|,*look|,&entity|ʵ + V RegardAs| + N fact|,exam| + V try| +԰ V handle|,manner=try| +Բ V disseminate| +Գ N facilities|ʩ,space|ռ,@exam| +Գ V experiment|ʵ,content=CauseToLive|ʹ +Դ V PutOn|,manner=try| +Ե V experiment|ʵ +Ե N organization|֯,@experiment|ʵ +Ե N tool|þ,*check|,#electricity| +Թ N tool|þ,cubic|,*experiment|ʵ +Ժ V experiment|ʵ +Ի V experiment|ʵ,content=GetMarried| +Լ N chemical|ѧ,*experiment|ʵ +Խʯ N stone|ʯ +Ծ N paper|ֽ,*exam| + N {Vtry|} +Կ V try| +̽ V investigate|,manner=try| + N problem| + N measure|,content=temperature|¶ +ͼ V try| + V ask| + V sell|,manner=try| + V try| + V perform|,manner=try|,entertainment| + V experiment|ʵ,manner=try| +鳡 N facilities|ʩ,@experiment|ʵ + N land|½,@planting|ֲ,agricultural|ũ + V try| +ת V experiment|ʵ,content=CauseToLive|ʹ +ֽ N paper|ֽ,*experiment|ʵ + V produce|,manner=try|,industrial| + V planting|ֲ,agricultural|ũ + V cease|ͣ + V detain|ס + V finish| + V gather|ɼ + V gather|ɼ,agricultural|ũ + V include| + V receive| + V restrain|ֹ +ձ V include|,ResultWhole=army|,military| +ձ V cease|ͣ,content=fight|,military| +ղ V store| +ղ V store|,literature| +ղؼ N human|,*store|,literature| +ճ V finish| +ճ N result|,$obtain|õ,#crop|ׯ,agricultural|ũ +յ V fulfil|ʵ +յ V receive| +շ V transmit| +շ N part|,%account|,commercial|,#human| +շ V levy| +շѵ绰 N facilities|ʩ,*communicate| +ո V TakeBack|ȡ +ո V collect|,agricultural|ũ +ո N LandVehicle|,*collect|,agricultural|ũ +չ V cease|ͣ,content=affairs| +չ V buy|,commercial| +չ N attribute|,price|۸,#buy|,&artifact|˹ +չ۸ N attribute|,price|۸,#buy|,&artifact|˹ +չվ N InstitutePlace|,*buy|,commercial| +չ V TakeBack|ȡ +չ V ize|̬,PatientAttribute=public|,#country| +ջ V TakeBack|ȡ +ջ V remove| +ջ V collect|,agricultural|ũ +ջ N result|,$obtain|õ,desired| +ռ V gather|ɼ +ռ N human|,gather|ɼ +ռ V detain|ס,police| +ռ V suffer|,content=detain|ס,crime|,police| +ս V levy| +ս V tighten|ս +վ N bill|Ʊ,#wealth|Ǯ +տ V look| +տ V BeRecovered|ԭ,medical|ҽ +տ V weave| +տ N tool|þ,*count|,#money| +տ N human|,*collect|,#wealth|Ǯ +տ N human|,*receive|,#money| + V receive|,possession=physical| + N symbol|,#quantity|,#DoSum| + V detain|ס,purpose=TakeCare| +£ V CausePartMove| +¼ V employ| +¼ V include| +¼ V record|¼ +¼ N tool|þ,*record|¼,#sound| + V gather|ɼ + V include| + V buy|,commercial| + V entice|,means=GiveAsGift|,crime| + V finish|,commercial| + V cease|ͣ +ȡ V collect| + V detain|ס,crime|,police| + N InstitutePlace|,@escape|,#unfortunate| + V include| + V take|ȡ + N wealth|Ǯ,$earn|׬ + N wealth|Ǯ,$earn|׬,commercial| +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V detain|ס,purpose=interrogate| +ʰ V PutInOrder| +ʰ V load|װ +ʰ V punish| +ʰ V remove| +ʰ V repair| + V pause|ͣ,commercial| + V look| + V receive| + N human|,*receive| + V control| + V load|װ + V restrain|ֹ +˰ V collect|,possession=expenditure|,commercial| +˰ V collect|,possession=expenditure|,politics| +˰ N human|,#occupation|ְλ,*receive|,#expenditure|,official| + V CausePartMove| + V assemble|ۼ,military| + V shrink|С + V shrink|С,medical|ҽ + V assemble|ۼ,patient=army|,military| +̯ V cease|ͣ,content=affairs| +̯ V cease|ͣ,content=affairs|,commercial| +̯ V finish|,commercial| + N bill|Ʊ,#wealth|Ǯ + V listen| +β V cease|ͣ +Ч V succeed|ɹ + N human|,*receive|,#letter|ż +Ѷ̨ N InstitutePlace|,@receive|,information|Ϣ +Ѻ V detain|ס,crime|,police| + V CauseToLive|ʹ + N wealth|Ǯ,$earn|׬,commercial| + ADJ aValue|ֵ,attachment| + N fact|,gather|ɼ,#sound| + N machine|,*disseminate| + V gather|ɼ,possession=fund|ʽ +֧ N wealth|Ǯ,commercial| +ִ N bill|Ʊ,#wealth|Ǯ + V put| + N human|,employee|Ա + N part|,%human|,hand| +ְ N part|,%human|,hand| +ֱ N part|,%human|,hand| +ֱ N information|Ϣ,#image|ͼ +ֱ N information|Ϣ,#readings| +ֱ N method|,*compile|༭,*draw| +ֱ N part|,%AnimalHuman|,arm| +ֱ N location|λ,surrounding|Χ +ֱ N tool|þ,*tell|,#time|ʱ +ֱ N part|,%implement|,hand| +ֲ; ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ֲ N publications|鿯 +ֳ N publications|鿯,$copy|д +ֳ N LandVehicle| +ֳ V hold| +ִ N stationery|ľ +ֵ N tool|þ,*illuminate|,#electricity| +ֵͲ N tool|þ,*illuminate| +ֶ N method| +ֶ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N method| +ַ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N MusicTool| +ַ N human|,*perform|,entertainment| +ַ N machine|,#crop|ׯ,*transport| +ָ N experience|,#feel| +ָ N readings| +ֹ ADJ aValue|ֵ,source|Դ +ֹ N fact| +ֹҵ N affairs| +ֹ N affairs| +ֹƷ N tool|þ,*decorate|װ +ֹ N MusicTool| +ֻ N tool|þ,*communicate| +ּ N information|Ϣ,#image|ͼ +ּ N information|Ϣ,#readings| +ּۿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| +ּ V record|¼ +ֽ N fact|,#act|ж +ֽ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ֽŲɾ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֽ N tool|þ,*wipe| +ֽ V OwnNot|,possession=money| +ֽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +־ N tool|þ,*break|۶ +־ N tool|þ,*wipe| +ֿ ADJ aValue|ֵ,ability|,able|,desired| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N weapon| + N information|Ϣ + N weapon| +¯ N tool|þ,*WarmUp| +æ V flurried| +ģ N trace| + N tool|þ,*wipe| + N attribute|,circumstances|,&human|,&organization|֯ +ǹ N weapon|,*firing| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +ɲ N part|,%vehicle|ͨ,*fix|ס + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N mark|־ + V write|д + N fact|,cure|ҽ,#split|ƿ,#part|,medical|ҽ + N tool|þ,*cure|ҽ,medical|ҽ + N room|,*cure|ҽ,medical|ҽ +̨ N tool|þ,@cure|ҽ,medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N SportTool|˶,#clothing|,#hand| + N clothing|,#hand| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ʽ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ͷ N attribute|,environment|,#wealth|Ǯ +ͷ N location|λ,surrounding|Χ,space|ռ +Ƴ N LandVehicle| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N part|,%AnimalHuman|,arm| +޴ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +޸֮ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +㵸 V joyful|ϲ + ADJ aValue|ֵ,attachment| + N attribute|,environment|,#wealth|Ǯ,&human| + V forgive|ԭ + N human|,*guess|² +д V write|д + N fact|,control| + N part|,%human|,hand| + N method| + N payment| + N attribute|,ability|,&human| + N fact|,#mating| +ӡ N trace|,#hand| + N readings|,past| + N part|,%human|,hand| + N tool|þ,#disable|м,*walk| +ָ N part|,%AnimalHuman|,hand| +ָͷ N part|,%AnimalHuman|,hand| +ֽ N paper|ֽ,*wipe| + N human|,family|,mass|,male| +޴ V flurried| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,official| + N part|,%AnimalHuman|,head|ͷ + NUM qValue|ֵ,sequence|,ordinal| +׳ N fact|,perform| +׳ NUM qValue|ֵ,sequence|,ordinal| +׳ N human|,#occupation|ְλ,official| +׳ V start|ʼ +״ V start|ʼ +׵ V suffer|,content=attack| +׶ N place|ط,capital|,#country| +׶ N human|,crime|,undesired|ݬ +׸ N place|ط +׺ V VehicleGo|ʻ +׺ V fly| +׼ N part|,%AnimalHuman|,*die|,head|ͷ +׿ V agree|ͬ + N human|,official| + N human|,#occupation|ְλ,official| +һָ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +շ N coupon|Ʊ֤,*post|ʼ,#letter|ż + N tool|þ,*decorate|װ,$PutOn| + V hesitate|ԥ +; V start|ʼ,content=leave|뿪 +β ADV frequency|Ƶ +β N process| +λ N attribute|,rank|ȼ,HighRank|ߵ +ϯ ADJ aValue|ֵ,importance|,important| +ϯ N location|λ,glorious| +ϯ N human|,official| +ϯִй N human|,#occupation|ְλ,official| + ADV aValue|ֵ,sequence|,ordinal| + N human|,#occupation|ְλ,official| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + V uprise| +ӳʽ N fact| +ս V win|ʤ +ս V win|ʤ,sport| + N human|,religion|ڽ + V aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near| + V check| + V defend| + V defend|,military| + V obey|ѭ +ر V defend|,military| +ر N army|,*defend|,military| +زū N human|,greedy|̰,miser|,undesired|ݬ +زū N human|,greedy|̰,undesired|ݬ +س N LandVehicle| +صס ADJ aValue|ֵ,ability|,withstand|ס,desired| +ص N army|,*defend|,military| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ط V obey|ѭ,content=law|ɷ +ط V InstitutePlace|,*obey|ѭ,#law|ɷ +ع V unfortunate|,scope=lose|ʧȥ,family| +غ V keep|,patient=lasting| +غ V check| +غ V expect| +غ V wait|ȴ +ػ V defend| +ػ N humanized|,*defend| +ؽ V obey|ѭ,content=loyal|Т +ؾ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ؾ N human|,stiff|,undesired|ݬ +ؾ N army|,*defend|,military| +ؿƿ V KeepSilence|˵ + V condole|° +Ա N human|,*exercise|,(football|) + V congratulate|ף + V check| + V defend| + V defend|,military| + V obey|ѭ,content=MakeAppointment|Լ +ҵ V maintain|,patient=artifact|˹ +ҹ V check|,time=night| + N regulation| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר +ٲ N tool|þ,cubic|,@store|,#die| +ٳ N time|ʱ,day|,@ComeToWorld| +ٵ N time|ʱ,day|,@ComeToWorld| + N tool|þ,#ComeToWorld|,$GiveAsGift| + N food|ʳƷ,*congratulate|ף,#ComeToWorld| + N attribute|,age|,&animate| + V guarantee|֤,scope=die|,commercial| + N human|,aged| + N human|,aged|,$congratulate|ף + N clothing|,#die| + V die| + V grant| + V teach| +ڷ V disseminate|,purpose=GiveBirth|,agricultural|ũ +ڼ V teach|,content=plans|滮 +ڽ V reward|,possession=tool|þ +ھ V disseminate|,purpose=GiveBirth| +ڿ V teach|,knowledge|֪ʶ,education| + V order| +Ȩ V order| +Ȩ N document|,*order| + V grant| + V reward|,possession=rank|ȼ,military| +ѫ V reward|,possession=tool|þ +ҵ V teach|,knowledge|֪ʶ,education| + V teach|,knowledge|֪ʶ + V incite|ָʹ + V teach| + V grant| + V sell| +ۺ N affairs|,*TakeCare|,commercial| +ۻ V sell|,possession=artifact|˹ +ۻԱ N human|,#occupation|ְλ,employee|Ա,*sell|,commercial| +ۼ N attribute|,price|۸,&artifact|˹,commercial| + V sell| +Ʊ V sell|,possession=coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +ƱԱ N human|,#occupation|ְλ,employee|Ա,*sell|,#coupon|Ʊ֤,#vehicle|ͨ + V disappear|ʧ,#sell|,commercial| + V endure| + V receive| + V suffer| + V undergo| +ܱ N human|,$guarantee|֤ +ܲ V ill|̬,agricultural|ũ +ܲ V ill|̬,medical|ҽ +ܳ V suffer|,content=moisten|ʪ +ܳ V undergo|,content=like|ϧ +ܴ V fail|ʧ +ܵ V suffer| +ܵ V undergo| +ܵ V withstand|ס +ܷ V suffer|,content=punish| +ܷ V pregnant|,agricultural|ũ +ܹ V suffer|,content=punish| +ܺ V suffer|,content=damage| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$damage| +ܺ V fever| +ܻ N tool|þ,*listen| +ܻ V receive|,possession=pros| +ܻݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ܻ V receive|,possession=artifact|˹,crime| +ܼ̤ V suffer|,content=damage| +ܽ V receive|,possession=reward| +ܽ V win|ʤ +ܾ V suffer| +ܾ V suffer|,content=frighten|Ż +ܾ V suffer|,content=frighten|Ż +ܾ V pregnant|,#medical|ҽ +ܾ N part|,%AnimalHuman|,embryo| +ܾ V shy| +ܿ V suffer|,content=unfortunate| + V relate|й + V unfortunate| + V handle|,police| + N receive|,possession=physical| + V fever| + V receive| + V receive|,possession=order| + V suffer|,content=unfortunate| + N human|,$MakeBad|Ӻ,#crime| +ƭ V misunderstand| +ƭ V human|,*misunderstand| +Ƹ V accept|,content=employ| +Ƹ V accept|,content=tool|þ,#GetMarried| + V suffer|,content=damage| + V suffer|,content=poor| +Ȩ V receive|,possession=power| + V undergo|,content=WarmUp| +˰ ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + V wounded| + V suffer|,content=interrogate|,police| + N part|,%language| + V suffer|,content=lose|ʧȥ +̥ V pregnant|,#medical|ҽ + V undergo|,content=entrust|ί + N human|,$entrust|ί +ϴ V undergo|,religion|ڽ + V undergo|,content=delimit| +ѵ V undergo|,content=teach| + V obtain|õ,possession=pros| + N human|,obtain|õ,#pros| + V enjoy| + V obtain|õ,possession=pros| +Ԯ V obtain|õ,possession=help| +Ԯ N place|ط,country|,$help|,#commercial| +Լ N human|,*MakeAppointment|Լ + V pregnant|,#medical|ҽ + V suffer|,content=unfortunate| + V suffer|,content=control| + V suffer|,content=control| + V suffer|,content=obstruct|ֹ + V suffer|,content=unfortunate| + ADJ aValue|ֵ,fatness|,bony| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ +ݳ ADJ aValue|ֵ,height|߶,tall| +ݹ N part|,%plant|ֲ,embryo| +ú N material|,*lighting|ȼ,$burn| + N human|,bony| + N part|,%animate|,flesh|,bony| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony| +С ADJ aValue|ֵ,fatness|,bony| + N human|,bony| + N beast| +޻ N part|,%building|,#mouth| + N LandVehicle| + N beast| +ҽ N human|,#occupation|ְλ,*cure|ҽ,#animal|,medical|ҽ + N vegetable|߲ +߲ N vegetable|߲ +߹ N vegetable|߲ + N part|,%thing|,heart| +Ŧ N part|,%thing|,heart| + V MakeUp|ױ + V PutInOrder| + N tool|þ,*MakeUp|ױ + V MakeUp|ױ + V PutInOrder|,industrial| +ͷ V MakeUp|ױ,patient=hair|ë +ϴ V MakeUp|ױ +ױ V MakeUp|ױ + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ⲻ֪ V ignorant|֪ + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +;ͬ V BeSame|ͬ +ѫ N result|,#succeed|ɹ,superior|,desired| + V express|ʾ +㷢 V express|ʾ + V express|ʾ,content=emotion| +д V describe|д + V defeated| + V donate| + V transport| + V transport|,commercial| + N place|ط,country|,*transport| + V transmit|,patient=electricity|,industrial| + N tool|þ,linear|,@transmit| + V defeated| +侫 N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ѹ N part|,%AnimalHuman|,viscera| +ѹ N disease| + N part|,%AnimalHuman|,viscera| + V GoInto|,commercial| + V transport|,commercial| + V transport| +ʹ N part|,%implement|,*transmit| +Ѫ V give|,possession=liquid|Һ,medical|ҽ +Ѫ V help| +Һ V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ +Ӯ N attribute|,effect|Ч,&event|¼ +͹ N facilities|ʩ,linear|,cubic|,@transmit| +͹ܵ N facilities|ʩ,*transmit| + N human|,*defeated| + N human|,family|,male| + N human|,male| +岮 ADJ aValue|ֵ,clan| +常 N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,male| + N human|,family|,male| +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V unfold|̯ +泩 ADJ aValue|ֵ,circumstances|,happy|,desired| +泩 V joyful|ϲ + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V satisfied| +滺 ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +滺 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +滺 ADJ aValue|ֵ,circumstances|,relax|,desired| + V CausePartMove| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,tranquil|,desired| + V satisfied| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V AtEase| +̹ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V satisfied| + ADJ aValue|ֵ,circumstances|,happy|,desired| +չ V CausePartMove| +չ V unfold|̯ + V CausePartMove|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,female|Ů,kindhearted|,desired| + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V despise| + V dredge|ͨ,agricultural|ũ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V spread| +赼 V dredge|ͨ,agricultural|ũ +赼 V persuade|Ȱ˵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +迣 V dredge|ͨ,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +© N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + N attribute|,density|ܶ,&physical| +ɢ ADJ aValue|ֵ,density|ܶ,sparse| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ +ɢ V disperse|ɢ +ɢ V spread| +ʧ N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ͨ V dredge|ͨ,agricultural|ũ +ͨ V mediate| + V despise| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + N attribute|,form|״,&character| + N attribute|,style|,&character| + N document| + N letter|ż + N publications|鿯 + V write|д + N tool|þ,cubic|,#study|ѧ,@put| +鱨 N publications|鿯 +鱾 N readings| + N furniture|Ҿ,cubic|,@put|,#publications|鿯 + N human|,NotQuick|ګ + N InstitutePlace|,*sell|,@buy|,readings| +鷨 N method|,*write|д +鷨 N human|,*write|д,literature| +鷿 N room|,@study|ѧ + N readings|,#text| + N furniture|Ҿ,@put|,#publications|鿯 +黭 N artifact|˹,#image|ͼ,entertainment| +鼮 N publications|鿯 + N human|,#occupation|ְλ,employee|Ա +Ǵ N part|,%organization|֯ +Ա N human|,#occupation|ְλ,employee|Ա + N furniture|Ҿ,@put|,#publications|鿯 + N InstitutePlace|,publish| + N attribute|,behavior|ֹ,gracious|,&human| +鿯 N publications|鿯 + N room|,@put|,#publications|鿯 + ADJ aValue|ֵ,source|Դ +Ŀ N readings| + N text|,estimate| + N InstitutePlace|,publish| + N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| +̯ N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + N tool|þ,*protect|,#publications|鿯 +ͤ N facilities|ʩ,space|ռ,@sell|,#readings| + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + ADJ aValue|ֵ,attachment| +д V write|д + N letter|ż +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ի N room|,@study|ѧ +չ N fact|,*display|չʾ,#readings| + N furniture|Ҿ,space|ռ,@put| + V amend| + V redeem| +굱 V redeem|,possession=artifact|˹ + V redeem| + V buy|,commercial| + V redeem|,possession=human| + V redeem|,possession=self| + ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,$cook| + ADJ aValue|ֵ,physique|,ripe| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N food|ʳƷ + N FlowerGrass|,?medicine|ҩ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ػ N FlowerGrass|,?medicine|ҩ + N human|,*visit| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,able|,industrial| + N human|,able|,industrial| + N human|,able|,desired| + N material| +· N facilities|ʩ,route|· + N time|ʱ,desired|,#crop|ׯ + N time|ʱ,year|,desired|,#crop|ׯ + N human|,friend| +ʳ N food|ʳƷ +ʶ ADJ aValue|ֵ,relatedness|,intimate|,desired| +޶ V despise|,target=ordinary| +˯ V sleep|˯,manner=very| +˼ V think|˼,manner=attentive|ϸ + N material|,metal| + N stone|ʯ,material| +Ϥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ϥ V know|֪ +ϰ V know|֪ +֪ V know|֪ + V BeAble|ܹ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education| + N time|ʱ,@rest|Ϣ,@WhileAway| + N gas|,#season| + N gas|,hot| + N weather|,#season|,hot| + N time|ʱ,season|,hot| + N time|ʱ,morning| + N lights|,#morning| + V arrange| + N part|,%institution|,politics| + V sign|д + V handle| + N character|,$sign|д + V sign|д,ContentProduct=name| + N place|ط,ProperName|ר,(Sichuan|Ĵ) + N crop|ׯ + N beast| + N human|,undesired|ݬ,vulgar| + N part|,%computer| +Ŀ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N disease| + V BeMember| + V BelongTo| + V be| + N place|ط,#country| + N place|ط,country|,#BeMember| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N attribute|,&entity|ʵ +ֵ N aValue|ֵ + V BeMember| + V BelongTo| +ԫж V exposure|¶ + V BelongTo| + N method| + N part|,%language| + V explain|˵ + N text|,*explain|˵ +˵ V explain|˵ +ְ V tell| + V cultivate| + V endorse|ӵ + V establish| + V put| + N tree| + V praise|佱 + N tree| + N beast| +ɢ V disperse|ɢ + N part|,%tree|,body| + N InsectWorm|,*fly| + N part|,%tree|,body| + N part|,%tree|,base| + N part|,%tree|,head|ͷ + N material| + V establish| + N tree| + N tree|,young| +ľ N tree| +Ƥ N part|,%tree|,skin|Ƥ + N part|,%tree|,head|ͷ + N beast| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +Һ N part|,%tree|,liquid|Һ + N place|ط,chilly| + N place|ط,#tree| +֦ N part|,%plant|ֲ,limb|֫ +֬ N material| + N attribute|,kind|,&tree| + CLAS NounUnit|,&inanimate|,&plant|ֲ + N character|,surname|,human|,ProperName|ר + V restrain|ֹ + V wrap| + V restrain|ֹ + V wrap| +޲ V BeUnable| +֮߸ V delay| + V defend|,military| + V defend|,military| + ADJ aValue|ֵ,posture|,straight|ֱ + N part|,%character| + V put|,manner=straight|ֱ + N facilities|ʩ,#mine|,*dig|ھ + V put|,manner=straight|ֱ + V put|,manner=straight|ֱ + N MusicTool| + N human| + N human|,undesired|ݬ + N human|,young| + N house| + ADJ aValue|ֵ,clan| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,mass| +ĸ N human|,family|,female|Ů + N affairs| + N human|,#occupation|ְλ,employee|Ա,commercial| + N human|,family|,young| + N attribute|,circumstances|,&human|,&organization|֯ + V count| + N quantity|,amount|,&physical| + V quote| + N symbol|,#quantity| + ADJ qValue|ֵ,amount|,many| +ʤ ADJ qValue|ֵ,amount|,many| + N part|,%language| + ADJ aValue|ֵ,importance|,important| + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,season|,cold| + N information|Ϣ +ݿ N software|,@store|,information|Ϣ + ADJ aValue|ֵ,performance|,#quantity|,$control| + N quantity|,amount|,&entity|ʵ + N part|,%language| +ϵ V arithmetic|ϵ +ֵ N qValue|ֵ + V ExpressAgainst|Ǵ + N quantity|,amount|,&entity|ʵ + N symbol|,#quantity| +Ŀ N quantity|,amount|,&entity|ʵ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +԰ټ ADJ qValue|ֵ,amount|,many| +ǧ ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ֵ N symbol|,#quantity| + N quantity|,amount|,&entity|ʵ + N symbol| +ּ N computer| + V wash|ϴ + V wash|ϴ,patient=mouth| +ˡ V forgive|ԭ +ˢ V apply|ͿĨ +ˢ V remove| +ˢ N tool|þ,*wipe| +ˢ V wipe| +ˢ ADJ aValue|ֵ,color|ɫ,white| +ˢϴ V wipe| +ˢ V improve| +ˢ V repair| +ˢ V wash|ϴ +ˢ N tool|þ,*wipe| +ˣ V WhileAway| +ˣ V deceive|ƭ +ˣ V shake|ҡ +ˣ V deceive|ƭ +ˣ V deceive|ƭ +ˣ V slack|͵ +ˣͷ V deceive|ƭ +ˣͷ V slack|͵ +ˣ V IllBehave| +ˣå V IllBehave|,crime| +ˣŪ V IllTreat| +ˣŪ V deceive|ƭ +ˣƶ V TalkNonsense|Ϲ˵ +ˣǮ V gamble|IJ,crime| +ˣ V IllBehave| +ˣ۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ˣƤ V TalkNonsense|Ϲ˵ +ˤ V FallDown| +ˤ V break|۶ +ˤ V fall| +ˤ V throw| +ˤ V beat| +ˤ V study|ѧ +ˤ V FallDown| +ˤͷ V FallDown| +ˤͷ V err| +ˤ V FallDown| +ˤ V exercise|,sport| +ˤ V FallDown| +ˤ N fact|,exercise|,sport| +˥ V decline|˥ +˥ V decline|˥ +˥ V change|,industrial| +˥ V BecomeLess|,industrial| +˥ V decline|˥,medical|ҽ +˥ ADJ aValue|ֵ,age|,aged| +˥ V decline|˥,scope=age| +˥ V decline|˥ +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥ +˥ V perish| +˥΢ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥,scope=age| +˦ V abandon| +˦ V throw| +˦ V wave|ڶ +˦ V abandon| +˦ V throw| +˦ V sell|,cost=cheap|,commercial| +˦ V CausePartMove|,PatientPartof=arm| +˦ V refuse| +˧ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˧ N human|,#occupation|ְλ,official|,military| +˧ N part|,%tool|þ,#recreation| +˨ N part|,%tool|þ +˨ N tool|þ,*BlockUp| +˨ N tool|þ,*fasten|˩ +˨ N medicine|ҩ +˨ N disease| +˩ V fasten|˩ +˩ V wrap| +˩ V wrap| +˩ V fasten|˩ +˪ N RainSnow|ѩ +˪ ADJ aValue|ֵ,color|ɫ,white| +˪ N shape| +˪ N RainSnow|ѩ +˪ N time|ʱ,day| +˪ N time|ʱ +˫ N character|,surname|,human|,ProperName|ר +˫ ADJ qValue|ֵ,amount|,double| +˫̥ N human|,family|,mass| +˫ ADJ aValue|ֵ,attachment| +˫ó N affairs|,#buy|,#sell|,commercial| +˫ N part|,%entity|ʵ +˫ N fact|,compete|,sport| +˫ N human|,mass| +˫ N part|,%entity|ʵ,double|,aspect| +˫ N beast| +˫ N SportTool|˶ +˫ V endeavour| +˫ N facilities|ʩ,route|· +˫ɹ N MusicTool| +˫ɹ N human|,*perform|,entertainment| +˫ N crop|ׯ +˫ ADJ aValue|ֵ,quality|,good|,desired| +˫˫ N tool|þ,#crop|ׯ +˫ N attribute|,name|,&human| +˫ N human|,family|,mass| +˫ N shape|,linear| +˫ȫ ADJ aValue|ֵ,range|,all|ȫ +˫˴ N furniture|Ҿ,space|ռ,@sleep|˯ +˫˷ N room| +˫˼ N room| +˫ N time|ʱ,day| +˫ N human|,female|Ů,#disease| +˫ ADJ aValue|ֵ,source|Դ +˫ N symbol|,#quantity| +˫˫ ADJ qValue|ֵ,amount|,double| +˫ N chemical|ѧ +˫崬 N ship| +˫Ͳ ADJ aValue|ֵ,form|״ +˫͹͸״ ADJ aValue|ֵ,form|״ +˫̬ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +˫ϲ N phenomena|,lucky|,desired| +˫ϲ EXPR phenomena|,lucky|,desired| +˫ ADJ aValue|ֵ,form|״ +˫ ADJ aValue|ֵ,form|״ +˫ N tool|þ,*WhileAway|,*congratulate|ף +˫ ADJ aValue|ֵ,direction|,double| +˫ N celestial| +˫ N attribute|,name|,surname|,&human| +˫Ƥ N part|,%AnimalHuman|,skin|Ƥ +˫ˮ N chemical|ѧ +˫ N aircraft| +˫Ӯ V win|ʤ +˫ N celestial| +˫ ADJ aValue|ֵ,kind|,#language| +˫ ADJ aValue|ֵ,time|ʱ,month|,double| +˫¿ N publications|鿯 +˫ְ N human|,employee|Ա,mass|,family| +˫ ADJ aValue|ֵ,property|,double| +˫ع N attribute|,attachment|,#country|,&human| +˫ؼ N human|,police|,military|,*scout| +˫˸ N attribute|,behavior|ֹ,&human| +˫ ADJ aValue|ֵ,time|ʱ,week|,double| +˫ܿ N publications|鿯 +˫ N celestial| +˫ N material|,?clothing| +ˬ V BeWell|׳ +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +ˬ V satisfied| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ N tool|þ,*MakeUp|ױ +ˬֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˭ PRON human|,question| +˭ ADV aValue|ֵ,behavior|ֹ,sudden| +˭ PRON human|,question| +˭֪ ADV aValue|ֵ,property|,^$predict|Ԥ +ˮ N character|,surname|,human|,ProperName|ר +ˮ N waters|ˮ,generic|ͳ +ˮ N waters|ˮ,linear| +ˮ N water|ˮ,generic|ͳ +ˮ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ˮ N tool|þ,*inhale|,#liquid|Һ +ˮ N PenInk|ī,*write|д +ˮ N land|½,surrounding|Χ,#waters|ˮ +ˮ N tool|þ,*measure|,#water|ˮ +ˮ N human|,military|,#waters|ˮ +ˮ N water|ˮ +ˮ N material|,colored|,*draw| +ˮʻ N image|ͼ +ˮ N FlowerGrass| +ˮ N artifact|˹,generic|ͳ,#fish| +ˮƷ N artifact|˹,generic|ͳ,#fish| +ˮҵ N affairs|,#fish| +ˮ N facilities|ʩ,space|ռ,*produce|,#water|ˮ +ˮ N LandVehicle| +ˮ N tool|þ +ˮ N place|ط,city| +ˮ N waters|ˮ,surfacial| +ˮ N fact|,handle|,#water|ˮ +ˮ V succeed|ɹ +ˮ N crop|ׯ +ˮ N facilities|ʩ,route|·,#waters|ˮ +ˮ N water|ˮ +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ˮ N land|½,#crop|ׯ +ˮ N electricity| +ˮ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ˮ N expenditure|,#water|ˮ,#electricity| +ˮվ N facilities|ʩ,space|ռ,#electricity| +ˮ N disease| +ˮ N expenditure|,#water|ˮ +ˮ N attribute|,dampness|ʪ,&physical| +ˮ N information|Ϣ,$boast|,undesired|ݬ +ˮ N food|ʳƷ +ˮ N tool|þ,*MakeUp|ױ +ˮ N crop|ׯ +ˮ N tool|þ,cubic|,@put| +ˮ N facilities|ʩ,space|ռ,linear|,*drain|ų +ˮ N stone|ʯ,waste| +ˮ N material|,linear| +ˮ N fruit|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,red| +ˮ N tool|þ,cubic|,@put|,#liquid|Һ +ˮ N tool|þ,cubic|,@put|,#liquid|Һ,*irrigate| +ˮ N water|ˮ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N phenomena|,lack|ȱ,#water|ˮ +ˮ ADJ phenomena|,undesired|ݬ,#unfortunate| +ˮ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +ˮ N land|½,#crop|ׯ +ˮ N food|ʳƷ +ˮ V StateChange|̬,StateFin=liquid|Һ,industrial| +ˮ N material|,?tool|þ,#decorate|װ,precious| +ˮ N facilities|ʩ,*obtain|õ,#liquid|Һ +ˮ N drinks|Ʒ,$addict|Ⱥ +ˮ N facilities|ʩ,space|ռ,*store|,#liquid|Һ +ˮ N weapon|,*attack|,#ship| +ˮ N affairs|,*manage|,#water|ˮ +ˮ N institution|,*manage|,#water|ˮ,ProperName|ר,politics| +ˮѧ N human|,#knowledge|֪ʶ +ˮ V produce|,PatientProduct=electricity| +ˮƷ N method|,*cure|ҽ +ˮҽ N human|,medical|ҽ,*cure|ҽ +ˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ˮ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˮ N waters|ˮ,linear| +ˮ N water|ˮ +ˮͷ N part|,%tool|þ,*OpenShut| +ˮ· N facilities|ʩ,route|·,#waters|ˮ +ˮ½ N earth| +ˮ½ ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,green| +ˮ N tool|þ +ˮַ N machine|,*produce|,#electricity| +ˮֻ N machine| +ˮ N part|,%building|,*drain|ų,#liquid|Һ +ˮʯ V exposure|¶ +ˮ͡ N material|,*build| +ˮ N fruit|ˮ +ˮ N attribute|,area|,&waters|ˮ +ˮ N attribute|,surfacial|,&waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮĥ N tool|þ,*grind|ĥ +ˮĥ N tool|þ,@grind|ĥ +ˮĥʯ N material| +ˮī N image|ͼ,$draw| +ˮ N material|,*build| +ˮ೧ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ˮ N tool|þ,*grind|ĥ +ˮţ N livestock| +ˮů N affairs|,*provide|,#warm| +ˮů N human|,#occupation|ְλ,industrial| +ˮ N disease| +ˮ N shape|,liquid|Һ +ˮƽ ADJ aValue|ֵ,posture|,horizontal| +ˮƽ N attribute|,rank|ȼ,&thing| +ˮƽ N shape|,surfacial|,level|ƽ +ˮƽ N shape|,linear|,level|ƽ +ˮ N gas| +ˮ N bird| +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N fact|,sport| +ˮ N tree| +ˮ N facilities|ʩ,#liquid|Һ,linear| +ˮҺ N water|ˮ,*contain|,#material| +ˮ齻 ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮɼ N tree| +ˮ ADJ aValue|ֵ,performance| +ˮϷɻ N aircraft|,*SelfMove|,#waters|ˮ +ˮϻ ADJ aValue|ֵ,performance| +ˮϻԱ N human|,#occupation|ְλ,*check|,police|,#waters|ˮ +ˮϾ N human|,*reside|ס,#waters|ˮ +ˮ N beast| +ˮ N attribute|,depth|,&water|ˮ +ˮ N animal|,#waters|ˮ +ˮֲ N plant|ֲ,#waters|ˮ +ˮʦ N army|,#waters|ˮ +ˮʭ N InsectWorm|,undesired|ݬ +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N human|,#occupation|ְλ,employee|Ա,#ship| +ˮ N facilities|ʩ,*provide|,#water|ˮ +ˮ̡ N beast| +ˮ N waters|ˮ,surfacial| +ˮ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ˮͰ N tool|þ,cubic|,@put|,#liquid|Һ +ˮͷ N water|ˮ +ˮ N attribute|,circumstances|,&entity|ʵ +ˮ N land|½ +ˮ N fact|,*maintain|,#land|½ +ˮʧ N phenomena|,lose|ʧȥ,#stone|ʯ +ˮ ADJ aValue|ֵ,brightness|,bright| +ˮλ N attribute|,height|߶,&waters|ˮ +ˮ N attribute|,temperature|¶,&water|ˮ +ˮ N knowledge|֪ʶ,#waters|ˮ,#liquid|Һ +ˮѧ N human|,#knowledge|֪ʶ +ˮվ N InstitutePlace|,check|,#waters|ˮ,#water|ˮ +ˮȾ N fact|,pollute|ʹ,#water|ˮ +ˮϵ N waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮ N FlowerGrass| +ˮɻ N FlowerGrass| +ˮ N mark|־,#liquid|Һ,#ship| +ˮ N tool|þ,cubic|,@put| +ˮ N place|ط,#waters|ˮ +ˮйͨ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ˮк V StomachTrouble|֢ +ˮ N celestial| +ˮ N attribute|,ability|,#swim|,&human| +ˮѭ N weather| +ˮѹ N attribute|,strength|,&water|ˮ +ˮ N addictive|Ⱥ +ˮ N tree| +ˮ N chemical|ѧ +ˮ N metal| +ˮӡ N mark|־,#money| +ˮ N waters|ˮ +ˮԴ N location|λ,#waters|ˮ +ˮ V transport| +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ V bury| +ˮ N AlgaeFungi|ֲ +ˮ N InsectWorm| +ˮբ N facilities|ʩ,#waters|ˮ +ˮǴ V prosper| +ˮ N gas| +ˮ N attribute|,quality|,&liquid|Һ +ˮ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ˮ N disease|,swollen| +ˮ N water|ˮ +ˮ N water|ˮ +ˮ׼ N attribute|,rank|ȼ,&thing| +ˮԴ N water|ˮ +ˮ N community| +ˮ N fish|,generic|ͳ +ˮ N InstitutePlace|,*display|չʾ,#fish| +ˮ N facilities|ʩ,space|ռ,@reside|ס +ˮ N InsectWorm| +ˮ N InsectWorm| +ˮ N InsectWorm| +˯ V sleep|˯ +˯ N tool|þ,cubic|,@sleep|˯ +˯ V sleep|˯ +˯ N human|,*sleep|˯,lazy| +˯ N FlowerGrass| +˯ñ N clothing|,#head|ͷ,#sleep|˯ +˯ N fact|,sleep|˯ +˯ V sleep|˯ +˯ V awake| +˯ N clothing|,#sleep|˯ +˯ V sleep|˯ +˰ N expenditure| +˰ N quantity|,amount|,&expenditure| +˰ N expenditure| +˰ N affairs|,#expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N quantity|,rate|,&expenditure| +˰Ŀ N part|,%affairs|,#expenditure| +˰ N fund|ʽ,$levy| +˰ N fact|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N institution|,*levy|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N regulation|,#expenditure| +˰ N system|ƶ,#expenditure| +˰ N attribute|,kind|,&expenditure| +˱ V drink| +˱ V drink| +˲ V CausePartMove|,PatientPartof=eye| +˲ ADJ aValue|ֵ,duration|,TimeShort| +˲ʱ ADJ aValue|ֵ,duration|,TimeShort| +˲Ϣ ADJ aValue|ֵ,ability|,able|,change| +˳ V PutInOrder| +˳ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +˳ V lucky| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ N quantity|,amount|,#earn|׬,&commercial| +˳ ADJ aValue|ֵ,circumstances|,free|,desired| +˳ ADJ aValue|ֵ,content|,fluent|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ V surrender| +˳ N place|ط,city|,ProperName|ר,(China|й) +˳ ADJ aValue|ֵ,SoundQuality|,good|,desired| +˳ V visit| +˳ N use| +˳ N wind| +˳Ͷ V please|ȡ +˳ N phenomena|,desired|,#lucky| +˳ ADJ aValue|ֵ,behavior|ֹ,careless| +˳ ADJ aValue|ֵ,content|,easy|,desired| +˳ ADJ aValue|ֵ,taste|ζ,good|,desired| +˳ N text| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,succeed|ɹ,desired| +˳· N location|λ,%route|· +˳ʱ ADJ aValue|ֵ,direction| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ ADV aValue|ֵ,time|ʱ,convenient| +˳ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ǣ V steal|͵ +˳ˮ V use| +˳ V lucky| +˳ V investigate| +˳ ADJ aValue|ֵ,circumstances|,good|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ N attribute|,sequence|,&entity|ʵ +˳ V delay| +˳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˳Ӧ V obey|ѭ +˳ PREP {direction} +˴ N human|,royal|,ProperName|ר,past| +˵ V ExpressAgainst|Ǵ +˵ V explain|˵ +˵ N knowledge|֪ʶ +˵ V mean|ָ +˵ V persuade|Ȱ˵ +˵ V speak|˵ +˵ ADV {comment|} +˵ȥ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +˵ V FitNot| +˵ V ignorant|֪ +˵ V sing|,entertainment| +˵ V speak|˵ +˵ V reveal|¶ +˵ N text|,$speak|˵ +˵ V boast| +˵ ADV {comment|} +˵ V speak|˵ +˵ùȥ ADJ aValue|ֵ,standard|׼,average| +˵ V fit|ʺ +˵ V MakeAppointment|Լ +˵ V explain|˵,content=reason| +˵ N method|,*use|,#expression|,#compile|༭ +˵ N thought|ͷ +˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,unable|ӹ,$persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,persuade|Ȱ˵ +˵ V mediate| +˵ V mediate| +˵ V speak|˵ +˵ V talk|̸ +˵ V deceive|ƭ +˵ N human|,*deceive|ƭ +˵ V explain|˵ +˵ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +˵ V debate| +˵ý V mediate|,ResultEvent=GetMarried| +˵ V explain|˵ +˵ N readings|,*explain|˵ +˵ ADJ aValue|ֵ,ability|,able|,explain|˵ +˵ N human|,*explain|˵ +˵ V mediate|,ResultEvent=GetMarried| +˵ V request|Ҫ,ResultEvent=forgive|ԭ +˵ V TalkNonsense|Ϲ˵ +˵ V perform| +˵ͷ N information|Ϣ +˵ͷ N reason|,undesired|ݬ +˵ V praise|佱 +˵Ц V speak|˵ +˵һ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˵ V boast| +˵ V debate| +˵ V quarrel| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ N result|,desired|,#succeed|ɹ +˶ N physical|,precious| +˶ ADJ qValue|ֵ,amount|,few| +˶ʿ N human|,*study|ѧ,education| +˶ʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +˶ѧ ADJ aValue|ֵ,wise|,desired| +˶ѧ N human|,wise|,desired| +˶ѧͨ N human|,wise|,desired| +˷ ADJ aValue|ֵ,direction|,north| +˷ N celestial|,space|ռ +˷ N time|ʱ,day| +˷ N time|ʱ,day| +˷ N celestial|,space|ռ +˸ ADJ aValue|ֵ,brightness|,bright| +˸ ADJ aValue|ֵ,brightness|,bright| +˸˸ V illuminate| +˹ ADJ aValue|ֵ,kind|,special| +˹ N human|,official|,ProperName|ר,(USSR|) +˹¸Ħ N place|ط,capital|,ProperName|ר,(Sweden|) +˹ά N place|ط,ProperName|ר +˹ά N human|,(Scandinavia|˹ά) +˹ͼ N place|ط,capital|,ProperName|ר,(Brunei|) +˹ N place|ط,country|,ProperName|ר,(Asia|) +˹¬ N money|,(Sri Lanka|˹) +˹工 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovakia|˹工) +˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹工 N language|,#country|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovenia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N language|,#country|,ProperName|ר +˹˹ N place|ط,city|,ProperName|ר,(France|) +˹ͼ N place|ط,city|,ProperName|ר,(Germany|¹) +˹ϣ N language|,#country|,ProperName|ר +˹ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swaziland|˹ʿ) +˹ʿ N place|ط,country|,ProperName|ר,(Africa|) +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V quarrel| +˺ V split|ƿ +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˻ V cry|,#livestock| +˻ V cry| +˻ V cry|,#livestock| +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˼ V ThinkOf|˼ +˼ N thinking|˼ +˼ V think|˼ +˼ N attribute|,outlook|ǰ,&thinking|˼ +˼ V think|˼ +˼ V ThinkOf|˼ +˼ V think|˼ +˼· N thinking|˼ +˼ V think|˼ +˼Ľ V admire|Ľ +˼ V ThinkOf|˼ +˼ V think|˼ +˼Ω N thinking|˼ +˼Ω V think|˼ +˼ά N thinking|˼ +˼ά V think|˼ +˼ V ThinkOf|˼,content=family| +˼粡 N disease| +˼ N thinking|˼ +˼ N thought|ͷ +˼뷽 N method|,*think|˼ +˼ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +˼ N human|,#knowledge|֪ʶ +˼ϵ N thinking|˼ +˼ N problem|,#thinking|˼ +˼ʶ N thinking|˼ +˼ N thinking|˼ +˼ V think|˼ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret| +˽ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +˽ V flee|,cause=GetMarried| +˽ V own|,manner=crime| +˽ N emotion|,hate|,undesired|ݬ +˽ V GoInto|,manner=secret| +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N law|ɷ +˽ ADJ aValue|ֵ,content|,secret| +˽ N wealth|Ǯ +˽Ǯ N wealth|Ǯ +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N wealth|Ǯ,private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ V handle|,manner=private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N human|,private|˽ +˽˷ V visit|,manner=private|˽ +˽˹ϵ V attribute|,relatedness|,private|˽,&human| +˽ V human|,#occupation|ְλ,employee|Ա,private|˽ +˽ҵ V InstitutePlace|,private|˽,commercial| +˽ N human|,#occupation|ְλ,commercial| +˽ N fact|,private|˽ +˽ N human|,family|,young| +˽ N fact|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N thought|ͷ,undesired|ݬ,greedy|̰ +˽Ӫ ADJ aValue|ֵ,attachment|,private|˽ +˽Ӫҵ N InstitutePlace|,commercial|,industrial| +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽л V ize|̬,PatientAttribute=private|˽ +˽ N system|ƶ,#attachment|,private|˽ +˽ V speak|˵,manner=secret| +˽ N aspiration|Ը,expect|,self| +˽ V transport|,manner=secret|,crime|,commercial| +˽ N stationery|ľ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ۡ N house|,private|˽ +˽ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ N human|,undesired|ݬ,female|Ů,crime|,#SeekPleasure|Ѱ,*(be a prostitute|) +˾ N character|,surname|,human|,ProperName|ר +˾ V manage| +˾ N part|,%institution| +˾ ADJ aValue|ֵ,attachment|,#police| +˾ ADJ aValue|ֵ,performance|,*conduct|ʵʩ,#law|ɷ,police| +˾ V conduct|ʵʩ,patient=law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N human|,police|,*judge|ö,#crime| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾Ա N human|,military| +˾ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +˾ N character|,surname|,human|,ProperName|ר +˾ռ ADJ aValue|ֵ,kind|,ordinary| +˾ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N part|,%army|,*order| +˾ N human|,#occupation|ְλ,official|,military| +˾Ա N human|,#occupation|ְλ,official|,military| +˾¯ N human|,#occupation|ְλ,industrial| +˾ N character|,surname|,human|,ProperName|ר +˾ͽ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N human|,*manage| +˿ CLAS NounUnit|,&thing| +˿ N material|,?clothing|,?tool|þ +˿ N shape| +˿ N material|,?clothing|,?tool|þ +˿֮· N place|ط,ProperName|ר,(China|й) +˿ N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| +˿ N food|ʳƷ +˿ N part|,%vegetable|߲,embryo|,$eat| +˿ N vegetable|߲ +˿Ͻ N tool|þ,*wipe| +˿ N lights|,bright| +˿ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +˿ ADJ qValue|ֵ,amount|,few| +˿ N material|,?clothing|,?tool|þ +˿˿ ADJ aValue|ֵ,content|,concise|,desired| +˿ N clothing|,#foot| +˿ N tool|þ +˿ N part|,%MusicTool| +˿ N tool|þ,linear|,*fasten|˩ +˿֯Ʒ N clothing| +˿ N MusicTool| +˿״ N shape| +˿׶ N tool|þ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,die| + V die| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V labour|ٲ + N human|,undesired|ݬ,friend| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,enemy| + N phenomena|,dangerous|Σ + N waters|ˮ,ProperName|ר +ͬ N facilities|ʩ,route|· + N fact|,punish|,#detain|ס,police| +Ҹȼ V BeRecovered|ԭ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ V study|ѧ,manner=stiff| + N location|λ + N shape| + V escape|,ResultEvent=die| + N material|,?food|ʳƷ + V die| +ʿ N human|,*die|,desired| +Ƥ V IllBehave| +Ƥ V shameless|û + V IllBehave| + V aValue|ֵ,behavior|ֹ,passive| + N human|,crime|,undesired|ݬ,$judge|ö,#die| +ȥ V die| +ȥ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N human|,*die| + N phenomena|,wounded|,die| + N humanized|,*kill|ɱ,undesired|ݬ +ʬ N part|,%AnimalHuman|,*die|,body| + V defend|,manner=endeavour|,military| + V obey|ѭ,manner=stiff| +ˮ N water|ˮ +̥ N part|,%AnimalHuman|,embryo| + ADJ aValue|ֵ,physique|,die| + V die| + N quantity|,rate|,die|,&human| + N location|λ,#die| + V abandon|,possession=thought|ͷ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ N human|,stiff|,stubborn|,undesired|ݬ + N information|Ϣ,$tell|,#die| + N letter|ż,unable|ӹ,$post|ʼ + N fact|,punish|,#kill|ɱ,police| +һ ADJ aValue|ֵ,behavior|ֹ,passive| + N cause|ԭ,#die| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +๼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ڷ V die| + N human|,*die| + N human|,die| + N InstitutePlace|,commercial|,*sell| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + NUM qValue|ֵ,amount|,cardinal|,mass| +Ű V damage| +޼ɵ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N facilities|ʩ,religion|ڽ,space|ռ +¹ N facilities|ʩ,space|ռ,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ +Ժ N facilities|ʩ,religion|ڽ,space|ռ + ADV aValue|ֵ,time|ʱ + N human| + N human|,*receive| +ú ADV aValue|ֵ,time|ʱ + NUM qValue|ֵ,amount|,cardinal|,mass| + N symbol|,#music| +ı ADJ aValue|ֵ,form|״ +IJ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +IJ N beast| +Ĵ ADJ aValue|ֵ,range|,all|ȫ +Ĵ N location|λ +Ĵ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ĵ ADJ aValue|ֵ,frequency|Ƶ +ķ ADJ aValue|ֵ,form|״,square| +ķ N direction| +ķ N location|λ +ķ V disperse|ɢ +ĺ N place|ط +ĺ N waters|ˮ,surfacial| +ĺԺ N building| +Ļ N medicine|ҩ +ļ N time|ʱ,season| +ļ N part|,%vegetable|߲,embryo|,$eat| +ļ N vegetable|߲ +Ľ N part|,%place|ط,surrounding|Χ,#city| +Ľ N beast| + N human|,*reside|ס,near| + ADV aValue|ֵ,space|ռ,all|ȫ +˷ N direction| +˷ N location|λ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,space|ռ,all|ȫ +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N human|,mass| + N sound|,#language| +ʱ N time|ʱ,season| +ͨ˴ ADV aValue|ֵ,space|ռ,all|ȫ + V look| +Χ N location|λ + ADV aValue|ֵ,space|ռ,all|ȫ + N location|λ +ԭ N regulation|,ProperName|ר,(China|й) +Ұ N place|ط + N time|ʱ,month| +· N time|ʱ,month| +֫ N part|,%AnimalHuman|,limb|֫ + N location|λ + V TakeCare| + V wait|ȴ +ź V TakeCare| +Ż V wait|ȴ,content=time|ʱ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| +ƺ ADJ aValue|ֵ,behavior|ֹ,hidden| +Ƕ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʶ ADJ aValue|ֵ,relatedness|,intimate| + V foster|,agricultural|ũ +Dz N FlowerGrass|,*feed|ι,#animal| + N food|ʳƷ,*feed|ι,#animal| + V foster|,agricultural|ũ + N InstitutePlace|,@foster|,agricultural|ũ +Ա N human|,#occupation|ְλ,*foster|,agricultural|ũ + N symbol| +ʱ N time|ʱ,hour|ʱ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + V loosen| +ɰ V exempt|,ResultEvent=restrain|ֹ +ɰ V loosen| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɳ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɳ ADJ aValue|ֵ,tightness|ɽ,loose| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɶ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ɶ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɶ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ɹ N part|,%tree|,embryo| +ɹ N part|,%AnimalHuman|,head|ͷ +ɻ N food|ʳƷ +ɻ N food|ʳƷ +ɻ N waters|ˮ,linear|,ProperName|ר,(China|й) +ɼ N bird| +ɽ N attribute|,strength|,&inanimate| +ɽ N attribute|,tightness|ɽ,&inanimate| +ɾ V slack|͵ +ɿ V loosen| +ɿ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɿ V enjoy| + N tree| +ë N InsectWorm| + N material|,*lighting|ȼ +ľ N material|,wood|ľ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,tightness|ɽ,loose| +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V release|ͷ + N beast| + N tree| +ɿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɿ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + N material| + N material|,liquid|Һ +и ADJ aValue|ֵ,circumstances|,relax| +и V weaken| +ī N PenInk|ī,*write|д + N part|,%plant|ֲ,hair|ë +֬ N material| + N part|,%tree|,embryo| +ަ N AlgaeFungi|ֲ,$eat| + ADJ aValue|ֵ,height|߶,tall| + V frighten|Ż + V upmove| +ʼ V CausePartMove|,PatientPartof=arm| + V stand|վ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V incite|ָʹ + V praise|佱 +̸ N text|,*praise|佱 + V praise|佱 + V GiveAsGift| + V farewell| + V follow| + V transmit| +ͱ V farewell| +͸ V GiveAsGift| +ͻ V return| +ͻ V transport|,patient=physical| +ͽ V submit| +ͽ V transmit| +Ϳ V farewell| + V GiveAsGift|,possession=physical| + V die| + V exhale| + V GiveAsGift|,possession=physical| + V help| +ӭ V welcome|ӭ +Ŷ V tell| + N human|,*post|ʼ + V farewell| + V condole|° + V condole|° + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +γ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +δ N text| +δ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N fact|,quarrel| +Ϲ N human|,police|,undesired|ݬ + V recite|ж +ж V recite|ж +о V recite|ж,content=text|,religion|ڽ + V LookFor|Ѱ +Ѳ V catch|׽ס,means=LookFor|Ѱ,police| +Ѳ V LookFor|Ѱ +ѹ V rob| +Ѽ V gather|ɼ,means=LookFor|Ѱ + V gather|ɼ,means=LookFor|Ѱ + V include|,means=LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,location=body| + V LookFor|Ѱ,location=human| + V LookFor|Ѱ +Ѱ V LookFor|Ѱ + CLAS NounUnit|,&ship| + V pant| + N sound| + V awake| + N character|,surname|,human|,ProperName|ר +մ N chemical|ѧ +յ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sudan|յ) +յ N place|ط,country|,ProperName|ר,(Africa|) +յ N money|,(Sudan|յ) +յ N language|,#country|,ProperName|ר +ո N place|ط,ProperName|ר,(UK|Ӣ) +ոǶ N language|,#country|,ProperName|ר +ո N human|,(Scotland|ո) +տ N money|,(Ecuador|϶) +տ N place|ط,capital|,ProperName|ר,(Bolivia|ά) + N place|ط,city|,ProperName|ר,(Switzerland|ʿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Surinam|) + N place|ط,country|,ProperName|ר,(South America|) +϶ N money|,(Surinam|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Soviet Union|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N place|ط,capital|,ProperName|ר,(Fiji|쳼) + V awake| + N tool|þ,*decorate|װ +ʿ˺ N waters|ˮ,linear|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ִ ADJ aValue|ֵ,hardness|Ӳ,crisp| + V paralyse|̱ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N food|ʳƷ +Ͳ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + ADJ attribute|,habit|ϰ,&human|,&organization|֯ +׳ V naming| +׻ N expression| +׻˵ ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + N human|,^religion|ڽ + N human|,vulgar|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N text| + ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ + N food|ʳƷ + N part|,%thing| +زʶ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ز N information|Ϣ,?publications|鿯,#shows|,literature| +ز N food|ʳƷ +ز V eat| +ز N food|ʳƷ +س ADV aValue|ֵ,frequency|Ƶ,regular| +ص ADJ aValue|ֵ,color|ɫ,plain| +ؾ ADJ aValue|ֵ,color|ɫ,plain| +ؾ N drinks|Ʒ,$addict|Ⱥ + ADV aValue|ֵ,frequency|Ƶ,often| +ƽ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ + V draw|,manner=simple| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADV aValue|ֵ,frequency|Ƶ,regular| +ɫ N attribute|,color|ɫ,plain|,&physical| +ʳ V eat| +ʳ N food|ʳƷ +ʳ N human|,*eat|,#vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,rank|ȼ,#mental|,&human| + N material|,?food|ʳƷ + N attribute|,quality|,&human| + N attribute|,quality|,&human|,&organization|֯ + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж +ٳ ADJ aValue|ֵ,speed|ٶ,fast| +ٵ V post|ʼ +ٶ V cool| +ٶ N attribute|,speed|ٶ,&AlterLocation|ռλ +ٶ N attribute|,boundary|,&speed|ٶ +ټ N human|,*record|¼,fast| +ټ V record|¼,manner=fast| +ټԱ N human|,*record|¼ +پ V handle|,manner=fast| + N quantity|,rate|,&speed|ٶ +Ч ADJ aValue|ֵ,effect|Ч +д V draw|,manner=fast| + N crop|ׯ + V produce| +ܽ N material| + N material|,?tool|þ +ϲ N material| +ϴ N tool|þ,cubic|,@put| + N image|ͼ,$carve| + N attribute|,behavior|ֹ,flexible|,&thing| + V produce| + V LookBack| +Դ V LookFor|Ѱ,content=base| + ADJ aValue|ֵ,age|,aged| + N character|,surname|,human|,ProperName|ר + V reside|ס +޸ N part|,%plant|ֲ,base| +޽ N human|,official|,military| + ADJ aValue|ֵ,attachment|,knowledge|֪ʶ + N knowledge|֪ʶ + N human| + N house| +Ӫ V reside|ס,military| +Ը N aspiration|Ը,expect| + N animate| + V accuse|ظ + V explain|˵ + V tell| +߾ V tell|,target=police| +߿ V tell|,content=unfortunate| +˵ V explain|˵ + N fact|,accuse|ظ,police| +ϵ N human|,*accuse|ظ,police| +Ϸ N law|ɷ + N human|,*accuse|ظ,police| +״ N document|,*accuse|ظ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V stand|վ,manner=stately|ׯ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V destroy| + N part|,%army| +Ȼ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| + N food|ʳƷ + V sorrowful| + N quantity|,rate|,#chemical|ѧ,&inanimate| + N quantity|,rate|,#chemical|ѧ,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| +÷ N food|ʳƷ +÷ N fruit|ˮ + N drinks|Ʒ +ţ N drinks|Ʒ + V paralyse|̱ + N phenomena|,undesired|ݬ +ʹ V painful|ʹ +ϴ V produce| + ADJ aValue|ֵ,taste|ζ,sour| + N attribute|,property|,#chemical|ѧ,&inanimate| + N RainSnow|ѩ + N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N food|ʳƷ,#vegetable|߲ +ͷ N vegetable|߲ + V RegardAs| + V calculate| + V contain| + V plan|ƻ + V think|˼ + V RegardAs| +㷨 N method|,#software| + V calculate| + V plan|ƻ + V predict|Ԥ + V think|˼ + V guess|² + N human|,*guess|² + N tool|þ,*calculate| + ADV aValue|ֵ,time|ʱ,ending|ĩ + N method|,*calculate| + V be|,descriptive=true| + V calculate| + V calculate|,content=wealth|Ǯ + V revenge| + CONJ {concession|ò} +Ȼ CONJ {concession|ò} +˵ CONJ {concession|ò} + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V BeSimilar| + V act|ж,manner=free| + V follow| + V obey|ѭ + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V act|ж,manner=free| +沨 V obey|ѭ +沨 ADJ obey|ѭ +泵Я V bring|Я +洦 ADV aValue|ֵ,location|λ,all|ȫ + V follow| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V obey|ѭ,content=mass| + V bring|Я + ADJ aValue|ֵ,range|,all|ȫ +絹 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +溯 V include| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + N attribute|,behavior|ֹ,free|,&event|¼ +Ӧ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +漴 ADV aValue|ֵ,duration|,TimeShort| +浽 EXPR LeaveFor|ǰ + V follow|,partner=army| + ADJ aValue|ֵ,behavior|ֹ,careless| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱı䲻֪ͨ EXPR expression| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| + ADV aValue|ֵ,behavior|ֹ,convenient|,desired| + V obey|ѭ,content=regulation| +ͬ V follow| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V follow| +о V QuantityChange|,commercial| +Ա N human|,*TakeCare| + ADV aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,official|,diplomatic|⽻ + V bury| +֮ PREP {accompaniment} + PREP {accompaniment} + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +羸 V attack| + N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + V AlterForm|״ + ADJ aValue|ֵ,behavior|ֹ,boring|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + V AlterForm|״ +Ƭ N part|,%physical| +ʯ N stone|ʯ +м N shape| + N human|,*FondOf|ϲ,#speak|˵ + N attribute|,age|,&animate| + N time|ʱ,year| +ĩ N part|,%time|ʱ,year|,ending|ĩ +ĺ N time|ʱ,ending|ĩ,year| +ʱ N time|ʱ,season| + N time|ʱ,early|,year| + N attribute|,age|,&animate| + N time|ʱ,year| +β N part|,%time|ʱ,year|,ending|ĩ + N celestial| + N time|ʱ + N part|,%plant|ֲ,hair|ë + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + V fulfil|ʵ + V succeed|ɹ + V satisfied| + V satisfied| + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,family|,mass| +Ů N human|,family|,female|Ů +ɽ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,family|,male| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V exhaust| + V subtract| +𹫷˽ V steal|͵ + V damage| + V offend| + V exhaust| + V damage| + V destroy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V wounded| +ʧ V lose|ʧȥ +ʧ⳥ N expenditure|,$recompense| + N attribute|,effect|Ч,&event|¼ + N document| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N bird| + N clothing|,#RainSnow|ѩ + N part|,%machine| + CLAS NounUnit|,&weapon| + N part|,%machine| + N part|,%weapon| +з N fish| + V incite|ָʹ +ʹ V incite|ָʹ + V CausePartMove| + V shrink|С + V shrink|С,scope=length| + V StateChange|̬,industrial| + V CausePartMove| + V subtract| + N human|,*subtract| + ADJ aValue|ֵ,behavior|ֹ,cautious|,undesired|ݬ +ˮ V FormChange|α,StateFin=shrink|С +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ͷ V evade|ر,content=duty| +ͷ V fear| +΢ V shrink|С +С V shrink|С +С V subtract| +д V compile|༭,means=subtract| +ӡ V print|ӡˢ,means=subtract| +Ӱ N entity|ʵ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + N fact|,trivial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ϸ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + V LookFor|Ѱ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V beg| + N character|,surname|,human|,ProperName|ר + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,route|· +Ȳ N place|ط,capital|,ProperName|ר,(Zimbabwe|ͲΤ) + N place|ط,capital|,ProperName|ר,(Bulgaria|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Somalia|) + N place|ط,country|,ProperName|ר,(Africa|) + N money|,(Somalia|) + N language|,#country|,ProperName|ר + V request|Ҫ,ResultEvent=recompense| +ȡ V request|Ҫ +Ȼ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ȼζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +Ҫ V request|Ҫ + N document|,@record|¼ + V fasten|˩ + V fix|ס + N method|,*fasten|˩ + N tool|þ,*fix|ס,*fasten|˩ + N part|,%AnimalHuman|,bone| + N part|,%machine| + N tool|þ,police|,*fix|ס,#crime| + V *fix|ס,Vachieve| +Կ N part|,%place|ط,important|,mouth| +Կ N tool|þ,*open| +ס V *fix|ס,Vachieve| + N InstitutePlace| + N InstitutePlace|,*research|о + CLAS NounUnit|,&InstitutePlace|,&house| + STRU {DeChinese|} + N attribute|,quality|,strong|ǿ,desired|,&thing| + N human|,#occupation|ְλ,official| +˰ N expenditure| + N information|Ϣ + N place|ط,country|,ProperName|ר +Ⱥ N place|ط,ProperName|ר +Ⱥ N place|ط,ProperName|ר,(Oceania|) +ν ADJ aValue|ֵ,trueness|α,fake|α +ν V be| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǰ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ҵ ADV {comment|} + CONJ {EventResult|¼} +Ȼ N reason| + V own| + ADJ qValue|ֵ,amount|,all|ȫ +е N human|,mass| +и ADJ aValue|ֵ,attachment| +Ȩ N rights|Ȩ,#own| + N human|,*own| + N human|,own| + N system|ƶ,#rights|Ȩ,#own| + N location|λ,space|ռ +ڵ N place|ط +Ϊ N attribute|,behavior|ֹ,&human| + V FallDown| + V FormChange|α,StateFin=dented| + ADJ aValue|ֵ,form|״,dented| + V sink|³ + ADJ aValue|ֵ,form|״,flat| + N fact|,sink|³,#land|½ + V FallDown| +ʵ V AtEase| +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̨ V FallDown| +̨ V end|ս + V sink|³ + ADJ aValue|ֵ,kind|,other| + PRON {ThirdPerson|,male|} +» N language|,#country|,ProperName|ר + EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + N time|ʱ,future| +ɱ N fact|,$kill|ɱ,#police| + N place|ط,other| + V CauseToMove| + PRON {it|} + PRON {ThirdPerson|,mass|} + PRON {it|,mass|} + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,mass|} + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + N implement|,@produce|,#chemical|ѧ + N machine|,*lift| + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) + N place|ط,country|,ProperName|ר +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N money|,(Bangladesh|ϼ) +¥ N house|,tall| +¥ N part|,%house|,head|ͷ + N place|ط,capital|,ProperName|ר,(Madagascar|˹) +ʲ N place|ط,capital|,ProperName|ר,(Uzbekistan|ȱ˹̹) +˹ N institution|,news|,ProperName|ר,(Russia|˹) +̨ N facilities|ʩ,space|ռ,@control|,#aircraft| +̡ N beast| +̢ V beat| +̤ V kick|߲ +̤ N part|,MusicTool| +̤ N part|,implement| +̤ V kick|߲ +̤ V investigate| +̤ V investigate| +̤ V tour| +̤ʵ V AtEase| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̤̤ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̥ N fact|,ComeToWorld| +̥ N material|,*fill| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%LandVehicle|,leg| +̥ N part|,%tool|þ,#produce|,embryo| +̥ N phenomena|,#embryo| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%AnimalHuman|,hair|ë +̥ N trace|,#human|,#ComeToWorld| +̥ N fact|,teach|,#embryo| +̥ë N part|,%AnimalHuman|,hair|ë +̥Ĥ N part|,%AnimalHuman| +̥ N part|,%AnimalHuman| +̥ ADJ aValue|ֵ,attachment| +̥λ N location|λ,#embryo|,@situated| +̥ N part|,%AnimalHuman|,embryo| +̦ N AlgaeFungi|ֲ +̦޺ N AlgaeFungi|ֲ +̧ V hold| +̧ V lift| +̧ V BecomeMore| +̧ V add| +̧ V BecomeMore|,scope=price|۸ +̧ V praise|佱 +̧ V quarrel| +̧ͷ V CausePartMove|,PatientPartof=head|ͷ +̧ͷ N trace|,#head|ͷ +̨ N InstitutePlace|,@disseminate| +̨ CLAS NounUnit|,&implement| +̨ N character|,surname|,human|,ProperName|ר +̨ N facilities|ʩ,@disseminate| +̨ N furniture|Ҿ,space|ռ,@put| +̨ N implement|,*PropUp|֧ +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N shape| +̨ N shape|,space|ռ +̨ N place|ط,city|,ProperName|ר,(China|й) +̨ N tool|þ +̨ N text| +̨ N tool|þ,*illuminate| +̨ N land|½ +̨ N wind| +̨ N facilities|ʩ,mine| +̨ N part|,%building|,nerve| +̨ N time|ʱ,@escape|,#circumstances| +̨ N tool|þ,*show|,#time|ʱ +̨ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +̨ǯ N tool|þ,*hold| +̨ N SportTool|˶ +̨ N fact|,exercise| +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N human|,important|,able|,desired| +̨ N SportTool|˶ +̨ N furniture|Ҿ,space|ռ,@put| +̨ N shape|,space|ռ +̩ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̩ N place|ط,country|,ProperName|ר,(Thailand|̩) +̩ N human|,able|,desired| +̩ N human|,ProperName|ר,literature| +̩ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Thailand|̩) +̩ N place|ط,country|,ProperName|ר,(Asia|) +̩¬ N language|,#country|,ProperName|ר +̩Ȼ V calm| +̩Ȼ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ N human|,family|,male| +̩ɽ N land|½,ProperName|ר,(China|й) +̩ɽ N human|,desired| +̩ɽѹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +̩ N language|,#country|,ProperName|ר +̩ N money|,(Thailand|̩) +̪ N chemical|ѧ +̫ ADV aValue|ֵ,degree|̶,very| +̫ N celestial| +̫ N human|,young|,rash|ç,undesired|ݬ +̫ N human|,family|,male| +̫ N time|ʱ,past| +̫ N human|,royal|,female|Ů +̫ȭ N fact|,exercise|,sport| +̫ N human|,employee|Ա,#royal| +̫ N sky| +̫ N facilities|ʩ,space|ռ,religion|ڽ +̫ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̫ƽ N room|,@put|,#human|,#die|,medical|ҽ +̫ƽ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר +̫ N human|,family|,female|Ů +̫ϻ N human|,official| +̫ϻ N human|,royal| +̫ ADV aValue|ֵ,degree|̶,very| +̫ʦ N furniture|Ҿ,@sit| +̫ N character|,surname|,human|,ProperName|ר +̫ͷ϶ V offend| +̫̫ N human|,female|Ů +̫Ϣ V sigh|̾ +̫ N celestial|,space|ռ +̫ N celestial| +̫ N lights|,#celestial| +̫ N tool|þ,#lights|,#celestial| +̫ N part|,%celestial| +̫ N tool|þ,*protect|,#eye|,#look| +̫ N attribute|,strength|,&celestial| +̫ϵ N system|ƶ,celestial| +̫ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| +̫ N celestial| +̫ԭ N place|ط,city|,ProperName|ר,(China|й) +̫ N human|,royal|,male| +̫Ӹ N place|ط,capital|,ProperName|ר,(Haiti|) +̬ N attribute|,PhysicState|״̬,&physical| +̬ N attribute|,appearance|,&physical| +̬ N attribute|,circumstances|,&physical| +̬ N attribute|,property|,&language| +̬ V StateChange|̬ +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,circumstances|,&physical| +̭ V discharge| +̮ V FallDown| +̮ V FallDown| +̨̮ V end|ս +̨̮ V suffer|,content=disgraced| +̨̮ V unfortunate| +̯ N InstitutePlace|,*sell|,commercial| +̯ CLAS NounUnit|,&liquid|Һ +̯ V bear|е +̯ V cook| +̯ V unfold|̯ +̯ N InstitutePlace|,*sell|,commercial| +̯ N InstitutePlace|,*sell|,commercial| +̯ N human|,#occupation|ְλ,*sell|,commercial| +̯ V issue|ַ +̯ V undergo| +̯ N sell|,commercial| +̯ V sell|,possession=artifact|˹ +̯ N InstitutePlace|,*sell|,commercial| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V need|,manner=greedy|̰ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#drink|,#addictive|Ⱥ,undesired|ݬ +̰ V need|,manner=greedy|̰,content=cheap| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#wealth|Ǯ,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̰ N human|,*cheat|ƭ,official|,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V FondOf|ϲ,manner=greedy|̰ +̰ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +̰ͼ V need|,manner=greedy|̰ +̰ͼ V seek|ıȡ +̰ V cheat|ƭ +̰۸ N cheat|ƭ +̰Сʧ V WorthNot|ֵ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ N aspiration|Ը,expect|,greedy|̰ +̰ V receive|,possession=artifact|˹,crime| +̰ V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̱ V paralyse|̱ +̱ V OutOfOrder| +̱ N disease| +̱ V paralyse|̱ +̱ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +̱ V paralyse|̱ +̲ N land|½,#waters|ˮ +̲Ϳ N land|½ +̳ N community| +̳ N facilities|ʩ,space|ռ +̳ N facilities|ʩ,space|ռ,@planting|ֲ +̳ N fact|,communicate| +̳ N furniture|Ҿ,space|ռ,@put| +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̴ N tree| +̴ N MusicTool| +̴ N tree| +̴ľ N wood|ľ +̴ɽ N place|ط,city|,ProperName|ר,(US|) +̴ N tool|þ,#wind|,*cool| +̵ N part|,%AnimalHuman|,waste|,liquid|Һ +̵Ͱ N tool|þ,cubic|,@put|,#liquid|Һ +̵ N tool|þ,cubic|,@put|,#liquid|Һ +̶ N waters|ˮ,surfacial| +̷ N character|,surname|,human|,ProperName|ר +̸ N character|,surname|,human|,ProperName|ר +̸ V discuss| +̸ V talk|̸ +̸ N text|,$talk|̸ +̸ V FitNot|,scope=associate| +̸ V explain|˵ +̸ V fit|ʺ,scope=associate| +̸ V attribute|,strength|,#talk|̸,&human| +̸ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̸ɫ V fear| +̸ V talk|̸ +̸ N text|,$speak|˵ +̸ V associate|,#male|,#female|Ů,#love| +̸ V explain|˵ +̸ V discuss| +̸д N human|,*discuss| +̸ N furniture|Ҿ,*discuss| +̸ V explain|˵ +̸˵ V associate|,#male|,#female|Ů,#love| +̸̸ V talk|̸ +̸ V talk|̸ +̸˵ V talk|̸ +̸ N attribute|,behavior|ֹ,&human| +̸² N aValue|ֵ,behavior|ֹ,gracious|,desired| +̸Ц V talk|̸ +̸Ц V talk|̸,manner=joyful|ϲ +̸Ц V calm| +̸ V talk|̸,manner=sincere| +̸΢ ADJ aValue|ֵ,content|,profound|,desired| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ V calm| +̹ N place|ط,country|,ProperName|ר,(Tanzania|̹ɣ) +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ V admit| +̹ ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ ADJ aValue|ֵ,tolerance|,generous|,desired| +̹ N weapon|,LandVehicle|,military| +̹˲ N army| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +̹Ȼ V calm| +̹ɣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tanzania|̹ɣ) +̹ɣ N place|ط,country|,ProperName|ר,(Africa|) +̹ɣ N human|,(Tanzania|̹ɣ) +̹ɣ N money|,(Tanzania|̹ɣ) +̹; N facilities|ʩ,route|· +̺ N tool|þ,*cover|ڸ +̺ N tool|þ,*cover|ڸ,#LieDown| +̺ N tool|þ,*cover|ڸ,#LieDown| +̻ V CauseToAppear| +̻ V protect|,manner=biased|ƫ +̻ V protect|,manner=biased|ƫ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼⻯ N chemical|ѧ +̼ˮ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̽ V CausePartMove| +̽ V investigate| +̽ V measure| +̽ V visit| +̽ V investigate| +̽ V measure| +̽ N tool|þ,*LookFor|Ѱ +̽ V check| +̽ V investigate| +̽ V visit| +̽ N human|,*succeed|ɹ,#exam|,past| +̽ V SayHello|ʺ,target=family| +̽ V visit|,target=human|,#police| +̽ V investigate|,industrial| +̽ V research|о +̽ V investigate| +̽ V investigate|,industrial| +̽· V investigate|,content=route|· +̽ V investigate| +̽ȡ ADJ aValue|ֵ,easiness|,easy|,desired| +̽ V SayHello|ʺ,target=family| +̽ V SayHello|ʺ,target=human| +̽׼ N time|ʱ,@SayHello|ʺ,#family| +̽ V seek|ıȡ +̽ V diagnose|,industrial| +̽ V visit| +̽ V investigate| +̽ N human|,*investigate| +̽ V investigate| +̽ V investigate| +̽ N human|,*investigate| +̽ͷ V CausePartMove|,PatientPartof=head|ͷ +̽ͷ̽ V look| +̽ V look| +̽ V visit| +̽ V ask| +̽Ϥ V investigate| +̽Ϥ V know|֪ +̽ V investigate| +̽ѯ V investigate| +̽Ѱ V LookFor|Ѱ +̽յ N tool|þ,*illuminate| +̽ N human|,military|,*scout| +̽ N tool|þ,*inhale| +̾ V praise|佱 +̾ V sigh|̾ +̾ N part|,%language| +̾ V praise|佱 +̾ V sigh|̾ +̾ V praise|佱 +̾ V sigh|̾,cause=repent|û +̾Ϊֹ V praise|佱 +̾Ϣ V sigh|̾ +̾ϧ V sigh|̾,cause=repent|û +̾ V praise|佱 +̿ N material|,*lighting|ȼ,$burn| +̿ N fire| +̿ N disease| +̿ N tool|þ,*WarmUp| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,$eat|,liquid|Һ + N medicine|ҩ,liquid|Һ,(China|й) + N water|ˮ,hot| + N tool|þ,*hold|,#drinks|Ʒ + N tool|þ,@put|,#liquid|Һ,hot| + N medicine|ҩ,liquid|Һ,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tonga|) + N money|,(Tonga|) + N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N food|ʳƷ +ˮ N food|ʳƷ,$eat|,liquid|Һ +ҩ N medicine|ҩ,liquid|Һ,(China|й) +Բ N food|ʳƷ + N facilities|ʩ,#hot|,@wash|ϴ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N waters|ˮ,surfacial| + N facilities|ʩ,#liquid|Һ,space|ռ + N material|,$feed|ι,#crop|ׯ + N facilities|ʩ,#liquid|Һ,space|ռ + V apply|ͿĨ + V evade|ر + V obstruct|ֹ + V slack|͵ +´ N material|,?tool|þ + V slack|͵ + ADJ aValue|ֵ,clan| + N institution|,police|,@judge|ö,#crime|,past| + N room| +ð N reason| +ö֮ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +ö֮ ADJ aValue|ֵ,behavior|ֹ,suitable| +÷ ADJ aValue|ֵ,clan| +ù N MusicTool| +û ADJ aValue|ֵ,scene|,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N room| + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N fruit|ˮ + N tree| + N FlowerGrass| + N tree| + N part|,%AnimalHuman|,body| + N part|,%physical|,viscera| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƻ N FlowerGrass| + N human|,ProperName|ר,(China|й) + N artifact|˹,entertainment| +ɽ N place|ط,city|,ProperName|ר,(China|й) +ʫ N text| +ͻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ +dz N InstitutePlace|,*produce|,#material|,factory|,industrial| +Ǵ N attribute|,taste|ζ,sweet|,sour|,&food|ʳƷ +Ǵ N material|,#food|ʳƷ,$eat| +ǹ N food|ʳƷ,sweet| +Ǻ« N food|ʳƷ +ǻ N chemical|ѧ +ǽ N material|,?edible|ʳ,?medicine|ҩ +Ǿ N material|,?edible|ʳ + N chemical|ѧ +ܲ N crop|ׯ,?material| + N disease| +ζ ADJ aValue|ֵ,taste|ζ,sweet|,desired| + CONJ {condition|} + CONJ {condition|} + V LieDown| + V LieDown| + V LieDown| + N furniture|Ҿ,space|ռ,@LieDown|,@sit| + V fall| + V flow| +ʺ V excrete|й,patient=waste| + CLAS ActUnit|,&AlterLocation|ռλ + CLAS NounUnit|,&LandVehicle| + CLAS NounUnit|,&inanimate| + V MakeUp|ױ + V WarmUp| + ADJ aValue|ֵ,temperature|¶,hot| + V damage| + V press|ѹ +̷ V MakeUp|ױ,patient=hair|ë +̷ V MakeUp|ױ,scope=hair|ë +̽ V apply|ͿĨ,material=metal|,industrial| + N material|,?food|ʳƷ + N disease| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + V PickOut|γ + V dig|ھ + V steal|͵ +ͳ V PickOut|γ +͵ V investigate| + V pay|,possession=wealth|Ǯ + N water|ˮ + V spill| + ADJ qValue|ֵ,amount|,many| +ϲ ADJ aValue|ֵ,behavior|ֹ,fluent| + ADJ aValue|ֵ,degree|̶,extreme| + N tool|þ,linear|,*fasten|˩,*decorate|װ +г N InsectWorm|,#disease| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,linear|,*fasten|˩,*decorate|װ + N fruit|ˮ + N shape| +Һ ADJ aValue|ֵ,color|ɫ,red| +һ N FlowerGrass| +һľ N wood|ľ +һѴ N water|ˮ +һ N fish| + N human|,*study|ѧ,mass| + N food|ʳƷ + N medicine|ҩ +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| +ɫ N fact|,#love|,undesired|ݬ +ɫ N fact|,#love|,undesired|ݬ,#police| +ɫ N news|,#fact|,#love|,undesired|ݬ + N tree|,#fruit|ˮ + N fruit|ˮ + V escape| + V evade|ر + V flee| +ӱ V escape| +ӱʵ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ӱʵ N fact|,escape|,#circumstances|,undesired|ݬ +ӱʵ N human|,*escape| +ӱ N human|,*escape| +ӳ V flee| +Ӵ V flee| +Ӷ V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +ӻ V escape|,cause=phenomena| +ӻ V escape|,cause=GetMarried| + V flee| + V escape|,cause=die| + V escape|,cause=unfortunate| + V hide| + V flee| +ɢ V disperse|ɢ + V escape|,cause=die| +˰ V evade|ر,content=expenditure|,commercial| +˰ N human|,*evade|ر,#expenditure|,commercial| + V flee| + V flee| + N human|,*flee| +ѧ V evade|ر,content=study|ѧ,education| +ѧ N human|,*evade|ر,#study|ѧ,education| + V flee| +ծ V escape|,cause=owe|Ƿ +֮زز V flee| + V flee| + ADJ aValue|ֵ,behavior|ֹ,mischievous| + V dredge|ͨ + V wash|ϴ +Ժ N bird| +Խ V gather|ɼ + N tool|þ,cubic|,@put|,*wash|ϴ + V wash|ϴ,patient=material| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̭ V disappear|ʧ +̭ V discharge| +̭ V perish| +̭ V discharge|,sport| +̭ N fact|,compete| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ + N tool|þ,generic|ͳ +մ N material| +չ N material|,*build| +չ N tool|þ,cubic|,@put| + N tool|þ,generic|ͳ +Ȼ V joyful|ϲ + N material|,mine| +ұ V burn|,industrial| +ұ V cultivate| + N knowledge|֪ʶ + V joyful|ϲ +ٸ N tool|þ + V ExpressAgainst|Ǵ + V MarryFrom|Ȣ + V ResultIn| + V attack|,military| + V beg| + V discuss| +ֱ V seek|ıȡ,possession=pros| +ַ V attack|,military| +ַ V beg|,patient=artifact|˹ +ֺ V please|ȡ +ֻ V seek|ıȡ +ּ V discuss|,content=price|۸,commercial| +ּۻ V discuss|,content=price|۸,commercial| +ֽ V ask| + V discuss| +ۻμ N human|,*discuss| + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ + V do|,manner=sly| + V MarryFrom|Ȣ + V request|Ҫ,ResultEvent=forgive|ԭ + V surrender| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V disgust| + N human|,$disgust| + N human|,*irritate|ŭ +ծ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| + V PutOn| + N clothing| + V cover|ڸ + V fasten|˩ + N material|,$fill| + N part|,%earth| + N tool|þ,cubic|,@put| +װ N tool|þ,*print|ӡˢ +׷ N house| +׹ V buy|,crime| +׻ N information|Ϣ,stiff| +׻ N text|,waste| +׻ N fact|,commercial| +׼ N house| +׼ N room| +׿ N clothing|,#leg| +· N knowledge|֪ʶ +Ь N clothing|,#foot| + N part|,%clothing|,#arm| +ӡ V print|ӡˢ + V use| + V planting|ֲ +װ N clothing| + N information|Ϣ,stiff| + N material|,$fill| + N tool|þ,cubic|,@put| + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,kind|,special| + N human|,#occupation|ְλ,military|,police|,*scout| + N human|,#occupation|ְλ,police|,military|,*scout| +ر ADJ aValue|ֵ,kind|,special| +ر CONJ {emphasis|ǿ} +رȨ N rights|Ȩ,collect|,commercial| +ز N artifact|˹,special|,generic|ͳ +س N attribute|,ability|,special|,&organization|֯,&human| +س ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ش ADV {emphasis|ǿ} +ش ADJ aValue|ֵ,range|,extensive| +ش ADJ aValue|ֵ,size|ߴ,big| +ص ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ص ADJ aValue|ֵ,kind|,special| +ص N attribute|,property|,&entity|ʵ +ض ADJ aValue|ֵ,kind|,special| +ع N affairs|,military|,secret| +عӶ N place|ط,capital|,ProperName|ר,(Honduras|鶼˹) +ػ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ؼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ؼ N fact|,dangerous|Σ,#perform| +ؼ N attribute|,price|۸,cheap|,&inanimate| +ؿ ADJ aValue|ֵ,kind|,special| +ؿ N LandVehicle| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N example|ʵ,special| +Ͷ͸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Trinidadian and Tobagan|Ͷ͸) +Ͷ͸ N place|ط,country|,ProperName|ר,(South America|) +Ͷ͸Ԫ N money|,(Tonga|Ͷ͸) +ľ N plans|滮 +ȫȨʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ + V dispatch|Dz,manner=special| +ɼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ա N human|,#occupation|ְλ,$dispatch|Dz,official| +Dz N part|,%army| + N place|ط +Ȩ N rights|Ȩ +ɫ N attribute|,property|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +ίԱ N institution|,politics|,special| +ʹ N human|,official|,politics|,diplomatic|⽻ + ADJ aValue|ֵ,kind|,special| +ⲡ֢ ADJ aValue|ֵ,kind|,special|,&disease| +⻯ N rights|Ȩ + N attribute|,kind|,special|,&entity|ʵ +Ϊ ADJ aValue|ֵ,kind|,special| +ά N language|,#country|,ProperName|ר +ί N institution|,politics|,special| + N human|,#occupation|ְλ,military|,police|,*scout| +Ч N attribute|,effect|Ч,superior|,&entity|ʵ,&act|ж +Чҩ N medicine|ҩ,superior| +д N text| + N attribute|,property|,&entity|ʵ + V agree|ͬ,manner=special| + V invite|,manner=special| + ADV aValue|ֵ,kind|,special| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special| + N attribute|,kind|,special|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +Լ V invite|,manner=special| +Լ༭ N human|,*compile|༭ + N attribute|,property|,&entity|ʵ +ָ V mean|ָ + V produce|,manner=special| + N attribute|,kind|,special|,&entity|ʵ +ֲ N army| + N tree| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N FlowerGrass| + N weapon|,*defend| + N SportTool|˶ + N fact|,exercise|,sport| + N furniture|Ҿ,space|ռ,@sit| + N tree| + V dump| + V jump| + V rise| +ڳ V dump| +ڷ V fly| +ڷ V grow|ɳ +ڹ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ڿ V dump| +ڿ V rise| +Ų V TakeAway|ᶯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Խ V cross|Խ +Ծ V jump| +Ƽ V dizzy| +Ƽ ADJ fly|,manner=fast| + V like|ϧ + V painful|ʹ +۰ V like|ϧ +ʹ V painful|ʹ + V copy|д +¼ V copy|д + V copy|д +д V copy|д + N part|,%building|,nerve| + N shape| + N tool|þ,@climb|ʵ +ݴζ N shape| +ݶ N attribute|,slope|¶,&inanimate| +ݶ N part|,%army| +ݶ N weapon| +ݼ N part|,%building|,nerve| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,form|״ + N image|ͼ +״ ADJ aValue|ֵ,form|״ + N tool|þ,@climb|ʵ + V clean|ʹ + N part|,%character| + V pick|ʰ + V remove| +޳ V remove| + V kick|߲ + V kick|߲,sport| +߲ V kick|߲ +ߵ V kick|߲ +߽ V kick|߲,sport| + V kick|߲,sport| + N metal| + V MakeEarlier| + V collect|,commercial| + V gather|ɼ + V hold| + V lift| + V mention|ἰ + N part|,%character| + V propose| + V upgrade| +᰸ N text|,$propose|,$discuss|,$debate| + V upgrade| + N tool|þ,cubic|,@put| + V pick|ʰ,patient=PenInk|ī +ᳫ V endorse|ӵ +ᳫ N human|,*improve| + V collect|,commercial| + V propose| + N human|,*propose| +ᴿ V refine|,industrial| +ᵥ N bill|Ʊ,#wealth|Ǯ +ᵽ V mention|ἰ +ᷨ N method|,*express|ʾ + V obstruct|ֹ + N part|,%text|,bone| + V MakeBetter|Ż + V add| + V improve| + V lift| + N language|,#country|,ProperName|ר +ṩ V provide| + V collect|,possession=artifact|˹,commercial| + N bill|Ʊ,#wealth|Ǯ +ἰ V mention|ἰ + V BecomeMore|,scope=price|۸ +ύ V submit| + V collect|,possession=money|,commercial| + N tool|þ,cubic|,@put| + V produce|,industrial| + V refine|,industrial| + V RegardAs| + N human|,*RegardAs| + V lift| + V mention|ἰ + V mobilize| +ǰ V MakeEarlier| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ + N MusicTool| + V request|Ҫ +ȡ V collect| +ȡ V collect|,commercial| +ȡ V collect|,industrial| +ȡ V gather|ɼ +ȡ V gather|ɼ,industrial| +ȡ V obtain|õ + V improve| + V interrogate|,police| + V lift| + V upgrade| +ʾ V persuade|Ȱ˵ +ʾ N symbol| + V ask| + N tool|þ,cubic|,@put| +ĵ V fear| + V write|д + V persuade|Ȱ˵ +ѡ V choose|ѡ +Ҫ N text|,#readings| + V propose| + N text|,$propose|,$discuss|,$debate| + N human|,*propose| + V MakeEarlier| + V gather|ɼ,industrial| + V produce|,industrial| + V guide| + V help| + N part|,%text|,heart| + N part|,%text|,name| + N problem| + V sign|д + N attribute|,content|,&information|Ϣ +ķΧ N attribute|,range|,&content|,#information|Ϣ + V write|д,ContentProduct=text| + N part|,name|,%text| + V sign|д,ContentProduct=name| +Ŀ N part|,%text|,heart| +Ŀ N part|,name|,%text| +Ŀ N problem| +Ϊ V be|,#name| +д V sign|д + V sign|д,ContentProduct=text| + N text|,$sign|д + N part|,%beast|,foot| + N part|,%beast|,foot| + N food|ʳƷ + N part|,%beast|,foot| + V cry|,#bird| + V weep| +伢ź V HungryThirsty| + V weep| +ЦԷ V embarrassed|Ϊ + N attribute|,PhysicState|״̬,&physical| + N attribute|,kind|,&language| + N attribute|,pattern|ʽ,&information|Ϣ + N attribute|,performance|,&language| + N entity|ʵ,generic|ͳ + N part|,%AnimalHuman|,body| + N system|ƶ + N part|,%AnimalHuman|,skin|Ƥ,external| + N attribute|,pattern|ʽ,&information|Ϣ + N fact|,sport| +ٷ N clothing|,*exercise|,sport| +˶Ա N human|,sport| + V understand| +巣 N fact|,punish| + N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N fact|,check|,#physique|,medical|ҽ + V understand| + N attribute|,size|ߴ,&physical| +强 ADJ aValue|ֵ,content|,secret| +强 ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,check|,#physique|,medical|ҽ + N attribute|,pattern|ʽ,&readings| + N attribute|,strength|,&AnimalHuman| +֧ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Ͷ N affairs|,#physique|,engage| + V forgive|ԭ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,location|λ,internal| + N location|λ,%entity|ʵ,body|,internal| + N attribute|,strength|,&AnimalHuman| + N attribute|,physique|,&AnimalHuman| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʽ N attribute|,form|״,&character| +ʽ N attribute|,pattern|ʽ,&information|Ϣ +̬ N attribute|,posture|,&human| +̬ӯ ADJ aValue|ֵ,posture|,gracious|,desired| +̳ N community|,*exercise|,sport| +̳ N community|,sport| + V WellTreat|ƴ +΢ V WellTreat|ƴ,manner=attentive|ϸ +ͳ N attribute|,property|,&human| + ADJ aValue|ֵ,location|λ,external| + N location|λ,%entity|ʵ,body|,external| +ܾ N method|,*cure|ҽ,medical|ҽ +ѭ N method|,*cure|ҽ,medical|ҽ +ζ V enjoy| +λ N location|λ,%body| + N attribute|,temperature|¶,&AnimalHuman| +¼ N tool|þ,*measure|,#temperature|¶ + V fail|ʧ + V wounded| +ϧ V pity| +ϵ N part|,%entity|ʵ,body| + V mean|ָ +У N InstitutePlace|,@teach|,@study|ѧ,#sport|,education| + N attribute|,kind|,&physical| + N attribute|,form|״,&AnimalHuman| + V pity| + V know|֪ +Һ N part|,%AnimalHuman|,liquid|Һ + N affairs|,education|,#physique| + N affairs|,exercise|,sport| + N facilities|ʩ,@exercise|,sport| + N attribute|,behavior|ֹ,#exercise|,#sport|,&human| + N facilities|ʩ,@exercise|,sport| + N affairs|,exercise|,sport| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#sport| + N fact|,exercise|,sport|,education| +Ʒ N tool|þ,*exercise|,sport| +˶ N affairs|,exercise|,sport| + N attribute|,appearance|,medical|ҽ,&AnimalHuman| + N part|,%entity|ʵ,body| +Ƹĸ N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N attribute|,weight|,&AnimalHuman| +ؼ N BecomeLess|,scope=weight| + N BecomeMore|,scope=weight| + V replace| +油 V replace| +油Ա N human|,*replace|,sport| + V replace| +湤 N human|,*replace|,industrial| +滻 V replace| + N entity|ʵ,*replace| + N human|,*replace| + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N part|,%AnimalHuman|,liquid|Һ + V weep| + V weep| + V weep| + V cut| +굶 N tool|þ,*cut|,#hair|ë,*MakeUp|ױ +ͷ V MakeUp|ױ,scope=hair|ë +뵶 N tool|þ,*cut| + N tool|þ,*cut| +֦ N InsectWorm| + N part|,%furniture|Ҿ,cubic|,@put| + N part|,%furniture|Ҿ,cubic|,@put| + ADJ aValue|ֵ,location|λ,upper| + ADJ aValue|ֵ,source|Դ,original|ԭ + N humanized|,desired| + N natural|Ȼ,generic|ͳ + N sky| + N time|ʱ + N time|ʱ,#season| + N time|ʱ,day| + N weather| +찲 N building|,ProperName|ר,(China|й) +찲ų¥ N building|,ProperName|ר,(China|й) +찲Ź㳡 N building|,ProperName|ר,(China|й) + N location|λ,%earth|,edge| + N part|,%earth|,edge| + N place|ط,far|Զ + V WeatherChange| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,ability|,&human| + N human|,able|,desired| +쳤ؾ ADJ aValue|ֵ,duration|,TimeLong| +쳤վ ADJ aValue|ֵ,duration|,TimeLong| +쳵 N machine|,*lift| + N celestial| +촰 N part|,%house| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N natural|Ȼ,enemy| + N attribute|,range|,&event|¼ + N natural|Ȼ,#celestial|,#earth| + N InsectWorm| + N InsectWorm|,*fly| + N bird| + N material|,?clothing|,?tool|þ +췭ظ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +췽ҹ̷ N fact|,wrong| +췽ҹ̷ N readings| +츮֮ N place|ط,rich| +츳 ADJ aValue|ֵ,source|Դ,original|ԭ +ߵغ ADJ attribute|,content|,&event|¼ +һ ADJ aValue|ֵ,distance|,far|Զ +һ V disperse|ɢ +칫 N humanized| +칫 V WeatherBad| +칫ص ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +칬 N facilities|ʩ,space|ռ,humanized| +칵 N part|,%house| + N time|ʱ,day| + N time|ʱ,early|,day| + N celestial|,#humanized|,religion|ڽ +캮ض ADJ aValue|ֵ,temperature|¶,cold| + N celestial| + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,night| + N weather| +컨 N disease| +컨 N part|,%building| +컨 N medicine|ҩ + N human|,royal|,ProperName|ר,(Japan|ձ) +ذ V WeatherBad| +ذ ADJ aValue|ֵ,brightness|,dark| +ذ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ذ V unfortunate| + N fact|,secret| + N part|,%earth|,edge| + N place|ط,city|,ProperName|ר,(China|й) +쾭 ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +쾮 N facilities|ʩ,mine| +쾮 N part|,%building| +쾮 N part|,%house| +쾮 N part|,%house|,space|ռ + N sky| + ADJ aValue|ֵ,color|ɫ,blue| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N part|,%AnimalHuman|,head|ͷ + N attribute|,relatedness|,&human| +֮ N phenomena|,lucky|,desired| + N FlowerGrass| +п ADJ aValue|ֵ,posture|,strong|ǿ,desired| + V WeatherFine| + N aspiration|Ը,#humanized|,#circumstances| + N attribute|,circumstances|,&human|,&organization|֯ +Ļ N sky| +Ļ N tool|þ,#perform| +ϵر ADJ aValue|ֵ,distance|,far|Զ +Ϻ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +Ϻ ADJ aValue|ֵ,distance|,far|Զ + N attribute|,age|,&animate| +ţ N InsectWorm| +ŭԹ V angry| + N house| + N part|,%building| +ƽ N tool|þ,*measure|,#weight| + N weather| +Ԥ N fact|,disseminate|,#weather| +ǵ N waters|ˮ,linear| + N facilities|ʩ,route|· + ADJ aValue|ֵ,color|ɫ,black| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ N material|,gas|,$burn| +Ȼ N natural|Ȼ +֮ ADJ attribute|,similarity|ͬ,different|,&entity|ʵ +ɫ N weather| + N location|λ,%sky| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʦ N human|,religion|ڽ +ʱ N time|ʱ,important| +ʱ N weather| +ʱ˺ N attribute|,ProsCons|,pros|,#time|ʱ,#earth|,#human|,&event|¼ +ʹ N humanized|,desired| + N document|,royal|,past| + N text|,difficult| + N celestial|,#humanized| + N celestial|,generic|ͳ + N time|ʱ,day| +ͥ N part|,%AnimalHuman|,head|ͷ + N humanized| + N human|,able| + N celestial| +ֻ ADJ aValue|ֵ,performance|,strict|,#police| + N knowledge|֪ʶ,#celestial|,#weather| +Ĺ N InstitutePlace|,@look|,#celestial|,#weather| +̨ N InstitutePlace|,*investigate|,#weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#weather| +ѧ N human|,#knowledge|֪ʶ + N attribute|,power|,&entity|ʵ + N place|ط + N place|ط,country|,ProperName|ר,(China|й) +µһ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѻһ V aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѻһ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N humanized|,desired|,female|Ů + N human|,desired|,female|Ů,beautiful| + N place|ط,military| + N tool|þ,linear|,*transmit| + N weather| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V lucky| + N phenomena|,#lucky| + ADJ aValue|ֵ,&behavior|ֹ,original|ԭ + N attribute|,&behavior|ֹ,original|ԭ +ת ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ת V dizzy|,medical|ҽ + N part|,%earth|,edge| +ĺ N part|,%earth|,edge| +޷ ADJ aValue|ֵ,quality|,good|,desired| + N aspiration|Ը,#humanized|,#circumstances| + N sky| +Ԩ ADJ aValue|ֵ,distance|,far|Զ + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +˻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V bury| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +֮ N human|,desired|,*lucky| +ְ N duty| + ADJ knowledge|֪ʶ,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N attribute|,ability|,&human| + N human|,royal| + N celestial| + N sky| + N place|ط,country|,ProperName|ר,(India|ӡ) +ÿ N FlowerGrass| + N beast| + N sound|,#music| + V add| + V enrich|ʵ + V add| +Ӽ N chemical|ѧ + V MakeTrouble| + V enrich|ʵ,commercial| + V obtain|õ,commercial| + V fill| + V write|д + V fill| +...Ŀհ V cover|ڸ + V fill| + V write|д + V fill| + N material|,generic|ͳ,*fill| + V fill| +ƽ V fill| + V fill| + V BlockUp| +д V write|д +Ѽ N bird|,$feed|ι +Ѽ V feed|ι,patient=bird| + N character|,surname|,human|,ProperName|ר + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,circumstances|,&event|¼,hardship|,undesired|ݬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +﹡ N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ +F N beast| + N community|,agricultural|ũ + N land|½,#crop|ׯ,agricultural|ũ + N place|ط,village| +ᄊ N fact|,exercise|,sport| +ᄊ N fact|,exercise|,sport| + V engage|,content=catch|׽ס,#animal|,agricultural|ũ + N fish| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N beast| +Ұ N land|½ +Ұ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +԰ N place|ط,village| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,sweet| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N crop|ׯ,?material| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N fruit|ˮ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +潴 N material|,?food|ʳƷ +Ʒ N food|ʳƷ,sweet| +ʳ N food|ʳƷ,sweet| +ˮ N phenomena|,lucky|,desired| +ˮ N water|ˮ +˿˿ ADJ aValue|ֵ,taste|ζ,sweet|,desired| +˿˿ V joyful|ϲ +ͷ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ͷ N attribute|,taste|ζ,sweet|,&edible|ʳ +ζ N attribute|,taste|ζ,sweet|,&edible|ʳ + N text|,gentle| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V calm| +֪ V shameless|û + ADJ aValue|ֵ,behavior|ֹ,arrogant| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȼ V calm| + V savor| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V CarryOnBack| + V choose|ѡ + V incite|ָʹ + V lift| + N part|,%character| + V pick|ʰ + V touch| + V incite|ָʹ + V separate| + V separate| +̶ V ExpressAgainst|Ǵ + V incite|ָʹ + V entice| + V tease|ȡ +ʼ V choose|ѡ + N human|,#occupation|ְλ,*transport|,employee|Ա + V choose|ѡ + V incite|ָʹ + V choose|ѡ + V incite|ָʹ + V IllTreat| + V incur| +ѡ V choose|ѡ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +ս V incite|ָʹ +ս N human|,*incite|ָʹ + N artifact|˹,commercial| +۶ V IllTreat| + CLAS NounUnit|,&entity|ʵ + N part|,%document| + N part|,%plant|ֲ,limb|֫ + N shape| + N furniture|Ҿ,space|ռ,@put| + V spread|,agricultural|ũ + V analyze| + N mark|־ + N regulation| + N attribute|,circumstances|,&entity|ʵ + N attribute|,standard|׼,&entity|ʵ + N part|,%regulation| + N attribute|,behavior|ֹ,proper|,desired|,&event|¼ + N regulation| + N regulation| +Ŀ N agreement|Լ +Ŀ N expression| + N material|,?clothing|,?tool|þ + N regulation| + N text|,#regulation| + N image|ͼ + N symbol|,#information|Ϣ +Լ N agreement|Լ + N human|,police| + N readings| + N shape| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,distance|,far|Զ + V look| + V look| + V cross|Խ + V discharge| + V jump| + V shiver| + N SportTool|˶ + V alter|ı,patient=affairs| + N InsectWorm| + N recreation|,entertainment| + V shiver| + V recreation| + V exercise|,sport| + V cross|Խ + V discharge| + V CausePartMove|,PatientPartof=foot| + V exercise|,sport| +С N human|,undesired|ݬ +С N human|,undesired|ݬ + V exercise|,sport| + N tool|þ,*recreation| + V exercise|,sport| +ɡ V exercise| +ɡ V exercise|,sport| +ɡ V fall|,sport|,military| + V jump| + V exercise|,sport| +ˮ V exercise|,sport| +̨ N facilities|ʩ,space|ռ + V recreation| + N SportTool|˶ + V alter|ı,patient=affairs| + V discharge| +Զ V exercise|,sport| +Ծ V jump| +Ծ N human|,*jump| + N InsectWorm| + N InsectWorm| + V apply|ͿĨ + V approach|ӽ + N payment| +߶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V provide| + V approach|ӽ + ADJ aValue|ֵ,content|,proper|,desired| + V BeNear|,partner=skin|Ƥ + V follow| + ADJ aValue|ֵ,content|,accurate|׼,desired| +Ϣ V collect|,commercial| + V subtract|,commercial| + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + N metal| + N weapon|,generic|ͳ +ɽ ADJ aValue|ֵ,trueness|α,true|,desired| + N shape|,flat|,surfacial| + N PenInk|ī,*write|д + N tool|þ,*carve| + N SportTool|˶ + N fact|,*exercise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N part|,%building|,eye| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N army|,*build|,#facilities|ʩ + N institution|,transport|,ProperName|ר,politics| + N tool|þ,*fix|ס,metal|,acute| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N affairs|,#earn|׬,#alive|,#occupation|ְλ,safe| +˶ ADJ aValue|ֵ,behavior|ֹ,stubborn| +˶ ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N human|,undesired|ݬ,greedy|̰ + N material|,metal| + N human|,desired|,lasting| +Ͻ N metal| + N tool|þ,*fasten|˩ + N clothing|,*protect|,#body|,#fight| + N material|,*protect|,#body|,#fight| + N human|,#occupation|ְλ,industrial| + N InstitutePlace|,mine| + N stone|ʯ,mine| +ʯ N stone|ʯ,mine| +ľ N wood|ľ,material| + N tool|þ,linear|,*fasten|˩ + N tool|þ,police|,#crime|,#foot|,*detain|ס +· N facilities|ʩ,route|· +·ְ N human|,#occupation|ְλ,industrial| + N part|,%building|,mouth| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ţ N machine|,#crop|ׯ +Ƥ N material|,metal| + N army| + N tool|þ,generic|ͳ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,color|ɫ,BlueGreen|,undesired|ݬ + N tree| + ADJ aValue|ֵ,kind|,special| +ˮ N metal|,liquid|Һ +˿ N tool|þ,linear| +˿ N facilities|ʩ,space|ռ,military|,@defend| +˿ N tool|þ + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,space|ռ +м N metal|,small|С + N phenomena|,OutOfOrder|,#metal| +֤ N information|Ϣ,*prove|֤ +ĥ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N letter|ż + N letter|ż,*invite| + N publications|鿯 + N part|,%organization|֯ + N room| + N human|,#occupation|ְλ,official| + N room| + V listen| + V obey|ѭ + V perception|֪ + N tool|þ,cubic|,@store| + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ + N human|,#occupation|ְλ,employee|Ա,past| + V obey|ѭ + V perception|֪ + V understand| + V ignorant|֪,#listen| + V wait|ȴ + ADJ obey|ѭ + V perception|֪ + V listen|,content=text| + V study|ѧ,education| + N experience|,#listen| + ADJ aValue|ֵ,ability|,able|,listen| + V study|ѧ,education| + N attribute|,ability|,#listen|,&AnimalHuman| + V obey|ѭ +ƾ V indulge| +Ա V indulge| +Ȼ V indulge| + V be| +ȡ V listen| + V indulge| +˵ V perception|֪ + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +Ͳ N tool|þ,*listen| +Ͳ N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V believe| + V wait|ȴ,content=information|Ϣ + N human|,*listen| + V method|,*diagnose|,#listen|,medical|ҽ + N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V control|,patient=power| +֮֮ V indulge| + N human|,*listen| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N chemical|ѧ +͡ N land|½ +͢ N institution|,official|,past| +͢ N place|ط,capital|,ProperName|ר,(Bhutan|) +ͣ V CeaseSelfMove|ֹ +ͣ V TurnOff|ֹ +ͣ V cease|ͣ +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V stay|ͣ +ͣ V end|ս +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ N tool|þ,*tell|,#time|ʱ +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣ V cease|ͣ,content=produce| +ͣ V end|ս,industrial| +ͣ V put| +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,*put|,#LandVehicle| +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣ V finish| +ͣ V TurnOff|ֹ,experiencer=electricity| +ͣ N phenomena|,TurnOff|ֹ,#electricity| +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V cease|ͣ,content=fly| +ͣ V cease|ͣ,content=affairs| +ͣ V cease|ͣ,content=transport| +ͣ V cease|ͣ,content=fight|,military| +ͣƺ N facilities|ʩ,space|ռ,*put|,#aircraft| +ͣ V cease|ͣ,content=build| +ͣ V cease|ͣ,content=publish| +ͣ V stay|ͣ +ͣ V cease|ͣ,content=education|,education| +ͣ V put| +ͣ V stay|ͣ +ͣˮ V TurnOff|ֹ,content=liquid|Һ +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣϢ V end|ս +ͣϢ V stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣЪ V cease|ͣ +ͣЪ V cease|ͣ,content=affairs|,commercial| +ͣЪ V end|ս +ͣЪ V rest|Ϣ +ͣѧ V cease|ͣ,content=study|ѧ,education| +ͣѧ V discharge| +ͣҵ V cease|ͣ,content=affairs|,commercial| +ͣ ADJ aValue|ֵ,content|,neat|,desired| +ͣ ADJ aValue|ֵ,form|״,even|,desired| +ͣ V cease|ͣ,content=transport| +ͣս V cease|ͣ,content=fight|,military| +ְͣ V dismiss| +ֹͣ V CeaseSelfMove|ֹ +ֹͣ V cease|ͣ +ֹͣ V end|ս +ͣ V CeaseSelfMove|ֹ +ͣ V end|ս +ͣͲǰ ADJ aValue|ֵ,ability|,unable|ӹ,prosper| +ͣ V cease|ͣ +ͤ N facilities|ʩ,space|ռ +ͤͤ ADJ aValue|ֵ,posture|,upright| +ͤͤ ADJ aValue|ֵ,posture|,gracious|,desired| +ͤ ADJ aValue|ֵ,content|,neat|,desired| +ͤ N facilities|ʩ +ͤ N facilities|ʩ,space|ռ +ͤӼ N room|,small|С +ͥ N institution|,official|,police| +ͥ N part|,%house|,space|ռ +ͥ N human|,#occupation|ְλ,official|,police| +ͥ԰ N facilities|ʩ,space|ռ,#FlowerGrass| +ͦ V CausePartMove| +ͦ ADV aValue|ֵ,degree|̶,ish| +ͦ ADJ aValue|ֵ,form|״,straight|ֱ +ͦ V endure| +ͦ ADJ aValue|ֵ,posture|,upright|,desired| +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ͦ V GoForward|ǰ +ͦ V exercise|,sport| +ͦ ADJ aValue|ֵ,form|״,level|ƽ +ͦ V stand|վ +ͦ V CausePartMove|,PatientPartof=body| +ͦ V GoOut|ȥ,manner=brave| +ͦ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ֱͦ V CausePartMove| +ֱͦ ADJ aValue|ֵ,posture|,straight|ֱ +ͧ N ship| +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ N character|,surname|,human|,ProperName|ר +ͨ V communicate| +ͨ V connect| +ͨ V dredge|ͨ +ͨ N human|,able|,desired| +ͨ V know|֪ +ͨ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V tell| +ͨ V disseminate| +ͨ V excrete|й,patient=waste| +ͨ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ͨ N human|,able|,desired| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,frequency|Ƶ,regular| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,property|,^$BlockUp| +ͨ V function|,experiencer=LandVehicle| +ͨ V become|Ϊ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨ N facilities|ʩ,route|· +ͨ V betray| +ͨ V function|,experiencer=electricity| +ͨ V tell| +ͨ N place|ط,city| +ͨ V read| +ͨ V DoSum| +ͨ V clean|ʹ,scope=gas| +ͨ籨 V tell|,content=information|Ϣ,manner=secret| +ͨ V machine|,*clean|ʹ,#gas| +ͨ羮 V facilities|ʩ,*clean|ʹ,#gas|,mine| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V announce| +ͨ ADV aValue|ֵ,range|,all|ȫ +ͨ V accept| +ͨ V cross|Խ +ͨ PREP {means} +ͨ V function|,experiencer=vehicle|ͨ +ͨ V associate| +ͨ ADJ aValue|ֵ,color|ɫ,red| +ͨ V talk|̸ +ͨ V GetMarried| +ͨ N money| +ͨ N phenomena|,#money|,BecomeLess|,commercial| +ͨ N phenomena|,#money|,BecomeMore|,commercial| +ͨ V catch|׽ס,police| +ͨ V endeavour| +ͨ V cooperate|,manner=endeavour| +ͨ V associate| +ͨ V relate|й +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ V announce|,content=text| +ͨ N text|,*order| +ͨ· N facilities|ʩ,route|· +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,range|,all|ȫ +ͨ V clean|ʹ,scope=gas| +ͨ V communicate| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V know|֪ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨȨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ͨ N human|,able|,desired| +ͨ V adjust| +ͨ V endorse|ӵ +ͨ V provide| +ͨ V associate|,commercial| +ͨ N part|,%AnimalHuman|,body| +ͨʷ N fact|,#time|ʱ +ͨ˳ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ׻ V AlterProperty|,PatientAttribute=ordinary| +ͨ׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +ͨ N physical| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͨͨ ADV aValue|ֵ,range|,all|ȫ +ͨͬ V collude| +ͨ͸ ADJ aValue|ֵ,content|,detailed|,desired| +ͨ; N facilities|ʩ,route|· +ͨ V LeadTo|ͨ +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨﵩ ADJ aValue|ֵ,duration|,TimeLong| +ͨ V know|֪ +ͨķ N food|ʳƷ +ͨ V communicate|,instrument=letter|ż +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +֤ͨ N document|,*agree|ͬ,#SelfMove| +ͨѶ N affairs|,communicate| +ͨѶ V communicate| +ͨѶ¼ N document| +ͨѶ N institution|,#news| +ͨѶ N facilities|ʩ,#communicate| +ͨѶ N aircraft|,#communicate| +ͨѶԱ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ͨҹ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,property|,$exchange|,#use| +ͨ ADJ aValue|ֵ,property|,$use|,extensive| +ͨ V function|,experiencer=affairs| +ͨ N law|ɷ +֪ͨ V tell| +֪ͨ N document|,*tell| +֪ͨ N document|,*tell| +ͨ N facilities|ʩ,route|· +ͨ N document|,*tell|,#fight| +ͩ N tree| +ͩ N material|,liquid|Һ +ͪ N chemical|ѧ +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͬ V BeSame|ͬ +ͬ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ COOR {and|} +ͬ PREP {coagent} +ͬ PREP {contrast} +ͬ PREP {partner} +ͬ N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,attachment|,alike| +ͬ N human|,*study|ѧ,education|,friend| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,clan| +ͬ N human|,#country| +ͬ ADJ aValue|ֵ,clan|,alike| +ͬ V pity|,target=EachOther|໥ +ͬ ADJ aValue|ֵ,speed|ٶ,alike| +ͬ ADJ aValue|ֵ,time|ʱ,alike| +ͬ N machine| +ͬ N machine| +ͬ V hate|,manner=together|ͬ +ͬ N human|,*study|ѧ,education|,friend| +ͬ V study|ѧ,manner=together|ͬ,education| +ͬ V differ|ͬ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬѧ ADJ aValue|ֵ,status|,alike|,#education| +ͬѧ N attribute|,rank|ȼ,#study|ѧ,alike|,&human| +ͬԼ ADJ aValue|ֵ,power|,alike| +ͬҪ ADJ aValue|ֵ,importance|,alike| +ͬ ADJ aValue|ֵ,clan| +ͬ V mating| +ͬĸ ADJ aValue|ֵ,clan| +ͬʹ V undergo|,manner=together|ͬ,content=circumstances| +ͬ N emotion|,alike| +ͬͬ N payment|,alike| +ͬ V BeSame|ͬ,scope=result| +ͬھ V perish|,manner=together|ͬ +ͬ V engage|,manner=together|ͬ +ͬ V ize|̬,PatientAttribute=alike|,medical|ҽ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ N attribute|,rank|ȼ,BeSame|ͬ,&education| +ͬôѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ͬ V alive|,manner=together|ͬ,#GetMarried| +ͬ V reside|ס,manner=together|ͬ +ͬ ADJ aValue|ֵ,kind|,alike| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,age|,alike| +ͬ V collude| +ͬ· V walk|,manner=together|ͬ +ͬ ADJ aValue|ֵ,relatedness|,intimate| +ͬ˹ N place|ط,country|,*ally|,military| +ͬ˻ N community|,politics|,(China|й) +ͬı V engage|,content=crime|,manner=together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,age|,alike| +ͬ N time|ʱ,year|,alike| +ͬ N time|ʱ +ͬ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͬ V pity| +ͬ N emotion|,pity| +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ N time|ʱ,alike| +ͬʱ CONJ {supplement|ݽ} +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬ V engage|,manner=together|ͬ +ͬ N human|,*engage|,together|ͬ +ͬҲٸ V fight|,#family| +ͬ ADJ aValue|ֵ,age|,alike| +ͬλ N part|,%physical| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ ADJ aValue|ֵ,form|״ +ͬͬ V ally| +ͬЭ V cooperate| +ͬ V SelfMoveInManner|ʽ,manner=together|ͬ +ͬ ADJ aValue|ֵ,occupation|ְλ,alike| +ͬ N human|,#occupation|ְλ,alike| +ͬ N fact|,love| +ͬ N human|,love| +ͬѧ N human|,*study|ѧ,education|,friend| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬҵ N community|,commercial| +ͬһ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬһ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ͬ V agree|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike|,#information|Ϣ +ͬ N expression| +ͬ N attribute|,similarity|ͬ,alike|,&sound| +ͬԴ ADJ aValue|ֵ,source|Դ,alike| +ͬԴ ADJ aValue|ֵ,source|Դ,original|ԭ +ͬ־ N human|,friend|,*engage|,together|ͬ +ͬ۹ V ally| +ͬ N material|,linear|,@transmit| +ͬס N human|,*reside|ס,together|ͬ +ͬ ADJ aValue|ֵ,clan| +ͭ N metal| +ͭ N money| +ͭ N tool|þ,*print|ӡˢ +ֽͭ N paper|ֽ +ͭ N MusicTool| +ͭ© N tool|þ,*tell|,#time|ʱ +ͭ N human|,#occupation|ְλ,industrial| +ͭ N chemical|ѧ +ͭɫ ADJ aValue|ֵ,color|ɫ,green| +ͭģ N tool|þ +ͭ N tool|þ,*reward|,$GiveAsGift|,desired| +ͭ N tool|þ,generic|ͳ +ͭǮ N money| +ͭ˿ N tool|þ,linear| +ͭ N image|ͼ,$carve| +ͮ ADJ aValue|ֵ,color|ɫ,red| +ͮ N CloudMist| +ͯ N character|,surname|,human|,ProperName|ר +ͯ N human|,young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯ N text|,humanized| +ͯ N experience|,#young|,ignorant|֪ +ͯ N time|ʱ,#young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯɽ N land|½ +ͯ N sound|,#music|,#young| +ͯ N emotion|,young| +ͯϱ N human|,family|,female|Ů +ͯװ N clothing|,#young| +ͯ N human|,young| +ͯӼ N bird| +ͯӾ N human|,young|,#military| +ͯ ADJ aValue|ֵ,behavior|ֹ,fair|,desired|,commercial| +Ͱ CLAS NounUnit|,&physical| +Ͱ N tool|þ,cubic|,@put| +Ͱ״ ADJ aValue|ֵ,form|״ +ͱ V reveal|¶ +ͱ V stab| +ͱ¦ V err| +ͱ V err| +Ͳ CLAS NounUnit|,&physical| +Ͳ N part|,%clothing| +Ͳ N part|,%tree|,body| +Ͳ N shape| +Ͳ״ N FlowerGrass| +Ͳ N shape| +ͳ V include| +ͳ V merge|ϲ +ͳ ADJ qValue|ֵ,amount|,all|ȫ +ͳ N room|,%vehicle|ͨ +ͳ N attribute|,name|,generic|ͳ,&entity|ʵ +ͳ V plan|ƻ +ͳ ADJ aValue|ֵ,range|,all|ȫ +ͳ ADJ aValue|ֵ,performance| +ͳ V calculate| +ͳƱ N account| +ͳƾ N institution|,*calculate|,ProperName|ר,politics| +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N quantity|,amount|,&calculate| +ͳѧ N knowledge|֪ʶ,#calculate| +ͳѧ N human|,#knowledge|֪ʶ +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N fact|,exam| +ͳ N human|,military|,official| +ͳ V order| +ͳ V order| +ͳ N location|λ,@LieDown| +ͳ˧ N human|,#occupation|ְλ,official|,military| +ͳ˧ N part|,%army|,*order| +ͳͳ ADV qValue|ֵ,range|,all|ȫ +ͳϽ V manage| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ͳһ V merge|ϲ +ͳһ N entity|ʵ +ͳһ N attribute|,content|,neat|,&entity|ʵ +ͳһս N community|,ally| +ͳһ N human|,*merge|ϲ +ͳս N community|,ally| +ͳս N part|,%community| +ͳ V control| +ͳ V manage| +ͳ N human|,*manage| +ʹ ADJ aValue|ֵ,degree|̶,extreme| +ʹ N emotion|,sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V ExpressAgainst|Ǵ +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N location|λ,#experience|,undesired|ݬ,#unfortunate| +ʹ V beat|,manner=fierce| +ʹˮ V beat|,manner=fierce| +ʹ˼ʹ V LookBack|,content=experience| +ʹ˼ʹ V LookBack|,content=painful|ʹ +ʹ V disgust| +ʹ N disease| +ʹǰ V amend|,content=wrong| +ʹ V perception|֪ +ʹ V disgust| +ʹ V painful|ʹ +ʹ V weep| +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N phenomena|,undesired|ݬ +ʹ V unfortunate| +ʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹ V satisfied| +ʹʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹϧ V sorry|ϧ +ʹ V sorrowful| +ʹļ V repent|û +ʹ N attribute|,importance|,&thing| +ʹ N phenomena|,hardship|,undesired|ݬ +͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵ V steal|͵,crime| +͵ V slack|͵ +͵ V steal|͵,crime| +͵ V cross|Խ,#crime| +͵ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +͵ʴ V WorthNot|ֵ +͵ V look|,manner=secret| +͵ N human|,*look|,secret|,undesired|ݬ +͵ V use|,patient=time|ʱ +͵ V obtain|õ,means=steal|͵,crime| +͵ V slack|͵ +͵ ADJ slack|͵ +͵ V deceive|ƭ +͵ V steal|͵,crime| +͵ V ShowLove|ʾ,manner=secret| +͵ȡ N human|,*steal|͵,undesired|ݬ,crime| +͵ V alive|,manner=disgraced| +͵˰ V evade|ر,content=expenditure|,crime|,commercial| +͵컻 V deceive|ƭ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵Ϯ V attack|,manner=secret|,military| +͵Ϯ V attack|,manner=sudden|,military| +͵ V rest|Ϣ +͵ V slack|͵ +͵ V look|,manner=secret| +͵Ӫ V attack|,manner=sudden|,patient=place|ط,military| +Ͷ V GoInto| +Ͷ V drop|Ͷ +Ͷ V fit|ʺ +Ͷ V illuminate| +Ͷ V post|ʼ +Ͷ V put| +Ͷ V send| +Ͷ V throw| +Ͷ V admit|,content=crime|,police| +Ͷ V admit|,content=crime|,police| +Ͷ V buy|,possession=guarantee|֤ +Ͷ N human|,*buy|,#guarantee|֤ +Ͷ V SeekRefuge|Ͷ +Ͷʴ V include|,ResultWhole=army|,military| +Ͷҵ绰 N facilities|ʩ,*communicate| +Ͷ V propose|,content=price|۸,commercial| +Ͷ V start|ʼ,content=produce|,industrial| +Ͷ V surrender|,military| +Ͷ V drop|Ͷ,patient=weapon| +Ͷ V throw|,patient=weapon| +Ͷ N human|,*throw|,military| +Ͷ V betray|,military| +Ͷ V post|ʼ +ͶԱ N human|,#occupation|ְλ,*post|ʼ +Ͷ V spend| +Ͷ V submit|,possession=readings| +Ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ͷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷѷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,treacherous|,politics| +Ͷȡ V venture|ð,content=seek|ıȡ +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ V surrender| +Ͷ V surrender|,military| +Ͷ V put| +Ͷ V engage|,content=exam| +Ͷ V SeekRefuge|Ͷ +Ͷ V shoot|,sport| +ͶƱ V drop|Ͷ,patient=document|,time=select|ѡ +ͶƱ V drop|Ͷ,patient=document|,purpose=oppose| +ͶƱ N time|ʱ,day|,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N tool|þ,*drop|Ͷ,#document|,#select|ѡ +ͶƱ޳ V drop|Ͷ,patient=document|,purpose=agree|ͬ +ͶƱվ N facilities|ʩ,space|ռ,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N human|,*select|ѡ +Ͷ V fit|ʺ +Ͷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͷ N fund|ʽ,$provide| +Ͷ V provide|,possession=fund|ʽ +Ͷ V put| +Ͷ V illuminate| +Ͷ V throw| +Ͷ V include| +Ͷʦ V study|ѧ +Ͷ N human|,*exercise| +Ͷ V transmit| +Ͷ V reside|ס +Ͷ V accuse|ظ +Ͷұ V associate|,manner=friend| +Ͷ V drop|Ͷ +ͶЧ V endeavour| +ͶӰ N trace|,#lights| +Ͷ V throw| +Ͷע V put| +Ͷ V provide|,possession=fund|ʽ,commercial| +Ͷ N human|,*provide|,#fund|ʽ,commercial| +ͷ ADJ aValue|ֵ,importance|,important| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ͷ N attribute|,pattern|ʽ,&head|ͷ +ͷ N human|,official| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%event|¼,aspect| +ͷ N part|,%physical|,*surplus|ʣ +ͷ N part|,%physical|,edge| +ͷ N part|,%physical|,head|ͷ +ͷ N part|,%physical|,tail|β +ͷ N part|,%time|ʱ,ending|ĩ +ͷ NUM qValue|ֵ,sequence|,ordinal| +ͷ N part|,%publications|鿯 +ͷͷ N part|,%publications|鿯 +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N fund|ʽ +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%human|,hair|ë +ͷ N part|,%AnimalHuman|,head|ͷ +ͷǹ N part|,%AnimalHuman|,head|ͷ +ͷ N result|,#succeed|ɹ,desired| +ͷ N part|,%AnimalHuman|,bone| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ V dizzy| +ͷ N attribute|,ability|,&human| +ͷ N clothing|,#head|ͷ +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%furniture|Ҿ +ͷ N clothing|,#head|ͷ,*protect| +ͷ N location|λ,InFront|ǰ +ͷ N time|ʱ,past| +ͷ­ N part|,%AnimalHuman|,head|ͷ +ͷ N livestock| +ͷ ADJ aValue|ֵ,reputation|,glorious|,desired| +ͷ N tool|þ,*decorate|װ,#female|Ů +ͷ N human|,desired|,important| +ͷĿ N human|,official|,undesired|ݬ,crime| +ͷ N thinking|˼ +ͷԷ V flurried| +ͷԿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷƤ N part|,%AnimalHuman|,skin|Ƥ +ͷƤ N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷƤм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷѪ V unfortunate| +ͷ N phenomena|,sport| +ͷ N human|,official| +ͷ N material|,linear|,*weave| +ͷ N tool|þ,linear|,*fasten|˩ +ͷʭ N InsectWorm|,undesired|ݬ +ͷ N tool|þ,*decorate|װ +ͷ V painful|ʹ +ͷ N time|ʱ,begin|ʼ,day| +ͷ N time|ʱ,past|,day| +ͷʹ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ͷʹ V painful|ʹ +ͷͷǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N attribute|,occupation|ְλ,&human| +ͷ N image|ͼ,$carve| +ͷм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷ N part|,%event|¼,nerve| +ͷ N bird| +ͷ N livestock| +ͷһ NUM qValue|ֵ,sequence|,ordinal| +ͷ N tool|þ,*MakeUp|ױ +ͷ V dizzy| +ͷ N human|,official| +͸ V GoThrough| +͸ ADJ aValue|ֵ,degree|̶,extreme|,desired| +͸ V appear| +͸ V soak| +͸ V stab| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ ADJ aValue|ֵ,content|,deep|,desired| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ V dredge|ͨ +͸ V reveal|¶ +͸ V reveal|¶,patient=event|¼ +͸ V GoThrough| +͸ N tool|þ,*look| +͸״ ADJ aValue|ֵ,form|״ +͸ ADJ aValue|ֵ,brightness|,bright| +͸ V understand| +͸© V reveal|¶ +͸¶ V reveal|¶ +͸ ADJ aValue|ֵ,clearness|,clear| +͸ N attribute|,clearness|,thing| +͸ƽ N machine| +͸ V dredge|ͨ +͸ V respire| +͸ V GoThrough| +͸ V diagnose|,means=look|,medical|ҽ +͸ N RainSnow|ѩ +͸֧ V collect| +͸֧ V collect|,commercial| +͹ V FormChange|α,StateFin=protruding|͹ +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹ N tool|þ,*print|ӡˢ +͹߽ ADJ aValue|ֵ,form|״ +͹ N part|,%implement| +͹ N part|,%machine| +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹澵 N tool|þ,*look|,#enlarge| +͹͸ N tool|þ,*look|,#enlarge| +ͺ ADJ aValue|ֵ,form|״,blunt| +ͺ ADJ aValue|ֵ,fullness|,empty| +ͺ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ͺ ADJ aValue|ֵ,fullness|,empty|,#hair|ë +ͺ N human|,#disease|,#hair|ë +ͺ N bird| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ V run| +ͻ V change|,manner=sudden| +ͻ N fact|,change| +ͻ V FormChange|α,StateFin=protruding|͹ +ͻ V GoOut|ȥ +ͻ ADJ aValue|ֵ,content|,opened| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͻ V express|ʾ +ͻ N part|,%entity|ʵ,important| +ͻΧ V GoOut|ȥ,LocationIni=surround|Χ +ͻͽ V GoForward|ǰ,manner=fast| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ V attack|,manner=sudden|,military| +ͻ V endeavour| +ͻ N part|,%army| +ͻ N human|,*endeavour| +ͻ N human|,able|,desired| +ͻ˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tunisiaͻ˹) +ͻ˹ N place|ط,capital|,ProperName|ר,(Tunisia|ͻ˹) +ͻ˹ N place|ط,country|,ProperName|ר,(Africa|) +ͻ˹ N human|,(Tunisia|ͻ˹) +ͻ V MakeBetter|Ż +ͻ V split|ƿ +ͻƿ N part|,%place|ط,mouth| +ͻ V happen|,manner=sudden| +ͻ V rise| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻ V happen|,manner=sudden| +ͻΧ V split|ƿ,patient=surround|Χ,military| +ͻϮ V attack|,manner=sudden|,military| +ͻأ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ +ͻأ ADJ aValue|ֵ,height|߶,tall| +ͻ N community|,ProperName|ר,(China|й) +ͼ N image|ͼ +ͼ N image|ͼ,#earth|,#country| +ͼ N image|ͼ,$draw| +ͼ N plans|滮 +ͼ V plan|ƻ +ͼ V seek|ıȡ +ͼ N thought|ͷ +ͼ V try| +ͼ N image|ͼ +ͼ N tool|þ,*print|ӡˢ +ͼ N symbol|,#computer| +ͼ ADJ image|ͼ +ͼ N stationery|ľ,*fix|ס +ͼ N money|,(Mongolia|ɹ) +ͼ N image|ͼ,$draw| +ͼ N stationery|ľ +ͼ N publications|鿯,#image|ͼ +ͼ N image|ͼ +ͼ N attribute|,scene|,&inanimate| +ͼ N text|,*explain|˵ +ͼı V plan|ƻ +ͼƬ N image|ͼ +ͼƬ N image|ͼ,$TakePicture| +ͼ N publications|鿯,#image|ͼ +ͼذ V CauseToAppear|,patient=purpose|Ŀ +ͼ N publications|鿯,mass| +ͼ N InstitutePlace|,@read|,@borrow|,#readings| +ͼݹԱ N human|,#occupation|ְλ,*manage| +ͼ N room|,@read| +ͼ N thing| +ͼIJï ADJ aValue|ֵ,GoodBad|û,good|,desired| +ͼ N image|ͼ +ͼ N image|ͼ +ͼ N image|ͼ,*produce| +ͼ N stationery|ľ +ͼֽ N image|ͼ,*build| +ͽ ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ N human| +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ N human|,*study|ѧ +ͽ N human|,*study|ѧ,#religion|ڽ +ͽ ADJ aValue|ֵ,performance|,walk| +ͽ N human|,*study|ѧ +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ޹ V fail|ʧ +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽȻ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ ADJ aValue|ֵ,behavior|ֹ,#fight| +ͽ N fact|,punish|,#detain|ס,police| +ͽͽ N human|,*study|ѧ,mass| +ͽͽ N human|,*study|ѧ,undesired|ݬ,mass| +; N facilities|ʩ,route|· +; N facilities|ʩ,space|ռ,#tour|,@reside|ס +; PREP {LocationThru} +; N method| +; N location|λ,%route|· +Ϳ V apply|ͿĨ +Ϳ V draw| +Ϳ V remove| +Ϳ N part|,%physical|,skin|Ƥ +Ϳ V alter|ı,manner=apply|ͿĨ +Ϳ N material|,*apply|ͿĨ,generic|ͳ +ͿĨ V apply|ͿĨ +ͿĨ V draw| +Ϳ N character|,surname|,human|,ProperName|ר +Ϳ V apply|ͿĨ +Ϳˢ V apply|ͿĨ +Ϳѻ V draw| +Ϳ֬Ĩ V MakeUp|ױ +Ϳ֬Ĩ V beautify| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + N tool|þ,*cut|,*split|ƿ + N human|,*cut|,*split|ƿ,#livestock| + N human|,undesired|ݬ,*kill|ɱ + N human|,#occupation|ְλ,*cut|,*split|ƿ,#livestock| +¾ V kill|ɱ,crime| +ɱ V kill|ɱ,agricultural|ũ +ɱ V kill|ɱ,crime| + V kill|ɱ,agricultural|ũ +׳ N InstitutePlace|,*kill|ɱ,agricultural|ũ +˰ N expenditure|,#kill|ɱ,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N land|½ + N place|ط,country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Turkmenistan|˹̹) + N stone|ʯ + N human|,undesired|ݬ,unable|ӹ + N bird| +߽ V perish| + N InsectWorm| + N beast| + N material|,?clothing| + N InsectWorm| + N artifact|˹,generic|ͳ + N humanized| + N land|½ +ظĸ V improve|,patient=land|½ + N humanized| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,(Turkey|) + N human|,(Turky|) + N language|,#country|,ProperName|ר + N method| + CLAS NounUnit|,&stone|ʯ + N affairs| + N document|,medical|ҽ,#medicine|ҩ + N human|,crime|,undesired|ݬ,*rob| + V improve|,patient=land|½ + ADJ aValue|ֵ,color|ɫ,yellow| +ʵ N human|,undesired|ݬ,fierce|,official| + N artifact|˹,generic|ͳ + N community|,ProperName|ר,(China|й) + V build| + N affairs|,*build| +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹̹ N human|,(Turkmenistan|˹̹) + N language|,#country|,ProperName|ר +ù N medicine|ҩ +ľ N building| +ľ N affairs|,*build| + N material|,*build| + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + N stone|ʯ +ѧ N knowledge|֪ʶ,#stone|ʯ +ѧ N human|,#knowledge|֪ʶ + N human|,#place|ط +ɫ ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʯ N stone|ʯ +ʯ N stone|ʯ,?material| +ʯ CLAS NounUnit|,&stone|ʯ +˾ N human|,official| +ز N artifact|˹,generic|ͳ +زƷ N artifact|˹,generic|ͳ + N celestial| + N sound|,#language| + V bury| + N regulation|,politics| +ֽ N paper|ֽ + ADJ aValue|ֵ,source|Դ,stone|ʯ + N attribute|,property|,stone|ʯ + N human|,#place|ط + N human|,*reside|ס +ר N human|,#knowledge|֪ʶ +״ ADJ aValue|ֵ,form|״ + N community|,ProperName|ר,(China|й) + V return| + V speak|˵ + V vomit|³ +³ V vomit|³ +¹ V improve| +¶ V reveal|¶ +¶ V tell| +ĭ N part|,%AnimalHuman|,liquid|Һ + V pregnant|,agricultural|ũ +к V StomachTrouble|֢ +Ѫ V bleed|Ѫ +緼 N bird| + N livestock| +ô N disease|,#mouth| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V sorrowful| + V flee|,manner=fast| + N livestock| +βͳ ADJ aValue|ֵ,duration|,TimeShort| + N human|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ qValue|ֵ,amount|,many| + N water|ˮ +ļ ADJ aValue|ֵ,speed|ٶ,fast| +ļ ADJ qValue|ֵ,amount|,many| + N water|ˮ + V PlayWith|Ū + ADJ aValue|ֵ,form|״,round|Բ + N community| + N community|,ProperName|ר + N part|,%army| + N shape|,round|Բ +ų N human|,#occupation|ְλ,official|,entertainment| +ų N human|,#occupation|ְλ,official|,military| +ų N human|,official| +ŶӾ N mental|,#coordinate|Э,desired| +ŷ N material|,?food|ʳƷ +Ż N community|,undesired|ݬ +Ž ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ž V ally| +Žһ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Žһ V ally| +ž V meet| + N fish| + N part|,%fish|,body| + N community| + N fact|,sport| + N fact|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N fish| +Ա N human|,#community| +Ա N human|,#organization|֯ +Բ V meet| +Բ N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + V TakeAway|ᶯ + V deduce| + V delay| + V endorse|ӵ + V push| + V refuse| + V select|ѡ + V turn|Ťת + V urge|ʹ +ƱԴ V investigate| +Ʋ V CauseToGrow|ʹɳ +Ʋ ADJ aValue|ֵ,trueness|α,^true| +Ʋ V deduce| +Ʋ V guess|² +Ƴ N human|,*push|,#LandVehicle| +Ƴ³ V improve| +Ƴ V WellTreat|ƴ +Ƴ V delay| +Ƴ V endorse|ӵ +Ƴ V propose| +ƴ V reject|ؾ +Ƶ V deny| +Ƶ V reverse|ߵ +Ƶ V deduce| +ƶ V choose|ѡ +ƶ V deduce| +ƶ V urge|ʹ +ƶ N attribute|,strength|,&physical| +ƶ N human|,*urge|ʹ +ƶ V deduce| +ƶ V guess|² +ƶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ƶ V deduce| +Ʒ V defeat|սʤ +Ʒ V deny| +Ʒ V reverse|ߵ +ƹ V disseminate| +Ƽ V recommend|Ƽ +Ƽ N human|,*recommend|Ƽ +ƽ V GoForward|ǰ +ƽ V GoForward|ǰ,military| +ƽ V mobilize| +ƽ N material|,*mobilize| +ƽ N human|,*urge|ʹ +ƾ V check| +ƾ V research|о +ƾ V select|ѡ + V deduce| + N attribute|,strength|,&entity|ʵ + V deduce| + V cure|ҽ,means=press|ѹ,medical|ҽ + V think|˼ + V investigate| +ȴ V refuse| + V refuse| + V refuse| + N human|,#occupation|ְλ,police|,*judge|ö + V calculate| +ͷ V MakeUp|ױ,patient=hair|ë +ͷ V MakeUp|ױ,scope=hair|ë + N LandVehicle| + V refuse| + V refuse| +ί V refuse| + V guess|² + V sell|,commercial| +Ա N human|,#occupation|ְλ,*sell|,commercial| +ж V refuse| +ø V believe| + V conduct|ʵʩ +ѡ V select|ѡ + V delay| + V disappear|ʧ + V grow|ɳ + N tool|þ,*MakeUp|ױ + V refuse| +õ N human|,*reject|ؾ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V decline|˥ + V disheartened| +ǰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ V disheartened| + V disheartened| + ADJ disheartened| +Ȼ V disheartened| +ɥ V disheartened| + N attribute|,circumstances|,wane|˥,&entity|ʵ + ADJ attribute|,outlook|ǰ,wane|˥,&thing| + V disheartened| + N food|ʳƷ + N part|,%AnimalHuman|,leg| + N part|,%physical|,leg| +ȶ N part|,%AnimalHuman|,leg| +Ƚ N attribute|,ability|,#walk|,&human| + N part|,%AnimalHuman|,leg| + N human|,crime|,undesired|ݬ + V StripOff|ȥ +ɱ V change| +ɻ V StripOff|ȥ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻʷ N human|,extravagant|,crime|,undesired|ݬ + V StripOff|ȥ +ɫ V AppearanceChange|۱,scope=color|ɫ + V GoBackward| + V MoveItBack| + V cease|ͣ + V decline|˥ + V refuse| + V remove| + V return| + V withdraw|˳ +˱ V escape| +˱ V escape| +˱ V GoBackward|,military| +˱ V GoBackward|,patient=army|,military| +˲ V inferior| +˳ V withdraw|˳,SourceWhole=fact| +˳ V decline|˥ +˳ V withdraw|˳ +˵ V withdraw|˳,SourceWhole=organization|֯,politics| +˹ V withdraw|˳,SourceWhole=community|,commercial| +˻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +˻ ADJ aValue|ֵ,standard|׼,bad| +˻ V decline|˥ +˻ V return| +˻ V exchange| +˻ V GoBack| +˻ V return| +˻ V cease|ͣ,content=GetMarried| +˻ V cease|ͣ,content=community| +˻ V withdraw|˳,SourceWhole=community| +˻ N method|,produce| +˻ V return|,possession=physical|,commercial| +˾ N decline|˥ +˾ V withdraw|˳ +˿ V return|,possession=fund|ʽ +· N facilities|ʩ,linear|,route|·,@GoBackward| +· N space|ռ + V recompense| +Ʊ V coupon|Ʊ֤,commercial| +Ʊ V return|,possession=coupon|Ʊ֤,commercial| + V decline|˥ + V cease|ͣ,content=GetMarried| +ȴ V GoBackward| +ȴ V GoBackward|,military| + V surrender| + V remove|,patient=fever| +ɫ V AppearanceChange|۱,scope=color|ɫ + V remove|,patient=fever| +˰ V return|,possession=expenditure|,commercial| + V GoBackward| +λ V cease|ͣ,content=undertake|,politics| + V withdraw|˳,SourceWhole=army|,military| +ϯ V withdraw|˳,SourceWhole=fact| + V cease|ͣ,content=undertake| +ݽ N payment| + N attribute|,age|,&cease|ͣ,#occupation|ְλ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,*cease|ͣ +ѧ V cease|ͣ,content=study|ѧ,education| + V withdraw|˳,SourceWhole=army|,military| + V cease|ͣ,content=undertake|,politics| +ְ V cease|ͣ,content=undertake| + V swallow| + V take|ȡ +̲ V occupy|ռ +̲ V occupy|ռ,military| +û V cheat|ƭ +û V occupy|ռ + V endure| +ʳ V swallow| + V swallow| + V handle| + N quantity|,amount|,#transport|,&physical| + V KeepSilence|˵ + V swallow| + N place|ط,village| + V reside|ס,military| + V store| +Ϳ V engage|,content=affairs|,agricultural|ũ,military| + V engage|,content=affairs|,agricultural|ũ,military| + V reside|ס,military| + N part|,%AnimalHuman|,body| +β N part|,%AnimalHuman|,body| + N part|,%animal|,tail|β + V delay| + V pull| +ϰ N tool|þ,*wipe| +ϳ N LandVehicle|,$pull| +ϴ N ship|,*pull| +ϴ V pull| +Ϻ V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow|,undesired|ݬ + N machine|,#crop|ׯ,*transport| + V obstruct|ֹ + V relate|й + N ship|,*pull| +ˮ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ˮ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ƿ V owe|Ƿ + N tool|þ,*catch|׽ס,#fish| +洬 N ship|,*catch|׽ס,#fish| +Ь N clothing|,#foot| + V delay| + N human|,*delay| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V ServeAsFoil| + V SupportWeight|ס + V depend| + V entrust|ί + V refuse| + N tool|þ,*SupportWeight|ס +б N place|ط,ProperName|ר +д N reason| +ж N human|,friend|,*engage|,#crime| +ж N InstitutePlace|,*TakeCare|,#young|,#human| +и V depend| +и V entrust|ί +й V deceive|ƭ +й V manage| +й» N part|,%institution|,politics|,(institution|=UN|Ϲ) +лҰ N tool|þ,*SupportWeight|ס,#build| +м N tool|þ,*PropUp|֧ +˹ N InstitutePlace|,*sell|,@buy|,#physical|,commercial| + V entrust|ί + N tool|þ,cubic|,@put|,#edible|ʳ + V entrust|ί +Ҷ N part|,%plant|ֲ,hair|ë + V entrust|ί,ResultEvent=transport| +˵ N bill|Ʊ,*entrust|ί,#transport| + N human|,*entrust|ί,#transport| + N physical|,$transport| +ס V SupportWeight|ס + N tool|þ,*SupportWeight|ס + V StripOff|ȥ + V fall| + V leave|뿪 + V remove| +Ѱ V due| +Ѳ V cease|ͣ,content=produce| +ѳ V leave|뿪 +ѷ N disease| +Ѹ V disease| +Ѹ V succeed|ɹ +ѹ V disconnect| +ѹ V separate|,partner=facilities|ʩ +ѻ V BeIndependent|,partner=computer| +ѽ V lose|ʧȥ,possession=material| +ѽ V separate|,patient=material| +ѽ V separate| +Ѿ N disease| +ѿ V separate| +ѿڶ V speak|˵,manner=sudden| + V disconnect| +Ӵ V disconnect| +Σ ADJ aValue|ֵ,circumstances|,safe|,desired| + V separate|,patient=crop|ׯ,agricultural|ũ + N machine|,*separate|,#crop|ׯ,agricultural|ũ + V remove|,patient=material|,industrial| +© V disappear|ʧ + V fall| +ä V study|ѧ,content=character| +ë V lose|ʧȥ,possession=hair|ë +ë V remove|,patient=hair|ë +ë N medicine|ҩ,*remove|,#hair|ë +ë ADJ aValue|ֵ,property|,remove|,#hair|ë +ñ V StripOff|ȥ,patient=clothing| +ƶ V disconnect|,partner=poor| +ƶ¸ V become|Ϊ,isa=rich| + V due| + V remove|,patient=gas|,industrial| +ɫ V AlterColor|ɫ +ɫ V AppearanceChange|۱,scope=color|ɫ + V leave|뿪 + V fall| + V fulfil|ʵ + V sell| +ˮ V disease| +ˮ V remove|,patient=liquid|Һ +ˮ V remove|,patient=liquid|Һ,industrial| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +̥ V forming|γ +̥ V amend| + V flee| +λ N disease| + V escape|,cause=dangerous|Σ + V disappear|ʧ,#sell|,commercial| + V remove|,patient=chemical|ѧ + V remove|,patient=gas|,industrial| +Ǻ N part|,%animate| +ӱ V appear| + V lose|ʧȥ,possession=hair|ë +֬ V remove|,patient=material|,industrial| + N bird|,^fly| + N bird|,^fly| + N regulation|,politics| + N character|,(China|й) + N tool|þ,*recreation| + V CarryOnBack| + N livestock| + N inanimate|,commercial| + N beast| + V disable|м,partof=body| +ձ V disable|м,partof=body| +ձ N human|,undesired|ݬ,*disable|м +շ N part|,%livestock| +¹ N beast| + N material|,?clothing|,?tool|þ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N human|,undesired|ݬ,*disable|м + N character|,(China|й) +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +׵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Э V coordinate|Э + V CauseToGrow|ʹɳ + N character|,surname|,human|,ProperName|ר + V produce| +ذ N character|,surname|,human|,ProperName|ר +ػ V engage|,agricultural|ũ +ػ N human|,*start|ʼ +ؿ V enlarge| + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +չ V enlarge| + N part|,%AnimalHuman|,liquid|Һ + V vomit|³ + V ExpressAgainst|Ǵ +ĭ N part|,%AnimalHuman|,liquid|Һ + V abandon| +Һ N part|,%AnimalHuman|,liquid|Һ + V dig|ھ +ڳ V dig|ھ +ھ V dig|ھ +ھ N machine|,*dig|ھ +ھDZ V use|,patient=strength| +ڿ˼ V think|˼ +ڿ V satirize| +DZ V use|,patient=strength| +ǽ V MakeTrouble| + ECHO sound| + N beast| + N human|,military| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,form|״,dented| +ݵ N land|½ + ADJ aValue|ֵ,form|״,dented| + N human|,young| + N livestock|,young| + N human|,young| + N fish| + N human|,employee|Ա,young| + N human|,young| + N livestock|,young| + N material|,?building| + CLAS unit|λ,&electricity| +ߵ N tool|þ,*build| +߶ N place|ط,capital|,ProperName|ר,(Liechtenstein|֧ʿ) +߷ N house| +߹ N affairs|,#build| +߹ N human|,#occupation|ְλ,*build|,industrial| +߼ӶŹ N place|ط,capital|,ProperName|ר,(the Upper Volta|ֶ) +߽ N human|,#occupation|ְλ,*build|,industrial| +߽ V destroy| +߽ V end|ս +߽ V perish| + N place|ط,capital|,ProperName|ר,(Malta|) +ֽ N material| + N stone|ʯ +¢ N part|,%building|,skin|Ƥ +¢ N fish| +˹ N material|,gas|,*burn| + CLAS unit|λ,&electricity| + N clothing|,#foot| + N tool|þ,linear|,*fasten|˩ + N clothing|,#foot| +Ͳ N part|,%clothing|,#foot| + N clothing|,#foot| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,form|״,slanted| + N attribute|,SocialMode|,bad|,&human|,&organization|֯ +а N attribute|,SocialMode|,bad|,&human|,&organization|֯ + V alter|ı,StateIni=true|,StateFin=fake|α +ŤŤ ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,kind|,other| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| +װ N tool|þ,*wrap| + N money|,foreign| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| + N place|ط + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + N human|,foreign|,*visit| +Ⲻ N place|ط,city|,other| +ⲿ ADJ aValue|ֵ,location|λ,external| +ⲿ N location|λ,external| +ⲿ N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,location|λ,external| + N part|,%entity|ʵ +ռ N celestial| +ⳤ N human|,#occupation|ְλ,official|,diplomatic|⽻ + V GoOut|ȥ +⴫ V disseminate| +⴫ N readings| + N part|,%computer| + N part|,%LandVehicle|,leg| + N human|,enemy|,foreign| + N place|ط,other| + N human| + N news| + V transport| + N part|,%AnimalHuman|,*listen| + N disease| +ⷽ N human|,foreign| + V apply|ͿĨ + N facilities|ʩ,#ship|,*stay|ͣ +⹫ N human|,family|,male| +⹺ V buy|,source=foreign| + N attribute|,appearance|,&physical| +۱ V AppearanceChange|۱ + ADJ aValue|ֵ,attachment|,external|,country| + N place|ط,country| + N human|,foreign| + N language|,foreign| +Ƥ N part|,%plant|ֲ,embryo| + N attribute|,name|,&entity|ʵ +⻼ N phenomena|,undesired|ݬ + N money|,foreign| +㴢 N fund|ʽ +Ƽ N quantity|,rate|,&money|,commercial| + N artifact|˹,commercial|,foreign|,generic|ͳ +⼮ N attribute|,attachment|,foreign|,&human| + V add| + ADJ qValue|ֵ,amount|,many| + N community| + N place|ط + N room|,%house| +⽻ ADJ aValue|ֵ,attachment|,diplomatic|⽻ +⽻ N institution|,diplomatic|⽻,ProperName|ר,politics| +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,official|,diplomatic|⽻ +⽻ N attribute|,behavior|ֹ,&human|,#diplomatic|⽻ +⽻ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ʹ N community|,official|,diplomatic|⽻ + N image|ͼ,angular| +Բ N image|ͼ + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external|,space|ռ + N place|ط +⾭ó N institution|,*cooperate|,#commercial|,ProperName|ר,politics| +⾰ N scene|,#TakePicture| +⾰ N scene|,#perform| +⾰ N scene|,external| + N army|,foreign| +⿯ N publications|鿯,foreign| + N knowledge|֪ʶ,medical|ҽ + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ + N part|,%physical|,skin|Ƥ + N wealth|Ǯ,$earn|׬ + ADJ aValue|ֵ,source|Դ,foreign| + N human| + N attribute|,strength|,&human|,&organization|֯ + N attribute|,strength|,&inanimate| + V GoOut|ȥ,commercial| +¶ V exposure|¶ + N ship|,foreign| +ò N attribute|,appearance|,&human| +ò N attribute|,appearance|,&physical| +ó N affairs|,commercial|,#country| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ƥ N part|,external| + N human|,family|,female|Ů + N human|,family|,#royal| + N InstitutePlace|,commercial|,industrial| +Ǩ V SelfMove| +ǿи ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + N human|,#space|ռ,foreign| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N human|,#space|ռ,foreign| + N human|,*RelateNot|޹ + N disease|,wounded| + N human|,commercial| + N human|,family|,male| +Ů N human|,family|,female|Ů +ʡ N place|ط,other| + N affairs|,diplomatic|⽻ + N location|λ + N human|,family|,male| +Ů N human|,family|,female|Ů +̥ N part|,%LandVehicle|,leg| + V flee|,LocationFin=foreign| + V flee|,LocationFin=other| + N clothing| + N clothing|,$PutOn| + N part|,%AnimalHuman|,*listen| +ͷ ADJ aValue|ֵ,source|Դ,foreign| +ͷ N location|λ,external| +Χ ADJ aValue|ֵ,location|λ,external| +Χ N part|,%inanimate|,%space|ռ,edge| + N language|,foreign| + N affairs| + N affairs|,#country| + N facilities|ʩ,linear| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N place|ط + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,property|,$transport|,#foreign| + V sell| + N aspiration|Ը,expect|,undesired|ݬ + N image|ͼ,dot| + N humanized| + N attribute|,form|״,&physical| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,undesired|ݬ,unable|ӹ + N information|Ϣ + N fire| + N attribute|,appearance|,&physical| + N attribute|,attire|װ,&physical| + N clothing|,#body| + V MoveItOut| + N cause|ԭ + V use| + N language|,foreign| +Ԯ V help|,source=foreign| + ADJ aValue|ֵ,location|λ,external| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,foreign| + N clothing| + N fund|ʽ +ҵ N InstitutePlace|,commercial|,industrial| + N human|,#space|ռ,foreign| +游 N human|,family|,male| +ĸ N human|,family|,female|Ů +㶹 N part|,%vegetable|߲,embryo|,$eat| +㶹 N vegetable|߲ +㶹 N food|ʳƷ + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N place|ط,curved| + N facilities|ʩ,route|·,curved| +· N facilities|ʩ,route|·,curved| +· N method|,wrong| +· N method|,wrong| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + N place|ط,curved| + N part|,%waters|ˮ,curved| + V WhileAway| + V despise| + V enjoy| + V WhileAway| + V despise| + V enjoy| +ת V BeUnable| + V MakeTrouble| + V venture|ð + V end|ս + V despise| +ְ V despise|,target=duty| + V venture|ð +Է V perish| + N tool|þ,*recreation|,generic|ͳ + V WhileAway| + V venture|ð +Ū V SeekPleasure|Ѱ +ż N tool|þ,*recreation| + V enjoy| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ˣ V WhileAway| +ζ V think|˼ + N tool|þ,*recreation|,generic|ͳ +Ц N fact|,tease|ȡ + N entity|ʵ,generic|ͳ + N tool|þ,*recreation|,generic|ͳ + ADJ aValue|ֵ,behavior|ֹ,mischievous| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +繣 ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +̷ N human|,stubborn|,undesired|ݬ + N human|,stubborn|,undesired|ݬ +缲 N disease|,stubborn| +翹 V resist|,manner=stubborn| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯͷ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ͯ N human|,young|,mischievous| +֢ N disease|,stubborn| + N medicine|ҩ + N shape|,round|Բ + N medicine|ҩ +ҩ N medicine|ҩ + N food|ʳƷ + N shape|,round|Բ + N chemical|ѧ + N chemical|ѧ + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V disappear|ʧ + V finish| + V pay| +걸 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V finish| + V fulfil|ʵ +군 V fail|ʧ + V fulfil|ʵ,patient=text| +깤 V fulfil|ʵ,patient=fact| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V GetMarried| + V finish| +꿢 V finish| + V finish| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| +ȱ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȫ ADV aValue|ֵ,degree|̶,extreme| +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +ȫҪ ADJ aValue|ֵ,importance|,secondary| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N human|,desired|,great|ΰ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V finish| +˰ V pay|,possession=expenditure| +ȫȫ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + N attribute|,wholeness|ȱ,&physical| + N tool|þ,cubic|,@put|,#food|ʳƷ + N furniture|Ҿ,cubic|,@put|,#tool|þ + N furniture|Ҿ,cubic|,@put|,#tool|þ +ܹ N furniture|Ҿ,cubic|,@put|,#tool|þ + V coil| + V condole|° + V pull| + N music|,*condole|° + V TakeBack|ȡ + V rescue| + N text|,*condole|° + V detain|ס +ʫ N music|,*condole|° + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + N time|ʱ,day|,night| + EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,night| + N publications|鿯 + ADJ aValue|ֵ,clan| + N human|,clan| + N fact|,eat|,night| + N LandVehicle|,#night| + N crop|ׯ + V due| + N fact|,eat|,night| + N wind|,night| + N fact|,*recreation| + V GetMarried|,manner=late| + N time|ʱ,day|,night| + ADJ aValue|ֵ,age|,aged| + N time|ʱ,#aged| + N human|,family|,female|Ů + ADJ aValue|ֵ,time|ʱ + N time|ʱ,ending|ĩ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,autumn|,ending|ĩ + N time|ʱ,day|,night| + ADJ aValue|ֵ,physique|,ripe|,late|,agricultural|ũ +˪ N RainSnow|ѩ +ϼ N CloudMist| + N FlowerGrass| + N fact|,eat|,entertain|д + V GiveBirth|,late| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sorry|ϧ +ϧ V sorry|ϧ + ADJ aValue|ֵ,form|״,curved| + CONJ {contrast} + PREP {contrast} + CONJ {contrast} + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,tactful| + V refuse|,manner=tactful| + N text|,tactful| + ADJ aValue|ֵ,behavior|ֹ,tactful| +Ȱ V persuade|Ȱ˵,manner=tactful| +л V refuse|,manner=tactful| +л V reject|ؾ,manner=tactful| +Լ ADJ aValue|ֵ,behavior|ֹ,tactful| +ת ADJ aValue|ֵ,SoundQuality|,good|,desired| +ת ADJ aValue|ֵ,behavior|ֹ,tactful| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,many| + V BeUnable| +䲻 ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N location|λ + ADV aValue|ֵ,degree|̶,extreme| +֮һ NUM qValue|ֵ,amount|,few| + ADJ aValue|ֵ,duration|,TimeLong| +ų ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +Ͳ N tool|þ,*recreation| +Ͳ ADJ aValue|ֵ,kind|,many| +ҵƻ N lights| + N human|,unable|ӹ,undesired|ݬ + N medicine|ҩ +ﳤ N facilities|ʩ,ProperName|ר,(China|й) +¡ N place|ط,city|,ProperName|ר,(Indonesia|ӡ) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ ADJ qValue|ֵ,amount|,many| +ȫ ADJ aValue|ֵ,effect|Ч,superior|,desired| +˿ ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + N event|¼,all|ȫ +´ V lucky| +ºͨ V lucky| + V lucky| +ͨ N human|,able| +ͨ N human|,able|,desired| +޽ ADJ aValue|ֵ,duration|,TimeLong| +ˮǧɽ ADJ aValue|ֵ,distance|,far|Զ + N human|,royal| + ADV aValue|ֵ,degree|̶,extreme| + ADV {neg|} +û ADV {neg|} +ά N facilities|ʩ,#software|,@disseminate|,@communicate|,#information|Ϣ +һʧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + N entity|ʵ + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,capital|,ProperName|ר,(Laos|) + V lucky| +һ N attribute|,circumstances|,dangerous|Σ,undesired|ݬ,&situation|״ +һ NUM qValue|ֵ,amount|,few| +һ ADJ qValue|ֵ,amount|,few| +һ CONJ {condition|} +Ӧ鵤 N medicine|ҩ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,height|߶,tall| + N human|,mass| +һ V ally| +ǧ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N part|,%AnimalHuman|,arm| + N attribute|,strength|,&part|,#AnimalHuman|,#arm| + N part|,%AnimalHuman|,arm| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,area|,wide| + N waters|ˮ,surfacial| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,royal| + N fish| + N human|,male|,undesired|ݬ +˵ EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ +˵ N human|,evil|,undesired|ݬ +˵ N human|,undesired|ݬ + N institution|,royal| + N time|ʱ,#royal| + N human|,royal| + N regulation|,*manage|,#country| + N house|,royal| + N human|,royal| + N house|,royal| + N clothing|,#head|ͷ,royal| + N place|ط,country| + N place|ط,country|,royal| + N human|,royal| + N human|,royal|,female|Ů + N food|ʳƷ,*cure|ҽ + N tool|þ,strong|ǿ,desired|,*win|ʤ +Ȩ N attribute|,power|,royal|,&country| + N human|,royal|,family| + N institution|,royal| + N human|,royal| +λ N attribute|,status|,royal|,&country| + N human|,royal|,male| + N human|,royal|,female|Ů + V defeat|սʤ + V die| + V disappear|ʧ + V flee| + V lose|ʧȥ + V perish| + V die| + V perish| +ū N human|,*lose|ʧȥ,#country| + N humanized|,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + V flee| +ͽ N human|,fierce|,crime|,undesired|ݬ + V rescue| + V IllTreat| + ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + V lavish|˷ +Ļ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ȼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V catch|׽ס + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| + N shape| + N tool|þ,*catch|׽ס,#AnimalHuman| + N InstitutePlace|,commercial|,*sell|,@buy| + N tool|þ,cubic|,@put| +һ ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + N tool|þ,cubic|,@put| +· N facilities|ʩ,#disseminate|,#communicate|,#transport| +· N internet| + V include| + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| +ṩ N InstitutePlace|,*provide|,#internet| +ṩ N InstitutePlace|,*provide|,#internet| + N human|,#internet| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,@exercise|,#(tennis|) + N SportTool|˶,#(tennis|) +Ȧ N community|,sport| + N location|λ,%internet| +̳ N community|,sport| + N shape| +״ ADJ aValue|ֵ,form|״ + V LeaveFor|ǰ + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADV aValue|ֵ,frequency|Ƶ,regular|,past| + ADV aValue|ֵ,direction|,external| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| +Ʊ N bill|Ʊ,#wealth|Ǯ,*TakeVehicle|,#aircraft|,ToAndFro| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| + N time|ʱ,future| + V associate| + V ToAndFro| + V associate| + N time|ʱ,past| + N time|ʱ,year|,past| + N time|ʱ,day|,past| + N fact|,past| + ADV aValue|ֵ,frequency|Ƶ,often| + N time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N fire|,strong|ǿ + N time|ʱ,season|,busy|æ,#commercial|,#agricultural|ũ +ʢ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N time|ʱ,month|,busy|æ,#commercial| + N attribute|,reputation|,&human|,&organization|֯ + N celestial| + V expect| + V look| + N time|ʱ,day| + V visit| + N material|,wood|ľ,*build| +Ī V inferior| +ȴ V GoBackward| +η V fear| + V check| + V flee| + V flee| + V perception|֪,means=look| +¥ N facilities|ʩ,@look|,@check| +÷ֹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N engage|,content=affairs|,religion|ڽ +ȥ V look| + N time|ʱ,day| + V look| + V expect| +̾ V BeUnable| +Զ N tool|þ,*look|,#far|Զ + N celestial| +ӳ V expect|,content=succeed|ɹ + V forget| + V forget| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V satisfied| + V forget| + V forget| +꽻 N attribute|,relatedness|,intimate|,&human| +꽻 N human|,friend|,intimate|,desired| + V aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V indulge| +ȴ V forget| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ӳ² V guess|²,manner=rash|ç +ָ V estimate|,manner=rash|ç + N human|,greedy|̰ + N human|,unable|ӹ,undesired|ݬ +ͼ V lavish|˷ + N thought|ͷ,empty|,undesired|ݬ +ԷƱ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce| + N attribute|,strength|,&human|,&organization|֯ + V force|ǿ +ʿ N place|ط,ProperName|ר +ʿ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N attribute|,strength|,&human|,&organization|֯ +˹ N place|ط,city|,ProperName|ר,(Italy|) +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + V frighten|Ż +ʿ N drinks|Ʒ,$addict|Ⱥ +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N attribute|,power|,&human|,&organization|֯,&information|Ϣ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V frighten|Ż +в V frighten|Ż + N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ɨ V unfortunate|,scope=disgraced| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +Ρ ADJ aValue|ֵ,height|߶,tall| +Ρ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ΡȻ V stand|վ,manner=durable| +ΡΡ ADJ aValue|ֵ,height|߶,tall| +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +΢ ADJ aValue|ֵ,quality|,small|С +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ ADJ aValue|ֵ,color|ɫ,white|,light| +΢ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +΢ N shape| +΢¯ N tool|þ,cubic|,@cook| +΢ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N part|,%computer| +΢ N part|,%computer| +΢ N text|,*ExpressDissatisfaction|ʾ +΢һɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| +΢ N computer| +΢ N part|,%physical| +΢ N image|ͼ,$carve| +΢ V adjust| +΢ N knowledge|֪ʶ +΢ N wind|,weak| +΢ ADJ aValue|ֵ,attachment| +΢ N lights| +΢΢ ADJ qValue|ֵ,amount|,few| +΢ N fire|,weak| +΢ N computer| +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +΢ ADJ aValue|ֵ,temperature|¶,chilly| +΢ N fund|ʽ,$earn|׬,commercial| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ N part|,%physical| +΢ N shape|,small|С +΢ ADJ aValue|ֵ,kind| +΢Ԫ N part|,%physical| +΢ã ADJ aValue|ֵ,clearness|,blurred| +΢ N unit|λ,&length| +΢ N unit|λ,&time|ʱ +΢ ADJ aValue|ֵ,content|,refined| +΢ĩ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N InstitutePlace|,#software|,commercial| +΢˾ N InstitutePlace|,#software|,commercial| +΢ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +΢ N character|,surname|,human|,ProperName|ר +΢ N bacteria|΢,generic|ͳ +΢ ADJ aValue|ֵ,taste|ζ,sour|,ish| +΢΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢΢ ADV aValue|ֵ,behavior|ֹ,gentle| +΢ϸ ADJ aValue|ֵ,size|ߴ,small|С +΢С ADJ aValue|ֵ,size|ߴ,small|С +΢Ц V laugh|Ц,manner=gentle| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ͻ N computer| +΢Ѫ N part|,%AnimalHuman|,nerve| +΢Դ ADJ aValue|ֵ,content|,profound|,desired| +Σ N character|,surname|,human|,ProperName|ר +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,capital|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,country|,ProperName|ר,(South America|) +Σ N human|,(Guatemala|Σ) +Σ N building|,dangerous|Σ +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σķ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V damage| +Σ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ +Σ V frighten|Ż +ΣڵϦ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V ill|̬,manner=dangerous|Σ +Σ V ill|̬,dangerous|Σ +Τ N character|,surname|,human|,ProperName|ר +Τ N material|,?clothing|,?tool|þ +Υ V FitNot| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=law|ɷ +ΥҼ V disobey|Υ,content=law|ɷ +ΥΪ N fact|,act|ж,crime|,#police| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ +Υ V disobey|Υ +Υ V err|,sport| +Υ V delay| +Υ V disobey|Υ,content=law|ɷ +Υ V disobey|Υ,content=willing|Ը +ΥԼ V disobey|Υ,content=MakeAppointment|Լ +Υ V disobey|Υ,content=system|ƶ +Υ V disobey|Υ +Φ N part|,%ship| +Φ N tool|þ,#ship|,*illuminate| +Φ N part|,%ship| +Χ V surround|Χ +Χ N clothing|,#head|ͷ +Χ N place|ط,@catch|׽ס,#beast|,agricultural|ũ +Χ V surround|Χ,content=city| +ΧǴԮ V attack|,military| +Χ V attack|,means=surround|Χ,military| +Χ V look| +Χ V protect| +Χ V attack|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ N clothing|,#head|ͷ +Χ V block|ס,means=surround|Χ,military| +Χ N facilities|ʩ,space|ռ,@foster|,#livestock| +Χ£ V ComeTogether| +Χ N furniture|Ҿ,*decorate|װ,*cover|ڸ +Χ N SportTool|˶,*recreation| +Χǽ N part|,%building|,skin|Ƥ +Χȹ N clothing|,#leg|,#cook| +Χ V GoRound|Χ +Χ V surround|Χ +Χ N tool|þ,*catch|׽ס,#fish| +Χκ V help| +Χ N facilities|ʩ,#water|ˮ,space|ռ +Χ V sit| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ V fear| +Ψ² V expect|,content=unfortunate| +Ψͼ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ΨΨŵŵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ΨҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ψ֤ N thinking|˼ +Ψ N thinking|˼ +Ψʷ N knowledge|֪ʶ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψһ ADJ aValue|ֵ,kind|,single| +Ψһ ADJ aValue|ֵ,kind|,special| +Ψ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ω COOR {but|} +Ω ADJ aValue|ֵ,kind|,single| +ΩҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ωһ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ϊ V become|Ϊ +Ϊ V be| +Ϊ V do| +Ϊ V mean|ָ +Ϊ PREP {beneficiary} +Ϊ PREP {cause} +Ϊ PREP {purpose} +Ϊ... V mobilize| +Ϊ... V remove|,patient=bacteria|΢ +Ϊ...ϴ V wash|ϴ,religion|ڽ +Ϊ CONJ {cause|ԭ} +Ϊ V do|,content=crime|,crime| +Ϊ V damage| +Ϊ ADV reason|,question| +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V MakeTrouble| +Ϊ V seek|ıȡ,possession=pros| +Ϊ PREP {purpose} +Ϊ CONJ {purpose} +Ϊ PREP {purpose} +Ϊ V seek|ıȡ,possession=glorious| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ +Ϊ V be|,isa=time|ʱ +ΪڲԶ ADJ aValue|ֵ,duration|,TimeShort| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ˴ N attribute|,behavior|ֹ,&human| +Ϊ V do|,beneficiary=human| +Ϊʦ V worth|ֵ,content=example|ʵ +Ϊ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ϊɶ ADV reason|,question| +Ϊ V MakeLiving|ı +Ϊʱ V be|,isa=time|ʱ +Ϊʱ ADJ aValue|ֵ,earliness|,early|,over| +Ϊʲô ADV {cause|ԭ,question|} +Ϊ V be|,descriptive=official| +Ϊ V AmountTo|ܼ +Ϊ ADJ qValue|ֵ,amount|,few| +Ϊ ADJ qValue|ֵ,amount|,many| +Ϊڶ ADJ qValue|ֵ,amount|,many| +ΪΪ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ϊ V associate| +Ϊ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +Ϊ֮ PP {cause} +Ϊֹ PREP {TimeFin} +Ϋ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ϋ N place|ط,city|,ProperName|ר,(China|й) +ά V connect| +ά V keep| +ά V protect| +ά V keep| +ά N place|ط,capital|,ProperName|ר,(Seychelles|) +ά V endorse|ӵ +ά V protect| +ά N human|,*protect| +ά N material| +άάФ V BeSimilar| +άάФ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +ά N medicine|ҩ,*improve| +άA N medicine|ҩ,*improve| +άB N medicine|ҩ,*improve| +άC N medicine|ҩ,*improve| +άD N medicine|ҩ,*improve| +ά N community|,ProperName|ר,(China|й) +ά N community|,ProperName|ר,(China|й) +άϵ V connect| +άϵ V keep| +ά V improve| +ά V repair| +ά޹ N human|,#occupation|ְλ,*repair| +άҲ N place|ط,capital|,ProperName|ר,(Austria|µ) +έ N FlowerGrass|,?material| +έ N waters|ˮ,#FlowerGrass| +έϯ N tool|þ,@LieDown| +έ N FlowerGrass|,?material| +ή V decline|˥ +ή V decline|˥,agricultural|ũ +ή N disease| +ή V decline|˥,agricultural|ũ +ή V decline|˥ +ή V decline|˥,commercial| +ή V decline|˥,medical|ҽ +ήл V decline|˥ +ήл V decline|˥,agricultural|ũ +ί V CauseToBe|ʹ֮ +ί V TakeAway|ᶯ +ί V entrust|ί +ί V refuse| +ί V tired|ƣ +ί V disheartened| +ί ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Venezuela|ί) +ί N place|ط,country|,ProperName|ר,(South America|) +ί N human|,(Venezuela|ί) +ί V employ| +ί ADJ aValue|ֵ,form|״,curved| +ί N part|,%event|¼ +ίȫ V surrender| +ί V IllTreat| +ί V unsatisfied| +ί V CauseToBe|ʹ֮ +ί N human|,*CauseToBe|ʹ֮ +ίʵ ADV aValue|ֵ,trueness|α,true|,desired| +ί ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ί ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ί V entrust|ί +ίд N human|,*help| +ί N human|,*entrust|ί +ί N document|,*entrust|ί +ί ADJ aValue|ֵ,behavior|ֹ,tactful| +ί V CauseToBe|ʹ֮ +ίԱ N human|,official| +ίԱ N human|,official|,politics| +ίԱ N institution| +ί V IllTreat| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰĴ N affairs|,new|,special|,great|ΰ +ΰ N result|,desired|,#succeed|ɹ +ΰ N attribute|,strength|,strong|ǿ,&entity|ʵ +ΰ N human|,great|ΰ +ΰҵ N affairs|,great|ΰ +ΰҵ N result|,desired|,#succeed|ɹ +α ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α N money|,fake|α +α N money|,undesired|ݬ +α N money|,fake|α +α N army|,undesired|ݬ +α N human|,undesired|ݬ,fake|α +α ADJ aValue|ֵ,quality|,fake|α,undesired|ݬ +α V forge|α +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α V forge|α +αȨ N institution|,undesired|ݬ +α֤ N information|Ϣ,*prove|֤,fake|α,#police| +αװ V cover|ڸ +αװ V cover|ڸ,military| +αװ N method|,&physical|,fake|α,*deceive|ƭ +αװ V pretend|װ +αװ N tool|þ,&physical|,fake|α,*deceive|ƭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical|,*surplus|ʣ +β N part|,%time|ʱ,ending|ĩ +β N human|,*obey|ѭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical| +β N part|,%physical|,tail|β +β N part|,%physical|,tail|β +β N part|,%vehicle|ͨ,*illuminate| +β N InstitutePlace|,mine| +β N gas|,#vehicle|ͨ +β N part|,%event|¼,tail|β +β N part|,music|,ending|ĩ +β N process|,ending|ĩ +β N quantity|,amount|,&inanimate| +β V follow| +β׷ V chase|׷ +β N quantity|,amount|,&inanimate| +β N InsectWorm| +β N part|,%animal|,tail|β +γ N attribute|,distance|,&earth| +γ N attribute|,distance|,&earth| +γ N part|,%clothing|,nerve| +γ N part|,%earth|,nerve| +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,property|,^$provide|,#fund|ʽ +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,property|,^$defeat|սʤ +δ ADJ aValue|ֵ,property|,^$sense|о +δ֪ ADJ aValue|ֵ,property|,^$tell| +δ ADJ aValue|ֵ,property|,^$sense|о +δ ADJ aValue|ֵ,property|,^$block|ס +δ ADJ aValue|ֵ,property|,^$GetKnowledge|֪ +δȾ ADJ aValue|ֵ,property|,^$pollute|ʹ +δ֤ ADJ aValue|ֵ,property|,^$prove|֤ +δ ADV {comment|,neg|} +δ ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +δ֪ V predict|Ԥ +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,age|,young| +δ ADJ aValue|ֵ,physique|,unripe| +δ ADJ aValue|ֵ,property|,^$forming|γ +δ ADJ aValue|ֵ,property|,^$handle| +δ ADJ aValue|ֵ,property|,^$refine| +δû ADJ aValue|ֵ,property|,^$weaken| +δ¼ ADJ aValue|ֵ,property|,^$record|¼ +δȼ ADJ aValue|ֵ,property|,^$lighting|ȼ +δ V unfixed|δ +δ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$publish| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δѡ ADJ aValue|ֵ,property|,^$classify| +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +δͽ ADJ aValue|ֵ,property|,^reconcile| +δ ADJ aValue|ֵ,property|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ N human|,male|,friend|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ ADV aValue|ֵ,earliness|,late| +δ ADJ aValue|ֵ,property|,^$build| +δ¶ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +δ༭ ADJ aValue|ֵ,property|,^$compile|༭ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$request|Ҫ +δ ADJ aValue|ֵ,property|,^$check| +δ˼ ADJ aValue|ֵ,property|,^$think|˼ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$announce| +δҪ ADJ aValue|ֵ,property|,^$request|Ҫ +δ V unfixed|δ +δ V unfixed|δ +δ N human|,crime|,*wait|ȴ,#judge|ö +δ ADJ aValue|ֵ,property|,^$cultivate| +δɺ ADJ aValue|ֵ,standard|׼,average|,desired| +δ ADJ aValue|ֵ,time|ʱ,future| +δ N attribute|,outlook|ǰ,&thing| +δ N time|ʱ,future| +δѧ N knowledge|֪ʶ,#time|ʱ,future| +δ˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +δ ADJ aValue|ֵ,property|,^finish| +δ CONJ {comment|} +δмƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +δĿ¼ ADJ aValue|ֵ,property|,^$classify| +δ ADV aValue|ֵ,degree|̶,ish| +δ׼ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ +δȷ ADJ aValue|ֵ,property|,^$decide| +δȷ֤ ADJ aValue|ֵ,property|,^$decide| +δʱ N time|ʱ,hour|ʱ +δܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +δܾ ADJ aValue|ֵ,property|,^$persuade|Ȱ˵ +δܿ ADJ aValue|ֵ,property|,^$control| +δʶ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^wounded| +δ˵ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$fulfil|ʵ +δ ADJ aValue|ֵ,property|,^finish| +δ ADJ aValue|ֵ,property|,^$consume|ȡ +δ޸ ADJ aValue|ֵ,property|,^$amend| +δڱ ADJ aValue|ֵ,ability|,unable|ӹ,$hide| +δ V prepare|׼ +δԤ ADJ aValue|ֵ,property|,^$predict|Ԥ +δ ADV {neg|,past|} +δ֪ ADJ aValue|ֵ,property|,^$know|֪ +δ֪ N symbol|,#quantity|,^$know|֪ +ε ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ε N character|,surname|,human|,ProperName|ר +ε ADJ aValue|ֵ,color|ɫ,blue| +εȻɷ V prosper| +εΪ V show|,content=exuberant|ï +ζ N attribute|,odor|ζ,&physical| +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion|,FondOf|ϲ +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion| +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N material|,?food|ʳƷ +ζ N experience|,#taste|ζ +η V fear| +η V respect| +η V escape|,ResultEvent=fear| +η V fear| +η N emotion|,fear| +η V fear| +η V fear|,cause=hardship| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ηηβ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V PartSelfMove| +η; N phenomena|,dangerous|Σ,#unfortunate|,undesired|ݬ +η N human|,friend| +η V fear|,cause=crime|,crime| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V fear| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N disease| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N tool|þ,medical|ҽ +θ N aspiration|Ը,expect|,#consume|ȡ +θ N disease| +θ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,nerve| +θ N disease| +θҺ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,viscera| +ι V feed|ι +ι V feed|ι,patient=drinks|Ʒ +ιʳ V feed|ι +ι V feed|ι +ι V foster|,agricultural|ũ +κ N character|,surname|,human|,ProperName|ר +λ CLAS NounUnit|,&human| +λ N attribute|,occupation|ְλ,&human|,royal| +λ N location|λ +λ N mark|־,#arithmetic|ϵ +λ V undertake| +λӰ V succeed|ɹ,scope=compete| +λ V SelfMoveInDirection| +λ V situated| +λ ADJ aValue|ֵ,location|λ,beneath| +λ N location|λ +λ N location|λ +μ N waters|ˮ,linear|,ProperName|ר,(China|й) +ν V naming| +ν V speak|˵ +ν N part|,%language| +ξ N character|,surname|,human|,ProperName|ר +ξ N character|,surname|,human|,ProperName|ר +ξ N human|,#occupation|ְλ,official|,military| +ο V AtEase| +ο V soothe|ο +ο V soothe|ο +ο V soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο ADJ aValue|ֵ,property|,soothe|ο +ο V SayHello|ʺ + N character|,surname|,human|,ProperName|ר + V defend| + N human|,military|,*protect| + N community|,*protect| + V protect|,patient=country| + V defend| + V protect|,patient=status| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,cleanness|ྻ,spotless|,&physical|,&space|ռ,&organization|֯ + N institution|,#medical|ҽ,ProperName|ר,politics| + N room|,@excrete|й + N paper|ֽ,*wipe| + N tool|þ,*obstruct|ֹ,InsectWorm| +Ա N human|,#occupation|ְλ,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ѧ N human|,#knowledge|֪ʶ,medical|ҽ +Ա N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ֽ N paper|ֽ,*wipe| +֯ N part|,%institution|,#medical|ҽ,ProperName|ר,(institution|=UN|Ϲ) +ʿ N human|,*protect| + V defend|,military| + N army| + N place|ط,military|,$defend| + N aircraft| + N celestial| +dz N place|ط,city| + N disease| + N disease| + V WarmUp| + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,temperature|¶,&physical| + N character|,surname|,human|,ProperName|ר + V drill|ϰ +± N attribute|,circumstances|,alive|,&human| +² N attribute|,similarity|ͬ,temperature|¶ +´ N facilities|ʩ,@planting|ֲ +´ N place|ط,@ExistAppear|,@grow|ɳ +´ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +´ N part|,%earth|,warm| +µúͿ N place|ط,capital|,ProperName|ר,(Namibia|ױ) +¶ N attribute|,temperature|¶,&physical| +¶ȱ N tool|þ,*measure|,#temperature|¶ +¶ȼ N tool|þ,*measure|,#temperature|¶ +¸绪 N place|ط,city|,ProperName|ר,(Canada|ô) +º ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +º ADJ aValue|ֵ,temperature|¶,warm| +º ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ȫ N waters|ˮ,surfacial| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N facilities|ʩ,@planting|ֲ +ЧӦ N phenomena|,#weather| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ķ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ϰ V drill|ϰ +Ѫ N AnimalHuman|,generic|ͳ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N place|ط,city|,ProperName|ר,(China|й) +ܰ ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,temperature|¶,warm| + N InsectWorm|,undesired|ݬ,#disease| +ó N InsectWorm|,undesired|ݬ,#disease| + N tool|þ,$burn|,*expel|,#InsectWorm| + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N InsectWorm|,undesired|ݬ,#disease| + ADJ aValue|ֵ,attachment| + N character| + N character|,surname|,human|,ProperName|ר + N language| + N text| +ı N text| +ı N attribute|,style|,&text| +IJ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +IJӵ ADJ aValue|ֵ,quality|,refined|,desired| +IJ N attribute|,ability|,&compile|༭ +IJ N attribute|,ability|,&compile|༭ +ij N human|,undesired|ݬ,*copy|д,*steal|͵ +Ĵ˳ ADJ aValue|ֵ,content|,fluent|,desired| +ĵ N fruit|ˮ +ķ N knowledge|֪ʶ,#language| +ķı N stationery|ľ,generic|ͳ +ķ N attribute|,style|,&text| +ĸ N readings|,#text| +ĸ N text| +ĸ N text|,*announce| +ĸ N text|,*tell| +ĸ N fact|,ProperName|ר,(China|й) +ĸ N fish| +Ĺ N community|,*perform|,entertainment| +Ĺ N human|,#occupation|ְλ,official| +Ĺη V HideTruth| +ĺ N human|,literature|,able|,desired| +Ļ ADJ aValue|ֵ,attachment|,literature| +Ļ N knowledge|֪ʶ +Ļ N mental| +Ļ N institution|,#knowledge|֪ʶ,ProperName|ר,politics| +Ļ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fact|,ProperName|ר,(China|й) +Ļ N InstitutePlace|,@recreation| +Ļ N InstitutePlace|,@recreation| +Ļ N affairs|,literature|,entertainment|,education| +Ļҵ N affairs|,literature|,entertainment|,education| +Ļˮƽ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +Ļ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +ĻŲ N mental| +ĻƷ N stationery|ľ,generic|ͳ +Ļվ N InstitutePlace|,@recreation| +ĻרԱ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fire|,weak|,*cook| +ļ N readings| +ļ N document| +Ľ N affairs|,literature|,entertainment|,education| +ľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ľ N stationery|ľ,generic|ͳ +ľߺ N tool|þ,cubic|,@put|,#PenInk|ī +ľ N human|,#occupation|ְλ,#stationery|ľ,commercial| +Ŀ N knowledge|֪ʶ +Ŀ N readings| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Brunei|) + N place|ط,country|,ProperName|ר,(Asia|) +Ԫ N money|,(Brunei|) + N attribute|,content|,&text| +ä N human|,undesired|ݬ,foolish| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N mental| +Ź N place|ط,#human|,country|,politics| +Ʀ N human|,literature|,undesired|ݬ +ƾ N document|,*prove|֤,#status|,#study|ѧ,education| + N human|,literature| +ī N human|,literature| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʷ N knowledge|֪ʶ + N document| + N human|,#occupation|ְλ,employee|Ա +˼ N thought|ͷ,#text| +̳ N community|,literature| + N attribute|,pattern|ʽ,&text| + N attribute|,style|,&text| + N fact|,#sport|,#literature| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,attachment| + N physical| +ﱣ V protect|,patient=physical| + N readings| +ѡ N readings| +ѧ N affairs|,literature| +ѧ N human|,*compile|༭,literature| +ѧ N community|,literature| +ѧʿ N human|,literature| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N affairs|,literature|,entertainment| +ո N fact|,resume|ָ,#knowledge|֪ʶ +ս N community|,literature|,entertainment| + N human|,friend|,#literature| + N affairs|,entertainment| +Է N community|,literature| +ժ N text| + N text| +ְ N attribute|,occupation|ְλ,&human| +ְԱ N human|,#occupation|ְλ,official| +ʱ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ʱ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N character| + N text| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V perception|֪,#listen| + V smell| +ŷ V perception|֪,content=news| +ŷ V VieFor| +ŷɥ V fear| +Źϲ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N human|,desired|,glorious| +δ ADJ aValue|ֵ,kind|,queer| +Ѷ V perception|֪,content=news| + N trace| + N trace| +· N trace| +˿ ADJ aValue|ֵ,performance| + N metal|,material| + V ShowLove|ʾ,means=CausePartMove| + N fact|,ShowLove|ʾ + N part|,%AnimalHuman|,mouth| +Ǻ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADV {comment|} +Ȳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ȳʤȯ V fixed|Ѷ,content=succeed|ɹ +Ȳʤ V fixed|Ѷ,content=succeed|ɹ +Ȳ N fact|,create|,manner=steady| +Ȳ߲ N fact|,create|,manner=steady| +ȵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ȵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ȶ ADJ aValue|ֵ,circumstances|,safe|,desired| +ȶ V stabilize|ʹ +ȶ N attribute|,behavior|ֹ,steady|,&thing| +ȹ ADJ aValue|ֵ,circumstances|,safe|,desired| +Ȼ V obtain|õ,comment| +Ƚ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ ADJ aValue|ֵ,circumstances|,safe|,desired| +̬ ADJ aValue|ֵ,PhysicState|״̬,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ӯ V defeated|,comment| +Ӯ V win|ʤ,comment| +ȴ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ס V stabilize|ʹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V SayHello|ʺ + V ask| + V interrogate| +ʰ V SayHello|ʺ +ʰ V interrogate|,police| +ʳʶ V ask| +ʵä ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʺů V SayHello|ʺ +ʺ V SayHello|ʺ +ʺ N problem| +ʺ N symbol|,#ask| +ʺ V SayHello|ʺ +ʻ V ask| +ʽ V ask| + V ComeToWorld| + N phenomena|,unfortunate|,undesired|ݬ + N problem| + V FeelNoQualms| + V shy| +ѯ V ask| +Ѷ V ask| + V diagnose|,means=ask|,medical|ҽ + N sound| + N sound| + N character|,surname|,human|,ProperName|ר + N human|,aged|,male| + N human|,intimate|,male| + N tool|þ,cubic|,@put| +֮ N beast|,$catch|׽ס + N InsectWorm| +ϸ N part|,%machine| +Ͼ N house| + N part|,%machine| +ţ N InsectWorm| + N water|ˮ + N water|ˮ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N phenomena|,#weather| + ADJ aValue|ֵ,form|״,curved| + V bend| + V hide| + N house|,#animal|,#alive| + N location|λ + N part|,%human| + N place|ط,crime| +Ѳ V hide| +ѵ N place|ط,crime| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V upset| +ҷ N human|,unable|ӹ,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ͷ N food|ʳƷ +ͷ N food|ʳƷ + N human|,crime|,undesired|ݬ,*hide| + PRON {firstPerson|} +ҷ PRON {firstPerson|,mass|} +ҹ N place|ط,country| +Ҿ N army| + PRON {firstPerson|,mass|} + ADJ aValue|ֵ,behavior|ֹ,lasting| + V rotate|ת + V mediate| + V LieDown| + V sit| +Բ V ill|̬ +Գ N LandVehicle| +Գ N LandVehicle|,@sleep|˯ +Դ V ill|̬ +Դ V ill|̬ +Ե V FallDown| +Ե N human|,#occupation|ְλ,*scout|,police| +Է N room|,@sleep|˯ +Ծ N tool|þ,generic|ͳ,*sleep|˯ + N LandVehicle|,@sleep|˯ +ʽ ADJ aValue|ֵ,posture|,horizontal| + N room|,@sleep|˯ +н V endeavour| + N furniture|Ҿ,@sleep|˯ + V hold| +ձ V farewell| + V ShowLove|ʾ +Ժ V reconcile| +ס V hold|,Vachieve| + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V irrigate|,agricultural|ũ + N language|,#country|,ProperName|ר + N language|,#country|,ProperName|ר + N land|½,#crop|ׯ +Ұ N land|½ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ +ʦ N human|,*deceive|ƭ,undesired|ݬ +ʦ N human|,*deceive|ƭ,~undesired|ݬ + N sound| +غ V die| +غ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +غ V die| +غ V end|ս + V weep| + N metal| + ADJ aValue|ֵ,color|ɫ,black| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Uganda|ڸɴ) + N place|ط,country|,ProperName|ר,(Ukraine|ڿ) + N place|ط,country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(Uzbekistan|α˹̹) +ڶ N language|,#country|,ProperName|ר +ڷ N part|,%human|,hair|ë,black| +ڸɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uganda|ڸɴ) +ڸɴ N place|ط,country|,ProperName|ר,(Africa|) +ڸɴ N human|,(Uganda|ڸɴ) +ڸɴ N money|,(Brunei|ڸɴ) +ڹ N fish| +ڹ N human|,male|,undesired|ݬ +ں֮ N human|,unable|ӹ,mass| +ں ADJ aValue|ֵ,color|ɫ,black| +ڼ N money|,(Mauritania|ë) +ڽ N stone|ʯ,material|,*lighting|ȼ,$burn| +ڿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ukraine|ڿ) +ڿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ڿ N language|,#country|,ProperName|ר + N clothing|,#foot| + N place|ط,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,#country|,(Uruguay|) + N human|,(Uruguay|) + N place|ط,capital|,ProperName|ר,(Mongolia|ɹ) + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N material|,?drinks|Ʒ +³ľ N place|ط,city|,ProperName|ר,(China|й) +÷ N food|ʳƷ +÷ N fruit|ˮ +߰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɴñ N attribute|,occupation|ְλ,&human| +ɴñ N clothing|,#head|ͷ,#official| +а ADJ aValue|ֵ,trueness|α,fake|α +а N place|ط,#humanized| +ѻ N bird| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + N fish| + N CloudMist|,dark|,#WeatherBad| + N fish| +ȱ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹͹ N place|ط,country|,ProperName|ר,(Asia|) +α˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uzbekistan|α˹̹) +α˹̹ N place|ط,country|,ProperName|ר,(Asia|) +α N language|,#country|,ProperName|ר + N tree| + N fish| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V slander|̰ + N stone|ʯ,waste| +۵ N attribute|,quality|,weak|,undesired|ݬ,&thing| +۵ N trace|,viscera| +۹ N stone|ʯ,waste| +ۻ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ۼ N trace|,dirty| + V slander|̰ + N stone|ʯ,viscera| +Ⱦ V pollute|ʹ +Ⱦ N place|ط,$pollute|ʹ +Ⱦ N physical|,*pollute|ʹ +ȾԴ N location|λ,*pollute|ʹ +Ⱦ N human|,*pollute|ʹ + V damage| + V slander|̰ +ˮ N water|ˮ,viscera| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V accuse|ظ,means=forge|α,police| +ܸ V accuse|ظ,means=forge|α,police| +ܺ V slander|̰ + V slander|̰ + V slander|̰ + V damage| + N house|,generic|ͳ + N room| +ݶ N part|,%house|,head|ͷ +ݶ԰ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ + N location|λ,%house| + N location|λ,%room| + N part|,%house| + N house|,generic|ͳ + N human|,*own|,#house| + N room| + N part|,%building|,head|ͷ + V ExistNot| + V OwnNot| +ް ADJ aValue|ֵ,circumstances|,unfixed|δ +ް ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ޱ ADJ aValue|ֵ,kind|,special| +ޱ ADJ aValue|ֵ,range|,extensive| +ޱ޼ ADJ aValue|ֵ,boundary|,wide| +ޱ仯 ADJ aValue|ֵ,property|,^change| +ޱ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į +ޱҶ N part|,%plant|ֲ,hair|ë +޲ V cry| +޲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޲ ADJ aValue|ֵ,range|,all|ȫ +޲ ADJ aValue|ֵ,similarity|ͬ,alike| +޲׼ N community| +޲׼Ļ N fact|,ProperName|ר,(China|й) +޲ N human|,mass| +޳ ADJ aValue|ֵ,ability|,able|,change| +޳ V die| +޳ N humanized| +޳ ADJ aValue|ֵ,price|۸,empty| +޳ ADJ aValue|ֵ,property|,^$pay| +޳ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +޳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޳ ADJ aValue|ֵ,kind|,special| +޴ ADJ aValue|ֵ,quality|,good|,desired| +޴ V BeUnable| +޴ ADJ aValue|ֵ,correctness|,upright|,desired| +޵ ADJ aValue|ֵ,performance| +޵ʿ N human| +޵¹ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵׶ N part|,%inanimate|,mouth| +޵ V shy| +޶ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +޶ ADJ aValue|ֵ,cleanness|ྻ,^poison| +޶ż ADJ qValue|ֵ,amount|,many| +޶ ADJ aValue|ֵ,degree|̶,extreme| +޶ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޶ V IllBehave|,crime| +޷ V BeUnable| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$express|ʾ +޷ش ADJ aValue|ֵ,ability|,unable|ӹ,$reply| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +޷д ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷ƽϢ ADJ aValue|ֵ,ability|,unable|ӹ,$BeRecovered|ԭ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷Ԥ ADJ aValue|ֵ,ability|,unable|ӹ,$predict|Ԥ +޷׷ ADJ aValue|ֵ,time|ʱ,past| +޷ ADV {comment|} +޷IJ N material| +޷ ADV {emphasis|ǿ} +޷ֹ N material|,linear|,metal| +޸ V RelateNot|޹ +޸ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +޹ N human|,desired|,#police| +޹ ADV aValue|ֵ,correctness|,wrong|,undesired|ݬ +޹ CONJ {comment|} +޹ֺ CONJ {comment|} +޹ V RelateNot|޹ +޹ ADJ aValue|ֵ,necessity|Ҫ,redundant| +޹ؽҪ ADJ aValue|ֵ,importance|,secondary| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +޹糵 N LandVehicle| +޹ ADJ aValue|ֵ,attachment|,#country| +޺ ADJ aValue|ֵ,GoodBad|û,good|,desired| +޺ ADJ aValue|ֵ,ProsCons|,pros|,desired| +޻ N fruit|ˮ +޻ N tree| +޻ ADJ aValue|ֵ,content|,simple|,desired| +޻ ADJ aValue|ֵ,kind| +޻ N chemical|ѧ +޻ N chemical|ѧ +޻ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޻̸֮ N text|,fake|α +޼ ADJ qValue|ֵ,amount|,few| +޼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޼ƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +޼ƿʩ V BeUnable| +޼ ADJ aValue|ֵ,behavior|ֹ,secret| +޼ͶƱ N method|,*drop|Ͷ,#document|,#select|ѡ +޼ ADJ aValue|ֵ,range|,extensive| +޼ҿɹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +޼ ADJ aValue|ֵ,value|ֵ,precious|,desired| +޼֮ N physical|,precious| +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +޼ ADJ aValue|ֵ,duration|,TimeLong| +޽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +޽ ADJ aValue|ֵ,degree|̶,extreme| +޾ ADJ aValue|ֵ,behavior|ֹ,lasting| +޾ V FeelingByBad| +޾ V disheartened| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +޿ɰο ADJ aValue|ֵ,ability|,unable|ӹ,$soothe|ο +޿ɱ ADJ aValue|ֵ,kind|,special| +޿ɱ粵 ADJ aValue|ֵ,trueness|α,true|,desired| +޿ɷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɷ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ɺ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɾҩ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ,undesired|ݬ +޿κ V BeUnable| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$resume|ָ +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޿޲ ADJ aValue|ֵ,importance|,secondary| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ָ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ײ V catch|׽ס,patient=time|ʱ +޿ڲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V FeelNoQualms| + V worth|ֵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ȡ V IllBehave| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ͼ ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬ + ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + V tired|ƣ + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ч N attribute|,effect|Ч,useless|,undesired|ݬ,&cure|ҽ,medical|ҽ + CONJ {concession|ò} + CONJ {concession|ò} + ADJ aValue|ֵ,reputation|,Notwellknown| +Ӣ N human|,able|,desired| +Ӣ N human|,military| +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V BeUnable| + CONJ {but|} + V BeUnable| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +ǣ޹ ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| +޾ ADJ aValue|ֵ,range|,extensive| +޾ ADJ qValue|ֵ,amount|,many| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʻ ADJ aValue|ֵ,performance| +˾ס ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N attribute|,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colorless|ɫ +˴ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human| + ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƭ N shows| +ǹ N weapon| +޳ ADJ aValue|ֵ,reputation|,Notwellknown| +Ϣ ADJ aValue|ֵ,reputation|,Notwellknown| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N inanimate| +ʱ޿ ADV aValue|ֵ,frequency|Ƶ,often| +ʵЧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V IllBehave| + V despise| + ADJ qValue|ֵ,amount|,many| +˪ N time|ʱ,#weather| +˫ ADJ aValue|ֵ,kind|,special| +ˮ ADJ aValue|ֵ,dampness|ʪ,waterless| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +˽η ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,ability|,able|,desired| +Ϊ V IllBehave| + ADJ aValue|ֵ,range|,extensive| +֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V flurried| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V slack|͵ +ʴ V ignorant|֪ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν V BeNot| +ν ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ν V despise| +Ϊ V DoNot| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,property| +ʹ ADJ aValue|ֵ,property|,^painful|ʹ +ͷ N fact|,undesired|ݬ,#police| +ͷ N fact|,undesired|ݬ,secret| + ADJ aValue|ֵ,performance| + V succeed|ɹ +ʤ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +֮ N phenomena|,unfortunate|,undesired|ݬ +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ϊ N fact| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +νķ N fact|,secondary|,undesired|ݬ +Ⱦ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,appearance|,^beautiful|,undesired|ݬ + N place|ط,city|,ProperName|ר,(China|й) +Ϣ ADJ aValue|ֵ,property|,^pay| +Ϣ N money|,$lend|,commercial| +϶ɳ ADJ aValue|ֵ,range|,all|ȫ +Ͼ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,extensive|,desired| +޹˾ N InstitutePlace|,commercial| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,performance| +ߵ N tool|þ,*disseminate| +ߵ绰 N tool|þ,*communicate| +ߵ N tool|þ,*look|,#image|ͼ,#shows| +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +иɻ ADJ aValue|ֵ,range|,all|ȫ,desired| +иɻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V unwilling|Ը + ADJ aValue|ֵ,form|״,empty| + ADJ aValue|ֵ,behavior|ֹ,special| +״ ADJ aValue|ֵ,form|״,empty| +ʲ N wealth|Ǯ + ADJ aValue|ֵ,attachment| +ֹ ADJ aValue|ֵ,duration|,TimeLong| + ADV {modality|} + ADV {modality|} + ADJ aValue|ֵ,range|,extensive| +̻ҩ N material|,?weapon| +ú N material|,stone|ʯ,$burn| +Զ V BeUnable|,content=reply| +ҵ V OwnNot|,possession=occupation|ְλ +޿ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,trueness|α,true|,desired| + V unwilling|Ը +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N bird| +Ӱ N tool|þ,*illuminate|,#medical|ҽ +Ӱ ADV aValue|ֵ,property|,disappear|ʧ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ױ ADJ aValue|ֵ,kind|,special| +ԭ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Դ ADJ aValue|ֵ,property|,#electricity| +Ե V OwnNot|,possession=time|ʱ +Ե޹ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ծ ADJ aValue|ֵ,ability|,return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,unable|ӹ,$debate| + N thinking|˼ + N human| + N human|,#thinking|˼ +״̬ N attribute|,circumstances|,disorder|,&country| +֢״ ADJ aValue|ֵ,performance|,#disease| +֤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ N experience|,ignorant|֪ +֪ V ignorant|֪ +ֹ ADJ aValue|ֵ,range|,extensive|,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,performance| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,quality|,negligible| + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,behavior|ֹ,^crime|,#police| + ADJ aValue|ֵ,area|,wide| +覴 ADJ aValue|ֵ,GoodBad|û,good|,desired| + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï + N land|½,#FlowerGrass| +ߺ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + N character|,(China|й) +ͩ N tree| + PRON {firstPerson|,mass|} + PRON {firstPerson|} +٭ PRON {firstPerson|,mass|} + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADV {neg|} + ADV {comment|} +ӹ AUX {modality|,neg|} +ӹ V {modality|,neg|,#KeepSilence|˵} +ӹ V {modality|,neg|,#doubt|} +ӹ׸ V {modality|,neg|,#trivial|} + ADJ aValue|ֵ,courage|,brave|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N fish| + V perform|,sport| +䵱ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +书 N result|,desired|,#succeed|ɹ,military| + N human|,#occupation|ְλ,official|,military|,diplomatic|⽻ +人 N place|ط,city|,ProperName|ר,(China|й) + N fire|,strong|ǿ,*cook| +侯 N human|,#occupation|ְλ,police| + N facilities|ʩ,space|ռ,@store|,#weapon| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fierce|,undesired|ݬ,&organization|֯ + N community|,sport| + N weapon|,generic|ͳ +ר N human|,#knowledge|֪ʶ,#weapon| +װ ADJ aValue|ֵ,standard|׼,useless|,#weapon|,military| +ʿ N human|,past|,military| + N knowledge|֪ʶ,#sport|,(China|й) + N human|,desired| +С˵ N text| + N knowledge|֪ʶ,#sport|,(China|й) +װ N army| +װ V provide|,possession=weapon|,military| +װ N weapon| +װ N army|,generic|ͳ +װͻ V fight|,military| +װ V provide|,possession=weapon|,degree=extreme| +װ V obstruct|ֹ,military| +װ N human|,#occupation|ְλ,police| +װ N army| + NUM qValue|ֵ,amount|,cardinal|,mass| +屶 ADJ qValue|ֵ,amount|,cardinal|,mass| +屶 N FlowerGrass|,?medicine|ҩ,(China|й) + ADJ aValue|ֵ,form|״ +岽 N beast| + ADJ aValue|ֵ,color|ɫ,colored| +ͷ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,hour|ʱ,night| + N crop|ׯ +ȷ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,appearance|,AnimalHuman| + N part|,%human| +ʮɫ ADJ aValue|ֵ,color|ɫ,colored| +ʮɫ ADJ aValue|ֵ,kind|,many| +ĺ N location|λ,%earth| +廨 ADJ aValue|ֵ,kind|,many| +廨 N food|ʳƷ +Ǵ¥ N house|,institution|,#politics|,(US|) + N fittings| + N metal| +𽻵 N fittings| + N fruit|ˮ,$eat| + N attribute|,relatedness|,&human| + N part|,%AnimalHuman|,viscera| +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮЦٲ V BeSimilar| +ζ N attribute|,odor|ζ,&physical| +ζ N FlowerGrass|,?medicine|ҩ,(China|й) + N material|,?food|ʳƷ +ԭ N regulation|,#country|,diplomatic|⽻ +Ǽ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +ɫ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,month| +· N time|ʱ,month| + N part|,%AnimalHuman|,viscera| +ָ N part|,%AnimalHuman|,hand| + N place|ط + N tool|þ,*recreation| + V cover|ڸ + V cover|ڸ,patient=circumstances| + N time|ʱ,afternoon| + N fact|,eat|,afternoon| + N food|ʳƷ +緹 N fact|,eat|,afternoon| +緹 N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + N time|ʱ,afternoon| +ǰ N time|ʱ,early|,day| +ʱ N time|ʱ,hour|ʱ,afternoon| +˯ V sleep|˯ + V rest|Ϣ + N fact|,eat|,#entertain|д +ҹ N time|ʱ,day|,night| + N fact|,recreation|,entertainment| + V recreation|,entertainment| + V shake|ҡ + N shows| + N human|,friend|,*recreation| + N fact|,deceive|ƭ +貽 N attribute|,posture|,perform|,&human| +賡 N InstitutePlace|,@perform|,#shows| + N facilities|ʩ,@perform|,#shows| +赸 N fact|,recreation|,entertainment| +赸 N disease| +赸 N human|,*perform|,entertainment| +赸Ա N human|,#occupation|ְλ,*perform|,entertainment| +趯 V shake|ҡ +趯 V wave|ڶ + N fact|,recreation| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,male|,*recreation| +Ū V shake|ҡ +Ū V wave|ڶ +Ů N human|,#occupation|ְλ,female|Ů,*recreation| + N music| +̨ N facilities|ʩ,space|ռ,@perform|,#shows| + N InstitutePlace|,@perform|,#shows| + N room|,@perform|,#shows| +Ūī V ShowOff|ҫ,content=ability|,literature| +Ūī V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + N attribute|,posture|,#recreation|,&human| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + V damage| + V IllTreat| + V damage| + ADJ aValue|ֵ,property|,IllTreat| + N facilities|ʩ,#city| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ + N symbol| + N CloudMist| + N CloudMist| +״ ADJ aValue|ֵ,form|״,#gas| + V meet| + V meet| +̸ V talk|̸ + N attribute|,content|,&readings|,&information|Ϣ + N entity|ʵ,generic|ͳ + N artifact|˹,generic|ͳ + V die| +ﻯ V die| +ﻻ V change| + N attribute|,price|۸,&thing|,commercial| +۾ N institution|,*manage|,#price|۸,ProperName|ר,politics| + N artifact|˹,generic|ͳ +ᄉ N tool|þ,*look|,#physical| + ADJ aValue|ֵ,content|,substantial|ʵ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N attribute|,strength|,physical|,&organization|֯,&country|,&human| + ADJ aValue|ֵ,price|۸,cheap| +Ʒ N artifact|˹,generic|ͳ +ɫ V LookFor|Ѱ +ɫ V choose|ѡ + N physical|,generic|ͳ + N image|ͼ + N phenomena| + N shape| + N aspiration|Ը,expect| +֤ N information|Ϣ,*prove|֤ + N physical|,generic|ͳ + N mental| + N attribute|,kind|,&animate| + N material|,generic|ͳ + AUX {neg|} + N affairs|,generic|ͳ + V engage| + AUX {modality|} + AUX {modality|} +ũ V engage|,agricultural|ũ +͹ EXPR expression|,*welcome|ӭ + ADV {modality|} +ʵ V handle|,patient=substantial|ʵ +ʹ V CauseToDo|ʹ + V discuss| + V understand| + N attribute|,ability|,#understand|,&human| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V damage| + V lose|ʧȥ + N result|,wrong|,undesired|ݬ + N result|,wrong|,#calculate|,#measure| + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + V due| + V delay|,content=affairs| + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| +; V err| +ɱ V kill|ɱ,manner=careless|,police| + V damage|,manner=careless| + V OutOfOrder| + V delay|,content=affairs| + V misunderstand| +Ϊ V misunderstand| + V diagnose|,wrong|,medical|ҽ + N time|ʱ,past| + N time|ʱ,past| + N time|ʱ,past| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling| + V analyze| + V separate| + V separate| + ADJ aValue|ֵ,source|Դ,foreign| + N direction|,west| + N place|ط,country|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Spain|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Andorra|) + N place|ط,capital|,ProperName|ר,(Trinidad and Tobago|Ͷ͸) + N language|,#country|,ProperName|ר + N part|,%earth|,west| + N direction|,north|,west| + N location|λ,north|,west| + N location|λ,west| + N place|ط,ProperName|ר,(Russia|˹) + N location|λ,west| + N edible|ʳ,foreign| +͹ N InstitutePlace|,@eat|,#foreign|,commercial| + N InstitutePlace|,@eat|,#foreign|,commercial| + N place|ط,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N language|,#country|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N location|λ,ending|ĩ,west| + N FlowerGrass| + N aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,source|Դ,foreign| + N aValue|ֵ,source|Դ,foreign| + N location|λ,west| + N place|ط,ProperName|ר,west|,(Africa|) + N wind| + N clothing|,foreign| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Vietnam|Խ) + N fruit|ˮ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ + V ize|̬,PatientAttribute=foreign| + N part|,%place|ط,surrounding|Χ,#city|,west| + N law|ɷ,#earth| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,#tool|þ,#communicate|,commercial| + N location|λ,west| + N direction|,west|,south| +ϲ N location|λ,west|,south| +Ͻ N location|λ,west|,south| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,west|,(Europe|ŷ) +Ħ N place|ط,country|,ProperName|ר +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ʽ ADJ aValue|ֵ,kind|,foreign| +˹ N language|,#country|,ProperName|ר + N celestial|,#humanized|,religion|ڽ +ͷ N location|λ,west| + N place|ط,ProperName|ר,(Italy|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ N knowledge|֪ʶ +ͼ N place|ط,ProperName|ר,(US|) + N place|ط,ProperName|ר,west|,(Asia|) + ADJ aValue|ֵ,attachment|,foreign| + N FlowerGrass|,?medicine|ҩ +ҩ N medicine|ҩ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N affairs|,medical|ҽ,foreign| +ӡȺ N place|ط,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +װ N clothing|,foreign| +װ ADJ aValue|ֵ,appearance| + N chemical|ѧ + N chemical|ѧ + N disease| + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) + ADJ aValue|ֵ,content|,opened| + ADJ joyful|ϲ + V attract| + V consume|ȡ + V inhale| + N tool|þ,*clean|ʹ,#inhale| + N bacteria|΢ + N tool|þ,*illuminate|,#room| + V addict|Ⱥ,patient=addictive|Ⱥ,crime| + N human|,*addict|Ⱥ,undesired|ݬ + N human|,*addict|Ⱥ,undesired|ݬ + ADJ aValue|ֵ,property|,inhale| + V inhale| + N chemical|ѧ,*clean|ʹ,#inhale| + N tool|þ,#drinks|Ʒ + N attribute|,strength|,&entity|ʵ +īֽ N paper|ֽ,*inhale| + V inhale| +ȡ V GetKnowledge|֪ +ȡ V consume|ȡ +ȡѵ V GetKnowledge|֪,content=experience| + V consume|ȡ,patient=hot| + V inhale| +ʪ V consume|ȡ,patient=wet|ʪ +ʪ ADJ aValue|ֵ,property|,consume|ȡ,#wet|ʪ +ʳ V drink| + V consume|ȡ + V include| +ռ N chemical|ѧ,*clean|ʹ,#inhale| +ϵ N symbol|,#MoveItInto| +˱ V drink| +ʯ N metal| +Ѫ N human|,greedy|̰,undesired|ݬ + V addict|Ⱥ + V room|,@addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ + V attract| + N attribute|,ability|,&attract| + N metal| + N tool|þ,*condole|°,#die| + N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sikkim|) + N place|ط,country|,ProperName|ר,(Asia|) +ֽ N paper|ֽ +ֽ N tool|þ,*condole|°,#die| + V abandon| + V die| + N livestock|,*salute|¾ +Ʒ N entity|ʵ,$abandon| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N food|ʳƷ +ϡ N human|,*visit| +ϡ ADJ aValue|ֵ,hardness|Ӳ,soft| +ϡͿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ϡ ADJ aValue|ֵ,kind|,queer| +ϡȱ ADJ qValue|ֵ,amount|,few| +ϡȱƷ N artifact|˹,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ V dilute|嵭 +ϡͼ V chemical|ѧ,*dilute|嵭 +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,importance|,secondary|,undesired|ݬ +ϡˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N metal| +ϡԪ N part|,%entity|ʵ +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,kind|,queer| +ϡн N metal| +ϡԪ N part|,%entity|ʵ +ϡ N food|ʳƷ +Ϣ V end|ս +Ϣ N fact|,respire| +Ϣ N fund|ʽ +Ϣ V rest|Ϣ +Ϣŭ V calm| +Ϣ N disease| +Ϣ V mediate| +ϢϢ V relate|й +ϣ V expect| +ϣ N place|ط,country|,ProperName|ר,(Greece|ϣ) +ϣ ADJ qValue|ֵ,amount|,few| +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ V like|ϧ +ϣ ADJ qValue|ֵ,amount|,few| +ϣ V expect| +ϣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greece|ϣ) +ϣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ϣ N human|,#country|,ProperName|ר +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ֮ N treasure|䱦 +ϣ N human|,official|,politics|,ProperName|ר,(Germany|¹) +ϣͼ V expect| +ϣ V expect| +Ϥ V know|֪ +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V endeavour| +Ϥ N place|ط,city|,ProperName|ר,(Australia|) +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V do|,manner=attentive|ϸ +ϥ N part|,%AnimalHuman|,leg| +ϥ N part|,%AnimalHuman|,leg| +ϥؽ N part|,%AnimalHuman|,leg| +ϥ ADJ aValue|ֵ,attachment| +ϥ״ ADJ aValue|ֵ,form|״,curved| +Ϧ N time|ʱ,day|,night| +Ϧ N CloudMist| +Ϧ N celestial| +Ϧ V GoDown|ȥ,#celestial| +Ϧ N lights|,#celestial| +Ϧ N lights|,#celestial| +ϧ V grudge| +ϧ V like|ϧ +ϧ V sorry|ϧ +ϧ V farewell| +ϧ V grudge|,content=strength| +Ϩ V destroy| +Ϩ V TurnOff|ֹ,patient=tool|þ +Ϩ V remove|,patient=fire| +Ϩ V disappear|ʧ +ϩ N chemical|ѧ +ϩ N chemical|ѧ +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫˮ N waters|ˮ,linear| +ϫ N water|ˮ +Ϭ N beast| +Ϭ N part|,%AnimalHuman|,*feel| +Ϭ ADJ aValue|ֵ,content|,profound|,desired| +Ϭţ N beast| +ϭ N document|,*call|ٻ,#fight| +ϭ N document|,*ExpressAgainst|Ǵ,#enemy| +ϭ N document|,*call|ٻ,#fight| +Ϯ V attack| +Ϯ V attack|,military| +Ϯ V imitate|ģ +Ϯ V attack|,manner=sudden|,military| +Ϯ N human|,*attack| +Ϯȡ V occupy|ռ,manner=sudden| +Ϯ V attack|,manner=again|,military| +Ϯ V use| +ϯ N character|,surname|,human|,ProperName|ר +ϯ N fact|,eat|,#entertain|д +ϯ N location|λ +ϯ N tool|þ,@LieDown| +ϯϾů ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ϯ ADJ aValue|ֵ,location|λ,place|ط +ϯض ADJ sit|,location=place|ط +ϯ N time|ʱ,#eat|,#entertain|д +ϯ V contain| +ϯ V occupy|ռ +ϯ˼ N tool|þ,@LieDown| +ϯλ N location|λ +ϰ N character|,surname|,human|,ProperName|ר +ϰ V drill|ϰ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ V fit|ʺ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,bad|,&human|,&organization|֯ +ϰȾ V suffer| +ϰȾϰ V suffer|,content=habit|ϰ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N text|,*drill|ϰ +ϰ V drill|ϰ,content=sport| +ϰϰ V WeatherFine| +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰΪ V fit|ʺ +ϰ V study|ѧ,content=symbol| +ϰ V study|ѧ,content=compile|༭ +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,female|Ů,adult| +ϲ V FondOf|ϲ +ϲ N fact|,desired|,$congratulate|ף +ϲ N fact|,pregnant| +ϲ V joyful|ϲ +ϲ V FondOf|ϲ +ϲ N text|,*congratulate|ף,#happy| +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=very| +ϲ V FondOf|ϲ +ϲ V FondOf|ϲ +ϲ V joyful|ϲ +ϲʩ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲָֻ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲ V succeed|ɹ +ϲԵ V GetMarried| +ϲ N drinks|Ʒ,$addict|Ⱥ,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,lucky|,#joyful|ϲ +ϲ N shows|,#joyful|ϲ,entertainment| +ϲԱ N human|,*perform|,entertainment| +ϲɽ N land|½,ProperName|ר,(China|й) +ϲŭ N emotion| +ϲ N attribute|,countenance|,joyful|ϲ,&human| +ϲ N attribute|,environment|,joyful|ϲ,&human| +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V congratulate|ף +ϲ N fact|,desired|,$congratulate|ף +ϲȵ N bird| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲɫ N attribute|,countenance|,joyful|ϲ,&human| +ϲü V joyful|ϲ +ϲ N fact|,$congratulate|ף,desired| +ϲ N fact|,GetMarried|,desired| +ϲ N fact|,desired|,$congratulate|ף +ϲּ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲЦտ V laugh|Ц +ϲ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ϲɫ V joyful|ϲ +ϲɫ V laugh|Ц +ϲѶ N news|,happy| +ϲ V joyful|ϲ +ϲ N RainSnow|ѩ +ϲ V joyful|ϲ +ϲ V joyful|ϲ +ϳ V grind|ĥ,industrial| +ϳ N machine|,*produce| +ϳ N machine|,*cut| +ϳ N fact|,cut| +ϳ N human|,#occupation|ְλ,*cut|,industrial| +ϳ N metal| +ϴ V amend| +ϴ V mix| +ϴ V produce|,#TakePicture| +ϴ V rob| +ϴ V wash|ϴ +ϴ V entertain|д +ϴ V AlterProperty|,PatientAttribute=SoundVolume| +ϴ V wash|ϴ +ϴӼ N tool|þ,*wash|ϴ +ϴ V listen| +ϴ N tool|þ,*wash|ϴ,#hair|ë +ϴ N medicine|ҩ,*wash|ϴ +ϴ V rob| +ϴ V wash|ϴ +ϴ V accept|,religion|ڽ +ϴ N fact|,exam|,important| +ϴ N fact|,religion|ڽ +ϴ V wash|ϴ,patient=skin|Ƥ +ϴȾ V wash|ϴ,AlterColor|ɫ +ϴ V wash|ϴ,patient=hand| +ϴּ V room|,@excrete|й,@wash|ϴ +ϴˢ V amend| +ϴˢ V wash|ϴ +ϴͷ V wash|ϴ,patient=hair|ë +ϴ N tool|þ,*wash|ϴ,#tool|þ +ϴθ V cure|ҽ +ϴĸ V amend|,content=wrong| +ϴѩ V amend| +ϴ V wash|ϴ,patient=clothing| +ϴµ N InstitutePlace|,*wash|ϴ,#clothing|,commercial| +ϴ· N material|,*wash|ϴ,#clothing| +ϴ¹ N human|,#occupation|ְλ,*wash|ϴ,#clothing| +ϴ» N tool|þ,*wash|ϴ,#clothing| +ϴŮ N human|,#occupation|ְλ,*wash|ϴ,#clothing|,female|Ů +ϴӡ V produce| +ϴԡ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ +ϴ V wash|ϴ +ϵ V be| +ϵ V fasten|˩ +ϵ N part|,%InstitutePlace|,education| +ϵ N part|,%entity|ʵ +ϵ N part|,%entity|ʵ,body| +ϵ V relate|й +ϵ V worried|ż +ϵ N part|,%language| +ϵ V wrap| +ϵ CLAS attribute|,amount|,&entity|ʵ +ϵо N shows| +ϵƬ N shows| +ϵ V worried|ż +ϵ N symbol|,#quantity| +ϵͳ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ϵͳ N part|,%entity|ʵ,body| +ϵͳ V analyze|,content=part|,#entity|ʵ,body| +ϵͳ N affairs| +ϵͳ V ize|̬,PatientAttribute=accurate|׼ +ϵͳ N attribute|,correctness|,accurate|׼,&entity|ʵ +ϵָ V mean|ָ +϶ N attribute|,relatedness|,sparse|,&human| +϶ N fact|,oppose| +϶ N part|,%inanimate|,mouth| +϶ N time|ʱ +϶ N time|ʱ,important| +϶ N place|ط +Ϸ V WhileAway| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| +Ϸ N community|,*perform|,entertainment| +Ϸ N shows| +Ϸ N shows| +Ϸ N human|,*compile|༭,#shows|,entertainment| +Ϸ N community|,#compile|༭,#shows|,entertainment| +Ϸ ADJ aValue|ֵ,behavior|ֹ,important| +Ϸ¥ N InstitutePlace|,@perform|,entertainment| +Ϸ N human|,*FondOf|ϲ,#shows| +ϷŪ V tease|ȡ +Ϸ N shows| +Ϸˣ V tease|ȡ +Ϸ̨ N facilities|ʩ,space|ռ,@perform| +Ϸ N text|,tease|ȡ +ϷԺ N InstitutePlace|,@perform|,entertainment| +Ϸװ N clothing|,#perform| +Ϸ V tease|ȡ +ϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,content|,trivial| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸ ADJ aValue|ֵ,size|ߴ,small|С +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸĤ N part|,%animate| +ϸѧ N knowledge|֪ʶ,#animate| +ϸ N part|,%animate| +ϸ N material|,?clothing| +ϸ N part|,%image|ͼ +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ ADJ aValue|ֵ,length|,long| +ϸ N human|,*read| +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ N human|,tall| +ϸ N fact|,secondary| +ϸ N affairs|,attentive|ϸ +ϸ N fact|,secondary|,detailed| +ϸ N bacteria|΢ +ϸ N disease| +ϸѧ N knowledge|֪ʶ,#bacteria|΢ +ϸѧ N human|,#knowledge|֪ʶ,#bacteria|΢ +ϸս N fact|,fight|,#bacteria|΢ +ϸ N material|,?eat|,#crop|ׯ +ϸë N livestock| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,density|ܶ,dense| +ϸĿ N attribute|,content|,&information|Ϣ +ϸĿ N part|,%thing|,kind| +ϸ ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,refined|,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸë ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸɴ N material|,?clothing| +ϸɴ N machine| +ϸϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸˮ ADJ do|,manner=lasting| +ϸˮ ADJ economize|ʡ,purpose=exempt|,#lack|ȱ +ϸ˵ V describe|д +ϸ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ϸ΢ ADJ aValue|ֵ,content|,refined| +ϸϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N material|,?clothing| +ϸС ADJ aValue|ֵ,content|,trivial| +ϸС ADJ aValue|ֵ,size|ߴ,small|С +ϸ N material|,?medicine|ҩ +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N RainSnow|ѩ +ϸ N regulation|,detailed| +ϸ N account| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ֦ĩ N part|,%event|¼,secondary| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N human|,#occupation|ְλ,*scout|,military| +Ϲ ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ϲ ADV aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϲ V disable|м,scope=look| +Ϲ V TalkNonsense|Ϲ˵ +Ϲ V IllBehave| +Ϲ˵ V TalkNonsense|Ϲ˵,manner=fake|α +Ϲָ V guide|,manner=improper| +Ϲ N human|,undesired|ݬ,*disable|м,#look| +Ϻ N fish| +Ϻ N material|,?food|ʳƷ +Ϻ N fish| +Ϻ N food|ʳƷ,#fish| +ϺƤ N food|ʳƷ,#fish| +Ϻ N food|ʳƷ,#fish| +Ϻ N material|,?food|ʳƷ,liquid|Һ +Ϻ N fish| +ϻ N tool|þ,cubic|,@put| +ϻ N tool|þ,cubic|,@put| +ϼ N CloudMist|,colored| +ϼ N lights| +Ͻ V manage| +Ͻ N place|ط,$manage| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| +Ͼ N time|ʱ,idle| +Ͽ N land|½ +Ͽ N land|½ +Ͽ N part|,%land|½,mouth| + N human|,desired| + N human|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,length|,long| +· V meet| +С ADJ aValue|ֵ,width|,narrow|խ + N information|Ϣ + N knowledge|֪ʶ +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,width|,narrow|խ + CLAS ActUnit|,&event|¼ + V GiveBirth| + V GoDown|ȥ + V GoOut|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,sequence|,hind| + V announce| + V cease|ͣ + V dismount|ж + V drop|Ͷ + V fall| + V forming|γ + V leave|뿪 + N location|λ + V occupy|ռ + ADJ qValue|ֵ,amount|,few|,more| + V recreation| + STRU {Vdirection|,beneath|} +° N part|,%AnimalHuman|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° V cease|ͣ,content=affairs|,#duty| +°볡 N fact|,compete|,sport|,hind| +° N time|ʱ,year|,half|,hind| +° V put|,patient=mark|־ +° N time|ʱ,afternoon| +° N location|λ,%human|,body|,half|,beneath| +° N part|,%human|,body|,half|,beneath| +°ҹ N time|ʱ,day|,night|,half|,hind| +° N time|ʱ,month|,half|,hind| +± N human|,clan| +± V write|д +± ADJ aValue|ֵ,sequence|,hind| +± N community|,#rank|ȼ,LowRank|͵,employee|Ա +² V BeUnable|,content=GoDown|ȥ +² V BeUnable|,content=fulfil|ʵ +²̨ V embarrassed|Ϊ +²Ϊ ADV aValue|ֵ,behavior|ֹ,only| +² N part|,%physical|,beneath| +² N method|,useless|,undesired|ݬ +² N attribute|,status|,LowRank|͵,&human| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#compete|,sport| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#perform|,entertainment| +³ N result| +³ V leave|뿪,LocationIni=LandVehicle| +³ V sink|³ +´ N place|ط,@reside|ס +´ V leave|뿪,LocationIni=ship| +´ V leave|뿪,LocationIni=furniture|Ҿ +´ ADJ aValue|ֵ,direction|,beneath| +´ N part|,%AnimalHuman|,mouth| +´ ADJ aValue|ֵ,sequence|,hind| +´ V surplus|ʣ,commercial| +´ V announce| +µ V GiveBirth|,PatientProduct=animal| +µ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +µ V BeRecovered|ԭ,StateIni=disease|,medical|ҽ +µ V LeaveFor|ǰ,LocationFin=land|½,agricultural|ũ +µ V leave|뿪,LocationIni=machine|,#lift| +µ V BecomeLess|,commercial| +µ V fall| +¶ V kill|ɱ +· V MoveItDown|,patient=part|,#ship| +· V arrive| +· ADJ aValue|ֵ,taste|ζ,good|,desired| +· N aValue|ֵ,direction|,beneath| +· V dispatch|Dz +· V entrust|ί +·ɻ V leave|뿪,LocationIni=aircraft| +¸ V pause|ͣ +¸ N time|ʱ,week|,future| +¸ N time|ʱ,month|,future| +¹ V cease|ͣ,content=affairs| +¹ V cease|ͣ,content=affairs|,#duty| +¹ V endeavour| +¹ V eat|,location=InstitutePlace| +¹ V sit| +º V LeaveFor|ǰ,LocationFin=waters|ˮ +º V engage|,content=commercial| +¼ N human|,#rank|ȼ,LowRank|͵,employee|Ա +¼ְԱ N human|,#occupation|ְλ,employee|Ա,LowRank|͵ +¼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +½ V BecomeLess| +½ V GoDown|ȥ +½ V fall| +½ N artifact|˹,waste| +½ N entity|ʵ,generic|ͳ,waste| +½ ADJ aValue|ֵ,sequence|,hind| +¾ ADJ aValue|ֵ,taste|ζ,good|,desired| +¾ V decide| +¿ V cease|ͣ,content=study|ѧ,education| + V GoDown|ȥ + STRU {Vdirection|,beneath|} + N readings| + ADJ aValue|ֵ,kind|,special| + V order| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N part|,%waters|ˮ +¥ V GoDown|ȥ,LocationFin=part|,#building| +¥ V GoDown|ȥ,LocationFin=part|,#building| + N location|λ,#arrive|,#ExistAppear| + V GoDown|ȥ,LocationIni=livestock| + V end|ս + ADJ aValue|ֵ,importance|,secondary| + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ᵽ ADJ aValue|ֵ,kind|,special| +Ʒ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ʒ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +· N facilities|ʩ,route|· +· N phenomena|,wane|˥,undesired|ݬ + N location|λ,#vehicle|ͨ + V recreation|,sport| + N attribute|,circumstances|,&entity|ʵ + N mental| +ȥ V GoDown|ȥ +ȥ V GoOn| +ȥ STRU {Vcontinue|} +ȥ STRU {Vdirection|,beneath|} + N clothing|,#leg| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ʣ V surplus|ʣ +ʿ N human|,#occupation|ְλ,military| + V do| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N human|,friend| + N location|λ + N location|λ + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ˮ V GoInto|,LocationFin=waters|ˮ +ˮ ADJ aValue|ֵ,direction|,beneath| +ˮ V do|,content=crime|,crime| +ˮ N part|,%AnimalHuman|,viscera| +ˮ V start|ʼ,content=VehicleGo|ʻ +ˮ N part|,%building| +̨ V GoDown|ȥ,LocationIni=facilities|ʩ +̨ V lose|ʧȥ,possession=power|,politics| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ͷ N human|,#rank|ȼ,LowRank|͵,employee|Ա + ADJ aValue|ֵ,performance|,#sound|,$control| + N part|,%text| + N result| + N time|ʱ,afternoon| + V FormChange|α + N attribute|,boundary|,&entity|ʵ + V LeaveFor|ǰ,LocationFin=village| + N time|ʱ,week|,future| +ڶ N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| +һ N time|ʱ,day|,#week|,future| + ADJ aValue|ֵ,direction|,beneath| +ѩ V WeatherChange| +ѩ N quantity|,amount|,&WeatherChange|,#RainSnow|ѩ +Ѯ N time|ʱ,TenDays|Ѯ,ending|ĩ +ҩ V produce|,PatientProduct=medicine|ҩ +Ұ V cease|ͣ,content=undertake|,politics| +ҹ V cease|ͣ,content=affairs|,#duty|,#sequence|,night| +һ N method| +һô N do|,question| +һ N human|,future| + V MoveItDown| +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| +ʶ N mental| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) + N location|λ,undesired|ݬ + N part|,%waters|ˮ + V WeatherChange| + N time|ʱ,month|,future| + V record|¼ + V bury| +֫ N part|,%human|,limb|֫ +ũ N human|,#occupation|ְλ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N time|ʱ,week|,future| +װ V StripOff|ȥ,patient=clothing|,entertainment| +׹ V StomachTrouble|֢ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V GiveBirth|,PatientProduct=animal| + V reside|ס + V stay|ͣ + N part|,%AnimalHuman|,mouth|,beneath| + N part|,%human|,skin|Ƥ + N part|,%AnimalHuman|,mouth|,beneath| + N house| + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| +IJ N material|,?clothing| +ij N time|ʱ,summer|,early| +ĺ N character|,surname|,human|,ProperName|ר +ļ N time|ʱ,summer| + N law|ɷ,#time|ʱ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N time|ʱ,summer| + N weather|,#summer| +Ӫ N InstitutePlace|,@exercise|,#summer| + N time|ʱ,summer| + V collect|,#summer|,agricultural|ũ + N time|ʱ,summer| + N human|,female|Ů,%publications|鿯 + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N clothing|,#summer| + N time|ʱ,day|,summer| +װ N clothing|,#summer| + V frighten|Ż +Ż V frighten|Ż + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V StripOff|ȥ +ƶ V StripOff|ȥ +ƶ V start|ʼ +ƿ V StripOff|ȥ +ƿ V reverse|ߵ + V StripOff|ȥ + V start|ʼ + N tool|þ + ADV aValue|ֵ,earliness|,early| + ADV aValue|ֵ,time|ʱ,InFront|ǰ + N human|,past| +ȱ N human|,past| +ȵ N human|,guide| +ȷ V attack|,time=InFront|ǰ +ȷ N human|,guide| +ȷ N human|,guide| +Ⱥ N example|ʵ +Ⱥ N process|,early| +Ⱥ ADJ aValue|ֵ,sequence| +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ˳ N attribute|,sequence|,&entity|ʵ +Ƚ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ⱦ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + N example|ʵ + N human|,*die|,desired| + N time|ʱ,past| +ǰ N time|ʱ,past| +Dz ADJ aValue|ֵ,property|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,guide| + N human|,guide| + N human|,intimate|,male| + N human|,past| + N information|Ϣ,guide| + V attack|,time=InFront|ǰ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + N human|,#occupation|ְλ,*teach|,education| + N human|,male| + N human|,past| + ADJ aValue|ֵ,source|Դ,original|ԭ +첻 N attribute|,quality|,weak|,undesired|ݬ,&human| + ADJ aValue|ֵ,source|Դ,original|ԭ +Լ N disease| +ͷ N time|ʱ,past| +ͷ N part|,%army| +ͷֶ N part|,%army| + N human|,desired| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +й N human|,official| + N human|,past| + N knowledge|֪ʶ + N human| +ն V VieFor| + N information|Ϣ + N human|,desired|,past|,wise| +֪ N human|,desired|,wise| +֪Ⱦ N human|,desired|,wise| + N humanized|,desired| +ɹ N humanized|,desired|,female|Ů +ɹ N humanized|,female|Ů +ɺ N bird| +ɺײ N FlowerGrass|,?medicine|ҩ +ɾ N place|ط,#humanized|,beautiful|,happy| +Ů N humanized|,desired|,female|Ů + N humanized|,desired| + N FlowerGrass| + N humanized|,desired|,female|Ů + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N edible|ʳ,#taste|ζ,good| +ʲ N vegetable|߲,new| +ʵ N food|ʳƷ,new|,#bird| +ʹ N fruit|ˮ,new| +ʺ ADJ aValue|ֵ,color|ɫ,red| +ʻ N FlowerGrass| +ʻ ADJ aValue|ֵ,newness|¾,new|,desired| +ʻ N artifact|˹,commercial|,#fruit|ˮ,#vegetable|߲,new|,generic|ͳ +ʻ N food|ʳƷ,commercial|,generic|ͳ +ʻ N medicine|ҩ,commercial|,generic|ͳ +ʼ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| +ơ N drinks|Ʒ,$addict|Ⱥ +Ϊ֪ ADJ aValue|ֵ,reputation|,Notwellknown| +Ѫ N part|,%AnimalHuman|,liquid|Һ + ADJ aValue|ֵ,color|ɫ,colored| +޶Ŀ ADJ aValue|ֵ,color|ɫ,colored| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,size|ߴ,small|С +˷ N human|,#occupation|ְλ,#ship| +ë N part|,%AnimalHuman|,hair|ë + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ά N material| +ά N material| +άѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ά N chemical|ѧ +ά״ ADJ aValue|ֵ,form|״ +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +С ADJ aValue|ֵ,fineness|ϸ,fine| + ADJ aValue|ֵ,taste|ζ,salty| + N character|,surname|,human|,ProperName|ר +̲ N vegetable|߲,salty| +ˮ N liquid|Һ,salty| +ζ N attribute|,taste|ζ,salty|,&inanimate| + N attribute|,taste|ζ,salty|,&inanimate| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired|,able| +Ͳ N human|,desired|,able| +ʹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʹ N human|,desired|,glorious| +ͻ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired| + V HoldInMouth| + V cherish|Ļ +ν V connect| + V HoldInMouth| +ԩ V unsatisfied| + N part|,%ship|,edge| +ϴ N part|,%ship|,eye| + N tool|þ,#aircraft|,nerve| + N tool|þ,#ship|,nerve| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,idle| +г V talk|̸ +е V roam| +е V walk| +й N time|ʱ,idle| +й V roam| +й V walk| +л V talk|̸ +о V reside|ס +оӼ V reside|ס +п ADJ aValue|ֵ,circumstances|,idle|,desired| +п N time|ʱ,idle| + V talk|̸ +Ǯ N fund|ʽ + N emotion|,#WhileAway| + N emotion|,#WhileAway| + N human|,*RelateNot|޹ + N human|,idle| +ɢ ADJ aValue|ֵ,circumstances|,idle|,desired| + N fact|,#RelateNot|޹ + ADJ aValue|ֵ,circumstances|,idle|,desired| +̸ V talk|̸ +Ͼ N time|ʱ,idle| + N emotion|,#WhileAway| +Ա N human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ + V abandon| + N part|,%AnimalHuman|,liquid|Һ +Ƥ V shameless|û +ˮ N part|,%AnimalHuman|,liquid|Һ + N image|ͼ + N part|,%MusicTool| + N part|,%implement| + N part|,%weapon| + N MusicTool| + N MusicTool| + V disgust| + N emotion|,blame|Թ + N experience|,doubt| + N thought|ͷ,undesired|ݬ +Ӷ V disgust| +ӷ N human|,$doubt|,#crime| + V disgust| +϶ N emotion|,blame|Թ +϶ N thought|ͷ,undesired|ݬ + N experience|,doubt| +ɷ N human|,$doubt|,#crime| +ɷ N human|,$doubt|,#crime| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V display|չʾ +԰ V ShowOff|ҫ +Դ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ե V become|Ϊ +Զ׼ ADJ aValue|ֵ,content|,opened| +Ժ ADJ aValue|ֵ,reputation|,glorious|,desired| +Լ ADJ aValue|ֵ,content|,opened| +¶ V appear| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ȼ ADV aValue|ֵ,content|,opened| +ʾ V display|չʾ +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +΢ N tool|þ,*look|,#enlarge| + V appear| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| +Ч V produce|,PatientProduct=effect|Ч +Ч N result|,opened| + V exposure|¶ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,opened| +Ҫ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ N human|,importance| +Ӱ V produce|,#TakePicture| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,possibility|,almost| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N place|ط,important| +հ N place|ط,important| +ն ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ն ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +շ N part|,%land|½,head|ͷ,dangerous|Σ +չ N place|ط,dangerous|Σ,undesired|ݬ +վ N attribute|,circumstances|,threatening| +վ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N attribute|,circumstances|,threatening|,&entity|ʵ +ʤ V win|ʤ +̲ N waters|ˮ,linear| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Щ ADJ aValue|ֵ,possibility|,almost| +Ҫ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,time|ʱ,immediate| + ADJ aValue|ֵ,time|ʱ,now| + V appear| + N money| +ֳ N place|ط,#fact| +ֳ N place|ط,#fact|,#police| +ֳ V investigate|,purpose=disseminate| +ֳɷ V investigate|,purpose=disseminate| +ֳ N fact|,discuss| +ֳ N fact|,discuss| +ֳ N money| +ֳ ADJ aValue|ֵ,source|Դ,original|ԭ +ֳ V exposure|¶ +ִ ADJ aValue|ֵ,property|,exist|,now| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ ADJ aValue|ֵ,time|ʱ,now| +ִ N time|ʱ,now| +ִ V ize|̬,PatientAttribute=modern| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ N community|,literature|,entertainment| +ִ N human|,new| +ִʷ N fact|,#time|ʱ,now| +ִ N fact|,recreation|,entertainment|,now| +ִϷ N shows| +ֻ N artifact|˹,commercial|,generic|ͳ +ֽ N money| +ֽ N aValue|ֵ,time|ʱ,now| +ֿ N money| + N attribute|,age|,&animate| +Ǯ N money| + V undertake| +˵ V teach| +ʱ N aValue|ֵ,time|ʱ,now| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ N attribute|,environment|,&event|¼ +ʵ N human| + V suffer|,content=disgraced| + N time|ʱ,now| + ADV aValue|ֵ,time|ʱ,now| + N phenomena| + V exposure|¶ + ADJ aValue|ֵ,effect|Ч,superior|,now| + ADJ aValue|ֵ,property|,do|,#crime|,now| +з ADJ human|,crime|,now| + V suffer|,content=disgraced| + ADV {tense|ʱ̬,past|} + N affairs|,engage|,military| +۾ N human|,#occupation|ְλ,military| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +״ N attribute|,circumstances|,&entity|ʵ + V donate| + V show| + V submit| +ױ V submit|,possession=precious| +ױ V teach|,content=thinking|˼,precious| +ײ V teach|,content=thinking|˼ +׳ V perform| +״ N text|,*congratulate|ף +׸ V submit| +׻ V GiveAsGift|,possession=FlowerGrass| +׼ V show|,content=ability| +׼ V teach|,content=thinking|˼ + V GiveAsGift|,possession=artifact|˹ + V please|ȡ + V GiveAsGift|,possession=mark|־ + V die| + V engage| + N human|,*engage| +Ѫ V donate|,possession=liquid|Һ,medical|ҽ +Ѫ N human|,*submit| + V perform| + V please|ȡ + N place|ط +س N human|,#occupation|ְλ,official| +س N place|ط +ظ N institution|,*manage|,#place|ط +ؼ N attribute|,rank|ȼ,politics| + N human|,#occupation|ְλ,official| +ί N institution|,politics|,(China|й) + N institution|,*manage|,#place|ط +־ N publications|鿯 + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N part|,%AnimalHuman|,nerve| +״ ADJ aValue|ֵ,form|״ + N material|,?food|ʳƷ +ڱ N food|ʳƷ +ڶ N material|,?food|ʳƷ +ڶ N food|ʳƷ + V admire|Ľ +Ľ V admire|Ľ + N law|ɷ +ܱ N army| +ܱ N human|,military| +ܱ N army| +ܷ N law|ɷ + N law|ɷ + N system|ƶ,politics| + V damage| + V sink|³ + V suffer|,content=occupy|ռ,military| +ݺ V damage| +ݽ V sink|³ +ݽ V situated| +ݿ N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + V sink|³ + V suffer|,content=occupy|ռ,military| + V cherish|Ļ + V sink|³ + V situated| +뽩 V situated|,location=circumstances|,hardship| + V situated| + V suffer|,content=detain|ס,#police| + V situated| + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N attribute|,boundary|,&entity|ʵ + V delimit| +޶ V delimit| +޶ N attribute|,boundary|,&entity|ʵ +޶ N attribute|,boundary|,#quantity|,&event|¼ +޼ N attribute|,price|۸,$delimit|,&artifact|˹,commercial| +޼ V delimit|,patient=price|۸,commercial| + V delimit|,patient=quantity| + V order| + N attribute|,boundary|,#time|ʱ,&event|¼ + N delimit|,patient=time|ʱ +λ N fact|,delimit| + V undergo|,content=delimit| +ֹ V delimit| + V delimit| + ADJ aValue|ֵ,property|,delimit| + N facilities|ʩ,route|· + N location|λ + N mark|־,linear| + N part|,%phenomena| + N regulation|,politics| + N shape|,linear| + N tool|þ,linear|,*fasten|˩ +߲ N material|,metal|,linear| +߳ N bacteria|΢ +ߴ N material|,?clothing| +߶ N part|,image|ͼ +߹ N tool|þ,*measure| +· N facilities|ʩ,linear|,#electricity| +· N facilities|ʩ,route|· + N material|,?clothing| +Ȧ N part|,implement|,#electricity| + N human|,*help|,#police|,crime| + N part|,%phenomena| +̺ N tool|þ,*cover|ڸ + N shape|,linear| +ͷ N part|,%tool|þ,tail|β + N tool|þ,$burn| + ADJ aValue|ֵ,form|״,linear| +ζ N AnimalHuman|,generic|ͳ + ADJ aValue|ֵ,performance| + N tool|þ,*fasten|˩ +װ ADJ aValue|ֵ,property|,$fasten|˩ +װ ADJ publications|鿯 +״ ADJ aValue|ֵ,form|״,linear| + N character|,surname|,human|,ProperName|ר + V estimate|,means=look| + V help| + V look| + ADV {EachOther|໥} +మ V love|,manner=EachOther|໥ +ల ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V help| + V compare|Ƚ +ȹϵ V comparison|ȹϵ +֮ ADV comparison|ȹϵ + N account|,#TakePicture| + V differ|ͬ + V fit|ʺ + V BeOpposite| +ദ V associate| +ഫ V PassOn| +ഫ V disseminate| +൱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +൱ ADV aValue|ֵ,degree|̶,ish| +൱ V equal| +൱Ҫ ADJ aValue|ֵ,importance|,important| + V fit|ʺ,manner=EachOther|໥ + ADJ aValue|ֵ,similarity|ͬ,alike| + V equal| + V equal| + V FitNot| + N knowledge|֪ʶ +෴ ADJ aValue|ֵ,contrariness|,negative| +෴ ADV aValue|ֵ,contrariness|,negative| + V BeSimilar| + V meet| + V fit|ʺ + V fit|ʺ +ศ V fit|ʺ,manner=EachOther|໥ +ศ V fit|ʺ,manner=EachOther|໥ + V relate|й + V from| + ADJ aValue|ֵ,property|,relate|й + V relate|й + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + N human|,female|Ů,*love|,*mating|,undesired|ݬ + N human|,friend| +໥ ADV {EachOther|໥} +໥ V depend| + V meet| + N tool|þ,*record|¼,*TakePicture| + ADJ aValue|ֵ,sequence| + V from| +ཻ V BeAcross|ཻ +ཻ V associate| + V connect| + V BeSimilar| + ADJ aValue|ֵ,distance|,near| + V from| + V BeNear| + V love|,EachOther|໥ + V BeNear| +ò N attribute|,appearance|,skin|Ƥ,AnimalHuman| + V fit|ʺ +Ƭ N image|ͼ,$TakePicture| + V look| +Ȱ V persuade|Ȱ˵ + V discuss| + N shows| +ʶ V associate| +˼ V ThinkOf|˼ +˼ N part|,%tree|,#love|,embryo| +˼ N part|,%tree|,embryo| +˼ N tree| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| +֮ N attribute|,similarity|ͬ,alike|,&entity|ʵ +Ტ V MakeEqual|ʹ +ͨ V communicate| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +Ͷ V fit|ʺ + V BeSimilar| + ADJ aValue|ֵ,direction| + V facing| + V believe| +μ V inferior| +֮ V comparison|ȹϵ +سϰ V become|Ϊ,isa=habit|ϰ + V depend| +Ϊ V depend| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ ADJ aValue|ֵ,property|,fit|ʺ +ӳ V ServeAsFoil| +ӳȤ V ServeAsFoil| + V associate| + V meet| +Լ V MakeAppointment|Լ +֪ N human|,friend| +ֽ N paper|ֽ,#TakePicture| + V love| +ײ V bump|ײ + V FitNot| + N location|λ + N room| + N room|,%InstitutePlace|,@recreation|,#shows| + N room|,%LandVehicle| +᷿ N room| + V inlay|Ƕ +ⱦʯ ADJ aValue|ֵ,appearance| +Ƕ V inlay|Ƕ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N attribute|,odor|ζ,&physical|,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| +㰸 N furniture|Ҿ,*salute|¾,#humanized| +㲨 N tool|þ,*wash|ϴ,#hair|ë + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +㳦 N food|ʳƷ + N attribute|,GoodBad|û,&thing| +㴻 N part|,%vegetable|߲,embryo|,$eat| +㴻 N vegetable|߲ + N tool|þ,*MakeUp|ױ,fragrant| + N food|ʳƷ + N place|ط,city|,ProperName|ר,(China|й) +ۻع V include|,patient=place|ط +ر N place|ط,city|,ProperName|ר,(China|й) + N place|ط,happy|,#lucky| +㹽 N part|,%vegetable|߲,embryo|,$eat| +㹽 N vegetable|߲ + N fruit|ˮ + N tool|þ,$burn|,*salute|¾,#humanized| +㽶 N fruit|ˮ +㾫 N material|,?edible|ʳ,?tool|þ,fragrant| + N human|,religion|ڽ,*salute|¾ + N material|,?edible|ʳ,fragrant| + N material|,?tool|þ,fragrant| +ϳ N InstitutePlace|,*produce|,#material|,fragrant| + N human|,commercial| +¯ N tool|þ,@burn|,*salute|¾,#humanized| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +Ƭ N material|,?drinks|Ʒ + N FlowerGrass|,?material| + N attribute|,odor|ζ,&physical|,fragrant| +ˮ N tool|þ,*MakeUp|ױ,fragrant| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N attribute|,odor|ζ,&physical|,fragrant| + N CloudMist| + N addictive|Ⱥ + N material|,?food|ʳƷ,liquid|Һ +ɴ N material|,?clothing| + N tool|þ,*wash|ϴ,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| + N fruit|ˮ + N drinks|Ʒ,$addict|Ⱥ +ľ N drinks|Ʒ,$addict|Ⱥ + N tree| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N shape|,cubic| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + V help| + N human|,#occupation|ְλ,official| + V help| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tree| + N tree| + N institution|,#place|ط,politics| + N place|ط,#agricultural|ũ,village| + N place|ط,@ComeToWorld| + N human|,vulgar|,village|,undesired|ݬ +糤 N human|,#occupation|ְλ,official|,village| + N place|ط,#agricultural|ũ,village| + N place|ط,#agricultural|ũ,village| + N human|,#reside|ס,village| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld|,village| + N human|,#reside|ס,village| + N human|,village| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N human|,#place|ط + N human|,#place|ط,village| + N human|,#reside|ס,village| + N human|,village| + N human|,#village| + ADJ aValue|ֵ,source|Դ,original|ԭ + N place|ط,@ComeToWorld| + N place|ط,village| + N human| + N sound|,#language|,original|ԭ +Ը N human|,fake|α,undesired|ݬ + N place|ط,village|,city| + N place|ط,@ComeToWorld| + V fly| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N CloudMist|,desired| + N mark|־,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + V check| + V read| + N text|,detailed| +꾡 ADJ aValue|ֵ,content|,detailed|,desired| + N attribute|,content|,&information|Ϣ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + N information|Ϣ,detailed| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + V express|ʾ +̸ V express|ʾ +ϸ ADJ aValue|ֵ,content|,detailed|,desired| +ע V explain|˵,manner=detailed| +ע N part|,%text|,$explain|˵,detailed| + V ThinkOf|˼ + V regard|Ϊ + V think|˼ + V willing|Ը + ADV {comment|} +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +벻 V upset| +벻 V BeUnable|,content=remember|ǵ +뵱Ȼ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ÿ V AtEase| +뷨 N thought|ͷ +뷨 V try| +뷽跨 V try| + V ThinkOf|˼,content=family| + V deduce| + ADV {comment|} + V ThinkOf|˼ + V remember|ǵ + V remember|ǵ,Vachieve| +Ƿ V guess|² +ͷ N aspiration|Ը,expect| + V expect| + V think|˼ + ADJ aValue|ֵ,ability|,able|,guess|² + V guess|² + N attribute|,ability|,#guess|²,&human| + V MakeSound| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound| +쳹 V MakeSound| +쳹 V MakeSound|,LocationFin=sky| +쵱 ADJ aValue|ֵ,trueness|α,true|,desired| +춯 N sound| + N attribute|,SoundVolume|,&MakeSound|,&physical| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundVolume|,loud| + V MakeSound| + N MusicTool| + N sound| +β N beast| + ADJ aValue|ֵ,SoundVolume|,loud| +Ӧ V respond|Ӧ + V enjoy| + V enjoy|,content=happy| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V enjoy|,content=joyful|ϲ + ADJ thinking|˼,#expect|,#enjoy| + V pass|ȹ + V enjoy| + V enjoy| + V own| +ʢ V own|,possession=glorious| + V own|,possession=glorious| + V own|,possession=glorious|,location=place|ط + CLAS NounUnit|,&event|¼ + N character|,surname|,human|,ProperName|ר + N fund|ʽ + N part|,%AnimalHuman|,head|ͷ + N symbol| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ,$PutOn| +Ŀ N affairs| +Ȧ N tool|þ,*decorate|װ,$PutOn| + N facilities|ʩ,route|· + N facilities|ʩ,mine| + N part|,%facilities|ʩ,route|·,mouth| +β N part|,%facilities|ʩ,route|·,tail|β + N expression| +ս N fact|,fight|,#route|· + N facilities|ʩ,route|· + N tree| + N material|,?tool|þ +Ƥ N material|,?tool|þ +Ƥ N stationery|ľ,*wipe| +ʵ N part|,%tree|,embryo| + N tree| + V BeSimilar| + N attribute|,similarity|ͬ,&entity|ʵ + N image|ͼ + N image|ͼ,#human| + ADJ {comment|} + ADV {comment|} + PREP {contrast} + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ƭ N image|ͼ,$TakePicture| + ADJ aValue|ֵ,standard|׼,average| + N tool|þ,*PutOn| + N character|,surname|,human|,ProperName|ר + N direction| + V endorse|ӵ + V facing| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + PREP {beneficiary} + PREP {direction} + PREP {source} + PREP {target} +... V ExpressAgainst|Ǵ +... V call|ٻ + N human|,*guide| +Ϸ ADJ aValue|ֵ,direction|,east|,south| + ADJ aValue|ֵ,direction|,east| + N attribute|,performance|,&inanimate| + ADV aValue|ֵ,direction|,hind| + ADV aValue|ֵ,frequency|Ƶ,often| + N symbol|,#quantity| + ADV aValue|ֵ,direction|,external| + ADV aValue|ֵ,direction|,internal| +ǰ ADJ aValue|ֵ,direction|,InFront|ǰ +ǰ V look|,direction=future| +տ N crop|ׯ + ADV aValue|ֵ,direction|,upper| +б ADJ aValue|ֵ,form|״,slanted| + V expect| + ADJ aValue|ֵ,direction|,west|,south| + ADV aValue|ֵ,direction|,beneath| +б ADJ aValue|ֵ,form|״,slanted| + N attribute|,strength|,&physical| + V facing|,direction=(sun|̫) + N FlowerGrass| + ADV aValue|ֵ,direction| +ҿ N expression|,*order| + V melancholy| + V melancholy| + V endorse|ӵ + V facing| + ADV aValue|ֵ,direction| + N expression|,*order| + N attribute|,form|״,&physical| + N beast| + N part|,%tool|þ,#recreation| + ADJ aValue|ֵ,correctness|,correct|ȷ + N tool|þ,*recreation| + N part|,%space|ռ + N character| + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,ProperName|ר + N facilities|ʩ,HighRank|ߵ + ADJ aValue|ֵ,standard|׼,average| + V mean|ָ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V obey|ѭ,content=regulation| +ǽ N part|,%building|,skin|Ƥ +ɪ V MakeSound| +ɪ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ɭ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V decline|˥,commercial| + N sound| + N chemical|ѧ + V produce| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N CloudMist|,#weapon|,#fight| + N CloudMist| + N sky| + N sky| + V cut| + V cut|,sport| + V subtract| + N part|,%land|½,skin|Ƥ + V subtract|,scope=price|۸,commercial| + V subtract| + V subtract|,commercial| + V beat|,patient=SportTool|˶ + V weaken| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cry| + N disease| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V StateChange|̬,StateFin=liquid|Һ,industrial| + V remove| + V sell|,commercial| + V spend|,commercial| + V destroy| + V joyful|ϲ + V tell|,content=due| + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + N quantity|,amount|,$sell|,physical|,commercial| +· N attribute|,circumstances|,&sell| +伣 V disappear|ʧ + V sell|,commercial| +۶ N quantity|,amount|,#sell|,&money| + N quantity|,amount|,$sell|,physical|,commercial| +һ V disappear|ʧ,#sell|,commercial| + V handle|,crime| + V remove|,LocationIni=account|,commercial| + N tool|þ,*fix|ס + V WhileAway| + V disappear|ʧ + V pass|ȹ + V remove| + V change| + V disheartened| + V remove| + V AlterProperty|,PatientAttribute=property| + V AlterProperty|,PatientAttribute=spotless|,medical|ҽ + N medicine|ҩ,*AlterProperty|,#spotless| + N affairs|,obstruct|ֹ,#fire| + N fact|,remove|,#fire| + N LandVehicle|,*remove|,#fire| + N institution|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +ͧ N ship|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +վ N institution|,*remove|,#fire| + V exhaust| + V spend|,commercial| +Ʒ N artifact|˹,generic|ͳ + N human|,*spend|,*buy|,commercial| + V exhaust| + V exhaust|,commercial| + V spend|,commercial| + V consume|ȡ + N disease| +֢ N disease| +ϵͳ N part|,%AnimalHuman|,viscera|,*consume|ȡ +˨ N facilities|ʩ,*remove|,#fire| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + V remove| + V destroy| + V disappear|ʧ +ĥ V exhaust| +ĥ V pass|ȹ + V calm| +Dz V WhileAway| +Dz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ɢ V disappear|ʧ + V remove|,ResultEvent=sound| +ʧ V disappear|ʧ +ʳ V consume|ȡ + V disappear|ʧ + V remove| + V endure| + V enjoy| + ADJ aValue|ֵ,fatness|,bony| + V pass|ȹ + V restrain|ֹ,ResultEvent=hot| + V exhaust| + N disappear|ʧ + V perish| +Ϣ N information|Ϣ +Ϣͨ V know|֪,#information|Ϣ,manner=fast| + V pass|ȹ,patient=summer| + V WhileAway| + V cure|ҽ +ҹ N food|ʳƷ,generic|ͳ + V cure|ҽ + V remove|,patient=swollen| + V restrain|ֹ + N time|ʱ,day|,night| + N fact|,restrain|ֹ,night|,police| + V MakeMisunderstand|ʹ֪ + V know|֪ + N time|ʱ,day|,early| + V know|֪ +ʾ V tell| +Դ V tell|,content=correct|ȷ + V tell|,content=ProsCons| + V tell| +С ADJ aValue|ֵ,age|,young| +С ADV aValue|ֵ,duration|,TimeShort| +С ADJ aValue|ֵ,importance|,secondary| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +Сײ N part|,%vegetable|߲,embryo|,$eat| +Сײ N vegetable|߲ +Сٻ N artifact|˹,commercial|,generic|ͳ +С N part|,%InstitutePlace|,education| +С N publications|鿯,#news| +С ADJ aValue|ֵ,clan| +С N human|,clan|,young| +С V excrete|й,patient=liquid|Һ +С N liquid|Һ,#AnimalHuman|,waste|,$excrete|й +С N part|,%AnimalHuman|,male|,*excrete|й,#liquid|Һ +С N part|,%AnimalHuman|,hair|ë +С N part|,%human|,hair|ë +С N result|,wrong|,undesired|ݬ +С N part|,%text|,name| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +С V walk|,military| +С V music| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +С V labour|ٲ +С N part|,%AnimalHuman|,viscera| +С N LandVehicle| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +СԲ N InstitutePlace|,@eat|,commercial| +СԵ N InstitutePlace|,@eat|,commercial| +С N human|,*perform|,entertainment| +С V IllBehave| +С N ship| +С N time|ʱ,month| +С N time|ʱ,season| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N facilities|ʩ,route|· +СϢ N information|Ϣ,$disseminate|,hidden| +С N human|,family|,male| +С PRON {firstPerson|} +С N attribute|,SoundQuality|,&music| +С N music| +С N method|,sly|,undesired|ݬ +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N part|,%AnimalHuman|,body| +С N community| +С N quantity|,amount|,few|,&physical| +СС N phenomena|,desired| +С N human|,intimate|,male|,young| +С N human|,young| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N part|,%InstitutePlace|,*cure|ҽ,#young| +С֢ N disease| +С N human|,#occupation|ְλ,commercial| +С N payment|,#commercial| +Сֶ N part|,%army|,military| +С N part|,%AnimalHuman|,body| +С N shows| +С N human|,#occupation|ְλ,employee|Ա +С N human|,intimate|,female|Ů +С N MusicTool| +С N clothing|,#body| +С N humanized|,young| +С N human|,young| +С N human|,royal|,young| +С N human|,young| +С N time|ʱ,day|,cold| +С N MusicTool| +С N human|,religion|ڽ,male|,young| +С N human|,young|,male| +С N community|,undesired|ݬ +С N FlowerGrass|,?medicine|ҩ +Сұ N human|,female|Ů,beautiful| +С ADJ aValue|ֵ,size|ߴ,small|С +С N time|ʱ,month| +С N human|,brave| +С N part|,%human|,female|Ů,past|,foot| +Сγ N LandVehicle| +С N fact|,secondary| +С N part|,%music| +С V explain|˵ +С N text|,#readings| +С V excrete|й,patient=liquid|Һ +С N human|,female|Ů +С N part|,%clothing|,body| +С N time|ʱ,month| +С N facilities|ʩ,route|· +С N human|,intimate|,male| +С N human|,young|,rich| +С V despise| +С ADJ aValue|ֵ,richness|ƶ,rich|,desired| +С N human|,intimate|,female|Ů +С N human|,intimate|,mass|,family| +С N quantity|,amount|,few|,&physical| +С· N facilities|ʩ,route|· +С N crop|ׯ +С N InstitutePlace|,*sell|,@buy|,commercial| +С N time|ʱ,day| +Сè N beast| +С N human|,family|,female|Ů +С N material|,?food|ʳƷ,#crop|ׯ +СĴָ N part|,%AnimalHuman|,hand| +С N part|,%AnimalHuman|,head|ͷ +С N human|,young| +Сũ N human|,#occupation|ְλ,agricultural|ũ +Сũ N affairs|,produce|,nonextensive| +СŮ N human|,family|,female|Ů +С V run| +С N human|,young| +СƷ N shows| +Сҵ N human|,#occupation|ְλ,commercial| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N human|,miser|,undesired|ݬ +С N LandVehicle| +СǮ N money| +СǮ N payment|,#commercial| +С ADJ aValue|ֵ,quality|,refined|,desired| +С N human|,young| +С N place|ط,@reside|ס,#house| +СȦ N community| +С N human|,secondary| +С N human|,undesired|ݬ,evil| +С N publications|鿯 +С N human|,secondary| +С N phenomena|,family| +С N part|,%AnimalHuman|,mouth| +Сʱ N time|ʱ,hour|ʱ +Сʱ ADJ aValue|ֵ,time|ʱ,#young| +С N fact|,secondary| +С N human| +С V despise| +С N fact|,cure|ҽ +СС ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +СС ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N time|ʱ,day| +С N symbol|,#quantity|,#DoSum| +С N symbol|,#quantity| +С˯ V sleep|˯ +С˵ N publications|鿯 +С˵ N human|,*compile|༭,#readings|,literature| +Сմ N material| +С N MusicTool| +С N human|,*perform|,entertainment| +С N space|ռ,private|˽ +Сͧ N ship| +С͵ N human|,*steal|͵,crime|,undesired|ݬ +С N part|,%AnimalHuman|,leg| +СԳ N LandVehicle| +С׼ V inferior| +С N house| +С N fittings| +СϪ N waters|ˮ +Сд ADJ aValue|ֵ,pattern|ʽ,&character| +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +СĽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +С۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +С ADJ aValue|ֵ,size|ߴ,small|С +С N weapon|,ship|,military| +Сè N beast| +Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +Сѧ N human|,*study|ѧ,education| +СѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Сѩ N time|ʱ,day| +Сѭ N phenomena| +С N time|ʱ,month| +С N artifact|˹,generic|ͳ,#example|ʵ +С N clothing|,#leg| +С˼ N fact|,secondary| +С˼ N tool|þ,generic|ͳ,$GiveAsGift| +С ADJ aValue|ֵ,size|ߴ,small|С,more| +С ADJ qValue|ֵ,amount|,few|,more| +С N RainSnow|ѩ +С N disease|,#GiveBirth| +С N time|ʱ,month| +С N edible|ʳ,generic|ͳ +Сվ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +С N place|ط,city| +Сָ N part|,%AnimalHuman|,hand| +С N human|,young| +С N attribute|,name|,&entity|ʵ +С N character|,small|С +Сֱ ADJ aValue|ֵ,clan| +С N part|,%organization|֯ +С N human|,young| +С N human|,young| +С N human|,young|,female|Ů +С V rest|Ϣ +Т ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N emotion|,condole|° +Т N emotion|,loyal|Т +Т N clothing|,*condole|° +Т V GiveAsGift| +Т V loyal|Т +Т˳ N emotion|,loyal|Т +Т˳ V loyal|Т +Т N emotion|,loyal|Т +Т N human|,*loyal|Т,family|,desired| +Т N human|,desired|,family|,*condole|° +Т N human|,*loyal|Т,family|,desired| +У N InstitutePlace|,@teach|,@study|ѧ,education| +У V check| +У N human|,#occupation|ְλ,official|,education| +У N human|,official|,education| +У V check| +У V check| +УԱ N human|,#occupation|ְλ,*check| +У N institution|,education| +У N attribute|,behavior|ֹ,&InstitutePlace|,education| +У N clothing|,education| +У V amend| +У N human|,#occupation|ְλ,official|,military| +У V check| +У N human|,female|Ů,education| +У N tool|þ,$PutOn|,mark|־,education| +У ADJ aValue|ֵ,attachment| +У V check| +У N part|,%InstitutePlace|,mouth| +У N fact|,congratulate|ף,education| +У N house|,education| +У ADJ aValue|ֵ,attachment|,education| +У N affairs|,education| +У V check| +Уҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,education| +У N human|,friend|,education| +Уѻ N community|,friend|,education| +У԰ N part|,%InstitutePlace|,education| +У V check| +У V amend| +Уַ N location|λ,%InstitutePlace|,education| +У׼ N fact|,check| +Ф V BeSimilar| +Ф N image|ͼ +Ф N image|ͼ +Ф񻭼 N human|,*draw|,literature| +Х V MakeSound| +Х V cry| +Х V MakeSound|,manner=free| +Х V collude| +Х V MakeSound| +Ц V LaughAt|Ц +Ц V laugh|Ц +Ц N information|Ϣ,*LaughAt|Ц +Ц V laugh|Ц +Ц V LaughAt|Ц +Ц N information|Ϣ,*LaughAt|Ц +Цٳ V err| +Цڳ V laugh|Ц,frequency=often| +Цص ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ц N attribute|,countenance|,laugh|Ц,&human| +Ц N information|Ϣ,*LaughAt|Ц +Ц V ExpressAgainst|Ǵ +Ц V laugh|Ц +Ц滢 N human|,fake|α,sly|,undesired|ݬ +Ц V receive| +Ц N gas| +Ц N attribute|,countenance|,laugh|Ц,&human| +Цݿ V laugh|Ц +Ц V laugh|Ц +Ц̸ N information|Ϣ,*LaughAt|Ц +Ц N part|,%AnimalHuman|,skin|Ƥ +Ц V laugh|Ц +ЦЦ V laugh|Ц +Цտ V laugh|Ц +Ц N part|,%human|,skin|Ƥ +Ц N part|,%human|,skin|Ƥ,#laugh|Ц +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V imitate|ģ +Ч V imitate|ģ +Ч N attribute|,effect|Ч,&act|ж +Ч V engage| +Ч V engage| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Чʺܲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч V engage|,manner=endeavour| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +ЧӦ N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V endeavour|,manner=faithful| +Ш V beat| +Ш N part|,%artifact|˹,*fix|ס +Ш N tool|þ,*fix|ס +Щ ADV aValue|ֵ,degree|̶,ish| +Щ΢ ADV aValue|ֵ,degree|̶,ish| +Щ ADJ qValue|ֵ,amount|,some|Щ +Ъ V cease|ͣ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V sleep|˯ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V rest|Ϣ,#SelfMove| +Ъ V enjoy|,content=chilly| +Ъ V sleep|˯,time=afternoon| +Ъ V cease|ͣ +Ъ V reside|ס,time=night| +ЪϢ V rest|Ϣ +ЪϢ V sleep|˯ +ЪЪ V rest|Ϣ +Ъҵ V cease|ͣ,content=affairs|,commercial| +Ы N InsectWorm| +Ы N InsectWorm| +Ы N InsectWorm| +Ь N clothing|,#foot| +Ь N tool|þ,#clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N part|,clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N human|,#occupation|ְλ,#clothing|,#foot|,industrial| +Ьñ N clothing|,#head|ͷ,#foot| +Ьˢ N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Ь N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Э V help| +Э V coordinate|Э +Э N human|,*coordinate|Э,military| +Эһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э V fit|ʺ +Э N community| +Э V help|,scope=manage| +Э V cooperate| +Э V discuss| +Э N human|,*discuss| +Эͬ V cooperate| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э N agreement|Լ +Э V help| +Э N music| +Э V cooperate| +Э N human|,*cooperate| +Ю V hold| +Ю V control|,means=fierce| +Ю V control|,means=fierce| +Я V bring|Я +Я V guide| +Я V bring|Я +Я N human|,*bring|Я +Я ADV aValue|ֵ,behavior|ֹ,together|ͬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,strength|,strong|ǿ,undesired|ݬ +а· N facilities|ʩ,route|·,wrong| +аŶ ADJ aValue|ֵ,kind|,queer| +а N attribute|,SocialMode|,evil|,&entity|ʵ +б ADJ aValue|ֵ,form|״,slanted| +б N attribute|,slope|¶,&inanimate| +б N facilities|ʩ,mine| +б N attribute|,slope|¶,&inanimate| +б N part|,%physical|,surfacial|,slanted| +б N part|,%land|½,skin|Ƥ +б V firing|,manner=slanted|,military| +б V illuminate|,manner=slanted| +б V disease|,#eye| +б V look|,manner=slanted| +б ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| +б N shape|,#clothing| +б N image|ͼ,linear| +б N disease|,#eye| +б N human|,*disable|м,#eye| +б N celestial| +в V force|ǿ +в V force|ǿ +в V hold| +вЦ V please|ȡ +в V force|ǿ +г ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +г N shape| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г N attribute|,similarity|ͬ,alike|,&sound| +г N phenomena|,#sound| +г V LaughAt|Ц +д V compile|༭ +д V describe|д +д V write|д +д N attribute|,style|,&text| +д N method|,*write|д +д V draw|,literature| +дʵ V describe|д +д V write|д,ContentProduct=letter|ż +д ADJ aValue|ֵ,circumstances|,peaceful|,desired| +д V satisfied| +д V describe|д +д N text|,*describe|д +д V describe|д +д V draw| +д V write|д +дּ N room|,#employee|Ա,@engage| +д̨ N furniture|Ҿ,@put| +д V compile|༭ +е N implement|,generic|ͳ +е N tool|þ,police|,*punish|,#crime| +е V fight| +ж V TakeAway|ᶯ +ж V dismount|ж +ж V refuse| +ж V remove| +ж V TakeAway|ᶯ,LocationIni=LandVehicle| +ж V TakeAway|ᶯ,patient=artifact|˹ +жĥɱ¿ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ж V cease|ͣ,content=undertake| +ж V TakeAway|ᶯ +жװ V StripOff|ȥ,patient=clothing|,entertainment| +з N fish| +з N food|ʳƷ +з ADJ aValue|ֵ,color|ɫ,BlueGreen| +и ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +й V release|ͷ +й V reveal|¶ +й V reveal|¶,patient=event|¼ +й V release|ͷ,patient=water|ˮ +й V disheartened| +й© V reveal|¶ +й¶ V reveal|¶ +й V reveal|¶,patient=event|¼ +й V disheartened| +к V StomachTrouble|֢ +к V flow| +к V StomachTrouble|֢ +л V apologize|Ǹ +л N character|,surname|,human|,ProperName|ר +л V decline|˥ +л V thank|л +л V reject|ؾ +л V die| +лл V grateful|м +л N letter|ż,*thank|л +лл V thank|л +л N emotion|,grateful|м +л V apologize|Ǹ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м N shape| +н N material|,wood|ľ,*lighting|ȼ,$burn| +н N payment| +н N payment| +н V PassOn| +нˮ N payment| +нˮ׼ N human|,$employ| +н̿ N tree|,?material| +о N part|,%artifact|˹,heart| +оƬ N part|,%artifact|˹,heart| +о N part|,%tool|þ,$burn|,heart| +о N part|,beast|,mouth| +п N metal| +п N tool|þ,*print|ӡˢ + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ +Ȼ V aValue|ֵ,circumstances|,happy|,desired| +Ȼ ADV aValue|ֵ,circumstances|,happy|,desired| + V FondOf|ϲ + V enjoy| +ο V satisfied| +Ϥ V know|֪,manner=joyful|ϲ +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=extreme| + V admire|Ľ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N character|,surname|,human|,ProperName|ר + N fact|,past|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,taste|ζ,peppery| + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,time|ʱ,now| + N place|ط,country|,ProperName|ר,(Singapore|¼) +± N money|,(Uruguay|) +± N human|,military|,$include| +³ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +³´л V metabolize|л,medical|ҽ +³ɺ N emotion|,hate|,undesired|ݬ +´ N time|ʱ,spring|,early| +´ѽ N time|ʱ,festival|,@congratulate|ף +´½ N place|ط,ProperName|ר +µ N place|ط,capital|,ProperName|ר,(India|ӡ) +· N room|,@reside|ס,#GetMarried| +¸ N human|,female|Ů,*GetMarried| +ºʲ N place|ط,provincial|ʡ,ProperName|ר,(US|) +» N institution|,news|,ProperName|ר,(China|й) +»ͨѶ N institution|,news|,ProperName|ר,(China|й) +» V GetMarried|,now| +» N human|,family|,mass|,*GetMarried| +¼Ԫ N time|ʱ +¼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Singapore|¼) +¼ N place|ط,country|,ProperName|ר,(Asia|) +¼ N human|,#country|,ProperName|ר,(Singapore|¼) +¼Ԫ N money|,(Singapore|¼) +½ V build| +½ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ά N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ N human|,friend|,now| +½ ADV aValue|ֵ,time|ʱ,now| +¾ N {newness|¾} +¾ N house|,new| +¿ N attribute|,pattern|ʽ,new|,&artifact|˹ + N human|,male|,*GetMarried| + N knowledge|֪ʶ +ī N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů,*GetMarried| + N human|,female|Ů,*GetMarried| +ƪ N part|,%readings|,new| + ADJ aValue|ֵ,kind|,queer| + N place|ط,new|,#human| + N human| + N human|,female|Ů,*GetMarried| + ADJ aValue|ֵ,newness|¾,new|,#undertake| + N attribute|,newness|¾,new|,occupation|ְλ + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,*study|ѧ,education| + N human|,*study|ѧ,education|,now| + N phenomena|,desired| + N time|ʱ,past| + N human|,young|,$GiveBirth|,now| +ʫ N text| +ʯʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,unable|ӹ + N publications|鿯,immediate| + N publications|鿯,new| +ľ N army|,ProperName|ר,past| + N money|,(Peru|³) +̨ N money|,(Taiwan|̨) + N news| +ų N institution|,#news| +Ŵ N institution|,#news| +ŷ N human|,announce| +Ÿ N readings|,#news| +Ÿ N text|,news| +Ź N affairs|,#news| +Ź N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ź N readings|,#news| +Ź㲥 N fact|,disseminate|,#news| +ż N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ż V check|,content=news| +Ž N community|,#news| +Žʿ N human|,*gather|ɼ,*compile|༭,#news| +ý N institution|,*disseminate|,#news| +Ƭ N shows|,#news| +Ա N human|,*analyze|,#news| + N human|,#news| +ҵ N affairs|,#news| +ֽ N paper|ֽ +רԱ N human|,#occupation|ְλ,official|,*manage|,news|,diplomatic|⽻ + N system|ƶ,#news|,free| + N place|ط,country|,ProperName|ר,(Oceania|) + N human|,#country|,ProperName|ר,(New Zealand|) +Ԫ N money|,(New Zealand|) + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| +һ N attribute|,clan|,new|,&thing| +ɫл˶ N money|,(Israel|ɫ) + N thinking|˼,new| +ӱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ԫ N money|,(Singapore|¼) + N celestial| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V add| + N regulation|,politics|,new| +װ N clothing|,new| +ߗ N place|ط,@reside|ס,#house| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ + N mental| + N part|,%AnimalHuman|,heart| + N part|,%thing|,heart| +İ V like|ϧ +İ V AtEase| +İ V AtEase| +İ N part|,%AnimalHuman|,heart| +İ N disease| +IJ N fact|,secret| +IJ N fact|,worried|ż +IJ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +IJ N thought|ͷ +ij N thought|ͷ +ij N thought|ͷ +ij V excited| +ij V expect| +Ĵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ĵ N experience| +ĵ N location|λ,%heart| +ĵ N attribute|,behavior|ֹ,&human| +ĵխ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ĵͼ N image|ͼ,#cure|ҽ,medical|ҽ +Ķ V excited| +Ķ V jump| +Ķ N part|,%AnimalHuman|,heart| +ķ V upset| +ķ V upset| +ķ N part|,%AnimalHuman|,heart| +ķڷ V believe| +ĸ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĸ ADJ aValue|ֵ,content|,secret| +ĸ N human|,friend| +ĸ֮ N disease| +ĸ֮ N phenomena|,undesired|ݬ,#unfortunate|,dangerous|Σ +ĸԸ V willing|Ը +ĸ N attribute|,behavior|ֹ,&human| +ĸ N human|,$like|ϧ +Ĺ ADJ aValue|ֵ,fatness|,fat| +ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ļŭ V joyful|ϲ +Ļ V cherish|Ļ +Ļ V flurried| +Ļ V disheartened| +Ļ V disheartened| +Ļ N thinking|˼ +ļ N part|,%AnimalHuman|,heart| +ļ N disease| +ļ N disease| +ļ N thinking|˼ +ļ V worried|ż +ļ V worried|ż +ļ V ill|̬ +ļ V plan|ƻ +Ľ V worried|ż +Ľʹ N disease| +ľս V fear| +ľ V fear| +ľ V calm| +ľ N attribute|,circumstances|,&mental| +Ŀ N thinking|˼ +Ŀ N part|,%AnimalHuman|,heart| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +Ŀ V satisfied| + N mental| + ADJ aValue|ֵ,attachment|,mental| +ѧ N knowledge|֪ʶ,#mental| +ѧ N human|,#knowledge|֪ʶ,#mental| +ս N fact|,fight|,#mental| +ﻰ N experience|,sincere|,desired| + N mental| + N tired|ƣ +˥ N disease| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N mental| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V understand| + V understand| +· N attribute|,tolerance|,&human| +· N attribute|,wisdom|ǻ,&AnimalHuman| +· N purpose|Ŀ + N attribute|,speed|ٶ,&jump| + N quantity|,rate|,&jump| + V uneasy| + V satisfied| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ŀ N thinking|˼ +ƽ V AtEase| + ADJ aValue|ֵ,behavior|ֹ,urgent| + N attribute|,circumstances|,&thinking|˼ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N mental| +絶 V sorrowful| +絶 V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ + N location|λ,%heart| + N human|,$love| + N mental| + N aspiration|Ը,expect| + N thinking|˼ + N part|,%AnimalHuman|,heart| + N thought|ͷ +˼ N mental| +˼ N thought|ͷ + V sorrowful| + V calculate| + V sorrowful| +̬ N attribute|,circumstances|,&thinking|˼ + V like|ϧ + V sorry|ϧ + N mental| + V ill|̬ +ʹ V sorrowful| +ʹ ADJ sorrowful| +ͷ N mental| + N stone|ʯ,?material| +Ѷ N part|,%AnimalHuman|,heart| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N mental| + V think|˼ + V admire|Ľ +ӡ ADJ FondOf|ϲ,manner=EachOther|໥ + N attribute|,behavior|ֹ,&human| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + V GuiltilyConscious| + N attribute|,circumstances|,&thinking|˼ + V FeelingByBad| +Ѫ N mental| +Ѫ N part|,%AnimalHuman|,nerve| +Ѫ V excited| +۶ N attribute|,tolerance|,&human|,&organization|֯ +۶ N attribute|,wisdom|ǻ,&AnimalHuman| +۶ N experience|,doubt| +۶ N purpose|Ŀ +۶ N thinking|˼ + N emotion|,kindhearted|,desired| + N purpose|Ŀ + V BeUnable| + V fear| +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ը N aspiration|Ը,expect| +óϷ V believe| + N part|,%AnimalHuman|,heart| +Ĥ N disease| +ಡ N disease| +ֱڿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N location|λ,%heart| + V ignorant|֪ + V know|֪ + N part|,%physical|,heart| + V joyful|ϲ + N part|,%human|,heart| + V believe| + N experience|,believe| + N information|Ϣ + N information|Ϣ,*prove|֤ + N letter|ż + N part|,%weapon| +Ų V walk| +Ŵ N affairs|,lend|,borrow|,commercial| +ŵ N language|,#country|,ProperName|ר +ŷ V communicate| +ŷ N tool|þ,@put|,#letter|ż +ŷ N wind| +ŷ V believe| +ŷ V believe| +Ÿ N bird|,*post|ʼ +ź N letter|ż +ź N symbol| +ź N symbol|,#hand|,$show| +źŵ N tool|þ +Ż V post|ʼ,instrument=letter|ż +ż N paper|ֽ,@write|д +ż N letter|ż +Ž V include|,religion|ڽ +ſڴƻ V TalkNonsense|Ϲ˵ +ſڿ V TalkNonsense|Ϲ˵ + V believe| + N human|,*believe| + N experience|,believe| +ȿ N letter|ż + V believe| +ͱط ADJ aValue|ֵ,SocialMode|,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʹ N human|,#occupation|ְλ,*post|ʼ +ĵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V obey|ѭ + N thinking|˼ +ͽ N human|,*obey|ѭ +ͽ N human|,religion|ڽ + V entrust|ί +й˾ N InstitutePlace|,commercial| + N artifact|˹,generic|ͳ +Ϣ N information|Ϣ +Ϣḻ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +Ϣ N quantity|,amount|,&information|Ϣ +Ϣ N knowledge|֪ʶ,#information|Ϣ + N tool|þ,cubic|,@put|,#letter|ż + N emotion|,believe| +İٱ V believe| + V believe| + N experience|,believe| +Ϊ V believe| + N experience|,believe| + N attribute|,reputation|,&human|,&organization|֯ +÷ſ N money|,$lend|,commercial| +ÿ N coupon|Ʊ֤,#money| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֤ N letter|ż,#fund|ʽ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N letter|ż +ֽ N paper|ֽ,@write|д,#letter|ż + N celestial| + N human|,*perform|,entertainment| + N mark|־ + N shape| +dz N celestial| +dz N InsectWorm| +Ƕ N celestial| +ǹ N lights| +Ǻ N celestial| +ǻ N celestial| +ǻ N fire| +Ǽ ADJ aValue|ֵ,rank|ȼ +Ǽ ADJ aValue|ֵ,location|λ,#celestial| +ǿ N sky| +岼 ADJ qValue|ֵ,amount|,many| + N time|ʱ,week| +ڶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| + N celestial| +ս N plans|滮,*defend|,#celestial|,military| +ɢ V disperse|ɢ + N celestial| + N celestial| + N mark|־,#country|,(US|) + N celestial| +ϵ N celestial| +ϵ ADJ aValue|ֵ,location|λ,#celestial| + N celestial| + N shape| +ǵ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| +ƶת V SelfMoveInManner|ʽ,#time|ʱ + N celestial| +״ ADJ aValue|ֵ,form|״ + N celestial| + ADJ aValue|ֵ,odor|ζ,stinky| +ȳ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ȷѪ N phenomena|,miserable|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky| +ζ ADJ aValue|ֵ,odor|ζ,stinky| + ADJ aValue|ֵ,odor|ζ,stinky| + N beast| +ɺ ADJ aValue|ֵ,color|ɫ,red| +ɺ N disease| + N beast| +̬ V pretend|װ + N emotion|,FondOf|ϲ + V prosper| + V start|ʼ + V urge|ʹ +˰ V establish| +˳ V excited| +˷ V excited| +˷ ADJ excited| +˷ܲ V excited|,degree=extreme| +˷ܼ N medicine|ҩ,*CauseToDo|ʹ,#excited|,sport|,undesired|ݬ +˷ܼ N InstitutePlace|,*check|,#medicine|ҩ,sport| +˷ V MakeTrouble| +˸߲ V joyful|ϲ +˹ V CauseToGrow|ʹɳ,patient=country| +˻ N thought|ͷ +˽ V build| + V improve| +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ũ V CauseToGrow|ʹɳ,patient=agricultural|ũ + V appear| + V begin|ʼ + V prosper| +Ȥ N emotion|,FondOf|ϲ +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʦ V dispatch|Dz,patient=army| +ʦ V mobilize| +ʦ V attack| +˥ N attribute|,effect|Ч,&human|,&organization|֯ +̾ V sigh|̾ +ͷ N emotion|,excited| +ͷ V excited| + N attribute|,effect|Ч,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| + V prosper| +ζ N emotion|,FondOf|ϲ + V build| + ADV {comment|} +ѧ V establish|,patient=education| + V MakeTrouble| + N emotion|,FondOf|ϲ +² V joyful|ϲ + N fact|,damage| + N fact|,punish|,#police| +̳ N facilities|ʩ,space|ռ,@punish|,#crime|,police| +̷ N fact|,punish| +̷ N law|ɷ,*punish|,#crime| +̾ N human|,#occupation|ְλ,police| +̾ V part|,%institution|,*scout|,#crime|,police| +̾ N tool|þ,police|,*punish|,#crime| + N law|ɷ,*punish|,#crime| +ͷ V undergo|,content=release|ͷ,crime|,#police| + N time|ʱ,@punish|,#crime|,police| + ADJ aValue|ֵ,attachment|,crime| +· N human|,crime|,undesired|ݬ +· N fact|,do|,#crime|,crime| +¾ N human|,#occupation|ְλ,police| + N fact|,accuse|ظ,police| +Ϸ N law|ɷ,*punish|,#crime| + N duty|,crime| + V scout|,content=crime|,police| + V part|,%institution|,*scout|,#crime|,police| +Ѷ V interrogate|,police| +촦 V part|,%institution|,*scout|,#crime|,police| + N attribute|,kind|,&physical| + N tool|þ,*produce| +Ͱ N part|,%machine| +͸ N metal| +ͺ N attribute|,kind|,&artifact|˹ + N attribute|,form|״,&physical| +α V FormChange|α +γ V forming|γ +εӰֻ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ζѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +κ N part|,%AnimalHuman|,body| +κ N part|,%human|,body| +μ N attribute|,bearing|̬,&human| + V describe|д +ݴ N part|,%language| +ʽ N attribute|,form|״,&entity|ʵ +ʽ ADJ aValue|ֵ,range|,extensive|,desired| +ʽ ADJ aValue|ֵ,appearance| +ʽ N thinking|˼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&earth| + V BeSimilar| +ƶʵȫȻͬ ADJ aValue|ֵ,similarity|ͬ,different| +̬ N attribute|,form|״,&physical| +̬ѧ N knowledge|֪ʶ,#language| + N attribute|,form|״,&human| + N attribute|,form|״,&inanimate| +ͬ ADJ aValue|ֵ,performance|,useless|,undesired|ݬ + N image|ͼ +ɫɫ ADJ aValue|ֵ,kind|,many| +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ӱ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +״ N attribute|,form|״,&physical| + N character|,surname|,human|,ProperName|ר +̨ N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N InstitutePlace|,commercial| + CLAS NounUnit|,&physical| + V SelfMove| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,effect|Ч,superior| + N affairs| + N attribute|,behavior|ֹ,&human| + N attribute|,clan|,&human| + V conduct|ʵʩ + V exist| + EXPR expression|,*ExpressAgreement|ʾͬ +вͨ ADJ aValue|ֵ,effect|Ч,useless| +г N human|,#occupation|ְλ,official|,commercial| +г V VehicleGo|ʻ,#LandVehicle| +г N attribute|,distance|,&event|¼ +г N process|,wave|ڶ,#machine| +д V VehicleGo|ʻ,#ship| +д V kill|ɱ,manner=crime|,police| +е N affairs| +еͨ ADJ aValue|ֵ,effect|Ч,superior| +ж V do| +ж N fact|,#act|ж +з N human|,#occupation|ְλ,commercial| +з V mating| +и V benefit| +й N house|,royal| +к V WellTreat|ƴ +л N expression| +л V entice|,means=GiveAsGift|,crime| +м N human|,desired|,able| +м N human|,desired|,able| +н ADV aValue|ֵ,time|ʱ,future| +нľ V decline|˥ +н V rob| +н V GoForward|ǰ +н N community|,#LandVehicle|,*SelfMove| +о V GoThrough| +о V excrete|й,medical|ҽ +о N fact|,act|ж +о N SelfMove|,#army|,military| + V SeekPleasure|Ѱ + N artifact|˹,#tour| + V salute|¾ + N shape|,linear| + V engage|,content=catch|׽ס,agricultural|ũ + N human|,*tour|,*AlterLocation|ռλ + N tool|þ,cubic|,@put| +ƭ V engage|,content=cheat|ƭ + V engage|,content=beg| + V engage|,content=steal|͵ + N attribute|,price|۸,&physical|,commercial| + N human|,*walk| + V calm| +ɫҴ V walk|,manner=busy|æ + V engage|,content=WellTreat|ƴ + N human|,*WellTreat|ƴ + N human|,#occupation|ְλ,commercial| +ʬ N human|,unable|ӹ,undesired|ݬ +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʹ V conduct|ʵʩ +ʻ V VehicleGo|ʻ + V do| + N attribute|,price|۸,&physical|,commercial| + N attribute|,kind|,&character|,&symbol| + N part|,%organization|֯,*manage| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ N fact|,act|ж +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊֱ N human|,fair|,desired| + V announce| + V sell|,commercial| + N celestial| + V kill|ɱ,police| +̶ N part|,%army|,police| + V kill|ɱ,crime| +ҵ N affairs| +ҵ N expression| +ҽ V engage|,content=cure|ҽ,medical|ҽ +ˮ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + N affairs|,manage| +λ N part|,%organization|֯,*manage| + N part|,%organization|֯,*manage| + N affairs|,manage| + N place|ط,%country|,*manage| + N affairs|,manage|,public| +֮Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +ֹ N attribute|,behavior|ֹ,&human| +ֹ N location|λ,@stay|ͣ +װ N tool|þ,cubic|,@put| + N location|λ,@stay|ͣ +ٲ V unfixed|δ,scope=location|λ,#stay|ͣ + V walk| + V BeRecovered|ԭ,scope=mental| + V awake| + V understand| +ѻ ADJ aValue|ֵ,content|,opened|,desired| +Ŀ ADJ aValue|ֵ,content|,opened|,desired| + V understand| + N character|,surname|,human|,ProperName|ר + N phenomena|,lucky|,desired| + ADV {comment|} +Ҵ V alive| +Ҵ N human|,*alive| +Ҷ ADV {comment|} +Ҹ ADJ aValue|ֵ,circumstances|,happy|,desired| +Ҹ N phenomena|,lucky|,desired| +Һ ADV {comment|} +һ V joyful|ϲ,cause=meet| +ҿ ADV {comment|} + V escape| + V escape|,ResultEvent=die| + V lucky|,degree=extreme| + N phenomena|,lucky|,desired| +ϲ ADV {comment|} + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V lucky| + N phenomena|,lucky|,desired| +˶ N human|,*lucky|,desired| +ֻ V joyful|ϲ,cause=unfortunate|,other| + N fruit|ˮ +Ӻ ADJ aValue|ֵ,color|ɫ,red| +ӻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,#sex|Ա,#mating| + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,property|,&entity|ʵ + N attribute|,sex|Ա,&animate| + N attribute|,sex|Ա,&language| +԰ V love| +Ա N attribute|,sex|Ա,&animate| +Բ N disease|,#SeekPleasure|Ѱ +Ը ADJ aValue|ֵ,appearance| +Ը N attribute|,behavior|ֹ,&AnimalHuman| +Լ N medicine|ҩ +Լ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Լ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V mating| +Խ߳ N part|,%event|¼,#mating| +Խ N fact|,education| + N attribute|,strength|,&animate| + N attribute|,performance|,&implement| +ܼ۸ N attribute|,effect|Ч,#price|۸,&artifact|˹,commercial| +Ű N human|,*damage|,crime| + N part|,%AnimalHuman|,viscera|,*mating| + N attribute|,behavior|ֹ,&AnimalHuman| +鼱 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,nerve|,#mating| +Ϊ N fact|,mating| +ѧ N knowledge|֪ʶ + N aspiration|Ը,expect|,#mating| + N attribute|,property|,&entity|ʵ +״ N attribute|,property|,entity|ʵ + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,name|,surname|,&human| + V mean|ָ + N attribute|,name|,&human| + N attribute|,name|,surname|,&human| + N human|,family|,male| + N human|,male| +ֳ N human|,family|,male| +ֵ N human|,family|,male| +ֵ N human|,family|,mass|,male| +ֵ N human|,male| +ֵܰ ADJ aValue|ֵ,relatedness|,intimate| +ֵ N human|,family|,mass|,male| +ֵǽ V fight| + N human|,family|,mass| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| +ױ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ײ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׶༪ V unfortunate| +׶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׷ N human|,*kill|ɱ,undesired|ݬ,crime| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ N information|Ϣ,#die| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N weapon|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ,crime| + N humanized|,evil|,undesired|ݬ +ɷ N humanized|,evil|,undesired|ݬ +ɷ N human|,evil|,undesired|ݬ + N fact|,undesired|ݬ,#unfortunate| + N human|,*kill|ɱ,undesired|ݬ,crime| + V die|,#crime| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N information|Ϣ,#die| + N information|Ϣ,bad| + N mental| + N part|,%AnimalHuman|,body| +ز N part|,%AnimalHuman|,body| +ظ N part|,%AnimalHuman|,body| +ع N part|,%AnimalHuman|,bone| +ػ N mental| +ؽ N mental| +ؿ N part|,%AnimalHuman|,body| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +Χ N attribute|,size|ߴ,body|,&human| +޵ī ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +г V know|֪ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N part|,%animal|,tail|β + N place|ط,country|,ProperName|ר,(Hungary|) +ū N human|,past| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Hungary|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר,(Hungary|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,sex|Ա,male| + N human|,strong|ǿ + N place|ط,#country|,strong|ǿ +۱ N attribute|,ability|,&debate| +۷ N InsectWorm| +۷ N attribute|,bearing|̬,stately|ׯ,desired| +۷ N wind| +۹ N part|,%place|ط,mouth| +ۺ ADJ qValue|ֵ,amount|,many| +ۻ N part|,%FlowerGrass|,male| +ۻ N stone|ʯ,?material| +ۻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ۼ N bird| +۽ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%FlowerGrass|,heart|,male| +ͼ N aspiration|Ը,expect|,desired| +ΰ ADJ aValue|ֵ,scene|,stately|ׯ,desired| + N aspiration|Ը,expect|,desired| +IJ ADJ aValue|ֵ,will|־,strong|ǿ +׳־ N aspiration|Ը,expect|,desired| + ADJ aValue|ֵ,sex|Ա,male| + N InsectWorm| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N attribute|,bearing|̬,brave|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,brave|,desired| + V ExpressAgainst|Ǵ + N beast| + N character|,surname|,human|,ProperName|ר +ܷ N InsectWorm| +è N beast| + ADJ aValue|ֵ,strength|,strong|ǿ + N part|,%beast|,foot| + V cease|ͣ + V rest|Ϣ + V separate| +ݻ V cease|ͣ,content=discuss| +ݼ N time|ʱ,@WhileAway| +ݿ V dizzy|,medical|ҽ + V sleep|˯ + N emotion| + V relate|й,scope=affairs| +빲 V relate|й,scope=affairs| +˹ N place|ط,city|,ProperName|ר,(US|) +Ϣ V rest|Ϣ +Ϣ N room|,@rest|Ϣ + V WhileAway| + AUX {modality|} +ѧ V cease|ͣ,content=study|ѧ,education| + V maintain|,medical|ҽ +Ϣ V rest|Ϣ +Ϣ V resume|ָ +ҵ V cease|ͣ,content=affairs|,commercial| +ҵ V finish| +ս V cease|ͣ,content=fight|,military| + V rest|Ϣ,military| +ֹ V cease|ͣ + V rest|Ϣ + V PutInOrder| + V build| + V compile|༭ + V decorate|װ + V repair| + V study|ѧ +޲ V repair| +޲ V repair|,medical|ҽ +޳ ADJ aValue|ֵ,length|,long| +޴ N expression| +޴ѧ N human|,literature| +޵ V cultivate|,religion|ڽ +޶ V amend| +޶ N human|,*amend| +޸ V repair| +޸ N human|,*repair| +޸ V alter|ı +޸ V amend| +޺ V compile|༭,content=letter|ż +޺ V associate| +޺ V engage|,content=WellTreat|ƴ +޼ V PutInOrder| +޽ V build| +޿ V dredge|ͨ + V repair| + N human|,#occupation|ְλ,*repair| + N human|,*repair| + V exercise| +· V build|,PatientProduct=route|· +· N human|,#occupation|ְλ,*repair|,#route|· + V MakeUp|ױ,patient=skin|Ƥ + ADJ aValue|ֵ,SocialMode|,good|,desired| +Ů N human|,religion|ڽ,female|Ů + V repair| +䳧 N InstitutePlace|,@repair|,factory|,industrial| + V repair| + V cultivate| +ʿ N human|,religion|ڽ,male| + V MakeBetter|Ż + V MakeUp|ױ + V decorate|װ + V improve| + N part|,%language| + V cultivate|,religion|ڽ +޲ V repair| + N attribute|,behavior|ֹ,&human| + N attribute|,rank|ȼ,#mental|,&human| +ҵ V study|ѧ + V build| + V PutInOrder| + V repair| + V adjust| + V amend| + N readings| + N thinking|˼ + V build| + V repair| + V shy| +߲ V shy| +߳ N emotion|,shy| +ߴ V shy| + V shy| + V shy| + V shy| + V damage| + N human|,*damage| +ɬ V shy| + ADJ aValue|ֵ,age|,aged| + V decline|˥ + ADJ aValue|ֵ,age|,aged| + V decline|˥,scope=age| +ľ N human|,unable|ӹ,undesired|ݬ +ľ N wood|ľ,bad|,undesired|ݬ +ľ N human|,unable|ӹ,undesired|ݬ +ľ N inanimate|,waste|,undesired|ݬ + V smell| + N experience|,smell| +̽ N human|,*investigate| + V OutOfOrder| + N phenomena|,OutOfOrder|,#metal| + N trace|,#OutOfOrder| +ʴ ADJ aValue|ֵ,property|,$OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,*succeed|ɹ,#exam|,past| + N human|,literature| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%clothing|,#arm| + N mark|־ + N part|,%clothing|,#arm| + N fittings|,%clothing|,#arm| +Թ V unwilling|Ը,content=help| + N mark|־,#arm| + ADJ aValue|ֵ,size|ߴ,small|С + N part|,%clothing|,#arm| + V fasten|˩ +廨 V decorate|װ +廨ͷ N human|,unable|ӹ,undesired|ݬ +廨ͷ N tool|þ,#sleep|˯ +Ʒ N artifact|˹ + N tool|þ,*decorate|װ + N InstitutePlace|,*sell|,@buy|,commercial| + N symbol| +ʱ N time|ʱ,hour|ʱ + V need| + N physical|,$need| + N aspiration|Ը,need| + N quantity|,amount|,&need| +Ҫ V need| +Ҫ N quantity|,amount|,&need| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N knowledge|֪ʶ +鱨 V TalkNonsense|Ϲ˵ + N part|,%language| + V lavish|˷ +鸡 ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +鸡 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +鹹 V forge|α +黳 ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N attribute|,reputation|,fake|α,&human|,&organization|֯ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N emotion|,ParticularAbout|,#fake|α + N emotion|,ParticularAbout|,#fake|α + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α +ʵ ADJ aValue|ֵ,content| +ʵ N attribute|,circumstances|,&entity|ʵ + N disease| + V dizzy| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +λԴ V wait|ȴ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ʈ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N knowledge|֪ʶ + N image|ͼ,linear| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ӧ V slack|͵ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ί V pretend|װ,content=WellTreat|ƴ + V ExpressDissatisfaction|ʾ + V MakeSound| + V WarmUp| + V damage| + V exhale| + V sigh|̾ +꺮ů V SayHello|ʺ + V weep| + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + N part|,%human|,hair|ë + AUX {comment|} +뷢 N part|,&AnimalHuman|,hair|ë + N part|,%plant|ֲ,base| +ü N human|,male| +ü N part|,%human|,hair|ë +Ҫ AUX {modality|} +֪ N information|Ϣ + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,slow| + N character|,surname|,human|,ProperName|ר +첽 V walk| + ADJ aValue|ֵ,speed|ٶ,slow| + N place|ط,city|,ProperName|ר,(China|й) + V agree|ͬ + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,almost| + N place|ط,city|,ProperName|ר,(China|й) + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,property|,ExpressAgreement|ʾͬ + V agree|ͬ +֤ N document|,*ExpressAgreement|ʾͬ +ŵ V agree|ͬ + V MarryTo| + ADJ qValue|ֵ,amount|,many| +Ը V swear| + V SetAside| + V cherish|Ļ + V keep| + V store| + N part|,%artifact|˹,#electricity| + V SetAside|,patient=water|ˮ + V SetAside| + V store| +ˮ V store|,patient=water|ˮ +ˮ N facilities|ʩ,space|ռ,@store|,#water|ˮ +ˮ N affairs|,#liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V addict|Ⱥ + V explain|˵ + N place|ط,country|,ProperName|ר,(Syria|) + V speak|˵ + V talk|̸ + V farewell| + V talk|̸ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Syria|) + N place|ط,country|,ProperName|ר,(Asia|) +ǰ N money|,(Syria|) + N human|,(Syria|) + V explain|˵ + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + N human|,*speak|˵ +˵ V explain|˵ +̸ V talk|̸ + V employ| + N lights|,#celestial| + N celestial|,*rise| + N attribute|,sequence|,&entity|ʵ + N part|,%text| + N attribute|,sequence| +Ļ N process|,early| + N part|,%music| + N part|,%text| + N part|,%text| + N livestock| + N artifact|˹,generic|ͳ,livestock| +Ʒ N physical|,#livestock| + N material|,*feed|ι,#crop|ׯ + ADJ aValue|ֵ,attachment|,#livestock| + V foster|,patient=livestock| +ҵ N affairs|,*foster|,#livestock| + N livestock| + V foster|,agricultural|ũ + V pity| + V recompense| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V inlay|Ƕ + N shape| + V talk|̸,content=empty| + N text|,content=empty| +߶ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N human|,family|,male| + N affairs| + N part|,%physical|,*surplus|ʣ + N part|,%time|ʱ,head|ͷ + V KeepOn|ʹ + ADJ aValue|ֵ,behavior|ֹ,continuous| + V add| + V buy|,means=MakeAppointment|Լ + N shows| + V KeepOn|ʹ,patient=time|ʱ + V MarryFrom|Ȣ + N human|,family|,female|Ů + N LandVehicle| + ADJ aValue|ֵ,height|߶,tall| + N part|,%building|,mouth| + N room| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,area|,wide| +Ȼ N fact|,undesired|ݬ +ԯ N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V announce| + N character|,surname|,human|,ProperName|ר + V dredge|ͨ + V announce| +ֹͣж״̬ V cease|ͣ,content=attribute|,military| + V announce| + V disseminate| + N part|,%community| + N human|,*disseminate| +Ա N human|,*disseminate| + V recite|ж + V announce| + V announce| + N fact|,disseminate| + V judge|ö,police| +ʾ V announce| + V swear| +ͳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +й V ShowEmotion|ʾ +й V dredge|ͨ + N document|,*announce| + V disseminate| +ս V announce|,content=fight|,military| +ֽ N paper|ֽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,similarity|ͬ,different| + V hang| + V unfixed|δ + V worried|ż + N fact|,^$handle| + N fact|,police|,^$handle| + N part|,%building|,*hang|,arm| + N part|,%machine|,arm| + V hang| +δ V unfixed|δ + V float|Ư,industrial| + V hang| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V hang| + V suicide|ɱ +Ծ V suicide|ɱ +ľ N tree| + N experience|,worried|ż + V worried|ż + V reward| + N attribute|,similarity|ͬ,different|,&entity|ʵ,&aValue|ֵ + N facilities|ʩ,route|· + N part|,%land|½,skin|Ƥ + V cease|ͣ +ͱ N part|,%land|½,skin|Ƥ +Ӻ N part|,%AnimalHuman|,mouth| + V GoBack| + V circle| + V cut| + V cut|,industrial| + N image|ͼ,round|Բ + N part|,%human|,hair|ë + V rotate|ת + N machine|,*produce|,industrial| + N wind| + ADV aValue|ֵ,duration|,TimeShort| + N attribute|,SoundQuality|,&music| +ť N part|,%implement|,*hold|,*OpenShut|,hand| + V circle| + N phenomena|,#liquid|Һ +ת ADJ aValue|ֵ,property|,rotate|ת +ת V rotate|ת +תǬ V alter|ı,patient=natural|Ȼ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black|,NotLight|Ũ + N human|,family|,female|Ů +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N human|,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѡ V choose|ѡ +ѡ N publications|鿯 +ѡ V select|ѡ +ѡ V choose|ѡ +ѡ N fact|,compete|,*choose|ѡ,sport| +ѡ V compile|༭ +ѡ N publications|鿯 +ѡ V choose|ѡ,content=material| +ѡ V choose|ѡ,Vachieve| +ѡ V dispatch|Dz +ѡ V decide| +ѡ V study|ѧ,education| +ѡ V buy|,commercial| +ѡ V choose|ѡ,Vachieve| +ѡ N publications|鿯 +ѡ ADJ aValue|ֵ,property|,select|ѡ +ѡ V select|ѡ +ѡٷ N law|ɷ,#select|ѡ +ѡǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#select|ѡ +ѡȨ N rights|Ȩ,*select|ѡ +ѡ N human|,*select|ѡ +ѡ˶ N fact|,select|ѡ,politics| +ѡ V choose|ѡ,content=mine|,industrial| +ѡ N InstitutePlace|,*choose|ѡ,#mine|,industrial| +ѡ V choose|ѡ,content=human|,female|Ů +ѡ N human|,*select|ѡ +ѡ V dispatch|Dz +ѡƱ N document|,*select|ѡ +ѡƸ V employ| +ѡ N place|ط,#select|ѡ +ѡȡ V choose|ѡ +ѡ V RegardAs| +ѡ N human|,$choose|ѡ,*compete|,sport| +ѡΪ V undergo|,content=RegardAs| +ѡ V study|ѧ,education| +ѡ޿ N affairs|,$choose|ѡ,education| +ѡ V check| +ѡ V use| +ѡ N choose|ѡ,agricultural|ũ +ѡ V choose|ѡ +ѡ N problem| +ѡ ADJ aValue|ֵ,property|,$choose|ѡ +ѡ N human|,*select|ѡ +ѡ V choose|ѡ,Vachieve| +ѡ V choose|ѡ,agricultural|ũ +ѡ ADJ aValue|ֵ,source|Դ,$choose|ѡ +Ѣ N disease| +ѣ V dizzy| +ѣĿ V illuminate|,PartOfTouch=eye| +ѣ V dizzy| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +ѥ N clothing|,#foot| +ѥ N clothing|,#foot| +Ѧ N character|,surname|,human|,ProperName|ר +ѧ N InstitutePlace|,education| +ѧ V imitate|ģ +ѧ N knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ +ѧ V study|ѧ +ѧ N publications|鿯 +ѧ V study|ѧ,content=walk| +ѧ N part|,%institution|,#knowledge|֪ʶ +ѧίԱ N human|,#knowledge|֪ʶ +ѧ N human|,*study|ѧ,education|,friend| +ѧ N fact|,uprise|,education| +ѧ V study|ѧ,Vachieve| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ѧ N human|,#knowledge|֪ʶ,undesired|ݬ +ѧ V FitNot|,relevant=do|,contrast=study|ѧ +ѧ N expenditure|,$pay|,#education| +ѧ N result|,#study|ѧ +ѧ N system|ƶ,#result|,#study|ѧ +ѧ N attribute|,SocialMode|,&education| +ѧ N attribute|,behavior|ֹ,#study|ѧ,&human| +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N attribute|,circumstances|,&study|ѧ +ѧ V study|ѧ,Vachieve| +ѧ V study|ѧ,source=good| +ѧ N community|,#knowledge|֪ʶ +ѧ V study|ѧ,Vachieve| +ѧ N attribute|,status|,#study|ѧ,&human| +ѧ N human|,#knowledge|֪ʶ +ѧ N community|,education| +ѧ N human|,stiff|,undesired|ݬ +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N part|,%knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ,education| +ѧ N attribute|,status|,#education|,&human| +ѧ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N community|,#study|ѧ +ѧ N attribute|,age|,#study|ѧ,&human| +ѧͯ N human|,#age|,#study|ѧ +ѧǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#education| +ѧǰͯ N human|,young|,#age|,#study|ѧ +ѧ N attribute|,name|,formal|ʽ,#education|,&human| +ѧ N attribute|,name|,formal|ʽ,&entity|ʵ +ѧ N time|ʱ,education| +ѧ N community|,#knowledge|֪ʶ +ѧ N community|,knowledge|֪ʶ +ѧ N time|ʱ,education| +ѧǰ N affairs|,education| +ѧ V TalkNonsense|Ϲ˵ +ѧ V imitate|ģ +ѧ V imitate|ģ,content=speak|˵ +ѧ N human|,*study|ѧ +ѧ N human|,*study|ѧ,education| +ѧ N community|,education| +ѧ˶ N fact|,uprise|,education| +ѧʱ N time|ʱ,hour|ʱ,education| +ѧʶ N knowledge|֪ʶ +ѧʶdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ѧʶԨ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧʿ N human|,*study|ѧ,education| +ѧʿ N human|,literature| +ѧʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +ѧ N knowledge|֪ʶ +ѧɾ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#research|о,#study|ѧ +ѧ N community|,knowledge|֪ʶ +ѧ N human|,desired|,able|,glorious| +ѧ N part|,%knowledge|֪ʶ,aspect| +ѧ N text|,#research|о +ѧۻ N fact|,discuss|,#knowledge|֪ʶ +ѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ +ѧֻ N fact|,discuss|,#knowledge|֪ʶ +ѧ˵ N knowledge|֪ʶ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧͽ N human|,#occupation|ְλ,*study|ѧ,industrial| +ѧλ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N knowledge|֪ʶ +ѧϰ V study|ѧ +ѧϰɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧϰ N time|ʱ,@study|ѧ,education| +ѧϰ N human|,*study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education|,friend| +ѧҵ N affairs|,education| +ѧҵɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧ V study|ѧ,purpose=use| +ѧ N knowledge|֪ʶ +ѧ V study|ѧ,content=affairs|,#MakeLiving|ı +ѧר ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ N human|,*study|ѧ,education|,friend| +ѧԱ N human|,*study|ѧ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧ N fact|,uprise|,education| +ѧӷ N expenditure|,$pay|,#education| +ѧ N human|,#knowledge|֪ʶ +ѧ N system|ƶ,education| +ѧ N time|ʱ,@study|ѧ,education| +ѧ N human|,*study|ѧ +Ѩ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ѩ N part|,%AnimalHuman| +Ѩ N part|,%earth|,mouth| +Ѩ V reside|ס +Ѩλ N part|,%AnimalHuman| +ѩ N RainSnow|ѩ +ѩ V remove| +ѩ ADJ aValue|ֵ,color|ɫ,white| +ѩ N beast| +ѩ N phenomena|,unfortunate|,#RainSnow|ѩ +ѩ N drinks|Ʒ +ѩ V amend|,content=wrong| +ѩ N land|½,#RainSnow|ѩ +ѩ N land|½,#RainSnow|ѩ +ѩ N drinks|Ʒ,ice| +ѩ N land|½,#RainSnow|ѩ +ѩ V amend|,content=wrong| +ѩ N RainSnow|ѩ +ѩ N tool|þ,*MakeUp|ױ +ѩޮ N part|,%vegetable|߲,embryo|,$eat| +ѩޮ N vegetable|߲ +ѩ N drinks|Ʒ,$addict|Ⱥ +ѩ N FlowerGrass| +ѩ ADJ aValue|ֵ,brightness|,bright| +ѩ N tree| +ѩä N disease| +ѩä V disease| +ѩƬ N RainSnow|ѩ +ѩ N LandVehicle|,#RainSnow|ѩ +ѩ N addictive|Ⱥ +ѩ ADJ aValue|ֵ,color|ɫ,purple| +ѩ N human| +ѩɽ N land|½,#RainSnow|ѩ +ѩϼ˪ ADJ aValue|ֵ,circumstances|,hardship|,more|,undesired|ݬ +ѩϼ˪ V unfortunate| +ѩˮ N water|ˮ,#RainSnow|ѩ +ѩ N tree| +ѩ N drinks|Ʒ,ice| +ѩԩ V amend|,content=wrong| +ѩԭ N land|½,#RainSnow|ѩ +ѩ̿ V help| +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N disease| +Ѫ N fact|,undesired|ݬ,#kill|ɱ,#die|,crime| +Ѫ N fund|ʽ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N fact|,check|,#liquid|Һ,medical|ҽ +Ѫ N part|,%AnimalHuman|,nerve| +Ѫܲ N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N attribute|,strength|,&human|,&organization|֯ +ѪǮ N payment| +Ѫ ADJ aValue|ֵ,color|ɫ,red| +Ѫ쵰 N part|,%AnimalHuman| +Ѫ N trace|,#AnimalHuman|,#liquid|Һ +Ѫ N trace|,#bleed|Ѫ +Ѫ N part|,%AnimalHuman| +Ѫ V slander|̰ +Ѫ N facilities|ʩ,@store|,#part|,#liquid|Һ,medical|ҽ +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫɺ N part|,%AnimalHuman|,liquid|Һ,many| +Ѫ N attribute|,attachment|,&AnimalHuman| +Ѫ N attribute|,physique|,&AnimalHuman| +ѪŨˮ V aValue|ֵ,relatedness|,intimate| +Ѫ N disease| +Ѫ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,flesh| +Ѫ V phenomena|,miserable| +Ѫģ ADJ phenomena|,miserable| +Ѫ ADJ aValue|ֵ,relatedness|,intimate| +Ѫɫ N attribute|,color|ɫ,&skin|Ƥ +Ѫ˨ N disease| +Ѫˮ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman| +Ѫͳ N attribute|,source|Դ,&human| +Ѫ N bacteria|΢ +Ѫ没 N disease| +ѪС N part|,%AnimalHuman|,liquid|Һ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N attribute|,kind|,&part|,#AnimalHuman|,#liquid|Һ +Ѫ N attribute|,courage|,&human| +Ѫѹ N attribute|,strength|,&AnimalHuman| +Ѫѹ N tool|þ,*measure| +ѪҺ N attribute|,strength|,&human|,&organization|֯ +ѪҺ N part|,%AnimalHuman|,liquid|Һ +ѪҺѧ N knowledge|֪ʶ +Ѫ N clothing| +Ѫӡ N trace|,#liquid|Һ +ѪѲ N disease| +Ѫȷ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ѪԵ N attribute|,attachment|,&AnimalHuman| +Ѫծ N thing|,$owe|Ƿ,#kill|ɱ +ѪծѪ V revenge| +Ѫս V fight|,military| +Ѫ N disease| +Ѫ N trace|,#liquid|Һ +Ѫհ߰ N aValue|ֵ,appearance| +ѫ N result|,desired|,#succeed|ɹ +ѫ N result|,desired|,#succeed|ɹ +ѫ N human|,royal| +ѫ N result|,desired|,#succeed|ɹ +ѫҵ N result|,desired|,#succeed|ɹ +ѫ N tool|þ,*reward|,$GiveAsGift|,desired| +Ѭ V cook| +Ѭ V pollute|ʹ +Ѭ V remove|,instrument=gas| +Ѭ N wind| +ѬȾ V CauseAffect|Ⱦ +Ѭ V cultivate| +Ѭ ADJ aValue|ֵ,temperature|¶,hot| +Ѭ N medicine|ҩ +Ѭ V cook| +ѭ V obey|ѭ +ѭ ADJ aValue|ֵ,property|,circulate|ѭ +ѭ V circulate|ѭ +ѭ N symbol|,#quantity|,#DoSum| +ѭ N fact|,compete|,sport| +ѭ V circulate|ѭ +ѭϵͳ N part|,%AnimalHuman|,viscera|,*circulate|ѭ +ѭС N symbol|,#quantity|,#DoSum| +ѭ򽥽 V prosper|,manner=steady| +ѭѭ V teach| +Ѯ N time|ʱ,TenDays|Ѯ +Ѯ N time|ʱ,year| +ѯ V ask| +ѯ V ask|,content=price|۸,commercial| +ѯ V ask| +ѯ N human|,*ask| +Ѱ V LookFor|Ѱ +Ѱ ADJ aValue|ֵ,kind|,ordinary| +Ѱ ADJ aValue|ֵ,rank|ȼ,average| +Ѱ̼ V suicide|ɱ +Ѱ V LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=place|ط +Ѱ V investigate| +Ѱ V LookFor|Ѱ,means=cry| +Ѱ N tool|þ,*LookFor|Ѱ,#cry| +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V obtain|õ,means=LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=time|ʱ +Ѱ V tease|ȡ +Ѱ V LookFor|Ѱ +Ѱ V seek|ıȡ +Ѱ˼ V think|˼ +Ѱ V suicide|ɱ +Ѱ V MakeTrouble| +Ѱժ V compile|༭ +Ѱ V LookFor|Ѱ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V control| +ѱ V cultivate|,agricultural|ũ +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +Ѳ V check| +Ѳ V check|,police|,military| +ѲԱ N human|,employee|Ա,sport| +Ѳ N human|,#occupation|ְλ,police| +Ѳ N institution|,police|,past| +Ѳ V check| +Ѳ V check| +Ѳ V VehicleGo|ʻ +Ѳ N weapon|,$firing| +Ѳ V circulate|ѭ +Ѳشʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +Ѳ V investigate| +Ѳ N human|,#occupation|ְλ,police| +Ѳ V tour| +Ѳ V check| +Ѳ߳ N LandVehicle|,check|,police| +Ѳ߶ N part|,%institution|,*check|,police| +Ѳͧ N ship|,*check|,police| +Ѳ V investigate| +Ѳ V look| +ѲԱ N human|,*investigate| +Ѳ N human|,*investigate| +Ѳ V investigate|,royal| +Ѳ N weapon|,ship|,military| +Ѳ V cure|ҽ +Ѳ߮ V VehicleGo|ʻ,military| +ѳ V bury| +ѳ V die| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V bury| +ѳְ V die|,time=undertake|,#duty|,desired| +Ѵ N water|ˮ,#unfortunate| +Ѵ N time|ʱ,#water|ˮ,#unfortunate| +Ѵ N attribute|,circumstances|,#water|ˮ,#unfortunate|,&waters|ˮ +ѵ N regulation| +ѵ V teach| +ѵ N text| +ѵ V ExpressAgainst|Ǵ +ѵ N text|,*persuade|Ȱ˵ +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V drill|ϰ +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ +ѵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѵ ADJ aValue|ֵ,property|,$teach|,desired| +ѵ N human|,*drill|ϰ +ѵ N text|,*teach| +ѵ V urge|ʹ +ѵʾ N text|,*teach| +ѵ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ѵ V teach| +ѵ V fact|,teach|,#behavior|ֹ +ѵڬ N fact|,research|о,#language| +ѵڬѧ N knowledge|֪ʶ,#language| +Ѷ V ask| +Ѷ N information|Ϣ +Ѷ N symbol| +Ѷ V ask| +Ѷ V interrogate| +ѶϢ N information|Ϣ +ѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ѷ ADJ inferior| +ѷɫ V inferior| +ѷλ V cease|ͣ,content=undertake|,politics| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADV aValue|ֵ,duration|,TimeShort| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹײڶ ADJ aValue|ֵ,behavior|ֹ,sudden| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +ѹ V approach|ӽ +ѹ N attribute|,strength|,&entity|ʵ +ѹ V delay| +ѹ V frighten|Ż +ѹ V gamble|IJ,crime| +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹ N tool|þ,#young|,*recreation| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$OutOfOrder| +ѹס V BeUnable|,content=restrain|ֹ +ѹ N material|,heavy|,#ship|,#transport| +ѹ ADJ aValue|ֵ,weight|,heavy| +ѹ V surpass|ǿ +ѹס V BeAble|ܹ,content=restrain|ֹ +ѹ V MakeLower| +ѹ V subtract|,patient=price|۸,commercial| +ѹ V defeat|սʤ +ѹ ADV {emphasis|ǿ} +ѹ V subtract|,patient=price|۸,commercial| +ѹ V soothe|ο +ѹ N attribute|,strength|,&entity|ʵ +ѹ N tool|þ,*measure| +ѹ N tool|þ,cubic|,*cook| +ѹ N machine|,*press|ѹ +ѹ N tool|þ,*measure| +ѹ· N machine|,*press|ѹ,#route|· +ѹ V damage| +ѹ N human|,*damage| +ѹǮ N money|,$GiveAsGift|,#young| +ѹ V shrink|С +ѹ V subtract| +ѹ N food|ʳƷ +ѹ N machine|,*shrink|С +ѹ N gas|,$shrink|С +ѹʹ V painful|ʹ +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹե V press|ѹ +ѹե V rob| +ѹ V restrain|ֹ +ѹ ADJ aValue|ֵ,property|,restrain|ֹ +ѹ V produce|,industrial| +Ѻ V detain|ס,police| +Ѻ V pawn|Ѻ +Ѻ V pawn|Ѻ,commercial| +Ѻ V sign|д +Ѻ N symbol|,#name| +Ѻ V transport|,manner=defend|,police| +Ѻ V transport|,patient=artifact|˹,manner=defend| +Ѻ V pawn|Ѻ,commercial| +Ѻ V pawn|Ѻ +Ѻ V transport|,manner=defend|,police| +Ѻ N expenditure|,$pawn|Ѻ +Ѻ V borrow|,possession=fund|ʽ +Ѻ N fund|ʽ,$borrow| +Ѻ V transport|,manner=defend|,police| +Ѻβ V sign|д +Ѻ V transport|,manner=defend| +Ѻ N expenditure| +ѻ N bird| +ѻƬ N medicine|ҩ,?addictive|Ⱥ +ѻƬս N fact|,fight|,ProperName|ר +ѻȸ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ѽ N bird| +Ѽ N part|,%bird|,$eat|,embryo| +Ѽ̽ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ѽ N material|,?clothing| +Ѽñ N clothing|,#head|ͷ +Ѽ N bird| +ѼӶ N food|ʳƷ,#bird| +Ѽ N PenInk|ī,*write|д +ѽ ECHO surprise| +Ѿ N shape| +Ѿͷ N human|,employee|Ա,female|Ů,past| +Ѿͷ N human|,young|,female|Ů +Ѿ N part|,%plant|ֲ,limb|֫ +Ѿ N human|,employee|Ա,female|Ů,past| +ѿ N part|,%plant|ֲ,embryo| +ѿ N material|,?drinks|Ʒ + N material|,?tool|þ,*decorate|װ + N part|,%AnimalHuman|,*bite|ҧ + N shape| + N disease| + N part|,%AnimalHuman|,*bite|ҧ + N furniture|Ҿ,@sleep|˯ + N part|,%AnimalHuman|,*bite|ҧ + N image|ͼ,$carve| + N tool|þ,*wipe| + N location|λ,%part|,#AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N tool|þ,*wipe| + N part|,%AnimalHuman|,#bite|ҧ + N stone|ʯ,waste| + N part|,%AnimalHuman|,#bite|ҧ + N part|,%AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jamaica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Jamaica|) +Ԫ N money|,(Jamaica|) +ǩ N tool|þ,*clean|ʹ +ʯ N stone|ʯ,waste| +ˢ N tool|þ,*wipe| +ʹ V painful|ʹ + N tool|þ,*clean|ʹ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ +ܲ N disease| + N disease| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N part|,%land|½,skin|Ƥ +± N part|,%land|½,skin|Ƥ + N part|,%information|Ϣ,heart| + N institution|,politics|,past|,(China|й) + N institution|,politics|,past|,(China|й) + N human|,past| + N location|λ,surrounding|Χ,space|ռ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ŵ N place|ط,capital|,ProperName|ר,(Greece|ϣ) +Ź ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ź N attribute|,name|,&human| +ź N attribute|,name|,other|,&entity|ʵ +żӴ N place|ط,capital|,ProperName|ר,(Indonesia|ӡ) +³ز N waters|ˮ,linear|,ProperName|ר,(China|й) +ʿ N human|,literature| +׹ ADJ aValue|ֵ,kind|,mass| +µ N place|ط,capital|,ProperName|ר,(Cameroon|¡) + N emotion|,#WhileAway| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N location|λ,#InstitutePlace| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ +ư V KeepSilence|˵ +ư N human|,undesired|ݬ,*disable|м,#speak|˵ +ƾ N shows| +ƿ V KeepSilence|˵ + N SportTool|˶ +Ů N human|,undesired|ݬ,female|Ů,*disable|м,#speak|˵ + N human|,undesired|ݬ,*disable|м,#speak|˵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N place|ط,ProperName|ר +ǵ N human|,male|,%publications|鿯 +ǵǺ N waters|ˮ,linear|,ProperName|ר,(Italy|) +ǵ˹DZ N place|ط,capital|,ProperName|ר,(Ethiopia|) +Ƕ N place|ط,capital|,ProperName|ר,(Yemen|Ҳ) +Ƿ N place|ط,ProperName|ר +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɣ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N chemical|ѧ + N crop|ׯ,?material| + N waters|ˮ,linear|,ProperName|ר,(South America|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Armenia|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +ŷ½ N place|ط,ProperName|ר +ȴ N part|,%earth| +ɭ N place|ط,capital|,ProperName|ר,(Paraguay|) +̫֯ N community|,commercial|,ProperName|ר,(Asia|) + N place|ط,city|,ProperName|ר,(US|) + N chemical|ѧ +ͭ N metal| +ϸ N community|,country|,ProperName|ר,(Asia|) +ϸ N place|ط,ProperName|ר,(Asia|) + N chemical|ѧ +Ƶ ADJ aValue|ֵ,speed|ٶ,#sound| + ADJ aValue|ֵ,speed|ٶ,#sound| + N fact|,compete|,sport|,(Asia|) +˻ N fact|,compete|,sport|,(Asia|) + ADJ aValue|ֵ,attachment|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) + N human|,(Asia|) + V flurried| + STRU {MaChinese|} + N part|,%AnimalHuman|,mouth| + V swallow| +ʺ N part|,%AnimalHuman|,mouth| +ʺ N place|ط,important| +ʺ N disease| + V die| +ͷ N part|,%AnimalHuman|,mouth| + V swallow| + N disease| +˸ V cut|,PartOfTouch=part|,#mating| +˸ N cut|,PartOfTouch=part|,#mating| +˸ V cut|,PartOfTouch=part|,#mating| +˸ V damage| +˸ N human|,*damage| + N CloudMist| + N addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ +̲ N addictive|Ⱥ +̳ N CloudMist|,stone|ʯ,waste| +̴ N part|,%building|,%implement|,*exhale|,#gas| +̴ N tool|þ,*addict|Ⱥ +̴˶ N part|,%tool|þ,#addict|Ⱥ +̴ N part|,%tool|þ,#addict|Ⱥ +̵ N part|,%addictive|Ⱥ,waste|,tail|β +̶ N tool|þ,*addict|Ⱥ +̶˿ N addictive|Ⱥ +̸ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̹ N human|,*addict|Ⱥ,undesired|ݬ +̹ N human|,*addict|Ⱥ,undesired|ݬ,crime| +̹ N part|,%tool|þ,#addict|Ⱥ +̺ N tool|þ,cubic|,@put|,#addictive|Ⱥ +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +̻ N stone|ʯ,waste|,#addictive|Ⱥ +̻Ҹ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̻ N edible|ʳ,generic|ͳ +̻ N fire| +̻ N tool|þ,*WhileAway|,*congratulate|ף +̼ N natural|Ȼ,#addictive|Ⱥ,undesired|ݬ +̾ N addictive|Ⱥ +̾ N tool|þ,*addict|Ⱥ,generic|ͳ +̾ N addictive|Ⱥ +ú N material|,$burn| + N human|,*addict|Ⱥ,undesired|ݬ +Ļ N CloudMist| +ũ N human|,*planting|ֲ,#addictive|Ⱥ,agricultural|ũ +ƨ N part|,%addictive|Ⱥ,waste|,tail|β +˿ N addictive|Ⱥ + N chemical|ѧ +̨ N place|ط,city|,ProperName|ר,(China|й) +Ͳ N part|,%building|,%implement|,*exhale|,#gas| +ͷ N part|,%addictive|Ⱥ,waste|,tail|β + N addictive|Ⱥ + N CloudMist| + ADJ aValue|ֵ,clearness|,blurred| +ɢ V disappear|ʧ +Ҷ N addictive|Ⱥ + N RainSnow|ѩ + N CloudMist| + N CloudMist| + N tool|þ,*addict|Ⱥ + N CloudMist| + N gas| + V sink|³ + V spill| + V sting| +͹ V irrigate|,agricultural|ũ +û V sink|³ +û V spill| + V die|,cause=sink|³ + N material|,?food|ʳƷ,salty| +ΰ N material|,?food|ʳƷ,salty| +γ N InstitutePlace|,@produce| +γ N facilities|ʩ,*produce|,#material|,industrial| +κ N waters|ˮ,surfacial|,salty| +λ N material|,?food|ʳƷ,salty| +μ N land|½,barren| +ξ N InstitutePlace|,@produce| +± N material|,?food|ʳƷ +Ũ N attribute|,concentration|Ũ,&inanimate| +ˮ N drinks|Ʒ +Ȫ N liquid|Һ,?material| +˪ N natural|Ȼ,salty| +ˮ N liquid|Һ,?medicine|ҩ + N chemical|ѧ + N InstitutePlace|,*produce|,#material|,industrial| +ҵ N affairs|,*produce|,#material|,industrial| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,tightness|ɽ,tight| + N character|,surname|,human|,ProperName|ר +ϰ V punish|,police| +ϳ V punish|,police| +ϳͲ V punish| +ϴ V attack|,manner=strong|ǿ,police| +϶ N time|ʱ,winter| +Ϸ V obstruct|ֹ +ϸ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,strict| +ϸ V conduct|ʵʩ,manner=strict| +Ϻ ADJ aValue|ֵ,temperature|¶,cold| +Ͻ ADJ aValue|ֵ,tightness|ɽ,tight| +Ͻ ADJ aValue|ֵ,behavior|ֹ,strict| +Ͻ ADJ aValue|ֵ,content|,concise|,desired| +Ͻ V prohibit|ֹ,manner=strict| +Ͼ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ͽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + V order| + ADJ aValue|ֵ,tightness|ɽ,tight| + ADJ aValue|ֵ,behavior|ֹ,strict| +ʵ ADJ aValue|ֵ,tightness|ɽ,tight| + V obey|ѭ,manner=strict| +˿Ϸ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V conduct|ʵʩ,manner=strict| + N fact|,damage| +ʵʵ ADJ aValue|ֵ,tightness|ɽ,tight| +ɼ V treat|Դ,target=self|,manner=strict| +Դ V wait|ȴ,military| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؼ N disease| + N attribute|,property|,urgent|,&event|¼ + V grind|ĥ + V research|о +ж V study|ѧ,manner=attentive|ϸ +з V produce| +о V discuss| +о V research|о +о V think|˼ +о N human|,*study|ѧ,*research|о,education| +о N part|,%InstitutePlace|,*research|о,#knowledge|֪ʶ +о N InstitutePlace|,@research|о,#knowledge|֪ʶ +о뿪 V produce| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +оԺ N InstitutePlace|,@research|о,#knowledge|֪ʶ +о N human|,*research|о +ĥ V grind|ĥ +ĥ V rub|Ħ +ĥ N material|,*rub|Ħ +ĥ ADJ aValue|ֵ,ability|,able|,rub|Ħ + V discuss| + V think|˼ +ֻ N fact|,discuss|,#knowledge|֪ʶ +ϰ V research|о + V research|о + V produce| + V produce|,industrial| + V produce|,medical|ҽ,(China|й) + N human|,*produce| + N part|,%land|½,skin|Ƥ + N stone|ʯ,?material| +Ҷ N part|,%earth|,mouth| +ҽ N stone|ʯ,liquid|Һ +ʯ N stone|ʯ,?material| + N material|,?food|ʳƷ,salty| + N livestock| + V delay| + V enlarge| +Ӱ N place|ط,city|,ProperName|ר,(China|й) +ӱ N place|ط,ProperName|ר,(China|й) +ӳ V enlarge| +ӳ V delay| +Ӹ V delay| +ӻ V delay| + V MakeBetter|Ż,PatientAttribute=strength| + V MakeBetter|Ż,PatientAttribute=strength| +Ƹ V employ| + V delay| + V employ| + V employ|,commercial| + V FormChange|α,StateFin=enlarge| + V enlarge| + V delay| + V GoOn| + V KeepOn|ʹ + V delay| + N character| + N character|,surname|,human|,ProperName|ר + V speak|˵ + N text|,$speak|˵ +Ա ADJ aValue|ֵ,correctness|,accurate|׼,desired| +Բ ADJ aValue|ֵ,behavior|ֹ,^sincere|,undesired|ݬ +Գ ADJ aValue|ֵ,behavior|ֹ,strict| +Դ V explain|˵ +Դ V teach| +Դ N text|,$speak|˵ +Դ N text|,$speak|˵ +Զ V disobey|Υ,content=MakeAppointment|Լ +Թں V reconcile| +Թʵ V boast| +Ժ V reconcile| +Լ ADJ aValue|ֵ,content|,concise|,desired| + N text|,$speak|˵ + N system|ƶ,#speak|˵,free| +С˵ N text| + V differ|ͬ,scope=thought|ͷ +̸ N text|,$speak|˵ +̸ֹ N attribute|,behavior|ֹ,&human| +ƴ V obey|ѭ +֮ N information|Ϣ + N fact|,#act|ж,#text| + V language|,$speak|˵ + V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N attribute|,color|ɫ,&physical| + N attribute|,countenance|,&AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ + N character|,surname|,human|,ProperName|ר + N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N attribute|,reputation|,&human|,&organization|֯ +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N character|,surname|,human|,ProperName|ר + N human|,religion|ڽ + N humanized|,#die| + N human|,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + N disease| +׵ N human|,official|,ProperName|ר,(China|й) +׻ N human|,official|,ProperName|ר,(China|й) +׻ N human|,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,season|,hot| + N time|ʱ,summer| + ADJ aValue|ֵ,temperature|¶,hot| +֢ N disease| + V obey|ѭ + N part|,%inanimate|,%space|ռ,edge| + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,edge| + V wrap| + PREP {direction} +ذ ADJ aValue|ֵ,location|λ +ذ N part|,%land|½,#waters|ˮ,edge| +ر V wrap| +ر߶ V wrap| +ظ N fact|,prosper| +ظ N process| +غ ADJ aValue|ֵ,location|λ +غ N part|,%land|½,#waters|ˮ,edge| +غ N place|ط,#waters|ˮ +غ N location|λ,%waters|ˮ +ؽ ADJ aValue|ֵ,location|λ +ؽ N location|λ,%route|· +ؽײ N FlowerGrass| +· N location|λ,%route|· +; N location|λ,%route|· +Ϯ V obey|ѭ + ADJ aValue|ֵ,location|λ + V use| + PREP {direction} +һϢ V ill|̬,medical|ҽ + V cover|ڸ + V press|ѹ + V shut|ر +ڱ V cover|ڸ +ڱ V hide| +ڲ V hide| +ڶ V deceive|ƭ +ڸ V HideTruth| +ڸ V cover|ڸ +ڻ V protect| +ڻ V protect|,military| +ڻ N army| + V bury| +˶Ŀ V HideTruth| +˶Ŀ V deceive|ƭ +ɱ V attack|,manner=sudden|,military| + V HideTruth| + N facilities|ʩ,space|ռ,*protect|,military| +Ϯ V attack|,manner=sudden|,military| +ӳ V ServeAsFoil| + N part|,%AnimalHuman|,#eye| + N shape| +۰Ͱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +۰ N part|,%AnimalHuman|,#eye| +۲ N disease|,#eye| +۲ V jealous|ʼ +۵ N location|λ,%eye| +۸ N attribute|,circumstances|,happy|,#look|,&human| +۹ N experience| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +۹Զ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ۺ V jealous|ʼ +ۻ V disable|м,scope=look| +ۻ ADJ aValue|ֵ,content|,disorder| +ۼ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ۼ ADV aValue|ֵ,duration|,TimeShort| +۽ N part|,%AnimalHuman|,#eye| +۽ë N part|,%AnimalHuman|,hair|ë +۽ N experience| +۾ N part|,%AnimalHuman|,#eye| +۾ ADJ aValue|ֵ,form|״,dented| +۾ N tool|þ,*look|,#eye| +۾ N beast| +ۿ ADJ aValue|ֵ,duration|,TimeShort| +ۿ N knowledge|֪ʶ,medical|ҽ +ۿ N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ۿҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ۿ N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,liquid|Һ + N location|λ,%eye| + N attribute|,ability|,#judge|ö,&human| + N attribute|,ability|,#look|,&AnimalHuman| + N part|,%AnimalHuman|,#eye| +ֿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + N part|,%AnimalHuman|,skin|Ƥ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N location|λ +Ƥ N time|ʱ,now| +ǰ N time|ʱ,now| +ǰ N wealth|Ǯ + N part|,%AnimalHuman|,#eye| +Ȧ N part|,%AnimalHuman|,#eye| + V jealous|ʼ +ɫ N attribute|,countenance|,&AnimalHuman| + N attribute|,ability|,#look|,&AnimalHuman| + N attribute|,countenance|,&AnimalHuman| + N experience| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#eye|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N part|,%AnimalHuman|,#eye| + N time|ʱ,now| + N human|,*help|,#police|,crime| + N image|ͼ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,#eye| +ҩ N medicine|ҩ,#eye| +ҩˮ N medicine|ҩ,#eye| +Ӱ N image|ͼ + V BeUnable| + V stupefied|ľȻ +ж N human|,enemy| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N stone|ʯ,#eye|,waste| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ܱ V change| + V illuminate|,industrial| + V grow|ɳ + N chemical|ѧ + N text|,redundant| + V RegardAs|,entertainment| + V change| + V deduce| + V drill|ϰ + V explain|˵ + V perform|,entertainment| +ݱ V change| +ݲ V disseminate|,entertainment| +ݳ V perform|,entertainment| +ݳ V perform|,entertainment| +ݻ V change| +ݼ N attribute|,ability|,perform|,&human| +ݽ V speak|˵ +ݽ N text|,$speak|˵ +ݽ N fact|,prosper| +ݾ V perform|,entertainment| + V drill|ϰ,military| +ʾ V show|,content=example|ʵ +ʾ N fact|,*show|,#example|ʵ +˵ V speak|˵ +˵ N text|,$speak|˵ +˵ N human|,*speak|˵ + V calculate| + V study|ѧ +ϰ V drill|ϰ,military| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| + N knowledge|֪ʶ,#perform|,entertainment| + N text| + V deduce| +Ա N human|,#occupation|ְλ,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + V RegardAs|,ResultIsa=human|,important|,entertainment| + V perform|,entertainment| + N human|,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +޸ N attribute|,circumstances|,happy|,#love|,&human| +޸ N music|,#love| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,content|,#love| +ʫ N text|,#love| +ʷ N fact|,#love| + N weather| + N facilities|ʩ,#liquid|Һ,space|ռ + N bird| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ȸ N bird| +β N clothing|,#body| + N food|ʳƷ + N fish| + N bird| + V disgust| + V disgust| +ᷳ V disgust| + V disgust| + V disgust| + V disgust| +ʳ֢ N disease| + N bacteria|΢ + N stationery|ľ,#write|д,#draw| + N stationery|ľ,#write|д,#draw| +̨ N stationery|ľ,#write|д,#draw| + N bird| + N sound| + N text|,*condole|° + N attribute|,behavior|ֹ,&human| + N fire| + N tool|þ,*WhileAway|,*congratulate|ף + N fact|,eat|,#entertain|д + N fact|,eat|,entertain|д + V entertain|д +ϯ N fact|,eat|,#entertain|д + N expression| + N expression| + V check| + V prove|֤ + N tool|þ,*measure|,#electricity| +鷽 N document|,#medicine|ҩ,#medical|ҽ,(China|й) + V check|,content=artifact|˹,commercial| + V check|,content=ability|,#look| + V check| + V check|,content=artifact|˹,commercial| +鿴 V check| + V check|,content=liquid|Һ,medical|ҽ +ʬ V check|,content=body|,#die|,medical|ҽ,police| +ʬ N human|,#occupation|ְλ,*check|,#body|,#die|,medical|ҽ,police| + V check| + V check| +Ѫ V check|,content=liquid|Һ,medical|ҽ +֤ V prove|֤ +֤ N human|,*prove|֤ + V check|,content=fund|ʽ,commercial| + V damage| + N phenomena|,undesired|ݬ,#unfortunate| +꼰 V damage| + V request|Ҫ + V request|Ҫ + V request|Ҫ + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| + ADJ aValue|ֵ,age|,young| + N animal|,young| + N crop|ׯ,young| + N fish|,young| + N plant|ֲ,young| + N shows| + N bird| + N crop|ׯ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +÷ N fruit|ˮ + N tree| + N fruit|ˮ +֦ N fish| + V disseminate| + V lift| + V spread| + V shake|ҡ,patient=tool|þ +ﳤܶ V show|,content=able| +ﳤ V show|,content=able| +ﳤȥ V leave|뿪 +﷫ V start|ʼ,content=VehicleGo|ʻ +ü V satisfied| + V WellKnown| + V remove| + N MusicTool| + N tool|þ,*disseminate|,#sound| + V frighten|Ż + V satisfied| +Ե V satisfied| + N place|ط,city|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) +ӽ N waters|ˮ,linear|,ProperName|ר,(China|й) + N beast| + V pretend|װ + V attack|,manner=pretend|װ,military| + V deceive|ƭ +װ V pretend|װ + N disease| + N livestock| +С N facilities|ʩ,route|· + N place|ط,city|,ProperName|ר,(China|й) + N FlowerGrass| +ަ N AlgaeFungi|ֲ + N livestock|,young| + N PenInk|ī,*write|д + N part|,%AnimalHuman|,*feel| +ë N part|,%livestock|,hair|ë,?material| +ë N clothing| +ë N human|,#occupation|ְλ,commercial| +ë״ ADJ aValue|ֵ,form|״ +Ĥ N part|,%AnimalHuman| +Ƥ N part|,%livestock|,skin|Ƥ,?material| +Ƥֽ N paper|ֽ + N part|,%livestock|,hair|ë,?material| + N food|ʳƷ,#livestock| + N character|,surname|,human|,ProperName|ר +ˮ N part|,%AnimalHuman|,liquid|Һ + N fruit|ˮ +ʻƤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N human|,#occupation|ְλ,agricultural|ũ,*foster|,*TakeCare|,#livestock| + ADJ aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,time|ʱ,now| + N money| + N waters|ˮ,surfacial| +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N material|,?edible|ʳ + N LandVehicle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ػ N FlowerGrass|,?medicine|ҩ + N house|,foreign| + N clothing|,foreign| + N tool|þ,*beat| + N human|,foreign|,undesired|ݬ + N material|,*build| + N tool|þ,*lighting|ȼ + N artifact|˹,foreign| + ADJ aValue|ֵ,pattern|ʽ,foreign| + N water|ˮ,#waters|ˮ + ADJ aValue|ֵ,pattern|ʽ,foreign| + N MusicTool| + N human|,foreign| +ɤ N sound|,#music| +ʽ ADJ aValue|ֵ,kind|,foreign| + N tool|þ,#young|,*recreation| +Ϊ V use|,patient=foreign| + N InstitutePlace|,past|,commercial| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V satisfied| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ե V satisfied| + V exist| + N material|,liquid|Һ,$burn| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,contrariness|,positive| + ADJ aValue|ֵ,time|ʱ,now| + N celestial| + N time|ʱ,spring| + N electricity| +Υ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N facilities|ʩ,#house| +ص N facilities|ʩ,route|· + N lights|,#celestial| + N part|,%electricity| + N part|,%electricity| + N law|ɷ,#time|ʱ +ƽ N sound|,#language| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɡ N tool|þ,*protect|,#weather| +̨ N part|,%house|,space|ռ + ADJ aValue|ֵ,kind| +١ N character|,surname|,human|,ProperName|ר + N disease| + N gas| + V ize|̬ + N chemical|ѧ + N metal| +þ N metal| + N metal| + N chemical|ѧ + N gas| + V CausePartMove|,direction=upper| + N character|,surname|,human|,ProperName|ר + V depend| + V respect| + V depend| + N place|ط,capital|,ProperName|ר,(Burma|) + N shape|,angular| + V CausePartMove|,direction=upper| +Ľ V respect| +˱Ϣ V depend| + V look|,direction=upper| + V look|,direction=upper| +쳤̾ V sigh|̾ + V look|,direction=upper| + V request|Ҫ + V LieDown| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + V depend| + V itch| + V itch| + V GiveBirth| + V ProvideFor| + ADJ aValue|ֵ,clan| + N character|,surname|,human|,ProperName|ר + V cultivate| + V maintain| + V provide| + V rest|Ϣ + V ProvideFor|,patient=army|,military| + V rest|Ϣ,cause=ill|̬ + V cultivate| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ + N human|,family|,male| +ĸ N human|,family| + V maintain| + V ProvideFor| + N InstitutePlace|,@foster|,#bird| + V maintain| + V MakeLiving|ı + V provide| +Ͻ N payment| +Ժ N InstitutePlace|,@TakeCare|,#aged| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ +· V maintain|,patient=space|ռ +· N expenditure| +ĸ N human|,family|,female|Ů +Ů N human|,family|,female|Ů,young| + V maintain|,patient=mental| + V maintain|,medical|ҽ + V foster|,patient=fish| + N facilities|ʩ,*foster|,#fish| + V ProvideFor| +ֳ V foster|,agricultural|ũ + V foster|,patient=livestock| + N InstitutePlace|,@foster|,#livestock| + N human|,family|,male|,young| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,kind|,&physical| + N example|ʵ +Ϸ N shows| + N readings| + N machine| +Ƭ N shows| +Ʒ N artifact|˹,generic|ͳ,#example|ʵ +ƷԱ N human|,#occupation|ְλ,*check| +ʽ N attribute|,pattern|ʽ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,bearing|̬,&human| + V spill| + V invite| + V request|Ҫ + V please|ȡ + V request|Ҫ,ResultEvent=praise|佱 + V attack|,military| + V assemble|ۼ + ADJ aValue|ֵ,property|,invite| + V invite| + N fact|,*compete|,sport| + N human|,*invite| + N location|λ,middle| + N part|,%AnimalHuman|,body| + N part|,%clothing|,body| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N MusicTool| + N fruit|ˮ + N tree| + N food|ʳƷ + N attribute|,size|ߴ,&AnimalHuman| + N attribute|,size|ߴ,&human| + N part|,%AnimalHuman|,body| +ᱳʹ V painful|ʹ +ʹ N disease| +Χ N attribute|,size|ߴ,body|,&human| +Χ N tool|þ,linear|,*fasten|˩ + N part|,%AnimalHuman|,body| +׵ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,undesired|ݬ,evil| + N humanized|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,female|Ů,evil| + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| +ħ N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N method|,undesired|ݬ,*deceive|ƭ +Ի V deceive|ƭ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ұ ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N treasure|䱦 + N community|,ProperName|ר,(China|й) +ҡ V shake|ҡ +ҡ V hesitate|ԥ +ҡ V wave|ڶ +ҡ N part|,%machine|,arm| +ҡ V VehicleGo|ʻ +ҡ V TalkNonsense|Ϲ˵ +ҡ V wave|ڶ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N music| +ҡ N music| +ҡ V shake|ҡ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N furniture|Ҿ,space|ռ,@sleep|˯ +ҡź V help|,scope=mental| +ҡǮ N place|ط,#wealth|Ǯ +ҡһ V change| +ҡͷ V reject|ؾ +ҡͷβ V satisfied| +ҡͷ V satisfied| +ҡβ V request|Ҫ,ResultEvent=pity| +ҡҡλ V shake|ҡ +ҡҡ׹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ҡҷ V wave|ڶ +ҡ N furniture|Ҿ,@sit| +Ң N human|,royal|,ProperName|ר,past| +Ң˴ N human|,desired|,past| +ң ADJ aValue|ֵ,distance|,far|Զ +ң V measure|,industrial| +ң V perception|֪ +ң V control| +ң V look|,direction=far|Զ +ңӦ V cooperate| +ңң ADJ aValue|ֵ,distance|,far|Զ +ңң V surpass|ǿ +ңң ADJ aValue|ֵ,duration|,TimeLong| +ңԶ ADJ aValue|ֵ,distance|,far|Զ +ңԶ ADJ aValue|ֵ,duration|,TimeLong| +Ҥ N facilities|ʩ,space|ռ,@produce|,#material| +Ҥ N facilities|ʩ,space|ռ,mine| +Ҥ N house| +Ҥ N house| +Ҥ N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ҥ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +ҥ N information|Ϣ,undesired|ݬ,fake|α +ҥ N text|,literature| +ҥ V disseminate| +ҥ N information|Ϣ,undesired|ݬ,fake|α +Ҧ N character|,surname|,human|,ProperName|ר +ҧ V accuse|ظ +ҧ V bite|ҧ +ҧ V cry| +ҧ V hold| +ҧ V speak|˵ +ҧ V sting| +ҧ V judge|ö +ҧ V speak|˵ +ҧ V bite|ҧ,#fish|,patient=InsectWorm| +ҧ V connect| +ҧ V endure| +ҧ N bite|ҧ +ҧ N human|,undesired|ݬ,*disable|м,#speak|˵ +ҧĽ V PayAttention|ע,target=expression| +ҧ V bite|ҧ +ҧг V bite|ҧ +ҧס V bite|ҧ +ҧס V hold| +ҧ۶ V PayAttention|ע,target=expression| +ҧ ADJ aValue|ֵ,easiness|,difficult|,#speak|˵ +Ҩ V TakeOutOfWater| +Ҩ N tool|þ,cubic|,*TakeOutOfWater| +ҩ N chemical|ѧ +ҩ V kill|ɱ,instrument=poison| +ҩ N medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N InstitutePlace|,*produce|,#medicine|ҩ,factory|,industrial| +ҩ N publications|鿯,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N document|,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N expenditure|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ +ҩ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ҩ N tool|þ,cubic|,*produce|,#medicine|ҩ +ҩ N medicine|ҩ +ҩʦ N human|,#occupation|ְλ,#medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N knowledge|֪ʶ,#medicine|ҩ +ҩ N tool|þ,*cure|ҽ +ҩ N medicine|ҩ +ҩũ N human|,#occupation|ְλ,agricultural|ũ +ҩũ N human|,#occupation|ְλ,agricultural|ũ,#medicine|ҩ +ҩƬ N medicine|ҩ +ҩƷ N medicine|ҩ,generic|ͳ +ҩƿ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩ N edible|ʳ,#medicine|ҩ +ҩʯ N medicine|ҩ +ҩˮ N medicine|ҩ,liquid|Һ +ҩ N medicine|ҩ +ҩζ N attribute|,odor|ζ,&medicine|ҩ +ҩζ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,contain|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,generic|ͳ +ҩж N disease| +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩЧ N attribute|,effect|Ч,&medicine|ҩ +ҩ N attribute|,property|,&medicine|ҩ +ҩѧ N knowledge|֪ʶ,#medicine|ҩ +ҩҺ N medicine|ҩ +ҩҺ N medicine|ҩ,*wash|ϴ +ҩ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҩ N tool|þ,*sleep|˯,#medicine|ҩ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADV aValue|ֵ,time|ʱ,future| +Ҫ V beg| +Ҫ V expect| +Ҫ V request|Ҫ +Ҫ V spend| +Ҫ CONJ {condition|} +Ҫ AUX {modality|} +Ҫ N place|ط,route|·,military|,important| +Ҫ N fact|,important|,#police| +Ҫ CONJ {condition|} +Ҫ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ҪȻ CONJ {transition|ת} +Ҫ CONJ {condition|} +Ҫ N place|ط,military|,important| +Ҫ N facilities|ʩ,route|·,important| +Ҫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ҫ N place|ط,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N part|,%entity|ʵ,important| +Ҫ N human|,crime|,undesired|ݬ +Ҫ V beg|,patient=artifact|˹ +Ҫ N human|,poor|,*beg|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N place|ط,military|,important| +Ҫ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ҫ V propose|,content=price|۸,commercial| +Ҫ N document|,important| +Ҫ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ V worried|ż +Ҫ N method|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫô COOR {or|} +Ҫ ADV aValue|ֵ,degree|̶,extreme| +Ҫ N fact|,$disgust|,undesired|ݬ +Ҫ V kill|ɱ +Ҫǿ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ҫ V request|Ҫ +Ҫ N human|,desired|,important| +Ҫ N facilities|ʩ,space|ռ,military| +Ҫ N fact|,important| +Ҫ CONJ {condition|} +Ҫ N part|,%entity|ʵ,heart| +Ҫ N information|Ϣ +Ҫ N information|Ϣ,important| +ҪЮ V force|ǿ +ҪЮ V frighten|Ż +ҪԲ ADJ aValue|ֵ,content|,simple|,desired| +ҪԱ N human|,desired|,important| +Ҫ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| +Ҫְ N affairs|,duty|,important| +Ҫּ N part|,%entity|ʵ,heart| +ҫ V AppearanceChange|۱ +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ V illuminate| +ҫ ADJ aValue|ֵ,brightness|,bright| +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ,$eat| +ҭ V ill|̬ +ҭ V refute| +Ү N character|,(China|й) +Үͻ N human|,religion|ڽ,ProperName|ר +Ү· N place|ط,capital|,ProperName|ר,(Israel|ɫ) +Ү N human|,religion|ڽ,ProperName|ר +Үջ N human|,religion|ڽ,ProperName|ר +ү N humanized| +ү N human|,family|,male| +ү N human|,male|,adult| +ү N human|,male|,mass| +ү N human|,male|,mass| +ү N human|,family|,male| +ү N human|,male| +үү N human|,family|,male| +үү N human|,male|,adult| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұ N place|ط +Ұ N part|,%vegetable|߲,embryo|,$eat| +Ұ N vegetable|߲ +Ұ N fact|,eat| +Ұ N FlowerGrass| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Ұ N place|ط,desolate| +Ұ N fruit|ˮ +Ұ N fire| +Ұ N fire|,#land|½ +Ұ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ұ N bird| +Ұ N human|,undesired|ݬ,female|Ů,#crime|,$SeekPleasure|Ѱ +Ұѧ N InstitutePlace|,@teach|,@study|ѧ,education|,informal|ʽ +Ұ¿ N beast| +Ұ N beast| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ N human|,fierce|,undesired|ݬ +Ұè N beast| +Ұţ N beast| +ҰǾޱ N FlowerGrass| +ҰȤ N emotion| +Ұ N human| +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұﱣ N human|,*protect|,#animate| +Ұ N beast|,generic|ͳ +Ұ N beast| +Ұ N place|ط +Ұζ N food|ʳƷ +Ұ N aspiration|Ը,expect| +ҰIJ ADJ aValue|ֵ,will|־,strong|ǿ +Ұļ N human|,evil|,undesired|ݬ +Ұ N human|,evil|,undesired|ݬ +Ұ N attribute|,behavior|ֹ,fierce|,&AnimalHuman| +ҰӪ V reside|ס +Ұս N fact|,fight|,military| +Ұս N army| +Ұս N army| +Ұսڱ N army| +Ұսڱ N part|,%army| +Ұ N beast| +ұ V burn|,industrial| +ұ ADJ aValue|ֵ,attachment| +ұ V burn|,patient=metal|,industrial| +ұѧ N human|,#knowledge|֪ʶ +ұ V burn|,industrial| +ұ N InstitutePlace|,*burn|,factory|,industrial| +ұ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ҳ ADV also|Ҳ +Ҳ EXPR expression|,*ExpressAgreement|ʾͬ +Ҳ CONJ {and|} +Ҳ CONJ {and|} +Ҳ ADV {comment|} +Ҳ˵ CONJ {supplement|ݽ} +Ҳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yemen|Ҳ) +Ҳ N place|ط,country|,ProperName|ר,(Asia|) +Ҳŵɶ N money|,(Yemen|Ҳ) +ҲǶ N money|,(Yemen|Ҳ) +Ҳ N human|,(Yemen|Ҳ) +Ҳ ADV {comment|} +ҳ N NounUnit|,&paper|ֽ +ҳ CLAS NounUnit|,&paper|ֽ +ҳ N attribute|,number|,&readings| +ҳ N tool|þ,*print|ӡˢ +ҳ N stone|ʯ +Ҵ V HoldWithHand| +Ҵ V help| +Ҵ V insert| +Ҵ V upgrade| +ҵ N affairs| +ҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ҵ N institution| +ҵ N wealth|Ǯ +ҵ N wealth|Ǯ,#earth|,#building| +ҵ N result|,undesired|ݬ,#unfortunate| +ҵ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N result|,desired|,#succeed|ɹ +ҵ ADV time|ʱ +ҵ N affairs| +ҵ N affairs|,commercial| +ҵԱ N human|,#occupation|ְλ,commercial| +ҵ֪ʶ N knowledge|֪ʶ +ҵ ADV time|ʱ +ҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,informal|ʽ +ҵʱ N time|ʱ,idle| +ҵ N human|,rich| +Ҷ CLAS NounUnit|,&paper|ֽ +Ҷ N character|,surname|,human|,ProperName|ר +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N part|,time|ʱ,past| +Ҷ N shape|,surfacial|,thin| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N InsectWorm| +Ҷ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ҷ N part|,%plant|ֲ +Ҷ N part|,%machine| +Ҷ V GoBack|,LocationFin=place|ط,original|ԭ +Ҷ N part|,%plant|ֲ,hair|ë +ҶƬ N part|,%machine| +ҶƬ N part|,%plant|ֲ,hair|ë +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N chemical|ѧ +Ҷ N part|,%plant|ֲ,hair|ë +ҷ V pull| +ҷⵯ N weapon|,*guide| +Ҹ N part|,%AnimalHuman|,arm| +Ҹ N part|,%AnimalHuman|,arm| +Ҹѿ N part|,%plant|ֲ,embryo| +ҹ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹ N time|ʱ,day|,night| +ҹζ V change| +ҹ N LandVehicle|,night| +ҹ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ N InsectWorm| +ҹ N fact|,eat|,night| +ҹ N time|ʱ,day|,night| +ҹ N tool|þ,*tell|,#time|ʱ +ҹ V VehicleGo|ʻ +ҹ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ҹ ADV time|ʱ,day|,night| +ҹ乤 N affairs|,#duty|,#sequence|,night| +ҹ N attribute|,scene|,&inanimate|,&building| +ҹ N sky| +ҹ N FlowerGrass| +ҹ˾ ADJ time|ʱ,day|,night| +ҹԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ҹ N time|ʱ,day|,night| +ҹä֢ N disease| +ҹè N bird| +ҹè N human|,#sleep|˯,late| +ҹĻ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹɫ N lights| +ҹ˾ N time|ʱ,day|,night| +ҹ N fact|,#act|ж,time=night| +ҹ N InstitutePlace|,@sell|,@buy|,night|,commercial| +ҹ N time|ʱ,day|,night| +ҹϮ V attack|,military| +ҹ N edible|ʳ +ҹУ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ V SelfMoveInManner|ʽ +ҹ V VehicleGo|ʻ +ҹҹ N time|ʱ,night| +ҹԼ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N human|,*act|ж,night| +ҹܻ N InstitutePlace|,@WhileAway|,commercial| +ҹݺ N bird| +Һ N drinks|Ʒ +Һ N liquid|Һ,generic|ͳ +Һ V ize|̬,PatientAttribute=liquid|Һ,industrial| +Һ N material|,gas|,$burn| +Һ N natural|Ȼ,generic|ͳ +Һ N part|,%liquid|Һ,skin|Ƥ +Һ̬ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +Һ N liquid|Һ,generic|ͳ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,range|,all|ȫ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ qValue|ֵ,amount|,single| +һ ADJ aValue|ֵ,age|,aged| +һ N human| +һ N human|,able|,desired| +һ N human|,official| +һˮ V defeated| +һͿ V defeated| +һ N part|,%entity|ʵ +һ ADJ aValue|ֵ,kind|,ordinary| +һ ADV aValue|ֵ,similarity|ͬ,alike| +һ˵ ADV {comment|} +һ ADV {comment|} +һ㻯 V ize|̬ +һ˵ ADV {comment|} +һ˵ ADV {comment|} +һ N attribute|,kind|,ordinary|,&physical| +һһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һ NUM qValue|ֵ,amount|,half| +һ V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +һڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +һ۸ V enjoy|,content=look|,#beautiful| +һ۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| +һʮ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +һ ADJ aValue|ֵ,duration|,TimeLong| +һ N time|ʱ,#alive| +һ ADJ aValue|ֵ,behavior|ֹ,strict| +һǿ׳ V collude| +һʹ V remove| +һĨɱ V remove| +һ N part|,%entity|ʵ,aspect| +һ V ill|̬,medical|ҽ +һ ADV aValue|ֵ,property|,$merge|ϲ +һ ADJ aValue|ֵ,circumstances|,hardship| +һδƽһ EXPR happen|,experiencer=fact|,manner=again| +һС ADV aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +һ V prosper| +һһӡ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N part|,&entity|ʵ +һ N location|λ,edge| +һ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +һ V fail|ʧ +һ ADJ aValue|ֵ,duration|,TimeShort| +һһϦ ADJ aValue|ֵ,duration|,TimeShort| +һȾ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һȾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +һɲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һĪչ V BeUnable| +һ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +һ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +һ V decide| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,effect|Ч,^lasting| +һ ADJ aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,age|,aged| +һ ADJ qValue|ֵ,amount|,many| +һ N time|ʱ,morning|,early| +һ N place|ط +һ N time|ʱ,#alive| +һ N time|ʱ,now| +һ N time|ʱ,royal|,past| +һ CONJ {time|ʱ} +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ֮ N result|,desired|,#succeed|ɹ +һ֮ N thought|ͷ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һȹ N result|,desired|,#succeed|ɹ +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ ADV aValue|ֵ,degree|̶,ish| +һ N image|ͼ,dot| +һ N part|,%character| +һ ADJ qValue|ֵ,amount|,few| +һ V tell| +һ N time|ʱ,special| +һ V touch| +һ ADV aValue|ֵ,degree|̶,ish| +һ ADJ qValue|ֵ,amount|,few| +һһ ADV qValue|ֵ,amount|,all|ȫ +һ ADV aValue|ֵ,degree|̶,insufficiently|Ƿ +һ ADJ qValue|ֵ,amount|,few| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +һ ADJ aValue|ֵ,kind|,special| +һ ADV {comment|} +һ N quantity|,amount|,&entity|ʵ +һ֮ N method| +һ֮ N regulation| +һһ ADJ aValue|ֵ,distance|,far|Զ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,frequency|Ƶ,past| +һ N part|,%entity|ʵ,aspect| +һ ADJ qValue|ֵ,amount|,few| +һ ADV aValue|ֵ,degree|̶,more| +һǧ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +һ˳ V lucky| +һ̬ V alter|ı +һ N part|,%entity|ʵ,aspect| +һ紵 V remove| +һ ADV aValue|ֵ,wholeness|ȱ,complete| +һŶ V treat|Դ,manner=alike| +һɶ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ۶ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADV aValue|ֵ,range|,all|ȫ +һ V fulfil|ʵ,manner=fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һӴ V damage| +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N system|ƶ +һɢ V disperse|ɢ +һŵ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һӦ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һһ ADJ aValue|ֵ,content|,concise|,desired| +һ V illuminate| +һ V pass|ȹ +һӶ V fulfil|ʵ,manner=fast| +һ V BeSame|ͬ +һ ADV aValue|ֵ,duration|,TimeShort| +һ N time|ʱ +һ ADJ aValue|ֵ,GoodBad|û,good|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һ֮ N attribute|,ability|,special|,&organization|֯,&human| +һ ADJ aValue|ֵ,relatedness|,intimate| +һ V love| +һ˫ V succeed|ɹ +һ N part|,%fact|,#act|ж +һٳ V WellKnown| +һ V succeed|ɹ +һһ N fact|,#act|ж +һ V HaveContest| +һǧ ADJ aValue|ֵ,value|ֵ,precious|,desired| +һ֮ N thought|ͷ,empty| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һ ADJ aValue|ֵ,range|,all|ȫ +һ N thought|ͷ +һ N document| +һ V look| +һ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ qValue|ֵ,amount|,many| +һ ADJ qValue|ֵ,amount|,many| +һ˰ V finish| +һ۰צ N inanimate|,secondary| +һб V walk| +һ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ· V SelfMoveInManner|ʽ,manner=together|ͬ +һ· ADV process| +һ· N entity|ʵ,alike|,undesired|ݬ +һ·ɫ N entity|ʵ,alike|,undesired|ݬ +һ·ƽ EXPR expression|,*SayHello|ʺ +һ· ADV process| +һ·˳ EXPR expression|,*SayHello|ʺ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ N celestial| +һǧ V decline|˥ +һ V BeSame|ͬ +һ V guide| +һƽ N land|½,smooth|̹ +һ ADJ aValue|ֵ,attachment|,alike| +һ˼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ N part|,%entity|ʵ,aspect| +һ֮ ADJ aValue|ֵ,relatedness|,sparse| +һ V WellKnown| +һ V die| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +һĿȻ ADJ aValue|ֵ,content|,NotProfound|dz +һĿʮ ADJ read|,manner=fast| +һ N time|ʱ,year| +һ굽ͷ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ aValue|ֵ,frequency|Ƶ,year| +һļ ADJ aValue|ֵ,duration|,TimeLong| +һһ ADJ aValue|ֵ,frequency|Ƶ,year| +һŭȥ V leave|뿪,manner=angry| +һŵǧ N text|,*MakeAppointment|Լ,$obey|ѭ +һļ V fit|ʺ,manner=easy| +һƫ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +һƶϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ ADJ aValue|ֵ,time|ʱ,alike| +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADV aValue|ֵ,frequency|Ƶ +һdz ADJ aValue|ֵ,content|,concise|,desired| +һdz V fulfil|ʵ,manner=fast| +һǮֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +һϲͨ V ignorant|֪ +һ N entity|ʵ +һ ADJ qValue|ֵ,amount|,all|ȫ +һ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һ ADJ aValue|ֵ,clearness|,clear| +һ ADJ aValue|ֵ,content|,opened| +һ֮ N human|,alike|,undesired|ݬ +һȥ V disappear|ʧ +һԾɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һǧ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һɨ V CauseToBeHidden|ʹʧ +һɫ ADJ aValue|ֵ,similarity|ͬ,alike| +һɲ ADJ aValue|ֵ,duration|,TimeShort| +һ N human|,single| +һ N part|,%AnimalHuman|,body| +һ ADJ qValue|ֵ,amount|,single|,#clothing| +һ V undertake| +һǵ ADJ aValue|ֵ,courage|,brave|,desired| +һ V KeepSilence|˵ +һ N time|ʱ,process|,@alive| +һһ N time|ʱ,process|,@alive| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ N time|ʱ +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱһ ADJ aValue|ֵ,frequency|Ƶ,often| +һ޳ V DoNot| +һͬ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,single| +һְ V handle|,manner=single| +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һ˲ ADJ aValue|ֵ,duration|,TimeShort| +һ˿ ADJ qValue|ֵ,amount|,few| +һ˿ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +һ˿ V exposure|¶ +һ˿һ ADJ qValue|ֵ,amount|,few| +һͿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һͿ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N entity|ʵ,complete| +һ廯 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ쵽 ADJ aValue|ֵ,duration|,TimeLong| +һ N process| +һ N shape|,linear| +һ ADJ aValue|ֵ,relatedness|,intimate| +һͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һͳ V merge|ϲ +һͷ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +һͷ N part|,%entity|ʵ,aspect| +һͷ N furniture|Ҿ,space|ռ,@put| +һź ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +һ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ V catch|׽ס +һ V like|ϧ +һǰ V GoForward|ǰ +һ޼ ADJ aValue|ֵ,area|,wide| +һζ ADV {emphasis|ǿ} +һIJ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V ignorant|֪ +һѷ ADJ aValue|ֵ,behavior|ֹ,disorder|,undesired|ݬ +һ޿ȡ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һǴ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +һ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V NoKnowledge|֪ +һһʮ ADJ aValue|ֵ,content|,detailed|,desired| +һ V err| +һϢд V alive| +һϯ֮ N place|ط,small|С +һϵ ADJ qValue|ֵ,amount|,many| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADV aValue|ֵ,behavior|ֹ,sudden| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ qValue|ֵ,amount|,few| +һϣ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һ ADV aValue|ֵ,frequency|Ƶ,often| +һС ADJ qValue|ֵ,amount|,few| +һЦ֮ V IllTreat| +һЩ ADV aValue|ֵ,degree|̶,ish| +һЩ ADJ qValue|ֵ,amount|,some|Щ +һкǧ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +һ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,mass|,*tour| +һԲ V KeepSilence|˵ +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һΪ V obey|ѭ +һһ N fact|,#act|ж,#text| +һԱ֮ V speak|˵ +һ̼ N gas| +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һҹ֮ ADJ aValue|ֵ,duration|,TimeShort| +һһ ADJ aValue|ֵ,sequence| +һһӦ V fit|ʺ +һ´ˮ ADJ aValue|ֵ,distance|,near| +һ V RashlyAct| +һӦȫ ADJ aValue|ֵ,range|,all|ȫ +һӵ V LeaveFor|ǰ,manner=fast| +һ V explain|˵ +һƵ V explain|˵ +һ˫ ADJ aValue|ֵ,content|,profound| +һԪ ADJ aValue|ֵ,content|,neat|,desired| +һ N time|ʱ,month| +һ· N time|ʱ,month| +һ ADV aValue|ֵ,frequency|Ƶ,again| +һ ADJ time|ʱ,morning|,early| +һգ N time|ʱ,TimeShort| +һգ۵Ĺ N time|ʱ,TimeShort| +һѪ ADJ aValue|ֵ,content|,accurate|׼,desired| +һ N time|ʱ +һ N wind| +һ N time|ʱ +һ N time|ʱ +һ ADJ aValue|ֵ,range|,all|ȫ +һ֪ V ignorant|֪ +һֱ ADV aValue|ֵ,frequency|Ƶ,often| +һֽ N document|,useless| +һǧ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һ N attribute|,similarity|ͬ,alike|,&entity|ʵ +һר ADJ aValue|ֵ,ability|,able|,desired| +һ겻 V decline|˥ +һ V fulfil|ʵ,manner=fast| +Ҽ NUM qValue|ֵ,amount|,cardinal| +ҽ N affairs|,medical|ҽ +ҽ V cure|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽԱ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽƴѧ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽѧ N human|,*study|ѧ,education|,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ V cure|ҽ +ҽƶ N human|,*cure|ҽ,medical|ҽ +ҽƺվ N InstitutePlace|,@rescue|,military|,medical|ҽ +ҽ¹ N fact|,wrong|,medical|ҽ,#cure|ҽ,undesired|ݬ +ҽվ N InstitutePlace|,@cure|ҽ,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʿ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N publications|鿯,#medical|ҽ +ҽ N method|,#medical|ҽ +ҽ N affairs|,medical|ҽ +ҽ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽѧ N knowledge|֪ʶ,medical|ҽ +ҽѧ N human|,#knowledge|֪ʶ,medical|ҽ +ҽѧʿ N human|,*study|ѧ,education|,medical|ҽ +ҽѧԺ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽҩ N medicine|ҩ +ҽ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽ V cure|ҽ +ҽ N text|,#cure|ҽ,medical|ҽ +ҿ N metal| +ҿ N PenInk|ī,*write|д + V depend| + V obey|ѭ + V surrender| + PREP {AccordingTo} + V depend| + ADJ aValue|ֵ,sequence| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence| + V obey|ѭ + V surrender| + V exist| + N language|,#country|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,proper|,police| + V depend| + V tie| + V tie| + V ChangeNot| + ADV aValue|ֵ,behavior|ֹ,lasting| + N reason| + PREP {AccordingTo} + V depend| + V depend| + N attribute|,property|,depend|,&human| + V grudge| +ƾ V depend| +Ȼ V ChangeNot| +Ȼ ADV aValue|ֵ,behavior|ֹ,lasting| +Ȼ V ChangeNot| +Ȼ V ChangeNot| +ɽˮ ADV aValue|ֵ,location|λ +˳ V fit|ʺ + V depend| +ϡ ADJ aValue|ֵ,clearness|,blurred| +« ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +« V imitate|ģ + V grudge| + V grudge|,content=separate| +ϧ V farewell| + V depend| + PREP {AccordingTo} + V lean|п + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Iraq|) + N place|ط,city|,ProperName|ר,(China|й) +԰ N place|ط,happy|,#lucky| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iraq|) + N place|ط,country|,ProperName|ר,(Asia|) +˵ɶ N money|,(Iraq|) + N human|,(Iraq|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Iran|) +ŵ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ʼ N part|,%time|ʱ,head|ͷ +˹ N place|ط,capital|,ProperName|ר,(Pakistan|ͻ˹̹) +˹ N community|,religion|ڽ +˹ N law|ɷ,#time|ʱ +˹ͽ N human|,religion|ڽ +˹̹ N place|ط,city|,ProperName|ר,(Turkey|) + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + N part|,%AnimalHuman|,embryo| + N part|,%physical|,skin|Ƥ +° N place|ط,provincial|ʡ,ProperName|ר,(US|) +° N part|,%AnimalHuman|,embryo| +³ N furniture|Ҿ,cubic|,@put|,#clothing| +´ N part|,%clothing|,cubic|,@put| +¶ N part|,%clothing|,cubic|,@put| +· N clothing|,generic|ͳ +¹ N clothing| +¹ N human|,evil|,undesired|ݬ +¹ڣ N facilities|ʩ,space|ռ,@bury|,#die| +¹ N furniture|Ҿ,cubic|,@put|,#clothing| +¼ N attribute|,appearance|,&human| +¼ N furniture|Ҿ +½ N part|,%clothing|,body| +½ V GoBack|,time=succeed|ɹ + N material|,?clothing|,generic|ͳ + N part|,%clothing|,#head|ͷ +ñ N room|,@put|,#clothing| + N clothing| + N clothing|,generic|ͳ +ʳס V fact|,MakeLiving|ı +ʳס N fact|,MakeLiving|ı + N clothing|,generic|ͳ + N part|,%clothing|,#arm| + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + V maintain| + N part|,%AnimalHuman|,skin|Ƥ +ú԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,ProperName|ר,(China|й) + V maintain| +ָʹ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,form|״,smooth|̹ + ADJ aValue|ֵ,source|Դ,foreign| + V destroy|,military| + N human|,#space|ռ,past| + N human|,foreign| + N place|ط,foreign|,country| + V destroy| + V PassOn| + N artifact|˹,generic|ͳ,$lose|ʧȥ + V lose|ʧȥ +Ų N wealth|Ǯ,#die|,#police|,$PassOn| +Ų N human|,*receive|,#wealth|Ǯ +Ų˰ N expenditure| +ų ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ų V unfortunate| +Ŵ V give|,#animate| +Ŵ N knowledge|֪ʶ +Ŵ N part|,%animate|,#PassOn| +Ŵѧ N knowledge|֪ʶ +Ŵѧ N human|,#knowledge|֪ʶ +Ŵ V SetAside| +Ŵ N part|,%AnimalHuman|,*die|,body| +ŷ N attribute|,habit|ϰ,&human| +Ÿ N human|,family|,young| +Ź N human|,family|,young| +Ź N part|,%AnimalHuman|,*die|,body| +ź N part|,%AnimalHuman|,*die|,body| +ź V repent|û +ż N part|,%building|,waste|,body| +ż N trace|,#building| +ž V excrete|й,medical|ҽ + N human|,aged|,mass| + N human|,mass|,undesired|ݬ + V PassOn| + V SetAside| +© V discharge| + N human|,mass| + V excrete|й,patient=liquid|Һ,medical|ҽ + V abandon| + N attribute|,appearance|,#die|,&human| + N image|ͼ,#die| + N human|,mass|,young| +ʧ V lose|ʧȥ +ʸ V excrete|й,patient=waste| + N fact|,past| + N letter|ż + N readings| + N readings|,$lose|ʧȥ + N human| + N part|,%AnimalHuman|,*die|,body| + V forget| +֢ N disease| + N tool|þ,generic|ͳ + N image|ͼ,#die| + N text|,#die|,$SetAside| +Ը N aspiration|Ը,expect|,#die|,$SetAside| +ַ N place|ط +־ N aspiration|Ը,expect|,#die|,$SetAside| + N text|,#die|,$SetAside| + N human|,female|Ů + V SelfMoveInManner|ʽ + V TakeAway|ᶯ + V alter|ı + V change| +Ƶ V alter|ı,entertainment| +ƶ V SelfMoveInManner|ʽ +ƶ V TakeAway|ᶯ +ƶ N affairs|,#internet|,commercial| +Ʒ V SelfMoveInManner|ʽ,purpose=defend|,military| +Ʒ V improve|,patient=habit|ϰ +ƻľ V deceive|ƭ +ƽ V entrust|ί +ƽ V submit| +ƽ V transport|,manner=defend|,police| +ƾ V SelfMoveInManner|ʽ,#country| +ƾ ADJ aValue|ֵ,property|,SelfMoveInManner|ʽ,#country| + V planting|ֲ,agricultural|ũ + N human|,#country| + V transport|,manner=defend|,police| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,medical|ҽ + N attribute|,bearing|̬,&human| + N fact| + N tool|þ,$GiveAsGift| + N tool|þ,generic|ͳ +DZ N attribute|,bearing|̬,&human| +DZ N tool|þ,*measure| +DZ N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N tool|þ,generic|ͳ + N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N attribute|,appearance|,&human| +ʽ N fact| +̬ N attribute|,bearing|̬,&human| +̬ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̶ N community| + N part|,%AnimalHuman|,viscera| +ȵ N medicine|ҩ + N part|,%AnimalHuman|,viscera| + N disease| +Һ N part|,%AnimalHuman|,liquid|Һ + N tool|þ,*wash|ϴ + ADJ aValue|ֵ,property|,$doubt| + V doubt| +ɰ N fact|,difficult|,police| +ɰ N problem|,difficult| +ɵ N problem|,difficult| +ɷ N human|,$doubt|,#crime| +ɻ V doubt| +ɾ N experience|,doubt| + V doubt| + N experience|,doubt| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N experience|,doubt| +ɹ V doubt| + N experience|,doubt| +Ŷ EXPR ^doubt| + ADJ aValue|ֵ,property|,ask| + N experience|,doubt| + N problem| +ʾ N part|,%language| + N experience|,doubt| +IJ N experience|,doubt| + EXPR fear|,cause=doubt| + N experience|,doubt| + N experience|,doubt| + N method| + N shape|,military|,*deceive|ƭ,#enemy| + N experience|,doubt| + N waters|ˮ,linear|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + AUX {modality|} +˱ N place|ط,city|,ProperName|ר,(China|й) +˲ N place|ط,city|,ProperName|ר,(China|й) +˴ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,impression|ӡ,good|,desired| + N place|ط,city|,ProperName|ר,(China|й) + V fit|ʺ + ADJ aValue|ֵ,ability|,able|,$defend| + N human|,family|,female|Ů +ֵ̱ N human|,family|,mass|,male| +̶ N human|,family|,female|Ů +̷ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů +̫̫ N human|,family|,female|Ů + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N InsectWorm| +ϲ N InsectWorm| +ȩ N chemical|ѧ + N chemical|ѧ + V depend| + V lean|п +п V lean|п + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V depend| + ADV {tense|ʱ̬,past|} +Ѷ V fixed|Ѷ +ѹ ADJ aValue|ֵ,time|ʱ,#die|,past| +ѻ ADJ aValue|ֵ,property|,GetMarried| +Ѽ ADV aValue|ֵ,degree|̶,extreme| +Ѿ ADV {tense|ʱ̬,past|} +Ѿ N human|,crime|,undesired|ݬ,$detain|ס +Ȼ V fixed|Ѷ + ADV aValue|ֵ,degree|̶,extreme| +ˮ ADJ aValue|ֵ,property|,$shrink|С + ADJ aValue|ֵ,time|ʱ,past| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ N symbol|,quantity|,$know|֪ + NUM qValue|ֵ,sequence|,ordinal| + N symbol| +Ұ N chemical|ѧ +ұ N chemical|ѧ +Ҵ N chemical|ѧ,?medicine|ҩ,liquid|Һ,$burn| +Ҵ N chemical|ѧ,liquid|Һ,$burn|,#medicine|ҩ +ҷ N human|,organization|֯,#associate| +Ҹ N disease| + N chemical|ѧ +ȩ N chemical|ѧ +Ȳ N gas| +Ȳ N gas|,*illuminate|,*fasten|˩,*break|۶,#metal| + N chemical|ѧ + N chemical|ѧ,$burn| +ϩ N chemical|ѧ +ϩ N chemical|ѧ +͸ N disease| + N chemical|ѧ + STRU {MaChinese|} + N place|ط,country|,ProperName|ר,(Israel|ɫ) + PREP {AccordingTo} + PREP {cause} + PREP {means} + PREP {purpose} +...Ϊ V RegardAs| +...Ϊ V RegardAs|,ResultIsa=secondary| +...Ϊ V aValue|ֵ,property|,$guide| +...Ϊ V RegardAs|,ResultIsa=boundary| +...Ϊ V RegardAs|,ResultIsa=cause|ԭ +...Ϊ V PayAttention|ע +...Ϊ V PayAttention|ע +...Ϊ V RegardAs|,ResultIsa=important| +...Ϊ׼ V RegardAs|,ResultIsa=law|ɷ +Ա ADV aValue|ֵ,location|λ,north| +Ա CONJ {purpose} +Գ V WellTreat|ƴ +Դ V deduce| +Դ ADJ aValue|ֵ,sequence| +Դ ADJ aValue|ֵ,sequence|,beneath| +ԴΪ V RegardAs|,patient=main|,ResultIsa=important| +Ե±Թ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Զ ADV aValue|ֵ,location|λ,east| +Զﴫ V disseminate|,content=wrong| +Ժ N aValue|ֵ,time|ʱ,future| +Ժ N time|ʱ,future| +Լ COOR {and|} +Լ V deceive|ƭ +Խ ADJ aValue|ֵ,distance|,near| + STRU {TimeIni} + V persuade|Ȱ˵ + V benefit| +Ϊ V damage| + V escape| + ADV aValue|ֵ,location|λ,south| + ADV aValue|ֵ,location|λ,external| + ADJ qValue|ֵ,amount|,few|,more| +ǰ N time|ʱ,past| + V expect| +Ȩı˽ V seek|ıȡ +ɫ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Israel|ɫ) +ɫ N place|ط,country|,ProperName|ר,(Asia|) +ɫ N human|,(Israel|ɫ) + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +Է V HaveContest|,patient=law|ɷ +ѳְ V die| + V guide| + ADJ aValue|ֵ,location|λ,external| + N time|ʱ,past| +Ϊ V regard|Ϊ +Ϊ V RegardAs|,patient=self|,ResultIsa=important| +֮ ADV {comment|} + V exchange|,patient=artifact|˹,commercial| + ADV aValue|ֵ,location|λ,west| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +ϱʻΪ ADV aValue|ֵ,sequence| +һʮ ADJ aValue|ֵ,ability|,able|,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Թ ADJ aValue|ֵ,behavior|ֹ,evil|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + CONJ {EventResult|¼} + PREP {means} +Ч V persuade|Ȱ˵,instrument=example|ʵ + N knowledge|֪ʶ,entertainment| + N method| +ռ N human|,entertainment|,(Japan|ձ) + N community|,entertainment| + N attribute|,age|,#entertainment|,&human| + N attribute|,name|,&human|,entertainment| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,appearance|,beautiful|,desired| + N knowledge|֪ʶ,entertainment| + N method| + N InstitutePlace|,*display|չʾ,entertainment| + N human|,entertainment| + N community|,entertainment| +Ʒ N inanimate|,entertainment| + N community|,entertainment| + N attribute|,property|,entertainment|,&entity|ʵ +̳ N community|,entertainment| + N readings| + N thing|,#entertainment|,#literature| +Է N community|,entertainment|,literature| + V restrain|ֹ +ֻ CONJ {or|} + V upset| +ֹ V restrain|ֹ + V restrain|ֹ +Ƽ N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V alter|ı + N character|,surname|,human|,ProperName|ר + V exchange|,commercial| +ױ ADJ aValue|ֵ,ability|,able|,FormChange|α +ױ ADJ aValue|ֵ,ability|,able|,$forget| +ױ ADJ aValue|ֵ,ability|,able|,change| +ױ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +׵ V replace|,patient=place|ط +׶ ADJ aValue|ֵ,content|,easy|,desired| +׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +׶ ADJ aValue|ֵ,ability|,able|,$read| +׸ο ADJ aValue|ֵ,ability|,able|,$soothe|ο +׻ V exchange|,patient=artifact|˹,commercial| +׻ó V exchange|,patient=artifact|˹,commercial| +׽ӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +׾ N publications|鿯,ProperName|ר + N tool|þ,cubic|,@put|,#drinks|Ʒ +ŭ ADJ aValue|ֵ,easiness|,easy|,$irritate|ŭ +ȼ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ +ȼ N inanimate|,easy|,#lighting|ȼ +ȼױ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ + V replace|,patient=human|,sport| +練 ADJ aValue|ֵ,easiness|,easy|,desired| +ɢ ADJ aValue|ֵ,ability|,able|,disappear|ʧ +ܹ ADJ aValue|ֵ,ability|,able|,$attack| +ַ ADJ aValue|ֵ,ability|,able|,$damage| +˺ ADJ aValue|ֵ,ability|,able|,$split|ƿ + ADJ aValue|ֵ,ability|,able|,$break|۶ + ADJ aValue|ֵ,easiness|,easy|,$damage| +ѧ ADJ aValue|ֵ,easiness|,easy|,$study|ѧ +ѹ ADJ aValue|ֵ,ability|,able|,$break|۶ + V AptTo| + ADJ aValue|ֵ,ability|,able|,$misunderstand| +⹥ ADJ aValue|ֵ,ability|,able|,$attack| + N place|ط + N place|ط,city| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ +Ȼ ADJ aValue|ֵ,height|߶,tall| + NUM qValue|ֵ,amount|,cardinal|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,rich| +˹ ADJ aValue|ֵ,duration|,TimeLong| + N affairs|,engage| + N affairs|,engage|,military| + N fact|,fight|,military| +ʹ V use|,agricultural|ũ + N livestock| +ܲ V guess|² +ܶ V guess|² + V forge|α + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ + N human|,past| + N fact| + N fact| + V study|ѧ +ҵ V study|ѧ,^finish| + N disease| +߲ N disease| + N medicine|ҩ + N attribute|,circumstances|,#disease|,&place|ط,&organization|֯ + N place|ط,#disease|,@happen| + ADV also|Ҳ +ಽ V imitate|ģ + N human|,future| + N place|ط,far|Զ + N aspiration|Ը,expect| + V express|ʾ + N information|Ϣ + N place|ط,country|,ProperName|ר,(Italy|) + V predict|Ԥ + N thought|ͷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Italy|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + V know|֪ + N thought|ͷ + N thought|ͷ,different|,#oppose| + N readings|,@record|¼,#thought|ͷ + N text|,$propose|,$discuss|,$debate| + N tool|þ,@put|,#text|,#thought|ͷ +⽳ N thought|ͷ +⾳ N attribute|,circumstances|,&entity|ʵ + V predict|Ԥ +֮ ADJ aValue|ֵ,property|,^$predict|Ԥ +֮ ADJ aValue|ֵ,property|,$predict|Ԥ +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N thought|ͷ + N attribute|,behavior|ֹ,&human| + N emotion|,undesired|ݬ + N mental| +緢 V excited| +Ȥ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N emotion|,FondOf|ϲ +ʶ N mental| +ʶ V understand| +ʶ V understand| +ʶ̬ N thinking|˼ +˼ N aspiration|Ը,expect| +˼ N attribute|,interest|Ȥζ,&entity|ʵ +˼ N emotion|,FondOf|ϲ +˼ N emotion|,grateful|м +˼ N information|Ϣ +˼ N thought|ͷ +ͼ N purpose|Ŀ + ADJ aValue|ֵ,property|,^$predict|Ԥ + N phenomena|,unfortunate|,undesired|ݬ +ζ N attribute|,interest|Ȥζ,&entity|ʵ +ζ N information|Ϣ +ζ ADJ attribute|,content|,profound| +ζ V mean|ָ +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +õ ADJ aValue|ֵ,property|,$predict|Ԥ + N purpose|Ŀ + N document|,commercial| + N attribute|,circumstances|,&entity|ʵ + N emotion|,excited| +˼˼ V hesitate|ԥ + N information|Ϣ + V translate| + V willing|Ը +Ը N aspiration|Ը,expect| + N information|Ϣ + ADJ aValue|ֵ,content|,profound| +־ N aspiration|Ը,expect| +־ᶨ N human|,#will|־,strong|ǿ +־ N attribute|,will|־,&human| + N human|,$love|,friend|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,desired|,&human| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ȻȻ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V LookBack| + V LookBack| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,source|Դ,artificial| + N attribute|,behavior|ֹ,fair|,desired|,&human|,&organization|֯ + N attribute|,relatedness|,&human| + N information|Ϣ +岻ݴ V endeavour| + N part|,%human|,fake|α,#medical|ҽ,*bite|ҧ + V angry| + N emotion|,angry|,desired| + V angry|,desired| + N affairs|,great|ΰ +ʵ N publications|鿯,#expression| + N reason| + N fact|,sell| + V sell|,commercial| + N mark|־,military| + N attribute|,behavior|ֹ,faithful|,desired|,&human| +ʿ N human|,fair|,desired| +޷ V GoForward|ǰ,scope=duty| +޷ V GoForward|ǰ,scope=duty| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N duty| + N human|,military| + N affairs|,#education| + N fact|,perform|,entertainment| +¾ N army| + V cure|ҽ + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,more| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N InsectWorm|,desired| +洦 N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +淢 ADV aValue|ֵ,degree|̶,more| +ĸ N FlowerGrass|,?medicine|ҩ,(China|й) + N bird|,desired| + N human|,friend| + ADJ qValue|ֵ,amount|,many| + V spill| + V spill| + V spill| +Ա V express|ʾ + V discuss| +鰸 N text|,$propose|,$discuss|,$debate| +鳤 N human|,#occupation|ְλ,official|,politics| + N plans|滮,#sequence|,&fact| +鶨 V decide|,manner=discuss| +鶨 N document|,$discuss|,$MakeAppointment|Լ +鹺 V buy|,manner=discuss| + V reconcile|,politics| + N institution|,politics|,#country|,*forming|γ,#law|ɷ + N system|ƶ,politics| + N attribute|,price|۸,#discuss|,&artifact|˹,commercial| + V discuss|,commercial| + V decide| + V discuss| + V speak|˵ +۷׷ V {comment|} + V discuss|,content=affairs|,politics| + N problem|,$discuss| +ϯ N location|λ,#institution| +Ա N human|,official|,politics| +Ժ N institution|,#country|,@discuss|,@debate| + V discuss|,content=affairs|,politics| + N attribute|,relatedness|,&human| + V translate| +뱾 N attribute|,kind|,$translate|,&readings| + V translate| +Ա N human|,#occupation|ְλ,*translate| + V translate| + N attribute|,name|,$translate|,&entity|ʵ + N text|,$translate| + N fact|,translate|,#sound| +Ա N human|,#occupation|ְλ,literature|,*translate| + N human|,literature|,*translate| + V translate| + N readings|,$translate| + N readings|,$translate| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,similarity|ͬ,different| + V surprise| +첽 ADJ aValue|ֵ,performance| + N attribute|,brightness|,bright|,&thing| +쳣 ADJ aValue|ֵ,kind|,special| + N place|ط,foreign| + N place|ط,country|,foreign| +Ѱ ADJ aValue|ֵ,kind|,special| +컯 V ize|̬,PatientAttribute=different| +켺 N human|,different| + N community|,religion|ڽ,different| +ͽ N human|,religion|ڽ +ͻ V appear| +ͬ V BeSame|ͬ +ͬ V BeSame|ͬ,scope=result| +ͬ N attribute|,similarity|ͬ,&entity|ʵ +ζ N attribute|,odor|ζ,special|,&physical| +ζ N food|ʳƷ + N humanized| + N inanimate|,foreign| + N place|ط,foreign| +쿪 V think|˼ + N shape|,queer| + V differ|ͬ + N thought|ͷ,different|,#oppose| + ADJ aValue|ֵ,kind|,special| + N thought|ͷ,different|,#oppose| + N place|ط,country|,foreign| + N place|ط,foreign| + N community|,different| + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + N time|ʱ,year|,future| + N time|ʱ,day|,future| + N tool|þ,@LieDown| + N tool|þ,@LieDown| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,temperature|¶,chilly| + V protect| + V cover|ڸ + V hide| + V protect| + ADJ aValue|ֵ,temperature|¶,chilly| + N cause|ԭ + CONJ {cause|ԭ} + PREP {cause} +ʩ ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + N attribute|,circumstances|,&physical| + N process|,#cause|ԭ,#result| +ªͼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ŬƤǿ N language|,#country|,ProperName|ר + V guide| + N symbol|,#quantity| + N part|,%entity|ʵ + N internet| +Ϊ CONJ {cause|ԭ} +Ϊ PREP {cause} +Ϯ V imitate|ģ +Сʧ V WorthNot|ֵ +ѭ V delay| +ѭ V obey|ѭ +ѭؾ ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ҭʳ V cease|ͣ,cause=fear| + N cause|ԭ +֮ CONJ {EventResult|¼} + N symbol|,#quantity| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + N experience| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʵ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N attribute|,SoundVolume|,&music| + N information|Ϣ + N sound| + N attribute|,SoundVolume|,&music| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N symbol|,#music| + N sound|,#language| + N music| +ֻ N fact|,@perform|,@listen|,#music| +ּ N human|,#knowledge|֪ʶ,#music|,entertainment| +ֽ N community|,#music|,entertainment| + N InstitutePlace|,@listen|,#music| + N attribute|,SoundVolume|,&sound| +Ƶ N attribute|,frequency|Ƶ,&sound| +ɫ N attribute|,SoundQuality|,&sound| + N expression| + N attribute|,speed|ٶ,#sound|,&SelfMove| +λ N expression| + N tool|þ,*disseminate| + N sound| + N tool|þ,*listen|,#music| +Ч N attribute|,effect|Ч,#sound|,&artifact|˹ + N shows| + N information|Ϣ,#letter|ż +Ѷ N information|Ϣ,#letter|ż + V translate| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&sound| + V WeatherBad| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,contrariness|,negative| + N celestial| + N character|,surname|,human|,ProperName|ר + N direction| + N part|,%AnimalHuman|,#female|Ů,viscera| + N place|ط,#lights|,dark| + ADJ aValue|ֵ,brightness|,dark| + N part|,bad|,undesired|ݬ,%organization|֯ + N part|,%AnimalHuman|,#female|Ů,viscera| + ADJ aValue|ֵ,brightness|,dark| + N part|,%AnimalHuman|,#female|Ů,viscera| +ʿ N material|,*AlterColor|ɫ + N part|,%AnimalHuman|,#female|Ů,viscera| + N disease| + N electricity| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N wind| + V dry| + N part|,%house| + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%electricity| + N place|ط,humanized|,#die| + N part|,%AnimalHuman|,#male|,viscera| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N part|,%physical| + N law|ɷ,#time|ʱ + ADJ aValue|ֵ,temperature|¶,chilly| + N place|ط,chilly| +ë N part|,%AnimalHuman|,hair|ë + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%physical|,dark| +ı N plans|滮,undesired|ݬ +ı V plan|ƻ,undesired|ݬ +ı N plans|滮,undesired|ݬ +ı N human|,*plan|ƻ,undesired|ݬ + N part|,%AnimalHuman|,#male|,viscera| +ƽ N sound|,#language| +ɭ ADJ aValue|ֵ,brightness|,dark| +ʪ ADJ aValue|ֵ,property|,dark|,wet|ʪ +ʭ N InsectWorm| +˽ N fact|,undesired|ݬ,secret| + N weather|,WeatherBad| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,kind| + N attribute|,property|,&event|¼,entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + N human| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + V sad|dz + N CloudMist| + V WeatherBad| + ADJ aValue|ֵ,relatedness|,#GetMarried| + N attribute|,relatedness|,#GetMarried|,&human| +Ե N attribute|,circumstances|,happy|,#GetMarried|,&human| + N human|,intimate| + V recite|ж + V recite|ж +Ū V sing| +ʫ V recite|ж,content=text| + V recite|ж +ζ V recite|ж +ӽ V recite|ж + ADJ aValue|ֵ,color|ɫ,white| + N metal| + ADJ aValue|ֵ,color|ɫ,white| + N money| + N place|ط,city|,ProperName|ר,(China|й) + N material|,#metal| + N AlgaeFungi|ֲ,?medicine|ҩ + N part|,%human|,hair|ë,white| + N fund|ʽ + N celestial| + N celestial| +ϵ N celestial| + N beast| + ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,color|ɫ,grey| + N tool|þ,*reward|,#sport| + N human|,#occupation|ְλ,industrial| + N metal|,#money| + N money| +¥ N InstitutePlace|,*sell|,@buy|,#treasure|䱦,commercial| +Ļ N tool|þ,#shows| + N tool|þ,*reward|,#sport| + N tool|þ,#metal| +ɫ N attribute|,color|ɫ,white|,&physical| + N beast| + N metal| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +м N human|,#InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ҵ N affairs|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N fruit|ˮ + N money| + N fish| +Ԫ N money| +Բ N money| +ʽ N tool|þ,*reward|,#sport| + ADJ aValue|ֵ,color|ɫ,red| + N metal|,?material| + N fish| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,female|Ů,lascivious|,undesired|ݬ + N human|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ý N human|,#SeekPleasure|Ѱ,undesired|ݬ +ý N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N attribute|,power|,undesired|ݬ,&human| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N knowledge|֪ʶ +î V InDebt| +ʱ N time|ʱ,hour|ʱ +֧î V InDebt| + N drinks|Ʒ + V drink| + V feed|ι + V feed|ι,agricultural|ũ + N medicine|ҩ + V drink|,drinks|Ʒ + V suffer|,content=firing| + V suffer|,content=kill|ɱ,means=firing| + V cherish|Ļ,possession=hate| + V drink|,drinks|Ʒ,#addict|Ⱥ + N drinks|Ʒ,generic|ͳ +Ƭ N medicine|ҩ,(China|й) +Ʒ N drinks|Ʒ + V weep| +ʳ N edible|ʳ,generic|ͳ +ʳҵ N affairs|,#edible|ʳ +ˮ N water|ˮ,$drink| + ADJ aValue|ֵ,ability|,able|,$drink| +ˮ N water|ˮ,$drink| + N medicine|ҩ,(China|й) +ֹ V RashlyAct| + N character|,surname|,human|,ProperName|ר + V guide| + V incur| + V leave|뿪 + V pull| + V quote| + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + N material|,wood|ľ,*lighting|ȼ + V guide|,ResultEvent=GiveBirth| + V ResultIn| + V guide| + V entice| + V tease|ȡ + V catch|׽ס,police| + V ResultIn| + V guide|,ResultEvent=VehicleGo|ʻ + N symbol| + N waters|ˮ,linear| + V ResultIn|,result=damage| + V recommend|Ƽ + V propose| + V recommend|Ƽ + V propose| +ݵ V quote|,content=publications|鿯 + V ExpressAgainst|Ǵ,target=self| +Ը߸ V sing| + V incur| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N attribute|,strength|,#attract|,&physical| + V expect| + V guide| + V cure|ҽ,manner=drain|ų +· V guide| + V ResultIn| +𷴶 ADJ aValue|ֵ,ability|,able|,$oppose| +𷴸 ADJ aValue|ֵ,ability|,able|,$disgust| +𾪻 ADJ aValue|ֵ,ability|,able|,flurried| + N facilities|ʩ,route|· + N part|,%machine|,heart| +ʤ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Ŀ ADJ aValue|ֵ,impression|ӡ,good|,desired| +עĿ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע + V guide|,ResultEvent=GoInto| + V enlarge| + V quote| +ˮ V guide|,ResultEvent=VehicleGo|ʻ +ˮ V guide|,patient=liquid|Һ + V cease|ͣ,content=undertake|,politics| + N part|,%text| + N tool|þ,*fasten|˩ + N part|,%weapon| + N part|,%text| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=glorious| + V quote| + V recommend|Ƽ + V entice| +֤ V quote|,purpose=prove|֤ +֤ N human|,*quote| + V ResultIn| + V recommend|Ƽ,content=embryo|,agricultural|ũ + N medicine|ҩ + N part|,%music| + N part|,%text| + N text|,#entertainment| +Ա N human|,#occupation|ְλ,#shows|,*guide| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V hide| + V hide| + V HideTruth| + V hide| + V mean|ָ + N phenomena|,undesired|ݬ,dangerous|Σ,#unfortunate|,hidden| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V HideTruth| + V reside|ס,manner=hide| + V HideTruth| + V HideTruth| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N fact|,secret| + V hide| + N fact|,secret| + V mean|ָ +ʿ N human| +˽ N fact|,secret| +˽Ȩ N rights|Ȩ,#fact|,secret| +ʹ N experience|,painful|ʹ + V cease|ͣ,content=undertake|,politics| +īˮ N PenInk|ī,liquid|Һ,*write|д + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ +۾ N tool|þ,*look|,#eye| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,content|,hidden| + ADJ aValue|ֵ,clearness|,blurred| +ԼԼ ADJ aValue|ֵ,clearness|,blurred| +ʹ V painful|ʹ + V sad|dz + N expression|,#BeSimilar| +Լ ADJ aValue|ֵ,clearness|,blurred| + N emotion| +ӡ V carve| +ӡ N character|,surname|,human|,ProperName|ר +ӡ V obey|ѭ +ӡ N place|ط,country|,ProperName|ר,(India|ӡ) +ӡ V print|ӡˢ +ӡ N stationery|ľ +ӡ N trace| +ӡ N readings|,$print|ӡˢ +ӡ N language|,#country|,ProperName|ר +ӡڰ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ӡڰ N human| +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(India|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ¬ N money|,(India|ӡ) +ӡ¬ N money|,(Sikkim|) +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N money|,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ N language|,#country|,ProperName|ר +ӡ N human|,(India|ӡ) +ӡ N waters|ˮ,surfacial|,ProperName|ר +ӡ V print|ӡˢ,send| +ӡ N trace| +ӡ ADJ aValue|ֵ,color|ɫ,colored| +ӡ N coupon|Ʊ֤ +ӡ N material|,?clothing| +ӡ˰ N expenditure| +ӡ˰Ʊ N coupon|Ʊ֤ +ӡ N trace| +ӡ N mark|־ +ӡ N mark|־,*check| +ӡ N stationery|ľ +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Indonesia|ӡ) +ӡŷ N language|,#country|,ProperName|ר +ӡȾ V AlterColor|ɫ,industrial| +ӡȾ N InstitutePlace|,*AlterColor|ɫ,factory|,industrial| +ӡ N quantity|,amount|,print|ӡˢ,&readings| +ӡˢ V print|ӡˢ +ӡˢ N InstitutePlace|,*print|ӡˢ,factory| +ӡˢ N tool|þ,*print|ӡˢ +ӡˢƷ N publications|鿯 +ӡˢ N attribute|,style|,#print|ӡˢ,&character| +ӡˢ N attribute|,style|,character| +ӡ̨ N stationery|ľ +ӡֽ N paper|ֽ,#TakePicture| +ӡ N experience| +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ֤ V prove|֤ +ӡ N trace| +Ӣ N FlowerGrass| +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ N place|ط,country|,ProperName|ר,(UK|Ӣ) +Ӣ N unit|λ,&weight| +Ӣ N money|,(UK|Ӣ) +Ӣ CLAS unit|λ,&money|,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ӢʼҺ N army|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,(UK|Ӣ) +Ӣ ADJ language|,#country|,ProperName|ר +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| +Ӣ N human|,able|,desired| +Ӣ ADJ aValue|ֵ,ability|,able|,desired| +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ CLAS unit|λ,&weight| +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N human|,*die|,desired| +Ӣ N mental|,humanized| +Ӣ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӣ N attribute|,name|,&human| +Ӣģ N human|,desired| +ӢĶ CLAS unit|λ,&length| +Ӣ V die| +Ӣ N language|,ProperName|ר,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ N human|,able|,desired| +Ӣ۳ N human|,*salute|¾ +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N language|,#country|,ProperName|ר +Ӣ N regulation|,(UK|Ӣ) +Ӣ N attribute|,bearing|̬,brave|,desired|,&human| +Ӣˬ ADJ aValue|ֵ,courage|,brave|,desired| +ӣ N FlowerGrass| +ӣ N fruit|ˮ +ӣ N FlowerGrass| +ӣ N FlowerGrass| +Ӥ N human|,young| +Ӥ N human|,young| +ӥ N bird| +ӥ N human|,*FondOf|ϲ,#fight|,military| +ӥȮ N human|,undesired|ݬ,evil| +ӥ N bird| +Ӧ V agree|ͬ +Ӧ N character|,surname|,human|,ProperName|ר +Ӧ V obey|ѭ +Ӧ V reply| +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V change|,industrial| +Ӧ V handle|,patient=change| +Ӧ V agree|ͬ +Ӧ V associate| +Ӧ V reply| +Ӧ AUX {modality|} +Ӧ V reply| +Ӧ V handle| +Ӧ V slack|͵ +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V handle|,patient=change| +ӦӲϾ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +Ӧ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +Ӧ N attribute|,strength|,&inanimate| +Ӧ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ӦĻ V include|,ResultWhole=army|,military| +Ӧŵ V agree|ͬ +ӦƸ V accept|,content=employ| +Ӧ V happen| +Ӧ N human|,passive| +Ӧʱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +ӦܷԺ ADJ aValue|ֵ,ability|,able|,$judge|ö +ӦǴ ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ +Ӧ V succeed|ɹ +Ӧ V accept|,content=invite| +Ӧ ADJ aValue|ֵ,property|,$use| +Ӧ V use| +Ӧ N text| +Ӧ V use| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧо V own|,manner=all|ȫ +Ӧͨ ADJ aValue|ֵ,ability|,able|,$tell| +Ӧ V agree|ͬ +Ӧ˶ V appear| +Ӧս V accept|,content=fight| +Ӧս V accept|,content=fight|,military| +Ӧ V cure|ҽ +Ӧ V accept|,content=include|,military| +Ӧ V submit|,possession=text| +Ӧ˰ ADJ aValue|ֵ,performance|,#collect| +ӧ N shape| +ӧ N tool|þ,*decorate|װ +Ө ADJ aValue|ֵ,clearness|,clear| +Ө N stone|ʯ +ө N InsectWorm| +ө N InsectWorm| +өʯ N stone|ʯ,mine|,material| +Ӫ N facilities|ʩ,space|ռ +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ V manage| +Ӫ V manage|,commercial| +Ӫ N part|,%army| +Ӫ V seek|ıȡ +Ӫ N part|,%army|,*order| +Ӫ N human|,#occupation|ְλ,official|,military| +Ӫ N place|ط,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ N fire| +Ӫ V build|,industrial| +Ӫ V rescue| +Ӫ N place|ط,city|,ProperName|ר,(China|й) +Ӫ N facilities|ʩ,space|ռ +Ӫ V seek|ıȡ,possession=wealth|Ǯ +Ӫ V MakeLiving|ı +Ӫ˽ V use|,means=steal|͵,crime| +Ӫ V sell|,commercial| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӫ N physical|,*maintain| +Ӫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ӪƷ N physical|,*maintain| +Ӫ N physical|,*maintain| +Ӫҵ V function|,commercial| +Ӫҵ N human|,#occupation|ְλ,official|,commercial| +Ӫҵʱ N time|ʱ,#employee|Ա,@engage|,commercial| +ӪҵĿ N part|,%affairs|,commercial| +Ӫ V function|,commercial| +Ӫ V build|,industrial| +ӫ ADJ aValue|ֵ,brightness|,bright| +ӫ N lights| +ӫ N tool|þ,*illuminate| +ӫ N material|,#illuminate| +ӫ N part|,%tool|þ,#show| +ӫ V MakeMisunderstand|ʹ֪ +ӫ N part|,%tool|þ,#show| +ӫ N tool|þ,*look|,#image|ͼ,#shows| +Ӭ N InsectWorm|,undesired|ݬ +Ӭ N attribute|,rank|ȼ,#weight|,&compete|,sport| +Ӭ N tool|þ,*kill|ɱ,#InsectWorm| +Ӭͷ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ӭͷ΢ ADJ payment|,few| +ӬͷС ADJ payment|,few| +ӬӪ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ +ӭ V GoForward|ǰ +ӭ V welcome|ӭ +ӭ V welcome|ӭ,target=human| +ӭ N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +ӭ N music|,*welcome|ӭ +ӭ N FlowerGrass| +ӭ V facing|,direction=wind| +ӭ V fit|ʺ,contrast=wind| +ӭ V please|ȡ +ӭ V welcome|ӭ +ӭ V resist|,military| +ӭ V welcome|ӭ +ӭ V welcome|ӭ +ӭ V facing|,direction=human| +ӭ V meet|,partner=female|Ů,#GetMarried| +ӭж ADJ aValue|ֵ,easiness|,easy|,desired| +ӭ V meet| +ӭͷ V facing|,direction=human| +ӭͷ V chase|׷ +ӭ V congratulate|ף,cause=festival| +ӭ V welcome|ӭ +ӭս V resist|,military| +ӭ V welcome|ӭ +Ӯ V defeat|սʤ +Ӯ V obtain|õ +Ӯ V win|ʤ +Ӯ V obtain|õ +Ӯ N human|,*win|ʤ +Ӯ V earn|׬ +Ӯ V surplus|ʣ +ӯ V exist| +ӯ V surplus|ʣ +ӯ N attribute|,effect|Ч,&event|¼ +ӯ V earn|׬ +ӯӯ ADJ aValue|ֵ,bearing|̬,delicate|,desired| +ӯӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӯӯ ADJ aValue|ֵ,clearness|,clear| +ӯӯ V exist| +ӯ V surplus|ʣ +Ӱ N image|ͼ +Ӱ N image|ͼ,$TakePicture| +Ӱ N shows| +Ӱ N trace| +Ӱ N trace|,#lights| +Ӱ N part|,%building|,skin|Ƥ +Ӱ N part|,%house| +Ӱ N tool|þ,#shows| +Ӱ N account|,@gather|ɼ,#image|ͼ +Ӱ N shows| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱ¥ N InstitutePlace|,*TakePicture| +Ӱ N human|,*FondOf|ϲ,#shows| +ӰƬ N shows| +Ӱ N text|,*estimate|,#shows| +Ӱ V mean|ָ +Ӱ N shows| +Ӱӳ N InstitutePlace|,@produce|,#shows| +Ӱ̳ N community|,#shows|,entertainment| +Ӱ V CauseAffect|Ⱦ +Ӱ N attribute|,power|,&AnimalHuman|,&organization|֯ +Ӱ V influence|Ӱ +Ӱ N image|ͼ +Ӱ N human|,*perform|,glorious|,entertainment| +Ӱҵ N affairs|,*produce|,#shows| +Ӱӡ V print|ӡˢ +ӰӰ´ ADJ aValue|ֵ,clearness|,blurred| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱչ N fact|,*display|չʾ,#readings|,#image|ͼ +Ӱչ N fact|,*display|չʾ,#shows| +Ӱ N image|ͼ +Ӱ N trace| +Ӱ N trace|,#lights| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ N part|,%inanimate|,head|ͷ +ӱ N part|,%plant|ֲ,embryo| +ӱ N part|,%plant|ֲ,embryo| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ӳ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,will|־,strong|ǿ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ N money| +Ӳ N part|,%computer|,*store| +Ӳ N attribute|,hardness|Ӳ,&physical| +Ӳͷ N human|,desired|,stubborn| +Ӳͷ N part|,hard|Ӳ,bone| +Ӳ N human|,desired|,stubborn| +Ӳ N human|,desired|,stubborn| +Ӳ V ize|̬,PatientAttribute=hard|Ӳ +Ӳ V ize|̬,PatientAttribute=hard|Ӳ,medical|ҽ +Ӳ N part|,%computer|,*store| +Ӳ N inanimate|,#disease| +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳú N material|,$burn| +Ӳ N material|,?food|ʳƷ +Ӳľ N wood|ľ,material| +Ӳ N part|,%computer|,*store| +Ӳ ADV {emphasis|ǿ} +Ӳˮ N liquid|Һ +Ӳͨ N money| +Ӳ N part|,%LandVehicle|,@sleep|˯ +Ӳϯ N part|,%LandVehicle|,@sit| +Ӳϯ N part|,%LandVehicle|,@sleep|˯ +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ N material|,?tool|þ,#decorate|װ,precious| +Ӳ N fact|,engage|,hardship|,military| +Ӳ N fact|,fight|,hardship|,military| +Ӳָ N quantity|,amount|,&artifact|˹ +Ӳָ N quantity|,amount|,&event|¼ +ӲʺϽ N metal| +ӲͷƤ V endeavour| +Ӳ N part|,%LandVehicle|,@sit| +Ӳ N part|,%AnimalHuman|,mouth| +ӳ V illuminate| +ӳ V ServeAsFoil| +ӳ V illuminate| +ӳɽ N FlowerGrass| +ӳ V illuminate| +ӳ V illuminate| +Ӵ ECHO sound| +ӵ V ComeTogether| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V own| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V endorse|ӵ +ӵ N human|,*endorse|ӵ +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V push| +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V GoInto| +ӵ V BlockUp| +ӵ V own| +ӵ V WellTreat|ƴ,politics| +Ӷ V employ| +Ӷ N human|,#family| +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,#family| +Ӷ N human|,#occupation|ְλ,employee|Ա +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,employee|Ա +ӷ ADJ aValue|ֵ,content|,layered|,undesired|ݬ +ӷ ADJ aValue|ֵ,fatness|,fat| +Ӹ N disease| +ӹ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ӹҽ N human|,fake|α,medical|ҽ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹٮٮ N human|,able| +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ N character|,surname|,human|,ProperName|ר +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ӻݻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӻ V jump| +ӻԾ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ӻԾ V jump| +Ӽ N InsectWorm| +ӽ V recite|ж +ӽ̾ V recite|ж +ӽ V praise|佱 +Ӿ V swim| +Ӿ V part|,%facilities|ʩ,route|·,@swim|,sport| +Ӿ̳ N community|,#swim|,sport| +Ӿװ N clothing|,#body|,*swim| +ӿ V appear| +ӿ V jet| +ӿ V jet| +ӿ V flow| +ӿ V GoInto| +ӿ V flow| +ӿ V jet| +ӿ N GoInto| +ӿ V GoInto| +ӿ V appear| +ӿ V LeaveFor|ǰ + ADV aValue|ֵ,duration|,TimeLong| + V die| + V farewell| + ADV {neg|} + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V die| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +ֹ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| +־ V remember|ǵ + ADJ aValue|ֵ,courage|,brave|,desired| +¸ ADJ aValue|ֵ,courage|,brave|,desired| +¸ҵ N human|,brave|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,courage|,&AnimalHuman| +ʿ N human|,desired|,brave| +ʿ N human|,military| +ֱǰ V GoForward|ǰ + ADJ aValue|ֵ,courage|,brave|,desired| + V dare| + N human|,brave| + N attribute|,effect|Ч,&thing| + V consume|ȡ + N expenditure| + V need| + V use| + PREP {instrument} +ñ V use|,patient=army|,military| +ò V WorthNot|ֵ +ò ADV aValue|ֵ,necessity|Ҫ,redundant| +ò N tree|,commercial| +ò V eat|,patient=edible|ʳ +ó N attribute|,effect|Ч,&thing| +ô N attribute|,effect|Ч,&thing| +÷ N method|,use| +ù V include| +ù ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +û N human|,*use| +þ V exhaust| +þ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +þ N implement|,generic|ͳ + PREP {purpose} + V endeavour| + N quantity|,amount|,exhaust|,&thing| +Ʒ N tool|þ,generic|ͳ + N human|,#occupation|ְλ,employee|Ա + V use|,patient=human| + V function| + V obtain|õ,possession=power|,politics| +ˮ N quantity|,amount|,exhaust|,&water|ˮ +; N attribute|,range|,$use|,&entity|ʵ + V fight|,military| + V show|,content=ability| + N fact|,spend| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N purpose|Ŀ + PREP {purpose} + N purpose|Ŀ + V undergo|,content=use| + N expression| +֮ ADJ qValue|ֵ,amount|,many| + V use| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| + V detain|ס,police| +İ ADJ aValue|ֵ,brightness|,dark| +ı V detain|ס +ı V detain|ס,police| +Ĺ N land|½ +Ļ V meet|,manner=secret| +Ļ N humanized| +ļ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ľ V detain|ס,police| +ľ ADJ aValue|ֵ,occasion|,quiet|,desired| + N humanized| + N part|,%AnimalHuman|,viscera| +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N attribute|,interest|Ȥζ,interesting|Ȥ,&human| +Ĭ N emotion|,interesting|Ȥ +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N human|,interesting|Ȥ +Ȥ N emotion|,#FondOf|ϲ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ V think|˼ +΢ ADJ aValue|ֵ,quality|,weak| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,scene|,gracious|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + V weep| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*perform|,entertainment| +Ŵ V WellTreat|ƴ +Ŵ N fact|,WellTreat|ƴ +ŵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ŵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ŵ N attribute|,quality|,strong|ǿ,desired|,&thing| +Ÿ V WellTreat|ƴ +Ÿ N human|,$WellTreat|ƴ +ź ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ż V ize|̬,PatientAttribute=superior| +Ż ADJ aValue|ֵ,GoodBad|û,good|,desired| +Żݴ N fact|,WellTreat|ƴ +Żݼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ż N regulation|,WellTreat|ƴ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û + N human|,*perform|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ȱ N attribute|,quality|,&event|¼,&thing| + V WellTreat|ƴ +ѧ N knowledge|֪ʶ + V GiveBirth| +ʤ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʤ̭ V alive|,condition=fit|ʺ +ʤ N human|,*win|ʤ + N attribute|,power|,strong|ǿ,&entity|ʵ + V enjoy|,content=sequence| +ȹ N coupon|Ʊ֤,#fund|ʽ +Ȩ N rights|Ȩ,#sequence| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*study|ѧ,education|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V surpass|ǿ +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Խ N emotion|,cherish|Ļ,#superior| +Խ N attribute|,property|,good|,&entity|ʵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + V satisfied| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʲƷ N artifact|˹,good|,desired| +ʷ N affairs|,*TakeCare|,good| +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V wave|ڶ +Ƴ ADJ aValue|ֵ,duration|,TimeLong| +Ƶ V wave|ڶ +ƺ ADJ aValue|ֵ,circumstances|,idle|,desired| +ƾ ADJ aValue|ֵ,duration|,TimeLong| +Ȼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ƺ ADJ slack|͵ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,time|ʱ,past| + N emotion|,worried|ż + V worried|ż +dz V sad|dz +Ƿ V worried|ż +ǻ N phenomena|,hardship|,undesired|ݬ +Ǿ V sad|dz + V worried|ż + V upset| + V sad|dz +˼ N thinking|˼,worried|ż +˼ V worried|ż + N emotion|,worried|ż + V worried|ż + V worried|ż + V sad|dz + V sad|dz +֢ N disease| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| + ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,very| + N cause|ԭ + V depend| + PREP {LocationIni} + PREP {LocationThru} + PREP {StateIni} + PREP {TimeIni} + PREP {agent} + PREP {cause} + PREP {means} +ɱ ADV aValue|ֵ,content| +ɴ ADV source +ɴ˲һк N result| +ɴ˿ ADV source +ɴ˿ɼ CONJ {comment|} +ɴ˿֪ CONJ {comment|} + N cause|ԭ +Ѿ ADJ aValue|ֵ,duration|,TimeLong| +dz ADV aValue|ֵ,content| +˲ ADJ aValue|ֵ,property|,$drive|Ԧ +ͷ N cause|ԭ + PREP cause|ԭ + CONJ {cause|ԭ} + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +֮ N text|,sincere| + V post|ʼ +ʰ N physical|,post|ʼ +ʱ N symbol|,#letter|ż +ʲ N human|,#occupation|ְλ,*post|ʼ +ʳ N LandVehicle|,*post|ʼ +ʴ N ship|,#tour| +ʴ N trace| +ʵ V post|ʼ +ʵԱ N human|,#occupation|ְλ,*post|ʼ +ʵ N affairs|,#post|ʼ +ʵ N InstitutePlace|,@post|ʼ +ʷ N expenditure|,*post|ʼ +ʷѸ ADJ aValue|ֵ,property|,$pay| +ʹ V buy|,instrument=letter|ż +ʻ V post|ʼ +ʼ V post|ʼ +ʼ N physical|,post|ʼ +ʾ N InstitutePlace|,@post|ʼ +· N facilities|ʩ,linear|,@post|ʼ,#letter|ż +Ʊ N coupon|Ʊ֤,*post|ʼ,#letter|ż +ͤ N facilities|ʩ,@post|ʼ,#letter|ż +Ͳ N facilities|ʩ,cubic|,@put|,#letter|ż + N facilities|ʩ,cubic|,@put|,#letter|ż +չ N fact|,display|չʾ + N affairs|,@post|ʼ,#letter|ż + N symbol|,#letter|ż + N InstitutePlace|,@post|ʼ +ֳ N human|,#occupation|ְλ,official|,#post|ʼ + N facilities|ʩ,*post|ʼ + N expenditure|,*post|ʼ + N metal| + V BeSimilar| + ADV {Vcontinue|} +̴ N human|,%publications|鿯,treacherous|,undesired|ݬ + V BeSimilar| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̫ ADJ aValue|ֵ,attachment|,#human| +̫Ů N human|,female|Ů +̫ N knowledge|֪ʶ,religion|ڽ +̫ͽ N human|,religion|ڽ +̫ N community|,(Jew|̫) +̫ N human| + V hesitate|ԥ +ԥ V hesitate|ԥ +ԥ V hesitate|ԥ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V apply|ͿĨ + N material|,$burn| + N material|,?food|ʳƷ +ͱ N tool|þ,*inhale|,#liquid|Һ +ͱ N food|ʳƷ +Ͳ N material|,?tool|þ,#protect| +Ͳ N part|,%vegetable|߲,embryo|,$eat| +Ͳ N vegetable|߲ +Ͳ N part|,%vegetable|߲,embryo|,agricultural|ũ +Ͳ N place|ط,@store|,#material| +Ͳ N part|,%earth|,*store|,#material| +Ͳ N food|ʳƷ +Ͳ N tree| +Ͳ N food|ʳƷ +ʹ N ship|,*transport|,#material| +͵ N tool|þ,*illuminate| +ͷ N InstitutePlace|,@produce|,#material|,factory| +͸ N material| +͹ N tree| +͹ N tool|þ,cubic|,@put| +͹޳ N LandVehicle|,*transport|,#material| +͹ N LandVehicle|,*transport|,#material| +͹ˮ ADJ aValue|ֵ,brightness|,bright| +͹ ADJ aValue|ֵ,brightness|,bright| +ͺ N quantity|,amount|,exhaust|,#material| +ͻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͻ N readings|,#image|ͼ +ͼ N trace| +; N InstitutePlace|,mine| +Ϳ N facilities|ʩ,space|ռ,@put|,@store| + N part|,%plant|ֲ,embryo| + N crop|ׯ,?material| + N ship|,*transport|,#material| + N crop|ׯ + N part|,%LandVehicle|,*SpeedUp|ӿ +ī N stationery|ľ,*print|ӡˢ + N stone|ʯ,waste| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N food|ʳƷ + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ṥ N human|,#occupation|ְλ,*decorate|װ,industrial| + N gas| +ǻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ȼ ADV aValue|ֵ,behavior|ֹ,active|Ը +Ȼ V appear|,manner=active|Ը +ʯ N tool|þ,@rub|Ħ +ˮ N material|,?food|ʳƷ +ˮ N wealth|Ǯ + N tree| + N chemical|ѧ + N InstitutePlace|,@gather|ɼ,#material| + N food|ʳƷ +ͩ N tree|,?material| +Ͱ N tool|þ,cubic|,@put| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N trace|,dirty| + N part|,%vehicle|ͨ,cubic|,@put| + N attribute|,property|,#material| +ѹ N attribute|,strength|,&liquid|Һ + N gas|,waste| +ӡ V print|ӡˢ +ӡ N tool|þ,*print|ӡˢ + N artifact|˹,waste| +ը V cook| +ը N food|ʳƷ +ձ N material| +֬ N material|,?food|ʳƷ +ֽ N paper|ֽ + N human|,undesired|ݬ,sly| + N trace|,dirty| + N tree|,?material| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,sly| +컬 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N fruit|ˮ + V cook| + N character|,surname|,human|,ProperName|ר + V roam| + V swim| + V tour| +ΰ N human|,friend|,*tour| +α N part|,%tool|þ,#measure| +δ N ship|,#tour| +ε V roam| +ζ V SelfMoveInManner|ʽ +ι V tour| +λ V attack|,military| +λ N fact|,fight|,military| +λ N institution|,military| +λԱ N human|,military| +λ N place|ط,military| +λս N fact|,fight|,military| +μ N text| +ν V walk| +ο N human|,*tour| + V tour| + N place|ط,tour| + N part|,%building|,nerve| + V recreation| +ֳ N InstitutePlace|,@recreation| + V RelateNot|޹ + V tour| + N human| + ADJ aValue|ֵ,property|,function|,#SelfMove| + V function|,means=SelfMove| + N community|,*function|,#SelfMove| + N human|,agricultural|ũ,#livestock| + N fact|,function|,#SelfMove| + N bird| + N human|,*tour| + ADJ aValue|ֵ,ability|,able|,desired| +ɽˮ V tour| +ˮ V swim| +˵ V persuade|Ȱ˵ +ͧ N ship|,*WhileAway| + V WhileAway| +Ϸ V WhileAway| +Ϸ V tool|þ,*WhileAway| + V walk| + N human|,*walk| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + V hesitate|ԥ + V recreation|,entertainment| +ջ V tool|þ,*WhileAway| +Ӿ V swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N community|,*swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N clothing|,#leg|,*swim| +Ӿñ N clothing|,#head|ͷ,*swim| +Ӿ N clothing|,#body|,*swim| +԰ V tour| +԰ N fact|,recreation| + N wealth|Ǯ + N human| +߮ V VehicleGo|ʻ + N knowledge|֪ʶ + V cherish|Ļ + V exist| + V own| + ADJ qValue|ֵ,amount|,some|Щ + V undergo| +а V obstruct|ֹ +аհ N aValue|ֵ,prettiness|,ugly|,undesired|ݬ +аɻ ADJ aValue|ֵ,trueness|α,true|,desired| +а ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +б ADV aValue|ֵ,behavior|ֹ,tactful| +б޻ V prepare|׼ +б۶ ADJ aValue|ֵ,content|,detailed|,desired| +в ADJ aValue|ֵ,property|,ill|̬ +в V ill|̬ +в ADV aValue|ֵ,sequence| +вŸ ADJ aValue|ֵ,ability|,able|,desired| +вƲ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +г ADJ aValue|ֵ,property|,$pay| +г ADJ aValue|ֵ,ability|,return|,#owe|Ƿ +гһ ADV aValue|ֵ,time|ʱ,future| +г V succeed|ɹ +д V wait|ȴ +д V wait|ȴ +е ADV {comment|} +е ADJ qValue|ֵ,amount|,some|Щ +еķʸ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +еʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +е ADJ qValue|ֵ,amount|,many| +е V know|֪ +еλ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +е ADV aValue|ֵ,degree|̶,ish| +е㳱ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +е ADV aValue|ֵ,degree|̶,ish| +е ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +е ADJ aValue|ֵ,kind|,queer| +е ADJ aValue|ֵ,taste|ζ,salty|,ish| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +з EXPR obey|ѭ +з ADV aValue|ֵ,ability|,able| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +ио ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,property|,relate|й +й V relate|й +йز N institution| +йط N part|,%entity|ʵ,relate|й +й ADJ aValue|ֵ,brightness|,bright| +й ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +й֮޲ V surpass|ǿ +к ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +кܺùϵ ADJ aValue|ֵ,relatedness|,intimate| +к ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +л ADJ aValue|ֵ,duration|,TimeLong| +л ADJ aValue|ֵ,content|,concise| +л ADJ aValue|ֵ,property|,#chemical|ѧ +л N material|,?tool|þ +л N chemical|ѧ +лѧ N knowledge|֪ʶ,#chemical|ѧ +лɳ ADJ aValue|ֵ,ProsCons|,pros|,desired| +л N chemical|ѧ +л N animate| +л N chemical|ѧ +л N chemical|ѧ +л N physical| +м̳Ȩ ADJ aValue|ֵ,ability|,able|,receive| +м֤ȯ N coupon|Ʊ֤,commercial| +мֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +мڴ ADV cause|ԭ +мʶ ADJ aValue|ֵ,ability|,able|,desired| +н ADJ aValue|ֵ,property|,gamble|IJ +нֵİ N furniture|Ҿ,@sleep|˯ +н ADJ aValue|ֵ,content|,substantial|ʵ,desired| +о N symbol|,#quantity|,#DoSum| +о ADJ aValue|ֵ,strength|,strong|ǿ,desired| +о ADJ aValue|ֵ,taste|ζ,strong|ǿ +о ADJ aValue|ֵ,property|,CauseToDo|ʹ,#surprise| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +пڽԱ V WellKnown| +п ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V depend| + V depend| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,correctness|,upright|,desired| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ò ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ͼ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + V pregnant|,#medical|ҽ + V succeed|ɹ + ADJ qValue|ֵ,amount|,many| +ë V OutOfOrder| +ë V mad| +йϵ V relate|й + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ŀ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ͷ ADJ aValue|ֵ,duration|,TimeLong| +б ADJ aValue|ֵ,ability|,able|,distinguish|ֱ + ADJ aValue|ֵ,duration| +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +Ǯ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Ǯ N human|,rich| + N character|,surname|,human|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + N human|,friend|,*love|,desired| + V own|,possession=human|,#friend|,#love| +Ӧ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,duration|,TimeLong| + PREP {contrast} +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ N metal| +ɫ N community| +˷绯 ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +͸ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +ɫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADV aValue|ֵ,duration|,TimeLong| + N attribute|,strength|,&organization|֯ + ADV aValue|ֵ,duration|,TimeLong| +֮ N part|,%time|ʱ,@alive| +ʧ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʶ֮ʿ N human|,wise|,desired| +ʷ ADV aValue|ֵ,duration|,TimeLong| +ʼ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +޿ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V know|֪ + ADJ qValue|ֵ,amount|,few| +ζ ADJ aValue|ֵ,taste|ζ,sour| + ADV aValue|ֵ,degree|̶,certain|ij +Ϊ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,property| + ADJ aValue|ֵ,content|,neat|,desired| +ͬ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͷ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,ability|,able|,$believe| +Ϊ ADJ aValue|ֵ,ability|,able|,desired| +ζ V OutOfOrder| +ζ ADJ aValue|ֵ,content|,profound|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ļ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,ability|,able|,consume|ȡ +ϲ V pregnant|,#medical|ҽ +Ϸ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,property| + ADJ qValue|ֵ,amount|,few| +޹˾ N InstitutePlace|,commercial| + ADJ aValue|ֵ,property| +ߵ N image|ͼ,shows| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +Ч N time|ʱ,#effect|Ч +Ч N attribute|,boundary|,&time|ʱ +Ч N attribute|,effect|Ч,superior|,&entity|ʵ +Щ ADJ qValue|ֵ,amount|,some|Щ + N human|,gracious| +żֵ¼ N fact|,#news| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V expect| + N human|,attentive|ϸ,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +۶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ lucky| + ADJ aValue|ֵ,content|,neat|,desired| +ѡȨ ADJ aValue|ֵ,ability|,able|,select|ѡ +ѧʵ N human|,#knowledge|֪ʶ +Ѫ ADJ aValue|ֵ,courage|,brave|,desired| +Ѫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ѪԵϵ ADJ aValue|ֵ,source|Դ,family|,#GetMarried| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,active|Ը +˼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| +ͼ ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +潡 ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +ڽ ADJ aValue|ֵ,ProsCons|,pros|,desired| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӱ ADJ aValue|ֵ,ability|,able|,control| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,ability|,able|,tell| +Դ ADJ aValue|ֵ,property|,#electricity| +Ե ADV aValue|ֵ,relatedness|,intimate| +Զ ADJ aValue|ֵ,ability|,able|,predict|Ԥ +¿ѭ EXPR obey|ѭ + ADJ aValue|ֵ,ability|,able|,restrain|ֹ + ADJ aValue|ֵ,property|,$debate| +֪ V HaveKnowledge|֪ +־ EXPR endeavour|,purpose=succeed|ɹ +־ N human|,desired| +־¾ EXPR endeavour|,purpose=succeed|ɹ +־֮ʿ N human|,desired| +ǻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + V benefit| +ڸԪ ADJ aValue|ֵ,ability|,able|,resume|ָ +׬ͷ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +֯ ADJ aValue|ֵ,property|,$forming|γ +֯ ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,property|,crime| + V disobey|Υ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| +Ѱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѱ N place|ط,country|,friend| +Ѻ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѻ N human|,friend| +Ѻó N place|ط,city|,friend| +Ѿ N army|,friend| + N human|,*reside|ס,near| +ڲ N army| + N human|,friend| + N emotion|,friend|,desired| + N human|,friend| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Э N community| + N attribute|,relatedness|,&human| + N fact|,compete|,sport| + N direction| +ұ N direction| +ұ߷ N human|,*exercise|,(football|) +Ҳ N direction| +ҷ N direction| +ҷ N human|,employee|Ա,*exercise| + N direction| + N human|,politics| + N standpoint|,politics| +Ϸ N location|λ +Ͻ N location|λ + N direction| + N part|,%human|,hand| + N direction| +· N location|λ +½ N location|λ + N part|,%ship| + N community|,politics| + N community|,politics| +ת V TurnRound| +ת V TurnRound| + V protect| +ӻ V protect| + V help| + N material|,?tool|þ +ש N material|,?building| + N material|,?tool|þ + N material|,?tool|þ + V entice| + V guide| + N thing|,*entice| +ճ N tool|þ,*illuminate| +յ ADJ aValue|ֵ,ability|,able|,guide| +յ V guide| +ն N thing|,*entice| +շ V ResultIn| +չ V guide|,ResultEvent=admit| +չ V TakeAway|ᶯ,means=cheat|ƭ,crime| +ջ V attract| +ջ V entice| +ռ V entice|,ResultEvent=mating|,crime| +ս V entice|,ResultEvent=surrender|,military| +ƭ V entice| + ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ V entice|,ResultEvent=kill|ɱ +ʹ V entice| + N cause|ԭ + V ResultIn| + ADV aValue|ֵ,frequency|Ƶ,again| + ADV also|Ҳ + COOR {and|} +... COOR {supplement|ݽ} +ֳ V aValue|ֵ,property|,$naming| +ֺר ADJ aValue|ֵ,ability|,able| + V aValue|ֵ,property|,$naming| +һ ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,age|,young| + N human|,young| +׳ N InsectWorm|,young| +׳ N bird|,young| +׶ N human|,young| +׶ N affairs|,#education|,#young| +׶԰ N InstitutePlace|,*TakeCare|,#young|,#human| +׽ N affairs|,#education|,#young| + N tree|,young| + N plant|ֲ,young| + N time|ʱ,#young| +Ů N human|,young|,female|Ů +ʱ N time|ʱ,#young| +ͯ N human|,young| +С ADJ aValue|ֵ,age|,young| +ѿ N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,age|,young| + N attribute|,ability|,unable|ӹ,undesired|ݬ +԰ N InstitutePlace|,*TakeCare|,#young|,#human| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ط N human|,stubborn|,undesired|ݬ +ظ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ػ ADJ aValue|ֵ,speed|ٶ,slow| +ػ V GoRound|Χ,military| +ػ ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V exist|,means=BlockUp| + N stone|ʯ +ٵ N land|½ +ٹ V irrigate|,agricultural|ũ +ٻ V exist|,means=BlockUp| + N stone|ʯ + V exist|,means=BlockUp| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N disease| + V exist|,means=BlockUp| + N character|,surname|,human|,ProperName|ר + PREP {contrast} + PREP {location} + PREP {patient} + PREP {scope} + PREP {source} + PREP {time} +ڽ N time|ʱ,now| + CONJ {EventResult|¼} +Ǻ CONJ {EventResult|¼} + N tool|þ,cubic|,@put| + N tree| + N tree| + N character|,surname|,human|,ProperName|ר + V cheat|ƭ + V deceive|ƭ + V worried|ż + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ޱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޲ɼ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޴ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޹ɽ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V deceive|ƭ,target=human|,politics| + N human|,*ignorant|֪ + N regulation|,*deceive|ƭ,#human|,politics| +Ū V deceive|ƭ + N human|,foolish| + N human|,foolish|,undesired|ݬ +˽ N time|ʱ,day|,festival| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N emotion|,faithful|,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N LandVehicle| + ADJ aValue|ֵ,attachment|,public| + N place|ط + N thought|ͷ,public| +۹ N tool|þ,*disseminate| +ۼල V supervise|,instrument=tool|þ,#disseminate| +۽ N tool|þ,*disseminate| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N time|ʱ,hind| +ನ N result| +ಿ N army|,*surplus|ʣ +൳ N human|,undesired|ݬ,*surplus|ʣ + N space|ռ + N quantity|,amount|,fulfil|ʵ,&organization|֯ + N quantity|,amount|,surplus|ʣ,&money| + N lights|,#night| + N money|,*surplus|ʣ + N attribute|,strength|,surplus|ʣ,&human| + N material|,?food|ʳƷ,#crop|ׯ + N quantity|,amount|,surplus|ʣ,&inanimate| + N attribute|,circumstances|,hind|,&human| +ȱ N phenomena|,surplus|ʣ,lack|ȱ + N attribute|,strength|,surplus|ʣ,&human| + N attribute|,strength|,surplus|ʣ,&implement| + N attribute|,circumstances|,hind|,&human| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ ADJ qValue|ֵ,amount|,redundant| +Ͼ N time|ʱ,idle| + V surplus|ʣ + N emotion|,joyful|ϲ,desired| + N fact|,recreation| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V GoThrough| + V surpass|ǿ + V due| +Խ V GoThrough| +Խ V surpass|ǿ + N character|,surname|,human|,ProperName|ר + N fish| + N part|,%fish|,liquid|Һ,#mating| + N facilities|ʩ,*foster|,#fish| + N food|ʳƷ,#fish| + N food|ʳƷ,*feed|ι,#fish| + N food|ʳƷ +ǰ ADJ aValue|ֵ,color|ɫ,white| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N food|ʳƷ,*feed|ι,#fish| + N medicine|ҩ +㽺 N material| + N weapon| +׿ͧ N weapon|,ship|,military| +ͧ N weapon|,ship|,military| + N fish| + N part|,%fish|,skin|Ƥ + N physical|,good|,bad|,$mix| +֮ N place|ط,rich| + N fish|,young| +Ŀ V pretend|װ,content=RegardAs| +Ƭ N food|ʳƷ,#fish| +Ư N tool|þ,*catch|׽ס,#fish| + V damage| + N part|,%fish|,flesh| +ˮ N attribute|,relatedness|,intimate|,&human| + N food|ʳƷ + N facilities|ʩ,*foster|,#fish| + N tool|þ,*catch|׽ס,#fish| + N food|ʳƷ,#fish|,generic|ͳ +Ȳ N FlowerGrass|,?medicine|ҩ + N fish|,young| + N fish|,young| +ӥ N bird| + N material| +θ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Ծ V jump|,sport| + N fish|,young| + N part|,%fish|,embryo| +ӽ N food|ʳƷ,#fish| + N part|,%fish|,viscera| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N place|ط,city|,ProperName|ר,(Chongqing|) + V affairs|,#catch|׽ס,#fish|,agricultural|ũ + V seek|ıȡ + N artifact|˹,#fish|,generic|ͳ,agricultural|ũ +泡 N place|ط,#fish|,agricultural|ũ +洬 N ship|,*catch|׽ס,#fish|,agricultural|ũ + N place|ط,@catch|׽ס,#fish|,village|,agricultural|ũ + N facilities|ʩ,space|ռ,#fish|,#ship| +湤 N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ + N MusicTool| + N fire| + N community|,*catch|׽ס,#fish|,agricultural|ũ + N tool|þ,*catch|׽ס,#fish|,generic|ͳ,agricultural|ũ + V earn|׬ + N wealth|Ǯ,$earn|׬ + N ship|,*catch|׽ס,#fish|,agricultural|ũ + N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ + N tool|þ,*catch|׽ס,#fish| +ҵ N affairs|,#catch|׽ס,#fish|,agricultural|ũ + N location|λ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V please|ȡ + V recreation|,entertainment| +ֳ V InstitutePlace|,@recreation|,entertainment| +ֻ N fact|,recreation|,entertainment| +Ծ N fact|,compete|,recreation| +ҵ N affairs|,#recreation|,entertainment| + N RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + V WeatherFine| + ADJ qValue|ֵ,amount|,many| +꼾 N time|ʱ,season|,@WeatherBad|,#RainSnow|ѩ + N tool|þ,*obstruct|ֹ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ + N tree| +¶ N RainSnow|ѩ +¶ N emotion|,like|ϧ,kindhearted|,desired| +ñ N clothing|,#head|ͷ,*obstruct|ֹ,#RainSnow|ѩ +ǰ N material|,#drinks|Ʒ +ɡ N tool|þ,*obstruct|ֹ,#RainSnow|ѩ +ˮ N liquid|Һ,#RainSnow|ѩ +ˮ N time|ʱ,day| + N time|ʱ,day|,@WeatherBad|,#RainSnow|ѩ +Ь N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѥ N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѩ N RainSnow|ѩ + N clothing|,#body|,*obstruct|ֹ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + COOR and| + PREP {partner} + PREP {target} +...ûйϸ V RelateNot|޹ +...Ϊ V ally| +ͬʱ ADV aValue|ֵ,time|ʱ + CONJ {question|} +빲 V undergo|,manner=together|ͬ +뻢ıƤ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V engage|,content=discuss| + N place|ط,country|,*engage|,#discuss| + N human|,engage|,#discuss| + CONJ {transition|ת} +˵ CONJ {transition|ת} +վ V BecomeMore| +ͬ V illuminate| + ADJ aValue|ֵ,source|Դ,original|ԭ + V die| + ADJ aValue|ֵ,circumstances|,lonely| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ԭһ ADJ aValue|ֵ,size|ߴ +֮ ADV {partner} +ڲͬ ADJ aValue|ֵ,kind|,special| + N land|½ + N character|,surname|,human|,ProperName|ר + N celestial| + N house| + ADJ aValue|ֵ,property|,fly|,#celestial| + V fly|,location=celestial| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N character|,surname|,human|,ProperName|ר + N celestial| +ɴ N aircraft| +溽 V fly|,location=celestial| +ռ N celestial| + N expression| + N language| + V speak|˵ + N symbol| + N expression| + N sound|,#language| +﷨ N knowledge|֪ʶ,#language| + N expression| + N software| +ᄈ N text| + N expression| + N text| +Ͽ N text| +¼ N text| + N attribute|,behavior|ֹ,speak|˵,&human| + N attribute|,property|,&language| + N part|,%expression| +̬ N attribute|,property|,&language| + N text| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,literature| +״ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ϵ N attribute|,kind|,&language| + N attribute|,property|,&language| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N language| +ѧ N knowledge|֪ʶ,#language| +ѧ N human|,#knowledge|֪ʶ,#language| + N information|Ϣ +ѧ N knowledge|֪ʶ,#information|Ϣ + N sound|,#language| + N language| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N {MaChinese|} + N part|,%bird|,hair|ë + V die| + N attribute|,rank|ȼ,#weight|,&compete|,sport| +ë N part|,%bird|,hair|ë +ë N SportTool|˶ +ë N fact|,exercise|,sport| +ëδ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N material| +޷ N clothing| +ɴ N material|,?clothing| +̳ N community|,sport| + N human|,friend| + N part|,%bird|,wing|,*fly| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N paper|ֽ + V WellTreat|ƴ + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N FlowerGrass| +Ƭ N food|ʳƷ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N crop|ׯ + N part|,%crop|ׯ,embryo| + N material|,?food|ʳƷ + N tool|þ,*decorate|װ,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,BlueGreen| +ʯ N material|,?tool|þ,#decorate|װ,precious| +ʯ V perish| + N crop|ׯ + N celestial| + ADJ aValue|ֵ,property|,#material| + N crop|ׯ + N FlowerGrass| + N tool|þ,*decorate|װ,#head|ͷ + N place|ط + N location|λ,%country|,internal| + N location|λ,%country|,external| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ +ܵ N part|,%vegetable|߲,embryo|,$eat| +ܵ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,surname|,human|,ProperName|ר + V sad|dz + V cherish|Ļ + N medicine|ҩ,(China|й) + N FlowerGrass| + V sad|dz + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| + V request|Ҫ + V sigh|̾ + V request|Ҫ + V request|Ҫ + V meet| + V suffer|,content=kill|ɱ + V meet| + V suffer| + V suffer|,content=kill|ɱ + V meet| + V undergo|,content=rescue| + V die|,police| + V happen| + V suffer|,content=dangerous|Σ,police| + V CompareTo| + N character|,surname|,human|,ProperName|ר + V know|֪ + V tell| + N land|½ + ADJ aValue|ֵ,attachment|,royal| + V drive|Ԧ + V obstruct|ֹ + V obstruct|ֹ,patient=cold| +԰ N facilities|ʩ,@WhileAway|,royal| + V resist|,content=damage|,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| + ADJ aValue|ֵ,property|,$use|,politics| + ADJ aValue|ֵ,property|,$use|,royal| +Է N facilities|ʩ,@WhileAway|,royal| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| +... ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V prosper| + ADV aValue|ֵ,degree|̶,more| + N aspiration|Ը,expect| + V willing|Ը + N aspiration|Ը,expect| + N aspiration|Ը,expect| + N aspiration|Ը,expect| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N fact|,#police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + V GiveBirth| + V cultivate|,education| + V foster| + V cultivate|,patient=human|,education| + V foster|,patient=bird| + V planting|ֲ,patient=tree|,agricultural|ũ + ADJ aValue|ֵ,age|,#GiveBirth| + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V planting|ֲ,patient=crop|ׯ,agricultural|ũ + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V attribute|,reputation|,&human| + V praise|佱 +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| +Ϊ V RegardAs|,means=praise|佱 +ԡ V wash|ϴ +ԡ N facilities|ʩ,@wash|ϴ,@swim| +ԡ N InstitutePlace|,@wash|ϴ,commercial| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,*wipe| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N room|,@wash|ϴ +ԡѪ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ԡѪս V fight|,manner=endeavour| +ԡ N clothing|,#wash|ϴ +Ԣ V contain| +Ԣ N house| +Ԣ V reside|ס +Ԣ N human| +Ԣ N human|,past| +Ԣ V reside|ס +ԢĿ V check| +Ԣ N house| +Ԣ N house| +Ԣ N text| +Ԣ N information|Ϣ +Ԣ ADJ aValue|ֵ,content|,profound| +Ԣ V situated| +ԣ ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Ԥ V tell| +Ԥ ADJ aValue|ֵ,possibility|,possible|,$choose|ѡ +Ԥ ADJ aValue|ֵ,property|,$prepare|׼ +Ԥ V prepare|׼ +Ԥ N part|,%army| +Ԥ N affairs|,engage|,military| +Ԥ V predict|Ԥ +Ԥ V handle| +Ԥ V MakeAppointment|Լ +Ԥ V MakeAppointment|Լ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V obstruct|ֹ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V pay| +Ԥ V pay| +Ԥ N expenditure| +Ԥ N experience| +Ԥ N perception|֪ +Ԥ V announce| +Ԥ V buy|,commercial| +Ԥ V guess|² +Ԥ N result|,predict|Ԥ +Ԥ V estimate| +Ԥ V predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N thought|ͷ +Ԥ N attribute|,ability|,predict|Ԥ,&human| +Ԥ N attribute|,property|,predict|Ԥ +Ԥ V tell|,content=fact|,police| +Ԥ N InstitutePlace|,@teach|,@study|ѧ,education| +Ԥ V predict|Ԥ +Ԥ V SetAside| +Ԥı V plan|ƻ +Ԥ ADJ aValue|ֵ,property|,$predict|Ԥ +Ԥ V expect| +Ԥ V predict|Ԥ +ԤڵЧ V result|,$predict|Ԥ +Ԥ V WarmUp| +Ԥ V compete|,sport| +Ԥ V interrogate|,police| +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥʾ V mean|ָ +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥ V gather|ɼ +Ԥ V sell| +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ N plans|滮,*spend|,#wealth|Ǯ +Ԥ㲦 N fund|ʽ +Ԥ N wealth|Ǯ,$InDebt|,#plans|滮 +Ԥ N wealth|Ǯ,surplus|ʣ,#plans|滮 +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥʽ N fund|ʽ,#plans|滮 +Ԥϰ V study|ѧ,education| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ԤȾ N human|,*persuade|Ȱ˵ +Ԥ V predict|Ԥ +Ԥѡ N fact|,select|ѡ +Ԥ ADJ aValue|ֵ,property|,predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N human|,*predict|Ԥ +Ԥ V perform|,entertainment| +ԤӦ N attribute|,strength|,&inanimate| +ԤԼ V MakeAppointment|Լ +Ԥ N information|Ϣ +Ԥ֪ V know|֪ +Ԥ V produce| +Ԥƹ N component|,%building| +Ԥף V congratulate|ף +ԥ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ԥ N shows| +Ԧ V drive|Ԧ +Ԧ N human|,*drive|Ԧ,#vehicle|ͨ,military| +ԧ N bird| +ԧ N human|,family|,mass| +Ԩ ADJ aValue|ֵ,depth|,deep| +Ԩ N waters|ˮ,surfacial| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +ԨԴ N cause|ԭ +Ԩ޴ N place|ط,crime| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N phenomena|,undesired|ݬ,#unfortunate| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩͷ N human|,*spend|,foolish| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N human|,enemy| +ԩҶͷ N human|,enemy| +ԩ·խ V meet| +ԩٴ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ V IllTreat| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ V IllTreat| +ԩ V WorthNot|ֵ +ԩ N fact|,MakeBad|Ӻ,#police| +Ԫ ADJ aValue|ֵ,importance|,important| +Ԫ N character|,surname|,human|,ProperName|ר +Ԫ N money|,(China|й) +Ԫ N part|,%physical| +Ԫ NUM qValue|ֵ,sequence|,ordinal| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ CLAS unit|λ,&money|,(China|й) +Ԫ N money| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ N time|ʱ,festival|,@congratulate|ף +Ԫ N part|,%implement| +Ԫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N human|,politics| +Ԫ N time|ʱ,year|,#royal| +Ԫ N human|,family|,female|Ů +Ԫ N part|,%implement| +Ԫ N attribute|,strength|,&AnimalHuman| +Ԫ ADJ aValue|ֵ,color|ɫ,black| +Ԫ N human|,#occupation|ְλ,official|,military| +Ԫ N human|,#occupation|ְλ,official| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ԫ N part|,%entity|ʵ +Ԫڱ N document| +Ԫ N food|ʳƷ +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N human|,crime|,undesired|ݬ +Ԫѫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N sound|,#language| +Ԫ N fish| +Ԫ N time|ʱ,month| +ԫ N part|,%building|,skin|Ƥ +Ԭ N character|,surname|,human|,ProperName|ר +ԭ ADJ aValue|ֵ,physique| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N publications|鿯 +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N material|,generic|ͳ +ԭ N symbol|,#quantity| +ԭ V MakeAppointment|Լ +ԭ N attribute|,strength|,&entity|ʵ +ԭԼ N disease| +ԭ ADJ aValue|ֵ,wholeness|ȱ,complete| +ԭⲻ ADV aValue|ֵ,wholeness|ȱ,complete| +ԭ N publications|鿯,original|ԭ +ԭ N human|,*accuse|ظ,police| +ԭ N attribute|,source|Դ,#ComeToWorld|,&human| +ԭ N attribute|,price|۸,original|ԭ,&artifact|˹,commercial| +ԭ N publications|鿯,original|ԭ +ԭ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N regulation| +ԭ N material|,?food|ʳƷ,#crop|ׯ +ԭ V forgive|ԭ +ԭ N material|,generic|ͳ +ԭò N attribute|,appearance|,original|ԭ,&physical| +ԭú N material|,$burn| +ԭ N material| +ԭ N attribute|,name|,true|,&human| +ԭľ N wood|ľ,material| +ԭ N human|,family|,female|Ů +ԭɫ N attribute|,color|ɫ,&physical| +ԭ V judge|ö,police| +ԭ N AnimalHuman|,generic|ͳ +ԭ N physical| +ԭʼ ADJ aValue|ֵ,behavior|ֹ,vulgar| +ԭʼ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭʼ ADJ aValue|ֵ,time|ʱ,past| +ԭʼ V gather|ɼ +ԭʼ¼ N text|,original|ԭ +ԭʼ N human|,past| +ԭʼɭ N tree|,past| +ԭʼ N organization|֯ +ԭί N part|,%event|¼ +ԭ N text| +ԭ N text|,^$translate| +ԭ N inanimate| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N example|ʵ,#artifact|˹ +ԭ N attribute|,form|״,&physical|,original|ԭ +ԭ N material| +ԭ N attribute|,circumstances|,original|ԭ,&physical| +ԭҰ N land|½ +ԭ N aspiration|Ը,expect|,original|ԭ +ԭ N cause|ԭ +ԭ N cause|ԭ +ԭ N material|,liquid|Һ,$burn| +ԭ ADJ aValue|ֵ,property|,exist| +ԭԭ ADJ aValue|ֵ,range|,all|ȫ +ԭ N regulation| +ԭ N attribute|,property|,regulation|,&human| +ԭ֭ԭζ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭַ N location|λ +ԭ N human|,*own| +ԭ N readings| +ԭס N human|,*reside|ס +ԭ״ N attribute|,circumstances|,past|,&entity|ʵ +ԭ N part|,%physical| +ԭӵ N weapon| +ԭӺ N part|,%physical| +ԭ N part|,%physical|,strength| +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ԭ N readings| +ԭ V forgive|ԭ +Ԯ V help| +Ԯ V quote| +Ԯ V rescue| +Ԯ N army|,*rescue| +Ԯ V build|,EventProcess=help| +Ԯ V rescue| +Ԯ N human|,*rescue| +Ԯ N army|,*rescue| +Ԯ N fund|ʽ,*help| +Ԯ N fact|,help| +Ԯ V help|,patient=foreign| +Ԯ V quote| +Ԯ V recommend|Ƽ +Ԯ V quote| +Ԯ V help| +ԯ N livestock|,#LandVehicle| +԰ N InstitutePlace|,@recreation| +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N part|,%entity|ʵ,aspect| +԰ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ +԰ N human|,#occupation|ְλ,*teach|,education| +԰ N facilities|ʩ,#plant|ֲ +԰ N facilities|ʩ,space|ռ,@bury|,#die| +԰ N facilities|ʩ,#plant|ֲ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ѧ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +Ա CLAS NounUnit|,&human|,military| +Ա N human| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N image|ͼ +Բ N money| +Բ N money|,(North Korean|) +Բ N money|,(South Korea|) +Բ CLAS unit|λ,&money|,(China|й) +Բײ N part|,%vegetable|߲,embryo|,$eat| +Բײ N vegetable|߲ +Բ N material|,wood|ľ +Բ V help| +Բ N part|,%building|,head|ͷ +Բ N material|,metal| +Բµ ADJ aValue|ֵ,form|״,round|Բ +Բ N tool|þ,*measure| +Բ N MusicTool| +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N shape| +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ V die| +Բ N tool|þ,*break|۶ +Բ N symbol| +Բ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Բ V fulfil|ʵ,patient=aspiration|Ը +Բ N shape| +Բ N shape| +ԲȦ N shape|,round|Բ +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| +Բ ADJ aValue|ֵ,ability|,able|,desired| +Բͨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ԲͲ N shape| +Բ N music| +Բ N part|,%shape|,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +ԲԲ ADJ aValue|ֵ,form|״,round|Բ +Բ䷽ V FitNot| +Բ N image|ͼ +Բ N PenInk|ī,*write|д +Բ N shape| +Բ N shape| +Բ ADJ aValue|ֵ,form|״ +Բ׶ N shape| +Բ׶ ADJ aValue|ֵ,form|״ +Բ N furniture|Ҿ,space|ռ,@put|,round|Բ +Բ N fact|,discuss|,politics| +Բ N food|ʳƷ +Գ N animal| +Գ N beast| +Գ N beast| +Գ N animal|,#human| +Դ N cause|ԭ +Դ N part|,%waters|ˮ,head|ͷ +Դ N software| +Դ N part|,%event|¼,head|ͷ +Դ N part|,%waters|ˮ,head|ͷ +ԴȪ N cause|ԭ +Դͷ N part|,%waters|ˮ,head|ͷ +Դ V ResultFrom|Ե +Դ V begin|ʼ +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԶ ADJ aValue|ֵ,content|,profound|,desired| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե N part|,%inanimate|,%space|ռ,edge| +Ե PREP {location} +Ե N attribute|,relatedness|,&human| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե ADV {cause|ԭ,question|} +Եľ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ե N cause|ԭ +Ե N cause|ԭ +Ե V ResultFrom|Ե +Զ ADV aValue|ֵ,degree|̶,more| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADV aValue|ֵ,duration|,TimeShort| +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ̺ͽ ADJ aValue|ֵ,distance| +Զ N location|λ,far|Զ +Զ ADJ aValue|ֵ,content|,profound|,desired| +Զ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ N facilities|ʩ,route|·,far|Զ +Զ N place|ط,ProperName|ר,(Asia|) +Զ N place|ط,far|Զ +Զ V from| +Զ ADJ aValue|ֵ,time|ʱ,past| +Զ N time|ʱ,past| +Զ V VehicleGo|ʻ +Զ N thought|ͷ +Զ׿ʶ N thought|ͷ,wise| +Զ N part|,%place|ط,surrounding|Χ,#city| +Զ ADJ aValue|ֵ,distance| +Զ N attribute|,distance|,&space|ռ +Զ ADJ aValue|ֵ,reputation|,glorious|,desired| +Զ N attribute|,outlook|ǰ,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ V leave|뿪 +Զ N thought|ͷ +Զ N place|ط,ProperName|ר,(Asia|) +Զ ADV aValue|ֵ,duration|,TimeLong| +Զ N human|,family| +Զ V SelfMoveInManner|ʽ +Զ N disease|,#eye| +Զ V look| +Զ V look| +Զ V sell| +Զ V SelfMoveInManner|ʽ +Զ V disseminate| +Զ N waters|ˮ,surfacial| +Զ N cause|ԭ +ԶԶ ADV aValue|ֵ,degree|̶,more| +ԶԶ ADJ aValue|ֵ,distance|,far|Զ +Զ N army| +Զ V leave|뿪 +Զ־ N FlowerGrass|,?medicine|ҩ +Զ־ N aspiration|Ը,expect|,desired| +Զ߸߷ V leave|뿪 +Զ V tour| +Զ N human|,past| +Է N community| +Է N facilities|ʩ,#plant|ֲ,#livestock| +Ը N aspiration|Ը,expect| +Ը V willing|Ը +Ը N aspiration|Ը,expect| +Ը V request|Ҫ +Ը V willing|Ը +ԸЭ N human|,*surrender| +Թ V blame|Թ +Թ V emotion|,hate|,undesired|ݬ +Թ N emotion|,hate|,undesired|ݬ +Թ N entity|ʵ,$hate| +Թ N emotion|,hate|,undesired|ݬ +Թ V hate| +Թ V repent|û +Թż N human|,family|,mass|,#unfortunate| +Թ N emotion|,hate|,undesired|ݬ +Թص V protest| +Թ V blame|Թ +Թ N text|,*blame|Թ +Թ N emotion|,hate|,undesired|ݬ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +Ժ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%building|,space|ռ +Ժ N part|,%institution|,official| +Ժ N human|,#occupation|ְλ,official| +Ժ N part|,%building|,space|ռ +Ժ N part|,%house|,space|ռ +Ժǽ N part|,%building|,skin|Ƥ +Ժʿ N human|,able|,#knowledge|֪ʶ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +ԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%house|,space|ռ +Ի V naming| +Ի V speak|˵ +Լ V MakeAppointment|Լ +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| +Լ N agreement|Լ +Լ N fact|,DoSum| +Լ N fact|,MakeAppointment|Լ +Լ V invite| +Լ ADV qValue|ֵ,amount|,almost| +Լ V restrain|ֹ +Լ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jordan|Լ) +Լ N place|ط,country|,ProperName|ר,(Asia|) +Լɶ N money|,(Jordan|Լ) +Լ N human|,(Jordan|Լ) +Լ V MakeAppointment|Լ +Լ׳ V forming|γ +Լ V MakeAppointment|Լ +Լ˹ N place|ط,city|,ProperName|ר,(South Africa|Ϸ) +Լ V meet| +Լ V meet| +Լ V AmountTo|ܼ +Լ V calculate| +Լ³ N language|,#country|,ProperName|ר +Լ ADJ aValue|ֵ,behavior|ֹ,simple| +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV qValue|ֵ,amount|,almost| +ԼĪ ADV qValue|ֵ,amount|,almost| +Լ V invite| +Լ V restrain|ֹ +Լ N attribute|,power|,#restrain|ֹ,&thing| +Լ ADJ attribute|,power|,#restrain|ֹ,&thing| +Խ V BeBeyond|Խ +Խ N character|,surname|,human|,ProperName|ר +Խ V cross|Խ +Խ N place|ط,country|,ProperName|ר,(Vietnam|Խ) +Խ...Խ ADV aValue|ֵ,degree|̶,more| +Խ V pass|ȹ,patient=winter| +Խ N money|,(Vietnam|Խ) +Խ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Խ V cross|Խ +Խ V surpass|ǿ +Խ V cross|Խ +Խ V cross|Խ,LocationThru=country|,crime| +Խ N human| +Խ N shows| +ԽԽ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Vietnam|Խ) +Խ N place|ط,country|,ProperName|ר,(Asia|) +Խ N language|,#country|,ProperName|ר +ԽȨ V BeBeyond|Խ +Խ ADV aValue|ֵ,degree|̶,more| +Խλ V BeBeyond|Խ,sport| +ԽҰ N fact|,cross|Խ +ԽҰ N fact|,compete|,sport| +Խ V flee|,LocationIni=InstitutePlace|,crime| +Խ V human|,*flee|,#InstitutePlace|,crime| +Խ޴ V handle| +Ծ V jump| +Ծ V shiver| +Ծ V GoForward|ǰ +Ծ V jump| +Ծ V become|Ϊ +Ծ V urge|ʹ +ԾȻֽ V appear| +Ծ V become|Ϊ +ԾԾ V willing|Ը +Կ N tool|þ,*open|,*shut|ر +Կ N tool|þ,*open|,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N land|½ + N human|,family|,male| +ĸ N human|,family|,female|Ů +˧ N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N edible|ʳ + N shows| + N language|,#country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,time|ʱ,month| + N celestial| + N time|ʱ,month|,special| + N unit|λ,&time|ʱ +° ADJ aValue|ֵ,color|ɫ,blue|,light| +°׷ N time|ʱ,night|,beautiful| +° N time|ʱ,day| +± N document| +± N publications|鿯 +± N food|ʳƷ +² N quantity|,amount|,&crop|ׯ,&artifact|˹ +² N quantity|,amount|,&crop|ׯ,&artifact|˹,#month| +³ N time|ʱ,early|,month| +µ N time|ʱ,ending|ĩ,month| +¶ ADJ aValue|ֵ,frequency|Ƶ,month| +· N time|ʱ,month| +¹ N celestial| +¹ N lights| +» N lights| +¼ N FlowerGrass| +¼ N FlowerGrass| +¾ N phenomena|,#female|Ů,#medical|ҽ +¾ N disease| +¿ N publications|鿯 + N celestial| +ĩ N time|ʱ,month|,ending|ĩ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ + N MusicTool| + N celestial| +ɫ N lights| +̨ N facilities|ʩ,space|ռ,@TakeVehicle|,#LandVehicle| +Ϣ N fund|ʽ,$earn|׬,commercial| + N humanized| + N humanized|,*guide| + N human|,*guide| +н N payment|,#month| + N celestial| + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| + N time|ʱ,month| + N lights| + N time|ʱ,middle|,month| + N time|ʱ,ending|ĩ,month| + N time|ʱ,ending|ĩ,month| + V joyful|ϲ + V please|ȡ +ö ADJ aValue|ֵ,SoundQuality|,good|,desired| +÷ V admire|Ľ +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V check| + V read| +ı V check|,content=army|,military| +ı N fact|,check|,#army|,military| +ıʽ N fact|,check|,#army|,military| +Ķ V read| +Ķд N attribute|,ability|,read|,compile|༭,&human| +ľ V check|,content=result|,#exam| + V read| + N room|,@read| + N experience| + V undergo| + V remove|,agricultural|ũ +ų N tool|þ,#crop|ׯ + V remove|,location=land|½,agricultural|ũ + N CloudMist| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ N CloudMist| +Ʋ N CloudMist| +ƺ N CloudMist| +ƺ N celestial| +Ƽ V ComeTogether| + N MusicTool| +ĸ N stone|ʯ,material| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N CloudMist| +ȸ N bird| +ɼ N tree| +ɽ ADJ aValue|ֵ,clearness|,blurred| + N part|,%building|,nerve| + N sky| +ͼ N image|ͼ,#CloudMist| + N CloudMist| +ϼ N CloudMist| + N sky| +ɢ V WeatherFine| +ɢ V disappear|ʧ + N CloudMist| + V roam| + N fact|,mating| + N text| + ADJ aValue|ֵ,clearness|,blurred| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,form|״,even| + V economize|ʡ + V separate| +ȳ ADJ aValue|ֵ,form|״,even| +ȶ V economize|ʡ +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱦ ADJ aValue|ֵ,form|״,even| + V MakeUp|ױ + ADJ aValue|ֵ,form|״,even| +ʵ ADJ aValue|ֵ,form|״,even| + N attribute|,speed|ٶ,&event|¼ + ADJ aValue|ֵ,form|״,even| + V fall| + V fall| + V disappear|ʧ + V perish| +ʯ N stone|ʯ,#celestial| + N metal|,#celestial| + N stone|ʯ,#celestial| + V agree|ͬ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ŵ V agree|ͬ + V agree|ͬ + N attribute|,circumstances|,&human| + N fact|,AlterLocation|ռλ + V transport| + V use| +˳ V plan|ƻ +˳ѧ N knowledge|֪ʶ +˳ V plan|ƻ +˶ N fact|,AlterLocation|ռλ +˶ N fact|,exercise|,sport| +˶ N fact|,function|,politics| +˶ N disease| +˶ N clothing| +˶ N fact|,sport| +˶ N SportTool|˶ +˶ѧ N knowledge|֪ʶ,#sport| +˶ N clothing| +˶Ա N human|,sport| +˷ N expenditure|,transport| +˺ N waters|ˮ,linear| +˼ N attribute|,price|۸,&transport| +˾ N attribute|,distance|,#transport| + N attribute|,ability|,&transport| + N quantity|,amount|,#transport|,&physical| + N attribute|,circumstances|,&human| + V transmit|,medical|ҽ + V TakeAway|ᶯ,sport| + V transport| +䳵 N LandVehicle|,@transport|,#inanimate| +乤 N vehicle|ͨ + N aircraft|,*transport| + N aircraft|,*transport|,#inanimate| + N machine|,*transport|,mine| +ҵ N affairs|,*transport| + V transmit| + V transport| + V calculate| + V sell|,commercial| + V SelfMove| + V function| +Ӫ V function| + V use| + V undergo|,content=use| + V transport| +ع N vehicle|ͨ,*transport| +ػ N vehicle|ͨ,*transport| +ת V circle| +ת V function| + V function| + V handle| + V contain| +̲ V contain| +̲ N quantity|,amount|,&store| +̺ V contain| +̺ V contain| + V exist| + V create| + V think|˼ + V dizzy|,medical|ҽ + N fact|,dizzy| +γ N disease| +γ V dizzy|,medical|ҽ +δ N disease| +δ V dizzy|,medical|ҽ +ε V dizzy|,medical|ҽ +λ N disease| +λ V dizzy|,medical|ҽ +ͷת ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷת V dizzy| +κ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V dizzy|,medical|ҽ + N sound|,good| + N attribute|,pattern|ʽ,&text| + N regulation|,#pattern|ʽ,#text| +ɲ N fact|,sport| +ζ N attribute|,demeanor|,beautiful|,desired|,&human| + N fact|,pregnant|,#medical|ҽ + V pregnant|,#medical|ҽ +и N human|,female|Ů,*pregnant| + N time|ʱ,@pregnant|,#medical|ҽ + V pregnant|,agricultural|ũ + V StomachTrouble|֢,cause=pregnant| + N livestock|,female|Ů,pregnant| + V pregnant| + ADJ aValue|ֵ,density|ܶ,dense| + N shape|,round|Բ +ѵ ADJ location|λ,all|ȫ + V beat| + V fail|ʧ +ҷ V CauseToDo|ʹ,ResultEvent=suffer|,#discharge| +ҹ V fail|ʧ +ҹ V abandon|,possession=all|ȫ + V beat| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +Ӳ N FlowerGrass| +Ӳݴ ADJ aValue|ֵ,occasion|,desolate| +ӷ N expenditure| +Ӹ N text|,mixed| +Ӹ N thought|ͷ,disorder| +ӺͲ N food|ʳƷ,mixed| +Ӻ N material|,?food|ʳƷ,#crop|ׯ +ӻ N entity|ʵ,mixed| +ӻ N food|ʳƷ,mixed| +ӻ N artifact|˹,commercial|,generic|ͳ +ӻ N InstitutePlace|,*sell|,@buy|,commercial| +Ӽ N shows| +Ӽ N community|,*perform|,entertainment| +ӼԱ N human|,*perform|,entertainment| +ӽ V mating|,manner=mixed|,medical|ҽ +Ӿ V reside|ס + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + N thought|ͷ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ ADJ aValue|ֵ,color|ɫ,mixed| +ˣ N shows| + N food|ʳƷ + N text| + N inanimate| + N sound| +Ժ N house| +־ N publications|鿯 +־׫ N human|,*compile|༭ + N inanimate|,waste| + N animate|,#kind|,mixed| + N human|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V FallDown| + V insert| + V planting|ֲ + N plant|ֲ +Ե V FallDown| +Ըͷ V FallDown| +Ըͷ V fail|ʧ + V MakeBetter|Ż + V cultivate| + V planting|ֲ,agricultural|ũ + V slander|̰ + V slander|̰ +ֲ V planting|ֲ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N plant|ֲ,young| + STRU {MaChinese|} + N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֺ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather|,#HungryThirsty| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N human|,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N time|ʱ,year|,#unfortunate|,#weather| + N attribute|,circumstances|,miserable|,&unfortunate|,#weather| + N place|ط,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + V manage|,politics| + V request|Ҫ,ResultEvent=pay|,over| +׸ N character|,surname|,human|,ProperName|ר +ɱ V kill|ɱ + N human|,#occupation|ְλ,official|,past| + V control| + V control|,politics| + V load|װ + V record|¼ + N time|ʱ,year| +ز N shape| +ظ V recreation| +غ V load|װ +ػ V transport|,patient=artifact|˹ +ؿ V transport|,patient=human| + V record|¼ + N tool|þ,@load|װ + V transport| + V load|װ +ضλ CLAS unit|λ,&weight| + N quantity|,amount|,#load|װ,&physical| + N LandVehicle|,@transport|,#inanimate| + ADV aValue|ֵ,frequency|Ƶ,again| +ٰ V print|ӡˢ,frequency=again| +ٴ ADV aValue|ֵ,frequency|Ƶ,again| +ٴ ADV aValue|ֵ,sequence|,ordinal| +ٶ ADV aValue|ֵ,frequency|Ƶ,again| +ٷ V dispatch|Dz +ٻ V repeat|ظ,content=GetMarried| +ټ V repeat|ظ,content=MarryTo| +ټ EXPR expression|,*farewell| +ٽ N fact|,education| +ٽ V endeavour| +پ CONJ {supplement|ݽ} + ADV aValue|ֵ,frequency|Ƶ,again| + V repeat|ظ,content=interrogate|,police| + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,property|,$BeRecovered|ԭ + V produce| + N crop|ׯ +ĸ N human|,friend| +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˵ V delay| +˵ CONJ {supplement|ݽ} + V subtract|,commercial| + V appear|,frequency=again| +ѭ V circle|,frequency=again| + V help| + CONJ {supplement|ݽ} + CONJ {supplement|ݽ} + V ResultFrom|Ե + V alive| + V depend| + V exist| + V situated| + PREP {Vgoingon|չ} + PREP {location} + PREP {scope} + PREP {time} +ڰ V record|¼ +ڱ V undergo|,content=release|ͷ +ڳ V exist| +ں V PayAttention|ע +ڼ ADV aValue|ֵ,duration|,TimeShort| +ڼ V situated| +ڽ V undergo|,Vgoingon|չ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V include| +ǰ ADJ aValue|ֵ,time|ʱ,past| +DZ V flee|,Vgoingon|չ +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,distance|,#firing| +֮ ADJ aValue|ֵ,distance|,#firing| + V alive| +ϧ V worth|ֵ + V BeUnable|,content=escape| + V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +֮ N mental| + ADJ aValue|ֵ,attachment|,special| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,ability|,able|,$perception|֪,#look| +λ V undertake|,Vgoingon|չ +λ V undertake|,royal|,Vgoingon|չ + V control| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,performance|,#software| + V PayAttention|ע + V know|֪ +Ѻ V suffer|,content=detain|ס,#police| +Ѻ N human|,crime|,undesired|ݬ,$detain|ס +Ұ ADJ aValue|ֵ,power|,empty|,politics| +Ұ N community|,#power|,empty|,politics| + V PayAttention|ע + V ResultFrom|Ե + V depend| +ְ V undertake| + V exist| + PRON {firstPerson|,mass|} +ۼ N community|,family| + PRON {firstPerson|,double|} + PRON {firstPerson|,mass|} + V SetAside| + V gather|ɼ + V ComeTogether| + ADV aValue|ֵ,duration|,TimeShort| +ݴ V SetAside| +ݶ ADJ aValue|ֵ,duration|,TimeShort| +ݻ V delay| +ݾ V reside|ס + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ͣ V pause|ͣ +ͣ V pause|ͣ,sport| + ADJ aValue|ֵ,duration|,TimeShort| +а취 N regulation| + N regulation| +ס V reside|ס + V help| + V praise|佱 + N text| +ޱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zambia|ޱ) +ޱ N place|ط,country|,ProperName|ר,(Africa|) +ޱ N human|,(Zambia|ޱ) +޲ V praise|佱 +޳ V agree|ͬ +޳Ʊ N bill|Ʊ,#select|ѡ,*agree|ͬ +޳Ʊ N bill|Ʊ,*agree|ͬ,#select|ѡ +޸ N music|,*praise|佱 + V praise|佱 +ʫ V text|,*praise|佱,religion|ڽ + V FondOf|ϲ + V praise|佱 +̾ V praise|佱 +̾ V praise|佱 +ͬ V agree|ͬ + V appreciate|޳ + V praise|佱 + V praise|佱 + N text|,*praise|佱 + V praise|佱 + V help| + N inanimate|,$steal|͵ +߹ N human|,*cheat|ƭ,official|,undesired|ݬ +߿ N money|,$steal|͵ + N inanimate|,$steal|͵ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| +ಡ N disease|,#SeekPleasure|Ѱ +อ N part|,%AnimalHuman|,viscera| +໰ N text|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| + N stone|ʯ,waste| + N expression|,lascivious|,undesired|ݬ + V bury| + N fact|,bury|,salute|¾,#die| + V die| + V destroy| + V suffer| +⵽ V suffer| + V suffer| + N attribute|,circumstances|,&entity|ʵ + V suffer| + V suffer| + V suffer|,content=unfortunate| + N experience| + V suffer| + V suffer|,content=unfortunate|,#weather| + V suffer|,content=unfortunate| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + V lavish|˷ +㿷 N inanimate|,waste| + N stone|ʯ,waste| +̣ V damage| +̣ V lavish|˷ + V upset| + ADJ aValue|ֵ,trueness|α,true|,desired| + V dig|ھ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,*dig|ھ + N AlgaeFungi|ֲ +微 N part|,%house| + N AlgaeFungi|ֲ + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,red| + N material|,?food|ʳƷ + N tree|,#fruit|ˮ +Ҭ N tree| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADJ aValue|ֵ,time|ʱ,early| + ADJ aValue|ֵ,time|ʱ,past| + EXPR expression|,*SayHello|ʺ + N time|ʱ,early|,day| +簲 EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,morning| + N fact|,eat|,early| + N fact|,exercise|,#morning| + V labour|ٲ +糵 N LandVehicle| +糿 N time|ʱ,early|,day| +糿 EXPR expression|,*SayHello|ʺ +紺 N time|ʱ,spring|,early| +絾 N crop|ׯ + N fact|,eat|,early| +緹 N fact|,eat|,early| + V GetMarried| + N time|ʱ,past| + N time|ʱ,early| + V arise|,early| + N time|ʱ,early|,day| + ADJ aValue|ֵ,earliness|,early| + N time|ʱ,early|,day| + V die| + N InstitutePlace|,@sell|,@buy|,morning|,commercial| + ADJ aValue|ֵ,ability|,able|,#young| + ADJ aValue|ֵ,physique|,ripe|,early|,agricultural|ũ + N attribute|,ability|,able|,&young| + V grow|ɳ,manner=MakeEarlier| +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V ill|̬,medical|ҽ + V leave|뿪,manner=MakeEarlier| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ + N time|ʱ,past| +й N disease| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,earliness|,early| + ADV aValue|ֵ,duration|,TimeShort| + V wash|ϴ + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N InstitutePlace|,@wash|ϴ,commercial| + N InstitutePlace|,@wash|ϴ,commercial| + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +궯 V SelfMove| +꼱 ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N disease| + N human|,rash|ç,undesired|ݬ +֢ N disease| + V cry| + N sound|,undesired|ݬ + V create| + V cultivate| + V forge|α + V create| + V forming|γ +촬 N affairs|,*produce|,#repair|,#ship|,industrial| +촬 V produce|,PatientProduct=ship|,industrial| +촬 N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| +촬ҵ N affairs|,*produce|,#repair|,#ship|,industrial| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V begin|ʼ +췴 V uprise| + V visit| +츣 V benefit| +컯 N humanized| + N expenditure|,commercial| + V cultivate| + N result|,desired|,#succeed|ɹ + V planting|ֲ + N attribute|,form|״,&physical| + V create|,PatientProduct=shape| + V produce|,industrial| + N knowledge|֪ʶ +ҥ V forge|α,PatientProduct=text| +ҥ V forge|α,PatientProduct=text|,purpose=deceive|ƭ +ҥ V forge|α,PatientProduct=text|,purpose=slander|̰ + N attribute|,rank|ȼ,#mental|,&human| +Ӱ N method|,cure|ҽ,medical|ҽ + V incite|ָʹ,patient=thought|ͷ,public| +ֽ V produce|,PatientProduct=paper|ֽ,industrial| +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N human|,#occupation|ְλ,*produce|,#paper|ֽ,industrial| +ֽҵ N affairs|,*produce|,#paper|ֽ,industrial| + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black| + N tool|þ,*wash|ϴ + V ize|̬ + N chemical|ѧ + N human|,past| +Ƭ N tool|þ,*wash|ϴ + N chemical|ѧ + N chemical|ѧ + N room|,@cook| + N tool|þ,*burn|,*cook| + N tool|þ,*cook| + N humanized| +ү N humanized| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,temperature|¶,hot| + V ExpressAgainst|Ǵ + V ask| + N duty| + V punish| + V ExpressAgainst|Ǵ + V order| + V punish|,means=beat| + V punish| + V blame|Թ + V order| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + N duty| +θ N emotion|,#duty| + N emotion|,#duty| + N system|ƶ,#duty| + V ask| +Դ V endeavour| + V endeavour| + V choose|ѡ + V select|ѡ + V choose|ѡ,content=friend| +ż V choose|ѡ,content=friend|,purpose=GetMarried| +ƶ V choose|ѡ,content=desired| +ҵ V choose|ѡ,content=occupation|ְλ + V choose|ѡ,content=superior| +¼ V employ|,patient=superior|,means=choose|ѡ + V choose|ѡ,content=friend| + CLAS NounUnit|,&text| + N attribute|,standard|׼,&entity|ʵ + N law|ɷ + CONJ {but|} + CONJ {condition|} + V speak|˵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N waters|ˮ,surfacial| + N place|ط + N place|ط,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,crime|,undesired|ݬ,treacherous| + N human|,undesired|ݬ,*steal|͵,crime| +ü ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ȥ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N human|,undesired|ݬ,*steal|͵,crime| +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N place|ط,undesired|ݬ,#steal|͵,crime| + N aspiration|Ը,expect|,evil|,undesired|ݬ +IJ V refuse|,content=abandon|,#aspiration|Ը,evil|,undesired|ݬ + N celestial| + N inanimate|,$steal|͵ + ADV {manner|ʽ,question|} + ADJ aValue|ֵ,kind|,question| +ô ADV {manner|ʽ,question|} + ADV {emphasis|ǿ} + ADV {manner|ʽ,question|} + V BecomeMore| + V add| + V add|,patient=army| + V add| + V BecomeMore|,scope=produce| + V BecomeMore| + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + V enlarge| + V add| + V BecomeMore| + N attribute|,range|,BecomeMore|,&price|۸,commercial| + V BecomeMore| + V add|,scope=height|߶ + V MakeBetter|Ż + V MakeBetter|Ż + V BecomeMore| + V add| + V QuantityChange|,commercial| + V MakeBetter|Ż + N publications|鿯 + V BecomeMore|,scope=quantity| +ǿ V MakeBetter|Ż +ɫ V beautify| + V ill|̬,medical|ҽ + V add|,patient=wealth|Ǯ +˰ V add|,patient=expenditure| +ܼ N chemical|ѧ + V add| + V add| +Ԯ V MakeBetter|Ż,military| +Ԯ N army| +ֳ V ill|̬,medical|ҽ +ֵ V BecomeMore|,scope=value|ֵ,commercial| +ֵ˰ N expenditure| + V disgust| + V disgust| + V hate| + ADV aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,time|ʱ,past| +׺ ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,male| +Ů N human|,family|,female|Ů + N human|,family|,male| +ĸ N human|,family|,female|Ů + V GiveAsGift| + V GiveAsGift| +Ʒ N tool|þ,$GiveAsGift|,generic|ͳ + V GiveAsGift| + V text|,*persuade|Ȱ˵ + V GiveAsGift| + V GoInto| + V stab| + V wrap| + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +۶ V stab|,PartOfTouch=part| + V grow|ɳ + V decorate|װ + V sink|³ +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zaire|) + N money|,(Zaire|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Zair|) +Ӫ V reside|ס +ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V cure|ҽ + V speak|˵ + N inanimate|,waste| + N material| + N inanimate|,waste| + N letter|ż + N letter|ż,past| + N place|ط,city|,ProperName|ר,(Japanձ) + N text| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V associate| + V check| + V press|ѹ + V press|ѹ,industrial| + V press|ѹ,patient=metal|,industrial| +ֳ N InstitutePlace|,factory|,*press|ѹ,patient=metal|,industrial| + N machine| + V press|ѹ,industrial| +ա V break|۶ +ա N tool|þ,*break|۶,#FlowerGrass| +աݻ N tool|þ,*break|۶,#FlowerGrass| +ա N tool|þ,*break|۶,#FlowerGrass| +բ N facilities|ʩ,#waters|ˮ +բ N part|,%implement|,*start|ʼ,*cease|ͣ +բ N part|,%vehicle|ͨ,*fix|ס +բ N part|,%building|,%implement|,#electricity|,*protect| +բ N facilities|ʩ,#waters|ˮ +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +դ N part|,%building|,*defend| +դ N part|,%building|,*defend| +ե V SqueezeOut| +ե V press|ѹ +ե N food|ʳƷ +եȡ V SqueezeOut| +եȡ V rob| +ե V SqueezeOut|,patient=material|,industrial| +եͻ V machine|,*SqueezeOut|,patient=material|,industrial| +զ ADV {cause|ԭ,question|} +զ ADV {manner|ʽ,question|} +զ V ShowOff|ҫ +զ V cry| +զ V ShowOff|ҫ +զ V cry| +զ V surprise| +է ADV aValue|ֵ,behavior|ֹ,sudden| +է ADV aValue|ֵ,time|ʱ,early| +է ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chad|է) +է N place|ط,country|,ProperName|ר,(Africa|) +էȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ը V ExpressAnger|ʾŭ +ը V FormChange|α,StateFin=OutOfOrder| +ը V cook| +ը V firing| +ը V flee| +ը N weapon| +ը V FormChange|α,StateFin=OutOfOrder| +ը N thunder| +ըҩ N weapon| +թ V deceive|ƭ +թ V pretend|װ +թƭ V cheat|ƭ +թƭ N human|,*cheat|ƭ +թƭ N human|,*cheat|ƭ +ժ V PickOut|γ +ժ V StripOff|ȥ +ժ V choose|ѡ +ժ V compile|༭ +ժ N text| +ժ V copy|д +ժ V cut|,#cure|ҽ,medical|ҽ +ժ V publish| +ժ V publish|,means=choose|ѡ +ժ V StripOff|ȥ +ժ V record|¼ +ժ V borrow| +ժ¼ V copy|д +ժ¼ N human|,*copy|д +ժȡ V PickOut|γ +ժҪ V record|¼ +ժҪ N text|,#readings| +ժ V quote| +ժ V copy|д +ժ V quote| +ի N food|ʳƷ,#religion|ڽ +ի N house| +ի V GiveUp|,religion|ڽ +ի N time|ʱ,month|,#religion|ڽ +լ N house| +լ N place|ط,@build| +լ N place|ط,@build| +լ N part|,%building|,mouth| +լԺ N house| +լ N house| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,richness|ƶ,poor| +խ ADJ aValue|ֵ,width|,narrow|խ +խС ADJ aValue|ֵ,size|ߴ,small|С +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N money|,$lend|,commercial| +ծȨ N rights|Ȩ,$recompense|,#wealth|Ǯ +ծȨ N place|ط,#human|,country|,politics|,$owe|Ƿ +ծȨ N human|,$owe|Ƿ,#wealth|Ǯ +ծȯ N coupon|Ʊ֤,#fund|ʽ +ծȯ N human|,own|,#coupon|Ʊ֤ +ծ̨ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ծ̨ V owe|Ƿ,possession=wealth|Ǯ,commercial| +ծ N wealth|Ǯ,$owe|Ƿ +ծ N place|ط,#human|,country|,politics|,*owe|Ƿ +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N human|,*lend|,#wealth|Ǯ +կ N facilities|ʩ,military|,@defend| +կ N place|ط,military|,@defend| +կ N human|,official|,#facilities|ʩ,military| +կ N place|ط,military|,@defend| +հ V look| +հ V look|,purpose=condole|° +հ V look| +հ V think|˼ +հǰ˺ V hesitate|ԥ +հ V look|,direction=InFront|ǰ +հ V look|,purpose=condole|° +ձ N material| +ձ N house| +ձ N material| +ղ N character|,surname|,human|,ProperName|ר +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N attribute|,stickiness|,&inanimate| +ճ V fasten|˩ +ճ V fasten|˩ +ճϼ N material|,*fasten|˩ +ճ V fasten|˩ +ճ N disease| +ճĤ N part|,%AnimalHuman|,skin|Ƥ +ճ˿ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N stone|ʯ,material| +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ N attribute|,stickiness|,&inanimate| +ճҺ N part|,%AnimalHuman|,liquid|Һ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +մ V exist| +մ V moisten|ʪ +մ V obtain|õ +մ V touch| +մ ADJ aValue|ֵ,standard|׼,average|,desired| +մ V obtain|õ,possession=benefit| +մDz V associate|,partner=female|Ů,manner=lascivious| +մ V exist| +մ״ V relate|й +մȾ V suffer|,content=CauseAffect|Ⱦ +մȾ V place|ط,$CauseAffect|Ⱦ +մ V engage| +մ V pollute|ʹ +մմϲ V satisfied| +յ CLAS NounUnit|,&tool|þ,#illuminate| +յ N tool|þ,cubic|,@put| +ն V break|۶ +ն V kill|ɱ +նݳ V destroy| +ն ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ն V break|۶ +նʯ N material|,?building| +ն V kill|ɱ +ն ADJ aValue|ֵ,newness|¾,new|,desired| +շ N character|,(China|й) +շ V press|ѹ +շת V CausePartMove|,#LieDown|,#sleep|˯ +շת V roam| +շת V CausePartMove|,#LieDown|,#sleep|˯ +ո ADJ aValue|ֵ,GoodBad|û,good|,desired| +ո¶ͷ V display|չʾ,content=ability| +ո¶ͷ V show|,ability| +ո ADJ aValue|ֵ,newness|¾,new|,desired| +չ V delay| +չ N fact|,display|չʾ +չ V unfold|̯ +չ V use| +չ N fact|,disseminate| +չ V fly| +չ V display|չʾ +չ N facilities|ʩ,@display|չʾ +չ V delay| +չ V conduct|ʵʩ +չ V start|ʼ +չ V unfold|̯ +չ V display|չʾ +չ N fact|,display|չʾ +չ N house|,@display|չʾ +չ N fact|,display|չʾ +չƷ N physical|,$display|չʾ,generic|ͳ +չ N room|,@display|չʾ +չ¶ V appear| +չ V sell|,means=display|չʾ,commercial| +չƷ N physical|,$display|չʾ,generic|ͳ +չ V estimate|,means=display|չʾ +չ V delay| +չ N time|ʱ,@display|չʾ +չ N location|λ,@display|չʾ +չʾ V appear| +չʾ N fact|,display|չʾ +չ N room|,@display|չʾ +չ̨ N location|λ,@display|չʾ +չ N room|,@display|չʾ +չ V predict|Ԥ +չ V appear| +չ V enlarge|,PatientAttribute=boundary|,#time|ʱ +չ V sell|,means=display|չʾ,commercial| +չ N fact|,sell|,#display|չʾ,commercial| +չת V CausePartMove|,#LieDown|,#sleep|˯ +չת V roam| +պ V soak| +պ V moisten|ʪ,purpose=strengthen|ӹ,industrial| +պˮֱ N PenInk|ī,*write|д +ջ N facilities|ʩ,space|ռ,#livestock|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ջ N InstitutePlace|,commercial|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ռ V BeMember| +ռ V guess|² +ռ V obtain|õ +ռ V occupy|ռ +ռ V obtain|õ,possession=benefit| +ռ V guess|² +ռ N human|,*guess|² +ռ V own| +ռ N attribute|,area|,&land|½ +ռ V occupy|ռ +ռ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ռ V occupy|ռ +ռ N army|,*occupy|ռ +ռ N place|ط,$occupy|ռ +ռ N human|,*occupy|ռ,military| +ռ V guess|² +ռϷ V surpass|ǿ +ռ V surpass|ǿ +ռ V undergo|,content=use| +ռС V obtain|õ,possession=benefit| +ռ V use| +ռ V own| +ռ N quantity|,rate|,&own| +ռ V guess|² +ս N fact|,fight|,military| +ս V fight| +ս V fight|,military| +ս V defeated|,military| +ս V defeat|սʤ,military| +սܹ N place|ط,country|,*defeated|,military| +ս N document|,official|,#fight|,military| +ս N fact|,*prepare|׼,#fight|,military| +ս N place|ط,@fight|,military| +ս N weapon|,LandVehicle|,military| +ս N weapon| +ս N place|ط,@fight|,military| +սؼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#fight| +ս V shiver| +ս ADJ aValue|ֵ,courage|,brave| +ս V fight|,military| +ս N army| +սλ N part|,%army| +ս N weapon|,aircraft|,military| +ս N part|,%army| +ս N attribute|,strength|,fight|,&army|,military| +ս N human|,*fight|,military| +ս N human|,undesired|ݬ,#fight|,crime| +ս N human|,military|,undesired|ݬ +ս N result|,desired|,#fight|,#succeed|ɹ +ս N MusicTool|,#fight|,#military| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ս N result|,#fight| +ս N facilities|ʩ,space|ռ,military| +ս N time|ʱ,#fight| +ս N fire|,#fight|,#military| +ս׷ ADJ aValue|ֵ,circumstances|,fight| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս N time|ʱ,#fight| +ս N result|,desired|,#fight|,#succeed|ɹ +ս N weapon|,ship|,military| +ս N human|,military| +ս N attribute|,circumstances|,&fight| +ս N attribute|,circumstances|,&fight| +ս V shiver| +սƷ N artifact|˹,$obtain|õ,#fight| +ս N fact|,fight|,military| +սн N weapon|,ship|,military| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս ADJ aValue|ֵ,attachment| +ս N plans|滮 +սԲ N army| +սԲ N plans|滮 +սԺ N weapon| +սԼ N human|,#knowledge|֪ʶ,#fight|,#military| +ս N artifact|˹,*fight| +ս ADJ aValue|ֵ,property|,#fight| +ս N livestock|,#fight| +սĻ N fact|,begin|ʼ,#fight| +սǰ N time|ʱ,#fight| +ս N place|ط,@fight|,military| +սϵͳ N weapon|,*defend| +սʤ V defeat|սʤ +սʤ N place|ط,country|,*defeat|սʤ,military| +սʱ N time|ʱ,#fight|,military| +սʷ N fact|,#time|ʱ,#fight|,military| +սʿ N human|,military| +ս N fact|,fight| +ս ADJ aValue|ֵ,attachment| +ս N weapon| +սվ N army| +սò N army| +ս V die| +ս춷 V fight|,partner=thing| +ս޲ʤ ADJ aValue|ֵ,ability|,able|,defeat|սʤ +ս N place|ط,@fight|,military| +ս N fact|,fight|,military| +ս N human|,friend|,#fight| +սս V fear| +ս N fact|,fight| +ս N human|,undesired|ݬ,*do|,#fight| +ս N aspiration|Ը,expect|,#fight|,undesired|ݬ +ս N human|,undesired|ݬ,*do|,#fight| +ս״̬ N attribute|,circumstances|,&fight| +վ V CeaseSelfMove|ֹ +վ N facilities|ʩ,space|ռ +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ V stand|վ +վ N human|,#occupation|ְλ,official| +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վ V stand|վ,purpose=defend| +վڷ V stand|վ,purpose=defend| +վ̨ V engage|,content=sell|,commercial| +վ V stand|վ +վƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ +վ V stand|վ +վ̨ N facilities|ʩ,space|ռ,@TakeVehicle| +վ V CeaseSelfMove|ֹ +վ V stand|վ +վס V CeaseSelfMove|ֹ +վס V stand|վ +վס V CeaseSelfMove|ֹ +վס V succeed|ɹ +տ ADJ aValue|ֵ,clearness|,clear| +տ ADJ aValue|ֵ,content|,profound|,desired| +տ N place|ط,city|,ProperName|ר,(China|й) +տ ADJ aValue|ֵ,color|ɫ,blue| +տ ADJ aValue|ֵ,content|,profound|,desired| + V FormChange|α,StateFin=OutOfOrder| + V pregnant| + V FormChange|α + V FormChange|α,StateFin=OutOfOrder| + N tree| +ľ N wood|ľ + N material|,*obstruct|ֹ,#InsectWorm| + N tool|þ,*obstruct|ֹ,InsectWorm| + N tool|þ,*obstruct|ֹ,#InsectWorm| + N tree| + N character|,surname|,human|,ProperName|ר + N law|ɷ + N part|,%text| + N stationery|ľ + N tool|þ,$PutOn| +³ N law|ɷ +³ N method| +· N attribute|,behavior|ֹ,&act|ж +· N method|,#text| +½ N part|,%text| + N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V reward|,punish| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + CLAS NounUnit|,&furniture|Ҿ,&paper|ֽ + N character|,surname|,human|,ProperName|ר + V open| + V unfold|̯ +Ű V announce|,content=document| +Ŵ V PlayUp|Ĵ +ŵƽ V decorate|װ +Ź V hang| +Ź ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ż V flurried| +żҸ N place|ط,city|,ProperName|ר,(China|й) +żҿ N place|ط,city|,ProperName|ר,(China|й) +ſ V open| +ſ V CausePartMove|,PatientPartof=mouth| +ſڽ V stupefied|ľȻ +ſ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,#pull|,&physical| + V TakeCare| + V gather|ɼ + V prepare|׼ + N human|,ordinary| + V hang| + V look| + V look|,manner=secret| +צ V frighten|Ż + V announce| + V CausePartMove|,PatientPartof=mouth| + V beg| + V beat| + V hold| + V manage| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,hand| + N part|,%clothing|,#foot| +Ʊ N human|,*drive|Ԧ,#vehicle|ͨ +Ƴ V manage|,patient=cook| +Ƶ V lighting|ȼ +ƶ V drive|Ԧ,patient=ship| +ƹ N information|Ϣ +ƹ V manage| +ƹ N human|,#occupation|ְλ,*sell|,commercial| +Ȩ V obtain|õ,possession=power|,politics| + N human|,family|,young| +׶ V manage|,patient=cook| + N sound|,#beat|,#hand| + V control| + V know|֪ + N attribute|,power|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,hand| +ӡ V manage|,patient=power| +״ ADJ aValue|ֵ,form|״ + N part|,%tool|þ,#livestock|,#foot| + N facilities|ʩ,mine| + V beat|,PartOfTouch=skin|Ƥ + V BecomeMore| + V FormChange|α,StateFin=protruding|͹ +dz V rise| +Ƿ N attribute|,range|,BecomeMore|,&price|۸,commercial| +Ǽ V BecomeMore|,scope=price|۸ + V QuantityChange|,commercial| + N tool|þ + N human|,family|,male| + CLAS unit|λ,&length| +ɷ N human|,family|,male| + V measure| +ĸ N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N wealth|Ǯ,$owe|Ƿ,$return| +ʱ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʵ N bill|Ʊ,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʷ N human|,employee|Ա,#wealth|Ǯ +ʷ N part|,%InstitutePlace|,commercial|,*calculate|,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʺ N attribute|,number|,&account|,commercial| +ʻ N account|,@record|¼,#wealth|Ǯ +ʿ N fund|ʽ +Ļ N tool|þ,*cover|ڸ +Ŀ N account|,@record|¼,#wealth|Ǯ + N tool|þ,*cover|ڸ + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N wealth|Ǯ,$owe|Ƿ,$return| +˻ N account|,@record|¼,#wealth|Ǯ + V depend| + N fact|,fight| + N weapon|,generic|ͳ + V damage|,means=use|,#power| + V endorse|ӵ,content=fair| + V loyal|Т + V donate| +ִ V speak|˵ + V FormChange|α,StateFin=enlarge| + V swollen| + N gas|,undesired|ݬ + N gas|,undesired|ݬ + N facilities|ʩ,*obstruct|ֹ + V obstruct|ֹ +ϰ V obstruct|ֹ +ϰ N phenomena|,#obstruct|ֹ +ϰ N fact|,compete|,sport| +ϰ N facilities|ʩ,*obstruct|ֹ +ϱ V obstruct|ֹ +۷ N method|,*deceive|ƭ + V admit| + V attract| + V call|ٻ + V excite|ж + V include| + V incur| + N method| +а V request|Ҫ,ResultEvent=surrender|,military| +б V invite|,ResultEvent=bear|е +б V include|,patient=human|,military| +б V include|,patient=human| +д V entertain|д +д N expenditure|,*entertain|д +д N fact|,entertain|д +д N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +и V CauseToDo|ʹ,ResultEvent=surrender|,military| +й V include| +й V admit| +й V gather|ɼ,possession=fund|ʽ,commercial| +к V SayHello|ʺ +к V TakeCare| +к V cry| +к V tell| +м V obstruct|ֹ +н V request|Ҫ,ResultEvent=surrender|,military| +н V ally|,military| +п V include|,means=exam|,education| + V attract|,commercial| +ļ V include| +Ů V include|,ResultWhole=family| + N mark|־,#commercial| + V sell| +Ƹ V call|ٻ,ResultEvent=request|Ҫ,#employ| +Ƹ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + V request|Ҫ,ResultEvent=MarryTo| + V incur| + V admit|,#police| + V cooperate|,commercial| + V cooperate|,commercial| + V include|,patient=human|,education| + V include| + V CausePartMove|,PatientPartof=hand|,purpose=call|ٻ + N method| + N readings|,#image|ͼ + N readings|,#image|ͼ +Ц ADJ aValue|ֵ,content|,interesting|Ȥ +ҡ ADJ aValue|ֵ,property|,ShowOff|ҫ,undesired|ݬ +ҡ V ShowOff|ҫ +ҡײƭ V deceive|ƭ + V attract| + V incur| +ǻ V incur|,result=damage| +չ V wave|ڶ + V ResultIn| +² ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +׸ V include|,ResultWhole=family| + V call|ٻ,ResultEvent=borrow| + V attract|,commercial| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,content|,opened| +ʾ V announce| +ѩ V amend| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| + V LookFor|Ѱ + V request|Ҫ,ResultEvent=meet| + V return| +Ҳ V MakeEqual|ʹ +Ҳ V ExpressAgainst|Ǵ +Ҳ V MakeTrouble| +ҳ V LookFor|Ѱ,Vachieve| +ҵ V LookFor|Ѱ,Vachieve| +鷳 V MakeTrouble| + V MakeEqual|ʹ +Ǯ V return|,possession=money| +Ѱ V LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,Vachieve| + N waters|ˮ,surfacial| + N gas|,$burn| + N facilities|ʩ,#gas|,#burn| + N land|½ + N land|½ + N character|,surname|,human|,ProperName|ר + V TakeCare| + V TakePicture| + V comparison|ȹϵ + N document|,*ExpressAgreement|ʾͬ + V illuminate| + N image|ͼ,$TakePicture| + V tell| + PREP {AccordingTo} + PREP {direction} +հ V imitate|ģ +հ V do|,manner=obey|ѭ +ձ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ձ N part|,%building|,skin|Ƥ +ճ ADV aValue|ֵ,frequency|Ƶ,often| +ճ V copy|д +ն N attribute|,brightness|,#illuminate|,&artifact|˹ +շ V send| +շ V TakeCare| +չ V TakeCare| +չ V TakeCare| +պ«ư V imitate|ģ +ջ V TakeCare| +ջ V tell|,politics| +ջ N text|,*tell|,politics| +վ V ChangeNot| +վ ADV aValue|ֵ,behavior|ֹ,lasting| +տ V TakeCare| + ADV aValue|ֵ,behavior|ֹ,proper| + ADV aValue|ֵ,frequency|Ƶ,often| + V illuminate| + V TakeCare| + V illuminate| +è V imitate|ģ + V appear| + V illuminate| + N human|,*illuminate| + V compile|༭,means=TakePicture| +Ż N machine|,*compile|༭ +Ƭ N image|ͼ,$TakePicture| + V illuminate| +˵ ADV aValue|ֵ,frequency|Ƶ,often| + V TakePicture| + N InstitutePlace|,*TakePicture| + N tool|þ,*TakePicture| + ADV aValue|ֵ,behavior|ֹ,lasting| +ҫ V illuminate| +Ӧ V TakeCare| +Ӧ V coordinate|Э + ADV aValue|ֵ,behavior|ֹ,proper| +׼ V agree|ͬ + V cover|ڸ + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*cover|ڸ + N clothing|,*cover|ڸ + N part|,%building|,head|ͷ + N clothing|,*cover|ڸ + N part|,%clothing|,*cover|ڸ,#arm| + N tool|þ,*cover|ڸ + V express|ʾ + N information|Ϣ + NUM qValue|ֵ,amount|,cardinal|,mass| +׺ CLAS unit|λ,&frequency|Ƶ +ŷ CLAS unit|λ,&resistance| +ͷ N information|Ϣ + CLAS unit|λ,&frequency|Ƶ + V begin|ʼ + V create| +ػ V create|,PatientProduct=phenomena|,undesired|ݬ +ʼ V begin|ʼ + V create|,PatientProduct=phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V call|ٻ +ٻ V call|ٻ +ٻ V dismiss| +ٻ V ResultIn|,result=damage| +ټ V assemble|ۼ +ټ V meet| +ٿ V engage| + V cover|ڸ + V obstruct|ֹ +ڱ V cover|ڸ +ڱ V cover|ڸ,military| +ڱ V obstruct|ֹ +ڲ V HideTruth| +ڲ V hide| +ڵ V obstruct|ֹ +ڶ V cover|ڸ,military| +ڸ V HideTruth| +ڸ V cover|ڸ + V obstruct|ֹ + V cover|ڸ,patient=sky| +ǵ V cover|ڸ,patient=earth| + V HideTruth|,content=shy| + V HideTruth| + V cover|ڸ +۷ N method|,*deceive|ƭ + V cover|ڸ,patient=celestial| +ñ N clothing|,#head|ͷ + V cover|ڸ,patient=celestial| +ס V cover|ڸ,Vachieve| + V AmountTo|ܼ,means=CauseToBe|ʹ֮ + V GoBack| + V InDebt| + N account|,@record|¼,#SetAside|,#money| + V bend| + V break|۶ + V dump| + V fold|ߡ + N quantity|,rate|,$subtract|,&sell|,commercial| + V subtract|,commercial| + N tool|þ,*store|,#document| +۰ V BecomeLess|,range=half|,commercial| +۱ V InDebt|,possession=fund|ʽ,commercial| +۳ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +۳ N tool|þ,*measure| +۳ V discuss|,politics| +۳ V win|ʤ,means=discuss|,politics| +۵ V fold|ߡ +۶ V break|۶ +۷ V GoBack| +۷ V believe| +۷ V defeat|սʤ +۷ V respect| +ۺ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +ۻ V GoBack| +ۼ V AmountTo|ܼ,commercial| +۾ V AmountTo|ܼ,#used|,commercial| +ۿ N BecomeLess|,commercial| +ĥ V damage| +ĥ N fact|,MakeBad|Ӻ,undesired|ݬ + V damage| + N tool|þ,#wind|,*cool| + N fact|,illuminate| + ADJ aValue|ֵ,ability|,able|,illuminate| + N attribute|,ability|,able|,#illuminate|,&inanimate| + V CauseToBe|ʹ֮ + V CausePartMove|,#LieDown|,#sleep|˯ + V damage| + V lavish|˷ + V repeat|ظ +ͷ N BecomeLess|,commercial| + V bend| + N shape|,linear| + V CausePartMove|,PatientPartof=body| + V recompense|,possession=wealth|Ǯ + V reconcile| +з N plans|滮,*reconcile| + V reconcile| +Է V plans|滮,*reconcile| + N thinking|˼,#reconcile| + N account|,*record|¼,wealth|Ǯ + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N reason| + N human|,wise|,desired| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ݷ V sleep|˯ +ݾ V reside|ס + N method| + N method|,#music|,#text| + N trace|,#LandVehicle| + V defeated| + SUFFIX human| + PRON {it|} + N metal| + N crop|ׯ,?material| +ũ N human|,#occupation|ְλ,agricultural|ũ + N material|,?food|ʳƷ + N artifact|˹,waste| + ADJ aValue|ֵ,kind|,special| + N time|ʱ + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,degree|̶,more| + N location|λ + ADJ aValue|ֵ,time|ʱ,now| + N location|λ + N time|ʱ,now| + ADJ aValue|ֵ,kind|,special| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,special| +ô ADJ aValue|ֵ,degree|̶,more| +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ʱ ADV aValue|ֵ,time|ʱ,now| +Щ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,degree|̶,more| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +㽭 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + V like|ϧ + N treasure|䱦,generic|ͳ +䰮 V like|ϧ +䱦 N treasure|䱦,generic|ͳ + V store| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ʒ N treasure|䱦,generic|ͳ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N bird|,precious| + V like|ϧ + N artifact|˹,generic|ͳ,precious| + N information|Ϣ +ϡ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ϧ V like|ϧ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + EXPR expression|,*SayHello|ʺ + V like|ϧ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(US|) +鼦 N bird| + N crop|ׯ + N food|ʳƷ,generic|ͳ + V dump| + V think|˼ + ADJ aValue|ֵ,content|,accurate|׼ + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {emphasis|ǿ} +ʵѧ N attribute|,ability|,able|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%plant|ֲ,embryo| +滰 N text|,true| +漣 N artifact|˹,original|ԭ + N attribute|,trueness|α,&entity|ʵ +澭 N publications|鿯 + N AlgaeFungi|ֲ + N space|ռ,empty|,#gas| +ձ N tool|þ,*drain|ų,#gas| + N reason|,true| + N publications|鿯 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ŀ N attribute|,trueness|α,true|,&thing| +ʵ N attribute|,name|,true|,&human| +Ƥ N part|,%AnimalHuman|,flesh| +ƾʵ N information|Ϣ,*prove|֤ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,opened| + N attribute|,circumstances|,true|,&entity|ʵ + N emotion|,sincere| + N fact|,true| +ʵ N emotion|,true| +ȷ ADJ aValue|ֵ,content|,opened| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,able| + N event|¼,true| + N attribute|,property|,true|,good|,beautiful| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N experience|,true| +ʵ N attribute|,property|,trueness|α + STRU {MaChinese|} +˿ N material|,?clothing| + N part|,heart|,%entity|ʵ +α N attribute|,trueness|α,&entity|ʵ + N attribute|,environment|,true|,&entity|ʵ + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| +֪ N knowledge|֪ʶ,true|,desired| +֪Ƽ N thinking|˼,profound|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N emotion|,sincere| + N material|,?tool|þ,#decorate|װ,precious| + N humanized|,religion|ڽ + N part|,heart|,%entity|ʵ + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V select|ѡ + V distinguish|ֱ +ѡ V select|ѡ + N tool|þ,#beat|,#metal| + N tool|þ,*cook| + N tool|þ,#beat|,#metal| + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N attribute|,physique|,#mating|,&female|Ů + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N fact|,cure|ҽ + N medicine|ҩ,liquid|Һ + N shape|,acute| + N tool|þ,*fasten|˩ +Ƕ N part|,tool|þ + V cure|ҽ + V cure|ҽ + V facing| + PREP {AccordingTo} + V disobey|Υ +빿 N tool|þ,*protect| + N medicine|ҩ,liquid|Һ + V cure|ҽ +ͷ N tool|þ,*cure|ҽ +ͷ N tool|þ,*fasten|˩ + N affairs|,*fasten|˩ + N tool|þ,*fasten|˩ +߻ N affairs|,*fasten|˩ + N tool|þ,cubic|,@put| + N disease| + N part|,tool|þ +Ҷ N tree| +֯ V weave| +֯ N InstitutePlace|,@produce|,#artifact|˹,factory|,industrial| +֯Ʒ N artifact|˹ +״ ADJ aValue|ֵ,form|״,acute| + V amend| + V scout|,military|,police| + V scout|,police| + V scout|,military|,police| + N part|,%army| + N aircraft|,*scout| + N aircraft|,*scout| +Ա N human|,#occupation|ְλ,*scout|,police| +켩 V scout|,military|,police| + V reveal|¶,police| +̽ N human|,#occupation|ְλ,*scout|,police| +̽ V scout|,police| + V CausePartMove| + N tool|þ,*sleep|˯ + N tool|þ,*cover|ڸ +ľ N material|,?route|· + N tool|þ,*cover|ڸ +ͷ N tool|þ,*sleep|˯ +ϯ N furniture|Ҿ,@sleep|˯ +ϯ N tool|þ,*cover|ڸ + N tool|þ,*sleep|˯ + N disease|,#skin|Ƥ + V diagnose|,medical|ҽ + V diagnose|,medical|ҽ + ADJ aValue|ֵ,property|,diagnose| + V diagnose|,medical|ҽ + N document|,#diagnose|,medical|ҽ + N tool|þ,*diagnose|,*cure|ҽ,medical|ҽ + V cure|ҽ + V diagnose|,medical|ҽ + N part|,%InstitutePlace|,+diagnose|,+cure|ҽ,medical|ҽ + V diagnose|,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V cure|ҽ + V fear| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + ADJ aValue|ֵ,SoundVolume|,loud| + V shake|ҡ + V shiver| + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,intensity|ǿ,#(earthquake|) + V fear| + V frighten|Ż +ŭ V angry| + V frighten|Ż +Դ N location|λ,base|,#(earthquake|) + N phenomena|,undesired|ݬ,#unfortunate|,#(earthquake|) + N location|λ,base|,#(earthquake|) + N place|ط,#(earthquake|) + V excited| + V shake|ҡ + V CausePartMove|,PatientPartof=arm| + V shiver| + V shiver|,#electricity| + N part|,%machine|,*shiver|,#electricity| + ADJ aValue|ֵ,property|,shiver| + V shiver|,industrial| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,range|,&shiver|,#electricity| + ADJ aValue|ֵ,ability|,able|,teach| + V MakeBetter|Ż +л V MakeBetter|Ż,patient=(China|й) +д V speak|˵,manner=fluent| + V excited| + V excited| + V cool| + V defend|,military| + N facilities|ʩ,military| + N place|ط,city| + V restrain|ֹ + N human|,#occupation|ְλ,official|,politics| + V calm| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,ability|,able|,soothe|ο + V calm| +򾲼 N medicine|ҩ + N tool|þ,*amend|,#electricity| + V defend|,military| +ʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ѹ V kill|ɱ,police| +ѹ V restrain|ֹ,politics| +ѹ N human|,*kill|ɱ,police| +ֽ N stationery|ľ + N attribute|,form|״,&army|,#fight| + N place|ط,military|,@fight| + N time|ʱ + N place|ط,military|,@fight| +ս N fact|,fight| +󷢼Ъ ADJ aValue|ֵ,frequency|Ƶ,#disease| + ADJ aValue|ֵ,frequency|Ƶ,#disease| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&community|,entertainment|,sport| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| +ʹ V painful|ʹ,#labour|ٲ + V die|,military| + N community| +Ӫ N community|,politics| + N RainSnow|ѩ + N time|ʱ + N time|ʱ + V alter|ı,StateFin=gas| + V cook| + N food|ʳƷ + V alter|ı,StateFin=gas| + N tool|þ,cubic|,*cook| + V refine| +ˮ N water|ˮ,$refine| + N tool|þ,cubic|,*cook| + N gas| + N gas| + N machine| + N LandVehicle| + V rise| + ADJ prosper| + V prosper| + ADJ prosper| + V earn|׬ + V escape| + V endeavour| +Ǯ V earn|׬,possession=wealth|Ǯ + V escape| + V endeavour| + V CausePartMove| +۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +Ϲ N human|,unable|ӹ,undesired|ݬ + V attack|,military| + V beg| + V include|,military| + V leave|뿪 + V levy|,commercial| + V include|,military| + N stone|ʯ,waste| + N fact|,tour| + V undergo|,content=CauseToDo|ʹ + V levy|,possession=land|½ + V include|,military| + V levy|,military| + V request|Ҫ,ResultEvent=buy| + V attack|,military| + V defeat|սʤ,military| + N human|,*defeat|սʤ,military| + V beg|,possession=text| + V levy|,means=buy|,commercial| + V include|,military| + V levy|,commercial| +ļ V include|,military| +Ƹ V request|Ҫ,ResultEvent=undergo|,#employ| + V beg| + V levy|,commercial| +˰ V collect|,possession=expenditure|,commercial| + V attack|,military| +; N fact|,tour| + V beg|,possession=text| + N information|Ϣ +ѯ V ask| + V quote| + V levy| +ս V attack|,military| + N information|Ϣ + V include|,military| + V include|,military| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V HaveContest| + V debate| + V HaveContest|,scope=power|,politics| + V debate| + V quarrel| + N human|,*quarrel| + V debate| + V HaveContest|,scope=$FondOf|ϲ + V VieFor|,purpose=fulfil|ʵ + V obtain|õ + V fight| + N fact|,debate| + V HaveContest|,purpose=obtain|õ +ֶ V VieFor| +Դ V HaveContest|,scope=$FondOf|ϲ + V seek|ıȡ,possession=glorious| + V compete| + ADJ aValue|ֵ,property|,debate| + V debate| + N debate| + V debate| + N debate| +۲ V debate| + N human|,*debate| + V debate| +涷 V HaveContest|,scope=beautiful| + V seek|ıȡ,possession=glorious| +ǿö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| + V HaveContest|,purpose=obtain|õ +ȡ V endeavour| +ȡ V seek|ıȡ +Ȩ V HaveContest|,scope=power|,politics| + V VieFor| +ȿֺ V VieFor| + V HaveContest| + V HaveContest|,scope=power|,politics| + V HaveContest|,scope=beautiful| + N debate| +ִ V debate| + V fear| + V fear| + V CauseToDo|ʹ + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,range|,all|ȫ + V amend| + V damage| + V do| + V punish| + ADV qValue|ֵ,amount|,accurate|׼ + V repair| + N part|,%publications|鿯,news|,complete| + V adjust|,military| + V repair|,agricultural|ũ + V adjust| + V amend| + V improve| + N human|,*improve| + N fact|,amend|,patient=behavior|ֹ + V amend|,patient=behavior|ֹ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,appearance|,neat|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V PutInOrder| + N material|,generic|ͳ + V amend|,#electricity| + N tool|þ,*amend|,#electricity| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| +뻮һ ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V MakeUp|ױ + N symbol|,#quantity| + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + N attribute|,wholeness|ȱ,&entity|ʵ + ADJ aValue|ֵ,duration|,TimeLong| + N fact|,cure|ҽ,#beautify|,medical|ҽ + N fact|,cure|ҽ,#beautify|,medical|ҽ + V repair|,industrial| +ѵ V teach|,military| +ҹ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| + V dredge|ͨ,industrial| + V repair| +װ V PutInOrder| + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + V PutInOrder| + V rescue| + V rescue| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADV aValue|ֵ,correctness|,accurate|׼ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,form|״,upright| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,positive| + V adjust| + V amend| + STRU {Vgoingon|չ} + ADV {emphasis|ǿ} + N direction|,north| + N document|,original|ԭ +Դ V improve| + N quantity|,rate|,&quantity| + N account|,*record|¼ + ADJ aValue|ֵ,kind|,ordinary|,desired| + N human|,ordinary| +ֵ N quantity|,amount|,&entity|ʵ + N text| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,standard|׼,passed|ϸ,desired| + CONJ {time|ʱ} + N fact|,defend|,passed|ϸ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N location|λ,middle| + N method|,correct|ȷ + ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| + N electricity| + N room|,important| + N direction|,east| + N shape|,cubic| + V kill|ɱ,police| + ADJ aValue|ֵ,contrariness|,positive|,negative| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N human|,intimate|,female|Ů + N room|,important| + V persuade|Ȱ˵ + ADJ aValue|ֵ,standard|׼,average| +滯 N attribute|,property|,average|,&event|¼ + N army| + N method|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| + N part|,%electricity| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Σ V sit|,manner=strict| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,standard|׼,average| + ADV {emphasis|ǿ} +˰ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N reason| + N part|,%house|,bone| +· N method|,correct|ȷ + N part|,%building|,mouth| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,form|״ + N location|λ,InFront|ǰ + N part|,%physical|,edge| + N direction|,south| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +Ƭ N part|,%tool|þ,#TakePicture| +Ƭ N shows| +Ʒ N physical|,good| + N attribute|,SocialMode|,fair|,&human|,&organization|֯ + N attribute|,strength|,&AnimalHuman| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ȷ ADJ aValue|ֵ,correctness|,upright|,desired| +ȷ N attribute|,property|,correct|ȷ,&event|¼ +˾ N human|,gracious|,desired| + V BeSimilar| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +ʽ ADJ aValue|ֵ,behavior|ֹ,formal|ʽ + N affairs| + V treat|Դ + N room|,%InstitutePlace|,#perform| + N room|,important| +ͳ ADJ aValue|ֵ,standard|׼,average| + N text| + N time|ʱ,afternoon| + N {correctness|} + N direction|,west| + N symbol|,#quantity| + V BeSimilar| + N human|,undesired|ݬ,*kill|ɱ,crime| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +Ҫ ADV {emphasis|ǿ} + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N reason| + N emotion|,fair| + N sound|,#language| + N time|ʱ,month| + STRU {Vgoingon|չ} +ڽ ADJ aValue|ֵ,property|,undergo|,Vgoingon|չ +ڽ V undergo|,Vgoingon|չ +ְ N attribute|,occupation|ְλ,important|,&human| +ֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ֵ N quantity|,amount|,&entity|ʵ + N location|λ,middle| +» V satisfied| + ADJ aValue|ֵ,trueness|α,true|,desired| + N community|,pure| + N affairs|,#country| + N affairs|,#country|,politics| + N affairs|,#organization|֯ + N fact|,uprise|,undesired|ݬ,politics| + N regulation| + N community|,politics| + N human|,enemy| + N affairs|,#country|,politics|,police| + N institution|,#place|ط,politics| + N army| + N affairs|,politics| + N result|,#succeed|ɹ,politics| + N regulation| + N thought|ͷ,politics| + N affairs|,#country|,politics|,religion|ڽ + N community|,#affairs|,#country|,politics| +Ԫ N human|,politics|,HighRank|ߵ + N attribute|,circumstances|,#politics|,&country| + N human|,politics| + N regulation|,#country|,politics| + N text|,*estimate|,#affairs|,#country|,politics| + N affairs|,#country|,politics|,industrial| +󲻷 N fact|,mix|,politics|,industrial| +ֿ N fact|,separate|,politics|,industrial| + N attribute|,circumstances|,#politics|,&country| +Ȩ N attribute|,power|,politics|,&country| + N fact|,check|,#behavior|ֹ,#politics| + N affairs|,#country|,politics| +̳ N community|,#affairs|,#country|,politics| + N attribute|,kind|,politics|,&organization|֯,#country| +ί N human|,#occupation|ְλ,official|,politics| + N affairs|,#country|,politics| +Э N institution|,#country|,politics|,(China|й) + N affairs|,#country|,politics| +β N institution|,politics| +η N human|,crime|,politics|,undesired|ݬ +μ N human|,politics| +ξ N institution|,#country|,politics|,(China|й) +ξ N attribute|,circumstances|,#politics|,&country| +Э̻ N institution|,#country|,politics|,(China|й) + N attribute|,circumstances|,#politics|,&country| +֡ CLAS NounUnit|,&image|ͼ +֡ CLAS NounUnit|,&image|ͼ,#shows| +֢ N disease| +֢ N phenomena|,#disease|,medical|ҽ +֢ N cause|ԭ,important| +֢ N part|,%entity|ʵ,important| +֢״ N phenomena|,#disease|,medical|ҽ +֣ N character|,surname|,human|,ProperName|ר +֣ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ N place|ط,city|,ProperName|ר,(China|й) +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤ +֤ V prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ V prove|֤ +֤ N document|,*prove|֤ +֤ȯ N coupon|Ʊ֤,commercial| +֤ȯ N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ȯг N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ N human|,*prove|֤,#police| +֤ʵ V prove|֤ +֤ N document|,*prove|֤ +֤ N physical|,*prove|֤,#police| +֤ N information|Ϣ,*prove|֤,#police| +֤ V prove|֤ +֤ N mark|־ +֥ N character|,(China|й) +֥Ӹ N place|ط,city|,ProperName|ר,(US|) +֥ N FlowerGrass| +֥ N crop|ׯ,?material| +֥ N material|,?edible|ʳ,#crop|ׯ +֥ N human|,official| +֥齴 N material|,?food|ʳƷ +̶֥ N human|,official| +֥ N material|,?food|ʳƷ,liquid|Һ +֦ CLAS NounUnit|,&plant|ֲ,&PenInk|ī +֦ N part|,%plant|ֲ,limb|֫ +֦Ҷï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +֦ N part|,%plant|ֲ,limb|֫ +֦ V connect|,agricultural|ũ +֦ N part|,%event|¼,secondary|,aspect| +֦ V separate| +֦ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֦ N part|,%plant|ֲ,limb|֫ +֦ͷ N location|λ,space|ռ,%tree| +֦Ҷ N part|,%event|¼,secondary|,aspect| +֦Ҷ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֧ V CausePartMove| +֧ CLAS NounUnit|,&entity|ʵ +֧ V PropUp|֧ +֧ V SupportWeight|ס +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N character|,surname|,human|,ProperName|ר +֧ V collect|,commercial| +֧ V dispatch|Dz +֧ V endure| +֧ N community|,branch|֧,politics| +֧ N human|,official|,politics| +֧ V PropUp|֧ +֧ V ProvideFor| +֧ V endure| +֧ŵ N part|,%entity|ʵ,important| +֧ V PropUp|֧ +֧ V endorse|ӵ +֧ V endure| +֧ N human|,*endorse|ӵ +֧ V pay|,commercial| +֧ N part|,%space|ռ,dot| +֧ N part|,%army|,military| +֧ӳ N human|,official| +֧ V pay|,commercial| +֧ N tool|þ,*PropUp|֧ +֧ V separate| +֧ N InstitutePlace|,branch|֧,@post|ʼ +֧ V dispatch|Dz +֧ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֧ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +֧ N part|,%event|¼,secondary|,aspect| +֧ N waters|ˮ,linear|,secondary| +֧ V control| +֧ V issue|ַ +֧λ N attribute|,power|,strong|ǿ,&entity|ʵ +֧Ʊ N bill|Ʊ,#wealth|Ǯ +֧ N part|,%AnimalHuman|,viscera| +֧ N disease| +֧ N disease| +֧ǰ V help|,patient=army|,military| +֧ N facilities|ʩ,linear|,#liquid|Һ,#crop|ׯ,secondary| +֧ȡ V collect|,commercial| +֧ʹ V dispatch|Dz +֧ N human|,official|,politics| +֧ V HideTruth| +֧ N facilities|ʩ,linear| +֧ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֧Ӧ V TakeCare| +֧Ӧ V handle| +֧Ԯ V help| +֧Ԯ N part|,%army| +֧Ԯ˾ N part|,%army| +֧Ԯϵͳ N software| +֧ N human|,desired|,important|,able| +֧ N part|,%building|,bone| +֧ N tool|þ +֧ N tool|þ,*cook| +֧ V dispatch|Dz +֨ V MakeSound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ V MakeSound| +֨ V speak|˵ +֩ N InsectWorm| +֩ N tool|þ,#InsectWorm| +֪ N knowledge|֪ʶ +֪ V know|֪ +֪ V manage| +֪ V tell| +֪ V know|֪ +֪ V understand| +֪ V know|֪ +֪ V disobey|Υ,content=law|ɷ,time=know|֪,#law|ɷ +֪ N human|,#occupation|ְλ,official|,past| +֪ V tell| +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪֪ V know|֪ +֪ N human|,friend|,intimate| +֪ N mental| +֪֪ V like|ϧ,manner=gentle| +֪ V like|ϧ,manner=gentle| +֪ N InsectWorm| +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ N attribute|,reputation|,&human|,&organization|֯ +֪ʿ N human|,glorious| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoBackward|,time=know|֪,#hardship| +֪ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ V know|֪ +֪ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +֪ N human|,*know|֪,#event|¼ +֪ N human|,*know|֪ +֪Ȥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +֪ʶ N knowledge|֪ʶ +֪ʶȨ N rights|Ȩ,#knowledge|֪ʶ +֪ʶ N human|,#knowledge|֪ʶ +֪ʶ ADJ aValue|ֵ,property|,undergo|,#teach| +֪ʶ N community|,#knowledge|֪ʶ +֪ʶ N affairs| +֪ʶ N software|,#knowledge|֪ʶ +֪ʶ N human|,able| +֪ʶܼ ADJ aValue|ֵ,property|,BaseOn|,#knowledge|֪ʶ +֪ʶ N attribute|,range|,#knowledge|֪ʶ,&human| +֪ʶ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ʶˮ׼ N attribute|,wisdom|ǻ,&human| +֪ʶ N knowledge|֪ʶ +֪ N human|,official|,past| +֪ N software|,#knowledge|֪ʶ +֪Ϥ V know|֪ +֪ N human|,#occupation|ְλ,official|,past| +֪ V know|֪ +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪ V tell| +֪ V satisfied| +֫ N part|,%AnimalHuman|,limb|֫ +֫ V separate| +֫ N part|,%AnimalHuman|,body| +֫ N part|,%AnimalHuman|,limb|֫ +֬ N part|,%AnimalHuman|,flesh| +֬ N tool|þ,*MakeUp|ױ +֬ N part|,%AnimalHuman|,flesh| +֬ N chemical|ѧ +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,fatness|,fat| +֬ N part|,%AnimalHuman|,flesh| +֬ N wealth|Ǯ +֬ N crop|ׯ,?material| +֬ N material|,?edible|ʳ,#crop|ׯ +֬ N material|,?food|ʳƷ +֭ N liquid|Һ +֭ˮ N liquid|Һ +֭Һ N liquid|Һ +֮ STRU {DeChinese|} +֮ PRON {ThirdPerson|,mass|} +֮ PRON {it|,mass|} +֮ PRON {it|} +֮ N aValue|ֵ,time|ʱ,future| +֮ N location|λ,hind| +֮ ADV {supplement|ݽ} +֮ STRU {range} +֮ǰ N location|λ,InFront|ǰ +֮ǰ N time|ʱ,past| +֮ N location|λ,hind| +֮ PREP {besides} +֮ PREP {except} +֮ ADV aValue|ֵ,attachment| +֮ ADV aValue|ֵ,location|λ,beneath| +֮ N attribute|,rank|ȼ,&human| +֮ N location|λ,beneath| +֮ N {condition|} +֮· N facilities|ʩ,route|· +֯ V weave| +֯ V repair| +֯ V weave| +֯ N machine|,*weave|,industrial| +֯ N machine|,*weave|,industrial| +֯ N material|,?clothing| +֯Ů N celestial| +֯Ů N humanized|,female|Ů +֯Ů N human|,*weave|,industrial|,female|Ů +֯Ʒ N material|,$weave| +֯ N material|,$weave| +֯ V weave|,industrial| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N attribute|,rank|ȼ,#occupation|ְλ,&human| +ְ N attribute|,occupation|ְλ,&human| +ְ N human|,#occupation|ְλ,employee|Ա +ְ N attribute|,performance|,&organization|֯,&human| +ְȨ N attribute|,power|,#occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְλ N attribute|,occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +ְҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ N disease| +ְҵȭ N human|,sport| +ְҵȭ N fact|,sport| +ְҵ⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ְԱ N human|,#occupation|ְλ,employee|Ա +ְ N duty|,#occupation|ְλ +ְ V manage| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADV aValue|ֵ,direction|,straight|ֱ +ֱ ADJ aValue|ֵ,form|״,straight|ֱ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ N part|,%character| +ֱ V straighten|ֱ +ֱ V LeaveFor|ǰ +ֱ V disseminate| +ֱ V associate|,means=turn|Ťת,#tool|þ +ֱ N place|ط,ProperName|ר,(Europe|ŷ) +ֱ N part|,%AnimalHuman|,viscera| +ֱ N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ N tool|þ,*measure| +ֱ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֱ ADV aValue|ֵ,duration|,TimeLong| +ֱ V arrive| +ֱ N part|,%plant|ֲ,base| +ֱ N material|,?clothing| +ֱ ADJ aValue|ֵ,property|,sense|о +ֱ V fly| +ֱ N shape|,angular| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ֱ˵ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ֱ N experience|,perception|֪ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ V stand|վ +ֱ N part|,%plant|ֲ,body| +ֱ ADJ aValue|ֵ,behavior|ֹ,#electricity| +ֱ N electricity| +ֱ N electricity| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V win|ʤ,sport| +ֱü V ExpressAnger|ʾŭ +ֱü V stupefied|ľȻ +ֱɻ N aircraft| +ֱ N aircraft| +ֱ V BeMember| +ֱˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱͦͦ ADJ aValue|ֵ,posture|,upright| +ֱͨ ADJ aValue|ֵ,behavior|ֹ,continuous| +ֱͨ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱϵ N human|,family|,intimate| +ֱϽ ADJ aValue|ֵ,attachment| +ֱϽ N place|ط,city| +ֱ N shape|,linear| +ֱ۶ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V speak|˵,manner=forthright|ˬ +ֱԲ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱԲ V speak|˵,manner=forthright|ˬ +ֱ V translate| +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֲ V establish| +ֲ V planting|ֲ,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ V put| +ֲƤ V cure|ҽ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N time|ʱ,festival|,@congratulate|ף +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ걾 ADJ InstitutePlace|,@display|չʾ,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֲ N human| +ֲ N part|,%AnimalHuman|,nerve| +ֲ ADJ aValue|ֵ,property|,#plant|ֲ +ֲѧ N knowledge|֪ʶ,#plant|ֲ +ֲ N material|,liquid|Һ +ֲ԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֳ V GiveBirth| +ֳ V establish|,patient=place|ط,purpose=reside|ס +ֳ N place|ط,$establish|,#reside|ס +ֳع ADJ place|ط,country|,$establish|,#reside|ס +ֳ ADJ human|,#reside|ס +ֳ ADJ place|ط,country|,*establish|,#reside|ס +ֳ N human|,*establish|,#place|ط,#reside|ס +ֳ N system|ƶ,#establish|,#place|ط,politics| +ֳ N human|,*establish|,#place|ط,#reside|ס +ִ V catch|׽ס +ִ V conduct|ʵʩ +ִ V hold| +ִ V keep| +ִ V manage| +ִ V write|д +ִ N human|,*write|д +ִ V engage|,content=teach|,guide|,ResultEvent=perform|,entertainment| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V disobey|Υ,content=law|ɷ,crime| +ִɽ V conduct|ʵʩ,content=law|ɷ,police| +ִ V engage|,content=teach|,education| +ִҵ֤ N human| +ִԲ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V engage|,content=bear|е +ִ N human|,religion|ڽ +ִί N human|,official| +ִί N institution| +ִ V conduct|ʵʩ +ִй N human|,official|,*conduct|ʵʩ +ִ N human|,*conduct|ʵʩ +ִϯ N human|,official| +ִҵ V engage|,content=commercial| +ִ V willing|Ը +ִ N human|,friend|,intimate|,desired| +ִ V manage| +ִ N document|,*ExpressAgreement|ʾͬ +ִ V obtain|õ,possession=power|,politics| +ִ N community|,*obtain|õ,#power| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V condole|° +ֵ N attribute|,value|ֵ,&entity|ʵ +ֵ V bear|е +ֵ N quantity|,amount|,&entity|ʵ +ֵ V undergo| +ֵ V worth|ֵ +ֵ V engage|,content=bear|е +ֵ N room|,@engage|,#bear|е +ֵԱ N human|,*engage|,#bear|е +ֵ V worth|ֵ +ֵó ADJ aValue|ֵ,ability|,able|,$praise|佱 +ֵó ADJ aValue|ֵ,ability|,able|,$respect| +ֵü ADJ aValue|ֵ,ability|,able|,$ThinkOf|˼ +ֵĽ ADJ aValue|ֵ,ability|,able|,$admire|Ľ +ֵע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע +ֵǮ ADJ aValue|ֵ,value|ֵ,precious| +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е,military| +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ֶŮ N human|,family|,female|Ů +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ַ N location|λ +ָ V AimAt| +ָ V depend| +ָ V mean|ָ +ָ N part|,%AnimalHuman|,hand| +ָ N quantity|,amount|,&result|,$expect| +ָ ADV {comment|} +ָ V ExpressAgainst|Ǵ +ָ V express|ʾ +ָ V mean|ָ +ָ V order| +ָԱ N human|,#occupation|ְλ,official|,military| +ָ V teach| +ָԽ V tell|,content=direction| +ָ V CauseToBe|ʹ֮ +ָ ADJ aValue|ֵ,property|,$CauseToBe|ʹ֮ +ָ N human|,*CauseToBe|ʹ֮ +ָ V AimAt| +ָ N tool|þ,*decorate|װ,$PutOn| +ָ N human|,*perform|,entertainment| +ָ N human|,official| +ָ V order| +ָӰ N tool|þ,*order| +ָӲ N part|,%army|,*order| +ָӹ N human|,*order|,military| +ָӽṹ N part|,%army| +ָ N part|,%army| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָԱ N human|,*order|,military| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָ V ExpressAgainst|Ǵ,manner=tactful| +ָ N part|,%AnimalHuman|,hand| +ָ׵ N tool|þ,*MakeUp|ױ +ָ׻ N FlowerGrass| +ָ޼ʦ N human|,#occupation|ְλ,*MakeUp|ױ +ָ N tool|þ,*MakeUp|ױ +ָ N part|,%human|,#hand| +ָ V teach| +ָ V accuse|ظ,police| +ָ V order| +ָ N text|,*order| +ָ N attribute|,property|,order| +ָ· V guide|,ResultEvent=SelfMove| +ָ· N mark|־,#route|· +ָ V teach| +ָ V mention|ἰ +ָ V mention|ἰ +ָ N readings|,*teach| +ָ N tool|þ,*measure|,#direction| +ָ V CauseToBe|ʹ֮ +ָԽ V tell|,content=direction| +ָտɴ ADJ aValue|ֵ,duration|,TimeShort| +ָɣ V ExpressAgainst|Ǵ,manner=tactful| +ָʹ V incite|ָʹ +ָʾ V mean|ָ +ָʾ V order| +ָʾ V teach| +ָʾ N tool|þ,*mean|ָ +ָʾ N tool|þ,*mean|ָ +ָֻ V CausePartMove| +ָֻ V teach| +ָֻ V CausePartMove| +ָֻ V teach| +ָ N symbol|,#quantity| +ָͷ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,hand| +ָ V expect| +ָ N trace| +ָ ADJ aValue|ֵ,property|,facing| +ָҪ N part|,%entity|ʵ,heart| +ָ V guide| +ָӡ N trace| +ָ V ExpressAgainst|Ǵ +ָ N human|,ExpressAgainst|Ǵ +ָժ V ExpressAgainst|Ǵ +ָսԱ N human|,military|,mass| +ָ N part|,%implement| +ָ N regulation| +ָ V estimate| +ֹ V CeaseSelfMove|ֹ +ֹ PREP {TimeFin} +ֹס ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +ֹ V CeaseSelfMove|ֹ +ֹ V TurnOff|ֹ +ֹ N attribute|,boundary|,&entity|ʵ +ֹ V restrain|ֹ,ResultEvent=pant|,medical|ҽ +ֹ V restrain|ֹ,ResultEvent=HungryThirsty| +ֹˮ N water|ˮ +ֹʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ֹϢ V end|ս +ֹѪ V restrain|ֹ,ResultEvent=bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪҩ N medicine|ҩ,*restrain|ֹ,#bleed|Ѫ +ֺ N part|,%AnimalHuman|,foot| +ֺ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ֺ N part|,%AnimalHuman|,foot| +ֻ CLAS NounUnit|,&entity|ʵ +ֻ CLAS NounUnit|,&physical| +ֻ ADV {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻ ADV {modality|} +ֻ AUX {modality|} +ֻ ADV {modality|} +ֻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֻ V manage|,manner=only| +ֻ ADV {modality|} +ֻ ADV {modality|} +ֻ ADV aValue|ֵ,behavior|ֹ,single| +ֻ COOR {but|} +ֻ ADV {emphasis|ǿ} +ֻ COOR {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻҪ CONJ {condition|} +ֻ CONJ {condition|} +ֻϦ V VieFor| +ּ N document|,royal| +ּ N purpose|Ŀ +ּȤ N purpose|Ŀ +ּҪ N part|,%entity|ʵ,heart| +ּ N text|,*order| +ּ ADV {topic} +ֽ CLAS NounUnit|,&document| +ֽ N paper|ֽ,@write|д +ֽ N tool|þ,*print|ӡˢ +ֽס V exposure|¶ +ֽ N money|,material=paper|ֽ +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N tool|þ,@record|¼ +ֽ N tool|þ,cubic|,@put| +ֽ N material|,?paper|ֽ +ֽ N tool|þ,*wipe| +ֽϻ N human|,undesired|ݬ +ֽ N tool|þ,*gamble|IJ,*recreation| +ֽƬ N paper|ֽ,small|С +ֽǮ N tool|þ,#die| +̸ֽ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֽ N paper|ֽ,small|С +ֽ N tool|þ,cubic|,@put| +ֽм N paper|ֽ,small|С +ֽ N tool|þ,*print|ӡˢ +ֽ N addictive|Ⱥ +ֽ N InsectWorm| +ֽ N paper|ֽ,@write|д +ֽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ֽ N tool|þ,*WhileAway| +־ N account| +־ N aspiration|Ը,expect| +־ N mark|־ +־ V condole|° +־ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +־ N aspiration|Ը,expect|,desired| +־Ȥ N emotion|,FondOf|ϲ +־ʿ N human|,desired| +־ʿ N human|,desired|,faithful| +־ͬ V fit|ʺ +־ N aspiration|Ը,expect| +־Ը N aspiration|Ը,expect| +־Ը V willing|Ը +־Ը N human|,*fight|,military| +־Ը N army| +־Ը N human|,willing|Ը +־ڱص V willing|Ը,content=defeat|սʤ +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ V love| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N human|,friend|,intimate|,desired| + V throw| +ǹ N fact|,sport| +Ͳ N weapon| + N fact|,sport| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + N treasure|䱦 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + CONJ {supplement|ݽ} + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ ADJ aValue|ֵ,importance|,important| + N human|,friend|,intimate|,desired| + ADV aValue|ֵ,duration|,TimeLong| + N expression| + N human|,family| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADV aValue|ֵ,range|,nonextensive| + N human|,friend|,intimate|,desired| + PREP {concerning} + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + V CauseAffect|Ⱦ + V ResultIn| + V express|ʾ + V send| + V spend| +° V express|ʾ,content=sorrowful| +° ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ,#disease| +² V ResultIn|,result=ill|̬ +² N bacteria|΢ +² V ResultIn|,result=disable|м +´ V speak|˵ +´ V speak|˵ +µ V send|,patient=information|Ϣ +¸ V become|Ϊ,isa=rich| +¹ N community|,politics|,ProperName|ר,(China|й) +º V write|д +º V congratulate|ף +¾ V salute|¾ + V engage| + V engage| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +Ǹ V apologize|Ǹ +ʹ V ResultIn| + V ResultIn|,result=die| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +л V thank|л + V write|д + V SayHello|ʺ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + V buy|,commercial| + V establish| + V put| +ð V buy|,commercial| +ñ V buy|,commercial| +ñ V debate| +÷ V put| +û V replace| + V IllTreat| + V stay|ͣ + V put| +֮ V IllTreat| +֮ V IllTreat| +֮ V IllTreat| +֮Ժ V IllTreat| + N tool|þ,mark|־ + V stand|վ + V forming|γ + V produce| + V restrain|ֹ + N system|ƶ +ư V print|ӡˢ +Ʊ V produce| +Ʊ V forming|γ,PatientProduct=document| +Ʋ V punish| +Ƴ V produce|,Vachieve| +ƳƷ N artifact|˹ +Ƶ V control| +ƶ V forming|γ +ƶ V forming|γ +ƶ V TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N law|ɷ +ƶ N system|ƶ +ƶȻ N attribute|,property|,system|ƶ +ƶ ADJ aValue|ֵ,attachment| +Ʒ V control| +Ʒ N clothing| +Ʒ V control| +Ƹߵ N location|λ,military| +Ƹ V produce|,PatientProduct=material| +Ƹﳧ V InstitutePlace|,@produce|,#material| +ƺȨ N attribute|,power|,control|,#waters|ˮ,&country|,&army| +ƺ V restrain|ֹ +ƺ N attribute|,strength|,&human|,&organization|֯ +Ƽ N medicine|ҩ +Ƽ N part|,%artifact|˹,#produce|,industrial| +ƿȨ N attribute|,power|,control|,#sky|,&country|,&army| + ADJ aValue|ֵ,property|,cool| + V cool| + N tool|þ,*cool| +Ƭ N human|,produce|,#shows| +Ƭ V produce|,PatientProduct=shows| +Ƭ N InstitutePlace|,@produce|,#shows| +Ʒ N artifact|˹,generic|ͳ +ʤ V defeat|սʤ +ʽ N attribute|,kind|,tool|þ + V produce|,sell| + V refine|,patient=material|,industrial| +ͼ V draw|,industrial| + V MakeAppointment|Լ,content=law|ɷ +ҩ V produce|,PatientProduct=medicine|ҩ +ҩ N InstitutePlace|,@produce|,#medicine|ҩ,factory|,industrial| +Լ V restrain|ֹ + V create| + V produce| +쳧 N InstitutePlace|,@produce|,factory|,industrial| +ҵ N affairs|,*produce|,industrial| + N human|,*produce| +ֹ V obstruct|ֹ +ֹ V restrain|ֹ +ֹΣ N attribute|,ability|,#restrain|ֹ,dangerous|Σ + V produce| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +dz N part|,%AnimalHuman|,*bite|ҧ +Ƕ N human|,wise|,desired| +ǻ N attribute|,wisdom|ǻ,&AnimalHuman| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chile|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Chile|) + N attribute|,wisdom|ǻ,&AnimalHuman| + N human|,able|,wise|,desired| + N human|,able|,wise|,desired| + N community|,able|,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +ܻ V ize|̬,PatientAttribute=wise| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ž ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȡ V seek|ıȡ,manner=dexterous| + N attribute|,rank|ȼ,wisdom|ǻ,&human| +˫ȫ ADJ aValue|ֵ,courage|,brave|,desired| + N affairs|,education|,#wise| + N human|,wise|,desired| + N attribute|,sequence|,&entity|ʵ + N time|ʱ,year| + N attribute|,sequence|,&entity|ʵ +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| + N attribute|,property|,&entity|ʵ + N attribute|,quality|,&entity|ʵ + N entity|ʵ,generic|ͳ + V interrogate| + V pawn|Ѻ +ʱ N fact|,change|,#quality| +ʴμ۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ʵ N attribute|,property|,&physical| +ʵ N attribute|,quality|,&physical| +ʵ N part|,%physical| +ʼ V check|,content=quality| + N attribute|,quality|,&entity|ʵ + N attribute|,standard|׼,&quality| + N material|,?clothing| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| + V interrogate| +ѯ V ask| + V ask| + V ask| +ż ADJ aValue|ֵ,price|۸,cheap|,desired| + N part|,%physical| + V cook| +ֿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N disease| +̴ N disease| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ͺ V detain|ס,patient=water|ˮ +ͺ V inferior| + V suffer|,content=detain|ס +ɽ N expenditure|,$punish|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V control| + V cure|ҽ + V manage| + V punish| + V research|о +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +α V cure|ҽ +α V handle| +α V cure|ҽ +α V handle| +β V cure|ҽ,content=disease|,medical|ҽ +β V cure|ҽ +γ V manage|,patient=factory|,industrial| +ι V manage|,patient=country|,politics| +λ V control|,patient=waters|ˮ +λ V control|,patient=waters|ˮ +ξ V manage|,patient=army| + V control| + V manage|,politics| + ADJ aValue|ֵ,property|,cure|ҽ + V cure|ҽ +ɥ V arrange| +ɳ V control|,patient=stone|ʯ +ɽ V improve|,patient=land|½ + N time|ʱ,flourishing|,desired| +ˮ V control|,patient=waters|ˮ +ѧ V research|о,content=knowledge|֪ʶ + V resume|ָ,medical|ҽ + N quantity|,rate|,#BeRecovered|ԭ,&cure|ҽ +װ V prepare|׼ + V punish|,police| +ϰ V suffer|,content=obstruct|ֹ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ +Ϣ V obstruct|ֹ +Ϣ V pant| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,rank|ȼ,average| + V fulfil|ʵ + N location|λ,middle| + N place|ط,country|,ProperName|ר,(China|й) + V suffer| + N time|ʱ,now| +а N affairs|,#duty|,#sequence| +а N part|,%InstitutePlace|,education| +б V cheat|ƭ +б˽ V cheat|ƭ +б V win|ʤ,commercial| +в N electricity| +в ADJ aValue|ֵ,rank|ȼ,average| +в N part|,%entity|ʵ,middle| +в N edible|ʳ,(China|й) +вҩ N medicine|ҩ +в N plans|滮,ordinary| +в N aValue|ֵ,rank|ȼ,average| +в׼ N community| +г N part|,%facilities|ʩ,space|ռ,@compete|,sport| +г ADJ aValue|ֵ,rank|ȼ,average| +г N fact|,exercise|,sport| +г ADJ aValue|ֵ,duration|,TimeLong| +гҩ N medicine|ҩ,(China|й) +г ADJ aValue|ֵ,distance|,medium| +е V suffer|,content=shoot| +е ADJ aValue|ֵ,rank|ȼ,average| +е N crop|ׯ +е ADJ aValue|ֵ,rank|ȼ,average| +е ADJ aValue|ֵ,size|ߴ,medium| +е N attribute|,height|߶,medium|,&human| +е͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +е N location|λ,dot|,middle| +ж ADJ place|ط,ProperName|ר +ж N disease|,#poison| +ж V ill|̬,#poison| +ж ADJ aValue|ֵ,rank|ȼ,average| +ж N part|,%entity|ʵ,middle| +ж V cease|ͣ +ж N part|,%army| +ж N part|,%institution| +жӳ N human|,official|,military| +ж N part|,%AnimalHuman|,*listen| +ж N disease| +з N institution|,police|,@judge|ö,(China|й) +з N fact|,eat|,afternoon| +з N part|,%entity|ʵ,(China|й) +з N place|ط,country|,ProperName|ר,(Africa|) +зǹ͹ N place|ط,country|,ProperName|ר,(Africa|) +зǽڹͬ巨 N money|,(Togo|) +зǽں N money|,(Cameroon|¡) +зǽں N money|,(Central Africa|з) +зǽں N money|,(Chad|է) +зǽں N money|,(Congo|չ) +зǽں N money|,(Equatorial Guinea|) +зǽں N money|,(Gabon|) +з N attribute|,style|,hair|ë +з V separate| +з N human|,*exercise|,(football|) +з N disease| +з V paralyse|̱ +з N time|ʱ,season|,hot| +и߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +й N community|,politics|,ProperName|ר,(China|й) +й N institution|,politics|,ProperName|ר,(China|й) +йɼίԱ N institution|,ProperName|ר,*check|,#regulation| +й N time|ʱ,past| +й ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +й N place|ط,country|,ProperName|ר,(Asia|) +йƷ׻ N InstitutePlace|,@display|չʾ,commercial| +йũ N army|,ProperName|ר,past|,(China|й) +йѧЭ N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йٽ N community|,politics|,ProperName|ר,(China|й) +йũ N community|,politics|,ProperName|ר,(China|й) +йž N army|,ProperName|ר,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йͬ˻ N community|,politics|,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(China|й) +й¹ N community|,politics|,ProperName|ר,(China|й) +й ADJ aValue|ֵ,property|,$produce|,#(China|й) +йƤ N part|,%plant|ֲ,embryo| +к V damage|,industrial| +кͼ N chemical|ѧ +л N community|,ProperName|ר,(China|й) +л N place|ط,country|,ProperName|ר,(China|й) +л N time|ʱ,ProperName|ר,past| +л N community|,ProperName|ר,(China|й) +лȫܹ N community|,#employee|Ա,main|,(China|й) +л񹲺͹ N place|ط,country|,ProperName|ר,(China|й) +л N InstitutePlace|,publish|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,rank|ȼ,average| +мԺ N institution|,police|,@judge|ö +м V disseminate| +м N tool|þ,linear|,@transmit| +мί N institution|,*check|,#regulation|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,importance|,important| +м N human|,desired|,important|,able| +м N part|,%entity|ʵ,heart| +м N part|,%thing|,heart| +м N part|,%thing|,heart| +м ADJ aValue|ֵ,rank|ȼ,average| +м N location|λ,middle| +м N human|,commercial| +м N human|,commercial| +мϢ N time|ʱ,@rest|Ϣ,#discuss| +м N language| +н N human|,#occupation|ְλ,official|,military| +н V win|ʤ +н N physical|,*connect| +н N human|,commercial| +п ADJ aValue|ֵ,prettiness|,beautiful|,desired| +пԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +п ADJ aValue|ֵ,correctness|,accurate|׼,desired| + ADJ aValue|ֵ,relatedness| +Ȩ N rights|Ȩ,#BeIndependent| + N institution|,*associate|,ProperName|ר,(China|й) + N part|,%waters|ˮ + N human|,desired|,important|,able| +· ADV aValue|ֵ,location|λ,middle| +· ADJ aValue|ֵ,rank|ȼ,average| + V decline|˥ + N place|ط,ProperName|ר +Ϻ N house|,institution|,#politics|,(China|й) + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,age|,#adult| + N time|ʱ,#adult| + N human|,adult| +ũ N human|,#occupation|ְλ,agricultural|ũ +ŷ N place|ط,ProperName|ר,middle|,(Europe|ŷ) +ƪС˵ N readings| +Ƶ N attribute|,frequency|Ƶ + N part|,process|,middle| + N human|,adult| + N institution|,#police|,ProperName|ר,politics|,(US|) + N time|ʱ,autumn| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף + N human|,commercial| +ɽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ɽ N human|,undesired|ݬ,treacherous| +ɽװ N clothing| + V slander|̰ + N time|ʱ,past| +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʽ N attribute|,style|,&entity|ʵ,(China|й) +ʿ N human|,#occupation|ְλ,military| + N time|ʱ,past| + N part|,%thing|,heart| + N part|,%AnimalHuman|,nerve| + N disease| + V fever| + N human|,official|,past| + N MusicTool| + N human|,*perform|,entertainment| + N location|λ,%sky| + N place|ط + ADJ aValue|ֵ,SoundQuality|,good|,desired| +; N location|λ,middle| +;ͣ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ + N place|ط,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,source|Դ + ADJ aValue|ֵ,source|Դ +΢ N part|,%physical| +ξ N human|,#occupation|ְλ,official|,military| + N human|,*exercise|,(football|) + N language|,ProperName|ר,(China|й) + N time|ʱ,afternoon| + ADJ aValue|ֵ,source|Դ + N image|ͼ,linear| + N location|λ,%facilities|ʩ,middle|,linear|,sport| + N time|ʱ,night| +С ADJ aValue|ֵ,size|ߴ,small|С +Сҵ N InstitutePlace|,small|С,commercial| +С ADJ aValue|ֵ,range|,small|С +Сѧ N InstitutePlace|,@teach|,@study|ѧ,education| +У N human|,#occupation|ְλ,official|,military| +У N human|,official|,military| + ADJ aValue|ֵ,importance|,important| + N location|λ,middle| + N part|,%entity|ʵ,heart| +ĵ N location|λ,middle|,dot| +˼ N part|,%information|Ϣ,heart| + N location|λ,middle|,linear| + N InstitutePlace|,ProperName|ר,commercial|,(China|й) + N institution|,commercial|,ProperName|ר,(China|й) + V BeRecovered|ԭ + ADJ aValue|ֵ,size|ߴ,medium| +ҵ N InstitutePlace|,medium|,commercial| + ADJ aValue|ֵ,property|,#chemical|ѧ + ADJ aValue|ֵ,property|,#language| + N institution|,*disseminate|,politics|,ProperName|ר,(China|й) +ѡ V win|ʤ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + N place|ط,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment| + N location|λ,middle| + N part|,%institution|,important| +봦 N part|,%computer|,heart| +뼯Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ί N institution|,military|,ProperName|ר,(China|й) +鱨 N institution|,#police|,ProperName|ר,politics|,(US|) +ίԱ N human|,official|,politics| +о N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| +ҩ N medicine|ҩ,(China|й) +ҩ N material|,?medicine|ҩ,(China|й) +Ҷ N time|ʱ,middle| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽ N knowledge|֪ʶ,medical|ҽ,(China|й) +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V satisfied| +ӹ ADJ aValue|ֵ,rank|ȼ,average| +ӹ N knowledge|֪ʶ +ӹ N readings|,(China|й) + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N part|,%waters|ˮ + N RainSnow|ѩ +Ԫ N time|ʱ,festival|,@congratulate|ף +ԭ N place|ط,(China|й) + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ָ N part|,%AnimalHuman|,hand| +ֹ V cease|ͣ + N place|ط,(China|й) +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ת V alter|ı,patient=vehicle|ͨ +ת N InstitutePlace|,space|ռ,commercial| +װ N clothing|,(China|й) + N part|,%physical| +ӵ N weapon| + V cease|ͣ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ҳ N human|,official|,faithful| +ҳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Ҹ V persuade|Ȱ˵ +Һ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +һ N human|,*die|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N human|,faithful|,desired| + N human|,*die|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,loyal|Т,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N attribute|,behavior|ֹ,loyal|Т,&human| + N attribute|,behavior|ֹ,loyal|Т,&human| +Ĺ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V loyal|Т +ְ V loyal|Т + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,#sound| + N tool|þ,*tell|,#time|ʱ + N tool|þ,cubic|,@put| +Ӱ V like|ϧ +ӱ N tool|þ,*tell|,#time|ʱ +ӱ N InstitutePlace|,@buy|,*sell|,*repair|,tool|þ,#time|ʱ +ӱ N human|,#occupation|ְλ,*repair|,tool|þ,#time|ʱ +ӵ N time|ʱ,hour|ʱ +ӵ㹤 N human|,#occupation|ְλ,employee|Ա + N character|,surname|,human|,ProperName|ר +¥ N facilities|ʩ,space|ռ + V love| +ʯ N stone|ʯ,?material| + N sound| +ͷ N time|ʱ,hour|ʱ + N emotion| +Գ N text|,#emotion| + N emotion| + N emotion| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + V die| + V finish| + N time|ʱ,ending|ĩ + ADV {comment|} +ճ V finish|,entertainment|,sport| +յ N location|λ,ending|ĩ +յ N location|λ,ending|ĩ,sport| +յ N location|λ,ending|ĩ,sport| +յվ N facilities|ʩ,space|ռ,#LandVehicle|,ending|ĩ +ն N part|,computer| +ն˻ N part|,computer| +նû N human|,*use| +չ ADJ aValue|ֵ,duration|,TimeLong| +չ ADV {comment|} +ռ N process|,ending|ĩ +ս AUX {comment|} +ս V finish| +ս N process|,ending|ĩ +վ ADV {comment|} +վ ADV {comment|} +վ N process|,ending|ĩ + V finish| + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + N human|,family| + N fact|,important| + N regulation| + N fact|,judge|ö,police| +Ȩ N rights|Ȩ,*judge|ö,police| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#alive| + ADV aValue|ֵ,time|ʱ,ending|ĩ +ֹ V cease|ͣ +ֹ V finish| +ֹ V CeaseSelfMove|ֹ + N attribute|,kind|,&animate| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,kind|,&human| + V cultivate|,agricultural|ũ + N part|,%plant|ֲ,embryo| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=FlowerGrass| +ֵ V engage|,content=planting|ֲ,agricultural|ũ +ֶ V cure|ҽ +ֻ V cure|ҽ +ֻ V planting|ֲ,patient=FlowerGrass| +ֻ N human|,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N plant|ֲ,young| + V engage|,content=planting|ֲ,agricultural|ũ + N livestock| +ֲ V planting|ֲ,agricultural|ũ +ֲ N human|,*planting|ֲ,agricultural|ũ + ADJ aValue|ֵ,kind|,many| + ADV aValue|ֵ,kind|,many|,desired| + N part|,%plant|ֲ,embryo| + N human|,$choose|ѡ,*compete|,sport| + N part|,%plant|ֲ,embryo| +Ӷ N community|,$choose|ѡ,*compete|,sport| +ѡ N human|,$choose|ѡ,*compete|,sport| + N community| + V separate|,politics|,undesired|ݬ + V destroy|,politics|,undesired|ݬ + V despise|,politics|,undesired|ݬ + N system|ƶ,#despise|,undesired|ݬ + N human|,*despise|,undesired|ݬ + N human|,undesired|ݬ + V swollen| +׿ N disease| + N disease| + ADJ aValue|ֵ,property|,swollen| + V swollen| + V PayAttention|ע + ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,weight|,heavy| + ADJ attribute|,weight|,&physical| + N part|,%entity|ʵ + ADJ qValue|ֵ,amount|,many| + V repeat|ظ +ذ V publish|,manner=again| +ذ V punish|,police| +ر N army|,many| +ز N disease|,strong|ǿ +ز V disseminate|,manner=again| +ز V planting|ֲ,manner=again| +زپҵ V engage|,manner=again| +س V sing|,#perform|,entertainment| +س V sing|,manner=again| +ش V damage|,manner=strong|ǿ +ش V AmountTo|ܼ,scope=weight| +ش ADJ aValue|ֵ,importance|,important| +ص N affairs|,difficult| +ص V repeat|ظ,content=unfortunate| +ص N place|ط,important| +ص ADJ aValue|ֵ,importance|,important| +ص N part|,%entity|ʵ,important| +ص V BeAcross|ཻ +ص ADJ aValue|ֵ,circumstances|,BeAcross|ཻ +ض V MakeSound| +ض N sound|,#language| +ط V punish| +ط V GoBack| +ط N human|,crime|,undesired|ݬ +ط V display|չʾ,manner=again| +ط V meet| +ظ ADJ aValue|ֵ,property|,repeat|ظ +ظ V repeat|ظ +ظ N attribute|,property|,repeat|ظ,&event|¼ +ظ N affairs|,difficult| +عҵ N affairs|,industrial| +ع V estimate| +غ V BeAcross|ཻ +غը N weapon|,aircraft|,military| +ػ V GetMarried|,crime| +ػ N human|,crime|,#GetMarried| +ػ N fact|,crime|,#GetMarried| +ػ N affairs| +ػǹ N weapon|,*firing| +ؽ N fact|,sport| +ؽ V build|,industrial| +ؽ V establish| +ؽ V reward| +ؽ N expenditure|,many| +ؽ N metal| + N attribute|,strength|,&inanimate| +ٶ N attribute|,speed|ٶ,&inanimate| + N attribute|,weight|,&physical| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,important|,desired| + V BeSame|ͬ,scope=name| +Ů V PayAttention|ע,target=male|,despise|,target=female|Ů + V punish| + N weapon|,*firing| + N place|ط,city|,ProperName|ר,(China|й) + N affairs|,important| + N disease|,#wounded| + N human|,*PayAttention|ע,#commercial| + V explain|˵,manner=again| + V interrogate|,police| + V PayAttention|ע +ˮ N chemical|ѧ + N human|,family|,male| +Ů N human|,family|,female|Ů + V propose|,manner=again| + V disable|м,scope=listen| + N fact|,$entrust|ί +Χ N shape|,#surround|Χ,military| + V LookBack| + N weapon| + N inanimate|,heavy| + V appear| + ADV aValue|ֵ,frequency|Ƶ,again| + N part|,%entity|ʵ,important| + ADJ aValue|ֵ,size|ߴ,big| + V repair| +ѹ N attribute|,strength|,&entity|ʵ + V happen|,manner=again| + N waters|ˮ,surfacial| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N attribute|,importance|,&entity|ʵ +Ҫ N attribute|,importance|,&physical| + V translate|,manner=again| + N sound|,#language| + N sound|,#music| +ӡ V print|ӡˢ,manner=again| + V employ| + N material|,liquid|Һ,$burn| + V load|װ + V PayAttention|ע + V resume|ָ + N place|ط,military|,important| + V repeat|ظ,content=assemble|ۼ + V repeat|ظ,content=assemble|ۼ +֢ N disease|,strong|ǿ + ADJ qValue|ֵ,amount|,many| + V recreation|,entertainment| + N fact|,crime|,strong|ǿ,undesired|ݬ + V repeat|ظ + N character|,surname|,human|,ProperName|ר +ٲ V judge|ö +ٲ V human|,*judge|ö +ٲ V document|,*judge|ö +ٲ N human|,*judge|ö +ٴ N time|ʱ,spring| +ٶ N time|ʱ,month|,winter| +ٶ N time|ʱ,winter| +ٽ N physical|,*connect| + N time|ʱ,autumn| + N time|ʱ,month|,autumn| + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| + N human|,mass| + ADJ qValue|ֵ,amount|,many| +ڲԺ N institution|,*manage|,law|ɷ,politics| +ڶ ADJ qValue|ֵ,amount|,many| +ڹ V differ|ͬ +ڿһ V BeSame|ͬ +Ŀ ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + PRON {ThirdPerson|,mass|} + N animate|,mass| +ʸ֮ N entity|ʵ,undesired|ݬ,$ExpressAgainst|Ǵ +˵ N thought|ͷ,different|,many| +˵ N thought|ͷ,different|,many| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ V {comment|} +֪ ADV {comment|} + N aspiration|Ը,expect| + V enjoy|,content=endorse|ӵ +Ա N human|,#occupation|ְλ,official|,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +־ɳ V ally| + N ship| +۳ N ship|,LandVehicle| +۳Ͷ V tired|ƣ,cause=tour| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N human|,*drive|Ԧ,#ship| + N ship|,mass| + ADJ aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N shape|,round|Բ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,week| + CLAS unit|λ,&frequency|Ƶ +ܱ N publications|鿯,#week| +ܱ N attribute|,length|,&round|Բ +ܱ N location|λ,surrounding|Χ,space|ռ +ܱ ADJ aValue|ֵ,range|,all|ȫ +ܳ N attribute|,length|,&round|Բ +ܳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܶʼ V repeat|ظ +ܶ N time|ʱ,day|,#week| +ܼ V help| +ܿ N publications|鿯,#week| + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ĩ N time|ʱ,day|,#week|,@rest|Ϣ +ĩ N publications|鿯,#week| + N time|ʱ,year| + N time|ʱ,regular| + ADJ aValue|ֵ,frequency|Ƶ,regular| + N attribute|,frequency|Ƶ,regular| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N part|,%AnimalHuman|,body| + N time|ʱ,day|,#week| + N attribute|,age|,&animate| +Χ N location|λ,surrounding|Χ +Χ ADJ location|λ,surrounding|Χ +Χ N location|λ,surrounding|Χ + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V GoRound|Χ + V HaveContest| + V associate| +һ N time|ʱ,day|,#week| + N knowledge|֪ʶ + V tour| + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,posture|,upright| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ת V SelfMove|,commercial| +ת V lack|ȱ + N place|ط,provincial|ʡ +ݳ N human|,#occupation|ְλ,official| +ݼ ADJ aValue|ֵ,location|λ,#provincial|ʡ + ADJ aValue|ֵ,attachment|,#provincial|ʡ + N land|½ +޼ ADJ aValue|ֵ,location|λ,#land|½ +޼ʵ N weapon|,$firing| + N food|ʳƷ +ɮ V lack|ȱ + N image|ͼ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N image|ͼ + N image|ͼ + N part|,%machine| +Ĺ N place|ط,country|,*ally|,military|,undesired|ݬ,#(WWII|ս) +Ĺ N place|ط,country|,undesired|ݬ,#(WWII|ս) + N part|,%AnimalHuman|,arm| +ؽ N part|,%AnimalHuman|,arm| + N food|ʳƷ + N part|,%AnimalHuman|,arm| + N tool|þ,*wipe| + V ExpressAgainst|Ǵ + N text|,*ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V FormChange|α,StateFin=wrinkled| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| +ü V CausePartMove|,PatientPartof=eye| +üͷ V CausePartMove|,PatientPartof=eye| +θ N part|,%AnimalHuman|,viscera| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N time|ʱ + N time|ʱ +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,afternoon|,night| + ADJ aValue|ֵ,behavior|ֹ,sudden| + V change|,manner=sudden| +轵 V BecomeLess|,manner=sudden| + V BecomeMore|,manner=sudden| + V happen|,manner=sudden| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N material|,?tool|þ,#decorate|װ,precious| + N shape| +鱦 N tool|þ,*decorate|װ,precious| +鱦 N human|,#occupation|ְλ,#treasure|䱦,commercial| + N land|½,ProperName|ר,(China|й) + N lights| + N material| +麣 N place|ط,city|,ProperName|ר,(China|й) +齭 N waters|ˮ,linear|,ProperName|ר,(China|й) +齭 N place|ط,ProperName|ר,(China|й) + N tree| + N land|½,ProperName|ר,(China|й) + V calculate| +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N shape| + N part|,%plant|ֲ,body| + N part|,%tree|,body| + N plant|ֲ + V relate|й +ʽ N InstitutePlace|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + N InsectWorm| +˿ N trace| + N tool|þ,#InsectWorm| + N InsectWorm| + ADJ aValue|ֵ,color|ɫ,red| + N character|,surname|,human|,ProperName|ר + N PenInk|ī,*write|д + ADJ aValue|ֵ,color|ɫ,red| +ī N PenInk|ī,liquid|Һ,*write|д + N material|,liquid|Һ,*apply|ͿĨ +ȸ N bird| +ɰ N material| + N livestock| + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N disease| + N food|ʳƷ + N food|ʳƷ +Ƥ N part|,%livestock|,skin|Ƥ +Ȧ N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ +ͷ N food|ʳƷ + N material|,?food|ʳƷ +צ N food|ʳƷ + N human|,agricultural|ũ,*foster|,#livestock| + N livestock| + N beast| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,all|ȫ +ֺϳɲ N army| + ADJ qValue|ֵ,amount|,many| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N human|,wise|,desired| + N human|,royal|,past| + PRON {SecondPerson|,mass|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,kind|,special| +λ PRON {SecondPerson|,mass|} + V kill|ɱ,police| + V chase|׷ + V expel| + ADJ aValue|ֵ,sequence|,regular| + V expel| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence|,regular| +¹ V fight|,politics| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,sequence| +һ ADV aValue|ֵ,sequence| + N tree| + N artifact|˹ + N part|,%tree|,body| + N tool|þ,*decorate|װ +ڳ N InsectWorm| +ˮһ V fail|ʧ + N tree|,mass| + N tool|þ,*recreation| + N tool|þ,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ͳ N part|,%tree|,body| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N beast| +Ҷ N drinks|Ʒ,$addict|Ⱥ +ֽ N paper|ֽ,@write|д + N tree| + N tool|þ,*illuminate| + CLAS unit|λ,&electricity| + N lights| +̨ N tool|þ,@put|,#tool|þ,#illuminate| + V illuminate| + V cook| +ȼݽ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V cook| + N human|,#occupation|ְλ,industrial| + V tilt|б + V look| +Ŀ V PayAttention|ע +Ŀ V look| + V expect| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V entrust|ί + ADJ aValue|ֵ,importance|,important| + V decide| + N humanized|,religion|ڽ + N human|,#fact| + N human|,*entertain|д + N human|,*own| + V manage| + V mean|ָ + V handle| + V compile|༭ + V compile|༭ + N human|,#occupation|ְλ,*compile|༭,#readings|,literature| + N human|,$entertain|д +ϯ N location|λ,@sit|,#entertain|д + N facilities|ʩ,sport| + N software| + V endorse|ӵ + V handle| + V manage| + N human|,*handle| + V cook| + N human|,#occupation|ְλ,*cook| + ADJ aValue|ֵ,importance| + N attribute|,importance|,&event|¼ + V cure|ҽ + ADJ aValue|ֵ,importance|,important| + N music|,important| + N text|,important| +˵ N text|,important| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N attribute|,behavior|ֹ,active|Ը + N part|,%AnimalHuman|,nerve| +Ȩ N attribute|,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը + N community|,$choose|ѡ,*exercise|,*compete| + N community|,*invite|,*compete|,sport| + N human| + N human|,*employ|,commercial| + N human|,family|,male| + N human|,male|,friend|,^GetMarried| + N human|,undesired|ݬ,important|,crime| + N part|,space|ռ,%land|½,head|ͷ + N human|,female|Ů,family| + N organization|֯,important| + N part|,plant|ֲ,body| +ɵ N facilities|ʩ,route|·,important| + N part|,%plant|ֲ,base| + V attack|,military| + N human|,$choose|ѡ,*compete|,sport| + N human|,*buy|,commercial| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N attribute|,correctness|,wrong|,undesired|ݬ,&mental| + N human|,official|,important| + V manage| + V handle|,patient=GetMarried| + N machine|,important| + N weapon|,aircraft|,military| + N part|,%computer| + V handle|,patient=condole|° + N thought|ͷ + N human|,military| + V speak|˵ + V teach|,education| + N human|,*perform|,important|,entertainment| + N human|,important|,desired| + N human|,religion|ڽ + N human|,#occupation|ְλ,*teach| + V exam|,education| + N human|,#exam| + N human|,$entertain|д + N human|,*entertain|д,$entertain|д,mass| +͹ ADJ aValue|ֵ,correctness| + N affairs|,important| + N human|,important|,#military|,#exercise| + N human|,important|,#military|,#exercise| + N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ + N part|,%event|¼,important|,aspect| + N waters|ˮ,linear| +¥ N building| +ı N human|,undesired|ݬ,important|,crime| + N human|,official|,important| +Ȩ N rights|Ȩ,#country| + N human|,*entertain|д + N human|,*own| +˹ N human|,#readings| + N human|,#readings| + N human|,own| + N human|,#occupation|ְλ,official| +ʳ N edible|ʳ +ʹ V incite|ָʹ +˧ N human|,military| + N attribute|,content|,&information|Ϣ + N expression|,*LookFor|Ѱ,#information|Ϣ + N music|,#shows| + N part|,%thing|,important|,body| + N part|,%readings|,#police| +ϯ N human|,#occupation|ְλ,official| +ϯ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,*handle| +ϯ̨ N facilities|ʩ,space|ռ,@manage| +ϯ N part|,%community|,head|ͷ +ϯְλ N attribute|,occupation|ְλ,&human| + N part|,%event|¼,nerve| +Ĺ N human|,desired|,important|,able| +Ĺ N thought|ͷ + V repair|,industrial| + V study|ѧ,education| + N attribute|,SoundQuality|,&music| + N thinking|˼,important| + V RegardAs|,entertainment| + V perform|,entertainment| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N human|,important|,desired| +Ҫְҵ N affairs|,#occupation|ְλ,important| + N plans|滮 + N thought|ͷ + N thinking|˼ + N cause|ԭ,important| + N sound|,music|,important| + N part|,%language| + V control| +ս V endorse|ӵ,content=fight| + V regard|Ϊ + N thought|ͷ +Ž N human| +ֵ N symbol|,#quantity| +ּ N part|,%entity|ʵ,heart| + N attribute|,performance|,&medicine|ҩ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N part|,%machine|,important| +ץ V manage| + ADJ aValue|ֵ,kind|,special| + V compile|༭ + N readings| + ADJ aValue|ֵ,reputation|,glorious|,desired| +¼ V record|¼ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V compile|༭,ContentProduct=publications|鿯 +˵ V compile|༭,ContentProduct=publications|鿯 + V compile|༭ + N publications|鿯 + V compile|༭,ContentProduct=text| + V compile|༭ + N human|,*compile|༭ + V compile|༭ + N publications|鿯 +Ȩ N rights|Ȩ,#compile|༭ + N image|ͼ + N part|,%building|,bone| + N shape| +ʯ N human|,desired|,important|,able| +ͷ N part|,%FlowerGrass| +ͷ N part|,%building|,bone| +ͷ N part|,%building|,head|ͷ + N part|,%building|,bone| + V help| + V cure|ҽ,#GiveBirth|,medical|ҽ +ʿ N human|,#occupation|ְλ,*cure|ҽ,#GiveBirth|,medical|ҽ + V incite|ָʹ + N part|,%language| + V attack|,military| + N chemical|ѧ + N human|,#occupation|ְλ,*teach|,education| + ADJ aValue|ֵ,importance|,secondary| + N human|,#occupation|ְλ,employee|Ա +ʦ N human|,#occupation|ְλ,industrial| + N attribute|,strength|,#help|,&human| +ȼ ADJ aValue|ֵ,ability|,able|,help|,#burn| +Ϊ V joyful|ϲ,cause=help| + N human|,*help| + N tool|þ,*listen|,medical|ҽ + V MoveItUp| +ƻ N part|,%aircraft|,*MoveItUp| + N part|,%aircraft|,*MoveItUp| + V help|,scope=mental| + V MakeHappy|ʹϲ +ѧ V help|,scope=education| +ѧ N fund|ʽ,*help|,scope=education| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ս V help|,scope=attack|,military| +ս V help|,scope=mental| + V help|,scope=mental| +ΪŰ V help|,patient=evil| + N InsectWorm| + V bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ,#disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ +ij N InsectWorm| + N part|,%AnimalHuman|,*bite|ҧ,#disease| + V SetAside| + V SetAside| + V SetAside| + V SetAside| + N quantity|,amount|,&store| + V transport| + V produce|,industrial| + N money| + V create| + N material|,metal|,industrial| + N fact|,produce|,#metal|,industrial| + N human|,#occupation|ְλ,industrial| + N material|,metal|,industrial| + N metal|,?material| + V produce|,industrial| + V build| + V build|,PatientProduct=facilities|ʩ,#waters|ˮ +· V build|,PatientProduct=facilities|ʩ,route|· +ס V finish| +ס V reside|ס +ס N human|,religion|ڽ +ס N location|λ,@reside|ס +ס N location|λ,@reside|ס +ס N fact|,reside|ס +סĸ V improve|,patient=reside|ס +ס N community|,family|,*reside|ס +ס N community|,family|,*reside|ס +סҹ N MakeLiving|ı +ס V KeepSilence|˵ +ס V cease|ͣ +ס V reside|ס +ס޷ N expenditure|,*reside|ס +ס N place|ط,@reside|ס +ס V reside|ס +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +סԺ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺڿҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ V human|,*cure|ҽ,medical|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽʦ N human|,medical|ҽ,*cure|ҽ +סլ N house| +סլ V build|,PatientProduct=house| +סլ N place|ط,@reside|ס,#house| +סլС N place|ط,@reside|ס,#house| +סַ N place|ط,#reside|ס +ס V KeepSilence|˵ +ע V PayAttention|ע +ע V explain|˵ +ע N part|,&text| +ע V record|¼ +ע V spray| +ע N wealth|Ǯ,*gamble|IJ +ע V record|¼ +ע ADJ aValue|ֵ,possibility|,possible| +ע N part|,&text| +ע V explain|˵ +ע V explain|˵ +עĿ V look| +ע V spray| +ע V cure|ҽ +ע N tool|þ,*cure|ҽ,medical|ҽ +ע V explain|˵ +ע V look|,manner=attentive|ϸ +ע N human|,*look| +עˮ V spray|,industrial| +ע V produce|,industrial| +ע V remove| +ע V PayAttention|ע +ע V PayAttention|ע +ף N character|,surname|,human|,ProperName|ר +ף V congratulate|ף +ף V expect| +ף N expression|,@congratulate|ף +ף N expression|,@congratulate|ף +ף V congratulate|ף +ף V congratulate|ף +ף V congratulate|ף,cause=win|ʤ +ף V congratulate|ף +ף V congratulate|ף,cause=festival| +ף V congratulate|ף +ףԸ V expect| +פ V reside|ס,military| +פ V stay|ͣ +פ N place|ط,#organization|֯,@exist| +פ N place|ط,@reside|ס,military| +פ V defend|,military| +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ N army| +פ V put|,patient=army| +פ V stay|ͣ +פ V defend|,military| +פ V reside|ס,military| +פ ADJ aValue|ֵ,property|,reside|ס,#foreign| +פ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +פ V keep|,patient=beautiful| +פ V reside|ס,military| +פ V CeaseSelfMove|ֹ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V catch|׽ס,police| +ץ V manage| +ץ V scratch|ץ +ץ V MakeTrouble| +ץ V catch|׽ס,police| +ץ V scratch|ץ +ץ V endeavour| +ץ V catch|׽ס,police| +ץ V please|ȡ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V lift|,sport| +ץ͹ V include|,manner=force|ǿ +ץ V PlayWith|Ū +ץ V fight| +ץ N method| +ץ V scratch|ץ +ץ V TakePicture| +ץ V quarrel| +ץϹ V embarrassed|Ϊ +ץҩ V buy|,possession=medicine|ҩ +ץס V attract|,Vachieve| +ץס V catch|׽ס,Vachieve| +ץס V catch|׽ס,police|,Vachieve| +ץ׳ V include|,manner=force|ǿ +ץܶ V bear|е,content=duty|,important| +ץζ V gamble|IJ +צ N part|,%animal|,foot| +צ N part|,%animal|,foot| +צ N part|,%tool|þ,foot| +צ N food|ʳƷ +צ ADJ aValue|ֵ,attachment|,ProperName|ר,(Java|צ) +צ N place|ط,ProperName|ר,(Indonesia|ӡ) +צ N language|,#country|,ProperName|ר +צ N human|,crime|,undesired|ݬ +צ N part|,%animal|,foot| +ק V pull| +ק V throw| +ר ADJ aValue|ֵ,kind|,special| +ר N fact|,$investigate|,special| +ר N fact|,$investigate|,special|,#police| +ר N publications|鿯,special| +ר N fact|,dispatch|Dz,special| +ר N fact|,perform|,special| +ר N attribute|,ability|,able|,&human| +ר N LandVehicle|,special| +ר N fact|,tour|,special| +ר N text|,special|,#news| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N fact|,visit|,special| +ר V study|ѧ +ר V handle|,manner=special| +ר N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| +ר ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N aircraft|,special| +ר N publications|鿯,special| +ר N publications|鿯,special| +ר N human|,able|,desired| +ר N human|,able|,desired|,mass| +ר N publications|鿯,special| +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N knowledge|֪ʶ,special| +רѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +רҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N fund|ʽ,special| +ר N part|,publications|鿯,special| +ר N human|,*compile|༭,literature| +ר N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +ר N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +ר N institution| +רƷ N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +רȨ N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +רȨĻ N human|,*obtain|õ,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +רȨ N human|,*grant|,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +ר N LandVehicle|,special| +ר V sell|,commercial| +ר N InstitutePlace|,*sell|,@buy|,commercial| +ר ADJ aValue|ֵ,kind|,special| +רСԱ N human| +ר N place|ط +רȨ V control|,patient=power|,manner=self| +ר N human|,$dispatch|Dz,special| +ר V undertake| +ר V RashlyAct| +ר V establish|,manner=special| +רʹ N human|,$dispatch|Dz,special| +ר V engage|,manner=special| +ר N institution|,politics| +ר ADJ aValue|ֵ,attachment|,special| +ר ADJ aValue|ֵ,kind|,special| +ר N facilities|ʩ,linear|,*transmit|,special| +ר N facilities|ʩ,linear|,special| +ר N facilities|ʩ,route|·,special| +ר ADJ aValue|ֵ,kind|,special| +ר V PayAttention|ע +ר־ V PayAttention|ע +ר V study|ѧ +רҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רҵ N affairs|,education| +רҵ N affairs|,industrial| +רҵ N community|,family|,*engage|,#occupation|ְλ +רҵ ADJ aValue|ֵ,kind|,special| +רҵ N affairs|,education| +רҵԱ N human|,*engage|,#occupation|ְλ +רһ ADJ qValue|ֵ,amount|,single| +רӪ ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,attachment| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +רԱ N institution|,politics| +ר N system|ƶ,fierce| +רְ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רְԱ N human|,*engage|,#occupation|ְλ +רֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N institution|,#country|,politics|,fierce| +ר N system|ƶ,#country|,politics|,fierce| +ר N publications|鿯,special| +רע V PayAttention|ע +ש N material|,?build| +ש N material|,?drinks|Ʒ +ש N InstitutePlace|,*produce|,material|,factory|,industrial| +ש N material|,?build| +ש N material|,#build| +שǽ N part|,%building|,skin|Ƥ +שʯ N material|,?build| +שͷ N material|,?build| +שͷ N part|,%material|,#build| +ש N material|,?build| +שҤ N InstitutePlace|,*produce|,material|,factory|,industrial| +ת V alter|ı +ת V rotate|ת +ת V submit| +ת V entrust|ί +ת N human|,commercial| +ת V alter|ı +ת V change| +ת V disseminate| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=TakeVehicle| +ת V tell| +ת V alter|ı,patient=route|· +ת V alter|ı,entertainment| +ת V undergo|,content=alter|ı,#engage| +ת V rotate|ת +ת V change| +ת V issue|ַ +ת V tell| +ת V give| +ת V alter|ı,patient=route|· +ת V alter|ı +ת V alter|ı +ת V alter|ı +ת V GoBack| +ת N time|ʱ,pros| +ת V MarryTo| +ת V give| +ת V submit| +ת N part|,%facilities|ʩ,route|·,angular| +ת V connect| +ת V lend| +ת V GoThrough| +תó N affairs|,#buy|,#sell|,commercial| +ת V CausePartMove|,PatientPartof=head|ͷ +ת ADJ aValue|ֵ,duration|,TimeShort| +ת¯ N machine|,space|ռ,*produce|,#metal| +ת¼ N record|¼ +תǹ N weapon|,*firing| +ת V sell|,commercial| +ת N SportTool|˶ +ת N fact|,perform|,entertainment| +ת N tool|þ +ת V give| +ת V alter|ı +ת V alter|ı,StateFin=BeNormal|̬ +ת V CausePartMove|,PatientPartof=body| +ת V change|,religion|ڽ +ת V change|,religion|ڽ +ת V sell| +ת V submit| +ת V sell| +ת V explain|˵ +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת V GiveAsGift| +ת V submit| +ת N attribute|,speed|ٶ,&rotate|ת +ת̨ N facilities|ʩ,space|ռ,@perform| +ת V CausePartMove|,PatientPartof=body|,sport| +ת V TurnRound| +תĨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +תĨ ADJ aValue|ֵ,form|״,curved| +תΣΪ V BeRecovered|ԭ +תΪ V alter|ı +ת V change|,politics| +ת V ignorant|֪ +ת V rotate|ת +ת N tool|þ +ת V sell| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=affairs| +תѧ V alter|ı,education| +ת ADJ aValue|ֵ,duration|,TimeShort| +תۼ ADJ aValue|ֵ,duration|,TimeShort| +תҵ V alter|ı,StateIni=military| +ת V TakeAway|ᶯ +ת V alter|ı +ת V change| +ת V change|,medical|ҽ +ת ADJ aValue|ֵ,property|,change|,medical|ҽ +ת N furniture|Ҿ,space|ռ,@sit| +ת N information|Ϣ,#language| +ת V rotate|ת +ת V walk| +תԺ V SelfMove|,LocationIni=InstitutePlace|,medical|ҽ +ת V BeRecovered|ԭ,StateFin=lucky| +ת V transport| +תվ N InstitutePlace|,*transport| +ת V print|ӡˢ +ת V GiveAsGift| +תս V fight|,military| +ת V submit| +ת֧Ʊ N coupon|Ʊ֤ +ת N fact|,change| +ת۵ N time|ʱ,@change|,important| +ת V become|Ϊ,isa=passed|ϸ +ת N part|,%machine| +תת V walk| +ת N part|,%machine| +ת V lend|,commercial| +ת N time|ʱ,@change|,important| +׫ V compile|༭ +׫ V compile|༭,ContentProduct=text| +׫ N human|,*compile|༭,literature| +׫ V compile|༭,ContentProduct=text| +׫д V compile|༭ +׫ V compile|༭ +׬ V earn|׬ +׬Ǯ V earn|׬,possession=wealth|Ǯ +׬ȡ V earn|׬ +׬ͷ N attribute|,effect|Ч,#earn|׬,&event|¼,commercial| +׭ N stationery|ľ +׭ V carve| +׮ CLAS NounUnit|,&fact|,&affairs| +׮ N part|,%building|,bone| +׮׮ CLAS NounUnit|,&fact|,&affairs|,mass| +׮ N part|,%building|,bone| +ׯ N InstitutePlace|,commercial| +ׯ N character|,surname|,human|,ProperName|ר +ׯ N human|,*gamble|IJ +ׯ N place|ط +ׯ N place|ط,village| +ׯ N community|,family|,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,*gamble|IJ +ׯ N crop|ׯ,generic|ͳ +ׯں N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| +ׯ԰ N place|ط +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ N place|ط,village| +װ V RegardAs|,entertainment| +װ N attribute|,attire|װ,&human| +װ N clothing| +װ V decorate|װ +װ V include| +װ V install|װ +װ V load|װ +װ V pretend|װ +װ V MakeUp|ױ +װ V pretend|װ +װ N implement|,generic|ͳ +װ V provide| +װ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +װ ADJ aValue|ֵ,GoodBad|û,good|,desired| +װ V load|װ,LocationFin=LandVehicle| +װ V load|װ,LocationFin=ship| +װ V load|װ,LocationFin=tool|þ +װ V decorate|װ +װ V fasten|˩,#publications|鿯 +װ N part|,%InstitutePlace|,factory|,@fasten|˩,#publications|鿯 +װɵ V pretend|װ,content=foolish| +װ V load|װ,patient=physical| +װ N attribute|,ability|,#electricity|,&facilities|ʩ +װ ADJ aValue|ֵ,form|״ +װױ N army| +װ׳ N weapon|,LandVehicle| +װͳ N weapon|,LandVehicle| +װ V pretend|װ +װ V fill| +װ V fill| +װ V pretend|װ,content=ignorant|֪ +װ V fill| +װ V pretend|װ +װģ V pretend|װ +װ V include| +װ N machine| +װǻ V pretend|װ +װǻ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +װ V install|װ +װ ADJ aValue|ֵ,ability|,able|,decorate|װ +װ V decorate|װ +װ N tool|þ,*decorate|װ +װβ N material|,*decorate|װ +װƷ N tool|þ,*decorate|װ +װ N attribute|,attire|װ,&human| +װ˯ V pretend|װ,content=sleep|˯ +װ V pretend|װ,content=die| +װ V pretend|װ,content=ignorant|֪ +װ V feed|ι,military| +װ V pretend|װ +װ V load|װ,LocationFin=tool|þ +װж V include|,dismount|ж +װж N load|װ,TakeAway|ᶯ +װж N human|,#occupation|ְλ,*load|װ,*TakeAway|ᶯ +װ V decorate|װ +װ V pretend|װ +װ V exist| +װ V transport| +װ V load|װ +װ֡ N attribute|,appearance|,&publications|鿯 +װ N implement|,generic|ͳ +װ V install|װ +װ V pretend|װ +װ N attribute|,appearance|,&artifact|˹ +װ V decorate|װ +װ N attribute|,appearance|,&artifact|˹ +װ V put| +װ V decorate|װ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ױ N tool|þ,*decorate|װ,#female|Ů +ױ V decorate|װ +ױ V MakeUp|ױ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ײ V GoForward|ǰ +ײ V bump|ײ +ײ V meet| +ײ V bump|ײ,patient=LandVehicle|,unfortunate|,undesired|ݬ +ײ V differ|ͬ,scope=thinking|˼ +ײ V bump|ײ +ײ V meet| +ײƭ V deceive|ƭ +ײ N tool|þ,*shut|ر +׳ V MakeBetter|Ż +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׳ V BeWell|׳ +׳ V MakeBetter|Ż +׳ V soothe|ο +׳ N human|,adult|,#military|,past| +׳ N music|,great|ΰ +׳ N human|,employee|Ա +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N fact|,great|ΰ +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +׳ ADJ aValue|ֵ,courage|,brave|,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N time|ʱ,#adult|,#age| +׳ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ʿ N human|,brave|,desired| +׳ N aspiration|Ը,expect|,great|ΰ +׳ V farewell| +׳־ N aspiration|Ը,expect|,great|ΰ +׳־δ V fail|ʧ,scope=succeed|ɹ +׳ N community|,ProperName|ר,(China|й) +״ N attribute|,circumstances|,&entity|ʵ +״ N attribute|,form|״,&physical| +״ N document|,$record|¼ +״ N document|,*accuse|ظ +״ N document|,*prove|֤ +״ V explain|˵ +״ V accuse|ظ +״ N attribute|,circumstances|,&entity|ʵ +״ ADJ aValue|ֵ,GoodBad|û,good|,desired| +״̬ N attribute|,circumstances|,&entity|ʵ +״ N part|,%language| +״Ԫ N human|,*succeed|ɹ,#exam|,past| +״Ԫ N human|,able|,desired| +״ N document|,*accuse|ظ +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ͻ N disease| +׵Ѫ V sorrowful| +׶ N shape|,acute| +׶ N tool|þ,*stab| +׶ N image|ͼ +׶ ADJ aValue|ֵ,form|״ +׶ N tool|þ,*stab| +׷ V LookBack| +׷ V chase|׷ +׷ V investigate| +׷ V seek|ıȡ +׷ V chase|׷,military| +׷ V force|ǿ +׷ V interrogate| +׷ V catch|׽ס,police| +׷ V investigate| +׷ V condole|° +׷ N fact|,condole|° +׷ N fact|,feed|ι,#crop|ׯ,agricultural|ũ +׷ V chase|׷ +׷ V investigate| +׷ V collect| +׷ V collect| +׷ V repent|û +׷Ī V repent|û +׷ V attack|,military| +׷ N army| +׷ V record|¼ +׷ V reward| +׷ V add| +׷Ͷ V add|,patient=fund|ʽ +׷֧ V add|,patient=expenditure| +׷ V destroy|,military| +׷ V collect| +׷ V destroy|,military| +׷ V investigate| +׷ V ShowLove|ʾ +׷ V request|Ҫ +׷ V seek|ıȡ +׷ V admit| +׷ V grant| +׷˼ V LookBack| +׷ V situated| +׷ V accuse|ظ +׷ V follow| +׷ V levy| +׷ V ask| +׷ V LookBack| +׷ N human|,*FondOf|ϲ,#music| +׷ V explain|˵ +׷Ѱ V LookFor|Ѱ +׷ V LookBack| +׷ V grant| +׷ծ V collect|,possession=owe|Ƿ +׷ V chase|׷ +׷ V seek|ıȡ +׷ V follow| +׷ N human|,*follow| +׷ V levy| +׸ V MarryTo| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant| +׸ V speak|˵,manner=redundant| +׸ N human|,family|,male| +׹ V fall| +׹ V sink|³ +׹ N tool|þ,heavy| +׹ V ComeToWorld| +׹ V OutOfOrder| +׹ V fall| +׹ N tool|þ,*decorate|װ +׹ N tool|þ,heavy| +׺ V fasten|˩ +׺ V compile|༭ +׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׻ ADJ persuade|Ȱ˵ +׻׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׼ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ ADJ aValue|ֵ,standard|׼,average| +׼ V agree|ͬ +׼ N attribute|,standard|׼,&entity|ʵ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V plan|ƻ +׼ V prepare|׼ +׼ V exercise|,*prepare|׼ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V fixed|Ѷ +׼ N information|Ϣ,accurate|׼ +׼ N human|,#occupation|ְλ,official|,military| +׼ N affairs|,military| +׼׶ V fixed|Ѷ +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ N attribute|,correctness|,accurate|׼,&information|Ϣ +׼ N attribute|,standard|׼,&entity|ʵ +׼ʱ ADJ aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +׼ξ N human|,#occupation|ְλ,official|,military| +׼ N information|Ϣ,accurate|׼ +׼ N part|,%weapon|,#firing| +׼ V agree|ͬ +׼ V agree|ͬ +׼豣 V agree|ͬ,content=release|ͷ +׼ N attribute|,standard|׼,&entity|ʵ +׽ V catch|׽ס +׽ V hold| +׽ V write|д +׽ V human|,*write|д +׽ V catch|׽ס,patient=gamble|IJ,police| +׽ V catch|׽ס,patient=lascivious| +׽ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +׽Բ V deceive|ƭ +׽Բ V recreation| +׽ V investigate| +׽ V catch|׽ס +׽ V catch|׽ס,police| +׽Ū V tease|ȡ +׽ס V catch|׽ס,Vachieve| +׾ ADJ aValue|ֵ,kind|,firstPerson| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N thought|ͷ +׾ N human|,family|,female|Ů +׾ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N text| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ N character|,surname|,human|,ProperName|ר +׿ N thought|ͷ,profound| +׿ ADJ aValue|ֵ,degree|̶,extreme| +׿ ADJ aValue|ֵ,kind|,special| +׿Ȼ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿гЧ V succeed|ɹ +׿Խ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N furniture|Ҿ,space|ռ,@put| + N tool|þ,*illuminate| + N part|,furniture|Ҿ,head|ͷ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N location|λ,%furniture|Ҿ + N furniture|Ҿ +ΰ N furniture|Ҿ + N furniture|Ҿ,space|ռ,@put| + V carve| +ĥ V MakeBetter|Ż +ĥ V carve| +ĥ V think|˼ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V drink| + V dump| + N edible|ʳ,generic|ͳ + V think|˼ +ü V subtract|,condition=think|˼ + V think|˼ + V think|˼ + V eat| +ľ N bird| + V PutOn|,Vgoingon|չ + V StateChange|̬,StateFin=fire|,industrial| + V apply|ͿĨ + V dispatch|Dz + N location|λ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V sleep|˯ + V suffer| + V touch| + STRU {Vachieve|} +ű V write|д +Ż V flurried| +Ż V unfortunate|,cause=fire|,police| +ż V worried|ż + V endeavour| + V fever| +½ V arrive|,#aircraft| + N location|λ + N location|λ,@ExistAppear| +æ V worried|ż + V FondOf|ϲ + STRU {MaChinese|} + V recreation| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɫ V AlterColor|ɫ +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADV {emphasis|ǿ} + V start|ʼ + V PayAttention|ע + V PayAttention|ע +۵ N location|λ,space|ռ,@begin|ʼ +۵ N part|,%thinking|˼ + V endeavour| + V PayAttention|ע + V express|ʾ,manner=emphasis|ǿ +װ V PutOn| +װ V PutOn|,Vgoingon|չ +װ N clothing|,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + V burn| +Ƽ N thought|ͷ,profound| + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼɼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V damage|,cause=burn| +ʹ V painful|ʹ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + N water|ˮ,blurred| + N community|,disorder|,undesired|ݬ + N time|ʱ,disorder|,undesired|ݬ + N sound|,#language| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,now| + N money|,(Poland|) + V ask| + N document|,#country| +ѯ V ask| +ѯ N expenditure| + N attribute|,ability|,&human| + N attribute|,standard|׼,&human| + N expenditure| + V provide| + V provide|,commercial| +ʱ N fund|ʽ +ʱ N human|,#wealth|Ǯ +ʱ V transport|,patient=fund|ʽ +ʱ N system|ƶ +ʲ N wealth|Ǯ +ʲ N fund|ʽ +ʲ N wealth|Ǯ +ʲ׼ N human|,#wealth|Ǯ +ʷ N human|,#wealth|Ǯ +ʸ N attribute|,standard|׼,&human| +ʸ N attribute|,status|,&human| +ʽ N fund|ʽ +ʽ N quantity|,amount|,&fund|ʽ + N attribute|,standard|׼,&human| + N information|Ϣ + N room|,@read| + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,reputation|,&human|,&organization|֯,commercial| +Ѷ N information|Ϣ +Դ N material|,generic|ͳ + N attribute|,standard|׼,&human| + N attribute|,wisdom|ǻ,&AnimalHuman| + V provide| + N attribute|,appearance|,&physical| + N attribute|,posture|,&AnimalHuman| +ɫ N attribute|,bearing|̬,&female|Ů + N attribute|,posture|,&AnimalHuman| +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,posture|,&AnimalHuman| + V GiveBirth| + V grow|ɳ + V jet| +̲ ADJ aValue|ֵ,ability|,maintain|,desired| +̲ V maintain| +̲Ʒ N edible|ʳ,*maintain| +̲Ʒ N material|,*maintain| +̳ V grow|ɳ + V grow|ɳ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + V moisten|ʪ + V GiveBirth| + V ResultIn| + V MakeTrouble| + V human|,MakeTrouble| +ζ N attribute|,taste|ζ,&edible|ʳ +ѿ V pregnant| + V maintain| + N material|,*maintain| +Ʒ N material|,*maintain| +Ͳ N place|ط,city|,ProperName|ר,(China|й) +ʹ N place|ط,city|,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +β ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V seek|ıȡ + V seek|ıȡ,manner=diligent| + ADJ aValue|ֵ,color|ɫ,purple| +ϲ N food|ʳƷ +϶ N FlowerGrass| +Ϻӳ N part|,%AnimalHuman|,embryo| +Ϻ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ N attribute|,color|ɫ,purple|,&physical| +ϻض N FlowerGrass| +Ͼ N FlowerGrass| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +̴ N wood|ľ + N FlowerGrass| +ͭ N metal| + N lights| + N lights| +ҩˮ N medicine|ҩ +Ӣ N FlowerGrass| + N tree| + N FlowerGrass| +ޱ N FlowerGrass| + N disease| + N beast| + N beast|,young| + N human|,family|,male|,young| +м N bird| + ADJ aValue|ֵ,density|ܶ,dense| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N livestock|,young| + N livestock|,young| + N part|,%plant|ֲ,embryo| + N material|,#crop|ׯ + ADJ aValue|ֵ,age|,young| + N character|,surname|,human|,ProperName|ר + N human| + N human|,family|,male|,young| + N human|,official|,royal| + N money| + N part|,%AnimalHuman|,embryo| + N part|,%plant|ֲ,embryo| + N shape|,small|С,hard|Ӳ +ӳ N character|,surname|,human|,ProperName|ר +ӳ N software| +ӵ N weapon|,$firing| +ӵ N human|,young| +ӵܱ N human|,military| +Ӹ N human|,family|,female|Ů +ӹ˾ N InstitutePlace|,commercial|,branch|֧ +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹѪ N disease| +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹ N bird| +Ӻ N symbol|,#quantity|,#DoSum| +Ӽ N bird| +Ӿ N human|,female|Ů,royal| + N part|,%plant|ֲ,embryo| +ĸ N weapon|,$firing| +ĸ۶ N part|,%clothing|,*fasten|˩ +Ŀ¼ N part|,%readings|,content| +Ů N human|,family|,mass|,young| +ʱ N time|ʱ,hour|ʱ +ʵ N part|,%plant|ֲ,embryo| + N human|,family|,male|,young| + N human|,future| + N human|,future| + V own|,possession=human| +î N cause|ԭ + N part|,%earth|,linear| + N tool|þ,*measure| +ϵͳ N software| +Ŀ N affairs| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N livestock|,young| + N human|,family|,male| +Ҷ N part|,%plant|ֲ,hair|ë +ҹ N time|ʱ,day|,night| + N sound|,#language| + ADJ aValue|ֵ,attachment|,self| + ADV aValue|ֵ,possibility|,possible| + PREP {LocationIni} + PREP {TimeIni} + ADV {comment|} + PRON {self|} +԰ V like|ϧ,target=self| +԰ V release|ͷ,patient=self| +԰ V explain|˵ +԰ V create| +Ա V do|,manner=active|Ը +Ա V disappointed|ʧ +Ա ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +Ա V provide|,target=self| +Բ ADJ aValue|ֵ,content|,opened| +Բ V suicide|ɱ +Բλ V shy| +Բ V check| +Բ V check|,content=self| +Բ ADJ aValue|ֵ,property| +Բ V produce| +Գ V naming|,patient=self| +Գһ ADJ aValue|ֵ,kind|,special| +Գ V restrain|ֹ +Գ V gather|ɼ,manner=BeIndependent|,commercial| +Գʽ V gather|ɼ,possession=fund|ʽ,manner=BeIndependent|,commercial| +Դ N text| +Դ V boast| +Դ PREP {TimeIni} +Դ PREP {TimeIni} +Դ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ե V satisfied| +Ե V satisfied| +Զ ADJ aValue|ֵ,ability|,able|,function| +Զ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Զ V ize|̬,ability|,PatientAttribute=able|,#function| +Զ N institution|,#knowledge|֪ʶ +Զ N control| +Է ADJ aValue|ֵ,behavior|ֹ,active|Ը +Է N attribute|,property|,active|Ը,&event|¼ +Է V pay|,possession=expenditure|,manner=self| +Է V RegardAs|,patient=self| +Ը ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V bear|е +Ը N human|,arrogant|,undesired|ݬ +Ըӯ V bear|е +ԸԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V willing|Ը +Ը PRON {self|} +Ը V provide| +Ը V surplus|ʣ +Ը V BeIndependent| +Ըũ N human|,#occupation|ְλ,agricultural|ũ +Թ V admit| +Թ N place|ط,city|,ProperName|ר,(China|й) +Թ ADV aValue|ֵ,duration|,TimeLong| +Թ ADV aValue|ֵ,duration|,TimeLong| +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| +Ժ N experience|,glorious| +Ի V destroy|,patient=self| +Լ ADJ aValue|ֵ,kind| +Լ PRON {self|} +Լ N human|,friend| +Լ PRON {self|} +Լ V recommend|Ƽ,content=self| +Խ V create| +Ծ V suicide|ɱ +Ծ V clean|ʹ,patient=self| +Ծ V rescue|,patient=self| +Ծ V ExpressAgainst|Ǵ,target=self| +Ծ V RegardAs|,patient=self| +ԾĹ V RashlyAct| +ԾĹ N damage|,patient=self| +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ծ V perception|֪ +Ծ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ԾԸ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ N fact|,self|,decide| +ԾȨ N rights|Ȩ,*decide| +Կ V control| +Կ V boast|,target=self| + ADJ aValue|ֵ,source|Դ,original|ԭ + N tool|þ,*lighting|ȼ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ˮ N water|ˮ +ˮ N PenInk|ī,*write|д + V TakeCare|,patient=self| + V provide|,target=self| + V mobilize|,patient=self| + V BeIndependent| + V BeIndependent| + V BeIndependent| + V SetAside| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + V RashlyAct| + V flow| + V restrain|ֹ,patient=self| + V satisfied| + V mobilize|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V satisfied| + N tool|þ,*tell|,#time|ʱ + V naming|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N human|,arrogant|,undesired|ݬ + V disheartened| + V deceive|ƭ +Dz V tease|ȡ,target=self| +ǿ V improve|,patient=self| +ǿϢ V endeavour|,content=improve|,#self| +Լ V IllTreat|,target=self| +ȡ V perish|,cause=RashlyAct| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ȼ N natural|Ȼ +Ȼ ADV {comment|} +Ȼ N place|ط,#natural|Ȼ,$protect| +Ȼ N InstitutePlace|,@display|չʾ,#natural|Ȼ +Ȼ N place|ط,village| +Ȼ N knowledge|֪ʶ,#earth| +ȻȻ ADV aValue|ֵ,behavior|ֹ,active|Ը +ȻȻ ADJ {comment|} +Ȼ N regulation| +Ȼ N attribute|,environment|,&entity|ʵ +Ȼ N natural|Ȼ +Ȼѧ N knowledge|֪ʶ,#natural|Ȼ +Ȼ N human| +Ȼ V die| +ȻԴ N material|,#natural|Ȼ,generic|ͳ +ȼ V burn| + V agree|ͬ + ADJ aValue|ֵ,effect|Ч,superior|,desired| +ɱ V suicide|ɱ +ɱ ADJ aValue|ֵ,property|,suicide|ɱ +϶ ADV aValue|ֵ,property| + PRON {self|} + V ExistAppear| +ʡ V check|,content=self| +ʳ V unfortunate| +ʳ V BeIndependent| +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting| + ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V admit|,content=crime|,#police| + V betray| +ױ V betray| + V explain|˵ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V accuse|ظ,police| +ֿ V ResultIn|,result=damage| +Ͷ V ResultIn|,result=damage| +ο V soothe|ο,target=self| + V defend| + N army| + V ask|,target=self| + PRON {self|} +ұ V ShowOff|ҫ,content=self| +Ҵ V boast|,content=self| +ҽ V cultivate|,patient=self| +˽ V suicide|ɱ + V estimate|,content=self| + V MakeBetter|Ż,patient=self| + V abandon|,possession=self| + V like|ϧ,target=self| + V cultivate|,patient=self| +ϰ V study|ѧ,education| +¶ ADV aValue|ֵ,property| +ɱ V kill|ɱ,patient=EachOther|໥ +ྪ V frighten|Ż,target=EachOther|໥ +ì V FitNot|,contrast=EachOther|໥ +С ADJ aValue|ֵ,time|ʱ,#young| + V believe|,target=self| + N emotion|,believe|,#self| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,single| +г N LandVehicle| +г N facilities|ʩ,@put|,#LandVehicle| +г N part|,%LandVehicle|,body| +г N facilities|ʩ,@put|,#LandVehicle| + V RashlyAct| + V study|ѧ,education| +ѡ ADJ aValue|ֵ,kind|,free| +ѧ V study|ѧ,manner=self| +ѧ V teach|,target=self| +ѧ N human|,*study|ѧ,manner=self| + V speak|˵,target=self| + N human|,*speak|˵ + V SelfMove| +Ϊ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ӫ V manage|,manner=self|,commercial| + ADJ aValue|ֵ,property|,$use|,#self| + ADJ aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,circumstances|,free|,desired| +ɶ N attribute|,performance|,free| +ɷ V indulge| +ɸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ɻ N attribute|,property|,free| +ɻ V ize|̬,PatientAttribute=free| + N human|,free| + N fact|,sport| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,behavior|ֹ,free| + N attribute|,behavior|ֹ,free| + N human| + ADJ aValue|ֵ,circumstances|,free|,desired| + V own|,manner=self| + ADJ aValue|ֵ,time|ʱ,#young| + V recreation|,partner=self| + V recreation|,partner=self| +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը V aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ը V willing|Ը +Թ԰ V blame|Թ + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V ExpressAgainst|Ǵ,target=self| + V suffer| +֪֮ N attribute|,ability|,know|֪,#self| + V control|,patient=self| + V produce|,manner=self| + V restrain|ֹ,patient=self| + ADJ aValue|ֵ,attachment|,self| + N place|ط,manage|,#self|,politics| +Ȩ N attribute|,power|,decide|,#self|,&organization|֯,politics| + N place|ط,manage|,#self|,politics| + N place|ط,manage|,#self|,politics| + V like|ϧ,target=self| + V decide|,manner=self| +Ӫ V manage|,manner=self|,commercial| +Ȩ N attribute|,power|,decide|,#self|,&human|,&organization|֯ + V TakeCare|,patient=self| + V help|,patient=self| +ת V rotate|ת + V satisfied| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V like|ϧ,target=self| + N emotion|,like|ϧ,#self| + V decide|,manner=self| + V suffer| + V suicide|ɱ +ڼ V boast|,content=self| + V suicide|ɱ + V suicide|ɱ + V soak| + N trace|,dirty| + N attribute|,kind|,&character| + N attribute|,name|,&human| + N attribute|,style|,&character| + N bill|Ʊ + N character| + N sound|,#language| +ֳ N attribute|,length|,&character| +ִ V handle|,patient=character| +ֵ N publications|鿯,#expression| +ַ N character|,mass| +ַ N attribute|,kind|,&information|Ϣ +ֺ N InstitutePlace|,*sell|,@buy|,commercial| +ֺ N attribute|,name|,&InstitutePlace| +ֺ N attribute|,size|ߴ,&character| +ֻ N artifact|˹,#image|ͼ,entertainment| +ּ N trace|,#character| +ֽ N unit|λ,&information|Ϣ,computer| +־ N bill|Ʊ,#wealth|Ǯ +־ N expression| +ֿ N software|,@store|,character| +м ADJ aValue|ֵ,content|,&text| + ADJ aValue|ֵ,content|,&text| +ģ N tool|þ,*print|ӡˢ +ĸ N symbol| +ĸ N symbol|,mass| +Ļ N text|,#shows| + N quantity|,amount|,&character| + N attribute|,pattern|ʽ,&character| + N attribute|,style|,&character| + N letter|ż + N attribute|,pattern|ʽ,&character| + N expression| + N attribute|,standard|׼,&character| + N expression| + N sound|,#language| + V choose|ѡ,content=expression| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N tree| + N beast| + N tree| + N trace|,#SelfMove|,#CauseToMove| + N trace|,#SelfMove|,#CauseToMove|,#foot| +ټ N trace|,#SelfMove|,#CauseToMove| +Ӱ N trace|,#SelfMove|,#CauseToMove| + N attribute|,clan|,&human| + N character|,surname|,human|,ProperName|ר + N human|,able|,desired| + N human|,past| + N part|,%community| + N purpose|Ŀ +ڷ N system|ƶ +ڽ N human|,able|,desired| +ڽ N community|,religion|ڽ +ڽ̽ N regulation|,religion|ڽ +ڽ̽ N community|,religion|ڽ +ڽɱ N community|,religion|ڽ +ڽ N community|,religion|ڽ +ڽ N emotion|,believe|,religion|ڽ +ڽʽ N fact|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N thinking|˼,biased|ƫ,undesired|ݬ + N human| + N human| +ʦ N human|,able|,desired| + V respect| + N character|,surname|,human|,ProperName|ר +ּ N purpose|Ŀ + N community| + N facilities|ʩ,space|ռ,@reside|ס + V AmountTo|ܼ +۹ V investigate| +ۺ ADJ aValue|ֵ,range|,all|ȫ +ۺ V include| +ۺϲ֢ N disease| +ۺϴѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ۺ V use|,all|ȫ +ۺ N human|,*include| +ۺ֢ N disease| +ۼ V AmountTo|ܼ + V explain|˵ + ADV {comment|} + V explain|˵ + N shows| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,main| + ADV {comment|} +ܱ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܱ༭ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܲ N part|,%army|,*order| +ܲ N human|,#occupation|ְλ,official|,commercial| +ܲ N human|,#occupation|ְλ,official|,politics| +ܲ N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N human|,#occupation|ְλ,official|,military| +ܲ N quantity|,amount|,all|ȫ,&crop|ׯ,&artifact|˹ +ֵܲ N attribute|,value|ֵ,all|ȫ,&produce|,industrial| +ܳ N attribute|,length|,all|ȫ,&physical| +ܳ N human|,#occupation|ְλ,official|,military| +ܳ N InstitutePlace|,@produce|,factory|,industrial|,main| +ܳ N attribute|,name|,generic|ͳ,&entity|ʵ +ܳ V produce|,industrial| +ܴ N quantity|,amount|,#computer|,&handle| +ܴ N human|,*help| +ܵ AUX {modality|} +ܵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ N InstitutePlace|,main|,commercial| +ܶԱ V mobilize| +ܶ N human|,#occupation|ְλ,official|,country| +ܶ N army| +ܶ N quantity|,amount|,&physical| +֮ܶ CONJ {comment|} +ܹʦ N human|,#occupation|ְλ,industrial| +ܹ N community|,#employee|Ա,main| +ܹ V attack|,military| +ܹ˾ N InstitutePlace|,main|,commercial| +ܹ V AmountTo|ܼ +ܺ ADJ qValue|ֵ,amount|,all|ȫ +ܺ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܺڲ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܻ V ComeTogether| +ܻ N tool|þ,*control|,#communicate| +ܼ V AmountTo|ܼ +ܼ N attribute|,price|۸,all|ȫ,commercial| +ܼ N human|,#occupation|ְλ,*check|,official| +ܽ N time|ʱ,#age|,young| +ܽ V explain|˵ +ܾ N human|,#occupation|ְλ,official|,commercial| +ܾ N institution|,main| + V explain|˵ + V bear|е + N human|,#occupation|ְλ,official|,#country| + N part|,%text| + N estimate| +˵ ADV {comment|} +ʦ N human|,#occupation|ְλ,industrial| + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,#occupation|ְλ,official|,country| + N institution|,main| + N quantity|,amount|,&entity|ʵ +˾ N human|,#occupation|ְλ,official|,military| + ADV aValue|ֵ,time|ʱ,ending|ĩ + ADV {comment|} + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + V plan|ƻ +ͳ N human|,#occupation|ְλ,official|,country| +ͳ N house|,institution|,#politics| +ͳ N human|,friend| +ͳ N system|ƶ,politics| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N part|,%computer| + N InstitutePlace|,main|,commercial| + N regulation|,important| + N account|,@record|¼,#wealth|Ǯ + N institution|,politics|,ProperName|ר,military|,(China|й) +β N institution|,politics|,ProperName|ר,military|,(China|й) +֮ CONJ {comment|} +ֵ N quantity|,amount|,&entity|ʵ +ָ N human|,#occupation|ְλ,official| +ָ N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,direction|,straight|ֱ + V indulge| + V jump| + V release|ͷ + CONJ {concession|ò} +ݲ V jump| +ݲ V walk| +ݶ N part|,%inanimate|,surfacial| +ݶ N army| +ݶ N shape|,linear| +ݸ N part|,%AnimalHuman|,viscera| +ݹ V look| +ݹ V cross|Խ +ݺ ADJ aValue|ֵ,posture| +ݺ۳ V SelfMove| +ݺύ V BeAcross|ཻ +ݻ V lighting|ȼ,crime| +ݾ V addict|Ⱥ,patient=drinks|Ʒ + V look| + V talk|̸,manner=free| +Ŀ V look| + V satisfied| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V indulge| + V jump| + N attribute|,depth|,&physical|,#cubic| +ʹ CONJ {concession|ò} +̸ V speak|˵ + ADJ aValue|ֵ,direction|,straight|ֱ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,flighty|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V SelfMoveInManner|ʽ + V function| + V leak|© + V leave|뿪 + V use| + V visit| + V walk| +߱ V unfortunate| +߱ V roam| +߲ V err|,sport| +ߴ崮 V roam| +ߴ崮կ V roam| +ߵ N facilities|ʩ,route|· +ߵ V walk| +ߵ V decline|˥ +ߵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +߶ V associate| +߶ V walk| +߶ V study|ѧ,education| +߶ N human|,*study|ѧ,education| +߷ V visit| +߷ V exposure|¶ +߸˿ N human|,*perform|,entertainment| +߹ N human|,undesired|ݬ +߹ V slack|͵ +ߺ V WellKnown| +ߺ V lucky| +ߺ V associate|,manner=undesired|ݬ +߻ V boast| +߻ V err|,scope=electricity| +߻ V err|,scope=firing| +߽ V MakeLiving|ı,means=perform| +ִ߽ V roam| +߽ V GoInto| +߽ V approach|ӽ +߿ V leave|뿪 + N part|,%building|,nerve| +© V evade|ر,crime| +© V exposure|¶ +· V leave|뿪 +· V walk| + V drive|Ԧ,patient=livestock| + N tool|þ,*illuminate| +ۻ V look|,manner=careless| + V undertake| +ϴ V roam| + V associate|,manner=undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V visit|,target=human| + V leave|뿪 + V GoInto| +ɫ V AppearanceChange|۱ + V use| +ʧ V disappear|ʧ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N beast|,generic|ͳ +˽ V transport|,manner=secret|,crime| +˽ N human|,*transport|,crime| +˽ V artifact|˹,$transport|,secret|,crime| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +Ͷ· V BeUnable| +· V err| +ζ V AppearanceChange|۱,scope=taste|ζ,StateFin=improper|,undesired|ݬ +· V decline|˥ + V SelfMove| + N attribute|,direction|,&physical| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ +ʽ V slack|͵ +Ѩ V undertake|,content=other|,entertainment| + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ + V differ|ͬ + V lucky| + V wait|ȴ + V walk| + N human|,undesired|ݬ + V fulfil|ʵ + V recreation|,entertainment| + V submit| + V win|ʤ +࿭ V win|ʤ + V perform|,content=music| + N music| +Ч V succeed|ɹ + V beat| + V break|۶ + V borrow|,commercial| + N document|,#borrow|,#lend| + N expenditure|,*borrow| + V lend|,commercial| + N human|,lend| + V lend|,commercial| + N expenditure|,*borrow| + N expenditure|,*borrow| + N place|ط,$occupy|ռ + V borrow|,commercial| + V lend|,commercial| + N human|,*lend| + N expenditure|,*borrow| + N human|,*borrow| + V borrow|,commercial| + V lend|,commercial| + N attribute|,duration|,&lend|,&borrow| + N human|,*borrow|,house| + V borrow|,commercial| +Լ N document|,*ExpressAgreement|ʾͬ,#lend| + ADV aValue|ֵ,degree|̶,more| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,leg| + N part|,%inanimate|,leg| + ADJ qValue|ֵ,amount|,sufficient| +㲿 N part|,%AnimalHuman|,leg| + N quantity|,amount|,accurate|׼,&physical| + N part|,%AnimalHuman|,foot| +㹻 ADJ qValue|ֵ,amount|,sufficient| +㼣 N trace|,#SelfMove|,#CauseToMove| +㼣 N trace|,#SelfMove|,#CauseToMove|,#foot| + V mean|ָ + N metal|,?material|,pure| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,space|ռ,@exercise|,@compete|,sport| + N community|,*exercise|,*compete|,sport| +Ȧ N community|,sport| + N fact|,compete|,sport| +ɫ ADJ aValue|ֵ,content|,pure|,desired| +̳ N community|,sport| + ADV aValue|ֵ,degree|̶,more| + N metal|,?material|,pure| + ADJ aValue|ֵ,physique|,ripe|,desired| +Ƕı ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADV aValue|ֵ,degree|̶,more| + V die| + V end|ս + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| +ҵ V finish|,scope=study|ѧ,education| + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| + N attribute|,clan|,&human| + N attribute|,kind|,&human| + N entity|ʵ +峤 N human|,official| + N human| + N character|,surname|,human|,ProperName|ר + N human|,intimate|,male| + N human|,past| +汲 N human|,past| + N wealth|Ǯ +洫 V PassOn| +洫 ADJ aValue|ֵ,property|,$PassOn| +洫ط N document|,medical|ҽ,#medicine|ҩ + N facilities|ʩ,space|ռ,@bury|,#die| +游 N human|,family|,male| +游ĸ N human|,family| + N place|ط,country| +漮 N place|ط +³ N language|,#country|,ProperName|ר +ĸ N human|,family|,male| +ĸ N material|,?tool|þ,#decorate|װ,precious| + N human|,past| +ʦ N human|,*establish| +ʦү N human|,*establish| + N human|,family| + N human|,family| + N human|,past| +ҵ N wealth|Ǯ + N human|,past| +汲 ADJ aValue|ֵ,duration|,TimeLong| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,property|,ExpressAgainst|Ǵ + V obstruct|ֹ +谭 V obstruct|ֹ +赲 V obstruct|ֹ + V obstruct|ֹ + V obstruct|ֹ + V separate| + V attack|,military| + V obstruct|ֹ,military| +ս N fact|,obstruct|ֹ,military| + V obstruct|ֹ +迹 V obstruct|ֹ,#electricity| + V obstruct|ֹ + N attribute|,strength|,obstruct|ֹ,&thing| + V obstruct|ֹ + V BlockUp| +Ԯ V obstruct|ֹ,content=rescue|,military| +ֹ V obstruct|ֹ + V obstruct|ֹ + CLAS NounUnit|,&inanimate| + V establish| + N part|,%organization|֯ +鳤 N human|,official| + V establish| + V establish|,PatientProduct=community|,sport| + N part|,%entity|ʵ,bone| + V call|ٻ,ResultEvent=compile|༭ + V establish|,patient=organization|֯,politics| + ADJ aValue|ֵ,property|,$merge|ϲ + N entity|ʵ,$merge|ϲ + V establish| +ʽ ADJ aValue|ֵ,property|,$merge|ϲ + N tool|þ,*listen|,#music| + N part|,implement| +齨 V establish| + V establish|,PatientProduct=community|,sport| +ί N part|,%organization|֯,*handle| +Ա N human|,#organization|֯ +֯ V establish| +֯ N organization|֯ +֯ N part|,%animate|,bone| +֯ N part|,%entity|ʵ,bone| +֯ N chemical|ѧ +֯ N part|,%community| +֯ʵ N attribute|,strength|,&organization|֯ +֯ N human|,*establish| +װ V merge|ϲ + V GoInto| + N material|,?tool|þ,#decorate|װ,precious| + V research|о + V stab| + N tool|þ,*stab| + V GoOut|ȥ + V stab| +괲 N machine|,*stab| + V GoThrough| + N machine|,*dig|ھ + N tool|þ,#decorate|װ,precious| + V GoInto| +꾮 V stab|,industrial| +꾮 N community|,*stab|,industrial| + V use|,patient=pros| +ı V seek|ıȡ +ţǼ V research|о +ʯ N material|,?tool|þ,#decorate|װ,precious| +̽ V investigate|,industrial| +ͷ N part|,%machine|,head|ͷ,*stab| +ij N InsectWorm| + V research|о +Ӫ V seek|ıȡ + V compile|༭ + N part|,%human|,hair|ë + V compile|༭ + N part|,%AnimalHuman|,mouth| + N shape| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + V FondOf|ϲ,target=edible|ʳ +촽 N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ + N location|λ,%mouth| +Ƥ N attribute|,ability|,&human|,#speak|˵ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V FondOf|ϲ + V dizzy|,cause=addict|Ⱥ + ADV aValue|ֵ,degree|̶,most| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Լ N symbol|,#quantity|,#DoSum| +޶ ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,nonextensive| +ͼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ N fact|,discuss|,HighRank|ߵ +޼ N attribute|,price|۸,expensive|,&artifact|˹,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +ͨ N document|,*tell|,#fight| + ADJ aValue|ֵ,GoodBad|û,bad|,most|,undesired|ݬ +ݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ݹ N fact|,WellTreat|ƴ,#commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ӽ ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near|,most| + N aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,newness|¾,new|,desired| + N aValue|ֵ,time|ʱ,near| + ADJ aValue|ֵ,time|ʱ,near| + N aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +϶ ADJ aValue|ֵ,direction|,south| +ڲ ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,range|,nonextensive| +Ϊ ADV aValue|ֵ,degree|̶,extreme| +С ADJ aValue|ֵ,size|ߴ,small|С +С N symbol|,#quantity|,#DoSum| +С޶ ADJ aValue|ֵ,range|,nonextensive| + ADJ aValue|ֵ,newness|¾,new| + ADJ aValue|ֵ,time|ʱ,now| +ȿǵ N attribute|,sequence|,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,distance|,far|Զ,most| + N aValue|ֵ,time|ʱ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N fact|,crime|,undesired|ݬ + N result|,#unfortunate|,undesired|ݬ +ﰸ N fact|,#police| +ﲻ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ﷸ N human|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N result|,crime|,undesired|ݬ + N result|,undesired|ݬ + N human|,crime|,undesired|ݬ + N human|,crime| + N fact|,crime|,$accuse|ظ + N result|,crime|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ + N fact|,crime|,undesired|ݬ + N duty|,#crime| +֤ N information|Ϣ,#crime| +״ N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V respect| + N human|,family|,aged| + N attribute|,name|,$respect|,&human| + V respect| + V salute|¾ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,property|,respect| + V respect| +ϰ V respect|,target=human| +ʦ V respect|,target=human| +ʦؽ V respect|,target=human| + N attribute|,behavior|ֹ,stately|ׯ,&human| + V PayAttention|ע + V respect| + V obey|ѭ + V obey|ѭ +ط V obey|ѭ,content=regulation| + V obey|ѭ,content=order| + V obey|ѭ + V obey|ѭ +ѭ V obey|ѭ + N place|ط,city|,ProperName|ר,(China|й) + V obey|ѭ + N time|ʱ,past| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day|,night| +ҹ N time|ʱ,past|,day|,night| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N character|,surname|,human|,ProperName|ר + N community| + N location|λ + N location|λ +߷ N human|,*exercise|,(football|) + N location|λ + N human|,#exercise| + V look| + N location|λ,surrounding|Χ + N human|,*reside|ס,near| + N weapon|,*firing| +ǹ N weapon|,*firing| + N location|λ + N human|,politics| +Ʋ N human| +Ǩ V degrade| + N character|,surname|,human|,ProperName|ר +Ϸ N location|λ +Ͻ N location|λ + N location|λ + N part| + N location|λ +̻ V protect| +· N location|λ +½ N location|λ + N location|λ + V control| + N human|,*TakeCare| + N location|λ + ADV qValue|ֵ,amount|,almost| +ҿ V attack| + N human|,friend| +̻ V protect| +Ϊ V embarrassed|Ϊ +֤ N information|Ϣ,*prove|֤ +֧ V BeUnable|,content=handle| +֧ V BeUnable|,content=pay| +ת V TurnRound| +ת V TurnRound| + V help| + V eat| + N material|,?edible|ʳ +֤ N information|Ϣ,*prove|֤ + N tree| +˿ N material|,?clothing| + V RegardAs| + V be| + V compile|༭ + V cook| + V create| + V engage| +B V fact|,diagnose|,medical|ҽ + V mating| + V dream| + V follow| + V BeUnable|,content=decide| + V fulfil|ʵ +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + V bear|е + N method| + V cook|,PatientProduct=edible|ʳ + N attribute|,performance|,#produce|,&artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V engage|,content=affairs| + V undertake|,content=official|,politics| + V disseminate|,commercial| +µ N human|,do|,desired| + V engage|,content=affairs| + V become|Ϊ + V engage|,content=affairs|,religion|ڽ + V engage|,content=fact|,religion|ڽ + V congratulate|ף,cause=festival| +ý V mediate|,ResultEvent=GetMarried| + V dream| + V associate| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V ActGeneral| + V MakeSound| + V congratulate|ף,cause=festival|,#ComeToWorld| + V engage|,content=affairs|,commercial| + V engage|,content=affairs| +ֽ V deceive|ƭ + V cure|ҽ,means=split|ƿ,#part| + V undergo|,content=cure|ҽ,#split|ƿ,#part|,medical|ҽ + V congratulate|ף,cause=festival|,#ComeToWorld| +ͷ V MakeUp|ױ,scope=hair|ë,#female|Ů + V MakeTrouble| + V compile|༭,ContentProduct=text| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| +ѧ V engage|,content=research|о +ѧ V research|о,content=knowledge|֪ʶ + V ShowOff|ҫ +һײһ V slack|͵ + V GuiltilyConscious| + V decide| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V RegardAs| + V compile|༭ + V do| + V happen| + V pretend|װ + N text| + V do|,content=crime| + V cease|ͣ + V follow| + V guarantee|֤ + V deceive|ƭ +Ϲ N look| + V farewell| + V help| + V do| +ŵԵ N human|,*MakeAppointment|Լ,#bear|е + V compile|༭,ContentProduct=text|,#music|,entertainment| + V oppose| + V do|,content=evil| + V do|,content=evil| + N method| +Ա V suffer|,content=restrain|ֹ + N InstitutePlace|,@produce|,factory|,industrial| + V end|ս + N attribute|,behavior|ֹ,&human| + V MakeTrouble| + V obstruct|ֹ + V die| + V MakeTrouble| + V ShowEmotion|ʾ + V draw|,ContentProduct=image|ͼ + N human|,#occupation|ְλ,literature| +Э N community|,literature| + V deceive|ƭ + V pretend|װ + V estimate|,commercial| +鷸 V do|,content=crime| +Ը V suffer|,content=restrain|ֹ + V damage| + V lavish|˷ + V reside|ס + V perform|,content=music| + V tease|ȡ +׼ V prepare|׼ + N material|,?edible|ʳ + V MakeTrouble| + V embarrassed|Ϊ +ɢ V flee| + V do|,content=evil| +Ū V IllTreat| +Ż V ill|̬,#vomit|³ + N attribute|,behavior|ֹ,&human| + V follow| +Ʒ N readings|,literature|,entertainment| + V compile|༭,ContentProduct=music|,entertainment| + N human|,#occupation|ְλ,*compile|༭,#music| + N human|,#occupation|ְλ,*compile|༭,#music|,entertainment| + V ActGeneral| +ɫ V angry| +ʫ V compile|༭,ContentProduct=text| + V fit|ʺ + V suicide|ɱ + V MakeTrouble| +ʹ V painful|ʹ +ͼ V draw|,ContentProduct=image|ͼ +Ϊ V RegardAs| +Ϊ V conduct|ʵʩ +Ϊ V fulfil|ʵ +ΪDz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +α V forge|α +α֤ V prove|֤,content=information|Ϣ,fake|α,#police| +α֤ N human|,*forge|α,undesired|ݬ,#police| + V compile|༭,ContentProduct=text| + V MakeTrouble| + V compile|༭,ContentProduct=text| + N crop|ׯ,generic|ͳ +Ϣ V engage|,rest|Ϣ + V MakeSound| +Э N community|,literature| +ѧ V research|о,content=knowledge|֪ʶ +ҵ N fact| +ҵ N fact|,#education| + N attribute|,effect|Ч,&entity|ʵ,&act|ж + N fact|,function| + V influence|Ӱ + N purpose|Ŀ +ս ADJ aValue|ֵ,property|,fight| +ս V fight|,military| + N human|,*compile|༭,literature| +֤ V prove|֤ + V GoBackward| + V TakeVehicle| + V facing| + V put| + V sink|³ + V sit| + V obey|ѭ,content=time|ʱ + N image|ͼ + N attribute|,sequence|,&sit| + V wait|ȴ + V wait|ȴ + N tool|þ,@sit| + V sit| + N part|,%AnimalHuman|,nerve| +ʹ N disease| + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=detain|ס,cause=crime|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N tool|þ,@sit|,generic|ͳ + V suffer|,content=restrain|ֹ + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=IllTreat| + V uneasy| + V situated| + N livestock|,@sit| +ɽ N bird| +ɽۻ V refuse| + N human|,#occupation|ְλ,commercial| + V sit| +ʧ V lose|ʧȥ,possession=time|ʱ + V refuse| + V obtain|õ +̽ N human|,military|,*scout| +λ N location|λ,@sit| +Բ V uneasy| + V sit| + V obtain|õ +ҩ N medicine|ҩ +Դ V wait|ȴ,content=die| + V labour|ٲ + V manage| + N attribute|,posture|,#sit|,&human| + V labour|ٲ + N celestial| + N location|λ + N part|,%artifact|˹,base| + N part|,%aircraft| + N part|,%weapon| + N attribute|,sequence|,&sit| + N tool|þ,@sit| + N attribute|,number|,&location|λ,#sit| + N aircraft| + V situated| +ϱ N human|,$WellTreat|ƴ +Ͽ N human|,$WellTreat|ƴ +̸ V discuss| +̸ N fact|,discuss| +λ N location|λ,@sit| +ϯ EXPR aValue|ֵ,fullness|,full| +ϯ N location|λ,@sit| + N furniture|Ҿ,@sit| + N expression|,$obey|ѭ + N tool|þ,*tell|,#time|ʱ + N part|,%LandVehicle| + N part|,%artifact|˹,base| +أ ADJ aValue|ֵ,height|߶,tall| +أ V stand|վ +ؤ N human|,poor|,*beg|,undesired|ݬ +إ NUM qValue|ֵ,amount|,cardinal|,mass| +ئ NUM qValue|ֵ,amount|,cardinal|,mass| +ا ADJ aValue|ֵ,quality|,great|ΰ,desired| +ب ADJ aValue|ֵ,duration|,TimeLong| +ة N human|,*help|,#official|,past|,(China|й) +ة N human|,#occupation|ְλ,official|,past|,(China|й) +ث ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ث ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ث N human|,timid|,undesired|ݬ +ج ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ج N information|Ϣ,#die| +ج N thought|ͷ,#dream|,undesired|ݬ +ذ N weapon| +ز V die| +ز V die| +ز V die| +ط N human|,future| +ع V GiveBirth| +ع N character|,surname|,human|,ProperName|ר +ع V foster| +غ N part|,%AnimalHuman|,viscera|,#mating| +غ N part|,%AnimalHuman|,viscera|,#mating| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADV aValue|ֵ,frequency|Ƶ,again| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؾ N tool|þ,cubic|,@put| +ؿ N character|,surname|,human|,ProperName|ר +ؿб V look|,manner=slanted| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,surname|,human|,ProperName|ר + V put| +Ȼн ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V dizzy|,medical|ҽ + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {it|} + N human|,male|,employee|Ա,past| + N human|,undesired|ݬ +ɱ V fight| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ʒ N artifact|˹,fake|α,generic|ͳ + N tool|þ,cubic|,@put| + V lack|ȱ +ѷ V lack|ȱ + N tool|þ,$sign|д,*decorate|װ + N tool|þ,cubic|,@put| +Ҷ N tool|þ,$sign|д,*decorate|װ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,refined| + N symbol|,*guess|² + V break|۶ + V cut| + V dig|ھ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V cut| + N character|,(China|й) + V dig|ھ +ⲹ ADJ WorthNot|ֵ +ⲹ V WorthNot|ֵ + N character|,surname|,human|,ProperName|ר +⺷ ADJ aValue|ֵ,behavior|ֹ,fierce| +⺷ ADJ aValue|ֵ,courage|,brave|,desired| + V steal|͵ + N human|,steal|͵ + V split|ƿ +忪 V split|ƿ + V punish| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +붽 N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + N community|,ProperName|ר,(China|й) + V CausePartMove| + V separate| + N human|,young| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٳ N human|,family|,mass| + V stand|վ + V wait|ȴ + V stand|վ + V influence|Ӱ + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ +Ͳ N disease| +١ N character|,surname|,human|,ProperName|ר +٤ CLAS unit|λ +٤ N lights| +٧ V urge|ʹ +٨ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +٨ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +٩ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +٩ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +٩٩̸ V speak|˵ +٪ ADJ aValue|ֵ,height|߶,low| +٪ N human|,low| +٪޼ N time|ʱ,past| +٪ N human|,low| +٭ N human| +ٮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٮٮ ADJ aValue|ֵ,degree|̶,extreme| +ٮٮ N human|,able|,desired| +ٯ N character|,surname|,human|,ProperName|ר +ٯ PRON {SecondPerson|} +ٲ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +ٲȻ ADJ aValue|ֵ,content|,neat|,desired| +ٲȻ ADV {contrast} +ٳ N human|,family|,mass| +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٸ N tool|þ,#die|,$bury| +ٹ N character|,surname|,human|,ProperName|ר +ٹ V wait|ȴ +ٺ N payment| +ٺ» N payment|,past| +ٻ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٻӰ N image|ͼ,beautiful| +ټ ADJ aValue|ֵ,kind|,special| +ټ ADJ aValue|ֵ,size|ߴ,big| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N human|,crime|,undesired|ݬ,past|,*rob|,#waters|ˮ + CONJ {purpose} + N character|,(China|й) + N human|,#occupation|ְλ,*foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V MoveItDown| + V cease|ͣ +Ϣ V cease|ͣ + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ P {partner} + V lean|п +˱ V HoldInArm|§ + V lean|п + N human|,#GetMarried| + V remove| + N place|ط,ProperName|ר,(China|й) + V BeSame|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + V aValue|ֵ,similarity|ͬ,alike| + COOR {and|} + PREP {coagent} + PREP {contrast} + PREP {partner} + V cook| + V float|Ư + N character|,surname|,human|,ProperName|ר +٦ N character|,surname|,human|,ProperName|ר + N tool|þ,*cook|,past| + N tool|þ,*salute|¾,past| + N human|,undesired|ݬ,$MakeBad|Ӻ + V cook| + N tool|þ,cubic|,*cook| + ECHO {comment|} + N character|,surname|,human|,ProperName|ר + V LieDown| + V crawl| + N bird| + ADJ aValue|ֵ,age|,aged| +ҹ V endeavour| +Ը N aspiration|Ը,expect| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V despise| + V slander|̰ + V receive| + V tell| + N attribute|,ability|,&human| + V tell| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר +ڝ V slide| +ڝ V slide| +ڝŽ V stand|վ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| +ڤ ADJ aValue|ֵ,brightness|,dark| +ڤ ADJ aValue|ֵ,content|,profound| +ڤ N tool|þ,#bury|,#die| +ڤ˼ V think|˼,manner=endeavour| +ڤ N celestial| +ڤ V think|˼ +ڨ V LaughAt|Ц +ڨЦ V LaughAt|Ц +ک V sing| +ک V praise|佱 +ګ ADJ aValue|ֵ,speed|ٶ,slow|,&speak|˵ +ڭ V ExpressAgainst|Ǵ +ڭ N fruit|ˮ +ڮ V slander|̰ +ڮ V slander|̰ +گ N document|,royal|,past| +گ V order|,politics|,royal| +گ N document|,royal|,past| +ڱ V GiveAsGift| +ڱ V PassOn| +ڲ V deceive|ƭ +ڲƭ V deceive|ƭ +ڵ V ask| +ڶг ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ڶг N attribute|,content|,interesting|Ȥ,desired| +ڸ V ExpressAgainst|Ǵ +ڹ V explain|˵ +ڹ V explain|˵ +ڹע V explain|˵ +ں V persuade|Ȱ˵ +ں N human|,friend| +ڼ V boast| +ھ N document|,royal|,past| + V please|ȡ + V know|֪ + V please|ȡ + V please|ȡ + N human|,please|ȡ + V damage| +Ц V laugh|Ц,manner=please|ȡ + V please|ȡ + N character|,surname|,human|,ProperName|ר + V persuade|Ȱ˵ + V tease|ȡ + V salute|¾ + V visit| +˼ V visit| + V order|,politics|,royal| + V tell| + V know|֪ + ADJ aValue|ֵ,ability|,able|,desired| + V BeAble|ܹ + N information|Ϣ + V ask| + N plans|滮 + V arise| + V ExpressAgainst|Ǵ + V degrade| + V exile| + N character|,(China|й) +¥ N facilities|ʩ,space|ռ,@look| + N character|,surname|,human|,ProperName|ר +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V mad| + N text| + N facilities|ʩ,space|ռ,linear|,route|·,#land|½ +İ N facilities|ʩ,space|ռ,linear|,route|·,#land|½ + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N part|,%land|½,skin|Ƥ + N land|½,surrounding|Χ,#waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,skin|Ƥ + N waters|ˮ,surfacial| + N part|,%place|ط,mouth| + N location|λ,angular| + N part|,%land|½,base| + N part|,%country|,edge| + N part|,%earth|,angular| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) +ۡ N house|,#official| +ۣ N character|,surname|,human|,ProperName|ר +ۤ ADV aValue|ֵ,degree|̶,extreme| +ۤ N character|,surname|,human|,ProperName|ר +۪ N character|,surname|,human|,ProperName|ר +۫ N place|ط,ProperName|ר,(China|й) +۬ N character|,surname|,human|,ProperName|ר +ۭ N character|,surname|,human|,ProperName|ר +۰ N place|ط,ProperName|ר,(China|й) +۲ N place|ط,ProperName|ר,(China|й) +۳ N character|,surname|,human|,ProperName|ר +۴ N place|ط,ProperName|ר,(China|й) +۶ N waters|ˮ,ProperName|ר,(China|й) +۷ N place|ط,ProperName|ר,(China|й) +ۺ N character|,surname|,human|,ProperName|ר +ۻ N human|,agricultural|ũ +ۻ N human|,vulgar|,village|,undesired|ݬ +۾ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ۿ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ۿ V mobilize| + ADJ aValue|ֵ,courage|,brave|,desired| + V mediate| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +λ N tool|þ,cubic|,@put| +λ N tool|þ,cubic|,@put|,*clean|ʹ + N chemical|ѧ + N stone|ʯ + V BlockUp| + V pile|ѷ + V BlockUp| + N part|,%land|½,linear|,#water|ˮ + N waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +׳ N InstitutePlace|,*sell|,@buy|,commercial| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N character|,(China|й) + N facilities|ʩ,space|ռ,linear|,*drain|ų + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%country|,edge| + N part|,%land|½,slope|¶ + N part|,%land|½,agricultural|ũ + V FormChange|α,StateFin=OutOfOrder| + V fasten|˩ + N shape| + N shape| + N part|,%land|½ + N part|,%place|ط,mouth| + N attribute|,boundary|,&entity|ʵ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N InstitutePlace|,*sell|,@buy|,commercial| + CLAS NounUnit|,&RainSnow|ѩ + CLAS NounUnit|,&disease|,medical|ҽ + CLAS NounUnit|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,entertainment|,@perform| + N part|,%shows|,entertainment| + N place|ط + N space|ռ + N part|,%land|½ +ܭ N facilities|ʩ,#city|,skin|Ƥ +ܯ N part|,%building|,nerve| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܲ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ܸܸ N FlowerGrass| +ܽ N character|,(China|й) +ܽ N FlowerGrass| +ܽޡ N FlowerGrass| +ܾ N part|,%vegetable|߲,embryo|,$eat| +ܾ N vegetable|߲ +ܾ N tree| +ܾݴ N part|,%vegetable|߲,embryo|,$eat| +ܾݴ N vegetable|߲ +ܿ N FlowerGrass| +ܿ N part|,%vegetable|߲,embryo|,$eat| +ܿ N vegetable|߲ +ܿ N FlowerGrass| +ܿܿ N animate|,mass| +ܿ޷ N part|,%vegetable|߲,embryo|,$eat| +ܿ޷ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ȳ N part|,%vegetable|߲,embryo|,$eat| +Ȳ N vegetable|߲ + N character|,(China|й) + N FlowerGrass| + N FlowerGrass|,?medicine|ҩ,(China|й) + N FlowerGrass|,?material| + N crop|ׯ +ͷ N material|,?food|ʳƷ +ʵ N material|,#edible|ʳ + N character|,(China|й) + V break|۶,agricultural|ũ + V remove| +ϳ V remove|,agricultural|ũ + N chemical|ѧ + N FlowerGrass| + N material|,%FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N character|,(China|й) +״ ADJ aValue|ֵ,color|ɫ,green| +״ ADJ aValue|ֵ,scene|,exuberant|ï +ޣ N FlowerGrass| + N crop|ׯ,?material| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N part|,%vegetable|߲,embryo|,$eat| + N tree|,?medicine|ҩ + N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,red| + N FlowerGrass| + N FlowerGrass| + N place|ط,ProperName|ר,(China|й) + N material|,?food|ʳƷ + N tree| + N part|,%plant|ֲ,body| + N character|,(China|й) + N crop|ׯ + N AlgaeFungi|ֲ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N crop|ׯ + V disappear|ʧ + N FlowerGrass| + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N drinks|Ʒ + N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N character|,(China|й) +ݡ N disease| +ݥ N FlowerGrass| +ݩ N fruit|ˮ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݬ N FlowerGrass| +ݬ N human|,undesired|ݬ +ݭ N character|,(China|й) +ݯ N crop|ׯ +ݰ V arrive| +ݰ V arrive| +ݱ N FlowerGrass| +ݶ N FlowerGrass| +ݷ N character|,(China|й) +ݷ N character|,surname|,human|,ProperName|ר +ݷݷ ADJ qValue|ֵ,amount|,many| +ݷݷѧ N human|,*study|ѧ,education|,mass| +ݸ N character|,(China|й) +ݸ V laugh|Ц +ݸһЦ V laugh|Ц +ݹ N character|,(China|й) +ݹ N material|,?clothing| +ݹ N FlowerGrass| +ݺ N bird| +ݺ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݼ N part|,%entity|ʵ,heart| +ݼ N part|,%entity|ʵ,heart| +ݼݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݽ N part|,%plant|ֲ,body| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| + N chemical|ѧ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) +˿ N FlowerGrass|,?medicine|ҩ,(China|й) + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N human|,$ComeTogether| + N thing|,$ComeTogether| +ȡ V gather|ɼ + N character|,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + V coil| +ӻ V circle| + V circle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V foster| + V keep| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N part|,%FlowerGrass|,embryo| +ݳ N part|,%FlowerGrass|,embryo| +ݳ֮ N human|,family| + ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N character|,(China|й) + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N FlowerGrass| + N FlowerGrass| +޼ N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) + N part|,%plant|ֲ,embryo| + N character|,surname|,human|,ProperName|ר +ޤ N FlowerGrass|,?material| +ޥ N FlowerGrass| +ަ N AlgaeFungi|ֲ +ާ N FlowerGrass| +ެ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ެ V GiveBirth| +ޮ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ޮ N part|,%plant|ֲ,body| +ް V die| +ޱ N character|,(China|й) +޲ N character|,(China|й) +޲ N material|,?edible|ʳ,#crop|ׯ +޶ V PickOut|γ +޷ N FlowerGrass| +޷ N part|,%plant|ֲ,body| +޹ N FlowerGrass| +޹ N attribute|,odor|ζ,fragrant|,&physical| +޹ V cook| +޼ N FlowerGrass| +޽ N part|,%plant|ֲ,hair|ë +޽ N medicine|ҩ + V recreation| + ADJ aValue|ֵ,form|״ + V fall| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + V satirize| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,embarrassed|Ϊ + V check|,content=self| + V pull| + V cook| + N food|ʳƷ + V beat| + V beat| + V endeavour| + V merge|ϲ +ղ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ +ֿ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N character|,(China|й) +׾ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V force|ǿ + V press|ѹ +ָ V punish| + V rub|Ħ + V LaughAt|Ц + V BeNear| + V approach|ӽ + N part|,%character| + V lift| + V ExpressAgainst|Ǵ + V CarryOnBack| + N human|,#occupation|ְλ,commercial| + V throw| + V PickOut|γ + V fail|ʧ + V press|ѹ + V praise|佱 + V abandon| + V remove| + V PutInOrder| + V abandon| + V guess|² + V estimate| + V guess|² + V press|ѹ + N stationery|ľ,*fix|ס +۶ N part|,%clothing|,*fasten|˩ + V wipe| + N tool|þ,*wipe| + V push| + V pile|ѷ +ߗ N place|ط,@reside|ס,#house| +ߡ V fold|ߡ +ߢ V gather|ɼ +ߤ V economize|ʡ +ߤ V economize|ʡ +ߤ V subtract| +ߥ V VieFor| +ߥ V angry| +ߥ V throw| +ߥ V incite|ָʹ +ߦ V press|ѹ +ߦ N tool|þ,#cook| +ߨ V split|ƿ +ߩ V excrete|й +ߩ V excrete|й,patient=waste| +ߪ V PickOut|γ +ߪ V upgrade| +ߪ ADJ qValue|ֵ,amount|,many| +ߪ V upgrade| +ߪ V upgrade| +߫ V dump| +߬ V hold| +߭ V stab| +߭ N weapon|,*stab| +߮ N weapon|,*firing| +߰ N chemical|ѧ +߲ N character|,(China|й) +߳ V ExpressAgainst|Ǵ +߳ V cry| +߳ V ExpressAgainst|Ǵ +߳ V ExpressAgainst|Ǵ +߳ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ߴ ECHO sound| +ߴ V speak|˵ +ߵ V beat| +ߵ V salute|¾ +ߵ V beat| +ߵ N human|,*beat| +ߵͷ V salute|¾ +ߵͷ N InsectWorm| +ߵ V ask| +ߵ V diagnose|,means=beat|,medical|ҽ +߶ V speak|˵ +߷ N place|ط,country|,ProperName|ר,(Singapore|¼) +ߺ V cry| +ߺ V cry|,content=sell|,commercial| +ߺ V guide|,means=cry| +߻ N chemical|ѧ + V ill|̬,#respire| + V ill|̬,#respire| + N character|,(China|й) + N chemical|ѧ + STRU {MaChinese|} + V drink| + V savor| + V MakeSound| + ECHO sound| +ߴ N material|,?clothing| + ECHO sound| + V drink| +ɽ ADJ aValue|ֵ,GoodBad|û,good|,desired| +׹ V ComeToWorld| + V MakeSound| +ર N MusicTool| +ર N clothing|,#foot| + N character|,(China|й) + ECHO sound| +ͱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +͹ N fact|,queer| +β V speak|˵ + V laugh|Ц + ECHO sound| + V CausePartMove| + ECHO sound| +ز V speak|˵ +ߴ N material|,?clothing| + V ExpressAgainst|Ǵ + N character|,(China|й) + ECHO sound| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V talk|̸ +߶ V speak|˵ + V pant| + V weep| + ECHO sound| + N MusicTool| + V sigh|̾ + V weep| + N character|,(China|й) + V jet| +Ͳ N tool|þ,*inhale|,#gas|,#liquid|Һ + ECHO sound| + N character|,(China|й) + V cry|,#bird| + V vomit|³ + V eat| + V entice| + N character|,(China|й) + V cry| + ECHO sound| + V drink| + V weep| + V weep| +ੲ V speak|˵ + ECHO sound| + ECHO sound| + N character|,(China|й) + V speak|˵ +Ȼ̾ V sigh|̾ +̾ V sigh|̾ + ECHO sound| + ADJ aValue|ֵ,occasion|,quiet|,desired| + STRU {MaChinese|} + N human|,crime|,undesired|ݬ + N part|,%animal|,mouth| + N character|,(China|й) +໴ V HungryThirsty| +໴ ADJ HungryThirsty| + N part|,%AnimalHuman|,viscera| + V CausePartMove| + ECHO sound| + ECHO sound| + V MakeSound| + V speak|˵ + V bite|ҧ + ECHO sound| + V angry| + V blame|Թ + N phenomena|,#StomachTrouble|֢ + N phenomena|,#ill|̬,#respire| + ECHO sound| + V cry|,#beast| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V StomachTrouble|֢ + ECHO sound| +Ц V LaughAt|Ц + N part|,LandVehicle| +ͷ N part|,LandVehicle| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + N chemical|ѧ + ECHO sound| +ʹ V incite|ָʹ + N character|,(China|й) +ֹ V ExpressAgainst|Ǵ +ֹ V speak|˵ +ֹ V think|˼ + N chemical|ѧ + ECHO sound| + ADJ aValue|ֵ,SoundVolume|,loud| + V drink| + ECHO sound| + V HoldInMouth| + V KeepSilence|˵,cause=fear| + V laugh|Ц +ͷ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ͷ N method|,interesting|Ȥ +ͷ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N character|,(China|й) + N character|,(China|й) +ž ECHO sound| + ECHO sound| + V speak|˵ + N human|,young| + N human|,young| + ADJ aValue|ֵ,range|,all|ȫ + V study|ѧ,result=ignorant|֪ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + V delimit| + N facilities|ʩ,@foster|,#livestock| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N clothing|,#body|,female|Ů + N fund|ʽ,#country| + N clothing|,#head|ͷ,past| + N character|,(China|й) + N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,military| + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧲ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧿Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N land|½,protruding|͹,desolate| + ADJ aValue|ֵ,similarity|ͬ,different| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,branch|֧ + N character|,(China|й) + N land|½ + N character|,surname|,human|,ProperName|ר + N land|½ + N CloudMist| + N land|½ + N land|½,#waters|ˮ +ᵽ N land|½,#waters|ˮ + N land|½ + N part|,%earth|,mouth| + N character|,(China|й) + N land|½ + N character|,(China|й) + N land|½,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,special| + N character|,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + V appear| + V appear|,politics| + N character|,(China|й) + V wounded| + N animal|,young| + N human|,family|,male|,young| + N animal|,young| + N human|,undesired|ݬ + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) +϶ ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,height|߶,tall| +ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + N part|,%land|½,head|ͷ +۷ N part|,%entity|ʵ,head|ͷ +ء V walk|,manner=slow| + V hesitate|ԥ + V obey|ѭ + V surrender| + V do|,manner=biased|ƫ + V do|,manner=biased|ƫ,undesired|ݬ +˽ V do|,manner=biased|ƫ,undesired|ݬ +˽ N fact|,deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N human|,future| + V SelfMove| + V walk| + N attribute|,property|,&entity|ʵ + V include|,military| + N information|Ϣ,*prove|֤ + V levy| + V request|Ҫ + N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N beast| + N beast| + N beast| + V engage|,content=catch|׽ס,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sudden| +⧶ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N fact|,die|,#medical|ҽ +⨺ N beast| +⨺ N fruit|ˮ + N beast| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +⫱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +⫼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ damage| + N beast| + N beast| + N beast| +ͷĿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N beast| + N part|,%AnimalHuman|,*bite|ҧ + N beast| + ADJ qValue|ֵ,amount|,many| +Ե V please|ȡ,purpose=$upgrade| + V ize|̬,PatientAttribute=soft| + N material|,sweet|,?edible|ʳ + V tired|ƣ + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + N food|ʳƷ + N payment| + N food|ʳƷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N food|ʳƷ + V cook| + V OutOfOrder|,#edible|ʳ + N food|ʳƷ + ADJ aValue|ֵ,taste|ζ,good|,desired| + V eat| + N human|,#occupation|ְλ,*cook| + N room|,@cook| +ҳ N room|,@cook| + V protect| + N attribute|,length|,&human| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,religion|ڽ + N house| + V GoOn| + V bear|е + N part|,%AnimalHuman|,body| + V receive| +ѡ V win|ʤ + V guess|² + V think|˼ + V guess|² + V guess|² + V think|˼ + V repent|û + V admit|,religion|ڽ + V repent|û + V angry| + V irritate|ŭ + V angry| + V sad|dz + V disobey|Υ + V disobey|Υ + V sorry|ϧ + V melancholy| + V joyful|ϲ + V shy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V fear| + ECHO sound| + V sorrowful| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,happy|,desired| +ȻԵ V satisfied| + V sorrowful| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADV aValue|ֵ,behavior|ֹ,cautious|,desired| + V obey|ѭ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V disobey|Υ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V flee| + V respect|,target=human| + V satisfied| + V satisfied| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ȼ V melancholy| + V melancholy| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V fear| +Ȼ V fear| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V stupefied|ľȻ + V stupefied|ľȻ +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ס V stupefied|ľȻ +㷲 V uneasy| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + V tired|ƣ + V understand| + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + V expect| +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +¶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V shy| + V fasten|˩ + N tool|þ,*fasten|˩ + N character|,surname|,human|,ProperName|ר +Ʒ N character|,surname|,human|,ProperName|ר + N InstitutePlace|,@exam|,past| + N part|,%building|,royal|,mouth| + N character|,surname|,human|,ProperName|ר + V pity| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sad|dz + N part|,building|,mouth| + N part|,%place|ط,mouth| + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|· + N place|ط,ProperName|ר,(China|й) + N part|,%building|,mouth| + N character|,(China|й) + N part|,%building|,mouth| + V supervise|,content=mouth| + N human|,#occupation|ְλ,*defend|,#building| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,range|,all|ȫ +ؼ N community|,family|,all|ȫ + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N house|,royal| + V lack|ȱ + N result|,wrong|,undesired|ݬ + V lack|ȱ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&land|½ + N wood|ľ + V kill|ɱ + V damage| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V wash|ϴ,patient=hair|ë +ԡ V exist| +ԡ V wash|ϴ + N waters|ˮ,ProperName|ר,(China|й) + ECHO sound| + ECHO sound| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N CloudMist| +һ V collude| +һ V fit|ʺ +ˮ N water|ˮ,liquid|Һ,waste|,#livestock| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,#human|,country|,politics|,great|ΰ + N part|,%AnimalHuman|,waste|,liquid|Һ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + V StateChange|̬ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial| + N material|,?drinks|Ʒ + CLAS NounUnit|,&waters|ˮ + ADJ aValue|ֵ,depth|,deep| + V disappear|ʧ +û V disappear|ʧ + V disappear|ʧ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,clearness|,clear| + V soak| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,clearness|,clear| + V look| + V read| + N land|½,surrounding|Χ,#waters|ˮ + N land|½,surrounding|Χ,#waters|ˮ + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,small|С,linear| +丰 ADJ qValue|ֵ,amount|,few| + V flow| + N waters|ˮ,linear| + V wash|ϴ + N land|½ + N waters|ˮ,ProperName|ר,(China|й) + V wash|ϴ,patient=material| + N waters|ˮ,ProperName|ר,(China|й) + V despise| + N facilities|ʩ,#liquid|Һ,linear| +ְ V disobey|Υ,content=duty| +ְ N fact|,disobey|Υ,content=duty| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N character|,(China|й) + N sound|,#water|ˮ + V cook| + V wash|ϴ + V cook| + V food|ʳƷ + V BlockUp| + V disappear|ʧ + V sink|³ +û V destroy| +û V disappear|ʧ + V destroy| + V disappear|ʧ + ADJ aValue|ֵ,form|״,dented| +а ADJ aValue|ֵ,width|,narrow|խ + N waters|ˮ,ProperName|ר,(China|й) +Ⱦ V AlterColor|ɫ +Ⱦ V PlayUp|Ĵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +̫ N place|ط,capital|,ProperName|ר,(Canada|ô) + N part|,%land|½,#waters|ˮ,edge| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,kind|,ordinary| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N phenomena|,disorder|,undesired|ݬ + N room|,@excrete|й + ADJ aValue|ֵ,clearness|,blurred| + N chemical|ѧ + ADJ aValue|ֵ,stickiness|,sticky| + N stone|ʯ,#AnimalHuman|,waste| + ADJ qValue|ֵ,amount|,many| + N waters|ˮ + N waters|ˮ,surfacial| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,weak| + V transport| + V transport| + N waters|ˮ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V ComeTogether| + N waters|ˮ,surfacial| + N water|ˮ + V filter| + V soak| + N water|ˮ + N water|ˮ + N RainSnow|ѩ,good| + V disappear|ʧ +Ȼ N weep| + N edible|ʳ,*feed|ι,#animal| + N place|ط,ProperName|ר,(China|й) + V flow| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| +̨ N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + V moisten|ʪ + V soak| +Ⱦ V soak| +Ⱦ V teach| +ʪ V moisten|ʪ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,#waters|ˮ,*protect| + V wash|ϴ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,area|,wide| +嫺 N land|½,surfacial|,barren| + N waters|ˮ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| + V delay| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + N attribute|,occupation|ְλ,&human|,royal| + N house| + N house|,royal| + N human|,royal| + V awake| + N house| + N place|ط,broad| + N earth| + ADJ aValue|ֵ,behavior|ֹ,unfortunate| + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*disable|м,#leg| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N disease|,scope=speak|˵ + V welcome|ӭ + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ V aValue|ֵ,similarity|ͬ,different| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| + ADJ aValue|ֵ,similarity|ͬ,different| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,distance|,near| + N character|,(China|й) + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ + N facilities|ʩ,route|· + N method| + N character|,surname|,human|,ProperName|ר +ң ADJ aValue|ֵ,behavior|ֹ,free| +ң V escape|,cause=$punish|,#police| + N facilities|ʩ,route|· + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +پ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,duration|,TimeLong| + V dream| + V walk| + V SelfMove| + V read|,#internet| + V fill| + V walk| + V walk| + N character|,(China|й) +ѡ V select|ѡ + ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + V meet| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,attire|װ,careless|,undesired|ݬ + N tool|þ,*wipe| + N celestial| + N livestock| + N part|,%AnimalHuman|,base| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ͷ N human|,timid|,undesired|ݬ + N clothing|,#foot| + N weapon|,*firing| + N weapon|,*firing| + V remove| + V help| + V sell| + N human|,royal|,female|Ů +ɫ ADJ aValue|ֵ,color|ɫ,red| + N human|,royal|,female|Ů + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N character|,(China|й) + ADJ aValue|ֵ,earliness|,late| + N human|,family|,female|Ů + PRON {firstPerson|,female|Ů} + PRON {firstPerson|,female|Ů} + N character|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V GetMarried|,undesired|ݬ +氷 N human|,male|,*love|,*mating|,undesired|ݬ +永 N human|,female|Ů,*love|,*mating|,undesired|ݬ +氾 V GetMarried|,undesired|ݬ +ͷ N human|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̺ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| +浾 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N human|,family|,female|Ů + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N character|,(China|й) + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潸 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潼 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N human|,#occupation|ְλ,employee|Ա,female|Ů +Ů N human|,#occupation|ְλ,employee|Ա,female|Ů + N character|,(China|й) +濲 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V GetMarried| + V MakeAppointment|Լ +ź V reconcile| + N character|,(China|й) + V equal| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̺ ADJ aValue|ֵ,color|ɫ,red| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +μ V SeekPleasure|Ѱ,#mating|,undesired|ݬ +ο N human|,*SeekPleasure|Ѱ,#mating|,undesired|ݬ + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +϶ N humanized| + N character|,(China|й) + V WhileAway| +Ƥʿ N human|,male|,flighty|,undesired|ݬ +ƤЦ V laugh|Ц +Ϸ V WhileAway| +Ц V laugh|Ц +ӱ V change| + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,female|Ů +׸ N human|,female|Ů +׾ N human|,female|Ů +׾ V lose|ʧȥ,possession=family| + N character|,(China|й) + V urge|ʹ,ResultEvent=believe| + V GiveBirth| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N InsectWorm| + N character|,(China|й) + N AlgaeFungi|ֲ + N livestock|,strong|ǿ + N livestock| + N livestock|,mass| + N InstitutePlace|,@reside|ס,official| + N facilities|ʩ,route|· +վ N facilities|ʩ,space|ռ,#LandVehicle|,past| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + N livestock|,weak| + ADJ aValue|ֵ,courage|,brave|,desired| +罫 N human|,military|,brave| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock|,red| + ADJ qValue|ֵ,amount|,double| + N text| +֦ ADJ aValue|ֵ,necessity|Ҫ,redundant| + N livestock|,black| + N livestock|,female|Ů + V seek|ıȡ + N livestock|,strong|ǿ + N livestock|,red| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock| + N livestock|,strong|ǿ + V SelfMove|,manner=fast| + V stand|վ + N material|,?clothing| + N tool|þ,#wind|,*cool| + ADJ qValue|ֵ,amount|,many| + V FormChange|α,StateFin=spread| + V weaken| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N image|ͼ + N tool|þ,linear|,*fasten|˩ + N material|,?clothing| +秲 N material|,?clothing| +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + V inferior| + V fasten|˩ + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N material|,?clothing| + N material|,?clothing| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,color|ɫ,red| +糺 ADJ aValue|ֵ,color|ɫ,red| + V fasten|˩ + V wrap| +統 N fittings|,%clothing|,*decorate|װ +統 V wrap|,instrument=fittings|,#clothing|,#decorate|װ + N tool|þ,linear|,*fasten|˩ +練 N tool|þ,*decorate|װ +練 N bird| + V twine| + ADJ aValue|ֵ,color|ɫ,black| +˿ N tool|þ,*decorate|װ +ÿ N character|,surname|,human|,ProperName|ר + N material|,?clothing| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N material|,?clothing| + N clothing|,*salute|¾,#die| + N material|,?clothing| +ͷ ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +˿ V produce|,industrial| +˿ N InstitutePlace|,@produce|,factory|,industrial| + V fasten|˩ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V circle| + N tool|þ,linear|,*guide|,#livestock| + N tool|þ,linear|,*guide|,#livestock| + V fasten|˩ + NUM qValue|ֵ,amount|,cardinal| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +С N human|,undesired|ݬ + N chemical|ѧ + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ +ް N tool|þ,*print|ӡˢ + V slander|̰ + V pollute|ʹ + V slander|̰ + N fish| + N character|,(China|й) + N stone|ʯ + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ +ͩ N tree| + N place|ط,ProperName|ר,(China|й) + N tool|þ + N character|,(China|й) + N stationery|ľ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,kind|,special|,desired| + N character|,(China|й) + N stone|ʯ,treasure|䱦 + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| +b N sound|,#water|ˮ + N material|,?tool|þ,#decorate|װ,precious| + N treasure|䱦 + N character|,surname|,human|,ProperName|ר + N tool|þ,#decorate|װ,precious| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ,treasure|䱦 + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ +覲 ADJ aValue|ֵ,standard|׼,average|,desired| +覴 N attribute|,quality|,weak|,undesired|ݬ,&thing| +覴 N result|,undesired|ݬ +褻 ADJ aValue|ֵ,rank|ȼ,average| + N place|ط,country|,ProperName|ר,(Nauru|³) +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +³ N place|ط,capital|,ProperName|ר,(Nauru|³) +³ N language|,#country|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,brightness|,bright| +貶Ŀ ADJ aValue|ֵ,brightness|,bright| + N stone|ʯ + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼ ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,*decorate|װ +赻 V reject|ؾ +赻 V return| +л V reject|ؾ + N trace|,#OutOfOrder| + V contain| + N method|,*fight|,military| + N tool|þ,cubic|,@put| + N method|,*fight|,military| + N character|,surname|,human|,ProperName|ר + V fear|,cause=wrong| + N part|,%plant|ֲ,limb|֫ + N tool|þ,*pick|ʰ + N tool|þ,*pick|ʰ,agricultural|ũ + N part|,%plant|ֲ,limb|֫ + N fruit|ˮ + N tree| + N part|,%plant|ֲ,limb|֫ + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,distance|,far|Զ +ƺ V disappear|ʧ + V disappear|ʧ + V stab| + N tree| + ADJ aValue|ֵ,courage|,brave| + N bird| +ɽ N human|,military|,brave| + N part|,%MusicTool| + N part|,%machine| + N fruit|ˮ + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N tree| + N facilities|ʩ,space|ռ,#livestock| + N part|,%house|,#eye| + N tool|þ,cubic|,#die|,@store| +ѳ N LandVehicle|,*transport|,#human|,#die| + N tool|þ,*recreation| + ADJ aValue|ֵ,fullness|,empty| +ոӹ V endeavour| + N fruit|ˮ + N fruit|ˮ + N tree| + N tool|þ,past| + N part|,%ship| + N tree| + N tree| + N chemical|ѧ + N tree| +ེ N material| + N tool|þ,cubic|,@put| + N part|,%plant|ֲ,limb|֫ + N part|,%ship| + N tool|þ,police|,#crime|,*detain|ס + N tool|þ,police|,#crime|,*detain|ס + N tree| + N human|,desired|,important|,able| + N human|,important|,desired| + N tree| + N tree| + N part|,%building|,bone| + N part|,%building|,bone| + N tree| +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| + N crop|ׯ,?material| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N entity|ʵ,#religion|ڽ + N place|ط,country|,ProperName|ר,(India|ӡ) +ٸ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + N tool|þ,police|,#crime|,*detain|ס + N tool|þ + N place|ط + N place|ط,@ComeToWorld| + N paper|ֽ + N tree| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N tool|þ,cubic|,@put| + N part|,%ship| + V beat| + N tool|þ,*beat| + N tool|þ,cubic|,#die|,*store| + N human|,family|,male| + N tree| + N character|,(China|й) + N tool|þ,#beat|,#metal| + N tree| +ľ N tree| + N tree| + N fruit|ˮ + N tree| + N tool|þ,*beat| + N tool|þ,cubic|,*store|,#die| + N ship| + V fill| + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N part|,%building|,mouth| + N part|,%house|,bone| + N text| + N tree| + N fruit|ˮ + N tree| + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ,$eat| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%artifact|˹,*fasten|˩,#wood|ľ +ͷ N part|,%artifact|˹,*fasten|˩,#wood|ľ + N part|,%artifact|˹,*fasten|˩,#wood|ľ + N facilities|ʩ,space|ռ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ľ V disheartened| + N fruit|ˮ + N tree| + N fruit|ˮ + N tree| + N place|ط,city|,ProperName|ר,(China|й) + N tree| + N tree| + N part|,%ship| + N tree| + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,green| + N SportTool|˶ + N fact|,sport| + N tool|þ,cubic|,@put| + N material|,$burn| +Է N human|,#occupation|ְλ,agricultural|ũ + N part|,%ship| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N fruit|ˮ +ٺ ADJ aValue|ֵ,color|ɫ,red| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + N part|,%building|,head|ͷ + N part|,%inanimate|,%space|ռ,edge| + N part|,%inanimate|,edge| +ܹ N part|,%building| + N part|,%building|,head|ͷ + N part|,%building|,bone| + N plans|滮 + N beast| + V die| + V die| +л V die| + V die| + V die| + V die| + V die| + V put| +龫 V think|˼ + V put|,patient=tool|þ + V transport|,patient=tool|þ +복 N LandVehicle|,#die| +ǹ N InstitutePlace|,@salute|¾,@burn|,#die| + N fact|,salute|¾,#die| + V put| + N part|,%LandVehicle|,leg| + N character|,(China|й) + V lose|ʧȥ + V surpass|ǿ + N fact| + N part|,%LandVehicle| + N part|,%LandVehicle|,past| + V sorrowful| + N LandVehicle|,past| + V cease|ͣ + V end|ս +ꡱ V cease|ͣ,content=compile|༭ +ѧ V cease|ͣ,content=study|ѧ + N part|,%machine| + V PropUp|֧ + V beat| + ADJ aValue|ֵ,kind|,special| + N weapon|,stab| + V hide| + V restrain|ֹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N character|,surname|,human|,ProperName|ר +갷 V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N location|λ,space|ռ,angular| + N part|,%earth|,angular| +깶 N location|λ,angular| + ADJ aValue|ֵ,area|,wide| + N sky| +꼻һ V exist|,manner=TimeShort| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + V illuminate| + N lights|,#celestial| + ADJ aValue|ֵ,circumstances|,free|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,age|,aged| + N human|,aged|,desired| + N human|,aged|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,earliness|,late| + N character|,surname|,human|,ProperName|ר + N lights|,#celestial| +ӳ V illuminate| + ADJ aValue|ֵ,hardness|Ӳ,soft| + V farewell| +Υ V farewell| + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N lights|,#celestial| + N time|ʱ,night| + N lights|,#celestial| + N lights|,#celestial| + ADJ aValue|ֵ,source|Դ,original|ԭ + V beautify| + N character|,surname|,human|,ProperName|ר + V arrive| + V GiveAsGift| + V PassOn| +ݱ N fish| + V damage| +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N tool|þ,$GiveAsGift| + V estimate| + ADJ aValue|ֵ,fullness|,full| + V help| + V help| + V help|,patient=human| + V grant| + N tool|þ,$GiveAsGift| + V investigate| + V look| + V need|,manner=greedy|̰ + V meet| + V meet| + V meet|,royal| + V CausePartMove| + V look| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,sex|Ա,female|Ů +ţ N beast| +ţ N beast| + N location|λ,angular| + N part|,%AnimalHuman|,*feel| +ţ N livestock| +ţ N livestock| + V reward| + V reward| + V bring|Я + V lift| + V pick|ʰ + V split|ƿ + N part|,%AnimalHuman|,hand| +뢻 V arrange| + ADJ aValue|ֵ,age|,aged| +֮ N time|ʱ,#age|,aged| + N part|,%animal|,hair|ë + N part|,%bird|,hair|ë + N SportTool|˶ + N material|,?clothing| + N gas| + N gas| + N gas| + N gas| + ADJ aValue|ֵ,density|ܶ,dense| + N document|,royal| + N part|,%house|,#eye| + V punish| + N chemical|ѧ + N chemical|ѧ + N part|,%AnimalHuman|,arm| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%AnimalHuman|,viscera| + N edible|ʳ + N edible|ʳ + N character|,(China|й) +ͳ V explain|˵ + V quote| +ι N part|,%AnimalHuman|,bone| + N clothing|,#head|ͷ + N human|,future| + N chemical|ѧ + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,leg| +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,color|ɫ,red| +˿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N livestock| + N beast| + N part|,%AnimalHuman|,viscera| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ + N material|,?clothing| + V cook| + V cook| + V cook| + N part|,%AnimalHuman|,leg| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,flesh| + V shy| + N beast| + N part|,%AnimalHuman|,mouth| + N disease| + N part|,%AnimalHuman| +Ĥ N part|,%AnimalHuman| + N human|,desired|,important|,able| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V shy| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V respect| + V inhale| +쫷 N wind| + N wind| + N wind| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,content|,opened| +쳼 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +쳼 N place|ط,country|,ProperName|ר +쳼 N human|,(Fiji|쳼) +쳼 N language|,#country|,ProperName|ר +Ȼ ADJ aValue|ֵ,content|,opened| +촷 N shape| + N character|,surname|,human|,ProperName|ר + PREP {location} + ECHO {modality|} + PREP {time} + N tool|þ,mark|־ + N mark|־ + N tool|þ,mark|־ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V cook| + V cook| + N part|,%tool|þ,#illuminate|,important| +ʾ V ShowOff|ҫ +ҫ V ShowOff|ҫ + ADJ aValue|ֵ,brightness|,bright| + N lights|,#celestial| + N lights|,#fire| + V StateChange|̬,StateFin=liquid|Һ,industrial| + V WarmUp| + V cook| + V damage| + N fire| + V StateChange|̬,StateFin=dry| + V illuminate| + V cook| + V burn| + V produce|,industrial| + V burn| + V cook| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V StripOff|ȥ + V cook| + N symbol|,#quantity| + V press|ѹ +ٶ N tool|þ,*AlterForm|״,#level|ƽ + V AlterForm|״,PatientAttribute=level|ƽ +¹ N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N human|,#occupation|ְλ,*cook| + N tool|þ,*cook| + V cover|ڸ + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,brightness|,&inanimate| + N lights|,#morning| +΢ ADJ aValue|ֵ,brightness|,dark| + V inhale| +涷 N tool|þ,cubic|,@put| + N tool|þ,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N part|,building|,mouth| +ҳ N part|,%publications|鿯 + V salute|¾ + N phenomena|,#lucky|,happy|,desired| + V remove| + V remove| + N phenomena|,#lucky|,happy|,desired| + N attribute|,occupation|ְλ,&human|,royal| + N phenomena|,lucky|,desired| + N facilities|ʩ,space|ռ,@salute|¾ + N facilities|ʩ,space|ռ,@salute|¾ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V thing|,religion|ڽ + V think|˼,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + V PassOn|,possession=power| +ʦ N human|,religion|ڽ + N attribute|,kind|,&religion|ڽ + N phenomena|,lucky|,desired| + V remove| + V uneasy| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V despise| + ADJ aValue|ֵ,kind|,special| + N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,style|,free|,desired| +޼ V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N result|,wrong|,undesired|ݬ + V delay| + V due| + V rest|Ϣ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CONJ {EventResult|¼} + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,area|,wide| + N stone|ʯ + N stone|ʯ +ʯ N stone|ʯ + N stone|ʯ + N place|ط,ProperName|ר,(China|й) + V break|۶ + N chemical|ѧ + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ +ÿ N part|,%crop|ׯ,skin|Ƥ + N shape| + N material|,@building| + N tool|þ,*rub|Ħ + V drill|ϰ + V mobilize| + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ,#crop|ׯ +ͱ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + V touch| + N land|½ + N land|½,surfacial|,barren|,undesired|ݬ + N tool|þ,*grind|ĥ,#crop|ׯ + N facilities|ʩ,*carve|,*salute|¾ + N fact|,punish|,past| + N part|,%character| + V punish| + V press|ѹ + N tool|þ,*grind|ĥ,#crop|ׯ + N tool|þ,*grind|ĥ,#crop|ׯ + N MusicTool| + N MusicTool|,religion|ڽ + ADJ aValue|ֵ,form|״,dented| + V sleep|˯ + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,skin|Ƥ + V look| + N emotion|,hate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V look| +˯ V sleep|˯ +Ŀ V AtEase| + V look| +Ŀ V look| +Ŀ V stupefied|ľȻ + V look| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,size|ߴ,surfacial|,&land|½ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N place|ط,#country| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + CLAS unit|λ,&area| + N place|ط,village| + N beast| +ബ N ship| + V suffer| + V SufferFrom| + V die|,police| + V delay| + V detain|ס,police| + V restrain|ֹ + V stay|ͣ + V restrain|ֹ + V stay|ͣ + V stay|ͣ,police| +Ѻ V detain|ס,police| + N tool|þ,*catch|׽ס,#fish| + V wash|ϴ + V wash|ϴ,patient=skin|Ƥ +ϴ V wash|ϴ + V mobilize| + N metal| + N tool|þ,*fasten|˩ + N metal| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N metal| + N metal| +Ѱ N chemical|ѧ +ѺϽ N material|,metal| + ADJ aValue|ֵ,size|ߴ,big| + ADJ qValue|ֵ,amount|,many| + N material|,metal|,surfacial| +Լ N stationery|ľ,past| + N character|,surname|,human|,ProperName|ר + N metal| + N treasure|䱦,precious| + N metal| + N MusicTool| + N metal| + N metal| + V StateChange|̬,StateFin=liquid|Һ + V exhaust| + V weaken| + N tool|þ + N metal| + N metal| + N metal| + N tool|þ,#sound| + V catch|׽ס,police| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*hold| + N MusicTool| + N tool|þ,cubic|,*cook| + N money|,(Thailand|̩) + V gather|ɼ,manner=slow| +Ϥ V equal| + V venture|ð + N tool|þ,#crop|ׯ,agricultural|ũ + V choose|ѡ + V measure|,#weight| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V order| + V order| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N sound| + N metal| + N MusicTool| + N metal| +Ȼ ADJ aValue|ֵ,SoundVolume|,loud| + N sound| + ADJ aValue|ֵ,SmoothFinish|,polished| +ﭹ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N metal| + N metal| + N tool|þ,*rub|Ħ +ﱵ N tool|þ,*rub|Ħ + N tool|þ,*fasten|˩ + V suffer|,content=detain|ס,#police| + V carve| + N chemical|ѧ + V cut| + N tool|þ,*cut| + N tool|þ,*cut| + N wealth|Ǯ + V BlockUp| + V detain|ס,police|,crime| + N phenomena|,bad| + N disease|,TimeLong| + N metal| + ADJ aValue|ֵ,form|״,sharp| + N weapon|,stab| + CLAS unit|λ,&weight| + N fact|,secondary| + N money|,few| +ؽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| +ƶ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N metal| + N metal| + N part|,%tool|þ,*cut|,heart| + N tool|þ + V carve| + CLAS unit|λ,&weight| + N metal| + V carve| +ι V remember|ǵ +λ V carve| +ο V carve| +ο V carve| + N sound| + N metal| + N metal| + N character|,(China|й) + N attribute|,name|,&weapon|,ProperName|ר,past|,(China|й) + N metal| + V carve| +Կ V carve| + V carve| + N metal| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ֽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + N tool|þ,*decorate|װ,$PutOn| + CLAS unit|λ,&weight| + N metal| + N character|,(China|й) + N metal| + N weapon|,hidden| +ھ N InstitutePlace|,*protect| +ڿ N human|,#occupation|ְλ,*protect| +ʦ N human|,#occupation|ְλ,*protect| +ͷ N human|,#occupation|ְλ,*protect| + V cut|,industrial| +۴ N machine|,*produce| +ۿ N part|,%inanimate|,mouth|,industrial| + N tool|þ + N MusicTool| + N part|,weapon|,*firing| + V cut| + V cut|,industrial| + N metal| + N part|,%weapon|,head|ͷ,$firing| + N character|,surname|,human|,ProperName|ר + N tool|þ,*dig|ھ +ͷ N tool|þ,*dig|ھ + N metal| + N metal| + V press|ѹ,industrial| + N metal| + N metal| + V split|ƿ + N tool|þ,*split|ƿ + N tool|þ,*split|ƿ + N money| +ˮ N chemical|ѧ + N part|,%tool|þ,#livestock| + N part|,%AnimalHuman|,*listen| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N MusicTool| + N part|,%tool|þ,#livestock|,#head|ͷ + N weapon|,hidden| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,cubic|,@put| + CONJ {supplement|ݽ} + ADJ aValue|ֵ,height|߶,low| + N human|,low| + N bird| +ܦ N part|,%building|,skin|Ƥ + ADJ aValue|ֵ,fullness|,empty| + N part|,%plant|ֲ,embryo| + N part|,%crop|ׯ,skin|Ƥ + N part|,%plant|ֲ,embryo| + NUM qValue|ֵ,amount|,cardinal|,mass| + N place|ط,ProperName|ר,(China|й) + N edible|ʳ,*feed|ι,#animal|,generic|ͳ + V feed|ι + V prepare|׼,content=fight|,military| + N crop|ׯ + N part|,%plant|ֲ,body| + N material|,?edible|ʳ,#crop|ׯ + V planting|ֲ,target=self| + N character|,surname|,human|,ProperName|ר + N material|,?edible|ʳ,#crop|ׯ + N FlowerGrass|,undesired|ݬ +ݬ N human|,undesired|ݬ + N character|,(China|й) + N crop|ׯ + V know|֪ + N time|ʱ,year| + V know|֪ + N human|,friend| +֪ V know|֪ + N character|,(China|й) + N crop|ׯ + N humanized| + N character|,(China|й) + ADJ aValue|ֵ,stickiness|,sticky| + N InsectWorm| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + N attribute|,stickiness|,&inanimate| + N {stickiness|} +𤸽 V fasten|˩ + V fasten|˩ +ϼ N material|,*fasten|˩ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,stickiness|,sticky| +𤽺 N material|,?clothing| +𤽺ά N material| + V fasten|˩ + N material|,?food|ʳƷ,#crop|ׯ +Ĥ N part|,%AnimalHuman| +Ĥ N disease| + N stone|ʯ + N attribute|,stickiness|,&inanimate| +Һ N part|,%AnimalHuman|,liquid|Һ + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%fruit|ˮ,flesh| + N part|,%physical|,flesh| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,(China|й) + V obey|ѭ,religion|ڽ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N celestial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,color|ɫ,white| + N part|,%human|,white|,*bite|ҧ +𩷯 N chemical|ѧ + N part|,%human|,head|ͷ,white| + V endeavour| + N celestial| +µ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white|,&human| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,size|ߴ,big| + N plant|ֲ + N character|,(China|й) + N plant|ֲ,$eat| + N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,route|· + N part|,%building|,nerve| + N bird| + V ComeTogether| + V assemble|ۼ +𯼯 V ComeTogether| +𯼯 V assemble|ۼ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + N bird| + N tool|þ,*WhileAway| +β N FlowerGrass| + N bird| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ +ĸ N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird|,poison| + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + V kill|ɱ,instrument=poison| +𲶾 N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| +β N artifact|˹,*decorate|װ + N artifact|˹,*decorate|װ + N attribute|,kind|,&bird| + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +𺺷 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + N human|,family|,mass| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +O N human|,$ComeTogether| + N character|,(China|й) + N bird| + N bird| + N character|,(China|й) + N bird| + N tool|þ,$firing| + N part|,%tool|þ,heart|,#weapon|,#AimAt|,#firing| + N purpose|Ŀ + N tool|þ,#weapon|,$AimAt|,$firing| + V wait|ȴ + V stand|վ + V expect| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N bird| + N bird| + N clothing| +°ٽ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| + N bird| +ӥ N bird| + N bird| + N tool|þ,*WhileAway| +ӷ V roll| + N bird| + N character|,(China|й) +и N bird| +и ADJ aValue|ֵ,color|ɫ,green| + N bird| + N fish| + N disease|,#fever| +ѧ V imitate|ģ + N character|,(China|й) + N bird| + N FlowerGrass|,?medicine|ҩ + N bird| + N character|,(China|й) +Ӹ N bird| + N character|,(China|й) +ݺ N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N disease| +۴ N disease| + N disease| + N disease| + N disease| + N disease| +޴ N tool|þ,*cure|ҽ,*wrap|,medical|ҽ + N disease| + N character|,(China|й) + N disease| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N disease| + N disease| + N character|,(China|й) + N character|,(China|й) + N disease| + N disease|,#skin|Ƥ + N disease|,#skin|Ƥ + N character|,(China|й) + N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ + N disease|,#wounded| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N disease| +첡 N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N character|,(China|й) + N disease|,#skin|Ƥ + N disease| + N disease| + N disease| + N character|,(China|й) + N disease| +ӷ N medicine|ҩ + ADJ aValue|ֵ,kind| + N phenomena|,bad| + N disease|,TimeLong| + N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| + N disease| + N character|,(China|й) + V die|,police| + V die|,police| + N disease| +Ѫ N disease| + N disease| + V hate| + N disease| + N character|,(China|й) + N disease| +ͷ N human|,#disease| + V bury| + N character|,(China|й) + N disease| + V BeRecovered|ԭ,medical|ҽ + N disease| + N disease| + N disease| + N disease|,#skin|Ƥ + V itch| + N character|,(China|й) + N character|,(China|й) + N trace|,#disease| + N trace|,#disease| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +񤱡 ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + N character|,(China|й) +񥲡 N disease| + N character|,(China|й) + N disease| + N character|,(China|й) + N disease| + N disease| + N disease|,#plant|ֲ + N disease| + N attribute|,physique|,weak|,undesired|ݬ,&human| + N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ +ͷ N aspiration|Ը,expect|,#addict|Ⱥ + V BeRecovered|ԭ,medical|ҽ + V damage| + N disease| + N disease| + N beast| + N disease| +Ƥ N human|,undesired|ݬ +Ƥ N livestock|,undesired|ݬ + N disease| + N human|,#disease| + N human|,*SufferFrom|,undesired|ݬ + N character|,(China|й) +񯲡 N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + V mad| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V mad| + N human|,*mad|,undesired|ݬ + N disease| + ADJ aValue|ֵ,fatness|,bony| + V help| + V help| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,height|߶,tall| + V fear| + V frighten|Ż + V upmove| + N character|,(China|й) + N part|,%building|,head|ͷ + N sky| + N celestial| +񷶥 N part|,%building|,head|ͷ +¡ N part|,%building|,head|ͷ +® N tool|þ,*cover|ڸ + ADJ aValue|ֵ,form|״,protruding|͹,curved| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V bury| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,mouth| + N part|,%inanimate|,mouth| + N house|,#animal|,@alive| + N regulation|,ordinary| + V climb|ʵ + N CauseAffect|Ⱦ + N room| +񿾮 N facilities|ʩ + N attribute|,richness|ƶ,poor|,&human|,&organization|֯ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + N part|,%clothing|,#body| + N clothing|,religion|ڽ + N part|,%clothing|,body| + N tool|þ,@LieDown|,@sit| +ϯ N tool|þ,@LieDown|,@sit| + N human|,family|,male| + N part|,%clothing|,body| + N tool|þ,linear|,*fasten|˩ + N part|,%clothing|,#arm| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%AnimalHuman|,#leg| + N part|,%clothing|,#leg| + N character|,(China|й) + N clothing| + N character|,(China|й) + N material| + N character|,(China|й) + N clothing|,#body| + V exposure|¶ + N character|,(China|й) + V salute|¾ + N trace|,#clothing| + V decorate|װ +Ѻ V decorate|װ +Ѻ N human|,#occupation|ְλ,industrial| + V decorate|װ +װ V decorate|װ + V decorate|װ + N character|,surname|,human|,ProperName|ר + V StripOff|ȥ + N clothing|,#young| + ADJ aValue|ֵ,importance|,secondary| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +Խ N human|,official|,military|,past| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N part|,%clothing|,#body| + N clothing|,#body| + V repair| + N character|,(China|й) +װ N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,cubic|,@put| + N clothing|,#body| + N tool|þ,cubic|,@put| + V fasten|˩ + N material| + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,width|,narrow|խ +ۼ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,(China|й) + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V StripOff|ȥ + V rob| +ݶ V rob| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N trace|,#skin|Ƥ,#AnimalHuman| + N trace|,#clothing| + N trace|,#skin|Ƥ,#AnimalHuman| + N character|,(China|й) + N clothing|,#young| + N clothing|,#body| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%clothing|,*fasten|˩ + CLAS NounUnit|,&material| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official|,past| + ADJ qValue|ֵ,amount|,all|ȫ + N human|,#occupation|ְλ,official|,past| + V FormChange|α,StateFin=split|ƿ,medical|ҽ + V FormChange|α,StateFin=wrinkled| + V draw|,literature| +巨 N method|,*draw| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pity| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N part|,%tool|þ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V pile|ѷ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V remove|,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + V engage|,agricultural|ũ + ADJ qValue|ֵ,amount|,double| + V engage|,agricultural|ũ + V tie| + N tool|þ,#crop|ׯ,agricultural|ũ +ﲥ V spread|,agricultural|ũ + V spread|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,age|,aged| + N human|,aged| + N character|,(China|й) + N stone|ʯ,#AnimalHuman|,#listen|,waste| + N character|,(China|й) + V listen| + V listen| +ȡ V listen| + V listen| + N character|,(China|й) + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V disable|м,scope=listen| + N character|,(China|й) + ADJ aValue|ֵ,degree|̶,very| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + V fly| + V HaveContest| + N part|,%AnimalHuman|,mouth| + N waters|ˮ,ProperName|ר,(China|й) + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N text| + V CausePartMove|,PatientPartof=head|ͷ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N part|,%human|,bone|,#head|ͷ + N part|,%human|,#head|ͷ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,color|ɫ,white| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +򯾴 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,sincere|,desired| + V believe| + N beast|,humanized| + N beast|,humanized| + N part|,%human|,hair|ë +֦ N part|,%plant|ֲ,limb|֫ + N part|,%human|,hair|ë + N part|,%InsectWorm|,embryo| + N InsectWorm| + N beast|,poison| + ECHO sound| + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N InsectWorm| + N fish| + N fish| + N material|,?food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fish| + N fish| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +Ѳ N FlowerGrass|,?medicine|ҩ + N character|,(China|й) + N beast| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| +ɸ N part|,%fish|,flesh| + N facilities|ʩ,*foster|,#fish| + N fish| + N InsectWorm|,young| + N InsectWorm| + N character|,(China|й) +̵ N InsectWorm|,undesired|ݬ + N character|,(China|й) +ͳ N InsectWorm|,#disease| +ͳ没 N disease|,#InsectWorm| + N InsectWorm| +ʯ N stone|ʯ + N character|,(China|й) + N character|,(China|й) +ж N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N beast| + N humanized| + N beast| + N InsectWorm| + N character|,(China|й) + N fish| +׾ N phenomena|,#weather|,fake|α + N part|,%animal|,hair|ë,*stab| + V sting| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N attribute|,kind|,&InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| +ѵˮ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N character|,(China|й) + N beast| + N beast| + N humanized|,undesired|ݬ + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| + V deceive|ƭ + V WellKnown| + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N InsectWorm| + V CausePartMove| + V CausePartMove| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + V CausePartMove| + N character|,(China|й) + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N beast|,*fly| + N character|,(China|й) + N beast|,undesired|ݬ + N beast|,young| + N character| + N character|,(China|й) + N beast|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N fish| + N character|,(China|й) + N beast|,*fly| + N clothing|,#body|,generic|ͳ + N InsectWorm| + N part|,%animal|,hand| + N bacteria|΢ + N beast| + N clothing|,#body| + N beast| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N beast|,humanized| + N InsectWorm| + N character|,(China|й) +з N fish| + V sting| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N part|,%InsectWorm|,embryo| + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) +˹ N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N human|,undesired|ݬ + N character|,(China|й) + N fish| + N character|,(China|й) + N InsectWorm| + V coil| + N beast| + ADJ aValue|ֵ,form|״,curved| + N fruit|ˮ + N fruit|ˮ,humanized| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N beast| + N humanized| +󸹬 N celestial| +󸹬۹ V win|ʤ + N medicine|ҩ + N beast| + N celestial| + N humanized| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N part|,%fish|,skin|Ƥ + N tool|þ,cubic|,*TakeOutOfWater| + V estimate| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N MusicTool| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N FlowerGrass|,?addictive|Ⱥ + V exhaust| + V disappear|ʧ + ADJ qValue|ֵ,amount|,many| + N part|,%inanimate|,mouth| +϶ N part|,%inanimate|,mouth| + V savor| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N tool|þ,cubic|,#study|ѧ,@put| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,calm|,desired| +ƶ ADJ aValue|ֵ,trueness|α,true|,desired| +ƺ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + V obey|ѭ + V believe| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +־ V engage| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N facilities|ʩ,space|ռ,linear|,@transmit| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,@LieDown|,@sit| + N tool|þ,#royal| + N tree| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N character|,surname|,human|,ProperName|ר + N MusicTool| +ϸ N music| + N character|,surname|,human|,ProperName|ר + N tool|þ,*catch|׽ס,#fish| + N clothing|,#head|ͷ + N tool|þ,cubic|,@put| + N tool|þ,*wipe| + N tool|þ,*wipe| + N MusicTool| + N tool|þ,cubic|,@put| + V beat| + N fact|,punish| + N part|,%machine| + N fittings|,%building| +· V endure|,content=hardship| + N MusicTool| + N tool|þ,*wipe| + N fact|,eat|,entertain|д +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д + N tool|þ,*catch|׽ס,#fish| + N MusicTool|,(China|й) + N part|,%tree|,skin|Ƥ + N tree| + V guess|² + N character|,(China|й) + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,cubic|,@put|,*clean|ʹ + N tree| + N tree|,mass| + N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,*eat| + N tree| +ñ N clothing|,#head|ͷ,#RainSnow|ѩ + N tree| + N tool|þ,*hold| + N part|,%vegetable|߲,embryo| + N part|,%implement|,viscera| + N tool|þ,cubic|,@put| +ʳ N food|ʳƷ +ʳư V unfortunate| + N MusicTool| + N MusicTool| + N character|,(China|й) + N MusicTool| + N attribute|,kind|,#persuade|Ȱ˵,&text| + V persuade|Ȱ˵ + N text|,*persuade|Ȱ˵ + N tool|þ,cubic|,@put| + N tree| + N tool|þ,space|ռ,@detain|ס,#animal| + N fire| + N tool|þ,cubic|,@put| + N character|,(China|й) + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N MusicTool| + ECHO sound| + ECHO sound| + N material|,#tree| + N part|,%plant|ֲ,skin|Ƥ + N human|,#occupation|ְλ,industrial| + N tree| + N human|,#occupation|ְλ,industrial| +Ƭ N human|,*please|ȡ +Ƭ N material|,#tree| + N tree| + N material|,#tree| +ϯ N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N facilities|ʩ,#liquid|Һ,space|ռ + N tool|þ,cubic|,@put|,#food|ʳƷ + N tool|þ,@sleep|˯ + V insert| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů +ӧ N human|,#occupation|ְλ,official| + N clothing|,#head|ͷ + V filter| + V roll| + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N tool|þ,cubic|,@put| + V filter| + N MusicTool| + N sound| + V recite|ж + N attribute|,pattern|ʽ,&character| + N character|,(China|й) + V transport| + V beat| + V grind|ĥ + N character|,surname|,human|,ProperName|ר + N clothing|,#foot| + N land|½,barren| +± N land|½,barren| + N attribute|,standard|׼,&entity|ʵ + N tool|þ,#weapon|,$AimAt|,$firing| + N tool|þ,*measure|,#mark|־ + V defeated| + V ill|̬ + N ship| + N character|,(China|й) + N ship| + N ship| + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%ship| + N character|,(China|й) + N ship| + N ship| + N part|,%ship|,head|ͷ + N part|,%ship|,tail|β + N ship|,mass| + N character|,(China|й) + N ship| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,tail|β + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N part|,%ship|,tail|β + N character|,(China|й) + N part|,%ship|,head|ͷ + N ship| + N character|,(China|й) + N character|,(China|й) + N weapon|,ship|,military| + N tool|þ,*cover|ڸ,#sleep|˯ + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V circle| + V wave|ڶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N character|,(China|й) + N clothing|,religion|ڽ + N character|,surname|,human|,ProperName|ר + N clothing| + N character|,(China|й) + N part|,%AnimalHuman|,viscera| + N trace|,#clothing| + N livestock| + N part|,%chemical|ѧ +ǻ N part|,%chemical|ѧ + N part|,%chemical|ѧ +Ȼ N part|,%chemical|ѧ + N chemical|ѧ + N human|,past| + N livestock| +ɹ N MusicTool| + N livestock| + N human|,past| + N part|,%chemical|ѧ +ʻ N part|,%chemical|ѧ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) +̵ N crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + V soothe|ο +ƽ V restrain|ֹ,politics| + N food|ʳƷ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + V sell| + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,brightness|,bright| +ȻһЦ V laugh|Ц + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,clearness|,clear| + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + V mix| +ۺ V mix| + V mix| + N food|ʳƷ + ADJ aValue|ֵ,concentration|Ũ,concentrated| +ݺ N tool|þ,sticky|,*fix|ס,*fasten|˩ + N tool|þ,sticky|,*fix|ס,*fasten|˩ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,taste|ζ,tough|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + PREP {LocationFin} + PREP {TimeFin} + CONJ {and|} + N character|,surname|,human|,ProperName|ר + N part|,%bird|,hair|ë +ë N part|,%bird|,hair|ë + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + V shut|ر +⶯ V shiver| +Ȼ ADJ aValue|ֵ,similarity|ͬ,alike| + V fly| + N bird| + N bird| + N material|,?tool|þ,#decorate|װ + V break|۶ + N character|,surname|,human|,ProperName|ר + N tool|þ,*break|۶ + V destroy| + V fly|,fast| + V walk| +Ȼ ADJ aValue|ֵ,posture|,gracious|,desired| +Ȼ V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + ADJ aValue|ֵ,posture|,gracious|,desired| + V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V recreation| + N part|,%bird|,hair|ë + N part|,%bird|,wing| + N disease|,#eye| + V detain|ס,police| + V fasten|˩ + N tool|þ,linear|,*guide|,#livestock| + ADV aValue|ֵ,degree|̶,extreme| + N part|,%AnimalHuman|,bone| + N part|,%entity|ʵ,heart| + N affairs|,engage| + N information|Ϣ,wrong|,undesired|ݬ + N shows| + N mark|־,military|,past| + N material|,?edible|ʳ,#crop|ׯ +Ƥ N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + N character|,surname|,human|,ProperName|ר + N music|,$sing| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,form|״,slanted| + N character|,(China|й) + V walk| + N character|,(China|й) + V walk| +ǰ V walk| + V SelfMoveInManner|ʽ + V SelfMoveInManner|ʽ + V shy| +Ȼ V shy| + V shy| + ADJ aValue|ֵ,color|ɫ,RedBrown| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| +ʯ N stone|ʯ,mine| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N medicine|ҩ,liquid|Һ + N medicine|ҩ,liquid|Һ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ + N medicine|ҩ + V buy|,commercial| + N drinks|Ʒ,$addict|Ⱥ + V sell|,commercial| + N material|,?edible|ʳ + N FlowerGrass| + V AppearanceChange|۱,scope=color|ɫ + N attribute|,appearance|,red|,&human| + N chemical|ѧ + N chemical|ѧ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N chemical|ѧ + V ize|̬ + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ + V dredge|ͨ,agricultural|ũ + V filter| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V salute|¾ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N character|,(China|й) + N character|,(China|й) + N material|,?food|ʳƷ +ඥ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N medicine|ҩ + N medicine|ҩ + V cut| + N material|,?food|ʳƷ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ + N drinks|Ʒ,$addict|Ⱥ + N food|ʳƷ + N bacteria|΢ + N fact|,*salute|¾,religion|ڽ + N material|,?edible|ʳ + V gather|ɼ,possession=fund|ʽ,commercial| + N drinks|Ʒ,$addict|Ⱥ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N livestock| + ADJ aValue|ֵ,taste|ζ,salty| + N material|,?food|ʳƷ,salty| + V sell|,commercial| + N ship| + V sell|,commercial| + V sell|,commercial| + V sell|,commercial| + ECHO sound| +Ȼ ECHO sound| + V ToAndFro| + V LookFor|Ѱ + ADJ aValue|ֵ,width|,narrow|խ +ü V CausePartMove|,PatientPartof=eye| + V wounded| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V jump| + V kick|߲ + V PutOn| + V PutOn| + N clothing|,#foot| + N clothing|,#foot| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,foot| + V sit| + V walk| + V walk| + V kick|߲ + N part|,%AnimalHuman|,#foot| + N part|,%AnimalHuman|,foot| +Ź N part|,%AnimalHuman|,bone|,#foot| + N part|,%AnimalHuman|,foot| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,foot| + N character|,(China|й) + V walk| + N character|,(China|й) + V sit| + V sit| + V disable|м,scope=walk| +˽ V disable|м,scope=walk| + V disable|м,scope=walk| + N human|,undesired|ݬ,*disable|м,#walk| + V disable|м,scope=walk| + N character|,(China|й) +ȭ N fact|,exercise| + N attribute|,distance|,&walk| + V upmove| +ΰ N tool|þ,*recreation| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V clean|ʹ,patient=facilities|ʩ,#royal| + V exposure|¶,#foot| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V rise| + V rise| + V FallDown| + N character|,(China|й) + V walk| + V walk| + V sit| + V jump| + V surpass|ǿ + V excited| + N part|,%AnimalHuman|,foot| +׹ N part|,%AnimalHuman|,bone| + V hesitate|ԥ +س V hesitate|ԥ + V hesitate|ԥ +鲻ǰ V hesitate|ԥ + V FallDown| + V fail|ʧ + V upmove| +ڽ V CausePartMove|,PatientPartof=foot| + V FallDown| + V GoRound|Χ + V walk| + V GoRound|Χ + V walk| + V CausePartMove|,PatientPartof=foot| + V roam| + V walk| + V kick|߲ + V follow| + N part|,%AnimalHuman|,foot| + V KeepOn|ʹ + V imitate|ģ + ADV aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V walk| + N character|,(China|й) + V FallDown| + N result|,wrong|,undesired|ݬ + V lavish|˷,patient=time|ʱ + V slack|͵ + V damage| + V damage| + V follow| + V kick|߲ + V walk| + V walk| + V engage| + V walk| + V walk| + V walk| + N facilities|ʩ,space|ռ,linear|,route|· +辶 N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,kind|,queer| + V hesitate|ԥ + V FallDown| + N attribute|,posture|,&livestock|,#kick|߲ + V fail|ʧ + N attribute|,posture|,&livestock|,#kick|߲ + N part|,%animal|,#skin|Ƥ,#limb|֫ + N part|,%beast|,foot| + V kick|߲ + V kick|߲ + N trace|,#SelfMove|,#CauseToMove|,#foot| + V damage| + V damage| + V surpass|ǿ + V surpass|ǿ + V jump| + V run| + N InsectWorm| + N beast| +Ƥ N part|,%beast|,skin|Ƥ,?clothing| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N tool|þ,*measure| + V unsatisfied| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N part|,%inanimate|,edge| + N stationery|ľ,@write|д + N tool|þ,cubic|,@put|,#drinks|Ʒ + N tool|þ,cubic|,@put|,#drinks|Ʒ +サ ADJ aValue|ֵ,circumstances|,happy|,desired| + V shiver| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N character|,surname|,human|,ProperName|ר + V slander|̰ + V ExpressAgainst|Ǵ + V slander|̰ + V pant| + V talk|̸ + V MakeUp|ױ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ů N human|,female|Ů,beautiful| +ױ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N human|,male|,beautiful| + N thunder| + N CloudMist| + N thunder| + V WeatherFine| + V calm| +ɫ V calm| +¹ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N RainSnow|ѩ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + N RainSnow|ѩ,many| + N RainSnow|ѩ,many| + N CloudMist| + N RainSnow|ѩ + N weapon|,$firing| + V replace|,patient=part| + N time|ʱ,#young| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ + V replace|,patient=part| + N time|ʱ,#young| + N human|,young| + N time|ʱ,#young| + ADJ aValue|ֵ,fullness|,empty| + V CausePartMove|,PatientPartof=mouth| + ADJ CausePartMove|,PatientPartof=mouth| + V aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V endeavour| + V endeavour| + V endeavour| + N fish| + N beast| + N bird| + N bird| + N attribute|,ability|,able|,&human| + ADJ aValue|ֵ,content|,profound|,desired| + N character|,(China|й) + N bird| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V check| + N emotion|,undesired|ݬ,#hate| + N human|,enemy| + N tool|þ,#sound| + N tool|þ,*MakeSound| + V apply|ͿĨ,industrial| + N metal|,material| + V carve| + N tool|þ,*carve| +ɵ N tool|þ,*carve| + N tool|þ,*carve| + N clothing|,#head|ͷ,*protect| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,*cook| + N metal| + V sharpen|ʹ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + V BeRecovered|ԭ,StateIni=alive| + N fish| + N fish| +׳ N InsectWorm| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N food|ʳƷ,#fish| + N food|ʳƷ,#fish| + N fish| + N fish| + V situated| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,surname|,human|,ProperName|ר + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N fish| + N fish| + N fish| + N fish| + N bird| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N beast| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N part|,%animal|,tail|β + N fish| +Ŀ N fish| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N human| +ѹ¶ N human| + V reside|ס,lonely| + N fish| + N fish| + N fish| + N material| + N part|,%fish|,viscera| + N material| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,(China|й) + N place|ط,country|,ProperName|ר + N place|ط,country|,ProperName|ר +˹̹ N place|ط,ProperName|ר +˹̹ N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר + N tool|þ,@sit|,#livestock| + V interrogate|,police| + V interrogate|,police| +Ѷ V interrogate|,police| + V produce|,industrial| + N material| + N chemical|ѧ + N character|,(China|й) + N part|,%machine| + V prepare|׼,content=livestock| + N part|,%AnimalHuman|,bone| + N tool|þ,*gamble|IJ + N tool|þ,*gamble|IJ + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N bird| + N character|,(China|й) + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,leg| +⸴ ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,(China|й) +Ĺ N part|,%AnimalHuman|,bone| + N character|,(China|й) +Ź N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + V punish| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N humanized|,undesired|ݬ,evil| +Ȼ V attract| +Ȼ V entice| + N attribute|,ability|,&attract| + ADJ aValue|ֵ,ability|,&attract| + N humanized|,#waterless|,undesired|ݬ,evil| + V dream|,undesired|ݬ + N beast| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N humanized|,undesired|ݬ,evil| + V entertain|д +Ͽ V entertain|д,patient=human| + V BeFull|Ա + V fulfil|ʵ + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰ + N humanized|,undesired|ݬ + N human|,*expect|,#eat| + N human|,undesired|ݬ,evil|,fierce| + N fact|,eat|,early| + N food|ʳƷ + N fact|,eat| + V MakeUp|ױ,scope=hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë +׿ N tool|þ,*perform|,#shows| + N part|,%human|,hair|ë + N time|ʱ,#young| + N time|ʱ,#young| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë + V apply|ͿĨ + ADJ aValue|ֵ,form|״,curved| + V FormChange|α,StateFin=curved| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,skin|Ƥ +޷ N part|,%human|,hair|ë +޽ N part|,%human|,hair|ë +޽ N part|,%human|,skin|Ƥ + N part|,%human|,hair|ë + N part|,%beast|,hair|ë +๷ N beast| + N character|,(China|й) + N mark|־,military| + V order| + N human|,military| + N human|,official|,military| + V fasten|˩ + N beast| +Ƥ N material|,?clothing| + N beast| + V ComeTogether| + N beast| +弯 V ComeTogether| + N beast| +¹ N beast| + N beast|,happy|,desired|,(China|й) + N beast|,happy|,desired|,(China|й) + V fight|,military| + V fight|,military| +鶷 V fight|,military| +ս V fight|,military| + N beast| +ţ N beast| + N beast| + N medicine|ҩ + N beast|,happy|,desired|,(China|й) + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +ɫ ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ + V dismiss| + V dismiss|,politics| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V slander|̰ + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N image|ͼ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| +Ȼ ADJ aValue|ֵ,brightness|,dark| +Ȼ V disheartened| +Ȼʧɫ V AppearanceChange|۱,scope=color|ɫ,StateFin=dark| +Ȼʧɫ V BeBad|˥ +Ȼ V sorrowful| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + V ill|̬ + N sound|,#sleep|˯ + N sound|,#sleep|˯ +˯ V sleep|˯ diff --git a/data/semdict.dat b/data/semdict.dat new file mode 100644 index 0000000..e3242ee --- /dev/null +++ b/data/semdict.dat @@ -0,0 +1,224 @@ + 75 [desired|] + 76 [undesired|ݬ] + 81 [desired|] + 101 [undesired|ݬ] + 104 [undesired|ݬ,#medical|ҽ] + 105 [disease|,undesired|ݬ,#medical|ҽ] + 106 [disease|,undesired|ݬ,#medical|ҽ] + 107 [disease|,undesired|ݬ,#medical|ҽ] + 108 [disease|,undesired|ݬ,#medical|ҽ] + 109 [disease|,undesired|ݬ,#medical|ҽ] + 110 [disease|,undesired|ݬ,#medical|ҽ] + 111 [disease|,undesired|ݬ,#medical|ҽ] + 112 [disease|,undesired|ݬ,#medical|ҽ] + 113 [disease|,undesired|ݬ,#medical|ҽ] + 114 [disease|,undesired|ݬ,#medical|ҽ] + 115 [disease|,undesired|ݬ,#medical|ҽ] + 116 [disease|,undesired|ݬ,#medical|ҽ] + 117 [disease|,undesired|ݬ,#medical|ҽ] + 118 [disease|,undesired|ݬ,#medical|ҽ] + 119 [disease|,undesired|ݬ,#medical|ҽ] + 121 [undesired|ݬ] + 122 [undesired|ݬ] + 123 [undesired|ݬ] + 124 [undesired|ݬ] + 125 [undesired|ݬ] + 126 [undesired|ݬ] + 127 [undesired|ݬ] + 128 [undesired|ݬ] + 129 [undesired|ݬ] + 131 [undesired|ݬ] + 135 [undesired|ݬ] + 142 [desired|] + 149 [undesired|ݬ] + 168 [desired|] + 262 [crime|] + 263 [crime|] + 264 [crime|] + 266 [commercial|] + 272 [#GetMarried|] + 274 [commercial|] + 284 [commercial|] + 286 [commercial|] + 289 [#GetMarried|] + 292 [commercial|] + 337 [instrument=leg|,instrument=foot|] + 338 [instrument=leg|,instrument=foot|] + 339 [instrument=leg|,instrument=foot|] + 340 [instrument=leg|,instrument=foot|,instrument=hand|] + 343 [location=#liquid|Һ] + 344 [#liquid|Һ] + 345 [location=sky|] + 492 [undesired|ݬ] + 511 [sport|] + 512 [SelfMove|] + 514 [undesired|ݬ] + 515 [undesired|ݬ] + 533 [medical|ҽ] + 545 [#wealth|Ǯ] + 735 [military|,police|] + 736 [medical|ҽ] + 814 [#time|ʱ,#space|ռ] + 815 [!appearance|] + 816 [*alive|,!age|,*die|,*metabolize|л] + 817 [!sex|Ա,*AlterLocation|ռλ,*StateMental|״̬] + 818 [!name|,!wisdom|ǻ,!ability|,!occupation|ְλ,*act|ж] + 819 [fake|α] + 820 [^*GetKnowledge|֪] + 821 [^*GetKnowledge|֪] + 822 [$foster|,~$consume|ȡ,~?edible|ʳ] + 823 [*fly|,~$consume|ȡ,~?edible|ʳ] + 824 [~undesired|ݬ] + 825 [*swim|,#waters|ˮ,~$consume|ȡ,~?edible|ʳ] + 826 [^*SelfMove|,^*StateMental|״̬] + 827 [$planting|ֲ,?material|,#edible|ʳ] + 828 [#wood|ľ,?material|] + 829 [~$planting|ֲ,~odor|ζ,~color|ɫ,~prettiness|,~*decorate|װ] + 830 [$planting|ֲ,?edible|ʳ,$consume|ȡ] + 831 [$planting|ֲ,$consume|ȡ,?edible|ʳ,#tree|] + 832 [~?edible|ʳ] + 833 [~*CauseToDo|ʹ,#disease|,#medical|ҽ,~undesired|ݬ] + 834 [^*alive|,^*die|,^*metabolize|л] + 836 [space|ռ,#lights|,#WeatherChange|] + 837 [space|ռ,#animate|,+event|¼] + 838 [#LandVehicle|,+VehicleGo|ʻ] + 839 [space|ռ,liquid|Һ,#water|ˮ,#ship|,+VehicleGo|ʻ,#fish|,+swim|] + 840 [space|ռ,gas|,#weather|,#aircraft|,#bird|,+fly|] + 841 [space|ռ] + 842 [*flow|,#waters|ˮ] + 844 [cold|,#liquid|Һ,StateChange|̬] + 845 [material|,~heavy|] + 846 [material|,#tree|,?building|,?furniture|Ҿ,$burn|,$lighting|ȼ] + 847 [*lighting|ȼ,*burn|,hot|] + 848 [~?material|] + 849 [#WeatherChange|,#celestial|] + 850 [liquid|Һ,#WeatherBad|] + 851 [gas|,#WeatherBad|] + 852 [gas|] + 853 [#electricity|] + 854 [!odor|ζ,#smell|,gas|] + 855 [#listen|,$transmit|] + 856 [?material|,$transmit|] + 857 [!color|ɫ,$transmit|,#illuminate|,#celestial|,#electricity|,#look|] + 858 [#lights|] + 859 [$create|,^$GiveBirth|!quality|,!price|۸,#material|,#instrument|,#commercial|] + 860 [!pattern|ʽ,!color|ɫ,#sex|Ա,$PutOn|,$StripOff|ȥ] + 861 [!taste|ζ,#livestock|,#fish|,#bird|,#vegetable|߲,#fruit|ˮ,$consume|ȡ,*feed|ι] + 862 [$cook|,$eat|] + 863 [$drink|,liquid|Һ] + 864 [medical|ҽ,*cure|ҽ,#disease|,#animate|] + 865 [material|] + 866 [expensive|,undesired|ݬ,$addict|Ⱥ,~#crime,|,~#police|] + 867 [$build|] + 868 [space|ռ,+reside|ס] + 869 [%house|] + 871 [$use|] + 872 [~*produce|] + 873 [*calculate|,#information|Ϣ,#software|] + 874 [space|ռ,#route|·,$TakeVehicle|,$drive|Ԧ,*transport|,*AlterLocation|ռλ] + 875 [#land|½,*VehicleGo|ʻ] + 876 [#waters|ˮ,*VehicleGo|ʻ] + 877 [#sky|,*fly|] + 878 [#family|,$decorate|װ] + 880 [!color|ɫ,!thickness|,#PenInk|ī,~*write|д,~*wrap|] + 881 [#paper|ֽ,*write|д,*copy|д] + 882 [*recreation|,*perform|,#music|,#entertainment|] + 883 [*exercise|,#compete|,#physique|,#sport|] + 884 [$use|] + 885 [#military|,#police|,#country|,*attack|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 886 [#computer|,#information|Ϣ,$compile|༭] + 887 [*produce|,*build|,*forge|α,#artifact|˹] + 888 [#value|ֵ,#commercial|] + 889 [$spend|,#money|,commercial|] + 890 [$spend|,#money|] + 891 [$earn|׬,$give|,$obtain|õ,#money|] + 892 [$earn|׬,*buy|,#sell|,$SetAside|] + 893 [*buy|] + 894 [precious|,expensive|,$SetAside|] + 895 [$read|,$compile|༭,$write|д,#information|Ϣ] + 896 [$compile|༭,$publish|,$read|,#time|ʱ,*disseminate|,#information|Ϣ] + 897 [+record|¼,+write|д,$read|] + 898 [#commercial|,#buy|,#sell|,#money|,wealth|Ǯ,#price|۸] + 899 [+record|¼,+write|д,#wealth|Ǯ] + 900 [$post|ʼ,~#friend|,~#family|] + 901 [*express|ʾ,#information|Ϣ] + 902 [!form|״] + 903 [#StateMental|״̬] + 904 [$cherish|Ļ,#feeling|,#AlterEmotion|,abstract|] + 905 [$undergo|,$MakeOwnKnowledge|ʹҸ֪,abstract|] + 906 [#volition|,abstract|] + 907 [$think|˼,abstract|] + 909 [$use|,#act|ж,#purpose|Ŀ] + 910 [*act|ж] + 911 [#act|ж] + 914 [#information|Ϣ] + 915 [#knowledge|֪ʶ,#recognition|֪״̬,!content|,#AlterKnowledge|֪,abstract|] + 916 [$read|,*express|ʾ,*teach|,*communicate|,#thinking|˼] + 919 [%language|] + 920 [%language|] + 921 [$read|,$write|д,$compile|༭,*express|ʾ] + 922 [text|] + 923 [$listen|,$perform|,$compile|༭,$entertainment|] + 924 [$look|,$draw|] + 925 [$perform|,$compile|༭,~entertainment|] + 927 [*control|] + 929 [$obey|ѭ,$disobey|Υ,police|] + 930 [$discuss|,$debate|,$decide|,$conduct|ʵʩ,~#associate|] + 931 [$have|,*use|,abstract|] + 932 [$bear|е,abstract|] + 933 [abstract|] + 935 [$engage|] + 940 [abstract|] + 941 [medical|ҽ,$cure|ҽ,#medicine|ҩ,undesired|ݬ,~#die|,~#bacteria|΢] + 942 [#human|,*ExistAppear|,*perish|,$establish|,*ActGeneral|,*AlterGeneral|,^*SelfMove|,^*metabolize|л,space|ռ] + 943 [#official|] + 944 [military|,#weapon|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 945 [*engage|,#affairs|] + 946 [*engage|,#affairs|] + 947 [#computer|,+read|,+communicate|,+post|ʼ,#information|Ϣ,commercial|] + 948 [+event|¼] + 949 [+event|¼] + 950 [abstract|] + 951 [abstract|] + 953 [necessary|Ҫ] + 1445 [#organization|֯,#employee|Ա] + 1446 [$employ|] + 1447 [#produce|,#repair|] + 1448 [#dig|ھ,#produce|,industrial|] + 1449 [#organization|֯,#employee|Ա,+produce|,+repair|,industrial|] + 1450 [#plant|ֲ,#planting|ֲ] + 1451 [#money|,#buy|,#sell|] + 1452 [#teach|,#study|ѧ] + 1453 [#cure|ҽ,#disease|] + 1454 [#compile|༭,#translate|] + 1455 [#perform|,#draw|,#carve|,#TakePicture|] + 1456 [#exercise|,~#SportTool|˶,~#compete|] + 1458 [~#manage|,~#country|] + 1459 [#politics|] + 1460 [#crime|] + 1461 [~#attack|,#fight|,#defend|] + 1463 [+alive|,~$ProvideFor|] + 1464 [~$FondOf|ϲ,~$loyal|Т] + 1465 [~$hate|] + 1466 [#police|] + 1474 [place|ط,#human|,#politics|] + 1475 [#country|,#organization|֯] + 1478 [#agricultural|ũ] + 1479 [space|ռ,linear|] + 1480 [character|] + 1492 [*crawl|,*swim|] + 1493 [*HoldInArm|§] + 1494 [*pick|ʰ,*HoldWithHand|,*crawl|,*catch|׽ס] + 1495 [*walk|,*run|,*jump|,*swim|,*kick|߲,*stand|վ] + 1496 [*walk|,*run|,*jump|,*crawl|,*swim|,*kick|߲,*stand|վ] + 1497 [*fly|] + 1498 [linear|] + 1499 [*HoldInMouth|,+consume|ȡ,+GoInto|,+GoOut|ȥ,+GoThrough|] + 1500 [*look|] + 1504 [$GiveBirth|] + 1506 [$consume|ȡ] + 1508 [abstract|] + 1517 [season|,warm|,~beautiful|,#weather|,#planting|ֲ] + 1518 [season|,hot|,#weather|,#RainSnow|ѩ] + 1519 [season|,chilly|,~beautiful|,#weather|,gather|ɼ,#crop|ׯ] + 1520 [season|,cold|,#weather|,#RainSnow|ѩ] diff --git "a/docs/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" "b/docs/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..149bdbeffd332abdb9c6bcadab65630f574d13ce GIT binary patch literal 356716 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 literal 0 HcmV?d00001 diff --git "a/docs/\273\371\323\332HowNet\265\304\264\312\273\343\323\357\322\345\307\343\317\362\274\306\313\343.pdf" "b/docs/\273\371\323\332HowNet\265\304\264\312\273\343\323\357\322\345\307\343\317\362\274\306\313\343.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..0be2b5cc9999bdecf639269f34185ba40be20cfd GIT binary patch literal 391932 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

Df`huPTLzT*A_uU?{065anQz>zOFV!leDWf}i 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⪚g=&5> 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≫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⪻{qXmE$N))yFVH=umd6$ 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Μ{_TYO#Vjv@hGkp3KFd&V=yJFi0Zt{5wyEy z@464Wc(wa#`yfDmDZg5XBYx$~{H%hKsEH zDFbHB40{RP_wJ}~gvH_QF4e%?^+ofs3=Vh4y>S!k4WpM@$I5=R_L2&{CflU|$^MmY zl*fPhMC5KINYHttqnXqiLE8Jyb+=6d^WQ`~N#j`_xnh#a5uWWB#0k(eT8bxOV*F6S zlmx#FFYGp0#Qv4n&utX2l^>57!a=V*clU{~m^EW$PL4u8dg{@?iA?^9@oP_{K7mp# z(})Ks+9U&$YfjWo%U2RRCeIjN#H^)^(4*A)?5Y%xladmLM1qNV(iwiDe%@aNvmdW%4pQl|r? zdaKP+smW|aNr|a)8W}NR5>>>yZq+3cSg%(|26Pa}Ll$Z|mnfuiVXJ4#ZgsK1nQPRV0pgagHsjQK&Q3>4Rvv(=8}8gp18{w-!+?t5T^zoHj4!L;ZD) zsZiK{p;Z_fIR5ALSNQu`yqCC5{dF9>%#k#9@K)`C|BV*W{a21M3NFe&r%rxYhjT~Y zFy2Mms~gviuru0jxq(8z&tHMX1E*zWH%w@7{pDt0v-x*=Rox&S{wz`r=#$+lkpIy%oq0?IAd z6U0-AOpuTfvSEp~)2r;6BTRq)MxUcl#;KD4|nV48n^nVW@}w#!`|BV*`qHE{f|zJ9E{e*7;O+>vf5t&>{XCeahK z2Sxi5hehERvM-l#zI=vRQ_u=-wc8fj)`s1vz-L{x(?Fxz-wntW_XeAGIBwP2Ob_t# zm(RA(F^K(CB&yG{7t+Mrl-Q7jKCw+~60V|)91DS`X^IZZTqIY=y9T0oxgf}GE}voMN!f$)RzT<`St z0&(r8xZfq*uh0t7iOh5HSQ!h&{Y8@ZxAh&TY2oUX#n`W=P?UtQ3S@t6tX^;7>pS1^ z9_G;yZkE?2G-TJ~n@GL+nc56PesWDJtLTpVtu|2>ZncpfA+=7KSB0?cad^0_VfJj# zK#;2n9?<}u_Ev2Nm3D9Iq~W*GD%P;PeR)jmR9}e%#()TZh-X(`h{i#+Xd_)lwG-4% z`t_R*(*iYSZ6fBhiWX=N+J4g+5^DOF7a|I$mK72X=qR&VL`l#x0g2+pzHp)^J;Tx< z^Bg0|D3mkQ`%>AJYY_Y8d;A7mw^3=DShqJS&G%=L#vjc`TCr}rk%e21U%i}1mYXS( zL_Eu0DiAx5mr^pTgVhDuE5a-K1rk7O#eIY1i-t=itcv(&Ghax53SYc@F}h5F;w0Cp z!g7fyCkm$84%~3aO2a41-7to?VjEc7jA^IB*>W=HNYIsDn%qQ1(8Af!iTLHGSsKMG zdE^YVlo2!Y(90FMYNBD)3E^UVbLU`hi0R2socY+)3Pg!lR3i0iyd)EVOsF}NfnDqh zjT*l5hj;#PdS7bJ#~D10QfehZ#8ZakDI#VI%xaF|vGJGf&1N07K;J3V@!dPeKV<$jg@&}=rRsS3 z-kP&qMqVgOgy_|ZQ!^}B6}?fc;_}f-<#Q@HRg@j(q_pk-dGvgwXz*pPMAD5GFDzr` zlZ#K!Jb~FSKKH5Ft3(?mvlNkeBpCTR4xH`w<|fAD_x||y+r*yTVpqh)r_VfH5>XO) zR!>7?oCTu@qp+v(hXUiWStTh_L@=i#|u zUirm^$v=gd^Dp)n;nF*sN)PfY!{f-9XzQo4lVAGu$FVejFV~Ou7N-D0h8+ zglug}rOQN_vJ6E$FvEFX6LCC$LUS!gZ^gb$mu<&b;vaCdY6;(1$k7; ze4Z_0_5AaXtqI^1hE`HgV%lnjq~rWRtq`HGespWthU@e!Cp>&&l|mA|7M)pM#JoAD zCM2Y!B$p*9*>t*QgNO)L6Ur#YvP9rO;-tDvqiQ>p z@hFQtqeP*s*>jaVf_O&_)-iZv^Y_PJL0uT}frhre;rAQR=FAyq0sc$Pvm2}MOEuGJ z;#TXSexri6Nv!IQcJlEO7yd_v<`mEZj;OtXkCe*c}G61t-oKL=sYS#YI!C`^Cap` zMd#vpY3^d;#T0V9%C!{yvAAO$|HvD7dpxrD6x@^Ts=Np3cDi%kN5Lo=SqGHO5@^8j zFHipWh^JXBPc(a3;0h(ICD&rpSCBB`Vx|bo*1YfxxT%|#h4237UT|b$@`1_4$WU(Q zRU*@VNB+3*IZ%GgSmZz+`Pe;#)i+yQ7o{z#Ivdu#=9oeu?5Lh!FB7UUM2T4F#q7+v zC!p>d+je-MQ6DM$Mo`s!gFkAg28|Eox{yQ(bYutKe* zE?!1HUr>@GlmlKN`G@0T6VK#3ap!4<5|PhXt607+y7UI%BeGM9tI86}T`%@|=Djqkqw z)%X75Z?PG8vFtKR*;16B0(+`+<*P*;|D)Ku_VEv|fK2%@O zR2us8$tSPo@nY)N*g8TX3rxM^?>cY@BnxAAM6eS z^nKe6+l}w9w%24lEiRPK&f~LZXq9tL%;aw#Jr_w;v&KpRpPBn~{I|=9OJaFIp-B{;`*ie-h*BIOsU2 zS!O6pEKe~w8|h}elHn2ON@|jPWf9}&(Bc#!6%H<wYXxXUnP)^i zyE^#?FFzecQIHMIhw++q+ulUwrn#l>p;EXmZ;(jb`Q80t{Ul}lheuP9Xi}s745~@f zIT@ASRw_jjb(MwuHOvFkZ>dVLFlFiv~)@$!oK% z-x|sr>u@PQN0eVInaky4SQ{&*<)GqAc8<6wE3bJO_$ec2z6|5a!Bd?9>XNUtbZET7 zh()}R`|bGYB$kS9o#X>ql*5C2-KE3KsEV82o2^$`h(3Mpg>xC?c`H*_@mKPlyW_8+ zx@k9qKE4v{Xg5lDrMN8|D)7{Lr_@4zbW&)3N;@ZihOlT`v&i$Q*}6jXUA5qeH6M+j z-WdK7{2c<~Y=Y3fYr6(U?oMT3k!-|oQ4ZFsc{^jm>Qwqx z5Eiyq$>J}yXRK5X-$x;mvbkI>JVoUc${&K9me?$X$-nriQ<;k%a;6|z8Mw0>iF-?E z(;c(b!2MergPnCqi(-+Z5t};mWTK1|!*fa&@>OT0k|d;j(;+?IUTd>eOPyYa^0KI)r{kxd}6vb?;Oz~~LFRvdt)$8Sx(80i~zA&^mwro;M4V@Dr3 zUHp&9k40*BCokq8W+hsraCQHh6{9ehij}5G==F%hcxZLo&e+65=g>WDV)FRUM*OlV z1!dTRDwP%nEn=vb4*Qcgvt8EvD?akV@i}GqYN0-6^c%7DTrj%rfL{f&z9^c1t zcXA^#w|TzxvVfu@3pHXmtjn|)(3!t+i7168TW#wtn49In%J3wb9XVFlFKPnynBdB$A zgIKRs6|3bMa{a_0+D5v*tR^^2o|ybmq*-e7EfvDr)O22fJhBe0Hkio=BNkKPJsG}S zSDOatXd;@)Led0TRw0e#8^-&aEcr)?$n0R+m|egxemwSp{^SE-sB)U5J*H7?UL2D3 zWXoO-*Pql*Cw>al?>Moo=g?TH%ifr%kJ|B1secA_+vxg(u)>(vMc5@PDDMy+TkpKB zLyAioCXdX#Fxz_pZlYFxYYUqVODsfDSj)xY3FK>QTT}FxvQZjaqYb?EPUlVj_`gH`PsOcsLp-znV&$R#xI zcCU7p2Uu@zbbBWlAJhUgYFd@wMd__eqjLsk4FX3sn4|VBpRi$L7w(6!j3C(DUMVkzMP679ba1`v1fWeZ!DJ4K3pH~wy@g@Mx`OiO&85Y0(7N# zE>}dMOt(&IO`7#;6|I(9%{Gu}rfbm}IFnIXq91ux@_D#|mgP$L?Bstvb?P+n6hUNl z3g)7n3}QsuJ2D9z+nr&1cN0g~_eNVSG+aw8)42HJ<;g#ZPX0ZZ^G@{WGjQli*pAtH zsQiJr3*qk0@sI9pVt=bDn9pNjVQDd)#NwQ?)|tid!mTeHyo@04s2;(AR&c1?g#3>A zy0Z&wWRZY_@#_cg>^+3MAVq~3rhb}ZG9~00SAD)Lt<3c^X z9`1md8c{*@POV99e0_auv)hO3Ihsa6UtPJHVnCBfMC@WGv8g|}hfdpcwGC){f1(UPNV5vfkh%9|a8_Gi{HQOXP`Hjgxh_q+? zDSZxFR^XB>Nzb#n*&MW{y=`}~etqZO`VCCJI=LTFR+ZVXTL)bVE0NC+%$<{CURAI6 zetE#hzxScYPGcN&EvV0HFRL$MsyIV0&}grBz1Mb0T+-VmAL$O|rY#f=%A{@hs$=>V zjz4)J(o5EJ^%Rk639+O=^R;bdfXS!6_mN1s#i(2sD!|lEx}68k5$2V;N3 zX&Go6md|#;cFMJ4fU--g3=d8y3MC;N1JY7_T<>hu+EuixikIsU0VnI}7D^tkWEh-H zoGV@umpI;GV;` zk$LY*Z<(wOKP`Tkfody?ZsX?myRY4S6W!6wD+wD{y=87XP9B0Z5{ZhnYvG%iK`*Fm zx@cKyC)Y&Tn;j;6On!WFK4Rx}Mor@B#O2~@*z~2`uX?z(eb{SN(DUkoK{)v1Mx<#3 zd6q??Ft;>AtiDN-+Yp1+R?E{)cFEe0(vh4dhf@f=cw@~i5h_)}D$}b|r)REZkSdu> z*TLQTH^K}xn#MEd zrV=w0D4tW<@E8+yF<`K_)|7ib_L|#GLO=2(=1l&v{}`+#TPI>{^Z)ezN;`J&cJOWK z^%BN>dy{TqhVg zp>B}} zXd{ben&ZC^RIv_8^<}69KVGNM z&Qy)+9yX<_x=w_P(b1|Bb~(SZdLPxH8&vBUZ7AE<`nb4JCW#Wp*J6WT9pDZ3udQ$7 z(G_e}kjL||SQWFBXv7rFBU;{(gBRM71w zZ@xrUzbd%`(Mx@=(H@}Hm%2<9RJR<=w~?r(MYe?Fd!LJ}Ud|M*lwr2bn$ySF3(Qfd z(F~zX^wO(^NVi_)N*P2iW(vz?D0MFE!`U~7;r3nc`yY+aT1g~&N#q%>C?d|T=9hEG z4b)04oYE78$6UXhdk*aA5Bzub#TP&r+O*b*hLK>=V-N%N%UhUeLeC2#3FfE18lT1ia zGa`f@*Wx@9hQm(MD2-rzJLiPD+eGldHf z@&tHlsC*~*a`QDbgRt#dc&w)(bs-IeO2&rPvYK8Kt*z+0u??jAxs0BGMoB3)j>4t# z%iJ}vOgvj=P$&v2Ujw~fXl701O|@)gVHPDSb`6Czl`e58G9nYcm!9*_ZV>&Zw1VL_ z#`}ZO#yYrD!einWAWzGSavJ;-jp^M*bkh}*CZHaFp#FFLKR~}+RS#SE`v=EAzjgcx zGc1{^l>@Bqtkq{ZTw=}_iJ=rFx#n7Az1Evm6I-6$%6E_%#C%GH>gdG((5-H`T^$=n z#SX_Rjc0;O62`xu@1JVpo$tRGxp4E7)bh(jiAb(P*19d)`63ph^vj9KX$WWSXM1b# zXiL*QR37L9zA4+^olJyfM98w zNer-VTJSC*dt;Wi(J)o}GJ{}W)Suyhll?y+zM#^66#bW4@!cr|g$BRljEct)!}qvG z8PTXxtdoRC@1^dYLot(COGH5zXRU<|unsR&7_^d&WP1uWeTVM2xZCOVw+_)sb`xar z0_v#f1=u+#yp?Gq)r$>Q2WXFLJ+Fpp%h=0|ksBq4={gFY&p=0SjHm`K z-k%FH>!}83Qq$%~#jpC;OQ`gK?>0wmg)wEJeqW zRuXyIg~UUutuG8`r)4{>@!H zSiZ4(a~gwWqqJ3kPi*mIaz^Zxl_sVJ7YA3ysBQXN?ilXa?Rjm~M$$MsBCwY1hSUD) z86}g(@?tzcpTecJ+-&L7 zb*MYW>*f(2KO2$rYFf_WVsb9GS^&Rk*IVn@^0$KR_lKB$j9_FqKAlb@el<5=&f;`h z2e5OQKc%|cC9xK4oIKl<~(y#Kd&@H-E3 zgzWSMrK~8J{M(sank<;O+D+eGhR3^{&BI~CZGYsLl2{1q*NbIBP0|@B+u<-OZ*vtcUx%HCp?XGNMkq)(R9%;(ReP|NpE-T_E**#7s$!lmR2iaC)EhjJ&Ym#Zmw zd0X|v{t#ZrsKOpujYtE~OEA4OFUlI{0D#J0DK7W4oJd5JZ z=j&_4Z7E3z=js$~nLOj+&@X2%U^%~(UCMzPq&tf(q7uYVcNm;0kTvZk*G|O*(6Yp- zd7{vqYu+lXqNDg#xL#uvjL?5@@2$H7u<62TF^NS=qXHs*=I2kXTtdmFX)TVkkN@`X zJeMM3LFHQ--Za0u{>`tT_e|^M#$^Nxme3+Nz&ob7i@zA|>svf-vQ{O29qnFg(_e>0 zEW`0&S1ix)(9iX9L^P5hD({*k10IBpU%HwVr2C+nrOIpzFO4pDKDLLr_w22e4P4vL z`d3VZ?O7~h(9a(K;A`R*l!{g%a?kJ-J2uA1-3%HPRBcb+4?7*1rqzYjSHiOynO?e) zx3Lst)g%p0{J1)0!WfFfRvMql|3>WdOE`YM z81ZzH(#j}2RZPcni1M?-1&L%7p(eYK8d6oPVZ*sw8@gEc+SbrK2>?Iw=u#w>W|H~S zV53~FRKOEUQTDt>TuzpQ9A0^>O;r_K{&;GY2nOP>;r5|f*302E$E=+W8wwU0Qmcdh z=+^dw4&|H=385D_=1WY5GV6OMI zePtWcx9qp8_wmhdkKcRa_}^gX+eTmCht@DO0@}@zOJz@io}n&ZeGJKINh-+@6^<3w zAVk$An?a>$DBThK8nMwLN-rcX&AyD~scD7|3ugqDWY>eak+MI;PJd^=vyJzXZ%qIG z3+QKi)M1XuI#UT75AP@5czzdC!;f`-!Gp8s-}D9;(zn?`*vI_F{_X+l4bu~P;KsSp zau2jindz{xL7vYLjm&bUX`{E-JtWrOzM=SZ6I3rYTx}!XV6;L3d5X)4ixB5?r{hmy z=4V%5I=={W*Q}C|(rVQj)h01!qe5a(biHI|d1QH}oW4RRB3@p|hg~F8$H(w+{Z{V) zcZP57Zg;WKt~go)TAi!V6~vn9-t=oIws@H)y8Beb=ky`g}bZc07Kfuu#H6>6%pZz*~xK+qir52RDcuZIkfWtrAM^ zTk92c>`LI=f#&kfL=z9czZfa;w7ewaL&79EHTic_xKUehY`nU#U%_6b-Pq`( z9(Y_hYGav+=U4FyM;Gf+RJxq5LOcG%LV8&2hJ2DPx=_ke4FYp|7+kG=KH z?p6y;k2$0&V638^(@@ZOU-O}j{0;JfdP^HJH3FEKL8^;Pdxd6;nEV|RvEy!Z`*NHTJW%9p8Qmv~} zHi@Nc^U-Mv2}aP_8q#}G+it?D3mQ`ZTNLBc1<0$-nL&m`hU;ptgJGW}vnm45mSqau zv!%zFGbntrf9`$^8&t#9htSu}sxwCQOYWDQZ^PJPG;RsS=jbc3OJRRhTdhI)M)U34 z{|&)NxVLtqOpY6mJ{2iBl5EiMr`@QRguUY#cTw8VD|H{eM!!OY;tk`#x$ct-WpYdwOityA%rZG50flfg)*v)y*1c{( zuv@5=t9jU*D)1~8r;QheaRT3#Mlyaw4z$38$g85k<7)hJio}{lIwwIL;lX&!P`5OO-!jKzL#3%n=FCix%c2A7AcsFDEV=SWKMRlkAWPUBVe_XsYkBVtt# zvR_@^$m7*zPkLQITQ)0H7t1%VZq5Wa)i~WcMZj`f-y^x;pmIyU9`;SO+)@j>a>b+&9O*u?9`fpXMubXlm=j0#jx$%!_IC09#P}ETPqJx+)59w^^p!{ zZ1VAEicck;U4#&bp5PPbDtPey`HPAne!^@oo=UB z!M5J_?vJt8y+7QlWAf9JAB;F8iBt%x6SlKBlopI+lkgm?awIyhu1>FEA;~UDO07N#pg4#($y+5Hp>&Bz5m(kv4;j!R*_^DznVG65}=urbLp)tzHxP+ z+^A!>I(A1k9y_-bHonLzQb{c$Z)eSvhO{P>$4lrXN*w*uC{BL(6O)h3T|+W1=#mq5 zHwXuF(Rkd4H>trt&~Z6)dSVSMlf*eI_^8VTO1&_ zeXX%%BAC1rsglnq1p-Z6rbwZ{FEMKp;SIIP57DWNDkB|}U%433=Zb6T0v0(+NO90x z&U&SfjY_Ao`~F;-fBWd;k+_pDyV3A?m`nnV>iMce!=XLO;oxvOON4^FDqmHXFwf1D z=V&aI*7*6bDnFOv=OE=w#r5I(fx4N)?f5_q0&Hvyg0B)S@kx2|)9R<8ra6g-oaZW^ zdnVj^bw*?jOayeTi% zSs__&ynK5G-OL-$R4Ftwfk~Y7;B}`fZ-Y7har5{`+~XfXQ)?)Ji1o6s)-1Ga*DbGu z-pW@KHZoSiCCH&xv`|brci7=d$X9dqc^BXR@Z|rERQZY&@USFJ5P2|#e5TBjA6IT^ z9sFrNqD9pd0hnt`YiWulxnK9x0PSICP$Md;X1itue=_-EMBUMktF^C_Wns4o5S6?{ zGaX>9aoV_Y1%jZLY!w~NlN}NLVn?W%a1B!m2cA43e@tRQSC_nN4wi3o4Q&IeUsj0S z(O1QccmbTAG?{Q>m#mQ0suX+iS`q3g?Q!o#NCHEPB8i30R6m6VHRkI>)CZe)yE{;` za!M{jrj+M5FQY=cS|z~fMrEYlKXJ6nk1CODP!!obK0JAP@}UVm!H2ON_vq~g{_abE z@Xg~-96Pw)c%8pBgSSq9>mv_-4UM(?EBi7YN)MEE6Fs9+k2Y|6`)cRZHZF~R=DXK! z;KjGUcsS$1tXP)opysFc$P-s4OOc#daWW_ux`Z4;8knbot= zD;cE946#pecfI#&M|fxSe{FZd<0Se(8WG~z`jf#v+?rZteUut>kRhz<(rTW?RO+eB z0uM@3nl%S?r(df$*s(V4lYSd&i+q6UEW0rkZ%lqZQnQ_tmm9Q1i8M++rN>#E$vwTy zX#}hFD$$rn{)6_HN8mmfkqTU1kdP`qwl-aY9H@cnW7m7V_4fPKBOiP;9T}b8n%YRA zUQ(EhgrCh#7f2M&KIHsz1?5UvBpBU@CO$rQ6-A0Ksx*`}bJ<;io!K>r0@?dR|Cad> zU9X|F1ne?(?K^weC=Rrs0k293Ps2^?P~8(zm$mQ|`*SZ*0LN?ncp!h7(a1)FlT+!*2Iw97$EZPt>O0bB5$8o6fyV z6EEK>8Ot$>lxf~CJT9*yKt*)yYA zRhV=&OUqp{`c$<-F9!H!*%qYhmFRw!K*Tciffx2 z&?B~W>JIS+Gj661MySgb4VUa??Vf2?&M}> zE~e|aT&T^){j=v4abTcl9E2+Y>QA_j?;L|$aW$<8`*mrD-G$JWx@5&)x_SN1+AZSq zXd_d^Vm4Qv$$}G#u15~gbISVC8cf}`ER7h@AiiVt>QS66_xk$lx3AyE(CTYl3qyOw zB#t0Z2*U7KOwVU0Q&1bCPnfGV{Pb)v3#+76xDw_vGo_OhYGUEkdJSDBlG`Q%UFTT} zsoA;tJhAX9U35~2PT%4WcF=7#OyXRG-?zp;5sZHv#-y!AyI6TW_&ee7qv+TJWyoTm zGFn#vU>vlrtcaxz;^2s0HX8#y@j-Xop+uuNSnT`u8tF3V9G5wASw z>fo^1+=`FQ3F}s^{@n!Mr7{DOaIf6Ly6T_@N-n z%aBfT3)B?2oFGvVK6d!N4;@Yw4*wMzUdJJr(`rgS6QI&t^fCURc=u(&9E2b}w}9 z?cs+{Kbpu9h_$kC7Q6E+IrNKbLT3%FQLSGJF+W@iCS<((*!WT+yLrJndR20KIm@8P z)^tMh)m}}oh{ihKSX^7g%JNNNX9vxu$q5Bi9_BwUe+J5I=M2GwL3U)z>yY=|(aH^bSlv+9hPbxd58jS&$M0;G)*#rTBl_Um zv=qPR&(lmsBEGsRk)TlICDV%#cEY&lP88aawh8Sj>zr|r*NdD?uq1cS=|wrlaZX>r z)S2}B;xy5-vSsw)z8bwfdK=Mox>sB|GJ@9KhZ9VtmaL_~)pWrPv3|X2c1qY!Y}o|0Rqnf z*8wvsbaFP9ys}k@z}SqaS72t$N?fLzQJ48yP!IA`;$=un0ylLbZtSM%O_)R7cbY`K z2<=KAOqh)>HjuL^r%t4r%_|xOgD|&KLStE<;V*!>w|@Sp#VS{_((o>JlKWM3*+yga zHu_iBo^e|c?opo>&Ol1(wXHK4PMe0j3i+n;48gW9PyXlT_ujVs_dcz3K2)#Fzw@O3sj%K*T%{5!@RRcrvKgI~=Mzw!Y zM^?-5L>K0(d1|o^T99}@?ZYj|(Tcvy%fAGNgXMXRIMWpHmH;}O=9XK~S@Xc17 zd0?`7eCy*dCZp3RP@kAsC?Q=fs)Ys^>!{-I%89MHD-7=a@B_*FRFss(WSECvYUaWU z8s&ZGS|8sy`1a=O9hi@bnT-ljZS9&%qnq>XMuOdR2+wf`A~vO9Guc71bB;Vami&_(IqXF)DeyA1rt*^Fkt4O;YZ6qk zv{AW%rBOzkU_doy*6JpQR3;F$!#~x1L$I-|GnX{kszhA?|z5<81c6%q0amMdJJ_g7WTiheDfPCx3!o zvmX&1Wg7-B5+ax==ckLP$pvn)dQ|Mh%GiGMvAxL{aEdw=&o5_5Fo4U1v?st7%o?HW zbK_qg|LpjSzdQa}P!-0I9fF^<6kqRD)TGA1D1}lh!quI_UpjpBwZq?sSqaN629BV| zGh*emI;&NPMN=xPqvXt`f)oteT~GyR6jLHiTWa`N?XI^*0RqdQcp3sr)fpNrt8osC?So`0=-z4LvT1H0)*@Ehz7e}Ik7;g1h?6f_hgIQk3Lsrlr4EjO~!_l#a`1gf9x zE;cdO&Why%#uMZ3Bz9-7XK(9J1cg^5EZ4F%f)|xW&B(-hP%}&&uBn?P37mY?)yL{v z9eadB<=zBaVG3luszN!oBh}V>D)~mcABGlO!<6_s#{cYiLaxiPEz&}fqWO66ud7=` zyy*^ECEw}zp^aa;Ct*_-X9~@U} zdK>ktle-U77#F^mcwyeGNCik4{vvw}<4=$O>GA5reUvPkX_WA_4{glf5i$Ev^1{q1 z&{bNs2CxQ{T1z88$*1C3rUgsrni zIvBribgX;NRXG36*o&USsIeN1Tnyb{rMQN|M#(zOLhTq`vk8Bvx{?WSVr|jA6u05! zi`^Qw#($QO%fg3b8YO*6O-tDPa-+H0{~sME7ZT-ZX0G;&C>E#Y$^>Vbqlzf4DR!v1 zwngOS0_5WIxsm`%;yHB*YTC@Z6@*!vb>fypj!kI4x3~RLw+|sp&6ZA+_&_XbW|74l zQ;(af*>!_>cUYBXrNtA))6mE%+w83OR#zaTrIcL6ME26`>;$GRh^fIe2GgVR4$&Uk zZget3QS zFB6TdTBj#LU7ESCm?MgvDM?j`86)o&;1G^%#8V;mszwUt0y~pk!Y4OAC_HcqTi?=} z!U!+Cw)@UE4kuxE>^Ku@JXcIe#q2~f1$To8?IF6WE-U4*{fUH=GIDwnT8XM;d9rh7 zO6Lo32c~~@7kgWqTS16l8~fc{>9=Rm~ADyeLceR_v>veg86EKlFM}6KvS*_I@6?C(`%AaJgRQX&k z$s;ewe7BBXy~plJ2xYlclkg-p{*_agiYPFYxES9-)hV_Ff%2AZ5ySdBt?eG}Y#qLD zZ%@a^9w^jGJnCYJiF+z!lp+B^jqa$MHg=pXrzPUpQ#HP%p`a~Q^fdIWSthc>Di5@7 zNQm>E#e@4hdQt{XK!ekZE& zEYXnJa}$^6P}G)`i~(BP?|tV6)SexBAyMd&8Yrlb|9N6-p|M0OSdfo1iv-|SuI{@w zJ~3t!T1qVv70(L`=IIEx`y0OX9+UpfT{&^W&QCjY#F%tLH{mqbIVlBcSuXL*n4M2c z$Ky#Ig5=c5Hh5K&g~^CQjcj}6;yL;}sB`-A^;2k+OvavpGZ|GjI2`-H+~PbJ&(o<| zJg&^W(*OG5Psdf8k|RP-%8!dPBkiD1UVL!FdWjCHP$!rGSZ3%aet9ur;-0l@ZRYTIL)y(&ouv_nl zS4@1xd#1I$f_|IpkuAL7JYjrZ#pl!qoMSHZp|&FJK<>&tWfKE-SldtIN@|VW5HJ+& z7Sl)mh4bAH1jy=Dy+H7%t*z=E47?Tls)Uhj8cWyE44P4Q1lM;R(?Gu^H;W{a_cP&~ zgMyin^L4O7JuaG2eXXH4&}gpoMnu@Srb)MuzP0R~)e!yBuZ)BHDeu^+p;Y z?@E>og;vTki{tqV3z;Q6(&5*dS8%xbL?XSI&s7LWhFVV#ac9@B*UA|G)I>rlODQR? zPpmTw1Q?rQlkbo-a;4FG&$0dE-Q7eh27KeE4E5pSJ?IY!6teyZhvKX6FdHazd_LZxb$J>DToDLszsXDE)8QgypUXKPt6+{>j5}o;SG8y5FGBu` zHn3LVUYDHY2>DLIOOXw4Y({%MtTk8ts{y)}8B!f&uT$ou1S(}N9x{^O$wo^GmVYmy zWsR~$mb=gt`Ym{lK{G7UxneC<#f40b7FaCN3$ecmh>!JFF#6Kg!Cn`>WykLr#-AL& zmFQ7q>oxeQ%rJH2my7fqi3OWR&uXFe{zQigc|t?BqzHn5T&`3tQgQLlhO&ZZ#}^X$ z<;+4Z1%|4du@-B{alGxjJHd*JkNwAlop)p+b^cs-wLWo&cEj;aM7A7KA@W03o2QXv zW@`&IeErp4a3erS@PqYH?$@kj+)hz42{1LB$o343Jk3jQp)i~=(*>jpSvt)_b_G?S zA#wsOG7##5EV!VCoJ7JFJ;TonCy2k)OJtesl3gUm85{Qp?}`b=;w6*8@RGkwCy{>S zQ{$gGeHzQlMJ6TUGEbFT^9a+!i$M-yW+=XJfE(NG=D~GbyYb!5_Y|;~KmFvVmN8RP zxvM&!GhXjq9pKJ-Wb}1x81h?W-wNBM)x3d>d9GgxPzgjy%R^r@YZgJWy3VUC9%et3 z|E)zZl4#m4Uj624Z}(albkz7z6|XFGPWq_oj6vHtwBD^JrlX|1m_vnHsFp;Wqdz)5 zlLphRv>Ase5Y_875qh##jG>^&)p#&seNui3^26T!ej3sI>Y3gmylO{jHqq(a>}+bd zs{fVJCu|``-FW`_I`39>2&&T34Mc;+(Cx$R8Ls0YZ0R1?Mr}8Grbx7!U5fBe$hdoP3-THa>5gX7ne z^7u#Zg?|uiyIn*(^-hsk&G=@bWXg0v^3=ga2gkj6 z_lXwquH*T{BtQP?GoPGCj$yQ!YpAprcqs!ZEf(VYy0k-mhgdnj@NUU%sYlKft+7Q^XDai>Y1GqN z>iQ?)mJHeGz}_~ZxFuxAZ0RkSBfHhvgV)jHQXadgWz{)oPrm(s{dE%muy~jdesGhV zz4B(Ri3jh@_djFoh>46bI-=z>luNqgDxvic#E*}w$$xnckj;i+dGh^l}F-X zlbISrbofG0a*M=)G}v-8kCz|bJl#7DFTLUDD=_aUFU!wE`o8+Sdw{`CYrS_3UY9j1 zMbxYHT7~$_17|%vKr8Bm9UsiHG1WW)tFUg_132qmYh{!8OSQ{x#v^RhhJ<}#&)#q2 zh0#l`eFH1HTVT^*GpYRfOq>KcC=$Roa&m>jRH{}_Cc&wKLLie;j;0E_RV_Dt3`~{L zjYd4VP-Cl@|GYHYNWow&#dS$EjiPoN5#6C878B`@PtMg)7ig&*PYV?#u@12=(!|jT zlvWP~Y|>q&9pcv3z+d+;cWUzTL>?D&%S-GW#3~_U4PT0O+RwiUa@3_Jap_CSOgzsh zEs2X7vf5mbX&}?!sa_UaGcSH_bpl?+R2l)+2JRL9yO7r8Yf2Mu6>sMM<``Pkwz#UI zt?F^Z?Gs;KXdU-)(S4wOB7*s>IU*5r)gS0@5SCW7PQ}L4s}&_1-;h*A;;D8v_j>yw zB2zUh9hAGZpzfmBkd0O!FUr@{>jq(P&1DCu-puV?T0ye)8TAt>%+%9dPQ(Q+%S8>RiV-Zq@jmZT!s z`-RV`pM*NupMG`$O{&$Gd*BX#a`o{2-~J0U+m;g1*v^mSl?c}cSDH6GsN)|~#=pY- zYZ3-|E@R=me|CLpAElNcIw>^Hhsj|I&mUi%8!n=mZ)kDt&Wp}K`C}-DzpVV7e)w}l zm2C^xIBW>(n^Xhy*Gk?60~1C`&$-a98(o|D#+KA8w{iZ3jDL#8_{_V<6LiH&1#z(+ zQ90+v=om=IWztA)YG#_mp!TN;)`3`!4(U)>^t7j#){MG(`{s~SDloH zl$X>VITBTOzjgQi#L{|dm?V}K6d86IT$Vp2o`PIS60(HEGqPlX8)jPb3Q|gyq3hr| zHE#>hB}I}%2%IgNCN#}Zbs2%wt;hW_)6(Ph46^6tx#4{<%XY!8!me5|8E(DNJN$_J zCr~^h1_Cq={G0YF>{WM7YeIE(o#?h!(jf;0?2PcV{2-+932XeD+BgBFAc{nKJ!CvS z`s^Q(5YO>s9o8;9bMl#K+?YL>-uoe% zlw0K{-nE`jq^a3deF+lrPL7NfaZ?!*^=}CDFDNM@A5u`567!UR)K<+SR9%g-)n<-h zG4UA{Y`@}+7@n1fU?WU_Z%Z>t}LxI&!0*@qr>dy$RMG6mxA@@M9s zSh#>fGPPL9g6HeD6~bw822G9+D;JF_BthV00rZr^?{*<1ExKREsQ79;hUlH^U;K-W z@4_9qUBdS5bzyUP3-f!YwjOiQIsDn^KX(5NMpJRA0L9)?FGWDZ&g;oK&W-;%VRZCf zoXD?7esHAsMUEn0Dsbe7uw_FG$dfoh^=JZ}upllW-L7~A4>!jDQ(~w4WqYrPHsdZ= zFCzKz$HzbU#3`h*%i6*Kuikm_JGZ_CC(>8s2y&2IDT*kHMYhO5v_w-nx>-5=uXjI| zczl_uue2S5x@Y#lKj5Uc*b;7dwBsg}$S-GB(bIpU{4b!SAu34DMOQCI4ynK^vQE zYu&Xb+MZ%p+o*KP-fS$zMI#DuWA|Wvji}7PY!Z{q3`@%CETUb1+kX|_3s$#xoxlsX zo9W|;mvZ_niPVoK+N#ORMDQ&MPY6p$wu{OPIgl${zqX2vosP4o!yG@95X(YFqL9?m z%zOoEM{l}o=+%AYdW6Fp^+Xgjxo`>X3GEN4&p;|r`H2l!+vdn@lb9hlYa`S~6^A@) z5OtfOhuj+s0E8H{%iKc3i$23AXhmHH>k%p$#9 zC#PBUBo8yygu&>XMdMOsvUFk@WrmLvlMmK+yVpDT;jfQ>G|?%C6>kA0Gi{d)7=alX zxf*vyMdSy<~q!?W?mjrP%GB-82C zyU1QWZ$3DK)2U+%r}HSW;=D&;b+ONHI=Fa$=40Y-LO$Jna8NGaVXiM?DKtFur_x||L;J96xtss4B{*%QsD4q?E->Bj*mkxiy{0nspD9TXkwC!JFN+QG{W` zUa7Z1M`br{A#K$qx{Unn)bvCV6^`+V>@$on{?U*aVrOj_w|8p`9kM@lH|G^CbavQ{ zB(c@i2ciqyk$J4${bV9fw6&K-`@-(UP(&cgb(RIoQe2Y4rBabjmE*SBfoKtLN6P|B z=@CiJ6^50yl8OYh36sFLe?__%v zo=Xq(YggkO(v+CQ-2CqxPYTG06)L_MUN+O6C1R?U+G^m+_H)l196)(mz961}oT1r_ zhq{>yV;+s_rDhc?nc+esiT2!RvQdIxvvehba-j63YY@Jv{ulR4Xm(fk8-4g~+OAeX zQKd?ahIL@~TLbK_MOLUlEDBU9je1#6?|mM2-Bii()_p6q1GLudk@7m4hN(0~bcC-B zUm0N~*tXYHv{Wx!DWFnVj7z&STj_AJ7H6a}MPgKp#)k&lW~8(w1hP{lcF)i1MZXmH zkmqR{^?IgQpipHCwJL?>?AdHOe%Z|n99i;=kqygmDe~t5n*M5&gxSC{B%-=5Jwh$U zlK?L?X8tsVXDWyPCV0Jp4clr`D=6H~zg2t_%mycGGqA=#UYMSsaIAcvGV9{=kvQDC ziSF9=wf+!6s90PNqA%FRE_%+j_9{UWPt~a|>U}Dx8>pJ1sn~>u6hk&~N8Z!EVxz4^ z{c;z@0YS4CW(M>20~~}G&K%5ZnAeV`N>s*5qNWJ(@Cm;v$IT(K(+e{*Gboj!{D4H= z_SR^98^bj{;=ANw^WLOx+7b&x>9#lu^w0>cx8PHS`h6ro^8>jdb9-PZFr zG3tdjv8AqP*D|xn&6l#pGM?1u)a)YWE>^O$pGRSios%Dfk`t(SqFptlS_TgP>H4jM zZyo*^}zx%He%TGM^iHRgK6-AMUkl(m^`}PV}8birFdVlc4OLu=PG5*ozM=s4i z0=i(*9NtL|tGjr>lH3iH@FE2Yy9W41Tdm?m`h%);t@dq_6a_|>abw97i7 z<|*R@JN_{cHn>dqRi4%>CWT;mu-G7bRtq(KC7vkS5(nV-%-g-ge}e`UvMmmt;Bz*I zrH_?TsU~=xRg60Nj|KIfhoQfDu<{ZbrG7f3K-cQ>(Xc-uuK(G1$fH+Rar5TN&CVYB zg|I^O^Xif<>O+|O^!B6gz<=G@c7||9rQO8{PplVe<+EUOn&=Uo--u{61$9}tz-O`8 zN_mtD<)!?s&y8?k?lra|T<>nXJsrE|uoQk6&G%d54+!svbd0JknKze9L}bJiG_O;jb~@wcdbnOXx22@#zITD6%M1j4<&-UlFg+sJ8|mCB!e=~Qsz92 zw3V|fuq&P%#eE$;laO|8`nSiwFq=ZL#+I}^w6wXX*I|@hsoTcNaC3L_87RlZe_uZf zdeX=qJPfxI%4P?8phijv<=gh*2M-Q^1RAT?;sT(GD|ijO@U@M>wvAz>*&y=XPn>Iw?Adi58Sv{CC&7}jjH)q;A4St?~gRRk)&{Y)7tGYfLg z6!O7WUTj=-_F=n?zU>eMa#a$Ag%mSMr-^27T=aDDf0k107c5 zCYO0X+gw@&Vp?1l=i=GcJTF19l|c3&b?RPT14lH0 z=Ajq0`oajFzBqD(-xEiD=Z7tNW`*1!X^x@Uo8Jk+52no8 zGn($h2#FTy;Z7>ilh{QlB3@x-X5q4L$+anW0(?2+x z0lqMpBarOY7>n%UVtsjW8K=%HRMYWL&ti!uJ5g40dI@@^RcR7xv->8|ErDinY!Osy z{_HXjN~#x>9Dyif&Y*rDebL`*i~6a(f&>ArjlbX~~k#W-6i}RuHDNxW;dd7Pf_5~t(>TH3_OQ2+`693$kTMHyK zrH0}XtCN)~O_qX7vNaKTfm+maFc+>CR~vX{_@cB^L7!d|dny{L5%4Y0>#0#$#iBN6 zr{Z@VrehIPu;X$IVo_!&^udo9zixsyXqC~xYHHxv@ZFB^Sw`s7HoT=K)3w%M-@!L+h|F@EYAUll=Fv@hD=!!*m0(^%vRVwr4Uma1^jwzqFz zTgC3+)@YqDs-yMj5tu>Rnc#7XyI7mZ!{0L3;z=3(aw{ie{G;z)NO)W%1}em3;=SVi zNWYZ%I{n9R9Z$B8qW0bYl>~z#KUGTCP^8PL{FA6T6{~2XYKVM1hqT~Ls*6z5(nX0_ z$R&NbnZc*B=>_&95YD#mTRo2@W?mpFtSpOhd5>N5s(zjL*rpN@L~I}a_}YKg@J;Qj zwLhQ5ZnY6suAqD{)w~#wv!63ECOUTp*9Jp)p6;^)l%Id1e}Y1aU*P6=++Tk(b?Q9k zURk^HZ418SX-BDwH=HdMW+sx324J~egAnRhx?k#y5Ovi7-9>FBy}H~*p;6Wr7`*$w z*+kWnWTOmcHkfi#Ag)m02z_uAPmyI86_HTPsQz53FJOxwI^rt$YniLr2!(K_J>A3) z|BsUiBdsj3)2IzH)@(c_q#zJE!Z+EFb>PMp62K2EH4?GT^^H!GSOf8zRlGYt{`rIy zv1&ZhG%J?5B8n%Ssjc$}i^@1rIs-bTrTh$f=T~Rfm(ecyrnUwBHSg`_8|ZzaarXNrp`$ay&{ zp*!lV_-%AHl(p1qJT=F3O?+xG;a3&*s4GZjW^ob9$Q}j*66uVl+$HBAp1O(O&L*g1 z+-Y^1kVcLx3vo7trv=a&a*HAAYvB0(IG;7t8}DT){PNvjNn|{MGihu*raig*c`O|( zRhBEDc~LNG@Mrpq4GOKQt26@~Z0`1N4B=ZQCln!8BwDUPyu?lA&*Q$<#|CFYO!yPx zxf)JX=H_bzPtP^ZytahHU%Kz`xAy<`2Y791f9cr?ymsoV(=X%^adwLzqWJB}=RUlO zbBzyQyRd@cpKAwm&!f0zbXp$vx_ja3(YWOf-vHCAM)?RecY&`|AP9A?${|PR>!}KA ztfcl<;rM!+=%@PL%<#7lFh23_2NTz=>(r~WxU;xb-m2pK=f*!X_3u60>&`uIAHcr8 zyYc*cxb~g9#}f-W%Mni?v$|wia6P}`q~Xm;Q*07^zMNVv;-1egR!+Nd%L>^nBRseB z^cID^`U{Qy8!#@ili6iVo-NdBaUb|=buzOWQ9K8)*@++@Q_tHo@J@H< zM+G>XeUy+n5Z35jPzS;_{Vn2$!sgZsLTPAGAV+q2omvmO1fxM{95f#5Qt7IGrFJYyav2%bgm$`Ji-J7}Bmp0qxye-PS(#{I@)(9i0n zxc4F9LV}~wi@}@P;V(jcL;a5ScNjVA=0L@c){MJwJC+hs0cNgTwx%nnlapPRkhCx8 zc@}w=qqGdt^m28nO60B8wnF#=)vpDFkm`1kkeo%?tcBa&R`A>a*E++X>kyIL4ak!^ zffS`9oL!r;{!l_ekvX5km8`*LvN(QnYCc&;x>6DAHpCUm%FC$9lqCm{Bh7Q$FkLyS zc9GsqHmBZegtL3MkjPm~{iuYR%O*3JS^Uk19+}5dwaV4w7E}x;W(ZHJWvu|U*5C;l ze0lBgr~df%I@VhM;ab;1WVFM$P;irNS1qLcOVPB4NB;ZoC$y)edEyu6q*;B@LB-Hq z0t;KKcUB2jeCLN&qQaEQbRJxFe9!pD&eW0N7vm~UWmYce1z4BYjg2na!OLM+K&5#8 zLZ*yNxh`f5RJBx1%|R`?OYIa|8DHqfg@-S0b_0SDgHrsqJ+Hv-Q!0=(XmC=sl){;KT~qC0H#$hkL4=F{=e@?RWfN!JG=>rmgod^jVBlGlnuRs~3GV%w_aoh?sT4)R5Y5vP+E;_U;2GGf zR>x|>9V*T80F~Z(xtc|VFu6^`WDQj_h^Mi5q9?2O&i?L&dx=UUp0NpM!x-p$Bm!t% zy$|~~*Phr%IZE+_pH)t!6(YAPwxYJ7wnI@Og5+uX@$#dfCalzr$8q}p^G{v4fMT)E zl{Ml56wa?vK#73m@Kk>~G5WR_*W2cLvz;9lv%J z?10%~cfb$04%0zxjTMb0xSyN&%+pnzsy!*5GjZCiHyh8w-S9?@_4uuV9_*n1X5+iY zUqKyeJ%dE5UCAr=kzZRH&9yN8=KYE3(Gp);K=RB&DkY*M$$UU$RxPZ!6qED3UqztNzPbEejnSmC(H!Srh?>?NE);L~01EprFaet$3L)DYe zlfnu1B%YZ5?B&l+W3I%=r3P55q7VRNdASrNv37EEeyfJ7<&|K47tQXl+YO;VO`V>Z zL~3a!dAS5u6ZLF% zG+!Ek`Ag|r*7MNUoKCBQ?Y%2EH=jY_KJho4&%in{c(g;4W9TS>hxO5&=5-CN`tWl5 z98s&T+-hO(in*%Zg7!7}Z^a)#z9GM%6V-S_GR|+~p*xH6`4TRbAAOpi1MSfkt$Yf%Vmf?e_Ygf}nwu>QLqj(PFovS>L=$?~?)W2w z>vE^qLasX%EoeCW_V{y&USlJpXW-tak3YeT0lB~lH5++<$tF6ZBrGyZ#3DpVkv7ni zzjO1eFC%bOo1g+~=Yp(DHjq_V5oK2DcrG?pH&)s`xW3XXkxy~5R#8XJsLRzlIKE8R zB}kU!upwBYV?z(F9hwaT8&216didq>M~+_lIU*cU6FCM{nTzYwc#0RQJhY*`7OW#V z{-s1f1-vc8lU0djP_NQdwFWtmR@I~KPCs0^`;kPY!j-E@)U%ct_TZ2uaTK&=J-(q9 zGMT4SlPG5@DV7jREnTP+xGmSHDuaq9gnPHhuTX7f70g<;m$Z2JoSX*0wrG2@@C z{$A>%1R@wA8K-|-_Ad5Nv3bdPpGQTq~zks~C^Q zULsUAiNsd<$zu8}+1;zuc4-L3Hi=L|Q|_x>Vq$+yHZ-s_maBuU3ba&3zMQV)h*WEG zU8#%EZkTNY4L#IJV19UfPog7sR1z*4dZb11)Oy{hzYNpf+&@{u-B2vs!>C7YwD#4TxwZ0^&8K_IfoHY-vF4HmvDHWbwokcT0u#6RG zp=z7&jRJrA?yn}MiepTFx_|;-ro_14s>6&J?ALnQmsYSiw|KcchwRzK@z2l?fS)ub zN5^5+`YUoD@}9PDufbkldov)$*6>8R0`}K0jDL1{1}7hxFPtc0j^c_t0$yZqci(&w z`&-ebe+{pE^o@_d{ur92&^#KT#IG)`qSz{h$u|0X?ym9{lvm{cBJV&xV4J6&BSv>Y zsg{sls1)*KgKzEJTIph?d$akRf;Gi&*81T5d_U)-Y8U0XGT#09@sA`fEPily#z(>8 z_@IF64>jtqxdd?K(`*LSiTjVw8z^XX+Q>trR?oGoXx4V^!3w(lZ-2i>AY{{xVBw`S5W3 z|6ctZ^1(v0;Gp{_(Vu7?=<9s2G$i2R`OTvlVTb>C_k5z>$}?sL!IPDHXHFnfNfwr} z`1oVzYA0Qk^*T%Ze30u+1SRyA{;0aWiDAFfZ@0irb5rar7Uxr`LIL@Fg=2JZ8pW^` zRF~D|;2bo@mk4-voL;-pLZcmpjs^C2+z;KzQj|v z=lt=HWWY!)<qILJ zI_vv4Uq!3W+?sPyHJ020K}C}li3Lud`{?m=EtD-O@*VucpWf`;B2cNWdENNF&+C^P z*cjhVR7kuESh&2OwexV7Ta_C+)--pkGQjeUh1R2ay!)%;RH7Na?DlD_)c3RNc`PoC zf0~-uK*cwPBv8a=@#lBv5_MA%^(u^lTMTmua|&OhkSi6rED8UTB>ECO$&q{>%j_I= zqKH!^R;^p$bT01nXH*9BqY??n9kt`4Ny1KtNLten83wsbovBFi=u(Q0=iw+>a}ioq z69X|GexL*qvC+-ZS8pP)ZGojwE0l}*5+)^HAWATmzjxvihoZ>yN*zjZRQ{TdK-Gm} z4Ig~?S06lEC7Uk@QaQdF;ja)rsd+llO>6y4g85LF&6-z(&6xC2+I^e5ejBT^ow?=| z%(|<@@X<6@m2D^;b*MIAORiv%Cu2SNDCf{=jRayQc;60D+>)akk!RIqwpb zt5`)lM>L98bGmQ`-m}gR5Lm5nt&eWA-|Q2SKE7WY{|ozm=!;sGFt~Q!OPf8c{y*kz z`FoK6LOc9v;~PYKteAZbtGdxU>TjO)3p{8k!!t6popa41!Mi-c2sWN0ED$%iSX?aS zYbe$U0fMv3LXkx)+|#5>u8qaL7bB? z^wD)yW^M|Z|AHr%7hWRctT$PYHH z81Flbb54bEFnj9(2N}I!F$NAlJ-(UfQMxECLz540y3xtnQ~t=@fVJ(uYThOUhSnpdlxAkQ43sT(NAJP9E3Z#qAxX2j zLiRA|w$~jGgH3atUO{CuRX5d~bHU zV7!~f-wwO6booT?6pf^yskO*xG_r62!DF97 zvQmq<70HCvwM-3jy}Ue@#LeMXW6~F9W-|h^LQ*K*H{X#XQJ!ZxJYm= z$qT|5gf%MiFi1LOZ9ydDn|CV?HkSwPaur=et1_!#2TYB~i!<$_R^afNna7m#O_Zt< zZ&B!8T$|Y?l$ui_zx#MGRmxRB^;nr&1ieHpl*e%~GgFzOP!uXrS&Z%p(L}BJjQ^$O z60RqH!Cul}K*E~-Wr)$_A_FoBKWWSA_?s~XvK_27B`RS;vX|6wlAW>DV zF8becpZES3)~ajLGLbr$tMlzMu(P)2*06oox^8?8`o1_QZKJ+lUmG04bX-BrL5nNr zg|iS&DS3So#zo~}{usnLmPrUW$vhKIlh0@Id{99*`{F23mutn1%tjnFB8{yY8oT~2 z?oU7+{j7TQ+rbT3%iQz175rpw$i>zh4a42RC|M7bDMjb6Ius0=#Z09VoW- zgJ{I(q5pMf7e+`Kdyx+6*Kzc%Q!z%%2nhyRZiX()NJ%9|U?2&}R5FJ`#i468tgiGerwFIi zDAn#8$j}sxY;JmHX%X4X#hC(0VnU%v5JoPkOIjLQexAcqC)UHaz3gp&Ep!DN+?)}pW5F0R}(_mwxGd__C@I001s z7H1Q9>smiBUMZr-xplUW;;j>{aSBi5hd(!YwgS!i!S{F82oi5?1a&lf=dYySz8U=0 zdlRv=PG$8xoYSrI%jY1R5vTcwacpKPD_igfUOVhy;}$dc;tNPLW(7Kf{N(*sv!Yw7 zrX%x7wqD!C@>dihouX;V;i8AM!zw%ry2Muqob=Orl1Kw~iaJ?&21SzIOVOMVSrRN% zIt#nW70{k2NqKM=@+U7nhSan$*&IVScTH|~as6(;zq<`?j6Weg19?W75sriVgWieV zBpQ@yC?SlaceRiH@!I!s=jd10zJ2ApFr1of(`clWGM7VXeCA8J6iRtvsu$%9U)!wV zu)SGdZ$QZ^X(@{|OG1prICUZ}Bq5brsh)y*VUTPW5YJ@GaS5{$CkP}xOmF92XyR_; zZ_GP+>{dF4+eYW$*xh3i$5b7(Qw*9h)!>_z2f5N%&;D_Sdph?Oz<;0(YLB$ zo2G(>QdhjFR-wk(Z#%XB^LuJ6r{-v?1eR7yBu}`MlZl2-=fo_LJTs;9nftF#3t5?l z%(zTQ2x)a7u9P7$JWEIBJtC!0m|gtjnFSk^Uf{$G;>Y4o#m|9h6dHLCD~I(?-A6N2 z?xuPu)>A>&!Sy>YU)c@Nw#;UwkKEq$>RG}>jcnd3lhh$(7UOv2@$(Y|>53dn=^5x5 zYdWg+%lCOgx?DGK9UWn{#tJ!5XD^%~3cSp*d5xs`tdS%?pcNWa%|XL$21La9wj~gn zReq#&B3lB*ia8Pm=Df4$EyBugC`J>`RqMLHhRyHq{{7zn2fyUeMCSOCuevV0bf>UR zaJEn^F(kJt`J75Yt*DvErIu>sn=+Q-sU%sfv2-qZzuwU1!bo~HwFX&&#@DXwH&Hn~ zdEwLoSx;8iNfsnw!_pvhJu4Q;Z?UMRh6Cfvo7)Fi-SqETdw4l~LBGSGDcT-i2VduG z0@GzTr7iGC2@~vO1^%CSFLrO^%e!wZw<9-4)92c#?4Ro9IZ#4TDk_*$PP0iCs;vc@ zg=%|!r>CQ*ccPh}bxZacAC<;ps}Q}pARkCXwV^eMF6Y)4m!m7ppBugs^HiOqSR`^! zPhL)8!I&4*G{$lnrDUSsyWM-SiyO_Cf&&A?e>Qv|CQh^Gg*>wTe1m{cv$o!9lH>ob zm{gL=d>M1pgS6~=?N8UAetTT~-Fs(aMYWi`e=eL#vxIih$YYyLWVLgI!qh283G3*u)a$E+ES}wBo*y8zbfHqjQ=dCMLXK6IW-FC5WP{ch zNJ4J+o7Sq1mS&2r1ZvqUrS&TQw%)F8^icDPk>kj@R@Oar10`SJoC;oeSSjatd?Axp zveB$e$|Otn;&V4%TsuU)o8L})NO(E*^JP>dwQgG2Jv`X?&Rult^qu<^HA~8@5Y@e_ zdD%p!=vFZ#7eFt+9jgS!<4^3)T=@i3{uHVIzbk`B&E$P!i(EWSE6=1P2`GL zdP;rz`^V8Lt3>G`m7C$mBhw{95b|i93EAr=4$Xlb8rXDR7k6lUE%%Mo-^}A`c}3oE z@ZHXp@Jfi5RoTv~xU8L&pBC|6{=w=aAwJ#ssQ0C)$5k+-8icLH?o(GmSyGcw=&)96 zIMH+?IZ~qW9<86TaL!`&`}f;gNODS3_jN+3U882yRrIuFv+kl3s2*EKX+0BOvN2;W zhP3q$4VdXzsX4klEnt*i$c!J43i~AT&Dm~FDN!iXn&j%RHG@$LFg~(%YCn&K`Niy5 zI#Q$^-bZ0u*ic@C(iXK+8i}zAUn1w-5jCNJ+>`cG+t1<)`sMM`Y0y)-bL1#dj6hds zV4beT$+ic1UndzOc+)*_cVKqv?fVnkw}TfOc&>K0y;8?Z+qZ%{dQ=%Em2+5{SW3+1 zk>U&7QUw<>XDb&NB!o&{c>+puk0<%@_RdOu#e$S&=sB{16m=}fYi)>m+4tNXfl^s{If4LwlMR+`reZH(WV@*W~gbh+8?w$N+q18N;z zp=)fCufmmTTfw@*zFw^1nb(drel>~1=eBNjcTgV)8w-2*^|e^bTAPXLr^iPhe(baG z_vL<>;BixI84cK5t>sM*LwfkvF_Vo<^f8v0OpeWg+ckpaJ{t8#byLDok*Jy=Bhr_O zSfmYVP=!abkFP@cLjLp=gC~oRw$JUL;LClRVBmT)*i=B!tV-0zW1+V z$>b9K=o)f1Q;sg)XEvudGjK^bRI=BxW2WPYhrBwm_2(QOr=mPb40|N1&1Jp*pAGWLq+F=5=tZG^mG=& z3bR+-LwD`U-OdJ*KZhUxayxc@=HuhXRLrYvv75&3WV5it z;q3V@e(};}qzR$+=Mhe=?}3`HE7c~NU#|a9{S&C)G>?9_`WCj8>uN_uOSQI&P2}5?%|!ua zsU-6XG!mB@*}xU65}z3U?4!T^;CoRp3VN12b|ZK#{0^+$V6Qzuy(4+K z7AAKq<|t863ae!Dc;?JpJ|&VIE3poZ7oOhd1|2w-5qZUMXPJ@m<)~Ujy1a|>4=a9F zLqQXw*^36Nq=~$!98W%2Sc)dvQd$J*yATF%X*7OzXSHSB-8|5o_NaBdrIrvbMmTN78%s@KAH5A`LdQZIv0 z3o)w5Nl!l>`QOcGlgs4jMXBNwoB9anY zp=ZD@tCb)(|q#O({=NC9~+FAx&EzkBP&D=)%tYG!^7 z3(rjjg{VGtDm67n1b$I2R8cl)ElU%YmZO#k6Jsh-|Fg5|`v)z2fA0s^yEO!k+%H*p zVk^z23i$lV3)HNKm*41Zk|1rg9iuMcyHqp(+Q+bdX?uD7|+Y>^$;o$;Kb7B3~6Ghv4m$OV=}KCG|Xgi4a5eyc@^G z(x(@POL(#7V~-;!HL`RZ>-~cyVo1vSOxRYg(og75qJYL5pdKV4fA}RsOPGaTR4OFa*n&pw>XP9v!E4Q=_^9ATV(Jyq7+E{F4ct{_Q`4j4; z%4w8uu-BpyB271Ho;mvM;WM$owFP#O5U$MV#ChbJ>D6)zd+m+RN*BNK*;tt9PLq|G z8;hs%BCLJq1?K>t8I7@*m@#@B8E%Qs3-DIGf!%?-(&==o`1-ILD+qElFxOE7+OFWW zPk;ZTFBh=Jgg&>A%6Dh?-@k!Jx(o8<`~EWbzIg9rF`k-EFS3w2k|kBa`HPB>jf@`) zMFDA!XQVVnZcjAENWh2_%shvOOH+x7OQ0(T7ibvhx4d1l*aa!_+!#+!WO9VIb21k- z)GlsNBt%43pHqsM=VtRuM0&QkWoZ?{-OS$P^AM`Mq;OE@wMl&*_JT0dI#siQ zdfrtIdQe2AqVSj^I()Q#y&91y?t3?_OI*+Y4Qi&ArfzhHd00r$;Z1;{spF`6JNF)to_L zar~K!=gSzSgo<@Kaut+Y77=!yRgWz7gQ{oYMzO|)0@fLuie}6{BYjpFg&5E0Mu-+* zE~|@G*2@m9G;F{3;opMG%`z<=Euv(_m{#;CT{m%?H&Zt z>H6RQ^yn{Qb9X+w^GGzk<|6e)7VoBp?zs!4=-swN}AN29U zo$sw4T{clu2*wZwm0m2(6|hj$>CFH?+`i$zDB!xdCttVF(HlFN&3~AdemwTxna|O~ zpXQO4CCSfVd1QTQw@f}wF_lRmm!==Kr(opw#K4X$4x`KF$dRBlg|XDJ^k^9~6q8V& zfl}$`d;?d49RlWHCKe_qlE@Iaub;;yc1Du%vA_&^*hcU>kx%u!Fss1aHd+y-a}A?b#T(te z`3(a#)!!vFcxtCmohW1Y&wsKVyB*(~X(r*8Yix_fyVTEcA1dOofA!kt%lC8q*Y71_ zi`=>C<0p_WESi-b1cz7n3JTNGq>+WW(36m5KZag^HXcM8eK*Fxw6` z?5itlD_C2(du7dqs~Zf*;*$>yf9Chz_bf^*OGkYxB{@S5jaD*5-^ObPU%!3p3I^@2 z)l|_}SH*fXo?5Gvcs!jP{`}LQ9mjY!c}bgqcGf>Th~otHC{4IWTFgm;3C^xC(Vb4w zPM8%~C0lOUcysmWmv{c2VEg-mqjzNg<{Wl&tIhl&ihJi*W@XIFkLeQ{_W!7{>_ww! zm0q!fN~ z_Pkc(q7Fk#^P$(3rszXx<^vM;7wu=2PqBFE#_iqh4b*GaTBQam%vN(EXi0P(D;j}F zU=}^M+OKrLhM7(>Kq8#9mw0H|Sl6zX*%VTbyyqiRMD5*du5a8zYi(`NF!B0N)?#Il0ro%WVlM>RBBVgn6pUF{+kcS6xVALHQ`hP)s`V-g{)kJ5;t=ug#w?AnkR(5&{y8( zuP+n+dQAP~*vZFH%&LqnVz&@-Ee?8IpVKJl88s~yP$(`IpG{yazm&^zehe>*WYkD z`2IoFR(7GZL@RG1ZOv5ERT!(q*2#4cUTU^{G`*frVriHielxZ!MI9oLib9U8^iyZ0 zLdPUWn}oND__M`$-U4MP(P&kTR|sz6V}B&QT3c#)( z%8zhVJ|24|x1T*spk47;S3&X76N|%)okNgrO|Y*2-fi2qZDY6nwQbwRZriqP+qP}n z_U#*S2X}A=XR@LuD^?A%Dp$Oj`Mj>nfF1oS2Sk{uTbeO{(dmhgQ}YeamTqU?u$(S- z%mSsbrm|8}$7wl2@zG5s9Q-t%p^>n`8i!ABx$&j6CmtTz_;DC2800i-G!8QQX(7q< zwWkL+q6f3*J{;K;N1-)=v0Z8tpen_UH%(fctk;Etoc4Q-fAZvg^t*G5%u)#rtsIi{ zV+FB3J>R?62e%8&7{S5_{3~5m{n@TaE`(Uhc_2X5TTZS?1v~%d0m)0KrPjX?RTPah z(f+@iGZ8^h9C@S1YWGTI4n!eH+D2wT%U83WbulYou3a@}uhfR>&~7ZP#WwDx>lUN0 zxfbrO+oHwerKCV7QurnKg!zkSEa}cd&(;klL@X7ob)a<_@QQfxI+@y|dV~)_X$|Uw zl!A(06gm?>!)V_NQ8$gQB$eXLn4AJPM_r0|$GRLXAKZA++l(v*CwvYrkHm^|nM)QW ze(Ab3$nKrZTiV+iBDSAoPnEh7EAyh4Fu8? zSlbC$NUe)@#~&yreQ6c>L-JB{A`k5Q`u50QfA{OwQuPX(sorqyqsF0+4t|Fkyo%ON zCEC7>m-{YvH_|xDM0>Bp$IB3OI~vdTL@ux=1CIMBk;}wtupM9IUp^ThlP^pH8m%dL zuX4G+b-yD|yGGwTVB8C)X=<>qex8 zTJNZ-2D}ZBXj1vXX$}tW(=oLezbm?oW_OaSeC@+8rhmO`^o<9@q?$ve zKjG}54Sd*+%voj6b62GWPN(TM{pn=u3(IA|*i>_%{=B)>+U_H>;goof7ONo+DL;yZ zb6)Q2aAznUOO**zi`(Xe2|bR>@vJX|FXFXd?Vb@5S=hCM(~5VE#<$3?NB67Q`_Wd? zOiHI^^KY5l#{!?Ig$Vf$$k9TlrVuUdEhMNqDXEc>*VP8K=gbeplk%R0!N0btPS3q> z)R`E~IXnKIcxS3#jfx@#A*aVJ+$1!UQ?3M-D5eZ54)UrlX^2g3wYG0uDmFV#A&H3a zv|g_mA^X-5{I?#yQ=g2uX>kqPTxUP4_3RnDQ{)x-^_pt5a<1ES8w6oei}H*b!VL;H$bNfiqDP7FJthO9`Yq~=xUQa&2Po((qmz5~0-%F( zf`!~1j7)Bt{IRn?NrI$fcfu-0uM=8ABzDBJXh94`%(7@I_S%-nY+4%*9&wQGEeT=| zIU`d-+HF^Rw%qiMHZ=uD5l@+Z0PeDAJGXdujW2B?-fn#_)gR_ZlXc1#f0c4uP};_o zc6vA4T&~)dO}@)yt(hkKw_^i#Jlc0NpRisv=Q$}cFyAxt9wAxdq&Z0peqKJ0dj+Mr z$_i(Ul_QyAc*5DM*}fHc+80S==MB3s6{*YQ0Y`0^pPAd7q07dEmx)?6^<4~<`M3T* zW0H~M33^)%Ij%M8tL#M;jS&wmW)Bf2i$g^5kv|7F-jry8U-dX4uP~0)Zde9I1hEI2 zwc|c*zz4Jg>@thk)hq5DrEXW-o`#8*#a5|QNeC2}RTN)jmzqzJO4c1BN}b*mHxtZjI0U7MR951Kz;q%7J|#%h@y z$T2fABAICkPPc)?6z&w6;*d0w_C9q9!9&iUvKUK0?tU?~9HUK`LRqN&C$Z=c{YU|v z;Yo_BVTCkz4y5H5(K!2Prb%nVG?)1r(K;E*IDIkIQ|DF74vVUyL8OlgTcrH(Er+7T z;NP?-v+WT{W&hL>=i+IUHG*5q(o|C9QM!<2Fd;#bitL^vSopX76;!>2in1%LFB{qB z)@Q2=KSo{1ugVmZ+=&v6H#fDey6pv`kvHT-2dKhL+QRjyPg&V!*A&kqfN{Q->r&PB z7KlK*^(0*&S`Zt%xIRU7DP{^7e2({uK*&mhM7ZIy*us&J-z3Tdk*=?3*q0+9I4Ux= zd-sdN<|Z6RQCOG51|~6sO3hgf#jm(j+Np8>xHoA?*(TL#&Az@u;9+!M0RLVe7ji^^ zN=e}r{4U3b)05x-UtJt;kgX>R_N8diAdsW~-oUJB%ty=Wmxx}G8uOFCpT{@*fLn-L z?n>+IT`f;6e4zyu%~1autw%gz;ve*Bg>%L1Y4MBd?x&QJgmaUBnnsk`@b)~wB3sKG z1<~k#4Y&?!rOWE1``v4Kb|nq`VDTYB^Twz+3fGg%O`Gi5PzmyZ=o;s**ZOQVo%03r zKZL0TR4I(pNNTJT3H96KZj|Tqdg)4gi6b#lL0N29uX41WDO=ilihaXKxZoS{CE|Tg zl*E}TSIZj8m)f)90@u&+LNDj@P2>z88D(}z6VpSCiQ;uARwU5^_e+z?_R?hI$sHCP zYsCrhR%hdjgX4-1=+4SM@q<$B|hTb3EsUc#7A5>hieWXG^&GS+2RbS{v=%}SA_c#h$X*q%Yw>*`7 zAk)B;`O@E!re{VT6giD3)DzXE6_FhuPWp7HUyy~xs;jr4K2C8LGpKn3yE~{{32I2$ z710z_`nAo7Ztnh!3G`(OP4S11g#64H>T=L5gCgI9kpJVW@66q$hLm=~L=H z#;Q~4DpeJ{lr!ig0u9N>UZ5(kF~iIJ-8s=SbC<04Tm46BsU*)h@RKJ1Imq=9yE!vAQAAe z#mI7;b&raFVY71u%JFWh+p+BK_|NWjVf}W8<_k@7COXM?L0D+vl`BZ|LA!lMPhcgj z_MgeRV&{MCI%W78Vn2V5e-eFui}8PSu63GvB(q~0l5zuT$={5@$>GtH_H1?j{9r9i zyY#lUn_!l5v*s{tVrx$vf9Sc6UypGeXF*@Swa7I540Xkfn8_)e{&8@Wj_2@m)&*poWhj@kE$m&AB= zd%gP}L&b5b30m=fq~*p6UPkb0QjQXpVGX0w{Y9{=qe`8V#}CZ#M$aM9qC;XjgHpE3 zXCy#p%n*sgzEpIe|Q_Wp#M;mvOU}$<~0@L)YU|*iSJ=7r-Ce(s?0PHZ4 z9!V=jBB|E&lE3Bk7xb5mFJLlwiJb7Fuu<@D39Qk6ynP6LZqsjn1YoFs_m;(nM^e?| z5-}%iWl|TARaD9o!31gRF>~akQD{>k5z^ZSqJDtJKvA0|{xL6zzT~9pu)~DDgh|kY zl%jz$GOsVka93V4_D80v9d=UD!|2SrTbIYvM7yl~Ft-X>o(>Cn{{)qUF)TTrfu zR+`k;w1J<=A4#-YSKr1rGWjJ=x@BQ%B=%iu!_srRD_WiNTtZKpFc$F}B=i0)lqn3& zLcH4AD2(LU323B?U|m@%)agB~an*ZkU!W(Qq3b@rhD~9`HFTz~g3e4f3ImloD6L4r zArEyh>=PxZg(wnMrh5!NLngb*M%nrH=by+Y#p0q=XHGjqTh}>O{5_IpYN{2~t<)W= zioEhV?Xqx+ojL$Tn&@wb)M(a7fIwpOt z*+LxrnwPlQCeG)cEjYSOWPZw>bVRP=YQ>c>thT36h)9-exd(Q6l}0>hcXc{R#5?Q; zxthU>)lBo8S*YqhAZiS`X@aydJ3PpwW6-#dq?JhVKgC>%c%_9)B5v#?eh1ORmHAz6 z2iOo9qQ{-?Q}tGMOhXvKMf28#75=kCiD5`GZ6e&aGx1lIR+fz8u^IAGBB^eL)ZD-T zsSwGO*`j4ZΜ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%0DSUpFiVB;O;ELz+}23xGp$Jaa27^vW3|b) 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­-nok0-P=>)hkYy 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

5uc_ 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%0D4C8QSS?W_@srcob={`4sRApz+H{y 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%0A4omNwT=I8E-tnknseF|CTG;~o`M3D< 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 literal 0 HcmV?d00001 diff --git a/example.py b/example.py new file mode 100644 index 0000000..9528395 --- /dev/null +++ b/example.py @@ -0,0 +1,17 @@ +# -*- coding:utf-8 -*- + +from src.wordsimilarity import sim4words + +""" +基于《知网》的词汇语义相似度计算 +实例代码。 +""" + +if __name__ == "__main__": + # 计算两个词语的相似度 + word1, word2, word3 = [u"足球", u"运动", u"苹果"] + sim = sim4words(word1, word2) + print "similarity(%s, %s)=%g" % (word1, word2, sim) + sim = sim4words(word1, word3) + print "similarity(%s, %s)=%g" % (word1, word3, sim) + diff --git a/java/WordSimilarity/.checkstyle b/java/WordSimilarity/.checkstyle new file mode 100644 index 0000000..7de35d0 --- /dev/null +++ b/java/WordSimilarity/.checkstyle @@ -0,0 +1,6 @@ + + + + + + diff --git a/java/WordSimilarity/.classpath b/java/WordSimilarity/.classpath new file mode 100644 index 0000000..90522fb --- /dev/null +++ b/java/WordSimilarity/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/java/WordSimilarity/.project b/java/WordSimilarity/.project new file mode 100644 index 0000000..3715ce9 --- /dev/null +++ b/java/WordSimilarity/.project @@ -0,0 +1,17 @@ + + + WordSimilarity + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/java/WordSimilarity/.settings/org.eclipse.core.resources.prefs b/java/WordSimilarity/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..77b6d93 --- /dev/null +++ b/java/WordSimilarity/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,3 @@ +#Mon Jul 21 00:08:07 CST 2008 +eclipse.preferences.version=1 +encoding/=GBK diff --git a/java/WordSimilarity/ReadMe.txt b/java/WordSimilarity/ReadMe.txt new file mode 100644 index 0000000..d5cc56f --- /dev/null +++ b/java/WordSimilarity/ReadMe.txt @@ -0,0 +1,13 @@ +1.ʹEclispejdk1.5+ + +2.Ŀ뷽ʽΪ"GBK"ʹ뷽ʽ⡣ + +3.ǵļdictĿ¼£"ȻԴƽ̨http://www.nlp.org.cn" ṩ + +4.ȻԴԴ֤ һ𷢲 + +5.㷨ʹáڣ֪Ĵʻƶȼ㡷ʵ嶨WordSimilarityУ + Ϊ˽о̬ɸҪ޸ġ + + Yingqiang Wu + 2008-07-22 \ No newline at end of file diff --git a/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/Primitive.class b/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/Primitive.class new file mode 100644 index 0000000000000000000000000000000000000000..f79f66abf99e01604256f113ab2fcaed0c98f516 GIT binary patch literal 3367 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 WTWZrPb0kQ=7vwKrkSy~Yfc77>XoAZC literal 0 HcmV?d00001 diff --git a/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordSimilarity.class b/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordSimilarity.class new file mode 100644 index 0000000000000000000000000000000000000000..37b7ee1a3431eef4c27f17b141692e2bc3658da6 GIT binary patch literal 10613 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 literal 0 HcmV?d00001 diff --git a/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordType.class b/java/WordSimilarity/bin/edu/buaa/edu/wordsimilarity/WordType.class new file mode 100644 index 0000000000000000000000000000000000000000..e35c61eb39c2a70bbeb0803a72cf85743917c50e GIT binary patch literal 1941 zcma)+-BMd+6o%hTLjL%GO`w$0s?{P8ij7pLwLv68XrUpAY?2bGKbw%!U`Q||Rc^o| z54{4fpza>Dqa)+7;}v)XUV-D0IcFF>t9$dz$(PBmTj)tq#tO-FKE*&2+viO*G+(M#YL(^!15L&> zmHKWugzg9|Ts3$TZ!z)t(9ezOnvF_rFR>acgt>Oipc{b@f&vo;L4lCKltD-! zEbxv&SRf+su0cegN8mk!9swh8%fJZq3VdMDE6^t}Z_p>uFYu8;zkn_9v4JfxAdoT` z5QqxgGl&Wd3fwms6c`f77z_zq5ctI4g21rArophlMS%wf7X?NHJ~bFYK%O2NT*9b@ z{&b~Q&a@78%8gBTr&_iUP1j3qwLo(T>tF;vTxIQ=k1Iz!(kE`URpvu%GIq{lMX-xU zK`^@AQH0~8X8FKi505Q`-A2PbF4Yf@dFq{|%I@r!OU=Y;NA+F~v3wSSnoahRg*%{nwS*p56M~RMizlwYI9dgllZz4{;)hLx$DsqUuFK^`yS;xDlMu?cdF8us`R8P?Wjs8 zs?vn2^q(rNr%KnU(r~KunksFkN{6Y^T&naHV2_Hcn4zEd<}$7@-`4=^A2R=}?|*?+ zjK1!BjyIm+n!?+Dg>i++ZiSe_^?<^(!i}IpTwx}pa8qH{Zm*kDdf#p@ysdP{Zm&!z zeQ1Yu--6Pj9Z^auE!jOv%StP@QM#+NYWFIwDW&Z`rFEsO-LI5W+OTaUM=5U)C>4~p z?5I-F9{iQ3;PY_JDf&H(JH>7fF{c>tFzpnB9^y_h`RCl;g&pYi_&`v_RQUV3Si zb(>(Dn`L)PvZ-a*%N}xOpPlPlHmvX1r+#32`jK7fDVxy=_x{1w^CvsbUu-mgW5n_^ z*5?{s-oP&0b^&JSU2$)4>iU)E_~I;q02fFCvdQRk5MPR&n23v=)9trtdD%YfVY_(W zH+52+mxEmQU4DVm^i$5XKc^kddX++$*Lwdn#uV4cyCP9*>IJ^~4c7nf>q1Rq)^Vu% F^?$zYdi?+Z literal 0 HcmV?d00001 diff --git a/java/WordSimilarity/dict/WHOLE.DAT b/java/WordSimilarity/dict/WHOLE.DAT new file mode 100644 index 0000000..ac2da06 --- /dev/null +++ b/java/WordSimilarity/dict/WHOLE.DAT @@ -0,0 +1,1618 @@ + 0 event|¼ 0 + 1 static|̬ 0 + 2 relation|ϵ 1 + 3 isa|Ƿǹϵ 2 + 4 be| 3 + 5 become|Ϊ 4 + 6 mean|ָ 4 + 7 BeNot| 3 + 8 possession|ϵ 2 + 9 own| 8 + 10 obtain|õ 9 + 11 receive| 9 + 12 BelongTo| 8 + 13 OwnNot| 8 + 14 lose|ʧȥ 13 + 15 InDebt| 14 + 16 owe|Ƿ 8 + 17 comparison|ȹϵ 2 + 18 BeSame|ͬ 17 + 19 equal| 18 + 20 BeSimilar| 18 + 21 differ|ͬ 17 + 22 worth|ֵ 17 + 23 WorthNot|ֵ 17 + 24 suit|ʹϵ 2 + 25 fit|ʺ 24 + 26 ServeAsFoil| 24 + 27 FitNot| 24 + 28 inclusive|̺ϵ 2 + 29 contain| 28 + 30 BeMember| 28 + 31 connective|ϵ 2 + 32 relate|й 31 + 33 depend| 32 + 34 RelateNot|޹ 31 + 35 BeIndependent| 34 + 36 BeOpposite| 34 + 37 CauseResult|ϵ 2 + 38 ResultIn| 37 + 39 ResultFrom|Ե 37 + 40 BaseOn| 37 + 41 influence|Ӱ 37 + 42 TimeOrSpace|ʱչϵ 2 + 43 situated| 42 + 44 facing| 42 + 45 LeadTo|ͨ 42 + 46 from| 42 + 47 BeNear| 46 + 48 BeAcross|ཻ 46 + 49 BeBeyond|Խ 46 + 50 arithmetic|ϵ 2 + 51 DoSum| 50 + 52 AmountTo|ܼ 50 + 53 state|״̬ 1 + 54 StatePhysical|״̬ 53 + 55 ExistAppear| 54 + 56 exist| 55 + 57 ExistNot| 55 + 58 appear| 55 + 59 exposure|¶ 58 + 60 happen| 55 + 61 begin|ʼ 54 + 62 BeNormal|̬ 54 + 63 certainty|δ̬ 62 + 64 fixed|Ѷ 63 + 65 unfixed|δ 63 + 66 ComeToWorld| 62 + 67 alive| 62 + 68 function| 67 + 69 grow|ɳ 62 + 70 pregnant| 62 + 71 GoOn| 62 + 72 withstand|ס 71 + 73 WithstandNot|ס 71 + 74 undergo| 62 + 75 enjoy| 74 + 76 suffer| 74 + 77 AptTo| 74 + 78 endure| 74 + 79 EndureNot| 74 + 80 UndergoNot| 62 + 81 BeGood|̬ 54 + 82 BeFull|Ա 81 + 83 BeWell|׳ 81 + 84 lucky| 81 + 85 prosper| 81 + 86 succeed|ɹ 81 + 87 win|ʤ 81 + 88 surpass|ǿ 81 + 89 WellKnown| 81 + 90 BeRecovered|ԭ 54 + 91 awake| 90 + 92 change| 54 + 93 AppearanceChange|۱ 92 + 94 StateChange|̬ 93 + 95 FormChange|α 93 + 96 QuantityChange| 92 + 97 BecomeMore| 96 + 98 surplus|ʣ 96 + 99 lack|ȱ 96 + 100 BecomeLess| 96 + 101 BeBad|˥ 92 + 102 tired|ƣ 101 + 103 HungryThirsty| 101 + 104 SufferFrom| 101 + 105 ill|̬ 104 + 106 wounded| 105 + 107 disable|м 105 + 108 labour|ٲ 105 + 109 mad| 105 + 110 paralyse|̱ 105 + 111 painful|ʹ 105 + 112 dizzy| 105 + 113 twitch|鴤 105 + 114 bleed|Ѫ 105 + 115 swollen| 105 + 116 fever| 105 + 117 StomachTrouble|֢ 105 + 118 pant| 105 + 119 inflamed| 105 + 120 itch| 105 + 121 OutOfOrder| 101 + 122 decline|˥ 101 + 123 unfortunate| 101 + 124 fail|ʧ 101 + 125 err| 124 + 126 defeated| 124 + 127 inferior| 101 + 128 end|ս 92 + 129 die| 128 + 130 finish| 128 + 131 perish| 128 + 132 due| 128 + 133 WeatherChange| 92 + 134 WeatherFine| 133 + 135 WeatherBad| 133 + 136 ChangeNot| 54 + 137 disappear|ʧ 54 + 138 StateMental|״̬ 53 + 139 feeling| 138 + 140 cherish|Ļ 139 + 141 excited| 139 + 142 FeelingByGood| 139 + 143 AtEase| 142 + 144 calm| 143 + 145 joyful|ϲ 142 + 146 satisfied| 142 + 147 FeelNoQualms| 142 + 148 shameless|û 142 + 149 FeelingByBad| 139 + 150 uneasy| 149 + 151 GuiltilyConscious| 149 + 152 unsatisfied| 149 + 153 melancholy| 149 + 154 upset| 149 + 155 sad|dz 149 + 156 sorrowful| 149 + 157 fear| 149 + 158 surprise| 149 + 159 flurried| 149 + 160 worried|ż 149 + 161 angry| 149 + 162 disheartened| 149 + 163 repent|û 149 + 164 shy| 149 + 165 embarrassed|Ϊ 149 + 166 disappointed|ʧ 149 + 167 Attitude|̬ 138 + 168 AttitudeByGood|̬ 167 + 169 FondOf|ϲ 168 + 170 like|ϧ 169 + 171 love| 169 + 172 PayAttention|ע 168 + 173 ParticularAbout| 172 + 174 respect| 168 + 175 loyal|Т 168 + 176 admire|Ľ 168 + 177 jealous|ʼ 176 + 178 grateful|м 168 + 179 agree|ͬ 168 + 180 ThinkOf|˼ 168 + 181 AttitudeByBad|̬ 167 + 182 sorry|ϧ 181 + 183 pity| 181 + 184 disgust| 181 + 185 stupefied|ľȻ 181 + 186 blame|Թ 181 + 187 hate| 181 + 188 forgive|ԭ 181 + 189 TolerateNot| 181 + 190 regret|Ǹ 181 + 191 despise| 181 + 192 disloyal| 181 + 193 disagree|ͬ 181 + 194 doubt| 181 + 195 volition| 138 + 196 expect| 195 + 197 need| 195 + 198 willing|Ը 195 + 199 unwilling|Ը 195 + 200 GrudgeNot| 195 + 201 grudge| 195 + 202 dare| 195 + 203 hesitate|ԥ 195 + 204 recognition|֪״̬ 138 + 205 HaveKnowledge|֪ 204 + 206 perception|֪ 205 + 207 know|֪ 205 + 208 understand| 207 + 209 regard|Ϊ 205 + 210 believe| 205 + 211 remember|ǵ 205 + 212 BeAble|ܹ 205 + 213 dream| 205 + 214 NoKnowledge|֪ 204 + 215 ignorant|֪ 214 + 216 forget| 214 + 217 misunderstand| 204 + 218 confuse| 217 + 219 BeUnable| 204 + 220 act|ж 0 + 221 ActGeneral| 220 + 222 start|ʼ 221 + 223 do| 221 + 224 try| 223 + 225 endeavour| 223 + 226 VieFor| 223 + 227 RashlyAct| 223 + 228 venture|ð 227 + 229 cooperate| 223 + 230 repeat|ظ 223 + 231 pretend|װ 223 + 232 engage| 223 + 233 bear|е 232 + 234 undertake| 233 + 235 conduct|ʵʩ 223 + 236 prepare|׼ 223 + 237 respond|Ӧ 223 + 238 DoNot| 221 + 239 refuse| 238 + 240 evade|ر 239 + 241 slack|͵ 238 + 242 cease|ͣ 221 + 243 GiveUp| 242 + 244 pause|ͣ 242 + 245 rest|Ϣ 242 + 246 sleep|˯ 245 + 247 wait|ȴ 221 + 248 ActSpecific|ʵ 220 + 249 AlterGeneral| 248 + 250 alter|ı 249 + 251 control| 249 + 252 manage| 251 + 253 handle| 251 + 254 arrange| 251 + 255 stabilize|ʹ 249 + 256 AlterSpecific|ʵ 248 + 257 AlterRelation|ϵ 256 + 258 AlterPossession| 257 + 259 take|ȡ 258 + 260 seek|ıȡ 259 + 261 beg| 260 + 262 steal|͵ 259 + 263 rob| 259 + 264 cheat|ƭ 259 + 265 earn|׬ 259 + 266 buy| 259 + 267 collect| 259 + 268 levy| 267 + 269 borrow| 259 + 270 gather|ɼ 259 + 271 occupy|ռ 259 + 272 MarryFrom|Ȣ 259 + 273 TakeBack|ȡ 259 + 274 redeem| 273 + 275 give| 258 + 276 provide| 275 + 277 GiveAsGift| 275 + 278 grant| 277 + 279 donate| 277 + 280 submit| 275 + 281 return| 275 + 282 recompense| 281 + 283 issue|ַ 275 + 284 sell| 275 + 285 lend| 275 + 286 pawn|Ѻ 275 + 287 PassOn| 275 + 288 pay| 275 + 289 MarryTo| 275 + 290 abandon| 275 + 291 exchange| 258 + 292 OnCredit| 258 + 293 AlterIsa|Ƿ 257 + 294 CauseToBe|ʹ֮ 293 + 295 RegardAs| 294 + 296 naming| 294 + 297 replace| 294 + 298 CauseNotToBe|ʹ֮ 293 + 299 dismiss| 298 + 300 AlterComparison| 257 + 301 CompareTo| 300 + 302 MakeEqual|ʹ 300 + 303 AlterFitness| 257 + 304 obey|ѭ 303 + 305 surrender| 304 + 306 coordinate|Э 303 + 307 disobey|Υ 303 + 308 AlterInclusion| 257 + 309 include| 308 + 310 discharge| 308 + 311 withdraw|˳ 308 + 312 classify| 308 + 313 AlterConnection| 257 + 314 tie| 313 + 315 connect| 314 + 316 fasten|˩ 315 + 317 mix| 314 + 318 merge|ϲ 314 + 319 associate| 314 + 320 ally| 319 + 321 collude| 319 + 322 reconcile| 319 + 323 SeekRefuge|Ͷ 319 + 324 meet| 319 + 325 GetMarried|] 319 + 326 mating| 319 + 327 separate| 313 + 328 disconnect| 327 + 329 farewell| 327 + 330 AlterCauseResult| 257 + 331 CauseAffect|Ⱦ 330 + 332 incur| 330 + 333 AlterLocation|ռλ 257 + 334 SelfMove| 333 + 335 SelfMoveInManner|ʽ 334 + 336 roam| 335 + 337 walk| 335 + 338 run| 335 + 339 jump| 335 + 340 crawl| 335 + 341 slide| 335 + 342 roll| 335 + 343 swim| 335 + 344 flow| 335 + 345 fly| 335 + 346 float|Ư 335 + 347 VehicleGo|ʻ 335 + 348 circulate|ѭ 335 + 349 SelfMoveInDirection| 334 + 350 ToAndFro| 349 + 351 come| 350 + 352 go|ȥ 350 + 353 LeaveFor|ǰ 350 + 354 GoUp|ȥ 349 + 355 rise| 354 + 356 climb|ʵ 354 + 357 GoDown|ȥ 349 + 358 fall| 357 + 359 sink|³ 357 + 360 GoForward|ǰ 349 + 361 GoBackward| 349 + 362 GoInto| 349 + 363 GoOut|ȥ 349 + 364 leak|© 363 + 365 jet| 363 + 366 spill| 363 + 367 leave|뿪 349 + 368 flee| 367 + 369 escape| 367 + 370 approach|ӽ 349 + 371 chase|׷ 370 + 372 follow| 371 + 373 disperse|ɢ 349 + 374 ComeTogether| 349 + 375 GoThrough| 349 + 376 cross|Խ 375 + 377 GoBack| 349 + 378 GoRound|Χ 349 + 379 TurnRound| 378 + 380 circle| 378 + 381 MoveInFixedPosition|λ 334 + 382 wave|ڶ 381 + 383 shiver| 381 + 384 rotate|ת 381 + 385 twine| 381 + 386 PartSelfMove| 381 + 387 stand|վ 386 + 388 arise| 386 + 389 sit| 386 + 390 LieDown| 386 + 391 FallDown| 386 + 392 kick|߲ 386 + 393 tilt|б 386 + 394 lean|п 393 + 395 upmove| 386 + 396 CeaseSelfMove|ֹ 334 + 397 stay|ͣ 396 + 398 arrive| 396 + 399 reside|ס 396 + 400 CauseToMove| 333 + 401 CauseToMoveInManner|ʽ 400 + 402 release|ͷ 401 + 403 TakeAway|ᶯ 401 + 404 put| 401 + 405 pile|ѷ 404 + 406 store| 401 + 407 SetAside| 406 + 408 install|װ 401 + 409 dismount|ж 401 + 410 load|װ 401 + 411 drive|Ԧ 401 + 412 CauseToMoveInDirection| 400 + 413 pull| 412 + 414 push| 412 + 415 MoveItUp| 412 + 416 lift| 415 + 417 hang| 415 + 418 MoveItDown| 412 + 419 spray| 418 + 420 swallow| 418 + 421 drop|Ͷ 418 + 422 MoveItBack| 412 + 423 MoveItInto| 412 + 424 inhale| 423 + 425 insert| 423 + 426 soak| 423 + 427 inlay|Ƕ 423 + 428 fill| 423 + 429 bury| 423 + 430 MoveItOut| 412 + 431 drain|ų 430 + 432 vomit|³ 430 + 433 exhale| 430 + 434 dump| 430 + 435 PickOut|γ 430 + 436 SqueezeOut| 430 + 437 MoveItAway|Զ 412 + 438 throw| 437 + 439 send| 437 + 440 shoot| 439 + 441 transmit| 439 + 442 transport| 439 + 443 post|ʼ 439 + 444 expel| 439 + 445 exile| 444 + 446 spread| 412 + 447 assemble|ۼ 412 + 448 CauseToMoveInFixedPosition|λ 400 + 449 shake|ҡ 448 + 450 reverse|ߵ 448 + 451 turn|Ťת 448 + 452 coil| 448 + 453 surround|Χ 452 + 454 CausePartMove| 448 + 455 OpenShut| 400 + 456 open| 455 + 457 shut|ر 455 + 458 CeaseCauseTOMove|ֹ 333 + 459 hold| 458 + 460 pick|ʰ 459 + 461 HoldWithHand| 459 + 462 PropUp|֧ 459 + 463 bring|Я 459 + 464 HoldInMouth| 459 + 465 HoldInArm|§ 459 + 466 CarryOnBack| 459 + 467 TakeOutOfWater| 459 + 468 catch|׽ס 458 + 469 detain|ס 458 + 470 block|ס 458 + 471 fix|ס 458 + 472 SupportWeight|ס 458 + 473 AimAt| 333 + 474 AlterTimePosition|ʱλ 257 + 475 pass|ȹ 474 + 476 AlterQuantity| 257 + 477 add| 476 + 478 subtract| 476 + 479 exhaust| 476 + 480 economize|ʡ 476 + 481 AlterState|״̬ 256 + 482 AlterPhysical|䱾 481 + 483 CauseToExist|ʹ 482 + 484 create| 483 + 485 GiveBirth| 484 + 486 produce| 484 + 487 cook| 486 + 488 compile|༭ 486 + 489 build| 484 + 490 forming|γ 484 + 491 establish| 484 + 492 forge|α 484 + 493 CauseToAppear| 483 + 494 reveal|¶ 493 + 495 StripOff|ȥ 493 + 496 AlterStateNormal|䳣̬ 482 + 497 CauseToLive|ʹ 496 + 498 MakeLiving|ı 497 + 499 ProvideFor| 497 + 500 foster| 499 + 501 planting|ֲ 499 + 502 CauseToGrow|ʹɳ 496 + 503 metabolize|л 502 + 504 consume|ȡ 503 + 505 eat| 504 + 506 drink| 504 + 507 feed|ι 504 + 508 excrete|й 503 + 509 respire| 503 + 510 WhileAway| 502 + 511 exercise| 510 + 512 tour| 510 + 513 recreation| 510 + 514 addict|Ⱥ 510 + 515 SeekPleasure|Ѱ 510 + 516 keep| 502 + 517 maintain| 516 + 518 protect| 502 + 519 TakeCare| 502 + 520 cultivate| 502 + 521 help| 502 + 522 rescue| 521 + 523 KeepOn|ʹ 502 + 524 AlterStateGood|̬ 482 + 525 benefit| 524 + 526 MakeBetter|Ż 524 + 527 adjust| 526 + 528 PutInOrder| 526 + 529 improve| 526 + 530 enrich|ʵ 529 + 531 fulfil|ʵ 526 + 532 resume|ָ 524 + 533 cure|ҽ 532 + 534 repair| 532 + 535 amend| 532 + 536 AlterStateBad|ݬ̬ 482 + 537 MakeBad|Ӻ 536 + 538 MakeTrouble| 537 + 539 damage| 537 + 540 attack| 537 + 541 punish| 537 + 542 revenge| 537 + 543 HaveContest| 537 + 544 compete| 543 + 545 gamble|IJ 544 + 546 fight| 543 + 547 uprise| 546 + 548 resist| 546 + 549 defend| 543 + 550 defeat|սʤ 543 + 551 kill|ɱ 537 + 552 suicide|ɱ 551 + 553 remove| 537 + 554 destroy| 553 + 555 CauseToBeHidden|ʹʧ 482 + 556 hide| 555 + 557 cover|ڸ 555 + 558 PutOn| 557 + 559 wrap| 557 + 560 AlterAttribute| 482 + 561 MakeHigher| 560 + 562 MakeLower| 560 + 563 AlterAppearance| 560 + 564 AlterForm|״ 563 + 565 touch| 564 + 566 stroke| 564 + 567 stab| 564 + 568 sting| 564 + 569 beat| 564 + 570 bump|ײ 564 + 571 firing| 564 + 572 break|۶ 564 + 573 rub|Ħ 564 + 574 scratch|ץ 564 + 575 press|ѹ 564 + 576 unfold|̯ 564 + 577 grind|ĥ 564 + 578 split|ƿ 564 + 579 cut| 564 + 580 bite|ҧ 564 + 581 masticate|׽ 564 + 582 fold|ߡ 564 + 583 PlayWith|Ū 564 + 584 weave| 564 + 585 dig|ھ 564 + 586 clean|ʹ 563 + 587 wash|ϴ 586 + 588 wipe| 586 + 589 pollute|ʹ 563 + 590 apply|ͿĨ 563 + 591 beautify| 563 + 592 decorate|װ 591 + 593 MakeUp|ױ 591 + 594 uglify| 563 + 595 illuminate| 563 + 596 AlterColor|ɫ 563 + 597 brighten|ʹ 563 + 598 straighten|ֱ 563 + 599 bend| 563 + 600 sharpen|ʹ 563 + 601 filter| 563 + 602 lubricate| 563 + 603 AlterMeasurement| 560 + 604 WarmUp| 603 + 605 lighting|ȼ 604 + 606 burn| 604 + 607 cool| 603 + 608 moisten|ʪ 603 + 609 irrigate| 608 + 610 dry| 603 + 611 enlarge| 603 + 612 shrink|С 603 + 613 tighten|ս 603 + 614 loosen| 603 + 615 SpeedUp|ӿ 603 + 616 SlowDown| 603 + 617 MakeHeavier| 603 + 618 deepen| 603 + 619 MakeEarlier| 603 + 620 delay| 603 + 621 thicken|Ũ 603 + 622 dilute|嵭 603 + 623 AlterProperty| 560 + 624 strengthen|ӹ 623 + 625 weaken| 623 + 626 dredge|ͨ 623 + 627 BlockUp| 623 + 628 AlterGrade|伶 623 + 629 upgrade| 628 + 630 degrade| 628 + 631 PlayUp|Ĵ 623 + 632 PlayDown| 623 + 633 slander|̰ 632 + 634 delimit| 623 + 635 refine| 623 + 636 ize|̬ 560 + 637 MakeAct|ʹ֮ 481 + 638 CauseToDo|ʹ 637 + 639 request|Ҫ 638 + 640 call|ٻ 638 + 641 invite| 638 + 642 dispatch|Dz 638 + 643 order| 638 + 644 entrust|ί 638 + 645 urge|ʹ 638 + 646 force|ǿ 638 + 647 guide| 638 + 648 persuade|Ȱ˵ 638 + 649 mediate| 648 + 650 mobilize| 638 + 651 incite|ָʹ 638 + 652 entice| 638 + 653 indulge| 638 + 654 TurnOn| 638 + 655 CauseNotToDo|趯 637 + 656 restrain|ֹ 655 + 657 obstruct|ֹ 655 + 658 prohibit|ֹ 655 + 659 TurnOff|ֹ 655 + 660 exempt| 655 + 661 use| 637 + 662 TakeVehicle| 661 + 663 employ| 661 + 664 spend| 661 + 665 lavish|˷ 664 + 666 AlterMental|侫 481 + 667 AlterEmotion| 666 + 668 soothe|ο 667 + 669 excite|ж 667 + 670 MakeHappy|ʹϲ 669 + 671 please|ȡ 670 + 672 tease|ȡ 670 + 673 irritate|ŭ 669 + 674 frighten|Ż 669 + 675 discourage|ˮ 669 + 676 offend| 669 + 677 disappoint| 669 + 678 MakeWorried| 669 + 679 attract| 669 + 680 ShowEmotion|ʾ 666 + 681 treat|Դ 680 + 682 ShowGoodEmotion|ʾ 681 + 683 ShowInterest| 682 + 684 ShowJoy|ʾϲ 682 + 685 laugh|Ц 684 + 686 ShowLove|ʾ 682 + 687 praise|佱 682 + 688 reward| 687 + 689 congratulate|ף 682 + 690 thank|л 682 + 691 apologize|Ǹ 682 + 692 SayHello|ʺ 682 + 693 visit| 692 + 694 welcome|ӭ 682 + 695 salute|¾ 682 + 696 ExpressAgreement|ʾͬ 682 + 697 accept| 696 + 698 appreciate|޳ 696 + 699 endorse|ӵ 682 + 700 guarantee|֤ 682 + 701 WellTreat|ƴ 682 + 702 entertain|д 701 + 703 commemorate|ʾ˼ 682 + 704 ShowBadEmotion|ʾ 681 + 705 IllBehave| 704 + 706 sigh|̾ 704 + 707 condole|° 681 + 708 weep| 707 + 709 ExpressDissatisfaction|ʾ 707 + 710 protest| 709 + 711 ExpressAgainst|Ǵ 709 + 712 satirize| 709 + 713 LaughAt|Ц 709 + 714 IllTreat| 709 + 715 ExpressDisagreement|ʾͬ 707 + 716 oppose| 715 + 717 reject|ؾ 715 + 718 betray| 707 + 719 ExpressAnger|ʾŭ 707 + 720 AlterKnowledge|֪ 666 + 721 MakeOwnKnowledge|ʹҸ֪ 720 + 722 sense|о 721 + 723 look| 722 + 724 listen| 722 + 725 smell| 722 + 726 feel| 722 + 727 savor| 722 + 728 GetKnowledge|֪ 721 + 729 TryToKnow|Ū 728 + 730 read| 729 + 731 ask| 729 + 732 interrogate| 731 + 733 LookFor|Ѱ 729 + 734 check| 729 + 735 scout| 734 + 736 diagnose| 734 + 737 supervise| 734 + 738 investigate| 734 + 739 exam| 734 + 740 calculate| 729 + 741 count| 740 + 742 measure| 740 + 743 distinguish|ֱ 729 + 744 think|˼ 729 + 745 deduce| 744 + 746 guess|² 745 + 747 predict|Ԥ 745 + 748 LookBack| 744 + 749 study|ѧ 729 + 750 drill|ϰ 749 + 751 imitate|ģ 749 + 752 research|о 729 + 753 compare|Ƚ 729 + 754 analyze| 729 + 755 experiment|ʵ 729 + 756 prove|֤ 721 + 757 decide| 721 + 758 judge|ö 757 + 759 MakeAppointment|Լ 757 + 760 estimate| 721 + 761 plan|ƻ 721 + 762 choose|ѡ 721 + 763 select|ѡ 762 + 764 MakeOthersKnowledge|ʹ˸֪ 720 + 765 express|ʾ 764 + 766 mention|ἰ 765 + 767 MakeSound| 765 + 768 cry| 765 + 769 speak|˵ 765 + 770 boast| 765 + 771 swear| 765 + 772 sing| 765 + 773 recite|ж 765 + 774 propose| 765 + 775 quote| 765 + 776 explain|˵ 765 + 777 tell| 765 + 778 describe|д 765 + 779 announce| 765 + 780 disseminate| 765 + 781 accuse|ظ 765 + 782 recommend|Ƽ 765 + 783 reply| 765 + 784 refute| 783 + 785 admit| 765 + 786 deny| 765 + 787 write|д 765 + 788 copy|д 787 + 789 sign|д 787 + 790 translate| 765 + 791 record|¼ 765 + 792 TakePicture| 791 + 793 draw| 765 + 794 carve| 765 + 795 print|ӡˢ 765 + 796 publish| 795 + 797 show| 765 + 798 perform| 797 + 799 display|չʾ 797 + 800 ShowOff|ҫ 797 + 801 teach| 764 + 802 communicate| 764 + 803 talk|̸ 802 + 804 discuss| 802 + 805 debate| 802 + 806 quarrel| 802 + 807 MakeNoKnowledge|ʹ֪ 720 + 808 HideTruth| 807 + 809 KeepSilence|˵ 807 + 810 MakeMisunderstand|ʹ֪ 720 + 811 TalkNonsense|Ϲ˵ 810 + 812 deceive|ƭ 810 + 813 entity|ʵ 813 + 814 thing| 813 + 815 physical| 814 + 816 animate| 815 + 817 AnimalHuman| 816 + 818 human| 817 + 819 humanized| 818 + 820 animal| 817 + 821 beast| 820 + 822 livestock| 820 + 823 bird| 820 + 824 InsectWorm| 820 + 825 fish| 820 + 826 plant|ֲ 816 + 827 crop|ׯ 826 + 828 tree| 826 + 829 FlowerGrass| 826 + 830 vegetable|߲ 826 + 831 fruit|ˮ 826 + 832 AlgaeFungi|ֲ 826 + 833 bacteria|΢ 816 + 834 inanimate| 815 + 835 natural|Ȼ 834 + 836 celestial| 835 + 837 earth| 835 + 838 land|½ 837 + 839 waters|ˮ 837 + 840 sky| 837 + 841 place|ط 837 + 842 liquid|Һ 835 + 843 water|ˮ 842 + 844 ice| 835 + 845 metal| 835 + 846 wood|ľ 835 + 847 fire| 835 + 848 stone|ʯ 835 + 849 weather| 835 + 850 RainSnow|ѩ 849 + 851 wind| 849 + 852 CloudMist| 849 + 853 thunder| 849 + 854 gas| 835 + 855 sound| 835 + 856 electricity| 835 + 857 lights| 835 + 858 trace| 835 + 859 artifact|˹ 834 + 860 clothing| 859 + 861 edible|ʳ 859 + 862 food|ʳƷ 861 + 863 drinks|Ʒ 861 + 864 medicine|ҩ 859 + 865 chemical|ѧ 859 + 866 addictive|Ⱥ 859 + 867 building| 859 + 868 house| 867 + 869 room| 868 + 870 facilities|ʩ 867 + 871 implement| 859 + 872 machine| 871 + 873 computer| 871 + 874 vehicle|ͨ 871 + 875 LandVehicle| 874 + 876 ship| 874 + 877 aircraft| 874 + 878 furniture|Ҿ 871 + 879 stationery|ľ 871 + 880 paper|ֽ 879 + 881 PenInk|ī 879 + 882 MusicTool| 871 + 883 SportTool|˶ 871 + 884 tool|þ 871 + 885 weapon| 871 + 886 software| 871 + 887 material| 859 + 888 wealth|Ǯ 859 + 889 fund|ʽ 888 + 890 expenditure| 888 + 891 payment| 888 + 892 money| 888 + 893 coupon|Ʊ֤ 888 + 894 treasure|䱦 888 + 895 readings| 859 + 896 publications|鿯 895 + 897 document| 895 + 898 bill|Ʊ 895 + 899 account| 895 + 900 letter|ż 895 + 901 mark|־ 895 + 902 shape| 815 + 903 mental| 814 + 904 emotion| 903 + 905 experience| 903 + 906 aspiration|Ը 903 + 907 thinking|˼ 903 + 908 thought|ͷ 907 + 909 method| 907 + 910 plans|滮 909 + 911 purpose|Ŀ 907 + 912 reason| 907 + 913 standpoint| 907 + 914 knowledge|֪ʶ 907 + 915 information|Ϣ 903 + 916 language| 915 + 917 symbol| 916 + 918 punc| 917 + 919 character| 916 + 920 expression| 916 + 921 text| 916 + 922 news| 921 + 923 music| 915 + 924 image|ͼ 915 + 925 shows| 915 + 926 example|ʵ 915 + 927 regulation| 903 + 928 system|ƶ 927 + 929 law|ɷ 927 + 930 agreement|Լ 927 + 931 rights|Ȩ 903 + 932 duty| 903 + 933 event|¼ 814 + 934 fact| 933 + 935 affairs| 934 + 936 problem| 934 + 937 cause|ԭ 934 + 938 process| 934 + 939 result| 934 + 940 phenomena| 933 + 941 disease| 940 + 942 organization|֯ 814 + 943 institution| 942 + 944 army| 942 + 945 InstitutePlace| 942 + 946 community| 942 + 947 internet| 814 + 948 time|ʱ 813 + 949 space|ռ 813 + 950 direction| 949 + 951 location|λ 949 + 952 component| 813 + 953 part| 952 + 954 fittings| 952 + 955 attribute| 955 + 956 aValue|ֵ 956 + 957 AttributeValue|Ժֵ 957 + 958 appearance| 957 + 959 form|״ 958 + 960 flat| 959 + 961 straight|ֱ 959 + 962 curved| 959 + 963 level|ƽ 959 + 964 upright| 959 + 965 slanted| 959 + 966 even| 959 + 967 dissimilar| 959 + 968 protruding|͹ 959 + 969 dented| 959 + 970 smooth|̹ 959 + 971 rugged| 959 + 972 square| 959 + 973 round|Բ 959 + 974 queer| 959 + 975 horizontal| 959 + 976 blunt| 959 + 977 acute| 959 + 978 sharp| 959 + 979 wrinkled| 959 + 980 dot| 959 + 981 linear| 959 + 982 surfacial| 959 + 983 cubic| 959 + 984 angular| 959 + 985 brightness| 958 + 986 bright| 985 + 987 dark| 985 + 988 clearness| 958 + 989 clear| 988 + 990 blurred| 988 + 991 prettiness| 958 + 992 beautiful| 991 + 993 ugly| 991 + 994 pattern|ʽ 958 + 995 modern| 994 + 996 old| 994 + 997 SmoothFinish| 958 + 998 delicate| 997 + 999 coarse| 997 + 1000 polished| 997 + 1001 color|ɫ 958 + 1002 colored| 1001 + 1003 plain| 1001 + 1004 red| 1001 + 1005 yellow| 1001 + 1006 blue| 1001 + 1007 green| 1001 + 1008 purple| 1001 + 1009 brown| 1001 + 1010 white| 1001 + 1011 black| 1001 + 1012 grey| 1001 + 1013 RedBrown| 1001 + 1014 BlueGreen| 1001 + 1015 colorless|ɫ 1001 + 1016 hue|Ũ 958 + 1017 NotLight|Ũ 1016 + 1018 light| 1016 + 1019 odor|ζ 958 + 1020 fragrant| 1019 + 1021 stinky| 1019 + 1022 taste|ζ 958 + 1023 sour| 1022 + 1024 sweet| 1022 + 1025 bitter| 1022 + 1026 peppery| 1022 + 1027 salty| 1022 + 1028 posture| 958 + 1029 scene| 958 + 1030 exuberant|ï 1029 + 1031 desolate| 1029 + 1032 threatening| 1029 + 1033 stately|ׯ 1029 + 1034 cleanness|ྻ 958 + 1035 spotless| 1034 + 1036 dirty| 1034 + 1037 fatness| 958 + 1038 fat| 1037 + 1039 bony| 1037 + 1040 bearing|̬ 958 + 1041 thrifty| 1040 + 1042 gracious| 1040 + 1043 extravagant| 1040 + 1044 PhysicState|״̬ 958 + 1045 attire|װ 958 + 1046 style| 958 + 1047 demeanor| 958 + 1048 countenance| 958 + 1049 measurement| 957 + 1050 length| 1049 + 1051 long| 1050 + 1052 short| 1050 + 1053 height|߶ 1049 + 1054 tall| 1053 + 1055 low| 1053 + 1056 area| 1049 + 1057 big| 1056 + 1058 medium| 1056 + 1059 small|С 1056 + 1060 broad| 1056 + 1061 size|ߴ 1049 + 1062 big| 1061 + 1063 medium| 1061 + 1064 small|С 1061 + 1065 broad| 1061 + 1066 width| 1049 + 1067 wide| 1066 + 1068 narrow|խ 1066 + 1069 depth| 1049 + 1070 deep| 1069 + 1071 shallow|dz 1069 + 1072 thickness| 1049 + 1073 thick| 1072 + 1074 thin| 1072 + 1075 fineness|ϸ 1049 + 1076 fine| 1075 + 1077 widediameter| 1075 + 1078 slope|¶ 1049 + 1079 steep| 1078 + 1080 density|ܶ 1049 + 1081 dense| 1080 + 1082 sparse| 1080 + 1083 tightness|ɽ 1049 + 1084 loose| 1083 + 1085 tight| 1083 + 1086 hardness|Ӳ 1049 + 1087 hard|Ӳ 1086 + 1088 soft| 1086 + 1089 crisp| 1086 + 1090 tender| 1086 + 1091 tough| 1086 + 1092 concentration|Ũ 1049 + 1093 watery|ϡ 1092 + 1094 concentrated| 1092 + 1095 weight| 1049 + 1096 heavy| 1095 + 1097 NotHeavy| 1095 + 1098 SoundVolume| 1049 + 1099 loud| 1098 + 1100 distance| 1049 + 1101 far|Զ 1100 + 1102 near| 1100 + 1103 earliness| 1049 + 1104 early| 1103 + 1105 late| 1103 + 1106 speed|ٶ 1049 + 1107 fast| 1106 + 1108 slow| 1106 + 1109 duration| 1049 + 1110 TimeLong| 1109 + 1111 TimeShort| 1109 + 1112 dampness|ʪ 1049 + 1113 dried| 1112 + 1114 wet|ʪ 1112 + 1115 waterless| 1112 + 1116 waterlogging| 1112 + 1117 temperature|¶ 1049 + 1118 cold| 1117 + 1119 hot| 1117 + 1120 chilly| 1117 + 1121 warm| 1117 + 1122 price|۸ 1049 + 1123 cheap| 1122 + 1124 expensive| 1122 + 1125 stickiness| 1049 + 1126 sticky| 1125 + 1127 angle|Ƕ 1049 + 1128 property| 957 + 1129 newness|¾ 1128 + 1130 new| 1129 + 1131 used| 1129 + 1132 age| 1128 + 1133 aged| 1132 + 1134 adult| 1132 + 1135 young| 1132 + 1136 trueness|α 1128 + 1137 true| 1136 + 1138 fake|α 1136 + 1139 GoodBad|û 1128 + 1140 good| 1139 + 1141 bad| 1139 + 1142 quality| 1128 + 1143 fertile| 1142 + 1144 barren| 1142 + 1145 refined| 1142 + 1146 crude|ª 1142 + 1147 average| 1142 + 1148 great|ΰ 1142 + 1149 negligible| 1142 + 1150 durable| 1142 + 1151 intensity|ǿ 1128 + 1152 strong|ǿ 1151 + 1153 weak| 1151 + 1154 easiness| 1128 + 1155 easy| 1154 + 1156 difficult| 1154 + 1157 SoundQuality| 1128 + 1158 content| 1128 + 1159 substantial|ʵ 1158 + 1160 empty| 1158 + 1161 profound| 1158 + 1162 NotProfound|dz 1158 + 1163 interesting|Ȥ 1158 + 1164 boring| 1158 + 1165 detailed| 1158 + 1166 simple| 1158 + 1167 pure| 1158 + 1168 mixed| 1158 + 1169 accurate|׼ 1158 + 1170 neat| 1158 + 1171 disorder| 1158 + 1172 concise| 1158 + 1173 unattached|ɢ 1158 + 1174 trivial| 1158 + 1175 complicated| 1158 + 1176 layered| 1158 + 1177 correctness| 1128 + 1178 correct|ȷ 1177 + 1179 wrong| 1177 + 1180 degree|̶ 1128 + 1181 extreme| 1180 + 1182 insufficiently|Ƿ 1180 + 1183 very| 1180 + 1184 ish| 1180 + 1185 more| 1180 + 1186 most| 1180 + 1187 over| 1180 + 1188 reputation| 1128 + 1189 glorious| 1188 + 1190 Notwellknown| 1188 + 1191 disgraced| 1188 + 1192 behavior|ֹ 1128 + 1193 formal|ʽ 1192 + 1194 informal|ʽ 1192 + 1195 dexterous| 1192 + 1196 flexible| 1192 + 1197 stiff| 1192 + 1198 lasting| 1192 + 1199 secret| 1192 + 1200 opened| 1192 + 1201 hidden| 1192 + 1202 forthright|ˬ 1192 + 1203 tactful| 1192 + 1204 gentle| 1192 + 1205 suitable| 1192 + 1206 proper| 1192 + 1207 BadTemper|Ƣ 1192 + 1208 convenient| 1192 + 1209 inconvenient| 1192 + 1210 improper| 1192 + 1211 vulgar| 1192 + 1212 hasty| 1192 + 1213 sudden| 1192 + 1214 fluent| 1192 + 1215 nimble| 1192 + 1216 strict| 1192 + 1217 lenient| 1192 + 1218 fierce| 1192 + 1219 free| 1192 + 1220 restrained| 1192 + 1221 diligent| 1192 + 1222 lazy| 1192 + 1223 biased|ƫ 1192 + 1224 kindhearted| 1192 + 1225 sly| 1192 + 1226 stubborn| 1192 + 1227 active|Ը 1192 + 1228 passive| 1192 + 1229 modest|ǫ 1192 + 1230 arrogant| 1192 + 1231 attentive|ϸ 1192 + 1232 careless| 1192 + 1233 cautious| 1192 + 1234 flighty| 1192 + 1235 sincere| 1192 + 1236 rash|ç 1192 + 1237 indifferent|Į 1192 + 1238 steady| 1192 + 1239 lascivious| 1192 + 1240 honest| 1192 + 1241 fair| 1192 + 1242 greedy|̰ 1192 + 1243 eccentric|Ƨ 1192 + 1244 optimistic|ֹ 1192 + 1245 pessimistic| 1192 + 1246 evil| 1192 + 1247 faithful| 1192 + 1248 treacherous| 1192 + 1249 mischievous| 1192 + 1250 continuous| 1192 + 1251 together|ͬ 1192 + 1252 SocialMode| 1128 + 1253 value|ֵ 1128 + 1254 precious| 1253 + 1255 impression|ӡ 1128 + 1256 effect|Ч 1128 + 1257 useless| 1256 + 1258 superior| 1256 + 1259 will|־ 1128 + 1260 courage| 1128 + 1261 brave| 1260 + 1262 timid| 1260 + 1263 wisdom|ǻ 1128 + 1264 wise| 1263 + 1265 foolish| 1263 + 1266 clever| 1263 + 1267 NotQuick|ګ 1263 + 1268 ability| 1128 + 1269 able| 1268 + 1270 unable|ӹ 1268 + 1271 tolerance| 1128 + 1272 generous| 1271 + 1273 miser| 1271 + 1274 habit|ϰ 1128 + 1275 importance| 1128 + 1276 important| 1275 + 1277 secondary| 1275 + 1278 main| 1275 + 1279 branch|֧ 1275 + 1280 necessity|Ҫ 1128 + 1281 necessary|Ҫ 1280 + 1282 redundant| 1280 + 1283 rank|ȼ 1128 + 1284 HighRank|ߵ 1283 + 1285 LowRank|͵ 1283 + 1286 elementary| 1283 + 1287 standard|׼ 1128 + 1288 passed|ϸ 1287 + 1289 status| 1128 + 1290 occupation|ְλ 1128 + 1291 range| 1128 + 1292 extensive| 1291 + 1293 nonextensive| 1291 + 1294 all|ȫ 1291 + 1295 pieced|Ƭ 1291 + 1296 frequency|Ƶ 1128 + 1297 often| 1296 + 1298 rarely|ż 1296 + 1299 again| 1296 + 1300 regular| 1296 + 1301 power| 1128 + 1302 strength| 1128 + 1303 ProsCons| 1128 + 1304 pros| 1303 + 1305 cons| 1303 + 1306 relatedness| 1128 + 1307 intimate| 1306 + 1308 unfamiliar|϶ 1306 + 1309 opposed| 1306 + 1310 sex|Ա 1128 + 1311 male| 1310 + 1312 female|Ů 1310 + 1313 origin| 1128 + 1314 name| 1128 + 1315 number| 1128 + 1316 performance| 1128 + 1317 interest|Ȥζ 1128 + 1318 outlook|ǰ 1128 + 1319 relationship|ϵ 957 + 1320 attachment| 1319 + 1321 public| 1320 + 1322 private|˽ 1320 + 1323 kind| 1319 + 1324 certain|ij 1323 + 1325 other| 1323 + 1326 special| 1323 + 1327 ordinary| 1323 + 1328 source|Դ 1319 + 1329 original|ԭ 1328 + 1330 foreign| 1328 + 1331 artificial| 1328 + 1332 location|λ 1319 + 1333 internal| 1332 + 1334 external| 1332 + 1335 direction| 1319 + 1336 east| 1335 + 1337 west| 1335 + 1338 south| 1335 + 1339 north| 1335 + 1340 clan| 1319 + 1341 divergence| 1319 + 1342 boundary| 1319 + 1343 sequence| 1319 + 1344 InSequence| 1343 + 1345 OutOfOrder| 1343 + 1346 contrariness| 1319 + 1347 positive| 1346 + 1348 negative| 1346 + 1349 situation|״ 957 + 1350 circumstances| 1349 + 1351 urgent| 1350 + 1352 peaceful| 1350 + 1353 relax| 1350 + 1354 lonely| 1350 + 1355 flourishing| 1350 + 1356 wane|˥ 1350 + 1357 tranquil| 1350 + 1358 hardship| 1350 + 1359 safe| 1350 + 1360 dangerous|Σ 1350 + 1361 happy| 1350 + 1362 miserable| 1350 + 1363 busy|æ 1350 + 1364 idle| 1350 + 1365 richness|ƶ 1349 + 1366 rich| 1365 + 1367 poor| 1365 + 1368 similarity|ͬ 1349 + 1369 alike| 1368 + 1370 different| 1368 + 1371 occasion| 1349 + 1372 bustling| 1371 + 1373 crowded| 1371 + 1374 quiet| 1371 + 1375 stuffy| 1371 + 1376 cosy| 1371 + 1377 physique| 1349 + 1378 unripe| 1377 + 1379 ripe| 1377 + 1380 wholeness|ȱ 1349 + 1381 complete| 1380 + 1382 incomplete|ȱ 1380 + 1383 fullness| 1349 + 1384 full| 1383 + 1385 possibility| 1349 + 1386 possible| 1385 + 1387 impossible| 1385 + 1388 almost| 1385 + 1389 environment| 1349 + 1390 syntax|﷨ 1390 + 1391 adverbial|״ 1390 + 1392 manner|ʽ 1391 + 1393 accompaniment| 1391 + 1394 comment| 1391 + 1395 modality| 1391 + 1396 neg| 1391 + 1397 emphasis|ǿ 1391 + 1398 tense|ʱ̬ 1391 + 1399 conjunction| 1390 + 1400 and| 1399 + 1401 or| 1399 + 1402 but| 1399 + 1403 whword| 1390 + 1404 concession|ò 1403 + 1405 supplement|ݽ 1403 + 1406 condition| 1403 + 1407 cause|ԭ 1403 + 1408 EventResult|¼ 1403 + 1409 transition|ת 1403 + 1410 result| 1403 + 1411 particle| 1390 + 1412 DeChinese| 1411 + 1413 LeChinese| 1411 + 1414 Vdirection| 1413 + 1415 Vprocess| 1413 + 1416 Vsuppose|ٶ 1415 + 1417 Vstart| 1415 + 1418 Vgoingon|չ 1415 + 1419 Vcontinue| 1415 + 1420 Vend| 1415 + 1421 Vresult| 1413 + 1422 Vachieve| 1421 + 1423 Vable| 1421 + 1424 Vpossible| 1421 + 1425 Vtry| 1421 + 1426 MaChinese| 1411 + 1427 classifier|λ 1390 + 1428 unit|λ 1427 + 1429 NounUnit| 1427 + 1430 ActUnit| 1427 + 1431 qValue|ֵ 1431 + 1432 amount| 1431 + 1433 many| 1432 + 1434 few| 1432 + 1435 single| 1432 + 1436 double| 1432 + 1437 fragment| 1432 + 1438 some|Щ 1432 + 1439 sufficient| 1432 + 1440 half| 1432 + 1441 only| 1432 + 1442 over| 1432 + 1443 rate| 1431 + 1444 SecondaryFeature| 1444 + 1445 ProperName|ר 1444 + 1446 mass| 1444 + 1447 official| 1444 + 1448 employee|Ա 1444 + 1449 industrial| 1444 + 1450 mine| 1444 + 1451 factory| 1444 + 1452 agricultural|ũ 1444 + 1453 commercial| 1444 + 1454 education| 1444 + 1455 medical|ҽ 1444 + 1456 literature| 1444 + 1457 entertainment| 1444 + 1458 sport| 1444 + 1459 religion|ڽ 1444 + 1460 politics| 1444 + 1461 diplomatic|⽻ 1444 + 1462 police| 1444 + 1463 military| 1444 + 1464 royal| 1444 + 1465 family| 1444 + 1466 friend| 1444 + 1467 enemy| 1444 + 1468 crime| 1444 + 1469 waste| 1444 + 1470 poison| 1444 + 1471 desired| 1444 + 1472 undesired|ݬ 1444 + 1473 abstract| 1444 + 1474 generic|ͳ 1444 + 1475 question| 1444 + 1476 country| 1444 + 1477 capital| 1444 + 1478 provincial|ʡ 1444 + 1479 city| 1444 + 1480 village| 1444 + 1481 route|· 1444 + 1482 surname| 1444 + 1483 firstPerson| 1444 + 1484 SecondPerson| 1444 + 1485 ThirdPerson| 1444 + 1486 it| 1444 + 1487 self| 1444 + 1488 EachOther|໥ 1444 + 1489 head|ͷ 1444 + 1490 heart| 1444 + 1491 body| 1444 + 1492 bone| 1444 + 1493 base| 1444 + 1494 limb|֫ 1444 + 1495 arm| 1444 + 1496 hand| 1444 + 1497 leg| 1444 + 1498 foot| 1444 + 1499 wing| 1444 + 1500 edge| 1444 + 1501 mouth| 1444 + 1502 eye| 1444 + 1503 viscera| 1444 + 1504 nerve| 1444 + 1505 tail|β 1444 + 1506 embryo| 1444 + 1507 skin|Ƥ 1444 + 1508 flesh| 1444 + 1509 hair|ë 1444 + 1510 aspect| 1444 + 1511 upper| 1444 + 1512 beneath| 1444 + 1513 InFront|ǰ 1444 + 1514 hind| 1444 + 1515 surrounding|Χ 1444 + 1516 festival| 1444 + 1517 year| 1444 + 1518 season| 1444 + 1519 spring| 1444 + 1520 summer| 1444 + 1521 autumn| 1444 + 1522 winter| 1444 + 1523 month| 1444 + 1524 TenDays|Ѯ 1444 + 1525 week| 1444 + 1526 day| 1444 + 1527 hour|ʱ 1444 + 1528 minute| 1444 + 1529 morning| 1444 + 1530 afternoon| 1444 + 1531 night| 1444 + 1532 middle| 1444 + 1533 ending|ĩ 1444 + 1534 now| 1444 + 1535 past| 1444 + 1536 future| 1444 + 1537 immediate| 1444 + 1538 finally| 1444 + 1539 already| 1444 + 1540 also|Ҳ 1444 + 1541 ordinal| 1444 + 1542 cardinal| 1444 + 1543 approximate| 1444 + 1544 EventRoleAndFeatures|̬ɫ 1544 + 1545 EventRole|̬ɫ 1544 + 1546 relevant|ϵ 1545 + 1547 existent| 1545 + 1548 experiencer| 1545 + 1549 agent|ʩ 1545 + 1550 coagent|ʩ 1545 + 1551 possession|ռ 1545 + 1552 patient| 1545 + 1553 PatientPartof| 1545 + 1554 PatientProduct|Ʒ 1545 + 1555 PatientAttribute| 1545 + 1556 PartOfTouch| 1545 + 1557 content| 1545 + 1558 ContentProduct|ݳƷ 1545 + 1559 ResultContent| 1545 + 1560 isa|ָ 1545 + 1561 partof| 1545 + 1562 whole| 1545 + 1563 descriptive|д 1545 + 1564 result| 1545 + 1565 ResultEvent|¼ 1545 + 1566 ResultIsa|ָ 1545 + 1567 ResultWhole| 1545 + 1568 cause|ԭ 1545 + 1569 partner| 1545 + 1570 contrast| 1545 + 1571 ContentCompare|Ƚ 1545 + 1572 source|Դ 1545 + 1573 SourceWhole|Դ 1545 + 1574 target|Ŀ 1545 + 1575 cost| 1545 + 1576 beneficiary| 1545 + 1577 StateIni|ԭ״̬ 1545 + 1578 StateFin|״̬ 1545 + 1579 location| 1545 + 1580 LocationIni|ԭ 1545 + 1581 LocationFin|մ 1545 + 1582 LocationThru|ͨ 1545 + 1583 direction| 1545 + 1584 time|ʱ 1545 + 1585 TimeIni|ʼʱ 1545 + 1586 TimeFin|ֹʱ 1545 + 1587 duration|ʱ 1545 + 1588 DurationAfterEvent|ʱ 1545 + 1589 EventProcess|¼ 1545 + 1590 means|ֶ 1545 + 1591 instrument| 1545 + 1592 material| 1545 + 1593 degree|̶ 1545 + 1594 range| 1545 + 1595 manner|ʽ 1545 + 1596 TimeRange|ʱ 1545 + 1597 frequency|Ƶ 1545 + 1598 times| 1545 + 1599 purpose|Ŀ 1545 + 1600 scope|Χ 1545 + 1601 AccordingTo| 1545 + 1602 condition| 1545 + 1603 concession|ò 1545 + 1604 comment| 1545 + 1605 succeeding| 1545 + 1606 besides|ݽ 1545 + 1607 except| 1545 + 1608 accompaniment| 1545 + 1609 modifier| 1545 + 1610 restrictive|޶ 1545 + 1611 quantity| 1545 + 1612 QuantityCompare|Ƚ 1545 + 1613 possessor| 1545 + 1614 concerning| 1545 + 1615 EventFeatures|̬ 1544 + 1616 topic| 1615 + 1617 focus| 1615 diff --git a/java/WordSimilarity/dict/glossary.dat b/java/WordSimilarity/dict/glossary.dat new file mode 100644 index 0000000..e936e23 --- /dev/null +++ b/java/WordSimilarity/dict/glossary.dat @@ -0,0 +1,66181 @@ +1 NUM qValue|ֵ,amount|,cardinal| +2 NUM qValue|ֵ,amount|,cardinal|,mass| +3 NUM qValue|ֵ,amount|,cardinal|,mass| +4 NUM qValue|ֵ,amount|,cardinal|,mass| +5 NUM qValue|ֵ,amount|,cardinal|,mass| +6 NUM qValue|ֵ,amount|,cardinal|,mass| +7 NUM qValue|ֵ,amount|,cardinal|,mass| +8 NUM qValue|ֵ,amount|,cardinal|,mass| +9 NUM qValue|ֵ,amount|,cardinal|,mass| +ASCII N symbol|,computer|,software| +BP N tool|þ,*LookFor|Ѱ,#cry| +B N fact|,diagnose|,medical|ҽ +B N tool|þ,*diagnose|,medical|ҽ +CPU N part|,%computer|,heart| +DNA N part|,%animate| +T N clothing|,#body| +U N facilities|ʩ,route|·,curved| +WTO N InstitutePlace|,ProperName|ר,commercial| +X N lights|,*diagnose|,medical|ҽ +s N character|,surname|,human|,ProperName|ר + N room|,@excrete|й + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V beat| + V beat| +ض V ShowBadEmotion|ʾ + N tree| + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + PUNC {punc|} + N lights| + ECHO {comment|} + ECHO {comment|} +ѽ ECHO {comment|} +Ӵ ECHO {comment|} + N place|ط,country|,ProperName|ר,(Afghanistan|) + N place|ط,country|,ProperName|ר,(Albania|) + N place|ط,country|,ProperName|ר,(Algeria|) + N place|ط,country|,ProperName|ר,(Argentina|͢) + N human|,%publications|鿯 + N human|,family|,male| + N place|ط,capital|,ProperName|ר,(the Ivory Coast|) + N humanized|,ProperName|ר + N language|,#country|,ProperName|ר + N place|ط,capital|,ProperName|ר,(the United Arab Emirates|) + N human|,family|,male| + N human|,ProperName|ר,past| + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Albania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,(Albania|) + N language|,#country|,ProperName|ר + N part|,%inanimate| + N lights| + N place|ط,capital|,ProperName|ר,(Algeria|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Algeria|) + N place|ط,country|,ProperName|ר,(Africa|) +ǵɶ N money|,(Algeria|) + N human|,(Algeria|) + N language|,#country|,ProperName|ר + N human|,young|,rash|ç,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Afghan|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,(Afghanistan|) + N human|,(Afghan|) +͢ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Argentina|͢) +͢ N place|ط,country|,ProperName|ר,(South America|) +͢ N human|,(Argentina|͢) +è N human|,ordinary| + N medicine|ҩ + N place|ط,capital|,ProperName|ר,(Ghana|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Emirates|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Arab|) + N symbol|,#quantity| + N language|,#country|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(Palestine|˹̹) +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Emirates|) + N place|ط,country|,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Oman|) + N place|ط,country|,ProperName|ר,(Asia|) +Ƕ N money|,(Oman|) +è N human|,ordinary| +װ N bacteria|΢ +װ N disease| +Ħ N medicine|ҩ +ķ N language|,#country|,ProperName|ר +ķ˹ص N place|ط,capital|,ProperName|ר,(Netherlands|) +Ƥ N place|ط,capital|,ProperName|ר,(Western Samoa|Ħ) +Ƭ N medicine|ҩ,?addictive|Ⱥ + N human|,aged|,female|Ů + N human|,family|,female|Ů +ķ N language|,#country|,ProperName|ר +ݽ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Azerbaijan |ݽ) +ݽ N place|ط,country|,ProperName|ר,(Asia|) +ݽ N language|,#country|,ProperName|ר +˾ƥ N medicine|ҩ +Ʒ N medicine|ҩ + N human|,#occupation|ְλ,*TakeCare|,*teach|,female|Ů + N human|,family|,female|Ů + N human|,religion|ڽ + V please|ȡ + N place|ط,country|,ProperName|ר,(Egypt|) + N place|ط,country|,ProperName|ר,(Ethiopia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Egypt|) + N place|ط,country|,ProperName|ר,(Africa|) + N money|,(Egypt|) + N human|,(Egypt|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ethiopia|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Ethiopia|) +˹ N money|,(Cape Verde|ý) +˹ N money|,(Portugal|) + V BeNear| + V delay| + V do|,manner=regular| + V endure| + V pass|ȹ + V suffer| + ADV aValue|ֵ,sequence|,regular| + V suffer|,content=beat| + V suffer|,content=HungryThirsty| + ADV aValue|ֵ,sequence|,InSequence| +Ұ ADV aValue|ֵ,sequence|,InSequence| + V BeNear| + V approach|ӽ + V suffer|,content=ExpressAgainst|Ǵ +Ű ADV aValue|ֵ,sequence|,InSequence| + ADV aValue|ֵ,sequence|,InSequence| + ADV aValue|ֵ,sequence|,InSequence| + V suffer|,content=beat| + ECHO {comment|} +ѽ ECHO {comment|} +Ӵ ECHO {comment|} + ECHO {comment|} +̾ V sigh|̾ + V pity| + V sorrowful| + V sorrowful| + V condole|° + V request|Ҫ + V cry|,manner=sorrowful| + V weep|,manner=sorrowful| +Ұ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V cry|,manner=sorrowful| + V cry|,manner=sorrowful| + N music|,*condole|° + V pity| + V cry|,manner=sorrowful| + V weep|,manner=sorrowful| + V request|Ҫ + V sorrowful| +˼ N emotion|,sorrowful| +̾ V sigh|̾ +ʹ V sorrowful| +Թ V sorrowful| + V pity| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,color|ɫ,white| + N disease| + N disease| + N disease| +ħ N disease| +ϸ N part|,%AnimalHuman|,*CauseToDo|ʹ,#disease|,#medical|ҽ +֢ N disease| +֢ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#disease| + N disease| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,height|߶,low| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N furniture|Ҿ,@sit| +ն ADJ aValue|ֵ,fatness|,fat| + N human|,low| + V PlayDown| + ADJ aValue|ֵ,fatness|,fat| + N human|,low| +С ADJ aValue|ֵ,height|߶,low| + N human|,low| + N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + V punish|,police| + N language|,#country|,ProperName|ר + N tool|þ,*cure|ҽ +ɭ N human|,official|,politics|,ProperName|ר,(US|) +̲ N disease| + V obstruct|ֹ + ADJ aValue|ֵ,easiness|,difficult|,mention|ἰ,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ FitNot| + V FitNot| + ADJ aValue|ֵ,importance|,important| +ְ ADJ FitNot| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V AptTo| + V FondOf|ϲ + N emotion|,love|,desired| + V like|ϧ + V love| + V like|ϧ + N attribute|,name|,&human|,intimate| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V respect| + N human|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Scotland|ո) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ireland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Ireland|) + N language|,#country|,ProperName|ר +ɧ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,ExpressDissatisfaction|ʾ + N ShowLove|ʾ + ADJ aValue|ֵ,behavior|ֹ,faithful|,*like|ϧ,#country| + V like|ϧ,target=country| + N emotion|,like|ϧ,#country|,desired| + N human|,*like|ϧ,#country|,desired| + N emotion|,like|ϧ,#country|,desired| + V FondOf|ϲ + N emotion|,FondOf|ϲ + N fact|,$FondOf|ϲ,#WhileAway| + N human|,*FondOf|ϲ,#WhileAway| + V like|ϧ +Ц N human|,*tease|ȡ +˹ N lights|,*diagnose|,medical|ҽ +˹ N lights|,*diagnose|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,*weep| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,weep| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Ṭ N house|,#politics|,(France|) + V like|ϧ + V love| + N human|,friend|,*love|,desired| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +Ī V BeUnable|,content=help| +Ľ V love| +Ů N human|,family|,female|Ů + N emotion|,love|,desired| + N music|,#love| +Ȯ N livestock|,desired|,$like|ϧ + N human|,family| + N human|,friend|,*love|,desired| +ɳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Estonia|ɳ) +ɳ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ɳ N language|,#country|,ProperName|ר + ADJ humanized|,#love| +˹Ħ N human|,(Eskimo|˹Ħ) + N institution|,*manage|,#cleanness|ྻ +ϧ V like|ϧ + N emotion|,like|ϧ,desired| +˹̹ N human|,ProperName|ר + N emotion|,like|ϧ,hate| + ADJ aValue|ֵ,width|,narrow|խ + N facilities|ʩ,route|· +· N facilities|ʩ,route|· + N part|,%LandVehicle|,@sit| + N tool|þ,@sit|,#livestock| + N SportTool|˶ +ɽ N place|ط,city|,ProperName|ר,(China|й) + N part|,%LandVehicle|,@sit| + N tool|þ,@sit|,#livestock| + N chemical|ѧ +ǰ N medicine|ҩ + N chemical|ѧ + N chemical|ѧ +ˮ N material|,*feed|ι,#crop|ׯ + V AtEase| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N character|,surname|,human|,ProperName|ר + V cherish|Ļ + V give| + V install|װ + V put| + V satisfied| + V soothe|ο + CLAS unit|λ,&electricity| +Ժ N waters|ˮ,surfacial|,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Andorra|) + N place|ط,capital|,ProperName|ר,(Andorra|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V keep| +Ž N attribute|,circumstances|,peaceful|,&organization|֯ + V pass|ȹ,manner=happy| + N pass|ȹ,patient=aged|,manner=happy| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V arrange| + V put| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ؼ V obey|ѭ,content=law|ɷ + V soothe|ο + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Angola|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Angola|) + ADJ aValue|ֵ,circumstances|,safe|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V GetMarried| + V reside|ס +ҷ N expenditure|,*reside|ס +仧 V reside|ס + N fact|,check|,#tour|,#safe| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N fact|,reside|ס +ҵ ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N place|ط,capital|,ProperName|ר,(Turkey|) + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,kill|ɱ,#medical|ҽ + N place|ط,family|,happy|,desired| + N furniture|Ҿ,@sit| + N part|,%institution|,politics|,heart|,(institution|=UN|Ϲ) + N place|ط,capital|,ProperName|ר,(Jordan|Լ) + V sleep|˯,manner=peaceful| +ҩ N medicine|ҩ,*CauseToDo|ʹ,#sleep|˯ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V arrange| + N unit|λ,&electricity| +ȫ ADJ aValue|ֵ,circumstances|,safe|,desired| +ȫ N attribute|,circumstances|,safe|,&entity|ʵ +ȫ N part|,%vehicle|ͨ,*fasten|˩ +ȫ N facilities|ʩ,@walk|,#route|·,safe| +ȫ N fittings|,%tool|þ,*illuminate|,#TakePicture| +ȫ N tool|þ,*illuminate|,mine| +ȫ N part|,%implement|,#safe| +ȫ» N part|,%institution|,politics|,heart|,(institution|=UN|Ϲ) +Ȼ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +ʯ ADJ aValue|ֵ,circumstances|,safe|,desired| +̩ɽ ADJ aValue|ֵ,circumstances|,safe|,desired| + V install|װ + V reside|ס + V MakeLiving|ı + V cure|ҽ,content=disease|,medical|ҽ + V soothe|ο + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +Σ N attribute|,circumstances|,#safe|,#dangerous|Σ,&human| +ο V AtEase| +ο N emotion|,AtEase| +ο V soothe|ο +ο N tool|þ,*reward|,$GiveAsGift|,desired| +ο N fact|,compete|,sport| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ϣ V rest|Ϣ +Ϣ V sleep|˯ +Ϣ N chemical|ѧ,$burn| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V pass|ȹ,manner=happy| +Ъ V sleep|˯ + V AtEase| + ADJ aValue|ֵ,circumstances|,happy|,desired| +Ӫկ V reside|ס + V satisfied| +״ V satisfied|,cause=circumstances| + V bury| +֮ V calm| + V arrange| +÷ N expenditure|,*reside|ס +װ V install|װ +װ N human|,*install|װ +װ N human|,*install|װ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ humanized|,desired| + N tool|þ,cubic|,@store|,#medicine|ҩ,medical|ҽ + PRON {firstPerson|} + PRON {firstPerson|,mass|} + V delay| + V hold| + V press|ѹ + V restrain|ֹ + PREP {AccordingTo} + V refuse| + V refuse|,content=fight|,military| +Ͱ V obey|ѭ,content=sequence| + V press|ѹ +ɷֺ V issue|ַ + N part|,%tool|þ +ͷ N issue|ַ + ADV {comment|} + V diagnose|,medical|ҽ +Ħ V cure|ҽ,means=press|ѹ,medical|ҽ +ť N part|,%implement| +ť N part|,%tool|þ + ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +ʱ ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +ʱ ADJ aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +˵ ADV {comment|} +ͼ V LookFor|Ѱ,means=follow| + N InsectWorm| +ѹ V press|ѹ + N text|,*explain|˵ + PREP {AccordingTo} +ճ V obey|ѭ,content=regulation| + V restrain|ֹ +಻ס V BeUnable|,content=restrain|ֹ +಻ס V EndureNot| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N disease| + V hide| + N water|ˮ + N location|λ,dark| + N location|λ,secret| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + V damage|,manner=secret| + V kill|ɱ,manner=secret| + N waters|ˮ,linear| + ADJ aValue|ֵ,color|ɫ,red| + N attribute|,color|ɫ,red|,&physical| + N disease| + N room| + N weapon|,hidden| + N stone|ʯ,#waters|ˮ + N water|ˮ,linear| + N weapon|,hidden| +ɱ V kill|ɱ,manner=secret|,crime| +ʾ V express|ʾ,manner=tactful| + N room|,#TakePicture| +ﲨ V please|ȡ,manner=secret| + V damage|,manner=secret| +̲ N part|,%land|½,#waters|ˮ,edge| +̽ N human|,#occupation|ְλ,*scout|,police| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + N part|,%tool|þ,body|,#TakePicture| +Ц V laugh|Ц,manner=hidden| +Ц V laugh|Ц,manner=secret| +Ӱ N trace|,#lights| + N expression| + N expression|,*CompareTo| + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N mark|־,#VehicleGo|ʻ,#waters|ˮ + N medicine|ҩ + N document| + N fact| + N fact|,#police| + N furniture|Ҿ,@put| + N text|,$propose|,$discuss|,$debate| + N tool|þ,#cook| + V happen|,experiencer=fact|,police| + N human|,crime|,#police|,$detain|ס,undesired|ݬ + N fact|,#police| + N document| + N fact|,#police| + N part|,%fact|,flesh|,#police| +ͷ N location|λ,%furniture|Ҿ + N cause|ԭ + N part|,%fact|,flesh|,#police| + N fact|,#police| + N furniture|Ҿ,@put| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V CausePartMove|,direction=upper| + V prosper| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V prosper| + ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + V CausePartMove|,direction=upper| +Ȼ ADV aValue|ֵ,courage|,brave|,desired| + V CausePartMove|,direction=upper|,partof=head|ͷ + V GoForward|ǰ,manner=arrogant| + V FeelingByGood| + ADJ qValue|ֵ,amount|,many| +³ѷ N human| +Ȼ ADJ qValue|ֵ,amount|,many| +˹ CLAS unit|λ,&weight| +˾ CLAS unit|λ,&weight| + ADJ aValue|ֵ,form|״,dented| +澵 N tool|þ,*look|,#shrink|С +͸ N tool|þ,*look|,#shrink|С +͹ƽ ADJ aValue|ֵ,form|״,dissimilar| + V FormChange|α,StateFin=dented| + ADJ aValue|ֵ,form|״,dented| + N character|,surname|,human|,ProperName|ר + V walk| + V cook| + V endure| + V punish| +ҹ V pass|ȹ,patient=night| + V fly| + V fly| + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant| + N attribute|,will|־,strong|ǿ,&human| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ attribute|,behavior|ֹ,arrogant|,&human| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V despise| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N place|ط,country|,ProperName|ר,(Austria|µ) +µ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Austria|µ) +µ N place|ط,country|,ProperName|ר,(Europe|ŷ) +µ N human|,(Austria|µ) +µ N money|,(Austria|µ) +¿ N place|ط,ProperName|ר,(New Zealand|) +¿ N place|ط,ProperName|ר,(US|) +¿ N language|,#country|,ProperName|ר + N language|,#country|,ProperName|ר +ƥ N fact|,compete|,sport| +ƥ˰뵺 N place|ط,ProperName|ר,(US|) +ƥ˶ N fact|,compete|,sport| +ƥ˶ίԱ N institution|,compete|,ProperName|ר,sport| +Ī N language|,#country|,ProperName|ר + N place|ط,ProperName|ר,(US|) + N fact| + ADJ aValue|ֵ,content|,profound| + N attribute|,content|,profound|,&event|¼,&information|Ϣ +˹ N fact|,ProperName|ר,reward|,entertainment| +˹½ N place|ط,capital|,ProperName|ר,(Norway|Ų) +˹ N money|,(Argentina|͢) +ί N institution|,#compete|,ProperName|ר,sport| + N fact|,compete|,sport| +˻ N fact|,compete|,sport| + V repent|û + V upset| +û V repent|û + V upset| +ɥ V disheartened| + N place|ط,country|,ProperName|ר,(Australia|Ĵ) +Ĵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Australia|Ĵ) +Ĵ N place|ط,country|,ProperName|ר,(Australia|) +Ĵǿԭ N bacteria|΢ +Ĵ N human|,(Australia|Ĵ) +ĴԪ N money|,(Australia|Ĵ) +Ŀ N bacteria|΢ + N place|ط,city|,ProperName|ר +Ԫ N money|,(Macao|) +Ԫ N money|,(Australia|Ĵ) + N place|ط,ProperName|ר + N FlowerGrass| +Ž N fruit|ˮ +Ž N tool|þ,*cool| + N shows| + N shows| +ŮԱ N human|,#occupation|ְλ,*perform|,female|Ů +Ա N human|,#occupation|ְλ,*perform| + NUM qValue|ֵ,amount|,cardinal|,mass| + V StripOff|ȥ + V TakeAway|ᶯ + V assemble|ۼ + V cook| + V split|ƿ,purpose=remove| + V stay|ͣ + V TakeAway|ᶯ + N LandVehicle|,*slide| + V steal|͵ + N human|,crime|,*steal|͵ +ȶ N livestock|,*recreation| + N InstitutePlace|,@drink|,commercial| + V addict|Ⱥ + ECHO sound| + STRU {MaChinese|} + V MakeSound| + V MakeSound| +ʶ N tool|þ,cubic|,@put| +¨ N tool|þ,cubic|,@put| + NUM qValue|ֵ,amount|,cardinal|,mass| +˱ N edible|ʳ +˱ɽ N facilities|ʩ,space|ռ,ProperName|ר,@bury|,#human|,#die| +˱ɽĹ N facilities|ʩ,space|ռ,ProperName|ר,@bury|,#human|,#die| +˳ ADV aValue|ֵ,possibility|,possible|,desired| +˳ NUM qValue|ֵ,amount|,many| +˴ N fish| +˷ N direction|,all|ȫ +˷ N location|λ +˷ N symbol|,#music| +˷֮һ N fact|,compete| +˸ N bird|,*speak|˵ +˹ N text| +˹ N text| +˹ N army|,past| +˽ N crop|ׯ,?material|,#food|ʳƷ +˽ N material|,?food|ʳƷ,*cook| +˾Ųʮ V BeSimilar| +· N army|,past| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N furniture|Ҿ,@put| + N humanized|,ProperName|ר +ɹ V show|,content=ability| +ɹͨ V show|,content=ability| + N furniture|Ҿ,@put| +һ N time|ʱ,day|,festival|,#army|,@congratulate|ף + N time|ʱ,month| +· N time|ʱ,month| +½ N time|ʱ,festival|,@congratulate|ף + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + N qValue|ֵ,rate|,BecomeLess|,commercial| + N character|,#time|ʱ,*tell|,#circumstances| + N character|,(China|й) +ֽ N part|,%human|,foot|,#form|״ +ûһƲ V ExistNot| + N knowledge|֪ʶ + N trace|,#disease| + N trace|,#disease|,#wounded| +̺ N trace|,#disease|,#wounded| + N trace|,#disease|,#wounded| + V BeNear| + N character|,surname|,human|,ProperName|ר + V expect| + N place|ط,country|,ProperName|ר,(Pakistan|ͻ˹̹) + N place|ط,country|,ProperName|ר,(Palestine|˹̹) + V stay|ͣ +ͰͶ˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Barbados|ͰͶ˹) +ͰͶ˹ N place|ط,country|,ProperName|ר,(South America|) +ͰͶ˹Ԫ N money|,(Barbados|ͰͶ˹) +ͱ N place|ط,ProperName|ר,past| +ͱ N human|,(Babylon|ͱ) +Ͳ N money|,(Panama|) +Ͳ V expect| +Ͳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Papua|Ͳ) +Ͳ N place|ط,country|,ProperName|ר,(Oceania|) +Ͳ¼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Papua New Guinea|Ͳ¼) +Ͳ¼ N place|ط,country|,ProperName|ר,(Oceania|) +Ͷ N tool|þ,cubic|,@put| +Ͷ N livestock|,*recreation| +Ͷ N place|ط,ProperName|ר,(Europe|ŷ) +Ͷɰ뵺 N place|ط,ProperName|ר,(Europe|ŷ) +ͷ N place|ط,ProperName|ר,(Germany|¹) +͸ N place|ط,capital|,ProperName|ר,(Iraq|) +͹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bahamas|͹) +͹ N place|ط,country|,ProperName|ר,(South America|) +͹Ԫ N money|,(the Bahamas|͹) +ͺ N human|,ProperName|ר,#music|,entertainment| +ͻ˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Pakistan|ͻ˹̹) +ͻ˹̹ N place|ط,country|,ProperName|ר,(Asia|) +ͻ˹̹¬ N money|,(Pakistan|ͻ˹̹) +ͻ˹̹ N human|,(Pakistan|ͻ˹̹) +ͽ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ͽ V please|ȡ +ͽ֯ N institution|,ProperName|ר,#politics|,#military|,(Palestine|˹̹) +ͽ N human|,ProperName|ר,literature| +Ϳ N place|ط,capital|,ProperName|ר,(Azerbaijan|ݽ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Paraguay|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Paraguay|) +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Palestine|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹̹֯ N institution|,ProperName|ר,#politics|,#military|,(Palestine|˹̹) + N place|ط,capital|,ProperName|ר,(France|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bahrain|) + N place|ط,country|,ProperName|ר,(Asia|) +ֵɶ N money|,(Bahrain|) + N place|ط,capital|,ProperName|ר,(Mali|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Panama|) + N place|ط,country|,ProperName|ר,(South America|) + N place|ط,capital|,ProperName|ר,(Panama|) + N human|,(Panama|) +˺ N waters|ˮ,linear|,ProperName|ר,(Panama|) + N place|ط,city|,ProperName|ר,(Switzerland|ʿ) + N place|ط,city|,ProperName|ר,(Spain|) +ʲ N language|,#country|,ProperName|ר +ʿ N LandVehicle| +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Basque|˹) +˹ N place|ط,country|,ProperName|ר +˹ N language|,#country|,ProperName|ר + V expect| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Brazilia|) + N place|ط,country|,ProperName|ר,(South America|) + N place|ط,capital|,ProperName|ר,(Brazil|) + N human|,(Brazilia|) + N part|,%AnimalHuman|,hand| + V PickOut|γ + V choose|ѡ + V cool| + V lift| + V occupy|ռ,military| + V surpass|ǿ +γ V PickOut|γ +γ V remove| +εض V appear| +ε V remove| +ζ ADJ aValue|ֵ,fullness|,empty|,#hair|ë +θ V lift| +θ V upgrade| +κ N fact|,exercise|,sport| +μ ADJ aValue|ֵ,quality|,good|,desired| +μ ADJ aValue|ֵ,quality|,good|,desired| +ν V evade|ر,content=do| +ν V start|ʼ,content=run| +ê V start|ʼ,content=VehicleGo|ʻ +ë V remove|,patient=hair|ë + V fail|ʧ +˿ N food|ʳƷ +˿ V straighten|ֱ,industrial| + V evade|ر,content=do| + V start|ʼ,content=run| +Ⱦ V start|ʼ,content=run| +Ӫ V start|ʼ,content=leave|뿪,military| + N part|,%text| +ɽˮ V SelfMoveInManner|ʽ + V SelfMoveInManner|ʽ + N part|,%text| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N tool|þ,#weapon|,$AimAt|,$firing| +г N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| +д N ship|,#weapon|,$AimAt|,$firing| +л N aircraft|,#weapon|,$AimAt|,$firing| + N part|,%tool|þ,heart|,#weapon|,#AimAt|,#firing| + N tool|þ,#weapon|,$AimAt|,$firing| + V HoldInArm|§ + CLAS NounUnit|,&inanimate|,&plant|ֲ + V control| + V defend| + V hold| + N part|,%LandVehicle|,*drive|Ԧ,hand| + N part|,%implement|,*hold|,*OpenShut|,hand| + N part|,%plant|ֲ,body| + PREP {PartOfTouch} + PREP {PatientProduct} + PREP {content} + PREP {patient} + PREP {possession} +ѱȷְƽ V MakeEqual|ʹ,sport| +ѱ N reason|,*ExpressAgainst|Ǵ,undesired|ݬ +ѳ V control| +ѳ V restrain|ֹ +Ѵŵ N human|,*exercise|,(football|) +ѷ V check| +ѹ V check| +ѹ V defend|,patient=route|·,police|,military| +Ѿ V fill|,patient=drinks|Ʒ +Ѿ V hold|,patient=drinks|Ʒ + V diagnose|,medical|ҽ + V defend| +ʽ N knowledge|֪ʶ + N part|,%implement|,*hold|,*OpenShut|,hand| + V defend|,police|,military| +ͷ N human|,official|,*manage|,#industrial| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N attribute|,trueness|α,&event|¼ + V hold| + V understand| + V use| +ס V control|,Vachieve| +Ϸ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +Ϸ N shows| +ֵ N human|,friend| +ס V control| + CLAS NounUnit|,&physical| + N tool|þ,agricultural|ũ + N tool|þ,agricultural|ũ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N land|½ + V control| + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,past|,undesired|ݬ + N place|ط,country|,*MakeBad|Ӻ,undesired|ݬ + N system|ƶ,#country|,*MakeBad|Ӻ,undesired|ݬ +Ե ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ȩ N system|ƶ,#country|,fierce|,*MakeBad|Ӻ,undesired|ݬ +Ȩ N system|ƶ,#country|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ +ռ V occupy|ռ,manner=fierce|,military| + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N human|,official|,past| + V cease|ͣ + V dismiss| +չ V cease|ͣ,content=affairs|,#duty| +չ V dismiss|,ResultIsa=occupation|ְλ,politics| +ս V cease|ͣ,content=teach|,education| +տ V cease|ͣ,content=study|ѧ,education| + V cease|ͣ + V dismiss| +Ȩ N rights|Ȩ,*dismiss|,politics| + V cease|ͣ,content=sell|,commercial| + V cease|ͣ + V cease|ͣ + V dismiss| + V prohibit|ֹ + N human|,family|,male| +ְ N human|,family|,male| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,pure| + ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,property|,^$pay| + N character|,surname|,human|,ProperName|ר + V explain|˵ + V look|,manner=unsatisfied| +װ ADJ aValue|ֵ,color|ɫ,white| +װ ADJ aValue|ֵ,color|ɫ,white| +װ ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ +װ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +װ N affairs|,#duty|,#sequence|,^night| +װ N stationery|ľ,@write|д +ױֽ N paper|ֽ +ײ N material|,?clothing| +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ +׳ N attribute|,wisdom|ǻ,foolish|,&human| +׳ N human|,foolish|,undesired|ݬ +׳հ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +׳ N lights| +׳ N tool|þ,*illuminate| +״ N material|,#food|ʳƷ,$eat|,sour| +״ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +״ N part|,%AnimalHuman|,liquid|Һ,female|Ů +׵ N part|,%AnimalHuman|,embryo| +׵ N attribute|,scene|,&physical| +׶˹ N aValue|ֵ,attachment|,#country|,ProperName|ר,(Byelorussia|׶˹) +׶˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +׶˹ N language|,#country|,ProperName|ר +׷ N part|,%human|,hair|ë,white| +׷Բ ADJ aValue|ֵ,color|ɫ,white| +׷ N chemical|ѧ +׷ N food|ʳƷ +׷ N human|,enemy|,undesired|ݬ +׷ V lavish|˷ +׷ѿ V lavish|˷,patient=speak|˵ +׷ V lavish|˷,patient=do| +׷ V lavish|˷,patient=do| +׷Ļ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +׷ N medicine|ҩ,?addictive|Ⱥ +׸ V lavish|˷,patient=do| +׸ɶ N drinks|Ʒ,$addict|Ⱥ +׹ N house|,institution|,#politics|,(US|) +׹ N part|,%AnimalHuman|,#die|,bone| +׹ N fruit|ˮ +׺ N bird| +׺ N disease| +׺ N beast| +׻ N humanized|,ProperName|ר +׻ N FlowerGrass| +׻ V lavish|˷ +׻ ADJ aValue|ֵ,color|ɫ,white| +׻ N beast| +׻ N language|,ordinary| +׻ N text|,empty|,$boast| +׻ N text| +׻ N material|,*build| +׽ N metal| +׽𺺹 N house|,institution|,#politics|,(UK|Ӣ) +׾ ADJ aValue|ֵ,color|ɫ,white| +׾ N drinks|Ʒ,$addict|Ⱥ +׾ N paper|ֽ,*exam|,^$write|д +׿ˮ N water|ˮ,$drink| + N material|,?tool|þ + N drinks|Ʒ,$addict|Ⱥ +...һ V look|,#unsatisfied|,#despise| + N material| + N human|,#occupation|ְλ,employee|Ա + N part|,%clothing|,#head|ͷ,white| +칤 N human|,#occupation|ְλ,employee|Ա + N waters|ˮ +¶ N time|ʱ,day| + N human|,$love|,friend|,male|,desired| +ãã ADJ aValue|ֵ,color|ɫ,white| +é N FlowerGrass| +ú N stone|ʯ,*lighting|ȼ,$burn|,mine| + N material|,?food|ʳƷ,#crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + N medicine|ҩ,?addictive|Ⱥ + N human|,literature| + V draw|,literature| +ĭ N part|,%AnimalHuman|,liquid|Һ +ľ N AlgaeFungi|ֲ,?food|ʳƷ + N disease|,#look|,#eye| + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + N medicine|ҩ,poison| +Ƥ N document| +Ƥ N tree| + N mark|־,white| + N place|ط,ProperName|ר + N lights| +Ȼ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N human| + N weapon|,*stab| +ս N fight|,military| + N celestial| + N time|ʱ,morning| + N fact|,dream| + V dream| + N food|ʳƷ +ɫ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,white| +ɫ N attribute|,color|ɫ,white|,&physical| +ɫֲ N phenomena|,fierce|,politics|,undesired|ݬ + N medicine|ҩ,(China|й) + V start|ʼ,means=self| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ˮ N water|ˮ + N crop|ׯ + N material|,?food|ʳƷ,sweet| + N material|,?tool|þ + N time|ʱ,morning| +ҹ N time|ʱ,day| + N bill|Ʊ,commercial| + N metal| + N house|,institution|,#politics|,(UK|Ӣ) +ͭ N metal|,material| +ͷ ADJ aValue|ֵ,age|,aged| +ͷ N part|,%human|,white|,head|ͷ +ͷ N time|ʱ,aged|,#age| +ͷ N bird| +ͷ V alive|,duration=TimeLong| +ϸ N part|,%AnimalHuman|,liquid|Һ + N beast| +Ѫ N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ֢ N disease| + N fact|,unsatisfied|,despise|,#countenance| + N part|,%AnimalHuman|,#eye| + N tree| + N tree| +ҩ N medicine|ҩ,(China|й) +ҹ N time|ʱ,night| +սʿ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N InsectWorm| + N metal| + N CloudMist|,white| +ƲԹ V change| +ʯ N stone|ʯ,mine| +ֽ N paper|ֽ +ֽ N paper|ֽ,white| +ֽ ADJ aValue|ֵ,content|,true| + N human| + N time|ʱ,afternoon| + N character|,wrong| + N community|,ProperName|ר,(China|й) + N stone|ʯ,mine| +Ѽ N time|ʱ,past| + N FlowerGrass|,?medicine|ҩ + N tree| + N bird| + N disease| + N InsectWorm|,undesired|ݬ + N bacteria|΢,#OutOfOrder| + N fish| + N beast|,*swim| + N character|,surname|,human|,ProperName|ר + N tree| + N place|ط,capital|,ProperName|ר,(Germany|¹) + N tree| + N material|,*build|,*cover|ڸ,#route|· + N material|,?route|·,*cover|ڸ + NUM qValue|ֵ,amount|,cardinal|,mass| +ٰ ADJ aValue|ֵ,degree|̶,extreme| +ٲ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ٳ߸ͷһ V MakeBetter|Ż +ٶ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ٶʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ٷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ٷϾ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ٷֱ N quantity|,rate|,&entity|ʵ +ٷֵ N quantity|,rate|,&entity|ʵ +ٷֺ N symbol|,#quantity| +ٷ N quantity|,rate|,&entity|ʵ +ٷ N quantity|,rate|,&entity|ʵ +ٷ֮ ADJ qValue|ֵ,rate| +ٷ֮ ADJ aValue|ֵ,range|,all|ȫ +ٷ֮ NUM qValue|ֵ,amount|,all|ȫ +ٸн V excited| +ٺ N FlowerGrass| +ٻ V MakeBetter|Ż +ٻ N artifact|˹,generic|ͳ,commercial| +ٻ¥ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ˾ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ٻ̵ N InstitutePlace|,*sell|,@buy|,#artifact|˹,commercial| +ټ V MakeBetter|Ż +ٿȫ N publications|鿯 +ٿǧ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + N character|,surname|,human|,ProperName|ר +һ ADJ aValue|ֵ,quality|,superior|,desired| +ɸ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N bird| + N bird| + CLAS unit|λ,&length| +Ľ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bermuda|Ľ) +Ľ N place|ط,ProperName|ר +Ľ N place|ط,country|,ProperName|ר,(North America|) +ĽȺ N place|ط,ProperName|ר +ĽԪ N money|,(Bermuda|Ľ) + N time|ʱ,TimeLong|,#alive| + N time|ʱ,year|,mass|,TimeLong| +겻 ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + N plan|ƻ,important| + N time|ʱ,festival|,@congratulate|ף +δ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +տ N disease| +¿ N drinks|Ʒ +ͨ N human|,wise|,desired| + N human|,aged| + NUM qValue|ֵ,amount|,cardinal|,mass| +ּ N attribute|,weight|,&ship| + N human|,rich|,desired| +Ųһ V believe|,condition=look| +һʧ ADJ aValue|ֵ,circumstances|,safe|,desired| + N human|,ordinary|,mass| +Ҷ N fittings|,%room|,*cover|ڸ +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +սʤ V win|ʤ,frequency=often| +۲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +۲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +۲ӵ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V explain|˵ + N part|,%implement| + V put| + V shake|ҡ + V show| + V wave|ڶ +ڲ V control| +ڲ V decorate|װ +ڶ V shake|ҡ +ڶ V wave|ڶ +ڶ V cross|Խ +ڶ N ship| +ڷ V put| +ڼ V show|,content=arrogant| + V ShowOff|ҫ,content=wealth|Ǯ + V ShowOff|ҫ,content=wealth|Ǯ + V talk|̸ + V show|,content=bearing|̬ +Ū V PlayWith|Ū +Ū V control| + V ShowOff|ҫ,content=wealth|Ǯ + V decorate|װ + N physical|,*decorate|װ,useless| + N tool|þ,*decorate|װ,$put| + V shake|ҡ,patient=hand|,purpose=ExpressDisagreement|ʾͬ + V shake|ҡ,patient=hand|,purpose=call|ٻ +̯ V establish|,patient=InstitutePlace|,#sell|,commercial| +̯ V keep|,patient=institution| + V disconnect| + V pretend|װ + N part|,%implement|,#measure| + V handle|,manner=proper| + V put|,manner=straight|ֱ + N tool|þ,*tell|,#time|ʱ + NUM qValue|ֵ,amount|,cardinal|,mass| + V damage| + V decline|˥ + V defeated| + V defeat|սʤ +ܱ V defeated| +ܱ N result|,wrong|,#text|,undesired|ݬ +ܱ N army|,*defeated|,undesired|ݬ,military| +ܻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +ܻ V damage| +ܻ V cure|ҽ,content=disease|,medical|ҽ +ܼ V defeated| +ܼ N human|,extravagant|,undesired|ݬ +ܾ N result|,fail|ʧ,undesired|ݬ + N human|,bad|,undesired|ݬ +¶ V exposure|¶ + V decline|˥ + V defeated|,police| + V GoBackward|,military| +θ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V disappointed|ʧ +Ѫ֢ N disease| + N result|,defeated|,undesired|ݬ + N human|,*defeated| + V defeated| +ӻͷ V amend| + V flee|,time=defeated| + V RegardAs| + V ResultIn| + V salute|¾ + V visit| +ݰ V ally| +ݰ EXPR expression|,*farewell| +ݰ V salute|¾ +ݱ V farewell| +ݵ V surrender| +ݶ V read|,manner=respect| +ݷ V visit| +ݻ V visit| +ݼ V meet| +ݼ V visit| +ݽ N thinking|˼,respect|,#wealth|Ǯ +ݽ N human|,*respect|,#wealth|Ǯ + V SayHello|ʺ,cause=festival| +ʦ V RegardAs|,ResultIsa=human|,#study|ѧ + V congratulate|ף,cause=festival|,#ComeToWorld| + V entrust|ί + V visit| + N thinking|˼,respect|,#physical| + N thinking|˼,respect|,#physical| + V salute|¾ + V visit| + N FlowerGrass|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| +޹Ұʷ N publications|鿯,#fact|,#time|ʱ,secondary| +޼ N publications|鿯,#fact|,#time|ʱ,secondary| +ʷ N fact|,#time|ʱ,secondary| +ʷ N publications|鿯,#fact|,#time|ʱ,secondary| + N FlowerGrass|,undesired|ݬ + N crop|ׯ + ADJ aValue|ֵ,form|״,linear| + N image|ͼ,dot| +߰ ADJ aValue|ֵ,color|ɫ,grey| +߰ ADJ qValue|ֵ,amount|,many| +߲ ADJ aValue|ֵ,color|ɫ,colored| +߲½ ADJ aValue|ֵ,color|ɫ,colored| +ߵ N image|ͼ,dot| + N beast| + N beast| + N part|,%route|·,@cross|Խ + N image|ͼ,linear| +˺ N disease| + N tree| + ADJ aValue|ֵ,color|ɫ,colored| + N bird| + CLAS NounUnit|,&vehicle|ͨ + N affairs|,#duty|,#sequence| + N character|,surname|,human|,ProperName|ר + N part|,%InstitutePlace|,education| + N part|,%army| + N part|,%organization|֯ +೤ N human|,official|,#institution| +೤ N human|,official|,education|,*study|ѧ +೤ N human|,official|,military| +೵ N LandVehicle|,*transport|,#employee|Ա +೵ N affairs|,*transport|,#employee|Ա + N quantity|,amount|,&transport| + N community|,entertainment| +෿ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N aircraft|,*transport|,#tour| +༶ N part|,%InstitutePlace|,education| + N ship|,*transport|,#tour| +Ū V ShowOff|ҫ,content=ability|,target=able| + ADJ aValue|ֵ,property|,fit|ʺ,EachOther|໥ + N time|ʱ,#transport|,#VehicleGo|ʻ +ڱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ +ʦ V GoBack|,win|ʤ,military| + N place|ط,capital|,ProperName|ר,(Gambia|ʱ) + N human|,*teach|,education| +׿ N MusicTool| + N community|,*perform|,entertainment| + N part|,%organization|֯,bone| + N part|,%InstitutePlace|,#factory| +鳤 N human|,official|,#factory| + N human|,official|,religion|ڽ,(Tibet|) + V SelfMove| + V TakeAway|ᶯ + V imitate|ģ +᲻ N tool|þ,*recreation|,#young| +ᶯ V TakeAway|ᶯ + V TakeAway|ᶯ,patient=family| +Ū V PlayWith|Ū +Ū V ShowOff|ҫ +ŪǷ V MakeTrouble| +Ǩ V TakeAway|ᶯ + V transport| +˹ N human|,#occupation|ְλ,*TakeAway|ᶯ +˹ N human|,#occupation|ְλ,*TakeAway|ᶯ + V pull| + V turn|Ťת +ⲻ N tool|þ,*recreation|,#young| +ƽ V MakeEqual|ʹ,sport| +⵹ V reverse|ߵ +Ա N human|,#occupation|ְλ,#route|· +⶯ V pull| + V MakeEqual|ʹ + N part|,%weapon|,*firing| +ƽ V MakeEqual|ʹ,sport| + N part|,%implement|,arm| + N tool|þ,*tighten|ս,*loosen| + N tool|þ,*tighten|ս,*loosen| + V BeSimilar| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + V fit|ʺ,EachOther|໥ + V announce| +䲼 V announce| +䲼 N human|,*announce| +䷢ V announce| +䷢ V grant| +佱 V grant|,possession=reward| + V announce| + N MusicTool| + V ShowBadEmotion|ʾ + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + N attribute|,speed|ٶ,&recreation|,#music| + N shape|,flat|,surfacial| + N tool|þ,%InstitutePlace|,*cover|ڸ + N wood|ľ +ʮ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +屨 N readings|,news| + N part|,%building|,skin|Ƥ + N tool|þ,*wipe| + N material|,wood|ľ +峵 N LandVehicle| + N furniture|Ҿ,*sit| +師 N tool|þ,*split|ƿ,*cut| + N MusicTool| + N MusicTool| + V ize|̬,PatientAttribute=hard|Ӳ,#agricultural|ũ + N part|,%earth| + N fruit|ˮ + V ShowBadEmotion|ʾ + V ShowBadEmotion|ʾ +϶ V fixed|Ѷ +ʽ N attribute|,speed|ٶ,&music|,&language| + N method|,*write|д +ˢ N tool|þ,*wipe| + N material|,?building| +Ѽ N food|ʳƷ + N part|,%AnimalHuman|,#mouth|,*bite|ҧ + N part|,%machine| + N addictive|Ⱥ + N attribute|,behavior|ֹ,&act|ж + N attribute|,speed|ٶ,&recreation|,#music| + N material|,?food|ʳƷ + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N part|,%implement|,viscera| + N shape|,flat|,surfacial| + N tool|þ,police|,*punish|,#crime| + N wood|ľ + N tool|þ,*rub|Ħ + CLAS NounUnit|,&publications|鿯 + N part|,%publications|鿯,#news| + N tool|þ,*print|ӡˢ +汾 CLAS NounUnit|,&publications|鿯 + N attribute|,sequence|,&print|ӡˢ +滭 N image|ͼ,$draw| + N image|ͼ,$carve| + N part|,%publications|鿯,#news| +Ȩ N rights|Ȩ,#publications|鿯 +Ȩ ADJ aValue|ֵ,attachment|,#publications|鿯,#rights|Ȩ +ȨУ׼ӡ N aValue|ֵ,attachment|,#publications|鿯,#rights|Ȩ +Ȩҳ N part|,%publications|鿯,#rights|Ȩ +ʽ N attribute|,pattern|ʽ,&publications|鿯 +˰ N payment|,#publications|鿯 +ͼ N place|ط,#country| + V RegardAs|,entertainment| + V show| + V ShowEmotion|ʾ + N attribute|,appearance|,&human|,#perform|,entertainment| + V RegardAs|,entertainment| + N human|,*perform| +װ V MakeUp|ױ + V RegardAs|,entertainment| + V mix| + V mix| + N food|ʳƷ + V quarrel| + V follow| + N human|,friend| +鳪 N fact|,sing|,entertainment| +鳪 V sing| +黤 N human|,friend| + N human|,#GetMarried|,male| + N human|,friend| + N human|,#GetMarried|,female|Ů + ADJ aValue|ֵ,property|,follow| + V follow| + N human|,*recreation|,#shows| + N human|,female|Ů,*recreation|,#shows| + V perform|,entertainment| + V recreation| + N human|,*perform| + CLAS NounUnit|,&inanimate| + N part|,%FlowerGrass|,body| + N part|,%fruit|ˮ,body| + N part|,%physical| +Ĥ N part|,%AnimalHuman| + ADV aValue|ֵ,location|λ,middle| + ADV aValue|ֵ,range|,fragment| + ADJ qValue|ֵ,amount|,few| + NUM qValue|ֵ,amount|,half| + N time|ʱ,hour|ʱ,special| + ADJ aValue|ֵ,age|,aged| + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +뱲 N time|ʱ,#alive|,TimeLong|,half| +ںɽ N place|ط,country|,half| +ڽɽ N place|ط,country|,half| + N part|,%physical|,half| + N human|,female|Ů,mass| + N sky|,half| +벽 N attribute|,distance|,&walk|,half| +Ʒ N artifact|˹,generic|ͳ + CLAS NounUnit|,&inanimate| +뵺 N land|½,#waters|ˮ +뵼 N inanimate|,generic|ͳ + N location|λ,middle| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + ADJ qValue|ֵ,amount|,few| + N human|,unable|ӹ,undesired|ݬ + N expenditure|,half| +⽨ N system|ƶ,politics| +빤 V study|ѧ +빤ѧ N human|,*study|ѧ,education| + N attribute|,price|۸,half|,&artifact|˹,commercial| + NUM qValue|ֵ,amount|,half| + V equal| +뾶 N attribute|,distance|,&image|ͼ,&physical|,round|Բ + N fact|,compete|,sport| +Ե N material|,*exempt|,#transmit|,#electricity| + N location|λ,%sky| + N location|λ,%sky| + NUM qValue|ֵ,amount|,half| + N human|,#occupation|ְλ,*engage|,industrial|,agricultural|ũ + N inanimate|,generic|ͳ,liquid|Һ +· N location|λ,middle| +· ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N time|ʱ,year|,half| +Ʊ N coupon|Ʊ֤,#price|۸,half| +ƿ N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,form|״,round|Բ + N earth| + N time|ʱ,day|,half| + N time|ʱ,TimeLong| + N time|ʱ,day|,half| + N disease| + N image|ͼ,$TakePicture|,$draw| + N image|ͼ,$carve| + N time|ʱ,#alive|,TimeLong|,half| + ADJ aValue|ֵ,physique|,^cook| + NUM qValue|ֵ,amount|,half| + NUM qValue|ֵ,amount|,half| +˥ N time|ʱ + N aValue|ֵ,duration|,TimeLong| + N time|ʱ,day|,half| +͸ ADJ aValue|ֵ,clearness|,clear| +; N location|λ,middle| +; V cease|ͣ,time=^fulfil|ʵ +ä N human|,foolish|,undesired|ݬ + N medicine|ҩ,(China|й) + ADJ aValue|ֵ,duration|,TimeLong| +Ű ADJ doubt| +ҹ N time|ʱ,night| +ҹ N time|ʱ,night| + N sound|,#music| +Ӱ N trace|,#lights| +Բ N shape|,round|Բ,half| +Բ N shape|,round|Բ,half| + N time|ʱ,month|,half| +¿ N publications|鿯 +ֳ N place|ط,#country| +Ʒ N artifact|˹,generic|ͳ,^$produce| +м N location|λ,middle| + N location|λ,middle| +Զ ADJ aValue|ֵ,performance| +Ըũ N human|,#occupation|ְλ,agricultural|ũ + V buy|,commercial| + V establish|,commercial| + V handle| + V manage|,commercial| + V punish|,police| +참 V handle|,patient=fact|,police| + V establish|,PatientProduct=community|,#study|ѧ +챨 V manage|,patient=publications|鿯,news| +첻 V BeUnable| +쳧 V establish|,PatientProduct=factory|,industrial| + V fulfil|ʵ + V handle|,manner=wrong| +쵽 V fulfil|ʵ +취 N method| +칫 V engage|,content=affairs|,#duty| +칫¥ N house|,#employee|Ա,@engage| +칫 N expenditure|,#employee|Ա,*engage| +칫¥ N house|,#employee|Ա,@engage| +칫ʱ N time|ʱ,#employee|Ա,@engage| +칫 N room|,#employee|Ա,@engage| +칫 N part|,%organization|֯ +칫 N furniture|Ҿ,#employee|Ա,@engage| +칫Զ N attribute|,ability|,able|,function| +칫Զ V ize|̬,ability|,PatientAttribute=able|,#function| + V fulfil|ʵ + V handle| +ɥ V handle|,content=fact|,undesired|ݬ,#salute|¾,#die| + V engage|,content=affairs|,#duty| +´ N part|,%organization|֯,#employee|Ա,*engage| +» N part|,%organization|֯,#employee|Ա,*engage| +Ա N human|,#occupation|ְλ,employee|Ա,*engage| + N part|,%organization|֯,#employee|Ա,*engage| + V fulfil|ʵ +ϲ V GetMarried| +ѧ V manage|,patient=education|,education| + V buy|,commercial| + V punish|,cause=crime|,police| + V FallDown| + V reverse|ߵ + V FallDown| + V reverse|ߵ +ʯ N entity|ʵ,*obstruct|ֹ + N place|ط,#human|,country| + N place|ط,#human|,country| + N attribute|,relatedness|,&entity|ʵ,politics| + N community| + N community|,undesired|ݬ + V help| + N part|,%clothing|,#foot|,skin|Ƥ + N part|,%vegetable|߲,hair|ë + N part|,%vehicle|ͨ,body| + V help|,scope=handle| + N human|,*help| +æ V help| + V help|,scope=cook| +ﵹæ V help|,manner=wrong| + V help| +﹤ V help|,scope=affairs| +﹤ N human|,*help| + N community|,secret| + V teach| +æ V help| + N community|,treacherous|,politics| +ǻ V help| +ǻ V sing| + N human|,*help| + V help|,patient=official| + N human|,*help|,crime|,undesired|ݬ + V help| + ECHO sound| + N tool|þ,*tell|,#police| + N MusicTool| + N tool|þ,*tell| +ǻ N shows| + N account|,@record|¼,#name| + V fail|ʧ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam| + V succeed|ɹ,scope=exam|,result=include|,education| + N attribute|,rank|ȼ,superior|,&human| + N human|,$study|ѧ,$imitate|ģ,desired| + N part|,%AnimalHuman|,arm| + N part|,%bird|,wing| + N human|,friend|,*help| + N part|,%AnimalHuman|,arm| +Բ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Բ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,arm| + N part|,%bird|,wing| + N part|,%AnimalHuman|,viscera| + V fasten|˩ + N human|,*TakeAway|ᶯ,crime|,undesired|ݬ + V TakeAway|ᶯ,manner=fierce|,crime| +Ʊ V TakeAway|ᶯ,manner=fierce|,crime| + N fittings|,clothing|,linear|,*fasten|˩,#leg| + V wrap| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N shape| + N food|ʳƷ,sweet| + N food|ʳƷ,ice|,cold| + N SportTool|˶ + N fact|,sport| + N facilities|ʩ,space|ռ,@compete|,sport| + N food|ʳƷ,sweet| + N crop|ׯ + N part|,%crop|ׯ,embryo| + N tool|þ,straight|ֱ,long| + N material|,?food|ʳƷ + V measure| + N tool|þ,*measure|,#weight| + CLAS unit|λ,&weight| + N tool|þ,*measure|,#weight| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + N fish| + N place|ط,city|,ProperName|ר,(China|й) + N fish| + N money|,(UK|Ӣ) + CLAS unit|λ,&money|,(UK|Ӣ) + V BeNear| + V approach|ӽ + N time|ʱ,night| + N time|ʱ,night| + V slander|̰ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%FlowerGrass|,embryo| + N crop|ׯ + N crop|ׯ + ADJ aValue|ֵ,source|Դ + N part|,%AnimalHuman|,embryo| + N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,male| + N part|,%AnimalHuman|,embryo| + V bear|е + V borrow| + N character|,surname|,human|,ProperName|ר + V contain| + N disease|,#swollen| + V entrust|ί + V guarantee|֤ + N physical| + V surround|Χ + N tool|þ,cubic|,@put| + V wrap| + V manage| + V bear|е,content=all|ȫ + V protect|,manner=biased|ƫ + V cherish|Ļ + V contain| + V bear|е,content=produce|,industrial| + V bear|е,content=produce|,agricultural|ũ + V MakeAppointment|Լ,content=InstitutePlace|,entertainment| + V surround|Χ,military| + V borrow|,possession=LandVehicle| + V borrow|,possession=ship| + V bear|е,content=all|ȫ + V GetMarried|,undesired|ݬ + V buy|,possession=edible|ʳ,commercial| + N food|ʳƷ + V sell|,possession=edible|ʳ,commercial| + V MakeAppointment|Լ,content=InstitutePlace|,#reside|ס + N artifact|˹,$wrap| + N duty|,undesired|ݬ + N tool|þ,*wrap| + V bear|е,content=affairs|,#duty| + N system|ƶ + V MakeAppointment|Լ,content=bear|е,commercial| +ͷ N human|,#occupation|ְλ,*manage|,#industrial| + N crop|ׯ + V guarantee|֤ + N physical| + V wrap| + N bill|Ʊ,#post|ʼ + V contain| + V forgive|ԭ + V guarantee|֤,scope=exchange|,commercial| + V borrow|,possession=aircraft| + V contain| + V BeMember| + V bear|е + V contain| + ADJ aValue|ֵ,range|,all|ȫ + V guarantee|֤,scope=recompense|,commercial| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N tool|þ,*wrap| + V contain| + V forgive|ԭ + N human|,#occupation|ְλ,employee|Ա +ͷ N place|ط,city|,ProperName|ר,(China|й) + V guarantee|֤,scope=exchange|,commercial| +Χ V surround|Χ +ΧȦ N shape|,#surround|Χ,military| + N part|,%InstitutePlace|,@look|,#entertainment| + V sell|,commercial| +IJ N vegetable|߲ +Բ V buy|,manner=all|ȫ +Բ V fulfil|ʵ + V contain| + V contain| + V wrap| +װ N tool|þ,*wrap| +װ V wrap| +װ N human|,#occupation|ְλ,*load|װ,industrial| +װ N tool|þ,*wrap| +װֽ N paper|ֽ,*wrap| + N food|ʳƷ + V borrow|,commercial| + V praise|佱 + V ExpressAgainst|Ǵ + V estimate| + N expression|,#praise|佱 + V praise|佱 + V praise|佱 + N information|Ϣ,#praise|佱 + N expression|,#praise|佱 + V StripOff|ȥ + V StripOff|ȥ + V rob| + V fall| + V StripOff|ȥ +Ƥ V StripOff|ȥ,patient=skin|Ƥ +ȥ V StripOff|ȥ +ʴ V FormChange|α + V StripOff|ȥ + V rob| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,light| + ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V despise| + N shape|,flat|,surfacial| + ADJ aValue|ֵ,thickness|,thin| + N food|ʳƷ + N food|ʳƷ + N medicine|ҩ + N attribute|,thickness|,&physical| + N artifact|˹,$GiveAsGift| + N payment|,few|,commercial| + N method|,*sell|,commercial| + V unfortunate| +Ĥ N part|,%AnimalHuman| +Ĥ N shape| +ĺ N time|ʱ,night| +Ƭ N shape|,flat|,surfacial| +Ƭ ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N CloudMist|,thin| + N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N RainSnow|ѩ,#WeatherBad| + V defend|,military|,police| + V guarantee|֤ + V guarantee|֤,#police| + N human|,#police|,*guarantee|֤ + V keep| + N place|ط,country|,ProperName|ר,(Bulgaria|) + V protect| + V guarantee|֤,scope=safe|,police| + V store| + V keep| +ֳĬ V KeepSilence|˵ + V store| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + N bill|Ʊ,*guarantee|֤ + N place|ط,city|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,*manage|,#facilities|ʩ,#store| + V manage| + ADV {comment|} +ܷ N expenditure|,*store|,commercial| + N human|,*store| +Ա N human|,#occupation|ְλ,*manage|,#facilities|ʩ,#store| +Ա N human|,*store| + ADJ aValue|ֵ,ability|,able|,protect| + V protect| +ʩ N method|,*protect| + N place|ط,country|,$protect| +˰ N method|,#expenditure|,*protect| + N place|ط,country|,$protect| + N human|,*protect| +ɡ N system|ƶ,*protect| +ֳ V keep|,patient=scene|,#fact| +Ծ N detain|ס,#protect| +Ծ V detain|ס,#protect| + N human|,*protect| + ADJ human|,*protect| + N human|,*protect| + N system|ƶ,#protect| + N human|,*protect| + N human|,$guarantee|֤,#commercial| +ʵ N human|,*protect|,#royal| +ʵ N human|,*protect|,#royal| + V protect|,patient=family|,country| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bulgaria|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + V protect|,patient=official|,royal|,military|,police| + V recommend|Ƽ + N affairs|,#maintain|,medical|ҽ + N fact|,exercise| + N tool|þ,@put|,#medicine|ҩ,#tool|þ,medical|ҽ +ҽ N human|,#occupation|ְλ,*maintain|,medical|ҽ +ר N human|,#occupation|ְλ,*maintain|,medical|ҽ + V keep|,content=spotless| + N tool|þ,cubic|,@put|,#waste| + V recommend|Ƽ + N SportTool|˶ + N fact|,sport| + V SetAside| + V own| + N place|ط,$SetAside| +Ŀ N shows| + V KeepSilence|˵ + ADJ aValue|ֵ,content|,secret| + ADJ aValue|ֵ,content|,secret| + V maintain|,patient=plant|ֲ,agricultural|ũ +ķ N human|,#occupation|ְλ,*TakeCare|,#family|,female|Ů +ů V keep|,scope=hot| +ȫ V keep| +ȫ V maintain| +ȫ N human|,#occupation|ְλ,*maintain|,industrial| +ȫ V keep|,scope=reputation| + N human|,*guarantee|֤,#police| + V keep|,scope=wet|ʪ,agricultural|ũ + V release|ͷ,police| +ͽ N expenditure|,*guarantee|֤,#release|ͷ,#police| + N human|,*guarantee|֤,#release|ͷ,#police| + V guarantee|֤,scope=obtain|õ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V protect| +ص N community|,politics| +ص N human|,politics| + N community|,behavior|ֹ,stiff|,undesired|ݬ + N knowledge|֪ʶ,stiff|,undesired|ݬ + V recommend|Ƽ,education| +ҽ V undergo|,content=release|ͷ,cause=$cure|ҽ,#police| + V defend|,military|,police| + V keep|,scope=warm| +± N tool|þ,cubic|,*keep|,#warm|,@store|,#edible|ʳ +ƿ N tool|þ,cubic|,*keep|,#warm|,@store|,#edible|ʳ + V keep|,scope=new| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N affairs|,#guarantee|֤,commercial| + ADV {comment|} +մ N tool|þ,*protect| +յ N document|,*guarantee|֤,commercial| +շ N expenditure|,*guarantee|֤,commercial| +չ˾ N InstitutePlace|,*guarantee|֤,commercial| +չ N tool|þ,cubic|,@store|,#precious| +պ N tool|þ,*protect|,#electricity| +ս N wealth|Ǯ,$guarantee|֤,commercial| +տͻ N human|,$guarantee|֤,commercial| + N human|,#occupation|ְλ,*guarantee|֤,commercial| +˿ N tool|þ,*protect|,#electricity| + N tool|þ,#mating|,*exempt|,#pregnant| +ҵ N affairs|,guarantee|֤ + V MakeAppointment|Լ,content=repair| + V maintain| + V protect| + N affairs|,#TakeCare|,#young|,education| +Ա N human|,#occupation|ְλ,*TakeCare|,#young|,education| +Ժ N InstitutePlace|,@TakeCare|,#young|,education| + V guarantee|֤ + N attribute|,SoundQuality|,&tool|þ +֤ V guarantee|֤ +֤ N wealth|Ǯ,*guarantee|֤,#police| +֤ N human|,*guarantee|֤,#police| +ֵ V keep|,patient=value|ֵ + V MakeAppointment|Լ,content=quality| + EXPR expression|,*SayHello|ʺ + V maintain| +ס V keep| +׼ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +׼ V guarantee|֤ + N human|,#occupation|ְλ,*protect| + N facilities|ʩ,space|ռ,military| + N facilities|ʩ,space|ռ,military| + N place|ط,village| + V BeFull|Ա + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,fullness|,full|,desired| + V fulfil|ʵ + V BeFull|Ա + V undergo| + V contain| + V StateChange|̬ +״̬ N attribute|,circumstances|,full|,&physical| + V undergo| +˪ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ʵ N human|,*undergo| +ǻ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V look| + ADJ aValue|ֵ,fullness|,full|,desired| +ʳ V slack|͵ + V undergo| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ö N phenomena|,#StomachTrouble|֢ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N treasure|䱦 + N human|,young| + N human|,friend|,*love|,desired| + N human|,unable|ӹ,undesired|ݬ + N human|,young| + N treasure|䱦 + N human|,young| + N thing|,$like|ϧ + N place|ط,@store|,#treasure|䱦 + N weapon|,precious| + V BeGood|̬ + N place|ط,@store|,#treasure|䱦 + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N InstitutePlace|,*sell|,@buy|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + N weapon|,*stab| + N human|,#family| + N facilities|ʩ,@store|,#treasure|䱦 + ADJ aValue|ֵ,color|ɫ,blue| +ʯ N stone|ʯ,treasure|䱦 +ʯ ADJ aValue|ֵ,color|ɫ,blue| +ʯ N human|,#occupation|ְλ,commercial| + N facilities|ʩ,space|ռ,#religion|ڽ + N treasure|䱦 + N furniture|Ҿ,#royal|,@sit| + V GiveBirth| + V HoldInArm|§ + V cherish|Ļ + V foster| + V own| +...Ĵ V please|ȡ + V ill|̬ +ƽ V unsatisfied| +ȱ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һ V ally| + V slack|͵ + N aspiration|Ը,expect|,desired| +̬ V escape|,offend| + V repent|û + V repent|û + V repent|û + V repent|û + V repent|û + V regret|Ǹ +Ǹ V regret|Ǹ + V unsatisfied| +ͷ V weep| +ͷ V flee| +ͷʹ V weep| +Ŷ V ally| + V foster| + V cherish|Ļ +Թ V protest| + V understand|,content=crime| + V ill|̬ + V announce| + N document| + N letter|ż + N publications|鿯 + N publications|鿯,news| + V recompense| + V reply| + N result| + V revenge| + V tell| + V tell|,content=fact|,police| + N document| + V recompense| + N payment| + V revenge| +ѩ V revenge| + V recompense| + N bill|Ʊ + V disseminate| + N news| + V tell|,content=arrive| + V disseminate| + N news| + N location|λ,%publications|鿯,news| + V recompense|,possession=grateful|м + V remove| + ADJ aValue|ֵ,property|,revenge| + V revenge| + ADJ aValue|ֵ,property|,revenge| + V tell| + N text| +ѧ N text|,literature| + V tell|,location=institution|,commercial| +ص N document|,@record|¼,commercial| + N InstitutePlace|,news| + V endeavour|,beneficiary=country| + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ,#reside|ס + N tool|þ,*communicate| + N tool|þ,*fix|ס,#publications|鿯,#news| + N attribute|,price|۸,$propose|,&physical|,commercial| + V tell|,content=price|۸,commercial| + N tool|þ,@put|,#publications|鿯,#news| + V tell|,content=win|ʤ + V win|ʤ + N community|,#news| + V tell|,target=police| +װ N tool|þ,*tell|,#dangerous|Σ + N readings|,news| + V request|Ҫ,ResultEvent=exam|,education| + V record|¼,content=name| + N expenditure|,*record|¼,#name| +Ļ V tell|,content=perform|,entertainment| + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ + N InstitutePlace|,news| +ʧ V tell|,content=lose|ʧȥ,#police| +ʱ V tell|,content=time|ʱ + EXPR expression|,*request|Ҫ,#tell|,#qValue|ֵ + V tell|,content=qValue|ֵ +˰ V tell|,content=submit| +˰ N bill|Ʊ + V request|Ҫ,ResultEvent=ExpressAgreement|ʾͬ +̯ N InstitutePlace|,*sell|,#publications|鿯,#news|,commercial| +ͤ N InstitutePlace|,*sell|,#publications|鿯,#news|,commercial| +ͯ N human|,*sell|,#publications|鿯,#news|,young|,commercial| +ͷ N part|,%publications|鿯,#news| +Ա N human|,#occupation|ְλ,*communicate| +ϲ V tell|,content=happy| + V recompense| + V remove| + V request|Ҫ,ResultEvent=recompense| + V tell|,content=morning| +Ч V endeavour|,purpose=recompense| +Ч V endeavour|,purpose=recompense|,#country| + V tell| +Ӧ N result|,undesired|ݬ,#unfortunate| + V publish| + N publications|鿯,news| +־ N readings|,news| + V recompense| + V request|Ҫ,ResultEvent=recompense|,commercial| +ֽ N paper|ֽ +ֽ N publications|鿯,news| + V FormChange|α,protruding|͹ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N disease|,urgent| + V BecomeLess|,manner=fast|,#price|۸,commercial| + N uprise| + V happen| + V prosper|,StateFin=rich|,manner=sudden| + N human|,*prosper|,rich|,sudden|,undesired|ݬ + N wind|,#WeatherBad| +ѩ N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + N wind|,#WeatherBad| + V prosper|,StateFin=rich|,manner=sudden| + V exposure|¶ + N phenomena|,unfortunate|,#water|ˮ,undesired|ݬ + N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ + N payment|,$earn|׬,many| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,fierce|,undesired|ݬ,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +¶ ADJ aValue|ֵ,circumstances|,^safe| +¶ V reveal|¶ +¶ V exposure|¶,manner=all|ȫ + N uprise| + N human|,fierce|,crime|,undesired|ݬ +ŭ N emotion|,angry|,undesired|ݬ +Ű ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V ExpressAnger|ʾŭ + V ExpressAnger|ʾŭ +ͽ N human|,*MakeBad|Ӻ,fierce|,crime|,undesired|ݬ + N fact|,MakeBad|Ӻ,fierce|,crime|,undesired|ݬ +ʳ V consume|ȡ,manner=many| + N RainSnow|ѩ,#WeatherBad| + N RainSnow|ѩ,#WeatherBad| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V BecomeMore|,manner=fast|,#price|۸,commercial| + V rise|,manner=sudden| + N system|ƶ,politics|,fierce|,*MakeBad|Ӻ,undesired|ݬ + V die|,manner=sudden| + V lavish|˷ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N beast| +è N beast| + N character|,surname|,human|,ProperName|ר + N fish| + N fish| +֮ N InstitutePlace|,stinky|,@sell|,#fish|,commercial| + V FormChange|α + V cook| + V cook| + V appear| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V happen| + N attribute|,strength|,&physical| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V appear|,experiencer=win|ʤ,manner=sudden|,time=compete| + V FormChange|α + V become|Ϊ,descriptive=full| +׻ N food|ʳƷ + V attack| +Ͳ N weapon| +׻ N food|ʳƷ +ը V FormChange|α +ը V attack| +ը N tool|þ,*attack| +ը ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N tool|þ,*WhileAway|,*congratulate|ף + CLAS NounUnit|,&inanimate| + N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ӱ V doubt| +ǽ ADJ aValue|ֵ,occasion|,disorder|,#eat|,undesired|ݬ + N fact|,compete|,sport| +ˮн ADJ qValue|ֵ,amount|,few|,undesired|ݬ + N drinks|Ʒ,$addict|Ⱥ + N tool|þ,cubic|,@put|,#drinks|Ʒ + N tool|þ,*carve|,*salute|¾ + N text| + N place|ط,ProperName|ר,(China|й) + N text| + N text| +ͤ N facilities|ʩ + N text| +־ N text| + N tool|þ,*carve|,*salute|¾ + V sorrowful| + V sorrowful| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N emotion|,sorrowful| + V condole|° + N emotion|,sorrowful| +߽ N sorrowful|,angry| + N sorrowful|,angry| + V sing|,manner=sorrowful| + ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +۵ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +ʧ V disappointed|ʧ + N attribute|,behavior|ֹ,pessimistic|,&human|,organization|֯ + N human|,pessimistic| + N phenomena|,unfortunate|,lucky| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N fact|,unfortunate|,#sorrowful| + N shows|,#sorrowful|,entertainment| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ե ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V happen|,experiencer=unfortunate|,manner=again| + V aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V cry|,manner=sorrowful| + V sorrowful| + V sorrowful| +̾ V sigh|̾,manner=sorrowful| +̾ N human|,*sorrowful| + V pity| +ʹ V sorrowful| +ʹ V sorrowful| +ϲ V excited| +ϲ N shows| +׳ ADJ aValue|ֵ,scene|,stately|ׯ + V sorrowful| + V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V surrender|,undesired|ݬ +ϥ V surrender|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N direction|,north| + N place|ط,ProperName|ר,(UK|Ӣ) + N part|,%land|½,#waters|ˮ,edge|,north| + N part|,%earth|,north| + N location|λ,north| + N waters|ˮ,ProperName|ר + N location|λ,north| + N part|,%place|ط,#north|,#country| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N celestial| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + N place|ط,north|,ProperName|ר,(China|й) + N waters|ˮ,surfacial|,ProperName|ר +Լ֯ N institution|,politics|,military|,ProperName|ר,(Europe|ŷ) + N place|ط,ProperName|ר,(China|й) + N celestial| + N celestial| + N location|λ,ending|ĩ,north| + N fact|,*attack|,military|,past| + N army|,military|,past| +ս N fact|,*attack|,military|,past| + N direction|,north| + N part|,%place|ط,#north|,#country| + N human|,north| + N place|ط,ProperName|ר,north|,(Africa|) + N wind|,#WeatherBad| + N part|,%place|ط,#north|,#country| + N waters|ˮ,ProperName|ר + N place|ط,ProperName|ר,(Japan|ձ) + N part|,%earth|,north| + N part|,%earth|,north|,ProperName|ר + N part|,%earth|,north|,edge| +Ȧ N part|,%earth|,north|,ProperName|ר + N celestial| + N beast| + N part|,%country|,north| + N part|,%place|ط,surrounding|Χ,#city|,north| + N place|ط,capital|,ProperName|ר,(China|й) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +ʱ N attribute|,standard|׼,&time|ʱ,(China|й) +Գ N human|,past| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +´ N part|,%land|½,base| + N place|ط,ProperName|ר,north|,(America|) + N place|ط,ProperName|ר,north|,(America|) + N location|λ,north| +ŷ N place|ط,ProperName|ר,north|,(Europe|ŷ) +ƽ N place|ط,city|,ProperName|ר,past|,(China|й) + V SelfMoveInDirection|,direction=north| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +γ N attribute|,distance|,&earth|,north| +κ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +´ N part|,%earth|,north| + N army|,military|,past| + N institution|,#place|ط,politics|,past|,ProperName|ר,(China|й) +Լ N institution|,politics|,military|,ProperName|ר,(Europe|ŷ) + N place|ط,ProperName|ר,(China|й) + N attribute|,clan|,&human| + N human|,mass| + V appear|,manner=many| + N attribute|,clan|,&human| + N time|ʱ,TimeLong|,#alive| + V CarryOnBack| + V HideTruth| + V PartSelfMove| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V bear|е + V disable|м,scope=listen| + V disobey|Υ + V facing| + N part|,%AnimalHuman|,body|,hind| + N part|,%inanimate|,body|,hind| + V recite|ж + V unfortunate| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,military| + V sad|dz + N part|,%AnimalHuman|,body|,hind| +ǽһ V fight|,manner=lasting|,military| + N fittings|,%clothing|,*fasten|˩ + N fittings|,%tool|þ,*fasten|˩ + N fittings|,%weapon|,*fasten|˩ + V FitNot| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,direction| +紦 N location|λ,#direction| + V CarryOnBack| + V bear|е + ADJ aValue|ֵ,brightness|,dark| +ڹ V suffer|,IllTreat| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N location|λ,hind| + N part|,%human|,body| + V leave|뿪,LocationIni=family| + N attribute|,scene|,&physical|,&event|¼ + ADJ aValue|ֵ,occasion|,quiet|,desired| + V lean|п + ADV aValue|ֵ,sequence| + V disobey|Υ +¨ N tool|þ,cubic|,@put| + N part|,%physical|,edge|,hind| + V betray| + N human|,*betray| + V CarryOnBack| + V betray| + V recite|ж,content=knowledge|֪ʶ,education| +ˮһս V fight|,manner=strong|ǿ,military| + V recite|ж + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V betray| + ADJ aValue|ֵ,brightness|,dark| +Ӱ N trace|,#lights| +Լ V disobey|Υ,content=MakeAppointment|Լ + V unfortunate| +ծ V owe|Ƿ,possession=wealth|Ǯ + N part|,%animal|,tail|β + N character|,surname|,human|,ProperName|ר + N fish| + N image|ͼ,$carve| + N human|,ProperName|ר,#music|,(Germany|¹) + N human|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Yugoslavia|˹) + N part|,%fish|,skin|Ƥ + N fish| +³ N place|ط,capital|,ProperName|ר,(Lebanon|) +ĸ N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Benin|) + N place|ط,country|,ProperName|ר,(Africa|) + N chemical|ѧ,metal| + N medicine|ҩ + ADJ qValue|ֵ,amount|,double| + N quantity|,amount| + ADV aValue|ֵ,degree|̶,extreme| + V cherish|Ļ,degree=extreme| + ADV aValue|ֵ,degree|̶,extreme| + V undergo| + N symbol|,#quantity| + N symbol|,#quantity| + N part|,%inanimate| + N lights| + V BecomeMore| + N tool|þ,*add| + N character|,(China|й) + ADJ aValue|ֵ,degree|̶,extreme| + V own| + V prepare|׼ + V prepare|׼,purpose=handle| + V record|¼ + V SetAside|,purpose=check| + V suffer|,content=hardship|,manner=extreme| + V SetAside| + V produce| + V prepare|׼,content=planting|ֲ,agricultural|ũ + V prepare|׼,purpose=handle|,#phenomena|,#unfortunate|,#weather| + N part|,%artifact|˹ + V SetAside|,purpose=check| + V prepare|׼,content=teach|,education| + V prepare|׼,content=food|ʳƷ,#animal| + V prepare|׼,content=material| +Ʒ N part|,%artifact|˹ + V prepare|׼ +ȡ V wait|ȴ,content=include| + V undergo| + N document|,*help|,#remember|ǵ +¼ N document|,*help|,#remember|ǵ + V prepare|׼ +ѡ ADJ aValue|ֵ,property|,$SetAside|,replace| +ѡ N method|,$SetAside|,*replace| + ADJ aValue|ֵ,property|,$SetAside|,replace| + V own| +ս V prepare|׼,purpose=handle|,#fight|,military| + ADJ aValue|ֵ,degree|̶,extreme| +ע N part|,%text| +ע N part|,%readings| + V prepare|׼,quantity=sufficient| + V tired|ƣ + V dry| + V dry| + N tool|þ,*cover|ڸ,#sleep|˯ + STRU {LeChinese|} + PREP {agent} +Ů N human|,$protect|,female|Ů + N human|,$protect| +֤ N human|,$guarantee|֤ + V suffer|,content=catch|׽ס + N symbol|,#quantity| + N symbol|,#quantity| + N tool|þ,*cover|ڸ,#sleep|˯ + N tool|þ,*cover|ڸ,#sleep|˯ + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ʽ ADJ aValue|ֵ,behavior|ֹ,passive| + N fact|,*addict|Ⱥ,passive| + ADJ aValue|ֵ,behavior|ֹ,passive| + V suffer|,content=catch|׽ס,military| + N tool|þ + N human|,$accuse|ظ,police| +淽 N human|,$accuse|ظ,police| + N human|,$accuse|ظ,police| +ϯ N location|λ,@sit|,#accuse|ظ,police| + N human|,#police|,$kill|ɱ,$MakeBad|Ӻ,undesired|ݬ + N symbol|,#quantity| + N symbol|,#quantity| +Ӽ N human|,$meet| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +¼ȡ N human|,$include| + N part|,%tool|þ,#sleep|˯,skin|Ƥ + ADJ suffer|,content=force|ǿ + N human|,$remove| + N tool|þ,*cover|ڸ,#sleep|˯ + N human|,$accuse|ظ,police| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +޳ N human|,$remove| + N human|,$RegardAs| +Ƽ N human|,$recommend|Ƽ + N tool|þ,*cover|ڸ,#sleep|˯ +Ѷ N location|λ,#tool|þ,#sleep|˯ +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ѡȨ N rights|Ȩ,$select|ѡ +ѡȨ N rights|Ȩ,$select|ѡ,politics| + N human|,$invite| + N human|,$abandon| + N part|,%tool|þ,#sleep|˯,skin|Ƥ +ָ N human|,$RegardAs| + N tool|þ,*cover|ڸ,#sleep|˯ +ֲ N plant|ֲ + V LeaveFor|ǰ,manner=fast| + V approach|ӽ + V flee| + V run|,manner=fast| + V endeavour| + V run|,manner=fast| + ADJ aValue|ֵ,behavior|ֹ,free|,desired| + V LeaveFor|ǰ,manner=fast| + V flow|,manner=fast| + N water|ˮ + N livestock|,*run|,fast| +æ V endeavour| + V endeavour| + V run| +ɥ V LeaveFor|ǰ,purpose=condole|° + V flee| + V GoForward|ǰ + V run| +ͷ N attribute|,outlook|ǰ,&fact| +Ϯ V attack|,military| + V GoForward|ǰ +к V flow| +ӿ V flow|,manner=fast| + V endeavour| + V run| +ߺ V run|,request|Ҫ,ResultEvent=help| + V run|,tell| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +ϩ N chemical|ѧ + CLAS NounUnit|,&publications|鿯 + ADJ aValue|ֵ,attachment|,self| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,now| + N account| + N attribute|,kind|,&readings| + N fund|ʽ + V obey|ѭ + N part|,%plant|ֲ,body| + N part|,%thing|,base| + N publications|鿯 + N fact|,special| + N readings| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N part|,%institution|,*manage| + N publications|鿯,#medicine|ҩ +ݸĿ N publications|鿯,#medicine|ҩ + N attribute|,distance|,&earth| + N place|ط,village|,special| + N place|ط +ػ V ize|̬ + N human|,original|ԭ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +֦ V prosper| + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,source|Դ,original|ԭ + N human|,family| + ADJ aValue|ֵ,kind|,special| + N fund|ʽ + N attribute|,status|,education|,&human| + N fact|,study|ѧ,necessary|Ҫ,education| + N human|,*study|ѧ,education| + ADJ aValue|ֵ,source|Դ,original|ԭ +Ŀ N attribute|,trueness|α,true|,&thing| + N fund|ʽ + N fund|ʽ,payment|,commercial| + N attribute|,ability|,&animate| + N attribute|,name|,true|,&human| +ĩ N part|,%event|¼ + ADJ aValue|ֵ,&behavior|ֹ,original|ԭ + N attribute|,behavior|ֹ,original|ԭ,&animate| +Ʊ N bill|Ʊ,#wealth|Ǯ,commercial| +Ǯ N fund|ʽ + PRON {firstPerson|} +ɫ N attribute|,color|ɫ,original|ԭ,&physical| +ɫ N attribute|,trueness|α,true|,&thing| + PRON {self|} + N tool|þ,*lighting|ȼ + N attribute|,ability|,&animate| + N part|,%physical| + N physical| + N knowledge|֪ʶ + N place|ط,#country| +λ N attribute|,standard|׼,&money| +λ N money| +λ N money| +λ N thinking|˼,undesired|ݬ + N text| +Ϣ N fund|ʽ +Ϫ N place|ط,city|,ProperName|ר,(China|й) + N place|ط,village|,special| + N attribute|,occupation|ְλ,&human| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + N aspiration|Ը,original|ԭ + N information|Ϣ,#language| +Ӱ N trace|,#lights| +Դ N part|,%thing|,base| +ְ N affairs|,#duty|,#occupation|ְλ + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,heart| + N place|ط,ProperName|ר,(Japan|ձ) + PREP {AccordingTo} + N account| + N attribute|,kind|,&readings| + N language| + ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ + N human|,foolish|,undesired|ݬ +׾ ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ +ȷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N human|,foolish|,undesired|ݬ +ֱ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ +׾ ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + V FormChange|α + V die|,royal| + V end|ս + V kill|ɱ,manner=firing| + V end|ս + V FormChange|α +© V bleed|Ѫ + V FormChange|α + V FormChange|α,dented| + V FormChange|α + V ShowBadEmotion|ʾ + V cheat|ƭ + V endeavour| + V fasten|˩ + V jump| + V straighten|ֱ + N tool|þ,*cure|ҽ,*wrap|,medical|ҽ + N part|,%implement| + V straighten|ֱ + V ShowBadEmotion|ʾ + V ShowBadEmotion|ʾ + N tool|þ,*straighten|ֱ + AUX {neg|} + N tool|þ,*inhale|,#liquid|Һ,#gas| +վ N facilities|ʩ,space|ռ,#liquid|Һ + V jump| +ı V jump| +Ĵ V jump| + V jet| +ŷ V jet| + V FormChange|α + V firing| + V approach|ӽ + V force|ǿ + V rob| +ƹ V force|ǿ,ResultEvent=admit|,police| +ƺ V force|ǿ,ResultEvent=reconcile| +ƽ V approach|ӽ + V force|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V look|,manner=attentive|ϸ + V kill|ɱ +Ф V BeSimilar| +խ ADJ aValue|ֵ,width|,narrow|խ +ծ V force|ǿ,ResultEvent=return|,commercial| + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,width|,narrow|խ + N part|,%AnimalHuman|,*smell| +dzѪ V bleed|Ѫ +Ƕ N part|,%implement| +Ƕ N sound| +Ǽ N part|,%AnimalHuman|,#smell| +ǾҲ N disease| +ǿ N part|,%AnimalHuman|,#smell| + N part|,%AnimalHuman|,#smell| +ǻ N part|,%AnimalHuman| + V wounded| + N fact|,feed|ι,#cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,waste|,liquid|Һ +Ϣ N gas|,#respire| +ʰ N disease| + N disease| + N addictive|Ⱥ +̺ N tool|þ,cubic|,@put|,addictive|Ⱥ + N disease| + N part|,%AnimalHuman|,#smell| + N sound| + N sound|,#language| +и N part|,%AnimalHuman|,#smell| + N part|,%AnimalHuman|,*smell| + N human|,past| + N part|,%AnimalHuman|,#smell| + V BeNear| + V CompareTo| + V compare|Ƚ + V compete| + V imitate|ģ + V show|,instrument=hand| +ȱ V compete| +ȱȽ ADJ qValue|ֵ,amount|,many| +ȶ N money|,(Ethiopia|) +ȷ N expression|,*CompareTo| +ȷ N quantity|,amount|,&result|,#compete|,sport| +ȹ N language|,#country|,ProperName|ר +ȹ N place|ط,city|,ProperName|ר,(Yugoslavia|˹) +Ȼ V show|,instrument=hand| +Ȼ V show| +Ȼ N clothing|,*exercise|,#swim| +ȼ N quantity|,rate|,&price|۸,commercial| +Ƚ V compare|Ƚ + N place|ط,capital|,ProperName|ר,(South Africa|Ϸ) +ʱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Belgium|ʱ) +ʱ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʱ N money|,(Belgium|ʱ) +ʱ N human|,(Belgium|ʱ) + N quantity|,rate|,&entity|ʵ + N tool|þ,*measure| + V measure| + N quantity|,rate|,&entity|ʵ +Ŀ N fish| + V compare|Ƚ + V equal| +... PREP {contrast} + ADV {supplement|ݽ} +˵ ADV {supplement|ݽ} + N money|,(Spain|) + N fact|,compete| + N facilities|ʩ,space|ռ,@compete|,sport| +Ŀ N fact|,compete| + N human|,*compete|,sport| +ɫ N tool|þ,*measure| + N place|ط,capital|,ProperName|ר,(Guinea-Bissau|DZ) + V compete| + V measure| +˹ N language|,#country|,ProperName|ר + N money|,(Chile|) + N money|,(Colombia|ױ) + N money|,(Cuba|Ű) + N money|,(Dominica|) + N money|,(Guinea-Bissau|DZ) + N money|,(Mexico|ī) + N money|,(Philippines|ɱ) + CLAS NounUnit|,&quantity| + V compete| + N human|,male|,female|Ů,mass|,*love| + V fly|,manner=together|ͬ +˫ V fly|,manner=together|ͬ + V CompareTo| + N expression|,*CompareTo| + V compare|Ƚ + PREP {AccordingTo} +ֵ N quantity|,rate|,&entity|ʵ + N attribute|,strength|,&physical| + N quantity|,rate|,&entity|ʵ +ؼ N tool|þ,*measure| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V despise| +ɱ V despise| +ɼ N thought|ͷ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ª ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V despise| + PRON {firstPerson|} + V despise| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V despise| + N thought|ͷ +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + CLAS NounUnit|,&fund|ʽ + N PenInk|ī,*write|д + N method|,*write|д + N part|,%character|,#write|д +ʴ N attribute|,style|,&compile|༭,literature| +ʴ V reply|,means=write|д +ʵ N attribute|,ability|,#compile|༭,&human| +ʵ N attribute|,style|,&compile|༭,literature| +ʷ N method|,*write|д,*draw| +ʷ N attribute|,style|,&compile|༭,literature| +ʸ N PenInk|ī,*write|д +ʸ N part|,%PenInk|ī,#write|д,body| +ʸ N PenInk|ī,*write|д +ʸ N human|,*compile|༭,literature| +ʹ N part|,%PenInk|ī,#write|д,body| +ʻ N part|,%character|,#write|д +ʻ N part|,%character|,#write|д +ʼ N trace|,#write|д,#distinguish|ֱ +ʼ V record|¼ +ʼ N text| +ʼDZ N account| +ʼDz N account| +ʼС˵ N text| +ʼ N tool|þ,@put|,#PenInk|ī +ʼ N part|,%PenInk|ī,#write|д,head|ͷ +¼ V record|¼ +¼ N text| +ñ N part|,%PenInk|ī,#write|д,#head|ͷ + N attribute|,name|,&human|,literature| +ī N PenInk|ī,*write|д +ī˾ N fact|,debate| + N fact|,exam|,means=write|д +˳ N attribute|,sequence|,#write|д,&character| + V calculate|,means=write|д +̸ V speak|˵,means=write|д + N part|,%PenInk|ī,#write|д,#head|ͷ + N tool|þ,#PenInk|ī,*cover|ڸ +ͦ ADJ aValue|ֵ,form|״,level|ƽ +ͦ ADJ aValue|ֵ,posture|,upright| +Ͳ N tool|þ,@put|,#PenInk|ī + N result|,err|,#write|д + N text| + N part|,%PenInk|ī,heart| + V translate|,means=#write|д + N human|,friend|,#letter|ż +ս N fact|,debate| + N human|,compile|༭ +ֱ ADJ aValue|ֵ,form|״,straight|ֱ +ֱ ADJ aValue|ֵ,posture|,upright| + ADJ aValue|ֵ,kind|,special| +˰ N part|,%land|½,#waters|ˮ,edge| +˴ ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ +˴˱˴ EXPR expression|,*appreciate|޳ + ADJ aValue|ֵ,color|ɫ,blue| +̲ N water|ˮ,blue| +̲ N waters|ˮ,wide|,blue| + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +ݴ N drinks|Ʒ +Ѫ N attribute|,behavior|ֹ,faithful|,&human| +Ѫ N attribute|,behavior|ֹ,faithful|,&human| + N treasure|䱦 + N crop|ׯ,?material| + N material|,#crop|ׯ,?medicine|ҩ,liquid|Һ + N part|,%crop|ׯ,embryo|,?material|,#medicine|ҩ + V cover|ڸ + N character|,surname|,human|,ProperName|ר + V finish| + V fulfil|ʵ +ϹϾ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ͼ ADV {emphasis|ǿ} +书һ V fulfil|ʵ,patient=affairs| + N time|ʱ,TimeLong|,#alive| +ҵ V finish|,scope=study|ѧ,education| +ҵ N part|,%organization|֯,#finish|,education| +ҵ N fact|,congratulate|ף,#finish|,education| +ҵ N text|,#finish|,education| +ҵ N human|,*finish|,education| +ҵ֤ N document|,*prove|֤,#finish|,education| + V die| + V kill|ɱ,means=firing| + V die| + V MakeBad|Ӻ + N money|,commercial| +ֵ N attribute|,value|ֵ,&money|,commercial| + N system|ƶ,#money|,commercial| + V protect| +ӻ V protect| +ӻȨ N rights|Ȩ,*protect|,politics| +ӻ N InstitutePlace|,*protect| + V protect| + V SayHello|ʺ + N paralyse|̱ + V BlockUp| + V TurnOff|ֹ + V shut|ر +չ V cease|ͣ,content=associate|,politics| +չ N regulation|,#cease|ͣ,#associate|,politics| +չ V cease|ͣ,content=associate|,politics| +պ V shut|ر +պԹ N disease| +ջ V cease|ͣ,content=fact|,#communicate| +վ N phenomena|,#female|Ů,#finish|,medical|ҽ +տڲ̸ V KeepSilence|˵ +տ V KeepSilence|˵ +· N shows| +Ÿ N fact|,shut|ر +˼ V LookBack|,content=err| +쳵 V RashlyAct| +Ļ V finish| +Ļ N text|,#finish| +Ļ N fact|,#finish| +Ļʽ N fact|,#finish| +Ŀ V ignorant|֪ +֢ N disease| + V BlockUp| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +۾׽ȸ V RashlyAct| + N disease| + N fact|,RelateNot|޹ + N part|,%language| +Ԫ N sound|,#language| +߻ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ǧ V like|ϧ,target=useless| + V like|ϧ,target=useless| + N artifact|˹,waste| + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + N phenomena|,bad| +ײ N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ +ײ N phenomena|,bad| +׶ N phenomena|,bad| + ADV aValue|ֵ,possibility|,possible| + ADV {comment|} + ADV {modality|} +ر ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ز ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ض ADV {modality|} +ؽ ADV {comment|} +Ȼ ADJ aValue|ֵ,possibility|,possible|,desired| +Ȼ N regulation|,#possibility|,#possible| +Ȼ ADJ aValue|ֵ,possibility|,possible| +Ȼ N attribute|,possibility|,possible|,&event|¼ +޿ N fact|,study|ѧ,necessary|Ҫ,education| + ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +Ʒ N artifact|˹,$need|,necessary|Ҫ,generic|ͳ + AUX {modality|} +Ҫ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +Ҫǰ N attribute|,standard|׼,&entity|ʵ +Ҫ N attribute|,standard|׼,&entity|ʵ +Ҫ N attribute|,necessity|Ҫ,necessary|Ҫ,&entity|ʵ +֮· N process|,necessity|Ҫ +֮ N place|ط,important|,military| + ADJ aValue|ֵ,content|,accurate|׼,desired| + V create| + V obstruct|ֹ + V refute| +ҥ V refute|,content=deceive|ƭ + N facilities|ʩ,*obstruct|ֹ,military| + N part|,%building|,skin|Ƥ + N part|,%land|½,skin|Ƥ + N shape|,skin|Ƥ +ڱ N readings|,news| +ڳ N furniture|Ҿ,cubic|,@put| +ڵ N tool|þ,*illuminate| +ڹ N tool|þ,$hang|,*decorate|װ,#room| +ڹ N furniture|Ҿ,cubic|,@put| +ڻ N beast| +ڻ N image|ͼ + N facilities|ʩ,*obstruct|ֹ +ݷ V BeOpposite| +ɭ V aValue|ֵ,property|,$defend|,strong|ǿ + V stand|վ +¯ N tool|þ,*WarmUp|,#room| +¯̨ N part|,%tool|þ,#WarmUp|,#room| + N fact|,sport| +ʭ N InsectWorm|,undesired|ݬ +̺ N tool|þ,$hang|,*decorate|װ,#room| +ֽ N material|,*decorate|װ,#room| + N part|,%AnimalHuman|,arm| + N part|,%implement|,arm| +۰ N part|,%AnimalHuman|,arm| + N tool|þ,*mark|־,#arm| + V help| + V escape| + V evade|ر + V obstruct|ֹ +ܷ V escape|,cause=unfortunate| +ܷ V escape|,cause=wind| +ܷ N place|ط,safe| +ܷͷ V escape|,cause=unfortunate| +ܹ V escape|,cause=lights| +ܻ V evade|ر +ܿ V escape| +ܿ V evade|ر +ܿ侮 V unfortunate| + N tool|þ,#thunder| + N tool|þ,#thunder| + V escape| + V escape|,cause=unfortunate| + N InstitutePlace|,@escape|,#unfortunate| + V escape| +˶Ŀ V escape|,cause=$know|֪ +ʵ V escape|,cause=cons| + V escape|,cause=hot| +˰ V evade|ر,content=pay|,#expenditure|,commercial| + V escape|,cause=$doubt| + V escape|,cause=dangerous|Σ + V escape|,cause=RainSnow|ѩ + V obstruct|ֹ,ResultEvent=pregnant|,#mating| +дʩ N method|,#mating|,*obstruct|ֹ,#pregnant| +й N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +л N medicine|ҩ,#mating|,*obstruct|ֹ,#pregnant| + N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +ҩ N medicine|ҩ,#mating|,*obstruct|ֹ,#pregnant| +Ʒ N tool|þ,#mating|,*obstruct|ֹ,#pregnant| +ؾ V evade|ر,content=express|ʾ,#important|,means=express|ʾ,#secondary| + N part|,%building|,nerve| + N human|,royal| + V beat| + N shape| + N tool|þ,*WhileAway|,*congratulate|ף + N tool|þ,*beat| + N weapon|,past| +ޱٽ ADJ aValue|ֵ,content|,accurate|׼,desired| +ޱ ADJ aValue|ֵ,content|,accurate|׼,desired| +޲ V urge|ʹ +޳Ī V BeUnable| +޴ V beat| + N tool|þ,*WhileAway|,*congratulate|ף +̢ V ExpressAgainst|Ǵ + N tool|þ,*beat| + V beat| + N attribute|,boundary|,&entity|ʵ + ADJ character|,surname|,human|,ProperName|ר + N organization|֯ + N part|,%country|,edge| + N part|,%image|ͼ,edge| + N part|,%inanimate|,edge| +߰ N facilities|ʩ,#country|,edge|,route|· +߳ N place|ط,#country|,edge| +ߵ N place|ط,#country|,edge| +߷ N fact|,defend|,#country|,edge|,military| +߷ N army|,*defend|,#country|,edge|,military| +߷ N fact|,check|,#country|,edge|,military| +߷վ N facilities|ʩ,*check|,#country|,edge|,military| +߷ N army|,*defend|,#country|,edge|,military| +߷ N facilities|ʩ,*defend|,#country|,edge|,military| +߷սʿ N human|,*defend|,#country|,edge|,military| +߷վ N facilities|ʩ,*check|,#country|,edge|,military| +߷ N human|,*exercise|,(football|) +߹ N facilities|ʩ,#country|,edge|,route|· +߼ N attribute|,boundary|,&entity|ʵ +߼ N fact|,check|,#country|,edge|,military| +߽ N part|,%country|,edge| +߽ N material| +߽ N part|,%country|,edge| +̸߽ N fact|,discuss|,#country|,edge|,politics| +߽ N part|,%country|,edge| +߽ N fact|,quarrel|,#country|,edge| +߾ N part|,%country|,edge| +߾ͻ N fact|,fight|,#country|,#edge| +߾ó N fact|,commercial|,#country|,#edge| +߿ N facilities|ʩ,*check|,#country|,edge|,military| +߿ N part|,%artifact|˹,edge| +ó N fact|,commercial|,#country|,#edge| + N part|,%building|,mouth|,edge| + N human|,*reside|ס,#country|,edge| + N place|ط,#country|,edge| + N facilities|ʩ,military|,*defend| + N location|λ,%facilities|ʩ,linear|,edge|,sport| + N part|,%inanimate|,%space|ռ,edge| + N sound|,#language| +Ե N part|,%inanimate|,%space|ռ,edge| +Եѧ N knowledge|֪ʶ +Զ ADJ aValue|ֵ,distance|,far|Զ +կ N place|ط,#country|,edge| + N part|,%country|,edge| + V PutInOrder| + V compile|༭ + V establish| + V forge|α + V weave| + V establish| + V weave| + V compile|༭,ContentProduct=software|,#computer| + N attribute|,sequence|,&entity|ʵ +ർ V compile|༭,guide|,entertainment| +ർ N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V establish|,PatientProduct=organization|֯ +෢ V announce|,#news| + V PutInOrder|,scope=number| + N attribute|,number|,&physical| +༭ V compile|༭ +༭ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +༭ N part|,%institution|,*compile|༭,#readings|,literature| +༭ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +༭Ա N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +༭ N human|,#occupation|ְλ,official|,*compile|༭,#news| + V compile|༭,PatientProduct=shows|,entertainment| + N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V compile|༭ +Ŀ V classify| +Ŀ N part|,%readings|,content| +ʷ N readings| + N attribute|,pattern|ʽ,&text| + V PutInOrder| +Dz V establish|,military| + N human|,#occupation|ְλ,*compile|༭,#readings|,literature| + ADJ aValue|ֵ,attachment| +ί N human|,#occupation|ְλ,#institution|,*compile|༭,#readings|,literature| +ί N part|,%institution|,*compile|༭,#readings|,literature| +д V compile|༭ +д N human|,*compile|༭ +ѡ V compile|༭ + V compile|༭,translate| +ӡ V print|ӡˢ + V compile|༭ + V forge|α + N human|,*compile|༭,#readings|,literature| +߰ N text|,#readings| +֯ V weave| + N attribute|,strength|,&organization|֯ +Ա N attribute|,strength|,&organization|֯ + N MusicTool| + V compile|༭ +׫ V compile|༭ + V establish|,PatientProduct=organization|֯ + V compile|༭ + V BecomeLess| + V PlayDown| + V dismiss| + V ExpressAgainst|Ǵ + V dismiss| + V PlayDown| + N human|,*PlayDown| + V PlayDown| + V PlayDown| + V PlayDown| + N information|Ϣ,*PlayDown| + N expression|,*PlayDown| +ְ V dismiss|,ResultIsa=occupation|ְλ +ֵ V BecomeLess|,scope=value|ֵ + V dismiss| + ADJ aValue|ֵ,form|״,flat| +ⳤ ADJ aValue|ֵ,length|,long| + N InsectWorm| +ⵣ N tool|þ,*CarryOnBack| +ⶹ N part|,%vegetable|߲,embryo|,$eat| +ⶹ N vegetable|߲ +ƽ ADJ aValue|ֵ,form|״,flat| +ƽ N disease| + N fruit|ˮ + N tree|,#fruit|ˮ + N part|,%AnimalHuman| + N disease| + N part|,%AnimalHuman| +ٷʴ N disease| + N disease| +Բ ADJ aValue|ֵ,form|״,round|Բ + N ship| + N tool|þ,*rub|Ħ + N InsectWorm| + CONJ EventResult|¼ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,time|ʱ,convenient| + V excrete|й + N natural|Ȼ,#AnimalHuman|,$excrete|й,waste| + CONJ {concession|ò} + N food|ʳƷ +㳵 N LandVehicle| + N facilities|ʩ,cubic|,*excrete|й +㵱 ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +㵱 N food|ʳƷ + N facilities|ʩ,route|· + N facilities|ʩ,route|·,@walk| + N facilities|ʩ,route|·,near| +㷹 N food|ʳƷ + N clothing|,generic|ͳ +㺯 N letter|ż + N tool|þ,cubic|,*excrete|й + N paper|ֽ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + V benefit| +· N facilities|ʩ,route|·,near| +ñ N clothing|,#head|ͷ + N part|,%building|,mouth| + N disease| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,*excrete|й + N facilities|ʩ,route|·,#waters|ˮ +ʿ CLAS unit|λ,&money|,(UK|Ӣ) + N text| +Ͱ N tool|þ,cubic|,*excrete|й +Ь N clothing|,#foot| +Яʽ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +Ѫ V bleed|Ѫ,#excrete|й + N fact|,entertain|д,eat| + N clothing| + N human|,#occupation|ְλ,*scout|,police| + ADJ aValue|ֵ,price|۸,cheap|,desired| + V benefit| + V do|,manner=flexible| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ڹ ADJ aValue|ֵ,ability|,able|,$manage| +װ N clothing|,generic|ͳ + N fact|,entertain|д,eat| + V alter|ı + V become|Ϊ + V change| + N fact|,change| +Ϸ V perform|,content=shows|,entertainment| +䱾 V surpass|ǿ + V become|Ϊ +䵰 N food|ʳƷ + N facilities|ʩ,#electricity| +վ N facilities|ʩ,#electricity| + V alter|ı,patient=SoundQuality| +䶯 V QuantityChange|,commercial| +䶯 V alter|ı +䶯 V change| +䷨ V improve|,politics| +䷨ V try|,patient=method| +䷨ά N fact|,improve|,politics| + V alter|ı + V alter|ı + N fact|,change| +仯 V change| +仯 ADJ aValue|ֵ,property|,change|,often| +仯 ADJ aValue|ֵ,property|,change|,often| +仯޳ ADJ aValue|ֵ,property|,change|,often| +任 V replace| +任 N part|,%implement| + V change| +Ī ADJ aValue|ֵ,property|,change|,often| +Ī N aValue|ֵ,property|,change|,often| +޳ ADJ aValue|ֵ,property|,change|,often| +伶 V AlterGrade|伶 +佹ͷ N part|,%tool|þ,#TakePicture|,heart| +佹ྵͷ N part|,%tool|þ,#TakePicture|,heart| + V betray|,politics| +ڷ N human|,*betray|,treacherous|,undesired|ݬ,politics| +Ϊ N fact|,betray|,undesired|ݬ,politics| +ռλ V AlterLocation|ռλ + V ExpressAnger|ʾŭ + N attribute|,property|,&entity|ʵ + N symbol|,#quantity| + V AlterMeasurement| + V AlterPossession| + N fact|,uprise|,undesired|ݬ + V sell| +ħ V perform|,content=shows|,entertainment| +Ƶ V alter|ı,patient=frequency|Ƶ +Ƶ N implement|,*alter|ı,#frequency|Ƶ +Ƶ N implement|,*alter|ı,#frequency|Ƶ +Ǩ N fact|,#change| +ɫ V AlterColor|ɫ +ɫ V angry| +ɫ N tool|þ,*protect|,#eye|,*AppearanceChange|۱,#color|ɫ +ɫ N beast| +ɫ N human|,sly|,undesired|ݬ +Ƿ V AlterIsa|Ƿ + V AlterAttribute| + N attribute|,property|,&entity|ʵ + N symbol|,#quantity| + V alter|ı,patient=speed|ٶ + N part|,%machine|,*alter|ı,#speed|ٶ +̬ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +̬Ӧ N disease| +̬ N mental|,disease| + V AlterProperty| + V BeRecovered|ԭ,politics|,undesired|ݬ + V WeatherChange| +ͨ ADJ aValue|ֵ,behavior|ֹ,flexible| +ͨ ADJ obey|ѭ +Ϊ V become|Ϊ +¶ N AnimalHuman|,generic|ͳ +Ϸ V perform|,content=shows|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,hidden| + V disloyal| + V FormChange|α +γ N bacteria|΢ +γ N disease| +״ V AlterForm|״ + V AlterAttribute| +̬ V ize|̬ +ѹ N tool|þ,alter|ı,#electricity| + V FormChange|α + N fact|,change| + V OutOfOrder| + N stone|ʯ,?material| + N entity|ʵ +ŷ V try|,patient=method| + N fact|,change|,#music|,entertainment| + N music|,entertainment| + V disobey|Υ,content=MakeAppointment|Լ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V distinguish|ֱ + N attribute|,ability|,#distinguish|ֱ,&human| + V distinguish|ֱ + V distinguish|ֱ + V distinguish|ֱ +ʶ V distinguish|ֱ + V distinguish|ֱ +֤ V prove|֤ +֤ N fact|,cure|ҽ,medical|ҽ + V debate| + V refute| +粵 V refute| + N attribute|,ability|,#debate|,&human| + V debate| + N text|,*debate| + N text|,*debate| +绤 V refute| +绤 V refute|,police| +绤 N human|,*refute|,#police| +绤ʿ N human|,*refute|,#police| + V refute| + N human|,*debate| + V debate| + N fact|,debate| +ۻ N fact|,debate| + V debate| +ʿ N human|,*debate| +֤ N knowledge|֪ʶ +֤߼ N knowledge|֪ʶ +֤Ψ N knowledge|֪ʶ + N part|,%human|,hair|ë + V weave| + V weave| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N reason|,*ExpressAgainst|Ǵ,undesired|ݬ + CLAS ActUnit|,&event|¼ + ADJ aValue|ֵ,range|,all|ȫ +鲼 V exist|,manner=all|ȫ + ADJ location|λ,all|ȫ +ؿ V appear| +ؿ V pregnant| +鼰 V exist|,manner=all|ȫ + ADJ location|λ,all|ȫ + V wounded| + ADJ location|λ,all|ȫ +Ұ ADJ location|λ,all|ȫ + N attribute|,price|۸,&bear|е,industrial| + V express|ʾ + N mark|־ + N phenomena|,#disease|,medical|ҽ + V propose|,commercial| + N tool|þ,*reward|,desired| + V ShowOff|ҫ + V disseminate| +걾 N entity|ʵ,example|ʵ + N human|,$study|ѧ,$imitate|ģ,desired| + N human|,military| + N part|,%weapon|,*measure|,#mark|־ + N tool|þ,*measure|,#mark|־ + V express|ʾ + N attribute|,price|۸,$propose|,&artifact|˹,commercial| + N facilities|ʩ,*illuminate|,#vehicle|ͨ,#AlterLocation|ռλ + N lights|,#vehicle|ͨ,#AlterLocation|ռλ + N attribute|,price|۸,$propose|,&artifact|˹,commercial| + N symbol|,#text| + N symbol|,#text| +궨 V delimit| +궨 N standard|׼ + N tool|þ,*measure|,#mark|־ + N attribute|,height|߶,&inanimate| + N attribute|,rank|ȼ,&material| + N symbol| + N attribute|,price|۸,$write|д,&physical| + V express|ʾ,content=price|۸,commercial| + V express|ʾ + N mark|־ +ǩ N mark|־ +ǹ N SportTool|˶ +ʶ V express|ʾ +ʶ N mark|־ +ʶ N symbol|,*express|ʾ +ʾ V express|ʾ + N part|,%text|,name| +ͼ N image|ͼ + V start|ʼ,content=new| + N readings| + N mark|־ +־ V mean|ָ +־ N symbol| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ע V express|ʾ +ע N symbol|,*express|ʾ +׼ ADJ aValue|ֵ,standard|׼,average|,desired| +׼ N attribute|,standard|׼,&entity|ʵ +׼ N law|ɷ +׼ ADJ aValue|ֵ,standard|׼,average| +׼ N ize|̬,PatientAttribute=standard|׼ +׼ V ize|̬,PatientAttribute=standard|׼ +׼ N sound|,*fit|ʺ,standard|׼,#language| +׼ N language|,*fit|ʺ,standard|׼ + N beast| + ADJ aValue|ֵ,brightness|,bright|,desired| +ǧ ADJ aValue|ֵ,brightness|,bright|,desired| +ʷ ADJ aValue|ֵ,brightness|,bright|,desired| +뺷 ADJ aValue|ֵ,courage|,brave|,desired| +δ N human|,big| + N part|,%AnimalHuman|,flesh| + ADJ aValue|ֵ,fatness|,fat| +׳ ADJ aValue|ֵ,fatness|,fat| + V cure|ҽ + N document|,@record|¼ + V express|ʾ + N human|,$study|ѧ,$imitate|ģ,desired| + N mark|־,*salute|¾,#royal| + N part|,%thing|,skin|Ƥ,external| + N tool|þ,*measure| + N tool|þ,*tell|,#time|ʱ + V explain|˵ + N document|,@record|¼ + N account|,@record|¼ + N part|,%thing|,skin|Ƥ + N location|λ + N part|,%weapon|,*measure|,#mark|־ + V express|ʾ +ʽ V symbol| +ʽ N symbol| + N fittings|,%tool|þ,#tell|,#time|ʱ,*fasten|˩ + N human|,family|,male| + N human|,family|,male| + N document|,@record|¼ + V express|ʾ,content=result|,#succeed|ɹ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N symbol| + N human|,family|,female|Ů + N human|,family|,female|Ů,mass| + V judge|ö,means=select|ѡ + N organization|֯,*select|ѡ,undesired|ݬ +Ȩ N rights|Ȩ,*select|ѡ + N attribute|,behavior|ֹ,&human| + N location|λ,external|,internal| +ﲻһ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +һ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N fittings|,%tool|þ,#tell|,#time|ʱ,*fasten|˩ +¶ V express|ʾ + N human|,$study|ѧ,$imitate|ģ,desired| + N human|,family|,female|Ů + N part|,%tool|þ,#time|ʱ,skin|Ƥ + N part|,%thing|,skin|Ƥ +滯 V exposure|¶ + N attribute|,size|ߴ,surfacial|,&inanimate| +ֵ N attribute|,value|ֵ,&physical| + N text|,fake|α + N phenomena|,NotProfound|dz + N attribute|,strength|,#pull|,&physical| + V express|ʾ + N part|,%tool|þ,#time|ʱ,skin|Ƥ +Ƥ N part|,%AnimalHuman|,skin|Ƥ + N attribute|,clan|,&human| + N human|,family| + N attribute|,countenance|,&AnimalHuman| +ʾ V express|ʾ +ʾ N information|Ϣ,$express|ʾ +ʾ V ShowBadEmotion|ʾ +ʾ V ShowEmotion|ʾ + V explain|˵ +̬ V tell|,content=standpoint| + N stone|ʯ,material|,skin|Ƥ + V ShowOff|ҫ + N attribute|,behavior|ֹ,&human| + N result|,#show| + V show| + N experience| + V display|չʾ + V perform|,entertainment| + N fact|,compete|,$perform| + N shows| + V praise|佱 + N character| + N character| + N part|,%language| + V praise|佱 + N part|,%tool|þ,#tell| + N disease| + N fish| + V pant| + V restrain|ֹ + V upset| + V upset| + V pant| + V upset| + V upset| +һ V upset| + ADJ aValue|ֵ,kind|,other| + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V farewell| + V fasten|˩ + ADV {neg|} +IJ ADJ aValue|ֵ,kind|,special| + N location|λ,other| + ADJ aValue|ֵ,kind|,other| +𶯶 N part|,%army| +һ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,new| + EXPR expression|,*WellTreat|ƴ + EXPR expression|,*SayHello|ʺ + V farewell| + N fact|,other| +ͷ V HaveContest| + N attribute|,name|,other|,&entity|ʵ +Ť V FitNot| +Ť ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ť ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + PRON {ThirdPerson|} + N house| + V BeUnable| + V BeUnable| +ѡ V BeUnable| + N emotion|,#sad|dz,#farewell| + ADJ aValue|ֵ,similarity|ͬ,different| +ж ADJ aValue|ֵ,prettiness|,beautiful|,desired| +зζ ADJ aValue|ֵ,taste|ζ,special|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N tool|þ,*decorate|װ,#female|Ů + N tool|þ,*fasten|˩ + ADJ aValue|ֵ,kind|,special| + N character|,wrong| + ADJ aValue|ֵ,form|״,dented| + N human|,*roam|,poor|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V BeNear| + V BeNear| +ٵ V BeNear|,partner=end|ս,commercial| + V BeNear|,partner=perish| +Σ V suffer|,content=dangerous|Σ + V BeNear| + V BeNear|,partner=perish| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ + N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ + N human|,friend|,$welcome|ӭ,$WellTreat|ƴ +Ϧ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N part|,%language| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + N human|,friend|,#welcome|ӭ,#WellTreat|ƴ + V remove| + V reject|ؾ + V remove| + V abandon| + N army| + N human|,*fight|,military| + N part|,%tool|þ,#recreation|,#compete| + N fact|,uprise|,undesired|ݬ,politics| +Ѫ V win|ʤ,manner=easy| +թ EXPR expression|,*estimate| + N weapon|,ship|,military| + N method|,*fight|,military| + N weapon|,generic|ͳ + N affairs|,produce|,#weapon|,military|,industrial| + N InstitutePlace|,@produce|,#weapon|,military|,industrial| + EXPR expression|,*estimate| + N phenomena|,disorder|,undesired|ݬ,#fight|,military| + N human|,#knowledge|֪ʶ,military| + N human|,*fight|,military|,generic|ͳ +ҳ N fact|,#fight|,military| + N weapon|,ship|,military| + N attribute|,strength|,&army|,military| + N quantity|,rate|,#army|,military| + ADJ aValue|ֵ,property|,$suffer|,#attack|,undesired|ݬ +ٳ V suffer|,content=attack|,military| + N army|,military| +ٸ N artifact|˹,generic|ͳ,past|,precious| +Ʀ N human|,*fight|,undesired|ݬ,evil|,military| + N weapon|,generic|ͳ +ǿ׳ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +Ȩ N attribute|,power|,&army|,military| + N weapon|,generic|ͳ + V fight|,military| +ʿ N human|,*fight|,military| + N part|,%army| +е N weapon|,generic|ͳ + N InsectWorm| + N affairs|,engage|,military| +۷ N law|ɷ,#affairs|,#engage|,military| + N system|ƶ,#affairs|,#engage|,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס + N human|,*fight|,undesired|ݬ,evil|,military| +Ա N army|,generic|ͳ +վ N facilities|ʩ,*help|,military| + N attribute|,kind|,&army| + ADJ aValue|ֵ,temperature|¶,cold| + V cool| + N ice| + V suffer|,content=cold| + N food|ʳƷ,ice|,cold| + N RainSnow|ѩ,#WeatherBad| + N facilities|ʩ,@exercise|,#ice|,sport| + N ice| + N time|ʱ,#ice|,past| + N chemical|ѧ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iceland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Iceland|) + N human|,(Iceland|) + N language|,#country|,ProperName|ר + N tool|þ,#ice|,$display|չʾ + N attribute|,boundary|,#cool|,&physical| + N fact|,carve|,#ice| + N image|ͼ,carve|,#ice| + V cool| + V StateChange|̬,StateFin=ice| + N part|,%land|½,head|ͷ,ice| + N food|ʳƷ,ice|,cold| + N tool|þ,*cool| + N food|ʳƷ,ice|,cold| + N food|ʳƷ,ice|,cold| + N ice| + N ice| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N food|ʳƷ,ice|,cold| + N ice| + N ice| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,temperature|¶,cold| + N ice| + N ice| +Ƭ N medicine|ҩ + N fact|,sport| +ɽ N ice| + V disappear|ʧ +ǰ V reconcile| +̿ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N material|,?food|ʳƷ +ѩ N land|½,#ice| + N tool|þ,*cool| +߽ V disappear|ʧ +Ь N SportTool|˶,#clothing|,#foot| +ѩ N ice| +ѩ N festival|,@congratulate|ף,#ice| + V cool| + N ice| +ש N food|ʳƷ,ice|,cold| + N food|ʳƷ,ice|,cold| + N tool|þ,*split|ƿ,#ice| + N attribute|,power|,&human|,&organization|֯,&information|Ϣ + N part|,%implement|,hand| + N part|,%plant|ֲ,body| + NUM qValue|ֵ,sequence|,ordinal| + N material|,?clothing| +ͪ N material| +ͪ֬ N material| +ϩ N chemical|ѧ + N lights| + V control| + V hold| + V bear|е + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + V control|,patient=country| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N food|ʳƷ + N shape| + N food|ʳƷ + N material|,*feed|ι,#crop|ׯ + N food|ʳƷ + N food|ʳƷ + ADJ aValue|ֵ,brightness|,bright| + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N disease| + V ill|̬ + N document|,@record|¼,#disease|,medical|ҽ + N example|ʵ,#disease|,medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N fact|,#disease|,change|,#medical|ҽ + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ + N disease| + N process|,#disease|,medical|ҽ +溦 N phenomena|,#plant|ֲ,*SufferFrom|,undesired|ݬ,medical|ҽ + N furniture|Ҿ,@sleep|˯,#disease|,medical|ҽ + V ill|̬ + N bacteria|΢ + N software|,*damage|,#software| +Ը N disease| +Լ N disease|,#bacteria|΢ +ѧ N knowledge|֪ʶ,#bacteria|΢,#disease|,medical|ҽ +ѧ N human|,medical|ҽ + N room|,#disease|,medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N cause|ԭ,undesired|ݬ,#unfortunate| + N disease| + V die|,cause=ill|̬ + N phenomena|,#plant|ֲ,*SufferFrom|,medical|ҽ,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +ŷ N edible|ʳ,#human|,#SufferFrom|,#medical|ҽ + N disease| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N time|ʱ,#disease|,@rest|Ϣ,#medical|ҽ + N bacteria|΢ + N attribute|,circumstances|,&disease|,#medical|ҽ + N text|,*announce|,#circumstances|,#disease|,#medical|ҽ + N knowledge|֪ʶ,#reason|,#disease|,medical|ҽ +ѧ N knowledge|֪ʶ,#reason|,#disease|,medical|ҽ +ѧ N human|,medical|ҽ + N document|,@record|¼,#disease|,medical|ҽ + N process|,#disease|,medical|ҽ + N example|ʵ,#disease|,medical|ҽ +ħ N humanized|,undesired|ݬ,evil|,#disease| + N attribute|,circumstances|,&disease|,#medical|ҽ +鹫 N text|,*announce|,#circumstances|,#disease|,#medical|ҽ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N attribute|,appearance|,#ill|̬,undesired|ݬ,&AnimalHuman| + V suffer|,content=decline|˥,medical|ҽ +ʷ N process|,#disease|,medical|ҽ + V die|,cause=ill|̬ + N attribute|,circumstances|,&disease|,#medical|ҽ + N room|,#disease|,medical|ҽ + V die|,cause=ill|̬ +̬ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +̬ N attribute|,circumstances|,&disease|,#medical|ҽ +̬ N mental|,disease| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +ʹ N disease| + V cease|ͣ,content=undertake|,cause=disease| + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ +Σ V suffer|,content=decline|˥,medical|ҽ + V cease|ͣ,cause=disease| + ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ + N cause|ԭ,#disease|,medical|ҽ + N human|,friend|,#disease| + V BeRecovered|ԭ,medical|ҽ +ԭ N cause|ԭ,#disease|,medical|ҽ +ԭ N bacteria|΢ +ԭ N bacteria|΢ +ԭѧ N knowledge|֪ʶ,#bacteria|΢,medical|ҽ +Ա N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + N location|λ,#disease|,medical|ҽ +֢ N disease| + V ill|̬ + N plant|ֲ,*SufferFrom|,$cure|ҽ,#medical|ҽ,undesired|ݬ +״ N phenomena|,#disease|,medical|ҽ + N furniture|Ҿ,@sleep|˯,#disease| + N time|ʱ,@ill|̬ + V ill|̬,manner=extreme| + ADV aValue|ֵ,time|ʱ,alike| + V merge|ϲ + COOR {and|} + V punish|,police| + V exist|,manner=together|ͬ + N human|,family|,#GetMarried| + V happen|,time=BeSame|ͬ +֢ N disease| + ADV {neg|} + V equal| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + V GoForward|ǰ,manner=together|ͬ + V handle| + V exist|,time=BeSame|ͬ + V connect|,industrial| + V BeNear| +о N part|,%language| +û ADV {neg|,past|} +û ADV {neg|,past|} + ADV aValue|ֵ,behavior|ֹ,together|ͬ + CONJ {and|} + ADV {and|} + CONJ {and|} + V include| + V merge|ϲ,commercial| + V occupy|ռ,military| + ADV {neg|} + ADJ aValue|ֵ,time|ʱ,alike| +в V fit|ʺ + V PayAttention|ע + N character| +߶ N money|,(Venezuela|ί) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bolivia|ά) +ά N place|ط,country|,ProperName|ר,(South America|) +άŵ N money|,(Bolivia|ά) +ά N human|,(Bolivia|ά) + N material|,?tool|þ + N tool|þ,cubic|,@put|,#drinks|Ʒ + N InstitutePlace|,@produce|,#material|,industrial| + N tool|þ,*split|ƿ,#material| + N human|,#occupation|ְλ,*produce|,#material|,industrial| +̻ N human|,#occupation|ְλ,*carve|,#material|,industrial| + N material| + N tool|þ +ֽ N material| + ADJ aValue|ֵ,attachment|,#material| +״ ADJ aValue|ֵ,form|״ + N character|,(China|й) + N part|,%vegetable|߲,$eat| + N vegetable|߲ + N fruit|ˮ + N fruit|ˮ + V disseminate| + V spread|,agricultural|ũ + V disseminate| + V disseminate| + V display|չʾ + V disseminate| +Ū V incite|ָʹ +Ǩ V TakeAway|ᶯ + V spread|,agricultural|ũ +ɢ V send| +ɢ V spread| + V disseminate| + V disseminate| + N part|,%institution|,@disseminate| +Ա N human|,#occupation|ְλ,*disseminate| +ӳ V disseminate| + V spread|,patient=embryo|,agricultural|ũ +ֻ N machine|,*spread|,#embryo|,#plant|ֲ,agricultural|ũ + N attribute|,broad|,&land|½,#spread|,#embryo|,#plant|ֲ,agricultural|ũ + N time|ʱ,@spread|,#embryo|,#plant|ֲ,agricultural|ũ + CLAS NounUnit|,&tool|þ,#cover|ڸ,#sleep|˯ + V PlayWith|Ū + V associate|,means=turn|Ťת,#tool|þ + V issue|ַ + V turn|Ťת + V issue|ַ + V associate|,means=turn|Ťת,#tool|þ + V issue|ַ + V associate|,means=turn|Ťת,#tool|þ + V part|,%tool|þ,#communicate|,*turn|Ťת + V issue|ַ,patient=fund|ʽ + V PlayWith|Ū +˹ N tool|þ,*WhileAway|,#young| +ҷ V resume|ָ,StateIni=disorder| +Ū V PlayWith|Ū +Ū V incite|ָʹ + V CauseToDo|ʹ,patient=self|,ResultEvent=obtain|õ,#time|ʱ +ͨ V associate|,means=turn|Ťת,#tool|þ +Ƽ V resume|ָ,StateIni=disorder| + V amend| +׼ V amend| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N fact|,change| + N place|ط,country|,ProperName|ר,(Poland|) + N shape|,#sound|,#electricity| + N water|ˮ + N attribute|,length|,&water|ˮ,&sound| + V jet| + V QuantityChange|,commercial| + ADJ aValue|ֵ,form|״,rugged| + N attribute|,length|,&sound|,#disseminate| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Puerto Rico|) + N place|ط,country|,ProperName|ר,(South America|) +ŵ N place|ط,capital|,ProperName|ר,(Benin|) + N place|ط,city|,ProperName|ר,(Germany|¹) + N water|ˮ + N attribute|,length|,&sound|,#disseminate| + N place|ط,capital|,ProperName|ר,(Colombia|ױ) + N water|ˮ + N place|ط,country|,ProperName|ר,(Europe|ŷ) + V influence|Ӱ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Poland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,(Poland|) + N language|,#country|,ProperName|ר + N water|ˮ +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| + N water|ˮ + N place|ط,ProperName|ר + N human|,(Polynesia|) + N fruit|ˮ + N fruit|ˮ +޵ĺ ADJ waters|ˮ,ProperName|ר +޵ĺ N waters|ˮ,surfacial|,ProperName|ר,(Europe|ŷ) + N phenomena|,#color|ɫ,#lights|,#sound|,#electricity| +ʿ N place|ط,city|,ProperName|ר,(US|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Persia|˹) +˹ N place|ط,ProperName|ר,(Asia|) +˹è N livestock| +˹ N human|,(Persia|˹) +˹ N place|ط,ProperName|ר,#waters|ˮ +˹ N language|,#country|,ProperName|ר + N attribute|,speed|ٶ,&AlterLocation|ռλ,#water|ˮ + N water|ˮ +ι ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ +ӿ ADJ aValue|ֵ,occasion|,bustling|,#waters|ˮ + N trace|,wrinkled| + N water|ˮ +ϣ N place|ط,ProperName|ר +ϣ N human|,(Bohemia|ϣ) + N aircraft| + N fact|,change| +״ N disease| +״ N CloudMist| + ADJ qValue|ֵ,amount|,many| + V undergo| + N attribute|,relatedness|,intimate|,&human|,desired| +ڳ V receive|,possession=think|˼ + N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + V undergo| +ͨ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V read|,range=extensive| + N InstitutePlace|,@display|չʾ,#artifact|˹ +ȡ V seek|ıȡ +ʿ N human|,*research|о,*study|ѧ,education| +ʿ N human|,*research|о,*study|ѧ,education| +ʿ N human|,*research|о,*study|ѧ,education| +ʿѧλ N attribute|,rank|ȼ,&human|,#research|о,#study|ѧ,education| +Źʶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ǿ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N physical|,generic|ͳ + N InstitutePlace|,@display|չʾ +ѧ N knowledge|֪ʶ,#display|չʾ +Ժ N InstitutePlace|,@display|չʾ +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V quote|,range=extensive| + V recreation|,sport| + N knowledge|֪ʶ + N human|,*compete| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V happen| + V prosper| + V upmove|,#male|,#mating| +Ȼ ADV aValue|ֵ,property|,excited| +Ȼŭ V angry|,degree=very| +Ȼ V CauseToLive|ʹ,patient=self| + V ComeToWorld|,manner=flourishing| + V GoForward|ǰ + V fight| + V shiver| + V shiver| + V fight| + V fight| +ɱ V fight| + V bite|ҧ,GoForward|ǰ + N metal| + N metal| + N part|,%plant|ֲ,skin|Ƥ + N shape| + N tool|þ + N tool|þ,$burn|,*salute|¾ + N human|,family|,male| + N human|,royal| + N human|,family|,male| + N place|ط,capital|,ProperName|ר,(Switzerland|ʿ) + N human|,family|,male| + N human|,royal| + N human|,royal| + N bird| + N human|,wise| +ĸ N human|,family|,female|Ů + N character|,surname|,human|,ProperName|ר + N material|,?clothing| + N ship| +Ʒ N artifact|˹,foreign| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,arm| + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,#waters|ˮ,(China|й) + V stay|ͣ + V put|,patient=LandVehicle| +λ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +λ N facilities|ʩ,space|ռ,*put|,#LandVehicle| +λ N expenditure|,#location|λ,#ship|,#stay|ͣ + V refute| + V transport|,means=ship| + N facilities|ʩ,#waters|ˮ,*protect| + V refute| + N ship|,*pull| + V refute| + V reject|ؾ +ǹ N weapon|,*firing| + V transport|,means=ship| +˷ N expenditure|,#ship|,#transport| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V catch|׽ס + V catch|׽ס,police| +׽Ӱ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V catch|׽ס + N ship|,*catch|׽ס,beast| + V catch|׽ס + V engage|,content=catch|׽ס,agricultural|ũ + V catch|׽ס,police| +ɱ V kill|ɱ,agricultural|ũ +ʳ V LookFor|Ѱ,purpose=eat| + V catch|׽ס,patient=fish|,agricultural|ũ +׽ V catch|׽ס +׽ͷ V catch|׽ס,patient=time|ʱ,time=TakePicture| +׽ս V catch|׽ס,patient=time|ʱ,time=fight| + N character|,surname|,human|,ProperName|ר + V guess|² + N part|,%vegetable|߲,embryo|,$eat| + V predict|Ԥ + N vegetable|߲ + N text| + V reside|ס + V predict|Ԥ + V feed|ι + V feed|ι +鶯 N AnimalHuman| + N AnimalHuman| +ι V feed|ι + V foster| + V cultivate| + V feed|ι + V provide| + V repair| + V recompense| + V tell| + V recompense| +ó N affairs|,commercial| + ADJ aValue|ֵ,necessity|Ҫ + N human|,*recompense| + ADJ aValue|ֵ,property|,$enrich|ʵ + V enrich|ʵ + N artifact|˹,#repair| + N artifact|˹,#repair| + V issue|ַ + N artifact|˹,$provide|,generic|ͳ,military| + V provide|,military| + N weapon|,ship|,*provide|,military| + N InstitutePlace|,@store|,*provide|,military| + N InstitutePlace|,@store|,*provide|,military| +Ʒ N artifact|˹,$provide|,generic|ͳ,military| + N InstitutePlace|,@store|,*provide|,military| +վ N InstitutePlace|,@store|,*provide|,military| + V submit| + N image|ͼ,angular| + N drinks|Ʒ,*maintain| + V rescue| + V exam|,education| + V teach|,education| + V provide|,agricultural|ũ +ƫȱ V amend|,content=err| +Ʊ V buy|,possession=bill|Ʊ +Ʒ N edible|ʳ,*maintain| +ȱ V provide| +˰ V pay|,content=expenditure| + N payment|,*recompense| +ϰ V study|ѧ +ϰ N part|,%InstitutePlace|,education|,*study|ѧ +ѡ V choose|ѡ +Ѫ V maintain|,medical|ҽ + V maintain|,medical|ҽ +ҩ N medicine|ҩ,*maintain| +Һ V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ + N text|,$add| + V obtain|õ,content=pros| + N part|,%language| + V amend| + V planting|ֲ,agricultural|ũ + N payment|,$provide| + V provide| +׺ V repair| + V provide| +w N artifact|˹,#repair| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N place|ط + ADV {neg|} +ŵ N human|,*disgust|,#tour| + ADJ aValue|ֵ,ability|,unable|ӹ,associate| + V aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V uneasy| + V unsatisfied| +ȫ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +֮ԩ N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,property|,^fail|ʧ,desired| +֮ N attribute|,circumstances|,strong|ǿ,&thing| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + AUX {modality|} +Ҫ ADJ aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lasting| +۸ N attribute|,price|۸,lasting|,&artifact|˹,commercial| + N attribute|,property|,lasting|,&thing| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ʪ ADJ aValue|ֵ,dampness|ʪ,dry| +ɱ ADJ aValue|ֵ,behavior|ֹ,improper| +ɲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ɹ ADJ aValue|ֵ,effect|Ч,useless| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,physique|,unripe| +ͳ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,kind|,^$write|д +ķ N law|ɷ,^$write|д + ADJ aValue|ֵ,form|״,dissimilar| +ʵ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֮ͽ N human|,fierce|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V IllTreat| + N human|,*refuse|,#addict|Ⱥ + ADJ aValue|ֵ,property|,$predict|Ԥ + ADJ aValue|ֵ,content|,mixed| +Ƕ V leave|뿪,manner=KeepSilence|˵ +Ϳ V endeavour| + V endeavour| + V endeavour| + V ExistNot| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V admit| + ADJ aValue|ֵ,SoundVolume|,^loud| + ADV aValue|ֵ,degree|̶,insufficiently|Ƿ + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,size|ߴ,^big| + ADJ aValue|ֵ,strength|,^strong|ǿ +С ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ҫ ADJ aValue|ֵ,importance|,secondary| +˵ ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bhutan|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Bhutan|) + N language|,#country|,ProperName|ר + ADV qValue|ֵ,amount|,many| + ADV {emphasis|ǿ} + ADV {supplement|ݽ} +... COOR {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + N tool|þ,*recreation| +ƺIJ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + STRU {^Vable|} + AUX {modality|,neg|} + AUX {modality|} +ò AUX {modality|} +õ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ö֪ V ignorant|֪ +þ ADJ aValue|ֵ,effect|Ч,inconvenient|,undesired|ݬ +þ V ill|̬ + ADJ aValue|ֵ,circumstances|,urgent| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$accuse|ظ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ҫ V ignorant|֪ + AUX {modality|} +Ǵ֮ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + V ^wait|ȴ + V differ|ͬ +Ȳ V ^wait|ȴ +Ⱥ N symbol|,#DoSum| +ʽ N symbol|,#DoSum| +ֿ N human|,*refuse|,#resist| + ADJ aValue|ֵ,size|ߴ,small|С + ADJ qValue|ֵ,amount|,few| + ADV aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,size|ߴ,small|С + ADJ qValue|ֵ,amount|,few| + ADV aValue|ֵ,easiness|,difficult|,predict|Ԥ + V unfixed|δ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + N physical|,#wealth|Ǯ,^$TakeAway|ᶯ +ɫ V calm| +ҡ ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,ability|,able|,exempt|,#cool| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + ADV {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,continuous| + V FitNot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADV {neg|} +Բ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Գ ADJ aValue|ֵ,form|״,dissimilar| +Ծ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ͷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ͷ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + N method| + ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ + V exist|,manner=many| + V exist|,experiencer=human|,manner=many| + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + N human|,fierce|,crime|,#police|,undesired|ݬ +Ϊ N fact|,act|ж,crime|,#police| +֮ͽ N human|,fierce|,crime|,#police|,undesired|ݬ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ + ADV {comment|} +Ѵ֮ ADJ aValue|ֵ,easiness|,easy|,desired| +ֱ˴ ADJ aValue|ֵ,relatedness|,intimate| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V despise|,target=correctness| +ʤ V equal|,#HaveContest| +ҹ N time|ʱ + V FitNot| + V disobey|Υ +ˮ V FitNot|,contrast=WeatherChange| + V ExistNot| + V disappoint|,neg| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V ^disappoint|,target=aspiration|Ը +ɲ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɲ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V unwilling|Ը +ʼį V unwilling|Ը,content=$IllTreat| + V unwilling|Ը,content=surrender| +ʾ V unwilling|Ը,content=surrender| + V unwilling|Ը +ҹͬ V disagree|ͬ +Խ׳һ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ sad|dz + V leave|뿪,manner=KeepSilence|˵ + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ц ADJ aValue|ֵ,behavior|ֹ,cautious| + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ʹ ADJ aValue|ֵ,importance|,secondary| + V ^manage| + CONJ {concession|ò} +ܲ N human|,official|,*manage|,#country| + CONJ {concession|ò} + ADV qValue|ֵ,amount|,many| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,form|״,dissimilar| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + ADV aValue|ֵ,degree|̶,insufficiently|Ƿ + ADV aValue|ֵ,degree|̶,very| + CONJ {but|} + ADJ aValue|ֵ,standard|׼,average| + ADJ aValue|ֵ,standard|׼,average| + V regret|Ǹ + ADJ shameless|û + V ^fear| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,opened| + V fear| +ù ADJ aValue|ֵ,ability|,unable|ӹ,$GoThrough| +ù V ill|̬ +ù V sorrowful| +ù V unfortunate| +ÿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +˼ V embarrassed|Ϊ + V disobey|Υ +Ͱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +г ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V FitNot| +ϸ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +߼ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ʱ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ʱ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +﷨ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + V cherish|Ļ,content=evil| +ɢ V farewell|,manner=quarrel| +Ųæ ADJ aValue|ֵ,behavior|ֹ,calm|,desired| + V BeUnable| + AUX {neg|} +ḯ ADJ aValue|ֵ,possibility|,impossible|,OutOfOrder| +Ū ADJ aValue|ֵ,possibility|,impossible|,$misunderstand| + V HaveKnowledge|֪ +֮ N time|ʱ,#age|,adult| + V inferior| +ﶯ V part|,%language| +֮ N affairs|,idle| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +˼ ADJ aValue|ֵ,behavior|ֹ,careless| +Ⱦ ADJ aValue|ֵ,content|,pure| +˼ ADJ aValue|ֵ,behavior|ֹ,careless| + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N attribute|,performance|,FitNot|,&implement| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ʡ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V equal| + V refuse|,content=meet| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,reputation|,Notwellknown| + V ExistNot| +Ӱ V disappear|ʧ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶ + ADJ aValue|ֵ,possibility|,impossible|,StateChange|̬ + V ignorant|֪ +֮ N text|,^$guess|² +֮Ե N attribute|,relatedness|,&entity|ʵ,&human| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADV {supplement|ݽ} +... COOR {supplement|ݽ} + ADV {supplement|ݽ} + ADV {supplement|ݽ} + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V EndureNot| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| +ͬ ADJ aValue|ֵ,similarity|ͬ,different| +ȷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V UndergoNot| + ADV aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N decline|˥,commercial| + ADJ aValue|ֵ,duration|,TimeShort| +ǰ N time|ʱ,past| +̼ ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V ^obey|ѭ + CONJ {concession|ò} +һ V ^obey|ѭ + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ڶ V exist|,#sound| + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V EndureNot| + V EndureNot|,content=LookBack| + ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ +Ŀ ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +һ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ѧ ADJ aValue|ֵ,content|,improper| +ɰ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɱ ADJ aValue|ֵ,possibility|,impossible|,$CompareTo| +ɱ ADJ aValue|ֵ,possibility|,impossible|,$escape| +ɱ N attribute|,possibility|,impossible|,$escape|,&event|¼ +ɱ ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +ɱ任 ADJ aValue|ֵ,possibility|,impossible|,$change| +ɲ ADJ aValue|ֵ,possibility|,impossible|,$rescue| +ɲ ADJ aValue|ֵ,possibility|,impossible|,$measure| +ɴ ADJ aValue|ֵ,possibility|,impossible|,$stroke| +ɵֿ ADJ aValue|ֵ,possibility|,impossible|,$resist| +ɶ ADJ aValue|ֵ,possibility|,impossible|,$read| +ɶ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ɷ ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ +ɷ ADJ aValue|ֵ,possibility|,impossible|,$defend| +ɷָ ADJ aValue|ֵ,possibility|,impossible|,$separate| +ɷֽ ADJ aValue|ֵ,possibility|,impossible|,$separate| +ɷ ADJ aValue|ֵ,possibility|,impossible|,$issue|ַ +ɷ ADJ aValue|ֵ,possibility|,impossible|,$deny| +ɸı ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +ɸ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +ɹ ADJ aValue|ֵ,possibility|,impossible|,$estimate| +ɹ ADJ qValue|ֵ,amount|,many| +ɻȱ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ +ɼ ADJ aValue|ֵ,possibility|,impossible|,$calculate| +ɽ ADJ aValue|ֵ,possibility|,impossible|,$teach| +ɽ ADJ aValue|ֵ,possibility|,impossible|,$accept| +ɾҩ ADJ aValue|ֵ,possibility|,impossible|,$cure|ҽ,undesired|ݬ +ɿ ADV aValue|ֵ,degree|̶,extreme| +ɿ ADV aValue|ֵ,possibility|,impossible|,$resist| +ɿ N attribute|,environment|,unable|ӹ,$escape|,&event|¼ +ɿ˷ ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ +ɿˡ ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +֤ ADJ aValue|ֵ,possibility|,impossible|,$prove|֤ +״ ADJ aValue|ֵ,possibility|,impossible|,$describe|д +ĥ ADJ aValue|ֵ,content|,lasting| + ADJ aValue|ֵ,possibility|,impossible| +ת ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ַ ADJ aValue|ֵ,possibility|,impossible|,$damage| + ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ +ʤ ADJ qValue|ֵ,amount|,many| +ʰ ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ + ADJ aValue|ֵ,possibility|,impossible|,$count| +˵ ADJ aValue|ֵ,possibility|,impossible|,$explain|˵ +˼ ADJ aValue|ֵ,possibility|,impossible| +ͨ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +ͬն V differ|ͬ + ADJ aValue|ֵ,possibility|,impossible|,$resume|ָ +Ϩ ADJ aValue|ֵ,possibility|,impossible|,$remove| + ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ + ADJ aValue|ֵ,possibility|,impossible|,$describe|д +һ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,possibility|,impossible|,$alter|ı +Խ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +Խ ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ +ԭ ADJ aValue|ֵ,possibility|,impossible|,$forgive|ԭ +Լ N symbol|,#quantity|,#DoSum| +֪ ADJ aValue|ֵ,possibility|,impossible|,$know|֪ +֪ N knowledge|֪ʶ + ADJ aValue|ֵ,possibility|,impossible|,$believe| +ת ADJ aValue|ֵ,possibility|,impossible|,$TakeAway|ᶯ +׽ ADJ aValue|ֵ,possibility|,impossible|,$understand| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,form|״,blunt| + V ill|̬ + V upset| + V FeelNoQualms| +Ϊ V FeelNoQualms| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ͷ V obtain|õ,means=slack|͵ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ò ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADV slack|͵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + STRU {^Vable|} +˽ V ignorant|֪ +֮ V finish|,result=unfixed|δ + CONJ {comment|} + EXPR expression|,*request|Ҫ +ߴͽ EXPR expression|,*request|Ҫ,#teach| +ָ EXPR expression|,*request|Ҫ,#guide| + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +©ˮ ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© +¶ɫ ADJ aValue|ֵ,behavior|ֹ,secret| +ײ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + CONJ {concession|ò} + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,fullness|,empty| + N emotion|,unsatisfied| + ADV inferior| + V unsatisfied| + V unsatisfied| + N human|,*unsatisfied| + ADJ unsatisfied| +ë֮ N land|½,barren|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +֮ҹ N time|ʱ,night|,^sleep|˯ + AUX aValue|ֵ,possibility|,possible| + ADJ aValue|ֵ,circumstances|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V ignorant|֪ + ADJ aValue|ֵ,possibility|,impossible|,$understand| + N aircraft| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +һ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +Ŷ V ignorant|֪ +ͷ V ignorant|֪ +ı V BeSame|ͬ,scope=thinking|˼ + ADJ aValue|ֵ,easiness|,easy| + ADJ BeUnable| +ܱӶ ADJ aValue|ֵ,possibility|,impossible|,$employ| +ܱ任 ADJ aValue|ֵ,possibility|,impossible|,$change| +ܱ ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +ܲ AUX {modality|} +ܳ ADJ aValue|ֵ,possibility|,impossible|,$return| +ܵ ADJ aValue|ֵ,possibility|,impossible|,$arrive| +ܷ ADJ aValue|ֵ,possibility|,impossible|,$translate| +ܷϳ ADJ aValue|ֵ,possibility|,impossible|,$remove| +ֽܷ ADJ aValue|ֵ,possibility|,impossible|,$dismount|ж +ܸ ADJ aValue|ֵ,possibility|,impossible|,$destroy| +ܻ ADJ aValue|ֵ,possibility|,impossible|,$weaken| +ܻ ADJ aValue|ֵ,possibility|,impossible|,$mix| +ܽ ADJ aValue|ֵ,possibility|,impossible|,$rescue| +ܽ ADJ aValue|ֵ,possibility|,impossible|,$handle| +ܿ ADJ aValue|ֵ,possibility|,impossible|,$control| + ADJ aValue|ֵ,possibility|,impossible|,$understand| + ADJ aValue|ֵ,possibility|,impossible|,$distinguish|ֱ +ȡ ADJ aValue|ֵ,possibility|,impossible|,$remove| +ܽ ADJ aValue|ֵ,possibility|,impossible|,StateChange|̬ + V TolerateNot| + ADJ aValue|ֵ,possibility|,impossible|,$perform| + ADJ aValue|ֵ,possibility|,impossible|,alive| +ʵ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +ʵ ADJ aValue|ֵ,possibility|,impossible|,$conduct|ʵʩ +Ӧ ADJ aValue|ֵ,possibility|,impossible|,$fit|ʺ +˵ ADJ aValue|ֵ,possibility|,impossible|,$persuade|Ȱ˵ +˵ ADJ aValue|ֵ,possibility|,impossible|,speak|˵ +ӱ ADJ aValue|ֵ,possibility|,impossible|,$escape| + ADJ aValue|ֵ,possibility|,impossible|,$replace| +ͨ ADJ aValue|ֵ,possibility|,impossible|,$cross|Խ +ͿĨ ADJ aValue|ֵ,possibility|,impossible|,$apply|ͿĨ +ѹ ADJ aValue|ֵ,possibility|,impossible|,$shrink|С +ȥ ADJ aValue|ֵ,possibility|,impossible|,$remove| + ADJ aValue|ֵ,possibility|,impossible|,$quote| +Ӧ ADJ aValue|ֵ,possibility|,impossible|,$use| + ADJ aValue|ֵ,possibility|,impossible|,$agree|ͬ +֤ʵ ADJ aValue|ֵ,possibility|,impossible|,$prove|֤ +ת ADJ aValue|ֵ,possibility|,impossible|,$sell| +԰ V BeUnable|,content=disconnect| +Լ V BeUnable|,content=control|,#self| +ɶ V forgive|ԭ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +Ŭ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ƫ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƽ ADJ aValue|ֵ,form|״,rugged|,undesired|ݬ +ƽ V unsatisfied| +ƽ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƽȴ N fact|,treat|Դ,biased|ƫ,undesired|ݬ +ƽԼ N agreement|Լ,biased|ƫ,undesired|ݬ +ƽ V differ|ͬ +ƽ V protest|,content=unfortunate| +ڶ V meet| + STRU {^Vable|} + ADJ aValue|ֵ,ability|,unable|ӹ,attract| + V ^function| + ADJ aValue|ֵ,effect|Ч,useless| + ADV aValue|ֵ,time|ʱ,improper| +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +岻 ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +岻 ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ȷ V unfixed|δ +ȷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ȼ ADJ aValue|ֵ,content|,wrong| +Ȼ ADV {neg|} +Ȼ CONJ {transition|ת} +ȻĻ CONJ {transition|ת} +ȼ ADJ aValue|ֵ,possibility|,impossible|,$burn| +ò N human|,*refuse|,#surrender| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʲ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +˵ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V EndureNot| + V refuse|,content=admit| + ADV aValue|ֵ,duration|,TimeShort|,future| + V disagree|ͬ +ݱ V disagree|ͬ,ResultEvent=refute| +ݵ V disagree|ͬ,ResultEvent=delay| + ADJ aValue|ֵ,trueness|α,true|,desired| + V inferior| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V BeUnable| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V BeUnable| + ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many| + V grudge| + ADJ aValue|ֵ,property|,^$defend|,military| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + V ignorant|֪ +Ҫ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,quiet| +ʡ V dizzy| +ʤ V WithstandNot|ס +ʤ ADV aValue|ֵ,degree|̶,very| +ʤ ADJ aValue|ֵ,easiness|,difficult| +ʤö ADJ qValue|ֵ,amount|,many| +ʤ V joyful|ϲ +ʧʱ V obtain|õ,possession=time|ʱ +ʧΪ V be| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ֮ N time|ʱ,@need| +ʶ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ʶʱ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + V be|,neg| + N result|,wrong|,undesired|ݬ + ADV {neg|} +DZ˶ ADJ aValue|ֵ,kind|,other| +ζ V FeelingByBad| +ζ ADJ aValue|ֵ,standard|׼,wrong|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ζ V FeelingByBad| +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V ill|̬ +ʵ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ӧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ھס ADJ aValue|ֵ,ability|,unable|ӹ,@reside|ס +ܷ ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ +ܸ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ܻӭ ADJ aValue|ֵ,possibility|,impossible|,$welcome|ӭ,undesired|ݬ +ܻӭ N human|,^$welcome|ӭ,diplomatic|⽻,undesired|ݬ +ܽԼ ADJ aValue|ֵ,possibility|,impossible|,$prohibit|ֹ +ܿ ADJ aValue|ֵ,possibility|,impossible|,$control| + V reject|ؾ + ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ + ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ +Ӱ ADJ aValue|ֵ,possibility|,impossible|,$restrain|ֹ +Լ ADJ aValue|ֵ,behavior|ֹ,free| +֧ ADJ aValue|ֵ,ability|,unable|ӹ,$endorse|ӵ +֧ ADJ aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,ability|,unable|ӹ,$PayAttention|ע +ע ADJ aValue|ֵ,ability|,unable|ӹ,$PayAttention|ע + ADJ aValue|ֵ,ability|,unable|ӹ,$help|,#wealth|Ǯ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,industrial| +ˬ V ill|̬ +ˬ V upset| +˳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +˵ V KeepSilence|˵ + V unwilling|Ը +֮ N human|,*visit|,^$expect|,undesired|ݬ +⼡ N part|,%AnimalHuman|,flesh| +鲣 N material|,strong|ǿ,?tool|þ + V fail|ʧ + ADJ aValue|ֵ,property|,^$shrink|С +ˮ ADJ aValue|ֵ,property|,^$shrink|С + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ͣ ADJ aValue|ֵ,behavior|ֹ,continuous| +ͬ ADJ aValue|ֵ,similarity|ͬ,different| +ͬ ADJ aValue|ֵ,kind|,special| +ͬ V disagree|ͬ +ͬ V differ|ͬ +ʹ ADJ aValue|ֵ,content|,NotProfound|dz +͸ ADJ aValue|ֵ,clearness|,blurred| +͸ ADJ aValue|ֵ,ability|,withstand|ס,#leak|©,#gas| +͸ ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ +͸ˮ ADJ aValue|ֵ,ability|,withstand|ס,#leak|©,#liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADV aValue|ֵ,range|,nonextensive| + ADV aValue|ֵ,range|,nonextensive| + ADJ aValue|ֵ,form|״,straight|ֱ +ȫͳ N result|,#calculate| +ȫҶ N part|,%plant|ֲ,hair|ë + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Υũʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired|,agricultural|ũ +Ϊ֪ ADJ aValue|ֵ,behavior|ֹ,hidden| +Ϊ ADJ aValue|ֵ,possibility|,impossible|,$influence|Ӱ +Ϊ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +η ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ů ADJ aValue|ֵ,temperature|¶,chilly| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ų V despise| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ȶ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V despise| +ǰ V despise|,target=cause|ԭ + V despise|,target=correctness| +Ƿֱ V despise|,target=correctness| +޵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ҵ V ^endeavour|,content=duty| +ҵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϣ ADJ aValue|ֵ,behavior|ֹ,continuous| +ϧ V GrudgeNot| +ϧ V willing|Ը +ϰ ADJ BeUnable|,content=fit|ʺ +Ͼ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADV aValue|ֵ,range|,extensive| + V equal| +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,free| + V RelateNot|޹ + ADJ RelateNot|޹ + ADJ RelateNot|޹ + V equal| +Ӧ V aValue|ֵ,possibility|,impossible|,$fit|ʺ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V ignorant|֪ +꾡 ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V differ|ͬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADV aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,possibility|,impossible|,$consume|ȡ +Т ADJ aValue|ֵ,behavior|ֹ,treacherous| +Ф ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Э ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +г ADJ aValue|ֵ,SoundQuality|,disorder|,undesired|ݬ +и ADJ aValue|ֵ,will|־,strong|ǿ,desired| +й ADJ aValue|ֵ,courage|,brave|,desired| +м V despise| +мһ V despise| + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V die| + V aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,continuous| +ޱ߷ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeLong|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N metal|,material| +Ҫ ADJ aValue|ֵ,necessity|Ҫ,redundant| + V prohibit|ֹ +ѧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ѷ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ź ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Զ ADJ aValue|ֵ,content|,opened| + V ^disgust| +䷳ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ҫ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ҫ ADJ aValue|ֵ,importance|,secondary| +Ҫ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +һ V differ|ͬ +һ V unfixed|δ +һ ADJ qValue|ֵ,amount|,many| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADJ aValue|ֵ,similarity|ͬ,FitNot| +һ ADJ aValue|ֵ,similarity|ͬ,different| +һ N attribute|,similarity|ͬ,FitNot|,&content| + V TolerateNot| + V ^obey|ѭ + V TolerateNot| + V endeavour| + ADJ aValue|ֵ,circumstances|,improper|,undesired|ݬ +˸ӡ ADJ aValue|ֵ,possibility|,impossible|,$print|ӡˢ +˾ס ADJ aValue|ֵ,possibility|,impossible|,@reside|ס +˵ ADJ aValue|ֵ,possibility|,impossible|,$speak|˵ + ADV aValue|ֵ,behavior|ֹ,continuous| +ΪȻ V oppose| + ADJ aValue|ֵ,easiness|,difficult| +׸ж ADJ aValue|ֵ,possibility|,impossible|,$excite|ж +֮ N thinking|˼,correct|ȷ +ֺ ADV aValue|ֵ,degree|̶,extreme| +֮ N wealth|Ǯ,#crime|,undesired|ݬ + V WellKnown|,manner=fast| + V disappear|ʧ +ɵ AUX aValue|ֵ,possibility|,possible| +ɷ˵ V reject|ؾ,content=refute| + ADJ aValue|ֵ,ability|,unable|ӹ,control| +Ѻ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden| + N phenomena|,unfortunate|,undesired|ݬ + V refuse| + ADJ aValue|ֵ,possibility|,impossible|,$admit| +Զǧ V SelfMoveInManner|ʽ +Ը V unwilling|Ը +Ը V unwilling|Ը +Լͬ V BeSame|ͬ + ADJ aValue|ֵ,possibility|,impossible|,$agree|ͬ + N disease|,^pregnant| + ADV {neg|} +ڷֳ V aValue|ֵ,behavior|ֹ,^crime|,#police| +ں V despise| +ڻ ADJ aValue|ֵ,easiness|,easy| + V die| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V despise| +޳ V disagree|ͬ +ͬ V disagree|ͬ +һ V KeepSilence|˵ +ֶ ADV aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ֶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ֶ ADV aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ô ADV aValue|ֵ,degree|̶,insufficiently|Ƿ +ô ADJ aValue|ֵ,standard|׼,average|,desired| + ADV {neg|} +ս N phenomena|,^fight| +սʤ V win|ʤ,means=^fight| +۲ ADJ aValue|ֵ,content|,accurate|׼ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V fail|ʧ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֮ N attribute|,SocialMode|,bad|,&organization|֯ +ֱ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +֪ V ignorant|֪ +֪ ADV aValue|ֵ,ability|,unable|ӹ,perception|֪ +֪ô V ignorant|֪,content=ProsCons| +֪ ADJ aValue|ֵ,reputation|,Notwellknown| +֪ƣ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +֪ V ignorant|֪ +֪ V ignorant|֪ +֪ V ignorant|֪ +֪߳ ADJ shameless|û +ֵ V WorthNot|ֵ +ֵĽ ADJ aValue|ֵ,ability|,unable|ӹ,$admire|Ľ +ֵһ V WorthNot|ֵ,content=refute| +ֵһ V WorthNot|ֵ,content=mention|ἰ +ֵһ ADJ aValue|ֵ,value|ֵ,cheap|,undesired|ݬ +ֹ ADV aValue|ֵ,frequency|Ƶ,often| +ֹ V surpass|ǿ +ֹһ ADV aValue|ֵ,frequency|Ƶ,again| +ֻ ADV {supplement|ݽ} + ADV aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,possibility|,impossible| + ADJ aValue|ֵ,ability|,unable|ӹ,kill|ɱ + ADJ aValue|ֵ,possibility|,impossible| +ÿɷ V KeepSilence|˵ + V ^cure|ҽ + V die| +֢֮ N disease|,dangerous|Σ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V disloyal| +ҳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ʵ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ע ADJ aValue|ֵ,behavior|ֹ,indifferent|Į +׼ V disagree|ͬ,content=release|ͷ +ű߼ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V BeUnable| + V WorthNot|ֵ + N attribute|,fullness|,incomplete|ȱ,&entity|ʵ + V inferior| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +ҳ ADJ aValue|ֵ,value|ֵ,cheap|,undesired|ݬ +ȡ ADJ aValue|ֵ,property|,WorthNot|ֵ,undesired|ݬ +Ϊ ADJ aValue|ֵ,kind|,ordinary| +Ϊƾ ADJ aValue|ֵ,ability|,unable|ӹ,prove|֤ +Ϊ ADJ aValue|ֵ,kind|,ordinary| + ADJ qValue|ֵ,amount|,few| + V DoNot| + V KeepSilence|˵ + V BeSimilar| +˽ V refuse|,manner=biased|ƫ + V ^disappoint|,target=aspiration|Ը + V disappoint|,neg|,target=aspiration|Ը + ADJ aValue|ֵ,behavior|ֹ,continuous| +ֶ V WellKnown|,manner=fast| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ݬ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V announce| + V arrange| + V arrange|,military| + V disseminate| + N material|,?clothing| + N material|,?clothing| + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N house|,religion|ڽ,ProperName|ר +˹ N place|ط,capital|,ProperName|ר,(Hungary|) + N tool|þ,cubic|,@put| + N InstitutePlace|,*sell|,@buy|,#material|,#clothing| + N food|ʳƷ + V arrange|,patient=army|,purpose=defend|,military| + N text|,*announce| + N facilities|ʩ,@put|,#text|,#announce| + N bird| +˹ N place|ط,capital|,ProperName|ר,(Romania|) + N tool|þ,*decorate|װ,#perform|,#shows|,entertainment| + N part|,%thing|,bone| + N result|,#arrange| +ά N place|ط,capital|,ProperName|ר,(Congo|չ) + N place|ط,capital|,ProperName|ר,(Czechoslovakia|ݿ) +ͧ N weapon|,ship|,military| + N place|ط,capital|,ProperName|ר,(Barbados|ͰͶ˹) + N material|,?clothing| + N language|,#country|,ProperName|ר +¡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Burundi|¡) +¡ N place|ط,country|,ProperName|ר,(Africa|) +¡Ϸ N money|,(Burundi|¡) +³ N place|ط,capital|,ProperName|ר,(Belgium|ʱ) + V exist| + ADJ qValue|ֵ,amount|,many| + N part|,%artifact|˹,skin|Ƥ +ƥ N material|,?clothing|,generic|ͳ + N place|ط,capital|,ProperName|ר,(Burundi|¡) + V arrange| +ʩ V donate| +ʲ N human|,official|,politics|,ProperName|ר,(US|) + V arrange| +ͷ N part|,material|,#clothing| +ֽ N paper|ֽ,*TakePicture| + V arrange|,patient=facilities|ʩ,linear|,#electricity| +Ь N clothing|,#foot| + N community|,ProperName|ר,(China|й) + N clothing| + N human|,ordinary| +ŵ˹˹ N place|ط,capital|,ProperName|ר,(Argentina|͢) +չ V arrange|,patient=display|չʾ + V arrange| + V decorate|װ +ׯ N InstitutePlace|,*sell|,@buy|,#material|,#clothing| + N attribute|,circumstances|,&entity|ʵ + N attribute|,distance|,&walk| + N attribute|,posture|,&AnimalHuman|,#walk| + N attribute|,speed|ٶ,&walk| + N character|,surname|,human|,ProperName|ר + N part|,%fact|,#act|ж + V walk| + N human|,military|,#land|½ + N part|,%army|,#land|½ + ADJ aValue|ֵ,sequence|,continuous| + V undergo|,content=upgrade|,manner=continuous| + V GoForward|ǰ,manner=continuous| +ΪӪ V GoForward|ǰ,manner=continuous| + N attribute|,distance|,&walk| + V GoOut|ȥ + N attribute|,speed|ٶ,&walk| +һ V coordinate|Э + N attribute|,speed|ٶ,&walk| + N method|,*exercise|,*recreation| + N attribute|,distance|,&walk| + N tool|þ,*communicate| + N tool|þ,agricultural|ũ + N walk| +ļ ADJ aValue|ֵ,easiness|,difficult|,#walk| +ά ADJ aValue|ֵ,easiness|,difficult|,#walk| +ǹ N weapon|,*firing| +˺ V imitate|ģ + V GoInto| + N human|,military|,*defend| + V walk| +н N facilities|ʩ,route|·,@walk| + N human|,*walk| + V recite|ж + N method| + N part|,%fact|,#act|ж + N attribute|,distance|,&walk| + N attribute|,posture|,&AnimalHuman|,#walk| + N attribute|,speed|ٶ,&walk| + N account|,@record|¼ + N account|,@record|¼ + N account|,@record|¼ + N fact|,record|¼ + N account|,@record|¼ + CLAS NounUnit|,&LandVehicle|,&machine|,&publications|鿯 + N army|,generic|ͳ + N part|,%entity|ʵ + N part|,%institution|,*manage| + N human|,#occupation|ְλ,official|,*manage| + N institution|,politics| + N attribute|,rank|ȼ,&human|,politics| + N fact|,discuss|,politics| + N human|,#occupation|ְλ,official|,*manage| + N army|,generic|ͳ + ADJ aValue|ֵ,range|,fragment| + N component|,%entity|ʵ + N attribute|,rank|ȼ,&human|,politics| + N part|,%thing|,generic|ͳ + V CausePartMove| + V PartSelfMove| + N attribute|,kind|,&physical| + N community| + N part|,%institution|,*manage| + N part|,%character| + V arrange| + ADJ aValue|ֵ,attachment| + N human|,employee|Ա,$manage| + N part|,%army| +ͷ N attribute|,size|ߴ,&publications|鿯 +ί N part|,%institution|,*manage| +λ N location|λ + N human|,employee|Ա,$manage| + N part|,%army| + ADJ attribute|,quality|,refined|,desired| + N community| + V fear| + V apply|ͿĨ + V remove| + V rub|Ħ + V split|ƿ + V touch| + V wipe| + N phenomena|,sport| + V remove|,Vachieve| +ڶ N time|ʱ,night| + V cross|Խ + V brighten|ʹ +۾ V improve|,patient=PayAttention|ע +۾ V wash|ϴ,patient=eye| +ȥ V remove|,Vachieve| + V damage| + V wounded| + V wipe| + N phenomena|,sport| +ϴ V wipe| + N sound|,#language| + V wash|ϴ,patient=body| + V guess|² +² V guess|² +µ V guess|²,Vachieve| +¶ V guess|² +¼ V doubt| + V guess|²,purpose=recreation| +ն V guess|²,purpose=recreation| + V guess|² + V doubt| + V guess|²,Vachieve| + V guess|²,Vachieve| + V break|۶ + V judge|ö + V punish| + V subtract| +ò V subtract| +ó V remove| +ó V break|۶ +ô V arrange| +ö V judge|ö +ö V judge|ö +ö V judge|ö +÷ N human|,#occupation|ְλ,*produce|,#clothing| +÷ N InstitutePlace|,*produce|,#clothing|,commercial| +ü V break|۶ +ü V subtract| +þ V judge|ö +þ V subtract|,patient=army|,military| + N human|,#occupation|ְλ,#exercise|,*judge|ö,sport| + V judge|ö,sport| + N result|,#judge|ö,sport| +Ա N human|,#occupation|ְλ,#exercise|,*judge|ö,sport| +Ա V subtract|,patient=employee|Ա +ֽ N tool|þ,*break|۶,#paper|ֽ +ֽ N tool|þ,*break|۶,#paper|ֽ + N attribute|,ability|,&human| + N human|,able|,desired| + N material|,generic|ͳ + N material|,wood|ľ + N attribute|,quality|,&human| + N information|Ϣ + N material|,generic|ͳ + N attribute|,quality|,&material| + ADV aValue|ֵ,time|ʱ,past| + N attribute|,ability|,&human| + CONJ condition| + N human|,able|,desired| + ADV {EventResult|¼} + ADV {tense|ʱ̬,past|} +Ÿ N attribute|,ability|,&human| +Ż N attribute|,ability|,&human| +Ż ADJ aValue|ֵ,ability|,able|,desired| +ò N attribute|,ability|,prettiness|,&human| + V BeAble|ܹ + AUX BeAble|ܹ + N attribute|,ability|,&human| +Ů N human|,able|,female|Ů,desired| + N attribute|,ability|,&human| + ADJ aValue|ֵ,ability|,able|,desired| +ʶ N attribute|,ability|,&human| +ѧdz ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +˼ N attribute|,ability|,&human| +˼ N aValue|ֵ,ability|,able|,desired| +ѧ N attribute|,ability|,&human| + N attribute|,ability|,wisdom|ǻ,&human| + N human|,able|,male|,desired| +Ӽ N human|,desired| + N wealth|Ǯ +Ʊ N wealth|Ǯ +Ʋ N wealth|Ǯ +Ʋ N physical|,$own| +ƲȨ N rights|Ȩ,*own|,#wealth|Ǯ +Ʋ˰ N expenditure|,#wealth|Ǯ +ƴ ADJ aValue|ֵ,bearing|̬,strong|ǿ,#wealth|Ǯ +ƶ N human|,#wealth|Ǯ,rich| +Ʒ N human|,#wealth|Ǯ,rich| +Ƹ N physical|,precious| +ƻ N affairs|,#wealth|Ǯ,commercial| +ƻԱ N human|,*calculate|,#wealth|Ǯ,commercial| +ƾ N affairs|,#wealth|Ǯ,commercial| + N tool|þ,$GiveAsGift|,#GetMarried| + N attribute|,strength|,wealth|Ǯ,&organization|֯,&country|,&human| +· N method|,*earn|׬ +ó N affairs|,#wealth|Ǯ,commercial| + N human|,#wealth|Ǯ,greedy|̰ +Ȩ N rights|Ȩ,*own|,#wealth|Ǯ + N humanized|,#wealth|Ǯ +ү N humanized|,#wealth|Ǯ,desired| +˰ N affairs|,#wealth|Ǯ,#expenditure|,industrial|,agricultural|ũ,commercial| + N community|,commercial| +ŷ N community|,commercial| + N physical|,$own| + N affairs|,#wealth|Ǯ,commercial| + N part|,%organization|֯,#wealth|Ǯ + N part|,%organization|֯,#wealth|Ǯ +Դ N attribute|,strength|,&wealth|Ǯ + N affairs|,#wealth|Ǯ + N institution|,#wealth|Ǯ,ProperName|ר,politics| + N human|,#occupation|ְλ,official|,*manage|,#wealth|Ǯ + N wealth|Ǯ,$InDebt| + N time|ʱ,year|,commercial| + N institution|,#wealth|Ǯ,ProperName|ר,politics| + N human|,rich| + V PayAttention|ע + V kick|߲ +ˮ V exercise| + N attribute|,color|ɫ,&physical| + V choose|ѡ + V gather|ɼ + V gather|ɼ,means=dig|ھ,mine| +ɰ V buy|,commercial| +ɱ V compile|༭,means=investigate| +ɷ V gather|ɼ,means=break|۶,agricultural|ũ +ɷ V investigate|,#news| +ɷ V gather|ɼ,possession=music| +ɹ V buy|,commercial| +ɹԱ N human|,#occupation|ְλ,*buy|,employee|Ա,commercial| +ɹվ N InstitutePlace|,*buy|,commercial| +ɹ V take|ȡ,possession=lights| +ɼ V gather|ɼ +ɾ V gather|ɼ,means=dig|ھ,mine| +ɿ V gather|ɼ,means=dig|ھ,mine| +¼ V gather|ɼ + V buy|,commercial| +Ա N human|,#occupation|ְλ,*buy|,employee|Ա,commercial| +ú N affairs|,gather|ɼ,&stone|ʯ,mine| + V receive| + N human|,*receive| +ů N provide|,possession=warm| +ȡ V use| +ɰ N affairs|,gather|ɼ,&stone|ʯ,mine| +ʯ N affairs|,gather|ɼ,&stone|ʯ,mine| +ʯ N facilities|ʩ,*gather|ɼ,&stone|ʯ,mine| +ʯ N human|,#occupation|ְλ,*gather|ɼ,stone|ʯ,industrial| + V gather|ɼ,means=dig|ھ,mine| +д V compile|༭,means=investigate| + V check| + V use| + V gather|ɼ,possession=material|,mine| + V choose|ѡ +ժ V gather|ɼ + V produce| + V gather|ɼ,possession=embryo|,agricultural|ũ +ߢ V gather|ɼ + N attribute|,color|ɫ,&physical| + N attribute|,kind|,&entity|ʵ + N material|,?clothing| + N part|,%human|,liquid|Һ + N tool|þ,*reward|,desired| +ʳ N LandVehicle| +ʳ N LandVehicle|,#GetMarried| +ʳ N material|,?clothing| +ʴ N tool|þ,colored| +ʵ N tool|þ,*illuminate|,colored| +ʵ N tool|þ,*look|,#image|ͼ,#shows|,colored| +ʵ N shows| +ʹ N part|,%tool|þ,*display|չʾ,#colored|,#image|ͼ,#sound| +ʺ N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +ʺ N CloudMist| +ʻ N image|ͼ,#colored|,#publications|鿯 +ʾ N tool|þ,*TakePicture|,colored| + N tool|þ,$GiveAsGift|,#GetMarried| + N tool|þ,colored| + V drill|ϰ,entertainment| + N house| +Ʊ N coupon|Ʊ֤,*gamble|IJ + N mark|־,colored| + N tool|þ,*decorate|װ +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫӻ N tool|þ,*look|,#display|չʾ,#image|ͼ,#shows|,colored| +ɫ N tool|þ,*TakePicture|,colored| +ɫƬ N shows|,colored| + N tool|þ,colored| + N material|,?tool|þ +ϼ N CloudMist| +ӡ N print|ӡˢ,manner=colored| + N material|,?tool|þ + N CloudMist|,colored| + N image|ͼ,$TakePicture|,colored| + N food|ʳƷ,$cook|,generic|ͳ + N vegetable|߲,generic|ͳ +˰ N part|,%vegetable|߲,hair|ë +˳ N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| +˵ N account|,@record|¼,#food|ʳƷ +˵ N tool|þ,*cut|,#food|ʳƷ,#cook| +˵ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +˶ N part|,%vegetable|߲,embryo|,$eat| +˶ N vegetable|߲ +˹ N part|,%vegetable|߲,embryo|,$eat| +˹ N vegetable|߲ +˹ N InstitutePlace|,@eat|,commercial| +˻ N part|,%vegetable|߲,embryo|,$eat| +˻ N vegetable|߲ + N tool|þ,cubic|,@put|,#edible|ʳ + N fact|,provide|,#edible|ʳ + N tool|þ,cubic|,@put|,#edible|ʳ + N food|ʳƷ,$cook| +ţ N livestock|,?food|ʳƷ +ũ N human|,#occupation|ְλ,*planting|ֲ,#vegetable|߲,agricultural|ũ + N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ + N account|,@record|¼,#food|ʳƷ + N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| +г N InstitutePlace|,*sell|,@buy|,#food|ʳƷ,commercial| + N food|ʳƷ + N vegetable|߲,generic|ͳ +̯ N InstitutePlace|,@sell|,#vegetable|߲,commercial| + N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +ϵ N attribute|,kind|,&edible|ʳ +Ҷ N part|,%vegetable|߲,hair|ë + N material|,#food|ʳƷ,#cook| +԰ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ +԰ N land|½,@planting|ֲ,#vegetable|߲,agricultural|ũ + N part|,%vegetable|߲,embryo|,agricultural|ũ + N material|,#food|ʳƷ,#cook| + N food|ʳƷ + N character|,surname|,human|,ProperName|ר + V eat| + N edible|ʳ + N fact|,eat| +ͳ N LandVehicle|,@eat| +͹ N InstitutePlace|,@eat|,commercial| +ͻ N fact|,eat|,recreation| +ͽ N tool|þ,*wipe|,#eat| +ͽֽ N tool|þ,*wipe|,#eat| +; N tool|þ,*eat|,generic|ͳ + N room|,@eat| + N InstitutePlace|,@eat|,commercial| + N room|,@eat| +Ա N human|,#occupation|ְλ,*manage|,commercial| + N fact|,eat|,drink|,recreation| + N furniture|Ҿ,@eat| + N FlowerGrass|,?medicine|ҩ + V engage| + V include| +ΰ V salute|¾ +ΰ NUM qValue|ֵ,amount|,half| +β ADJ aValue|ֵ,similarity|ͬ,different| +β ADJ aValue|ֵ,similarity|ͬ,different| +η V LeaveFor|ǰ,purpose=visit|,diplomatic|⽻ +ι V buy|,commercial| +ι V look| +ι N community|,*tour|,*look| +ι N human|,*look| +μ V engage| +μ V include| +μӱ V include|,ResultWhole=compete|,sport| +μ V read| +μ V salute|¾,politics| +ξ V include|,ResultWhole=army|,military| +ο V read| +ο V read| +ο N publications|鿯 +οĿ N document|,#publications|鿯 +ο N information|Ϣ +ο N information|Ϣ +ı V help|,scope=think|˼ +ı N human|,#occupation|ְλ,official|,military| +ı N human|,*help|,#think|˼ +ı N institution|,*help|,#think|˼,military| +ı N human|,#occupation|ְλ,official|,military| + V include|,ResultWhole=compete|,sport| +ѡ N human|,*include|,#compete|,sport| + N human|,*include|,#compete|,sport| + N human|,#occupation|ְλ,official|,politics| + N attribute|,standard|׼,&entity|ʵ + ADJ aValue|ֵ,height|߶,tall| +ѡ V include|,ResultWhole=select|ѡ + V include|,ResultWhole=perform|,entertainment| +Ա N human|,#occupation|ְλ,official|,politics|,(US|) +Ժ N institution|,*manage|,law|ɷ,politics| + V engage| + N human|,*include| +Ԥ V engage| + V read| + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +չ V include|,ResultWhole=display|չʾ +ս V include|,ResultWhole=fight|,military| +ս N organization|֯,*fight|,country|,politics|,#military| + V read| + V include|,ResultWhole=politics|,politics| + V think|˼ + V salute|¾ + V think|˼,religion|ڽ + N InsectWorm|,agricultural|ũ +ϱ N InsectWorm|,agricultural|ũ +ϲ N tool|þ,@foster|,InsectWorm|,agricultural|ũ +ϴ N tool|þ,@foster|,InsectWorm|,agricultural|ũ +϶ N part|,%vegetable|߲,embryo|,$eat| +϶ N vegetable|߲ +϶ N InsectWorm| +ϼ N house|,InsectWorm| +ũ N human|,#occupation|ְλ,*foster|,#InsectWorm|,agricultural|ũ +ɣ N part|,%tree|,embryo| +ʳ V occupy|ռ,politics| +ʳ V occupy|ռ,politics| +˿ N material|,?clothing| + N InsectWorm| + N part|,%InsectWorm|,embryo| + N part|,%InsectWorm|,embryo| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V damage| + ADJ qValue|ֵ,amount|,surplus|ʣ +б ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +бܽ N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +в N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +д V alive|,manner=surplus|ʣ +з N human|,*disable|м,undesired|ݬ +зϾ N human|,*disable|м,military|,undesired|ݬ +иʣ N edible|ʳ,*surplus|ʣ +к N physical|,*surplus|ʣ +к V damage| +к V kill|ɱ,manner=fierce| +л N human|,female|Ů,ugly|,undesired|ݬ +л N artifact|˹,bad|,undesired|ݬ,generic|ͳ +м N disease| +м N human|,*disable|м,undesired|ݬ +о N attribute|,circumstances|,ending|ĩ,&organization|֯ +о N part|,%compete|,ending|ĩ,sport| +п ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V exist|,manner=surplus|ʣ + N time|ʱ,#aged| + N time|ʱ,ending|ĩ,year| +Ʒ N artifact|˹,bad|,undesired|ݬ,generic|ͳ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ȱȫ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N celestial|,*GoDown|ȥ +ɱ V kill|ɱ,manner=fierce| + N time|ʱ,#aged| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N celestial|,*GoDown|ȥ + N part|,%physical|,*surplus|ʣ +ಿ N part|,%army|,*surplus|ʣ,*defeated|,military|,undesired|ݬ +ԫϱ N part|,%building|,incomplete|ȱ,desolate| + N celestial|,*GoDown|ȥ + N part|,%physical|,*surplus|ʣ + N human|,undesired|ݬ + N lights|,#celestial| + V shy| + V shy| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| +Ұ N fact|,#kill|ɱ,#crime|,undesired|ݬ +Ұ ADJ aValue|ֵ,color|ɫ,white|,undesired|ݬ +Ұ V defeated|,manner=miserable| +Ҳ̶ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ҵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ҵ ADJ aValue|ֵ,brightness|,dark| +ҵӪ V endeavour| +һ N phenomena|,#die|,#unfortunate|,undesired|ݬ +Ҿ N phenomena|,unfortunate|,undesired|ݬ +Ҿ N phenomena|,#die|,#unfortunate|,undesired|ݬ +Ҿ N phenomena|,die|,#unfortunate|,undesired|ݬ +Ҿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,courage|,brave|,desired| +Ȼ V sorrowful| +ɱ V kill|ɱ,manner=fierce| + V die|,manner=miserable| +ʹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V sorrowful| +˵ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ц V laugh|Ц,manner=weak| + V suffer| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +״ N attribute|,occasion|,miserable|,&physical| + ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ȼ ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,color|ɫ,BlueGreen|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,white| + N character|,surname|,human|,ProperName|ר +԰ ADJ aValue|ֵ,color|ɫ,white| +԰ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Բ ADJ aValue|ֵ,color|ɫ,BlueGreen|,NotLight|Ũ +Բ ADJ aValue|ֵ,color|ɫ,grey| +Դ ADJ aValue|ֵ,color|ɫ,green| +Ի ADJ aValue|ֵ,color|ɫ,yellow| +Ծ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ã ADJ aValue|ֵ,area|,wide| +ã ADJ aValue|ֵ,brightness|,dark| +ç ADJ aValue|ֵ,area|,wide| +ɽ N land|½,#tree| + N human|,mass|,ordinary| + N FlowerGrass| + N sky| +ӥ N bird| +Ӭ N InsectWorm|,undesired|ݬ +Ӭ N tool|þ,*beat|,InsectWorm| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N bird| + N sky| + N part|,%aircraft|,room| + N part|,%ship|,%aircraft|,room| + N part|,%ship|,%aircraft|,mouth| + N part|,%ship|,%aircraft|,room| +λ N location|λ,#ship| +λ N location|λ,%vehicle|ͨ,@sit|,@LieDown| + N facilities|ʩ,space|ռ,@store| +ִ V store| +ִ ADJ aValue|ֵ,behavior|ֹ,hasty| +ַ N facilities|ʩ,space|ռ,@store| +ֻ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +ֿ N facilities|ʩ,space|ռ,@store| +ֿⱣԱ N human|,#occupation|ְλ,*manage|,facilities|ʩ,#store| + N beast| + N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ +׺ N waters|ˮ,surfacial| +׺ɣ V change| +׺һ N physical|,negligible| +ɣ V change| + N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,space|ռ,@store| + V hide| + N human|,mass|,ProperName|ר,(Tibet|) + N place|ط,ProperName|ר,(Tibet|) + V store| +ذ N human|,mass|,ProperName|ר,(Tibet|) +ر N place|ط,ProperName|ר,(Tibet|) +ع V hide|,patient=crime| + ADJ aValue|ֵ,color|ɫ,blue| + N tool|þ,*show|,#time|ʱ,(Tibet|) +Ի V exist|,experiencer=human|,able| +è V recreation| + N human|,ProperName|ר,(Tibet|) + V hide| +Ʒ N artifact|˹,$store|,literature| + ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ + V hide|,patient=self| + N readings|,$store|,literature| + V store|,patient=readings|,literature| +ͷ¶β V exposure|¶ + N language|,(Tibet|) +ҩ N medicine|ҩ,(Tibet|) +Ҵ V hide| +ҽ N human|,*cure|ҽ,medical|ҽ,(Tibet|) + N language|,(Tibet|) + N human|,mass|,(Tibet|) +ͬ N human|,(Tibet|) + V CauseToLive|ʹ + V drill|ϰ + V hold| + V speak|˵ +ٰ V handle| +ٳ N facilities|ʩ,space|ռ,@exercise|,@drill|ϰ,military| +ٳ N facilities|ʩ,space|ռ,@exercise|,@recreation|,education| +ٳ V handle| +ٵ N publications|鿯,#drill|ϰ,military| + V endeavour| + V handle| + V drill|ϰ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʤȯ N BeAble|ܹ,content=win|ʤ +ʤ N BeAble|ܹ,content=win|ʤ + N attribute|,behavior|ֹ,&human| + V upset| + N attribute|,behavior|ֹ,&human| + V display|չʾ +֮ ADJ aValue|ֵ,behavior|ֹ,urgent|,undesired|ݬ + V control| +ݸ N part|,*control|,%implement| +г V control|,commercial| +̨ N part|,*control|,%implement| + N human|,*control|,#price|۸,commercial| + N human|,*control| + V control| + N attribute|,sequence|,&control| + N regulation|,*control| +ϵͳ N software|,*control|,#computer| + N attribute|,performance|,&implement| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + N material|,?food|ʳƷ,#crop|ׯ + N facilities|ʩ,#liquid|Һ,linear|,dented| + N shape|,linear|,dented| +۸ N metal|,material| + N part|,%AnimalHuman|,*bite|ҧ + N character|,surname|,human|,ProperName|ר + N FlowerGrass| + N FlowerGrass|,?material| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V write|д +ݰ N text| +ݰ N human|,unable|ӹ,undesired|ݬ +ݰ N tool|þ,cubic|,@put| +ݱ N attribute|,kind|,&FlowerGrass| +ݱ N text| +ݱֲ N attribute|,kind|,&FlowerGrass| +ݱ ADJ aValue|ֵ,property|,$weave| +ݲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ݲ V measure| +ݳ N land|½,#FlowerGrass| +ݴ V start|ʼ +ݴʱ V time|ʱ,@start|ʼ +ݴ N FlowerGrass| +ݵ N facilities|ʩ,space|ռ,#FlowerGrass| +ݵ N land|½,#FlowerGrass| +ݵ N tool|þ,@LieDown|,@sit| +ݵ N land|½,#FlowerGrass| +ݶ N FlowerGrass| +ݷ N house| +ݸ N text| +ݸ N part|,%FlowerGrass|,base| +ݹ N food|ʳƷ +ݺ N beast| +ݼ N tool|þ,@LieDown|,@sit| +ݿ N human|,*rob|,crime|,undesired|ݬ + N FlowerGrass| + N food|ʳƷ,*feed|ι,#animal| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,green| +ç N FlowerGrass| +ç N land|½,desolate| +çӢ N human|,*rob|,#rich|,*help|,#poor| +ñ N clothing|,#head|ͷ +ľ N plant|ֲ +ľ N material|,*feed|ι,#crop|ׯ +ľԱ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V write|д + N facilities|ʩ,space|ռ,@reside|ס,@put| +Ƥ N material|,?facilities|ʩ,#FlowerGrass| +ƺ N facilities|ʩ,space|ռ,#FlowerGrass| +ǩ V write|д +ʳ ADJ aValue|ֵ,performance|,*eat|,#FlowerGrass| + N attribute|,kind|,&character|,&symbol| + N chemical|ѧ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ͷ N human|,*rob|,#rich|,*help|,#poor| +ͼ N image|ͼ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ϯ N tool|þ,@LieDown|,@sit| +Ь N clothing|,#foot| +ҩ N medicine|ҩ + N fish| +ԭ N land|½,#FlowerGrass| +Լ N agreement|Լ,informal|ʽ + N human|,ordinary|,mass| + N land|½ +ֽ N paper|ֽ,*wipe|,#waste| +ֽ N paper|ֽ,@write|д +ݮ N fruit|ˮ + V IllTreat|,manner=fierce| + N room|,@excrete|й + V engage| + N room|,@excrete|й + N room|,@excrete|й + V engage| + V beat| + N plans|滮 + V plan|ƻ +߶ V incite|ָʹ +߷ V incite|ָʹ,ResultEvent=betray|,military| +߻ V plan|ƻ + ADJ aValue|ֵ,behavior|ֹ,sly| + N plans|滮 +Ե ADV aValue|ֵ,behavior|ֹ,sly| + ADJ aValue|ֵ,behavior|ֹ,sly| + V beat|,patient=livestock| +ʿ N human|,friend| +Ӧ V help|,means=cooperate|,military| +Դ N place|ط,@ExistAppear| + V CausePartMove| + N location|λ,edge| + N tree| + N part|,%plant|ֲ,base| + V attack|,military| + N text|,#news| + N part|,%building|,mouth|,edge| + N location|λ,edge| +ͼ N image|ͼ +ͼ N human|,*draw|,industrial| + N image|ͼ,#human| +Ŀ V look| + V CausePartMove|,PatientPartof=body| +ͼ N image|ͼ + N part|,%army| +ѿ N part|,%plant|ֲ,embryo| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + V PayAttention|ע +ص N part|,%entity|ʵ,important| + CLAS NounUnit|,&publications|鿯 + N account|,@record|¼ + V grant|,royal| +ҳ N account|,image|ͼ + N account|,@record|¼ + V measure| + N tool|þ,*measure|,#distance| + N tool|þ,*check|,#electricity| +ⶨ V decide| + V deduce| + N tool|þ,*check|,#deceive|ƭ + V draw| +Ա N human|,#occupation|ְλ,*draw|,industrial| + V measure|,content=distance| + V measure| + V measure| +Ա N human|,#occupation|ְλ,*measure| + V estimate| + N tool|þ,*measure|,#depth| + V check| + V measure| + V exam|,education| + N tool|þ,*measure|,#CloudMist| + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&mental|,&information|Ϣ + CLAS NounUnit|,&part|,#building| + N part|,%building| + N part|,%entity|ʵ + ADJ qValue|ֵ,amount|,many| +ѹ V check| +Χ V surround|Χ + ADJ qValue|ֵ,amount|,many| + V defend| + V defend|,military| + V appear|,frequency=often| + N attribute|,content|,&image|ͼ,#image|ͼ + N attribute|,content|,&information|Ϣ + N attribute|,content|,&organization|֯ + N attribute|,height|߶,&part|,#building| + N CloudMist| +㼶 N part|,%entity|ʵ,body| + V appear|,frequency=often| +͵ N land|½,tall| + N attribute|,range|,&entity|ʵ + N part|,%entity|ʵ,aspect| + N quantity|,amount|,&part|,#building| + N CloudMist| +״ ADJ aValue|ֵ,form|״ + V SelfMove|,manner=slow| + V cheat|ƭ + V rub|Ħ + V suffer|,content=pollute|ʹ + V suffer|,content=fail|ʧ + V insert| + V include|,ResultWhole=education|,education| + N human|,*include|,education| + N part|,%implement|,viscera| +岥 V disseminate| +ѷ ADJ aValue|ֵ,ability|,unable|ӹ,flee| + ADJ aValue|ֵ,ability|,unable|ӹ,flee| +崲 N machine|,*produce| + V include|,ResultWhole=organization|֯,agricultural|ũ +仧 V include|,ResultWhole=organization|֯,agricultural|ũ + V implement|,$insert|,medical|ҽ + V insert|,patient=implement|,medical|ҽ +ܷ V method|,*insert|,#implement|,medical|ҽ +廨 V arrange|,patient=FlowerGrass| +廨 V mix| +廭 N image|ͼ,#publications|鿯 +廰 V speak|˵ +廰 N text| +廰 N text|,$speak|˵ + N part|,%implement|,viscera| + V insert| +ƴڻ V tease|ȡ + N part|,%tool|þ,#connect| + N tool|þ,*decorate|װ,*cover|ڸ + N fact| + N music|,#shows| + V insert| + N part|,%language| + N human|,*insert| + V engage| + V insert| + V engage| + N part|,%plant|ֲ,limb|֫ +ͷ N part|,%tool|þ,#connect| +ͼ N image|ͼ,#publications|鿯 + N part|,%tool|þ,#connect| + N part|,%tool|þ,#fasten|˩ + V planting|ֲ,agricultural|ũ + V machine|,*planting|ֲ,agricultural|ũ +ҳ N part|,%publications|鿯 + V engage| + V speak|˵ + N part|,%tool|þ,#connect| + V BlockUp| + V pick|ʰ + N symbol| + N tool|þ,*pick|ʰ +泵 N LandVehicle|,*pick|ʰ + V cook| + V CausePartMove|,PatientPartof=arm| + N tool|þ,*pick|ʰ + CLAS NounUnit|,&physical| + N part|,%plant|ֲ,body| + N plant|ֲ + N crop|ׯ + N part|,%plant|ֲ,body| + N drinks|Ʒ + N drinks|Ʒ,generic|ͳ + N material|,?drinks|Ʒ + N InstitutePlace|,@drink|,commercial| +豭 CLAS NounUnit|,&drinks|Ʒ +豭 N tool|þ,cubic|,@put|,#drinks|Ʒ +賡 N InstitutePlace|,@planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ + N tool|þ,*hold|,#drinks|Ʒ + N method|,drink| + N edible|ʳ,generic|ͳ + N tool|þ,@put| +跻 N InstitutePlace|,@drink|,commercial| +跿 N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,#eat| +跿 N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N InstitutePlace|,@drink|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,brown|,NotLight|Ũ + N tool|þ,cubic|,@put|,#drinks|Ʒ +軨 N FlowerGrass| +軰 N fact|,talk|̸ + N fact|,drink|,recreation| +輦 N food|ʳƷ,#drinks|Ʒ +輸 N furniture|Ҿ,space|ռ,@put| + N tool|þ,*drink|,generic|ͳ +¥ N InstitutePlace|,@drink|,commercial| +± N drinks|Ʒ +ũ N human|,#occupation|ְλ,*planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ + N tool|þ,@put|,#drinks|Ʒ +ɫ ADJ aValue|ֵ,color|ɫ,brown| +ɫ ADJ aValue|ֵ,color|ɫ,brown|,NotLight|Ũ +ʳ N food|ʳƷ,generic|ͳ + N InstitutePlace|,@drink|,commercial| + N tree|,#material|,#drinks|Ʒ +ˮ N drinks|Ʒ +ͤ N InstitutePlace|,@drink|,commercial| + N tool|þ,@put| + CLAS NounUnit|,&drinks|Ʒ + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ҷ N material|,?drinks|Ʒ +Ҷ N part|,%tree|,hair|ë,?material|,#drinks|Ʒ +Ҷ N food|ʳƷ,#drinks|Ʒ +Ҷ N tool|þ,cubic|,@put| + N method|,drink| + N material|,#food|ʳƷ,$eat| +෹ N time|ʱ,idle| +ƺ N time|ʱ,*WhileAway| +԰ N InstitutePlace|,@planting|ֲ,#tree|,#drinks|Ʒ,agricultural|ũ +ש N material|,?drinks|Ʒ + N InstitutePlace|,@drink|,commercial| + N facilities|ʩ,space|ռ,@sit|,#drink| + N character|,surname|,human|,ProperName|ר + V check| + V investigate| + V read| +鰸 V investigate| + V handle|,police| +鳭 V levy|,police| + V check|,Vachieve| + V investigate|,Vachieve| +鴦 V reveal|¶ +鵽 V investigate|,Vachieve| + V check| + V block|ס + V check| + N human|,*check| +ӸǼӸɸʼ N waters|ˮ,surfacial|,ProperName|ר,(US|) +鷿 V check|,medical|ҽ + V investigate| + V prohibit|ֹ,police| + V check|,content=defend|,military| + V check| + V obtain|õ,police| +鼩 V obtain|õ,police| + V prohibit|ֹ +龿 V investigate| +鿱 V investigate| +鿴 V check| +鿼 V check| +鿼 V research|о + V detain|ס,police| + V prove|֤ + V check|,Vachieve| + V check|,content=defend|,military| +ʵ V prove|֤ + V receive| + V interrogate| +ѯ V ask| +Ѱ V LookFor|Ѱ + V check| +ҹ V check|,time=night| + V read| + V check|,content=account|,commercial| + V LookFor|Ѱ +֤ V check| +֤ V prove|֤ + N cause|ԭ,#quarrel|,undesired|ݬ + N fact| + N part|,%artifact|˹,OutOfOrder| + N sound| + N cause|ԭ,#quarrel|,undesired|ݬ + N emotion|,hate|,undesired|ݬ + N fact| + N part|,%artifact|˹,*OutOfOrder| + V apply|ͿĨ + V apply|ͿĨ,Vachieve| + V check| + V perception|֪ +쿴 V look| +Թɫ V look|,content=countenance| + N phenomena|,unfortunate|,undesired|ݬ + N part|,%place|ط +· N facilities|ʩ,route|·,branch|֧ +ͷ N phenomena|,unfortunate|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + N affairs|,#dispatch|Dz + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N attribute|,similarity|ͬ,&entity|ʵ + V differ|ͬ + V dispatch|Dz + V lack|ȱ + N result|,wrong|,undesired|ݬ + N attribute|,similarity|ͬ,&entity|ʵ + ADJ aValue|ֵ,possibility|,almost| + ADV aValue|ֵ,possibility|,almost| + ADV aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,similarity|ͬ,alike| + V aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,standard|׼,average|,desired| + ADJ aValue|ֵ,possibility|,almost| + N phenomena|,unfortunate|,undesired|ݬ + N result|,wrong|,undesired|ݬ + N quantity|,rate|,&correctness| + ADJ aValue|ֵ,possibility|,almost| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,different|,industrial| + N quantity|,rate|,&qValue|ֵ + ADJ quantity|,rate|,&qValue|ֵ + N quantity|,rate|,&qValue|ֵ + N quantity|,rate|,&price|۸,commercial| + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + N attribute|,fullness|,incomplete|ȱ,&entity|ʵ + N attribute|,similarity|ͬ,different|,&entity|ʵ +÷ N payment|,*SelfMove|,#affairs|,#dispatch|Dz +Dz V dispatch|Dz +ǿ ADJ aValue|ֵ,standard|׼,average|,desired| +ʹ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ʹ V dispatch|Dz + N affairs|,#dispatch|Dz + N affairs|,#earn|׬,#alive|,#occupation|ְλ +һ ADV aValue|ֵ,possibility|,almost| +һ ADJ aValue|ֵ,possibility|,almost| + N human|,#occupation|ְλ,employee|Ա,past| + N attribute|,similarity|ͬ,different|,&entity|ʵ +ֵ N quantity|,rate|,&qValue|ֵ + V surprise| + V surprise| + V dismount|ж + V remove| + V separate| + V remove| + V reveal|¶ + V remove|,Vachieve| +ǽǽ V recompense| + V remove| + V separate| + V borrow| + V separate| +Ǩ V TakeAway|ᶯ,patient=family| +Ǩ N human|,$request|Ҫ,#TakeAway|ᶯ,#family| +ǽ V MakeTrouble| +ɢ V separate| +̨ V MakeTrouble| +ϴ V wash|ϴ + V dismount|ж,Vachieve| + V dismount|ж,Vachieve| + V remove|,patient=material|,#cure|ҽ,medical|ҽ +ж V dismount|ж + V read| +װ V install|װ + N character|,surname|,human|,ProperName|ר + N material|,wood|ľ,*lighting|ȼ,$burn| + N material|,wood|ľ,*lighting|ȼ,$burn| + N FlowerGrass|,?medicine|ҩ + N medicine|ҩ,(China|й) + N material|,wood|ľ,*lighting|ȼ,$burn| + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N material|,liquid|Һ,#vehicle|ͨ,$burn| +ͻ N machine|,#vehicle|ͨ + N beast| + N beast| + N human|,evil|,undesired|ݬ +dz ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ǵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V HoldWithHand| + V mix| + V HoldWithHand| + V mix| + V mix| + V mix| + V MakeTrouble| + V mix| + V forge|α + N forge|α + V mix| +ʹ N forge|α,means=mix| + N InsectWorm| + V GoOn| + N medicine|ҩ,(China|й) + N part|,%InsectWorm|,wing|,*fly| +ɴ N material|,?clothing| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + V need| + V FondOf|ϲ,target=edible|ʳ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + V slander|̰ + N text|,*slander|̰,undesired|ݬ + V slander|̰ + N text|,*slander|̰,undesired|ݬ + V MakeTrouble| + V coil| + V persuade|Ȱ˵ + V treat|Դ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,ability|,able|,excite|ж + V happen| + V aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + V coil| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V pick|ʰ + N tool|þ,*pick|ʰ,*dig|ھ + N LandVehicle|,*pick|ʰ + V remove| +ƽ V AlterForm|״,level|ƽ +˳ N LandVehicle|,*pick|ʰ +˻ N machine|,*pick|ʰ + N tool|þ,*pick|ʰ,*dig|ھ + V GiveBirth| + N artifact|˹ + V produce|,industrial|,agricultural|ũ + N wealth|Ǯ + V produce|,industrial|,agricultural|ũ + N place|ط,@produce| + N human|,young|,$GiveBirth| + N room|,@GiveBirth|,medical|ҽ + N human|,female|Ů,*GiveBirth|,medical|ҽ + N time|ʱ,#GiveBirth|,already| + N time|ʱ,#GiveBirth|,#female|Ů,@rest|Ϣ,medical|ҽ + N knowledge|֪ʶ,#female|Ů,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,#GiveBirth|,medical|ҽ +Ʋ N room|,#InstitutePlace|,@cure|ҽ,#female|Ů,#GiveBirth|,medical|ҽ +ѧ N knowledge|֪ʶ,#female|Ů,#GiveBirth|,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,#female|Ů,#GiveBirth|,medical|ҽ + N quantity|,amount|,&crop|ׯ,&artifact|˹ + V GiveBirth|,PatientProduct=embryo| +Ʒ N artifact|˹,$produce|,generic|ͳ +ǰ N time|ʱ,#GiveBirth|,immediate| + N place|ط,@produce|,@planting|ֲ +Ȩ N rights|Ȩ,*own|,#wealth|Ǯ + N time|ʱ,#GiveBirth|,#medical|ҽ + V appear| + N result| + N produce|,sell| + N human|,*produce|,industrial| +ҵ N wealth|Ǯ +ҵ N fact|,industrial|,ProperName|ר +ҵ N human|,#occupation|ְλ,*produce|,industrial| +ҵṹ N attribute|,content|,&affairs|,industrial| +ֵ N attribute|,value|ֵ,&produce|,industrial| + V GiveBirth|,agricultural|ũ + V explain|˵ + V explain|˵ + V explain|˵ + V explain|˵ + V explain|˵ + V disseminate| + V shiver| + V shiver| + V shiver| + V shiver| +ΡΡ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N sound|,#language| + N sound|,#music| + V wave|ڶ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ V prosper| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V IllBehave| +һʱ V IllBehave| + N InstitutePlace|,*sell|,@buy|,commercial| + CLAS NounUnit|,&RainSnow|ѩ + CLAS NounUnit|,&disease|,medical|ҽ + CLAS NounUnit|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,entertainment|,@perform| + N part|,%shows|,entertainment| + N place|ط + N space|ռ + N human|,#occupation|ְλ,official|,*manage|,agricultural|ũ + N quantity|,amount|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N InstitutePlace| + N attribute|,occasion|,&event|¼ + N human|,#occupation|ְλ,entertainment| + N attribute|,occasion|,&event|¼ + N attribute|,occasion|,&event|¼ + N attribute|,occasion|,&shows| + N attribute|,reputation|,&human|,&organization|֯ + N human|,*FondOf|ϲ,#associate| + N human|,desired|,important| + N InstitutePlace|,#plant|ֲ,agricultural|ũ + N location|λ,%facilities|ʩ,sport| + N InstitutePlace| + N location|λ,%facilities|ʩ,sport| +Ժ N facilities|ʩ,@separate|,#crop|ׯ,agricultural|ũ +վ N InstitutePlace| + N human|,occupation|ְλ,*own|,#InstitutePlace|,agricultural|ũ + N place|ط,@ComeTogether| + V savor| + V savor| + V savor|,content=new| + V know|֪ + V savor|,Vachieve| +ͷ V know|֪,content=pros| + V try| + V savor|,content=new| + V savor|,content=new| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ aValue|ֵ,kind|,ordinary| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,duration|,TimeLong| +и V prepare|׼,manner=often| + N army|,military| + ADV aValue|ֵ,frequency|Ƶ,often| + N clothing|,ordinary| + ADJ aValue|ֵ,kind|,ordinary| + N regulation|,ordinary| +Ʒ N method|,ordinary|,*cure|ҽ,#disease| + N weapon|,ordinary| +ս N fact|,fight|,ordinary| + N regulation|,ordinary| + N regulation|,*measure|,#weight| + ADJ aValue|ֵ,kind|,ordinary| + N disease| + N human|,*visit|,often| + V visit|,manner=often| + N regulation|,ordinary| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N regulation|,ordinary| + N quantity|,ordinary| + N tree| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N reason| + N human|,ordinary| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +ʶ N knowledge|֪ʶ,ordinary| + N quantity|,ordinary| +̬ N attribute|,circumstances|,BeNormal|̬,&entity|ʵ +ί N human|,official|,politics| +ί N institution|,politics| + N attribute|,temperature|¶,ordinary|,&AnimalHuman| + N attribute|,temperature|¶,ordinary|,&inanimate| + ADJ aValue|ֵ,kind| + N affairs|,ordinary| + N human|,official|,#community| +ίԱ N human|,official|,#institution|,politics| +ίԱ N institution|,politics| + N expression| +Ե ADV {comment|} +˵ ADV {comment|} +˵ú ADV {comment|} + ADJ aValue|ֵ,frequency|Ƶ,often| +ô N expression| +ô N expression| +ö N symbol| + N character| + N place|ط,city|,ProperName|ר,(China|й) +ס V reside|ס,duration=TimeLong| +פ ADJ aValue|ֵ,duration|,TimeLong| +פ N human|,$select|ѡ +פ N human|,occupation|ְλ,*gather|ɼ,*compile|༭,#news| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V add| + V appear| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,quality|,strong|ǿ,desired|,&entity|ʵ + V grow|ɳ + N human|,clan|,adult|,family| + N human|,official|,occupation|ְλ,*manage| + N place|ط,capital|,ProperName|ר,past|,(China|й) +ɽ N land|½,ProperName|ר,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + N human|,clan|,adult|,family| + ADJ human|,clan|,adult|,family| +Գ N beast| + V AppearanceChange|۱,StateFin=fat| + N electricity| + ADJ aValue|ֵ,length|,long| +̶ ADJ aValue|ֵ,length|,dissimilar| + N entity|ʵ,durable| + N facilities|ʩ,ProperName|ר,(China|й) + N beast| + V grow|ɳ + N attribute|,quality|,strong|ǿ,desired|,&thing| + N place|ط,city|,ProperName|ר,(China|й) + V die| +ȥ CONJ {condition|} + ADJ {condition|} + V alive|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V grow|ɳ + V grow|ɳ,StateFin=adult| + N furniture|Ҿ,*sit| + N MusicTool| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,boundary|,&length| + N attribute|,correctness|,&thing| + N attribute|,distance|,&physical| + N attribute|,duration|,&time|ʱ + N attribute|,length|,&physical| + N attribute|,quality|,&thing| + N phenomena|,unfortunate|,undesired|ݬ + N part|,%human|,hair|ë,long| + N shape|,square| + N image|ͼ,cubic|,long|,square| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + V do|,manner=brave| +赱 V soothe|ο,target=self|,means=sing| + N celestial|,#weather| + N human|,#occupation|ְλ,employee|Ա + N MusicTool| + N part|,%AnimalHuman|,bone| + N human|,official| + N human|,official|,military| + V sit| + V sit| + N MusicTool| + N time|ʱ + N waters|ˮ,linear| + N fact|,communicate| + N text|,detailed| +˵ ADV {comment|} + N weapon|,aircraft|,military|,*order| + N time|ʱ,@rest|Ϣ,@WhileAway|,TimeLong| + N waters|ˮ,linear|,ProperName|ר,(China|й) + V prosper| +¹ N beast| + ADJ aValue|ֵ,duration|,TimeLong| +֮ N method|,TimeLong| + ADJ aValue|ֵ,distance|,far|Զ + N sky| + N clothing|,#leg| + N part|,%building|,nerve| + N part|,%building|,nerve|,ProperName|ר + ADJ aValue|ֵ,clan| + N human|,aged|,male| + N human|,religion|ڽ,male| + N human|,mass| +ë N material|,?clothing| +ì N weapon|,*stab| + V die| + V MakeSound|,duration=TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +Ů N human|,family|,female|Ů + N clothing|,#body| + N fact|,exercise|,sport| +ƪ N text|,detailed| +ƪ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ƪС˵ N readings| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + N place|ط,city|,ProperName|ר,(Japan|ձ) +ǹ N weapon|,*firing| +ǹ N weapon|,*stab| +ֱ V GoForward|ǰ,manner=free| +ȭ N fact|,beat|,sport| +ɳ N place|ط,city|,ProperName|ר,(China|й) + N clothing|,#body| + N human|,mass| + N human|,*speak|˵,trivial|,undesired|ݬ +฾ N human|,female|Ů,*speak|˵,trivial|,undesired|ݬ + V alive|,TimeLong| + V alive|,TimeLong| + N food|ʳƷ +ʱ ADJ aValue|ֵ,duration|,TimeLong| + V die| + N attribute|,circumstances|,&grow|ɳ,#plant|ֲ + N attribute|,age|,TimeLong| +˿ N material|,?clothing|,?tool|þ + N character|,surname|,human|,ProperName|ר + N human|,family|,male| +̸ V talk|̸,manner=TimeLong| +̾ V sigh|̾ +ͳƤѥ N clothing|,#foot| +ͳ N clothing|,#foot| +; ADJ aValue|ֵ,distance|,far|Զ +; V SelfMove| +;绰 N fact|,communicate| +; N LandVehicle| + N thing|,redundant| + ADV aValue|ֵ,necessity|Ҫ,redundant| +߲Ʒ N artifact|˹,redundant| + N attribute|,appearance|,&AnimalHuman| +Ч N attribute|,effect|Ч,TimeLong|,&medicine|ҩ + N human|,family|,male| +뾨 N beast|,*swim| +ҹ N time|ʱ,night|,TimeLong| + V BeAble|ܹ +̾ V sigh|̾ +Բ ADJ aValue|ֵ,form|״,round|Բ +Զ ADJ aValue|ֵ,duration|,TimeLong| + N human|,clan|,adult|,HighRank|ߵ + N human|,clan|,adult|,family| + V SelfMoveInManner|ʽ,military| + V grow|ɳ +ξð ADJ aValue|ֵ,circumstances|,safe|,desired| +ס V reside|ס,duration=TimeLong| + N human|,family| + ADJ aValue|ֵ,speed|ٶ,fast| + V fulfil|ʵ + V recompense| + V return|,commercial| + N attribute|,ability|,return|,#owe|Ƿ,&human|,&organization|֯ + V return|,commercial| + V return|,possession=strength| + V return|,commercial| +ծ V return|,commercial| + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| + N disease| +ʹ N disease| + N disease| +׵ N disease| +θ N part|,%AnimalHuman|,viscera| +ϵĤ N disease| + N disease| + N part|,%physical|,skin|Ƥ,#food|ʳƷ + N part|,%AnimalHuman|,viscera| + N InstitutePlace|,@produce|,factory|,industrial| + N part|,%institution|,factory|,*manage| + N human|,#occupation|ְλ,industrial|,official|,#InstitutePlace|,factory| + N house|,industrial|,@produce|,factory|,#InstitutePlace| + N regulation|,*manage|,factory| + N regulation|,*manage|,factory| + N InstitutePlace|,factory|,@produce| + N InstitutePlace|,factory|,mine|,@produce| + N time|ʱ,@rest|Ϣ,#factory|,#industrial| + N place|ط,factory| + N InstitutePlace|,factory|,@produce| + N human|,occupation|ְλ,*own|,#factory| +ַ N location|λ,%factory|,#industrial| + N human|,*own|,#factory| + N InstitutePlace|,@store|,commercial| + N InstitutePlace|,factory|,@produce| + ADJ aValue|ֵ,area|,wide| + V reveal|¶ + N LandVehicle| + V exposure|¶ + V open| + ADV aValue|ֵ,behavior|ֹ,free|,desired| + ADJ aValue|ֵ,brightness|,bright| + V understand| + N LandVehicle| +ſڶ V exposure|¶ +ſڶ V unfixed|δ + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,content|,fluent|,desired| + V satisfied| +ʹ V drink|,manner=satisfied| + V joyful|ϲ +˳ ADJ aValue|ֵ,content|,fluent|,desired| + V speak|˵,manner=free| +̸ V speak|˵,manner=joyful|ϲ +ͨ ADJ aValue|ֵ,circumstances|,free|,desired| +ͨ ADJ aValue|ֵ,circumstances|,free|,desired| + V think|˼,manner=free| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N publications|鿯,able|,$sell| + V SelfMove|,manner=free| + V SelfMove|,manner=free| + V speak|˵,manner=joyful|ϲ +Գ V express|ʾ,content=emotion| + V drink|,manner=satisfied| + V swim|,manner=joyful|ϲ + V tour|,manner=joyful|ϲ + V cry| + V sing| + V RegardAs|,ResultIsa=evil| + N text|,#sing| + V sing| + N text|,#sing| +Ϸ V act|ж,manner=single| +Ϸ V act|ж,manner=single| + N music| +̨Ϸ V oppose| + V speak|˵,content=oppose| +ߵ V boast| + V sing| + N attribute|,ability|,#sing|,&human| + N attribute|,ability|,#sing|,&human| + V sing| + V RegardAs|,ResultIsa=kindhearted| + N tool|þ,*listen|,#music| + V count| + N part|,%tool|þ,#disseminate|,#music| +Ƭ N tool|þ,*record|¼,*disseminate|,#music| +Ʊ V announce|,content=select|ѡ +Ʊ N human|,*announce|,#select|ѡ +ǻ N sing|,entertainment| +ʫ N human|,*sing|,religion|ڽ +˫ V collude|,manner=EachOther|໥ +˫ V perform|,content=shows| +ͷ N part|,%tool|þ,#disseminate|,#music| +ͷ N tool|þ,*disseminate| +Ϸ V perform|,content=shows| + N part|,%tool|þ,#disseminate|,#music| + V RegardAs|,ResultIsa=human|,important|,entertainment| + V salute|¾ + V endorse|ӵ + V propose| + V start|ʼ + V endorse|ӵ,content=honest| +ʼ V start|ʼ +ʼ V human|,*start|ʼ + V propose| + V propose| + N text|,$propose| + N readings|,*propose| + N text|,$propose| + V human|,*propose| + ADJ aValue|ֵ,kind|,special| + V cross|Խ + V surpass|ǿ + V surplus|ʣ + ADJ aValue|ֵ,amount|,over| + V surpass|ǿ,scope=produce|,industrial| + ADJ aValue|ֵ,kind|,special| + V cross|Խ,LocationThru=LandVehicle| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V cross|Խ + V surpass|ǿ + N attribute|,ability|,able|,transmit|,#electricity| + N physical|,*transmit|,#electricity|,generic|ͳ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ϳ N sky| + N attribute|,temperature|¶,cold|,&physical| + V rescue|,religion|ڽ + V rescue|,religion|ڽ +̲ N electricity| +ȹ N clothing|,#leg|,#female|Ů + ADJ aValue|ֵ,amount|,over| + N fund|ʽ,$earn|׬,commercial| + V fulfil|ʵ + ADJ aValue|ֵ,kind|,special|,desired| + V surpass|ǿ +ʥ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V surpass|ǿ,scope=load|װ +Ƶ N attribute|,frequency|Ƶ,fast|,&electricity| +ѹ N attribute|,strength|,strong|ǿ,&electricity| +ѹ N attribute|,volume|ݻ,strong|ǿ,&electricity| + N space|ռ,empty|,#gas| + V surpass|ǿ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N place|ط,country|,strong|ǿ +· N facilities|ʩ,route|·,@AlterLocation|ռλ,fast| +г N InstitutePlace|,*sell|,@buy|,commercial| + V pass|ȹ,patient=time|ʱ,duration=over| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,amount|,over| + V aValue|ֵ,age|,over| +ڷ V engage|,content=military|,duration=over|,military| +ǰ V surpass|ǿ +Ⱥ ADJ aValue|ֵ,kind|,special| +Ⱥ ADJ aValue|ֵ,kind|,special| +Ȼ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ȼ V disconnect|,partner=HaveContest| + ADJ aValue|ֵ,kind|,special| + N human|,able|,desired| + ADJ aValue|ֵ,speed|ٶ,special| + N #sound| + N sound| + V WellTreat|ƴ + V repeat|ظ,content=ComeToWorld|,religion|ڽ +ʱ N due| + N InstitutePlace|,*sell|,@buy|,commercial| + ADJ aValue|ֵ,speed|ٶ,fast| + V surpass|ǿ,scope=speed|ٶ + N attribute|,ability|,&inanimate| + V BeIndependent| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| +΢ṹ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,speed|ٶ,special| +Ա V surpass|ǿ,scope=load|װ +Խ V cross|Խ +Խ V surpass|ǿ + ADJ aValue|ֵ,amount|,#load|װ,over| +֧ V surpass|ǿ,scope=spend|,commercial| + ADJ aValue|ֵ,weight|,over| +Ȼ ADJ aValue|ֵ,kind|,special| + V SelfMoveInManner|ʽ + V copy|д + V levy| + V pick|ʰ + V steal|͵,#copy|д + V LookFor|Ѱ,location=human| + V tell| + N readings| + V choose|ѡ,content=route|· + N facilities|ʩ,route|· + V obtain|õ,police| + V levy|,possession=artifact|˹ + N document|,$copy|д + V choose|ѡ,content=route|· +· V choose|ѡ,content=route|· +¼ V copy|д + V rob| +û V levy| + V LookFor|Ѱ,location=human| + V receive| + V CausePartMove|,PatientPartof=hand| + N food|ʳƷ + V submit| +Ϯ V attack|,military| +Ϯ V imitate|ģ +Ϯ V steal|͵,#copy|д +С· V choose|ѡ,content=route|· +д V copy|д +дԱ N human|,occupation|ְλ,*copy|д + N money| +Ʊ N money| + N institution|,royal|,past| + N place|ط,country|,ProperName|ר,(North Korea|) + N time|ʱ,morning| + N time|ʱ,royal|,past| + PREP {direction} + V salute|¾ + V salute|¾,religion|ڽ + ADJ aValue|ֵ,direction|,north| +Ϧ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ıϦ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N human|,occupation|ְλ,official|,royal|,past| + N time|ʱ,royal|,past| + ADJ aValue|ֵ,direction|,east| +Ϧ ADJ aValue|ֵ,distance|,near| + N clothing|,#official|,#royal|,past| + V submit|,possession=wealth|Ǯ,royal| + V meet|,royal| +Ϧ V alter|ı,politics| +¶ N RainSnow|ѩ +ĺ ADJ aValue|ֵ,duration|,TimeLong| +ĺ N time|ʱ,day| + ADJ attribute|,strength|,strong|ǿ,&human| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ĺ V alter|ı,manner=treacherous| + N celestial|,morning| +ĺ V alter|ı,manner=treacherous| +ʥ V SelfMoveInManner|ʽ,LocationFin=religion|ڽ,purpose=salute|¾ +˼ĺ V ThinkOf|˼ + ADJ aValue|ֵ,direction|,#sky| +͢ N institution|,royal|,past| + N language|,#country|,ProperName|ר,(Korea|) +Ϧ ADJ aValue|ֵ,duration|,TimeLong| +Ϧ N time|ʱ,TimeShort| +Ϧ N time|ʱ,day| +ϼ N CloudMist|,morning|,colored| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Korea|) + N place|ط,country|,ProperName|ר,(Asia|) +񹲺͹ N place|ط,country|,ProperName|ר,(Asia|) +ս N fact|,*fight|,ProperName|ר,military| +ͨѶ N institution|,news|,ProperName|ר,(North Korean|) + N human|,mass|,ProperName|ר,(Korea|) + V facing| + N celestial|,morning| +Ұ N institution|,royal| + N institution|,news|,ProperName|ר,(North Korean|) + V facing| + N lights|,#celestial|,morning| + V SelfMoveInManner|ʽ,LocationFin=religion|ڽ,purpose=salute|¾ + V LaughAt|Ц + V LaughAt|Ц +Ū V LaughAt|Ц +Ū ADJ aValue|ֵ,property|,LaughAt|Ц +Ц V LaughAt|Ц +Ц N human|,*LaughAt|Ц + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N fact| + N water|ˮ + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + V StateChange|̬ + N shows| + N attribute|,SocialMode|,&human|,&organization|֯ + N water|ˮ + N attribute|,dampness|ʪ,&physical|,&space|ռ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N place|ط,ProperName|ר,(China|й) +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ˮ N water|ˮ +λ N attribute|,height|߶,#water|ˮ +ϫ N water|ˮ + N water|ˮ +Ѵ N water|ˮ +ӿ V appear| + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N house|,#animal|,#alive| + N place|ط,crime| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V reside|ס,location=tree| + N beast| +Ѩ N house|,#animal|,#alive| +Ѩ N place|ط,crime| + V cry| + V quarrel| + V quarrel| + V quarrel| + V cry| + V quarrel| + V cook| + V discharge| + V exchange|,manner=venture|ð,commercial| + V cook| + N food|ʳƷ + V exchange|,possession=bill|Ʊ,manner=venture|ð,commercial| +Ʊ V exchange|,possession=bill|Ʊ,manner=venture|ð,commercial| + V exchange|,possession=money|,manner=venture|ð,commercial| + N food|ʳƷ,commercial|,generic|ͳ +䷹ V repeat|ظ + V exchange|,manner=venture|ð,commercial| + V sell|,manner=venture|ð + N food|ʳƷ,#crop|ׯ + N food|ʳƷ + N tool|þ,cubic|,@cook| + V disseminate| + V discharge| + N LandVehicle| + N character|,surname|,human|,ProperName|ר + V cut| + V irrigate| + N machine| + N part|,%tool|þ,#recreation| + N part|,%LandVehicle|,*drive|Ԧ,hand| +ʽ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| + N human|,occupation|ְλ,*drive|Ԧ,#LandVehicle| + N place|ط,*put|,#LandVehicle| + N human|,occupation|ְλ,official|,#LandVehicle| + N vehicle|ͨ + N part|,%LandVehicle|,eye| + N machine|,*cut|,*produce|,industrial| + N attribute|,number|,&LandVehicle| + N part|,%LandVehicle|,leg| + N part|,%machine|,*cut|,heart|,industrial| + N facilities|ʩ,route|· + N trace|,#route|· + N part|,%LandVehicle|,*illuminate| + N LandVehicle|,mass| + N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ + N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| + N fact|,*cut|,*produce|,industrial| + N human|,#occupation|ְλ,*cut|,*produce|,industrial| + N attribute|,number|,#prove|֤,&mark|־,#LandVehicle| + N phenomena|,unfortunate|,#LandVehicle|,undesired|ݬ + N shows|,#drive|Ԧ,#LandVehicle| + N part|,%LandVehicle|,bone| + N part|,%InstitutePlace|,factory|,industrial| + N facilities|ʩ,space|ռ,@store|,#LandVehicle| + N LandVehicle|,mass| + V punish|,police| + N attribute|,age|,&LandVehicle| + N phenomena|,#LandVehicle|,#VehicleGo|ʻ + N quantity|,amount|,&phenomena|,#LandVehicle|,#VehicleGo|ʻ + N part|,%LandVehicle|,leg| + N LandVehicle| + N payment|,*SelfMove|,#affairs|,#dispatch|Dz + N part|,%LandVehicle|,mouth| + N mark|־,*prove|֤,#LandVehicle| + N part|,%LandVehicle|,head|ͷ +Ƥ N part|,%LandVehicle|,@load|װ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +Ǯ N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ +ǰ N medicine|ҩ + N part|,%LandVehicle|,body| + N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +ˮ ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,speed|ٶ,&SelfMove|,#LandVehicle| +̥ N part|,%LandVehicle|,leg| + N part|,%LandVehicle|,body| + N part|,%LandVehicle|,leg| +ͷ N LandVehicle|,#(train|) +ͷ N part|,%LandVehicle|,head|ͷ +λ N facilities|ʩ,space|ռ,*put|,#LandVehicle| + N part|,%LandVehicle|,@load|װ + N part|,%LandVehicle|,@load|װ + N attribute|,kind|,&LandVehicle| +е N facilities|ʩ,route|· +բ N part|,%vehicle|ͨ,*fix|ס +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| + N document|,#LandVehicle| + N trace|,#route|· + N part|,%LandVehicle| + N human|,*own|,#LandVehicle| + N expenditure|,#LandVehicle|,#SelfMoveInManner|ʽ + N LandVehicle| + N text|,$repeat|ظ,undesired|ݬ + N part|,%LandVehicle|,leg| + V buy|,commercial| + V pull| + V split|ƿ + V talk|̸ + V deceive|ƭ + V TalkNonsense|Ϲ˵ + V MakeTrouble| + V deceive|ƭ +Ƥ V quarrel| +ƽ V MakeEqual|ʹ +Ⱦ V run| + V GoBackward| + V MoveItBack| + V dismiss| + V remove| + V MoveItBack|,patient=army|,military| + V MoveItBack| + V remove| + V MoveItBack|,patient=army|,military| + V discharge| + V GoBackward| + V MoveItBack| + V remove| + V MoveItBack|,patient=army|,military| + V MoveItBack| + V cease|ͣ,content=accuse|ظ,#police| + V GoBackward| + V MoveItBack| +ϯ V MoveItBack|,patient=tool|þ + V remove| + V remove| +ְ V dismiss|,ResultIsa=occupation|ְλ + V GoBackward| + V MoveItBack| + V pull| + V obstruct|ֹ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,range|,all|ȫ +ͷβ ADJ aValue|ֵ,range|,all|ȫ +ҹ ADV aValue|ֵ,duration|,TimeLong|,night| + ADJ aValue|ֵ,clearness|,clear| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,official|,royal|,past| + V surrender| + N human|,royal|,past| + N human|,official|,royal|,past| + N human|,#occupation|ְλ,official|,royal|,past| + N celestial|,generic|ͳ + N knowledge|֪ʶ + N time|ʱ +ʱ N time|ʱ,hour|ʱ,morning| + N place|ط,#human|,@alive| + N stone|ʯ,waste| + N stone|ʯ,waste| + N wind|,#stone|ʯ,#WeatherBad| + V undergo|,content=cover|ڸ,instrument=stone|ʯ + N stone|ʯ,waste| + N place|ط,#human|,@alive| + N place|ط,#human|,@alive| + N place|ط,#human|,@alive| + N stone|ʯ,waste| + N stone|ʯ,waste| + N sound|,$cry| + N stone|ʯ,waste| +Ե N attribute|,relatedness|,#place|ط,#human|,#alive|,&human| + N place|ط,#human|,@alive| + N time|ʱ,morning| + N publications|鿯,#news|,#morning| + N fact|,exercise|,#morning| + N wind|,morning| + N lights|,#morning| + N fact|,exercise|,#morning| +Ϧ ADJ aValue|ֵ,duration|,TimeLong| +Ϧ N time|ʱ,day| + N celestial| +ĺ N fact|,persuade|Ȱ˵ + N lights|,#morning| + N emotion|,sincere|,desired| + V MoveItDown| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,weight|,heavy| + V sink|³ + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,weight|,heavy| + V CauseToDo|ʹ,patient=ship|,ResultEvent=sink|³ + N ship|,*sink|³ + ADJ aValue|ֵ,weight|,heavy| + V separate| + N attribute|,effect|Ч,&human|,&organization|֯ + V float|Ư + V stay|ͣ + N inanimate|,waste| + N stone|ʯ,?material| + ADJ aValue|ֵ,occasion|,quiet|,desired| + V sink|³ + V indulge| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + V undergo| +û V sink|³ + V FeelingByBad| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V indulge| + V indulge| +Ĭ V KeepSilence|˵ +Ĭ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +Ĭ V KeepSilence|˵ +Ĭ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + V indulge| + V indulge| +˯ V sleep|˯ +˼ V aValue|ֵ,property|,think|˼ +˼ V think|˼ +˼ ADJ think|˼ +˼Ĭ V think|˼ +˼ V think|˼ +ʹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ʹ V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V sink|³ + N tool|þ,$burn| + V hesitate|ԥ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V upset| +ԩ N phenomena|,#unfortunate|,undesired|ݬ + N inanimate|,waste| + V FeelingByBad| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ +ס V calm| + V calm| + V indulge| + V indulge| + N disease| + N attribute|,habit|ϰ,undesired|ݬ,&human|,&organization|֯ + N disease| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V display|չʾ + V explain|˵ + V put| +³ V obey|ѭ +´ V explain|˵ +´ V explain|˵ +´ N text|,used|,boring|,undesired|ݬ +´ĵ N text|,used|,boring|,undesired|ݬ +´ N material|,#food|ʳƷ,sour| +· V display|չʾ +¸ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +¹ N regulation|,used|,undesired|ݬ +¹ªϰ N regulation|,used|,foolish|,undesired|ݬ +» N artifact|˹,used|,commercial| +¼ N physical|,past| +¾ N drinks|Ʒ,$addict|Ⱥ +¾ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + V display|չʾ +й N InstitutePlace|,@display|չʾ +й N tool|þ,cubic|,@display|չʾ +Ʒ N inanimate|,$display|չʾ + N room|,@display|չʾ + ADV aValue|ֵ,duration|,TimeLong| +Ƥ N medicine|ҩ,$eat| +ǻĵ N text|,used|,boring|,undesired|ݬ + V display|չʾ + N tool|þ,*decorate|װ,generic|ͳ + V explain|˵ + ADJ explain|˵ + V explain|˵ + N human|,*explain|˵ +˵ V explain|˵ + V explain|˵ + V own| + PREP {means} +ñ ADV aValue|ֵ,time|ʱ,convenient| +û V damage| +û ADV aValue|ֵ,time|ʱ,convenient| +Ǯ V own|,possession=wealth|Ǯ,#many| + ADV aValue|ֵ,time|ʱ,#hot| +ȴ V VieFor| + ADV aValue|ֵ,time|ʱ,convenient| + V satisfied| +Ը V satisfied| + ADV aValue|ֵ,earliness|,early| + PREP {means} + V ServeAsFoil| + V inlay|Ƕ + N part|,%clothing| +IJ N part|,%clothing| +ĵ N fittings|,%machine|,*inlay|Ƕ +Ŀ N clothing|,#leg| + N part|,%clothing| +ȹ N clothing|,#leg|,female|Ů + N clothing|,#body| + N clothing|,#body|,female|Ů + V ServeAsFoil| + N clothing|,#body| +ӳ V ServeAsFoil| + V PropUp|֧ + V ill|̬,cause=BeFull|Ա + V keep| + V open| + V push| +Ųס V BeUnable|,content=keep| +ų V PropUp|֧ +ŵû V ill|̬,cause=BeFull|Ա +ŵס V BeAble|ܹ,content=keep| +Ÿ N tool|þ,sport| +Ÿ N fact|,exercise|,sport| +Ÿ N fact|,exercise|,sport| +Ÿ N tool|þ,*push|,#ship| + V endorse|ӵ +̨ V endorse|ӵ + V endorse|ӵ +ס V BeAble|ܹ,content=keep| + N attribute|,name|,&entity|ʵ + V fit|ʺ + V measure| + V naming| + V praise|佱 + V speak|˵ +ư V control| +Ʊ V speak|˵,content=convenient| +Ʋ V speak|˵,content=ill|̬ +Ʋְ V cease|ͣ,content=undertake|,means=speak|˵,#ill|̬ +Ƴ V speak|˵,content=surrender| +Ƶ V praise|佱 +Ƶ V worth|ֵ +Ƶ V speak|˵,content=undertake|,#official|,royal| +ƹµ V control| +ƺ N attribute|,name|,&human| +ƺ N attribute|,name|,&human| +ƺ V naming| +ƽ V calculate|,manner=miser| +ƿ V ShowJoy|ʾϲ + V measure|,scope=weight| + V praise|佱 + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V explain|˵ + V praise|佱 +̾ V praise|佱 + V speak|˵,content=undertake|,#official| +ư V control| +Ϊ V naming| +ν N attribute|,name|,&human| + V ShowLove|ʾ +л V thank|л + V satisfied| + V satisfied| +Ը V satisfied| +ֵ ADJ aValue|ֵ,relatedness|,intimate|,desired| + V control| + V praise|佱 + V praise|佱 +Ը V satisfied| + V praise|佱 +֮ V naming| +ְ ADJ aValue|ֵ,ability|,able|,engage|,#occupation|ְλ,desired| + V measure|,scope=weight| + V naming| + N facilities|ʩ,#city| + N part|,%place|ط,city|,heart| + N place|ط,city| +ǰ N place|ط,#human|,country|,politics| +DZ N facilities|ʩ,#city| +dz N place|ط,city| +Ƕ N facilities|ʩ,military| +Ƕ N part|,%facilities|ʩ,military| +Ƕ N part|,%facilities|ʩ,military| +Ƿ V defend|,patient=city|,military| +Ǹ N attribute|,wisdom|ǻ,&human| +Ǹ N part|,%facilities|ʩ,base| +ǹ N facilities|ʩ,space|ռ,#city|,mouth| +ǹ N facilities|ʩ,#city| +Ǻ N facilities|ʩ,space|ռ,#city| +ǽ V build|,PatientProduct=city| +ǽ N part|,%place|ط,surrounding|Χ,#city| + N location|λ,%city|,internal| +¥ N facilities|ʩ,space|ռ,#city|,@reside|ס + N part|,%facilities|ʩ,#city|,mouth| +ǽ N facilities|ʩ,#city| + N place|ط,#city| + N place|ط,city| +й N place|ط,#human|,country|,politics| +н V build|,PatientProduct=city| +о N human|,*reside|ס,*function|,#city| +˿ N human|,*reside|ס,*function|,#city| +ͷ N facilities|ʩ,#city| + N location|λ,%city|,external| + N place|ط,city| + N place|ط,city|,village| + N place|ط,city| +ԫ N facilities|ʩ,#city| + N place|ط,city| + N humanized|,ProperName|ר + N facilities|ʩ,space|ռ,religion|ڽ +ܦ N facilities|ʩ,military| + N fruit|ˮ +Ȼ ADJ aValue|ֵ,color|ɫ,yellow| +ɫ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + ADJ aValue|ֵ,property|,$produce|,$forming|γ + V become|Ϊ + N character|,surname|,human|,ProperName|ר + EXPR expression|,*ExpressAgreement|ʾͬ + V fulfil|ʵ + ADJ qValue|ֵ,amount|,many| + N quantity|,rate|,&entity|ʵ + N result|,desired|,#succeed|ɹ + V succeed|ɹ +ɰǧ NUM qValue|ֵ,amount|,many| +ɰ N attribute|,effect|Ч,&event|¼ +ɱ ADJ qValue|ֵ,amount|,double| +ɱ N expenditure|,commercial| +ɱЧӦ ADJ attribute|,effect|Ч,#expenditure|,&create|,commercial| +ɲ V BeUnable|,content=succeed|ɹ +ɲ V BeUnable|,content=succeed|ɹ +ɲʲô V BeUnable|,content=succeed|ɹ +ɲ V become|Ϊ,isa=able|,#human| +ɲ V become|Ϊ,isa=superior|,#tree| +ɲ V become|Ϊ,isa=able|,#human| +ɳ V grow|ɳ +ɳ N time|ʱ,@grow|ɳ +ɳ N InsectWorm| +ɳ V become|Ϊ,isa=enemy| +ɶ N place|ط,city|,ProperName|ר,(China|й) +ɶ ADJ qValue|ֵ,amount|,many| +ɶ V become|Ϊ,double| +ɷ N attribute|,origin|,&human| +ɷ N component|,%entity|ʵ +ɷ N attribute|,origin|,&human| +ɷ N component|,%entity|ʵ +ɷ V exist|,manner=ordinary| +ɸ V forming|γ,StateFin=form|״ +ɸ V grow|ɳ,StateFin=big| +ɸ V grow|ɳ,StateFin=form|״ +ɹ V succeed|ɹ +ɹ N regulation|,ordinary| +ɹ N result|,desired|,#succeed|ɹ +ɺ; V BeSame|ͬ,sport| +ɻ V GetMarried| +ɻ V alive| +ɼ N result|,desired|,#succeed|ɹ +ɼ N readings|,#result|,education| +ɼ V GetMarried| +ɼҵ V GetMarried|,start|ʼ,#affairs| +ɼ N thought|ͷ,biased|ƫ,undesired|ݬ +ɽ V succeed|ɹ,scope=commercial|,commercial| +ɽ N quantity|,amount|,&affairs|,commercial| +ɾ V fulfil|ʵ +ɾ N result|,desired|,#succeed|ɹ +ɾ͸ N emotion|,#succeed|ɹ +ɿ N fact|,forming|γ,#mine| + N example|ʵ,ordinary| + V be|,descriptive=correct|ȷ + V establish| + V grow|ɳ,StateFin=tree|,mass| + V forming|γ,PatientProduct=complete| + V sleep|˯ + V WellKnown| +ɼ V WellKnown| + N text|,*order|,$announce| + ADV aValue|ֵ,duration|,TimeLong| + V grow|ɳ,StateFin=adult| + ADV aValue|ֵ,duration|,TimeLong| + N human|,adult| + ADJ qValue|ֵ,amount|,many| +Ʒ N artifact|˹,$produce|,generic|ͳ +ƽ V BeSame|ͬ,sport| +ƽ V BeSame|ͬ,sport| + ADJ aValue|ֵ,ability|,able|,desired| + V succeed|ɹ +ǧ NUM qValue|ֵ,amount|,many| +ǧ NUM qValue|ֵ,amount|,many| +ǧ NUM qValue|ֵ,amount|,many| + V GetMarried| +ȫ V help|,scope=fulfil|ʵ +Ⱥ ADJ qValue|ֵ,amount|,many| +Ⱥ ADJ qValue|ֵ,amount|,many| + V die| + V grow|ɳ,StateFin=adult| + N human|,adult| +֮ V help|,scope=fulfil|ʵ + ADJ aValue|ֵ,duration|,TimeLong| +ճҹ ADJ aValue|ֵ,duration|,TimeLong| +ɫ N attribute|,quality|,&inanimate| + V succeed|ɹ +²㣬 ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,physique|,ripe|,desired| + N time|ʱ,@grow|ɳ + N quantity|,rate|,&entity|ʵ + N symbol|,#quantity| +˫ V become|Ϊ,isa=double| +˫ ADJ qValue|ֵ,amount|,double| +˫ɶ ADJ aValue|ֵ,amount|,double| +˵ N knowledge|֪ʶ + V BeAble|ܹ,content=recite|ж + V become|Ϊ,isa=habit|ϰ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,duration|,TimeLong| +Ϊ V become|Ϊ + ADJ aValue|ֵ,property|,$write|д + N readings| +ķ N law|ɷ + V forming|γ,PatientProduct=image|ͼ +Ч N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V forming|γ,PatientProduct=form|״ + V forming|γ,PatientProduct=form|״ + V start|ʼ,content=leave|뿪 + V become|Ϊ,isa=behavior|ֹ +ҩ N medicine|ҩ +ҹ ADJ aValue|ֵ,duration|,TimeLong| + N clothing| +½ N human|,occupation|ְλ,*produce|,#clothing| + N InstitutePlace|,*produce|,#clothing|,commercial| + N cause|ԭ + N part|,%language| +Ա N human|,#organization|֯ +Ա N place|ط,country|,#organization|֯ + V ResultIn|,result=unfortunate| + V BeAble|ܹ + ADJ qValue|ֵ,amount|,many| + V ResultIn|,result=aspiration|Ը,#addict|Ⱥ,#FondOf|ϲ,undesired|ݬ + V ResultIn|,result=aspiration|Ը,#addict|Ⱥ,#FondOf|ϲ,undesired|ݬ + V be| + V submit| +ʱ V submit| +ʵ V submit| + V request|Ҫ + N document| + V appear| + V submit| + V be|,descriptive=positive|,#disease| + V be|,descriptive=negative|,#disease| + V submit|,purpose=amend| + V submit|,purpose=amend| + V DoSum| + V TakeVehicle| + PREP {means} +˱ ADJ aValue|ֵ,time|ʱ,convenient| +˳ V TakeVehicle|,patient=LandVehicle| +˳ N army|,*TakeVehicle|,#LandVehicle| +˳⳵ V TakeVehicle|,patient=LandVehicle| +˴ V TakeVehicle|,patient=ship| +˵ V TakeVehicle|,patient=LandVehicle| +˵糵 V TakeVehicle|,patient=LandVehicle| +˷ N fact|,DoSum| +˷ɻ V TakeVehicle|,patient=aircraft| +˷ V do|,manner=brave| +˹ V TakeVehicle|,patient=LandVehicle| +˺ N symbol|,*DoSum| +˻ V TakeVehicle|,patient=LandVehicle| +˻ V damage| +˻ ADV aValue|ֵ,time|ʱ,convenient| +˻ N result|,#DoSum| +˼Ƴ̳ V TakeVehicle|,patient=LandVehicle| +˾ N human|,occupation|ְλ,#LandVehicle|,police| +˿ N human|,*TakeVehicle| + V enjoy|,content=chilly| + N human|,family|,male|,desired| +֮Σ V use|,patient=time|ʱ +ʤ ADV aValue|ֵ,time|ʱ,#win|ʤ +ʤǰ V GoForward|ǰ,time=win|ʤ +ʤ׷ V chase|׷,time=win|ʤ + ADV aValue|ֵ,time|ʱ,convenient| + N symbol|,#quantity| +Ա N human|,#occupation|ְλ,#LandVehicle| +϶ ADV use|,patient=time|ʱ + V use|,patient=time|ʱ + ADV use|,patient=time|ʱ + V do|,time=convenient| + V DoSum| +Ա N human|,#occupation|ְλ,#vehicle|ͨ + V TakeVehicle| + N attribute|,distance|,&space|ռ + N attribute|,sequence|,&event|¼ + N character|,surname|,human|,ProperName|ר + N fact|,tour| + N regulation| +̶ N attribute|,degree|̶,&event|¼,&aValue|ֵ +̶ N attribute|,rank|ȼ,&thing| +̿ V control|,instrument=software| +ʽ N symbol| + N attribute|,sequence|,&event|¼ + N software| + V control|,instrument=software| +Ա N human|,#occupation|ְλ,*compile|༭,#software| + V punish| +Ͱ V punish| +Ͱ V punish| +ʹ V punish| +ͷ V punish| +ͽ V punish| +ǰѺ V study|ѧ,source=err|,purpose=exempt|,#err| + V punish| + ADJ aValue|ֵ,clearness|,clear| +γ ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,clearness|,clear| + V explain|˵ + V undergo|,content=filter| +ɳ N material|,#food|ʳƷ,$eat| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ϻ̳Ͽ V fear| +Ͽ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ȼ CONJ {comment|} +Ȼ ADJ {comment|} +Ȼ CONJ {comment|} +Ȼ ADV {comment|} +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N aspiration|Ը,sincere|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N attribute|,behavior|ֹ,sincere|,desired| + N aspiration|Ը,sincere|,desired| + V call|ٻ,ResultEvent=request|Ҫ,#employ| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V KeepOn|ʹ + V SupportWeight|ס + V bear|е + V grateful|м +а V bear|е +а V bear|е +аλ N institution|,content=bear|е +а V human|,#occupation|ְλ,content=bear|е +б V bear|е,content=guarantee|֤ +б N human|,*guarantee|֤ +б V human|,content=bear|е,#guarantee|֤ +е V bear|е +е N human|,*undertake| +е V bear|е +е N place|ط,city|,ProperName|ר,(China|й) +е N human|,*pawn|Ѻ,commercial| +ж V exchange|,commercial| +ж N institution|,exchange|,commercial| +й V bear|е,content=buy| +м V receive|,possession=family| +м V undergo|,content=receive| +н V bear|е,content=build| +н V KeepOn|ʹ +н V MakeAppointment|Լ,content=bear|е +н V receive| + V MakeAppointment|Լ,content=bear|е + V grateful|м +ŵ V MakeAppointment|Լ,content=bear|е +ŵ N information|Ϣ,*MakeAppointment|Լ,#bear|е +ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +ǰ V connect| + V admit| + V admit|,diplomatic|⽻ + V connect| + V SupportWeight|ס + V endure| + V expect| +Ϯ V obey|ѭ +Ϯ V receive| + V connect| + V sell|,commercial| +ӡ V bear|е,content=print|ӡˢ + V bear|е,content=transport| + V SupportWeight|ס + N attribute|,ability|,load|װ,&vehicle|ͨ + V SupportWeight|ס,patient=weight| +ǽ N part|,%building|,skin|Ƥ,*SupportWeight|ס,#weight| + V lend|,commercial| + N human|,*borrow|,commercial| + V ShowOff|ҫ + V indulge| + V ShowOff|ҫ,content=ability| +ǿ V ShowOff|ҫ,content=ability| +ǿ V ShowOff|ҫ,content=power| + V ShowOff|ҫ,content=power| + V indulge| + V IllBehave| +Ӣ V ShowOff|ҫ,content=ability| + V SelfMove|,manner=fast| +һ V satisfied| +Ŀ V look|,content=far|Զ +ĿԶ V look|,content=far|Զ + N tool|þ,*measure|,#weight| +Ӵ N part|,%tool|þ,#measure|,#weight| +Ӹ N part|,%tool|þ,#measure|,#weight| +ӹ N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + N part|,%tool|þ,#measure|,#weight| + V depend| + V destroy|,military| + V eat| + V exhaust| + V soak| + V suffer| +԰׷ V depend|,partner=^self| +԰׷ V eat|,patient=food|ʳƷ +԰ʳ V depend|,partner=^self| +԰ V suffer|,content=fail|ʧ +Ա V BeFull|Ա +ԱŸ V suffer|,content=obstruct|ֹ,#GoInto| +Ա V suffer|,content=fail|ʧ +Բ V OwnNot|,possession=edible|ʳ +Բ V do|,few|,industrial| +Բ V WithstandNot|ס +Բ ADJ aValue|ֵ,ability|,unable|ӹ,$eat| +Բ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Բ V eat|,^Vable| +Բ˶ V unfortunate| +Բ V BeUnable|,content=eat| +Բ V OwnNot|,possession=edible|ʳ +Բ͸ V BeUnable|,content=know|֪ +Բ V BeUnable|,content=eat| +Բ V WithstandNot|ס +Բס V WithstandNot|ס +ԳԵЦ V laugh|Ц +ԳԺȺ V consume|ȡ +Դ N edible|ʳ,clothing| +Դ V jealous|ʼ +Ե ADJ aValue|ֵ,ability|,able|,$eat| +Եÿ ADJ aValue|ֵ,effect|Ч,superior|,desired| +Ե V eat|,Vable| +Ե V withstand|ס +Եס V withstand|ס +Ե V destroy|,military| +Զ V eat|,patient=edible|ʳ +Զ V tease|ȡ,#female|Ů +Է V MakeLiving|ı +Է V eat|,patient=edible|ʳ +Թ˾ V suffer|,content=accuse|ظ,police| +Թ V eat|,location=InstitutePlace|,commercial| +Թ V eat| +Ժ V consume|ȡ +Ժ˯ N fact|,#alive| +Ժ V SeekPleasure|Ѱ,undesired|ݬ +Ժζ V SeekPleasure|Ѱ,undesired|ݬ +Իؿ V earn|׬,possession=payment|,commercial| +Խ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ծ V eat| +Ծ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ծ V fear| +Ծ V surprise| +Կ N human|,*eat| +Կ V suffer|,content=hardship| +Կ V endeavour| +Կͷ V suffer|,content=hardship| +Կ V unfortunate| +ϱ V depend|,partner=payment| + V betray| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ֺ V ^succeed|ɹ + V eat|,patient=food|ʳƷ + V eat|,patient=food|ʳƷ + V eat| +ǹӶ V suffer|,content=kill|ɱ + V accept|,content=invite|,result=consume|ȡ + V depend|,partner=female|Ů +ˮ V attribute|,depth|,&ship| +ˮ V exhaust|,patient=liquid|Һ +ˮ V liquid|Һ +ˮ N mark|־,#liquid|Һ,#ship| + V eat|,patient=vegetable|߲ +͸ V know|֪ +з V slack|͵ + ADJ aValue|ֵ,effect|Ч,superior|,desired| +ĺ V enjoy| +ưͿ V unfortunate| +ի V eat|,patient=vegetable|߲,religion|ڽ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ס N fact|,MakeLiving|ı +׼ V believe| + V bear|е,content=duty| +ﲻ V BeUnable|,content=bear|е,#duty| + V FondOf|ϲ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V mad| +մ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +մ N disease| + V FondOf|ϲ + V FondOf|ϲ + N emotion|,FondOf|ϲ +˵ V TalkNonsense|Ϲ˵ + N thought|ͷ,empty|,wrong| + N emotion|,FondOf|ϲ + V expect| + N thought|ͷ,empty|,wrong| + N human|,*mad| + N human|,NotQuick|ګ,undesired|ݬ + V hold| + V keep| + V manage| +ַ V conduct|ʵʩ,content=law|ɷ +ֹ V own|,possession=fund|ʽ +ּ V request|Ҫ,patient=self| +ּ V manage|,patient=family| +־ ADJ aValue|ֵ,duration|,TimeLong| +־ս N fact|,*attack|,TimeLong|,military| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ V equal| +ǹ V hold|,patient=weapon| +ǹͽ N human|,fierce|,crime|,undesired|ݬ + V err|,sport|,(basketball|) + V request|Ҫ,patient=self| + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V disagree|ͬ + V own| + N human|,*own| +֮Ժ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N tool|þ,*hold|,#food|ʳƷ,*eat| + N tool|þ,*hold|,#food|ʳƷ,*eat| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,#city| + N facilities|ʩ,surfacial| + N room|,%InstitutePlace|,@perform|,entertainment| + N waters|ˮ,surfacial| + N waters|ˮ,surfacial| + N material|,?food|ʳƷ,salty| +֮ N fact|,unfortunate| + N waters|ˮ,surfacial| + N facilities|ʩ,%InstitutePlace|,@wash|ϴ + N facilities|ʩ,%InstitutePlace|,space|ռ,@recreation| + N waters|ˮ,surfacial| + N room|,%InstitutePlace|,@perform|,entertainment| + ADJ aValue|ֵ,earliness|,late| + ADJ aValue|ֵ,speed|ٶ,slow| +ٳ ADJ aValue|ֵ,speed|ٶ,slow| +ٵ ADJ aValue|ֵ,earliness|,late| +ٶ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ٶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ٻ ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + V delay| + V hesitate|ԥ +ɲ V hesitate|ԥ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,circumstances|,relax|,desired| +ڻ ADJ aValue|ֵ,circumstances|,relax|,desired| +ڽ V cease|ͣ,content=prohibit|ֹ + N disease| + V SelfMove|,manner=fast| +۳ V SelfMove|,manner=fast| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + V ThinkOf|˼ + V SelfMove|,manner=fast| + V endeavour| +˼ V ThinkOf|˼ + V VehicleGo|ʻ,manner=fast| + ADJ aValue|ֵ,reputation|,glorious|,desired| +Ԯ V rescue|,manner=fast| + V SelfMove|,manner=fast| + N emotion|,shy|,undesired|ݬ +ܹ N part|,%AnimalHuman|,bone| + V ExpressAgainst|Ǵ + N emotion|,shy|,undesired|ݬ +Ц V LaughAt|Ц + N part|,%AnimalHuman|,*bite|ҧ + N part|,%inanimate| + N part|,%implement| + ADJ aValue|ֵ,form|״ + N part|,%AnimalHuman|,*bite|ҧ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +̸ V boast| + N shape| + N tool|þ,*measure|,generic|ͳ + CLAS unit|λ,&length| +ߴ N attribute|,size|ߴ,&physical| +߶ N attribute|,standard|׼,&physical| +߹ N part|,%AnimalHuman|,bone| + N attribute|,size|ߴ,&physical| + N tool|þ,*measure|,#length| + N letter|ż + N InsectWorm|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,fullness|,empty| + V exposure|¶ +౳ V exposure|¶,#body| +ಲ V exposure|¶,#body| +ಲ V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +൨ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N location|λ,#earth| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Equatorial Guinean|) + N place|ط,country|,ProperName|ר,(Africa|) +ǧ ADJ aValue|ֵ,circumstances|,barren|,undesired|ݬ +ඹ N part|,%vegetable|߲,embryo|,$eat| +ඹ N vegetable|߲ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,color|ɫ,brown| + ADJ aValue|ֵ,color|ɫ,brown| + ADJ aValue|ֵ,color|ɫ,red| + N metal|,pure| + N humanized|,undesired|ݬ + N human|,undesired|ݬ + N disease| + N chemical|ѧ +¶ ADJ aValue|ֵ,fullness|,empty| +¶ V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,opened| + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,opened| + V exposure|¶ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N celestial|,hot| + N medicine|ҩ,(China|й) +¶ V exposure|¶,#body| + V exposure|¶,#body| +ֿȭ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N tree| + V exposure|¶ + N place|ط,country|,ProperName|ר,(Asia|) +С N material|,?food|ʳƷ +Ѫ N chemical|ѧ + N human|,young| +֮ ADJ emotion|,pure|,desired| + N wealth|Ǯ,$InDebt| + N food|ʳƷ,#fish| + N part|,%bird|,%InsectWorm|,wing|,*fly| + N part|,%aircraft|,wing|,*fly| + N part|,%bird|,%InsectWorm|,wing|,*fly| + N part|,%plant|ֲ,embryo| + N part|,%InsectWorm|,#wing|,#fly| + N part|,%bird|,#wing|,#fly| + N part|,%bird|,wing|,*fly| + V ExpressAgainst|Ǵ + V discharge| + V provide| + V provide|,possession=fund|ʽ + V ExpressAgainst|Ǵ + V discharge| + V expel| + V ExpressAgainst|Ǵ + N human|,*ExpressAgainst|Ǵ + V provide|,possession=fund|ʽ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,temperature|¶,hot| +ʢ ADJ aValue|ֵ,temperature|¶,hot| + ADJ aValue|ֵ,ability|,able|,control| + ADJ aValue|ֵ,temperature|¶,hot| + V RegardAs|,means=pretend|װ + ADJ aValue|ֵ,range|,sufficient| + N character|,surname|,human|,ProperName|ר + V feed|ι + V undertake| + V exist|,quantity=many| +䵱 V RegardAs| + V enrich|ʵ,material=strength| + V feed|ι,patient=electricity| + N tool|þ,*feed|ι,#electricity| + V ignorant|֪,#listen| + ADV aValue|ֵ,degree|̶,extreme| + ADJ qValue|ֵ,amount|,sufficient| +乫 V levy|,police| +伢 V consume|ȡ + V exile| + V CauseToExist|ʹ,quantity=many| + V exist|,quantity=many| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V believe| + ADJ qValue|ֵ,amount|,many|,desired| +伫 ADV aValue|ֵ,range|,extensive| + ADV aValue|ֵ,range|,extensive| + V feed|ι,patient=gas| + V undertake| + V fill| +ʵ V enrich|ʵ +ʵ ADJ qValue|ֵ,amount|,sufficient| + V fill| +Ѫ N disease|,#bleed|Ѫ + ADJ qValue|ֵ,amount|,sufficient| + V spill| +ӯ ADJ qValue|ֵ,amount|,sufficient| +ӯ V spill| +ԣ ADJ qValue|ֵ,amount|,sufficient| + ADJ qValue|ֵ,amount|,sufficient| + V CauseToAppear| + V GoForward|ǰ + ADJ aValue|ֵ,strength|,strong|ǿ + ADJ aValue|ֵ,taste|ζ,strong|ǿ + V cook| + N facilities|ʩ,route|·,important| + V facing| + N land|½ + V wash|ϴ + PREP {cause} + PREP {direction} + N process|,wave|ڶ,#machine| + V GoForward|ǰ +崲 N machine|,*press|ѹ + V run|,manner=fast| +嵭 V MakeLower| +嵭 V dilute|嵭 +嵴 V wash|ϴ +嶯 N emotion|,excited| +嶯 V excited| +巸 V offend| + V attack|,military| +ǹ N weapon|,*firing| + V attack|,military| + V drink|,medical|ҽ + V damage| +ͷ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V attack|,military| + V bump|ײ + V damage| + N attribute|,strength|,strong|ǿ,entity|ʵ + V pile|ѷ + N part|,%land|½ +ƽԭ N land|½ + N stone|ʯ + N medicine|ҩ,liquid|Һ + V damage| + V damage| + V swim|,sport| + N swim|,sport| +˰ N tool|þ,swim|,sport| + N attribute|,strength|,&physical| + V cool|,wash|ϴ + V split|ƿ +ɢ V spread| + N place|ط,city|,ProperName|ר,(Japan|ձ) +ˢ V damage| +ˢ V wash|ϴ + ADJ aValue|ֵ,height|߶,tall| +ͻ V FitNot| +ͻ V fight| +ϴ V CauseToAppear| +ϴ V wash|ϴ +ѹ V press|ѹ,industrial| + V cool|,wash|ϴ + V coordinate|Э,commercial| +ײ V bump|ײ +ײ V offend| + V facing| + N part|,%machine|,*press|ѹ + N InsectWorm| + N medicine|ҩ,(China|й) +溦 N phenomena|,undesired|ݬ,#InsectWorm|,#unfortunate| + N part|,%InsectWorm|,embryo| + N part|,%AnimalHuman|,*bite|ҧ,#disease| + N phenomena|,undesired|ݬ,#InsectWorm|,#unfortunate| + V bite|ҧ + N InsectWorm| + ADJ aValue|ֵ,height|߶,tall| + V respect| + V respect| + N human|,*respect| + V believe| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +羴 V respect| +ɽ N land|½ + V endorse|ӵ + V respect|,target=foreign| + V respect|,target=foreign| + V like|ϧ +谮 V like|ϧ + N entity|ʵ,$like|ϧ,desired| +費 V calm| + N animal|,$like|ϧ,desired| + V believe| + V like|ϧ + V PickOut|γ + V addict|Ⱥ + V beat| + V choose|ѡ + V collect| + V grow|ɳ + V shrink|С + V twitch|鴤 +鲻 V BeUnable|,content=use|,#time|ʱ +鲻 V BeUnable|,content=leave|뿪 + V check| + V check| + V PickOut|γ + V use|,patient=time|ʱ + V use|,patient=time|ʱ +鴤 V twitch|鴤 + V weep| + V beat| + V transport| +鶡 V include|,manner=force|ǿ +鶯 V twitch|鴤 +鶷 N part|,%furniture|Ҿ,cubic|,@put| + V IllBehave| + V drain|ų,patient=gas| + V twitch|鴤 + N tool|þ,*drain|ų,#gas| + V check| +齱 V gamble|IJ + V twitch|鴤 + V use|,patient=time|ʱ + ADV aValue|ֵ,behavior|ֹ,sudden| + N tool|þ,*drain|ų,#gas| + V weep| +ǩ V gamble|IJ +ȡ V gather|ɼ +ɴ N tool|þ,*decorate|װ + V leave|뿪 +ˮ V drain|ų,patient=liquid|Һ +ˮ N machine|,*drain|ų,#liquid|Һ +ˮͰ N tool|þ,cubic|,@put|,#waste|,#excrete|й +˰ V levy|,possession=expenditure|,commercial| + V grow|ɳ,agricultural|ũ + V shrink|С + N part|,%furniture|Ҿ,cubic|,@put| +ͷ V collect|,commercial| +ͷ N part|,%linear|,#electricity|,branch|֧ + V use|,patient=time|ʱ + ADJ aValue|ֵ,content|,abstract| + N human|,entertainment|,literature| +ѡ V choose|ѡ +ѿ V grow|ɳ,agricultural|ũ + V weep| + V addict|Ⱥ + V check| +ҭ V weep| +׳ V include|,manner=force|ǿ +޷ V grow|ɳ,agricultural|ũ + V twitch|鴤 + V congratulate|ף,instrument=drinks|Ʒ + V exchange| + V fulfil|ʵ + N payment| +걨 V recompense| + V sell|,manner=recompense|,commercial| + V reply|,instrument=text| + V thank|л,instrument=artifact|˹ + V reply| + V reply| + N payment| + N payment| + V recompense| +л V thank|л + N fact|,associate| + N fact|,congratulate|ף,means=drink| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N land|½,#crop|ׯ + N time|ʱ,past| + N time|ʱ,past| + N character|,(China|й) + V hesitate|ԥ + V hesitate|ԥ,content=SelfMove| +ǰ V hesitate|ԥ,content=SelfMove| +־ V satisfied| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + ADJ aValue|ֵ,density|ܶ,dense| + N attribute|,concentration|Ũ,&physical| + ADJ aValue|ֵ,density|ܶ,dense| + V worried|ż + N emotion|,upset| +ٽ V upset| + N emotion|,upset| + N emotion|,upset| +üչ V upset| +ü V upset| +ü V upset| + V upset| + N attribute|,countenance|,#upset|,&human| +˼ N emotion|,upset| + N emotion|,sad|dz + N emotion|,sad|dz + N coupon|Ʊ֤ + V plan|ƻ + V prepare|׼ + V prepare|׼ +ﱸ V prepare|׼ +ﱸ N fact|,*prepare|׼ + V gather|ɼ,commercial| +ﻮ V plan|ƻ +O V gather|ɼ,commercial| +ィ V establish| + V gather|ɼ,possession=fund|ʽ + N coupon|Ʊ֤ +ļ V gather|ɼ + V discuss| + V calculate| +ί N part|,%institution|,*plan|ƻ + V gather|ɼ,possession=fund|ʽ + V establish| + N character|,surname|,human|,ProperName|ר + N emotion|,hate|,undesired|ݬ + N human|,enemy| + N human|,enemy| + N emotion|,hate|,undesired|ݬ + N human|,enemy| +ɱ V kill|ɱ,cause=revenge| + V hate| +϶ N fact|,quarrel| +Թ N emotion|,hate|,undesired|ݬ + N material|,?clothing| + N material|,?clothing| + N material|,?clothing| + V look| + V perception|֪,means=look| +ն V use|,patient=time|ʱ + V use|,patient=time|ʱ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + N fact|,undesired|ݬ + N human|,entertainment| +˹ N human|,ugly|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V slander|̰ + N text|,forthright|ˬ + N human|,entertainment| + N fact|,undesired|ݬ + N shows| + N human|,undesired|ݬ +ª ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ʱ N time|ʱ,hour|ʱ,morning| + N fact|,disgraced|,undesired|ݬ +̬ N attribute|,bearing|̬,disgraced|,&human| +̬ٳ V appear|,manner=disgraced| +̬¶ V appear|,manner=disgraced| + N fact|,disgraced|,undesired|ݬ + N fact|,disgraced|,undesired|ݬ + ADV aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N InsectWorm|,undesired|ݬ,*sting| + N tree|,?medicine|ҩ,$eat| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V ExpressAgainst|Ǵ,manner=strong|ǿ + V ShowOff|ҫ +Զ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +Ƥ N human| + N method|,NotQuick|ګ +¦ N human|,NotQuick|ګ,*recreation| + N gas|,stinky| +Ѭ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ζͶ V fit|ʺ,scope=bad| + N part|,%AnimalHuman|,nerve| + N gas|,#weather| + N gas|,#weather| + N beast| + ADJ aValue|ֵ,rank|ȼ,elementary| + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADV aValue|ֵ,time|ʱ,InFront|ǰ + N character|,surname|,human|,ProperName|ר + N part|,%time|ʱ,head|ͷ + V print|ӡˢ + ADJ aValue|ֵ,rank|ȼ,elementary| + N human|,female|Ů,*GiveBirth|,medical|ҽ + N part|,%human|,#female|Ů,liquid|Һ,#mating| +é® ADJ aValue|ֵ,ability|,unable|ӹ + V establish| + N time|ʱ,spring|,early| + ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,rank|ȼ,elementary| +Ƚ N affairs|,education|,elementary| + N time|ʱ,winter|,early| + N human|,crime|,undesired|ݬ + N time|ʱ,season|,InFront|ǰ,hot| + N text| + N fact|,GetMarried| + ADJ aValue|ֵ,rank|ȼ,elementary| +Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +ѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| + V CauseToAppear| +Ч V exposure|¶,experiencer=succeed|ɹ + N human|,friend| +߹ģ V succeed|ɹ + N fact|,love| +¶ V CauseToAppear| +¶â V CauseToAppear|,patient=ability| +¶ͷ V CauseToAppear|,patient=ability| + N time|ʱ + N time|ʱ,season| + N fact|,estimate| + N time|ʱ,InFront|ǰ + N time|ʱ,autumn|,early| + N fact|,#compete| + N judge|ö,police| + ADJ aValue|ֵ,time|ʱ,new| +ţ N human|,brave| +ţ ADJ aValue|ֵ,courage|,brave|,desired| +֮ N human|,brave| +ʼ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ʼ V ize|̬ + V exam| + N time|ʱ,summer|,early| +С N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +ѡ N select|ѡ +ѧ V study|ѧ +ѧ N human|,*study|ѧ +һ N time|ʱ,festival|,@congratulate|ף +Ը N aspiration|Ը,expect|,original|ԭ +ս N fact|,compete|,sport| +ս N fact|,fight|,military| + V request|Ҫ,ResultEvent=$cure|ҽ + N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| + N human|,*study|ѧ,education| + N aspiration|Ը,original|ԭ + V GoOut|ȥ + V GoThrough| + V MoveItOut| + ADV aValue|ֵ,direction|,external| + V announce| + V create| + V happen| + V publish| + V spend| + V surpass|ǿ + STRU {Vachieve|} + STRU {Vdirection|,external|} + STRU {over|} + V publish| + N human|,#occupation|ְλ,*publish|,commercial| + N InstitutePlace|,publish| + N publications|鿯 + V announce|,content=document| + V announce|,content=result|,education| + V dispatch|Dz,patient=army|,military| + V exercise| +ͷ V err| + V err| + V SelfMove|,#affairs|,#dispatch|Dz + V err| + N payment|,*SelfMove|,#affairs|,#dispatch|Dz + V produce| + V arrive|,location=InstitutePlace|,#perform|,entertainment| + V arrive|,location=facilities|ʩ,#compete|,sport| + N payment|,*perform|,entertainment| + V GoOut|ȥ,LocationIni=factory| + N attribute|,price|۸,&artifact|˹,commercial| +۸ N attribute|,price|۸,&artifact|˹,commercial| + N quantity|,rate|,&transport|,commercial| + V dispatch|Dz,patient=LandVehicle| + V leave|뿪,means=drive|Ԧ + V engage|,content=affairs|,#LandVehicle| + V suffer|,content=disgraced| + N location|λ,@ExistAppear| + V err| + V sell|,#InstitutePlace| + V fulfil|ʵ,patient=study|ѧ,#engage| + V teach|,content=thought|ͷ + N location|λ,@ExistAppear|,#text| + V pawn|Ѻ,#building| + V lend|,#building| + V dispatch|Dz + V start|ʼ,content=leave|뿪 + V disobey|Υ,content=MakeAppointment|Լ + V start|ʼ,content=leave|뿪 + N standpoint| + V LeaveFor|ǰ,purpose=visit|,diplomatic|⽻ +ͷ V ShowOff|ҫ + V end|ս,experiencer=time|ʱ,#hot| + V leave|뿪,LocationIni=facilities|ʩ,#ship| + V FitNot| + V MarryTo| + V engage|,content=affairs| + V excrete|й,patient=waste| +¶ V suffer|,content=disgraced| + V do|,manner=improper| + V leave|뿪,LocationIni=route|·,#err| +Ϊ V attribute|,behavior|ֹ,improper|,undesired|ݬ,&human| + V LeaveFor|ǰ,LocationFin=foreign| + V LeaveFor|ǰ,LocationFin=waters|ˮ + V excrete|й,patient=waste| + V start|ʼ,content=VehicleGo|ʻ + V start|ʼ,content=fly| + ADJ aValue|ֵ,behavior|ֹ,sudden| +֮ ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,behavior|ֹ,sudden| + V fulfil|ʵ,patient=many| + V transport|,artifact|˹ + V attack| + V engage|,content=religion|ڽ,religion|ڽ + N human|,religion|ڽ + V propose|,content=price|۸,commercial| + V MarryTo| + V undertake|,content=important| + V err|,sport| + V lend| + V leave|뿪,LocationIni=foreign| + V end|ս,experiencer=time|ʱ,#cold| + V suffer|,content=discharge|,sport| + V submit| + N part|,%place|ط,mouth| + V speak|˵ + V transport|,commercial| +ڳ ADJ aValue|ֵ,ability|,able|,speak|˵,desired| +ڶ N quantity|,amount|,transport|,&physical| + V speak|˵,result=offend| +Ʒ V artifact|˹,$transport|,generic|ͳ,commercial| + V GoOut|ȥ + V appear| + STRU {Vachieve|} + STRU {Vdirection|,external|} + V TakeAway|ᶯ,agricultural|ũ + V grow|ɳ,agricultural|ũ + ADJ aValue|ֵ,kind|,special| + V endeavour| + V GoOut|ȥ,military| + V engage|,content=catch|׽ס,#beast|,agricultural|ũ + V slide| + V ComeToWorld| + V appear| +¦ V err| +· N facilities|ʩ,route|· +· N method| + V err| + V become|Ϊ + V do| + V betray| + V sell| +ë V OutOfOrder| +÷ V end|ս,experiencer=time|ʱ,#RainSnow|ѩ +û V appear| + V leave|뿪,LocationIni=family| + V start|ʼ,content=leave|뿪 + V MarryTo| + V appear| + V bear|е + V grow|ɳ,agricultural|ũ + V WellKnown| + ADJ WellKnown| +ı V help|,scope=plan|ƻ +ıײ V help|,scope=plan|ƻ + N fact|,calculate|,collect|,pay|,#wealth|Ǯ + N human|,#occupation|ְλ,*calculate|,*collect|,*pay|,#wealth|Ǯ +̨ N part|,%InstitutePlace|,commercial|,*calculate|,*collect|,*pay|,#wealth|Ǯ +Ա N human|,#occupation|ְλ,*calculate|,*collect|,*pay|,#wealth|Ǯ + V sell|,#InstitutePlace| +Ʒ N artifact|˹,$produce|,generic|ͳ +Ʒ V produce| +䲻 ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,kind|,special| +ʤ V win|ʤ,means=SelfMove| + V ExpressAnger|ʾŭ +Ǯ V provide|,possession=fund|ʽ + V engage|,content=affairs| + N quantity|,rate|,&engage|,#affairs| +ȥ V GoOut|ȥ +ȥ STRU {Vdirection|,external|} +ȥԷ V eat|,location=InstitutePlace| +Ȧ V do|,manner=improper| +ȱ ADJ aValue|ֵ,occupation|ְλ,empty| + V sell| + V aValue|ֵ,behavior|ֹ,sudden| + V undertake| + V SelfMoveInManner|ʽ + N attribute|,similarity|ͬ,different|,&entity|ʵ +뾳 V GoInto|,LocationFin=country|,leave|뿪,LocationIni=country| + N part|,%place|ط,%building|,mouth| +֤ N document|,*GoInto| + V GoOut|ȥ,LocationIni=facilities|ʩ + V include|,ResultWhole=compete|,sport| +ɫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɽ V leave|뿪,LocationIni=land|½ +ɽ V undertake|,content=official| + N attribute|,origin|,&human| +߹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V stupefied|ľȻ +뻯 ADJ aValue|ֵ,content|,good|,desired| + V MakeSound| + V speak|˵ + V ComeToWorld| + N place|ط,@ComeToWorld| + N quantity|,rate|,&GiveBirth| + N time|ʱ,@ComeToWorld| + N time|ʱ,@ComeToWorld| + V endeavour| +ʱ N time|ʱ,@ComeToWorld| +ʦ V cease|ͣ,content=study|ѧ +ʦ V dispatch|Dz,patient=army|,military| +ʦ V defeated|,military| +ʹ V undertake|,content=official|,politics| +ʾ V display|չʾ + V BeIndependent| + V ComeToWorld| + V suffer|,content=dangerous|Σ + V beat| + V give| + V sell| +ֲ ADJ aValue|ֵ,ability|,able|,desired| + V sell| +̨ V announce| +̨ V appear|,location=facilities|ʩ,purpose=perform|,entertainment| + V flee| + V become|Ϊ +ͥ V appear|,location=institution|,police| +֤ͥ V prove|֤,#police| +ͷ V BeRecovered|ԭ,StateIni=unfortunate| +ͷ V appear| +ͷ ADJ qValue|ֵ,amount|,over| +ͷ¶ V appear| + V exposure|¶ + N physical| + V CauseNotToBe|ʹ֮,police| + V become|Ϊ + V sell| + V leave|뿪,LocationIni=family| + V flee| + V err| +Ϣ N attribute|,outlook|ǰ,&human| +Ϣ V prosper| +ϯ V engage| + V BeRecovered|ԭ,StateIni=dangerous|Σ + V suffer|,StateIni=dangerous|Σ + V appear| + V succeed|ɹ,scope=compete|,sport| +Ȩ N rights|Ȩ,*include|,#compete|,sport| + V tour| +Ѫ V bleed|Ѫ +Ѫ V spend| +Ѳ V investigate| + V RegardAs|,entertainment| + V perform|,entertainment| + V LeaveFor|ǰ,LocationFin=foreign| + V ShowOff|ҫ +ӭ V welcome|ӭ + V tour| + V ResultFrom|Ե + V start|ʼ + V undergo|,content=release|ͷ,police| +Զ V leave|뿪,LocationIni=family| +Ժ V leave|뿪,LocationIni=InstitutePlace|,medical|ҽ +ս V engage|,content=fight| + V visit|,purpose=cure|ҽ,medical|ҽ + V LeaveFor|ǰ,purpose=fight|,military| + ADJ aValue|ֵ,kind|,special| + V provide|,possession=fund|ʽ + V ResultFrom|Ե + V leave|뿪 + ADJ lend|,commercial| + V lend|,commercial| +⳵ N LandVehicle|,$lend|,commercial| +⳵˾ N human|,*drive|Ԧ,#LandVehicle| + N LandVehicle|,$lend|,commercial| + N human|,*lend|,commercial| + V sell|,commercial| + N furniture|Ҿ,cubic|,@put| + N part|,%house|,eye|,#display|չʾ + N part|,%house|,eye|,@display|չʾ + N furniture|Ҿ,cubic|,@put| + N room|,@cook| + N room|,@cook| +þ N tool|þ,*cook| + N tool|þ,*cook| +ʦ N human|,#occupation|ְλ,*cook| + N human|,#occupation|ְλ,*cook| + N character|,(China|й) + V remove| + V remove|,agricultural|ũ + N tool|þ,*remove|,#FlowerGrass| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=treacherous| +ǿ V remove|,patient=fierce|,help| +ͷ N tool|þ,*remove|,#FlowerGrass| + ADJ aValue|ֵ,age|,young|,#animal| + N bird|,young| + N human|,unable|ӹ + N bird|,young| + N part|,%thing|,embryo| + N entity|ʵ + N part|,%thing|,embryo| +ӥ N bird|,young| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V DoSum| + V remove| + PREP {besides} + PREP {except} + V remove|,patient=fierce|,help| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=FlowerGrass|,agricultural|ũ +ݻ N machine|,*remove|,#FlowerGrass|,agricultural|ũ +ݼ N medicine|ҩ,*remove|,#FlowerGrass|,agricultural|ũ + N human|,*remove|,#FlowerGrass| + V remove|,patient=waste| + N machine|,*remove|,#waste| + N medicine|ҩ,*remove|,#InsectWorm| + ADJ aValue|ֵ,property|,remove|,#stinky| + V remove|,patient=stinky| + PREP {except} +˶ ADV {except} + ADV {except} +֮ ADV {except} + V remove|,patient=evil| + N method|,*DoSum| + CONJ {condition|} + V cure|ҽ + V remove| + N symbol|,*DoSum| + V DoSum| +ɲ V improve| +ɸ V improve| + PREP {besides} + PREP {except} + PREP {besides} + PREP {except} + V discharge| +ȥ V remove| +ȥ PREP {except} +ȴ PREP {except} + N symbol|,#quantity| +˪ V remove|,patient=ice| + PREP {except} +Ϧ N time|ʱ,day|,night| +Ϧ N fact|,*recreation| + V DoSum| + N character|,surname|,human|,ProperName|ר + N fact|,unfortunate| + ADJ aValue|ֵ,attire|װ,neat|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N publications|鿯,ProperName|ר,(China|й) + N shows| + N part|,%thing|,base| + V character|,surname|,human|,ProperName|ר + V store| + V store| + N fund|ʽ + N edible|ʳ + V store| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V store| + V store| + N human|,SetAside|,#wealth|Ǯ,#commercial| + N human|,royal|,male| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V SetAside|,commercial| + N money|,$SetAside| + V InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| + N material|,liquid|Һ,$burn| +͹ N tool|þ,*store|,#material|,liquid|Һ + V store|,transport| + V stand|վ,manner=upright| + V stand|վ,manner=upright| + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V excite|ж + V touch| + V unfortunate|,means=touch|,cause=electricity| + V excite|ж + V touch| + V TurnOn| + N part|,%implement|,*TurnOn| + V disobey|Υ + V touch| + V unfortunate|,cause=bump|ײ,#stone|ʯ,#waters|ˮ + N part|,%animal|,*feel| + V excited| + N experience|,feel| + N part|,%animal|,*feel| +ͨ V know|֪,means=deduce| +ùͷ V unfortunate| +ý N chemical|ѧ + V feel| +Ŀ V perception|֪ +Ŀ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ŭ V irritate|ŭ + N part|,%animal|,*feel| +ʹ N fact|,painful|ʹ +ʹ V touch|,result=painful|ʹ + V err|,sport| + N part|,%animal|,*feel| + N cure|ҽ,means=touch| + V associate| + V handle| + N location|λ + N part|,%organization|֯ + N place|ط + V punish| + V reside|ס + V situated| + N human|,#occupation|ְλ,official|,*manage| + ADV aValue|ֵ,location|λ,all|ȫ + ADV aValue|ֵ,range|,all|ȫ + V punish| + N document|,#medicine|ҩ,medical|ҽ + V write|д,ContentProduct=document|,#medicine|ҩ,medical|ҽ + V handle| + V punish| +Ȩ N rights|Ȩ,*handle| + N attribute|,circumstances|,&entity|ʵ + V kill|ɱ,police| + V handle| + V remove| + V sell|,commercial| +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + N machine| +۸ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ʒ N artifact|˹,$sell|,cheap|,commercial| + N machine| +Ʒ N artifact|˹,$sell|,cheap|,commercial| +Ʒ V sell|,possession=artifact|˹,commercial| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N human|,female|Ů,^mating| +Ů N land|½,new| +ŮĤ N part|,%human|,#female|Ů,#mating| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N readings| + V handle|,patient=self| + N handle|,patient=affairs| + N time|ʱ,day| + V kill|ɱ,police| + N place|ط +Ļ ADJ aValue|ֵ,behavior|ֹ,active|Ը + V punish|,police| + V punish|,means=police| + V situated| + V situated| +̩֮Ȼ V calm| + V handle| + V punish| + V remove| + V punish| + V guess|² + V put| + V guess|² + V estimate| +Ħ V think|˼ +ֶ V CausePartMove|,PatientPartof=hand| + N land|½ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,linear| + N FlowerGrass|,?medicine|ҩ + N edible|ʳ + N place|ط,ProperName|ר,(China|й) + N shows| +Ϣ ADV qValue|ֵ,amount|,many| +ܺ N FlowerGrass|,?medicine|ҩ + V PutOn| + V cross|Խ + V stab| +ȥ V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ +ס V BeUnable|,content=PutOn| + V GoInto| + V attack|,means=GoInto|,military| + V insert| + V replace| + N text| + V stab|,medical|ҽ + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| + V GoThrough| + V cross|Խ +׵ N weapon|,$firing| + N ill|̬,medical|ҽ + N split|ƿ,StateFin=mouth| +Ա N human|,#occupation|ְλ,*stab| +ɽ N beast| +ɽ N medicine|ҩ + V PutOn|,Vgoingon|չ + V ToAndFro| +͸ V stab| +СЬ V damage|,means=power| +Т V PutOn|,instrument=clothing|,purpose=condole|° + V cross|Խ +¾ N tool|þ,*MakeUp|ױ,#look| +Խ V cross|Խ + V fasten|˩ + V mediate| + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| +Ŵ N attribute|,attire|װ,&human| + N human|,*PutOn| + N part|,%building|,bone| + N part|,%building|,bone| + N part|,%building|,bone| + V CauseAffect|Ⱦ,medical|ҽ + V PassOn| + V call|ٻ + V disseminate| + V express|ʾ + V teach| + N text|,@record|¼ + V transmit| + ADV {comment|} + V disseminate| + V disseminate| + N human|,*disseminate| + V disseminate| + V undergo|,content=transmit|,content=sing| + N part|,%AnimalHuman|,nerve| + V tell| + N part|,%building|,#mouth| + N readings| + V transmit| + N attribute|,performance|,&transmit|,#electricity| + V disseminate|,content=religion|ڽ,religion|ڽ + V transmit| + N transmit| +ϵͳ N machine| + N part|,%machine| + V sense|о + N part|,%implement|,*sense|о + V transmit| + V tell|,content=information|Ϣ + N tool|þ,*LookFor|Ѱ,#cry| + V tell|,content=information|Ϣ + V call|ٻ,police| + N text|,@record|¼ +ұ N artifact|˹,precious| + V disseminate|,content=religion|ڽ,religion|ڽ +ʿ N human|,*disseminate|,religion|ڽ + V undergo|,content=disseminate| + V disseminate| + V order| +ý N method|,*disseminate| +Ʊ N document|,*call|ٻ,police| + ADJ aValue|ֵ,kind|,special| + N text|,@record|¼ + V express|ʾ,content=emotion| + V transmit|,sport| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ N disease| +ȾԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ⱦ ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ + V transmit|,content=hot| + V CauseAffect|Ⱦ,medical|ҽ + V call|ٻ,patient=human| + N human|,*PassOn| + V teach| + N part|,%AnimalHuman|,nerve| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N tool|þ,*disseminate| +Ͳ N human|,*disseminate|,undesired|ݬ +Ͳ N tool|þ,*disseminate| + V undergo|,content=PassOn| +䱦 N treasure|䱦,*undergo|,#PassOn| + V teach| + V transmit| +˵ N text|,@record|¼ +˵ ADV {comment|} + V enjoy|,content=praise|佱 + V transmit| +ʹ N part|,%implement|,*transmit| + V disseminate| +ͳ ADJ aValue|ֵ,property|,$PassOn| +ͳ N regulation|,$PassOn| +Ϊѻ V undergo|,content=disseminate|,#praise|佱 +Ϊ̸ V undergo|,content=disseminate|,#praise|佱 + N information|Ϣ,$disseminate| + ADV {comment|} +Ѷ V call|ٻ,police| + N information|Ϣ,$disseminate| + V tell|,content=information|Ϣ + V disseminate| + V transmit|,purpose=read| + N image|ͼ,$post|ʼ + N letter|ż + V post|ʼ + N machine|,*post|ʼ + N ship| + N part|,%ship|,body| + N ship|,mass| + N ship|,mass| + N place|ط,@stay|ͣ,#ship| + N room|,%ship| + N human|,#occupation|ְλ,official|,#ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N attribute|,number|,&ship| + N human|,*own|,#ship| + N ship|,mass| + N InstitutePlace|,ship|,commercial| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N music| + N music| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N human|,#ship| + N human|,#ship| + N human|,*drive|Ԧ,#ship| + N part|,%ship|,body| +ϴ N human|,*drive|Ԧ,#ship| + N attribute|,age|,&ship| + N human|,#ship| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#ship| + N time|ʱ,#ship|,@VehicleGo|ʻ +ڱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ + N part|,%ship|,body| + N part|,%ship|,head|ͷ +̨ N facilities|ʩ,space|ռ,@produce|,#ship| + N part|,%ship|,body| +ͷ N part|,%ship|,head|ͷ +β N part|,%ship|,tail|β +λ N location|λ,#ship| +λ N room|,%ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N part|,%ship|,edge| +Ա N human|,#occupation|ְλ,#ship| + V transport|,instrument=ship| +բ N facilities|ʩ,space|ռ,#waters|ˮ,#ship|,@VehicleGo|ʻ +ֻ N ship|,mass| +ֻ N quantity|,amount|,&ship| + N human|,*own|,#ship| + N human|,official|,#ship| + V pant| + V pant| + V pant| + V rest|Ϣ +Ϣ V pant| + CLAS NounUnit|,&(grape|),&(key|Կ) + V RegardAs|,entertainment| + V collude| + V connect| + V mix| + V roam| + V collude|,scope=admit|,#police| + V exchange| + V teach| + V connect| + V visit|,target=family| + V visit|,target=family| +ͨ V collude| +ͨһ V collude| +ζ ADJ aValue|ֵ,odor|ζ,mixed|,undesired|ݬ + ADV aValue|ֵ,sequence| + V RegardAs|,entertainment| + ADJ aValue|ֵ,kind|,mixed| + N tool|þ,*decorate|װ,$PutOn| + N disease| + N disease|,#wounded| + N trace|,#disease| + N trace|,#disease| + N trace|,#disease| + N disease| +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ + N part|,%house|,eye| + N part|,%building| + N part|,%house|,#eye| + N part|,%house|,eye| + N tool|þ,*decorate|װ,#house|,#eye| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N part|,%entity|ʵ,eye| + N part|,%house|,eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɴ N tool|þ,*cover|ڸ,*decorate|װ,#eye| +̨ N part|,%house|,#eye| +γ N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + CLAS NounUnit|,&house| + CLAS NounUnit|,&house|,mass| + V wave|ڶ + CLAS NounUnit|,&tool|þ,#cover|ڸ,#sleep|˯ + N furniture|Ҿ,space|ռ,@sleep|˯ + N shape|,space|ռ + N tool|þ,*cover|ڸ,#sleep|˯ +֮ N text|,secret| + N part|,%furniture|Ҿ,#sleep|˯,body| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%machine|,industrial|,#cut|,#produce| +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N tool|þ,*illuminate|,#furniture|Ҿ,#sleep|˯ +ͷ N furniture|Ҿ,cubic|,@store| +λ N location|λ,space|ռ,#sleep|˯ + N tool|þ,*cover|ڸ,#sleep|˯ + N machine|,industrial|,*cut|,*produce| + N furniture|Ҿ,space|ռ,@sleep|˯ + V GoForward|ǰ + V create| + V endeavour| +һ· V create|,PatientProduct=route|· + V MakeLiving|ı + V MakeLiving|ı + V err| + N human|,brave| + V MakeLiving|ı + V GoInto| + N attribute|,behavior|ֹ,brave|,&human| + V drill|ϰ +· V create|,PatientProduct=route|· +߱ V roam| + V GoInto| + V create| + N disease|,#wounded| + V start|ʼ + V establish| + V compile|༭ + V fulfil|ʵ + N trace|,#disease| + V earn|׬,possession=money|,source=foreign| +¼ V create|,PatientProduct=result|,#exercise|,sport| + N thought|ͷ,new|,special| + V establish| + N affairs|,new|,special| + V start|ʼ,content=publish| + N publications|鿯,#begin|ʼ + N location|λ,#disease|,#wounded| + V earn|׬ + V establish| + N part|,%AnimalHuman|,#wounded| + N disease|,#wounded| + N emotion|,#wounded| + V establish| +ʼ V begin|ʼ +ʼ N part|,%publications|鿯,religion|ڽ +ʼ N human|,*start|ʼ + V earn|׬ + V MakeBetter|Ż +ҵ V start|ʼ,content=affairs| + N thought|ͷ,new|,special| + V propose| + N text|,$propose|,$discuss|,$debate| + V create|,PatientProduct=good| + V create| + N attribute|,ability|,able|,#create|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ + V create| + V compile|༭ + N information|Ϣ + V boast| + V exhale| + V fail|ʧ + V recreation|,#MusicTool|,entertainment| + V recreation|,instrument=MusicTool|,entertainment| + V please|ȡ + V attack|,#weather| + V recreation|,instrument=MusicTool|,entertainment| + V recreation|,#MusicTool|,entertainment| + V MakeUp|ױ,means=dry| + V ill|̬,medical|ҽ + V tell| + N tool|þ,*MakeUp|ױ,#dry| + N tool|þ,*exhale| + V shake|ҡ + V MakeUp|ױ,means=dry| + N human|,#occupation|ְλ,entertainment| + N human|,*boast|,undesired|ݬ + V boast| +ӵ V ExpressAnger|ʾŭ + V MakeSound| + V recreation|,#MusicTool|,entertainment| + V discourage|ˮ +ë V ExpressAgainst|Ǵ +ţ V boast| +ţƤ V boast| + V please|ȡ + V ExpressAgainst|Ǵ + V inhale| +˫ɹ N human|,*perform| + V boast| + V recreation|,#MusicTool|,entertainment| + N music| + V cook| + N tool|þ,generic|ͳ,*cook| + N affairs|,cook| +° N part|,%army|,*cook| +þ N tool|þ,generic|ͳ,*cook| +Ա N human|,#occupation|ְλ,*cook| + N CloudMist|,#cook| + N tool|þ,*wipe| + V beat| + V beat| +ض V ShowBadEmotion|ʾ + V beat| + N tool|þ,*beat| + V beat| + V cultivate| + N tool|þ,*beat| + V CausePartMove| + V PassOn| + V FondOf|ϲ + V succeed|ɹ + V catch|׽ס,patient=fish| + V fall| + V manage|,patient=country|,politics| + N tree| + V fall| +ĺ N time|ʱ,night| +ĺ֮ N time|ʱ,#age|,aged| + V PayAttention|ע +ֿɵ ADJ aValue|ֵ,easiness|,easy|,$take|ȡ + V BeBad|˥ + V endeavour| + N part|,%AnimalHuman| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷɥ V disheartened| +Σ V ill|̬,#die|,medical|ҽ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ +ѯ V ask|,manner=gentle| +ֱ ADJ aValue|ֵ,posture|,straight|ֱ + N time|ʱ,#young| + N attribute|,strength|,&AnimalHuman| + N emotion|,love|,desired| + N time|ʱ,spring| + N food|ʳƷ + V affairs|,#planting|ֲ,#spring|,agricultural|ũ + N InsectWorm|,agricultural|ũ + N drinks|Ʒ,#spring| + N water|ˮ,#waters|ˮ,#spring| + N time|ʱ,day|,spring| + N wind|,#spring| + V satisfied| +绯 V enjoy|,content=teach| + ADJ aValue|ֵ,temperature|¶,chilly|,#spring|,undesired|ݬ + V joyful|ϲ + N affairs|,#planting|ֲ,#spring|,agricultural|ũ + N image|ͼ,lascivious| + N part|,%house|,#female|Ů,royal| + N image|ͼ,lascivious| + V irrigate|,#spring|,agricultural|ũ + N attribute|,scene|,&inanimate|,#spring| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N phenomena|,chilly|,spring| + N phenomena|,undesired|ݬ,waterless|,#weather|,spring| + N image|ͼ,lascivious| + V ize|̬,agricultural|ũ + N time|ʱ,spring| + N time|ʱ,#spring|,@rest|Ϣ,*WhileAway| + N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + N FlowerGrass| + N FlowerGrass| + N thunder|,#spring| + N text|,festival| + N time|ʱ,spring| + N thought|ͷ,fake|α +ů N phenomena|,warm|,beautiful|,spring|,desired| + N fact|,#time|ʱ + N time|ʱ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,spring|,autumn| + N time|ʱ,year| +ﶦʢ ADJ aValue|ֵ,age|,desired| + N clothing|,#spring|,autumn| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,age|,desired| + N celestial|,#time|ʱ,#spring| + N time|ʱ,season|,spring| +ɫ N phenomena|,#spring| +ɫ԰ ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,spring| + N text|,festival| +С N crop|ׯ + N emotion|,love|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather|,#spring| +Ѵ N time|ʱ,season|,spring| +ҩ N medicine|ҩ,#mating| + N phenomena|,#spring| +ⰻȻ N phenomena|,warm|,beautiful|,spring|,desired| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + V tour|,spring| + N RainSnow|ѩ,spring| + V transport|,#spring| + N emotion|,like|ϧ,desired| + N lights|,#celestial| + N tree| + N InsectWorm| + N human|,family|,mass| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,taste|ζ,pure|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + V ize|̬,industrial| + V refine|,industrial| + V ize|̬,industrial| + N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N drinks|Ʒ,$addict|Ⱥ + N part|,%AnimalHuman|,mouth| + V relate|й,manner=intimate| + N sound|,#language| + N tool|þ,*MakeUp|ױ + V HungryThirsty| + N disease|,#mouth| +ǹལ V debate| +ǹս V debate| + N text| +ݺ V relate|й,manner=intimate| + N sound|,#language| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + N attribute|,degree|̶,#pure|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N attribute|,behavior|ֹ,&human| + N metal|,pure| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N wealth|Ǯ,desired|,$earn|׬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,true| +ɫ ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,ability|,able|,desired| + V be|,manner=emphasis|ǿ +һ ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,kind|,pure| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V try| + V MakeTrouble| + V crawl| + N human|,unable|ӹ,undesired|ݬ +¿ N human|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N event|¼,foolish| +ͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V fix|ס + V stab| + V stand|վ + V wounded| +ڽ V ExpressAgainst|Ǵ + V reveal|¶ + V stab| + N stationery|ľ,*print|ӡˢ + V ExpressAgainst|Ǵ + N stationery|ľ,*print|ӡˢ + V reveal|¶ + V split|ƿ,means=stab| + N stationery|ľ,*print|ӡˢ + ADJ aValue|ֵ,area|,wide| + V pick|ʰ + ADJ qValue|ֵ,amount|,sufficient| +´ ADJ qValue|ֵ,amount|,sufficient| +º N attribute|,name|,other|,&entity|ʵ +ԣ ADJ qValue|ֵ,amount|,sufficient| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,quality|,weak|,undesired|ݬ,&thing| +õ N attribute|,quality|,weak|,undesired|ݬ,&thing| +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ +ĸ N human| + N vegetable|߲ + N attribute|,performance|,attract|,#metal| + N material|,?tool|þ +ų N space|ռ +Ŵ N tool|þ,*record|¼ +ŵ N material|,#route|· +Ź N phenomena|,#shiver| +Ż N ize|̬,#attract|,#metal| +ż N part|,%metal|,*attract| + N attribute|,strength|,&physical| + N method|,*cure|ҽ + N tool|þ,*record|¼ +ʯ N metal|,material| + N metal|,material| + N metal|,material| +ͷ N part|,machine|,#record|¼ + ADJ aValue|ֵ,performance| +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,sex|Ա,female|Ů +ƻ N FlowerGrass| +ϻ N beast|,female|Ů +ϻ N human|,female|Ů,fierce| +ϻ N human|,female|Ů,undesired|ݬ,fierce| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,sex|Ա,female|Ů + N attribute|,sex|Ա,&animate| +ͬ N animate| +ͬ N animate| + N animate| + N animate| + N InsectWorm|,female|Ů + V discharge| + V evade|ر + N expression| + V farewell| + V reject|ؾ + N text|,past| +DZ V farewell| +dz N document|,#cease|ͣ +ǵ N publications|鿯,#expression| +ǹ V cease|ͣ,content=undertake| +ǹ V discharge|,patient=employee|Ա +ǻ V cease|ͣ,content=undertake| +Ǿӭ V congratulate|ף,cause=festival| + N expression| +ȥ V cease|ͣ,content=undertake| +ȴ V cease|ͣ,content=undertake| + V reject|ؾ + V die| + N publications|鿯,#expression| + V congratulate|ף,cause=festival| + V discharge| +л V reject|ؾ + V farewell| + N expression| +ְ V cease|ͣ,content=undertake| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȱ N emotion|,like|ϧ,desired| +ȱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ȸ N human|,family|,male| +ȹ N vegetable|߲ +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ƽ N human|,kindhearted| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,royal|,female|Ů + N material|,?tool|þ + N material|,liquid|Һ,*decorate|װ + N tool|þ,generic|ͳ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + N stone|ʯ,material| +ש N material|,*build| + N expression| + N text| + N text|,past| +ʵ N publications|鿯,#expression| +ʵ༭ N human|,*compile|༭,literature| +ʶ N expression| +ʷ N knowledge|֪ʶ,#regulation|,#language| +ʸ N part|,%expression|,body| +ʸ N part|,%expression|,body| +ʻ N expression|,mass| +ʾ N expression|,mass| + N attribute|,kind|,&expression| + N information|Ϣ,#music| + N part|,%expression| + N expression| +ͷ N part|,%expression|,head|ͷ +β N part|,%expression|,tail|β + N attribute|,kind|,&expression| + N attribute|,property|,&language| + N information|Ϣ,#expression| + N expression| +Դ N knowledge|֪ʶ,#expression| +׺ N part|,%expression|,head|ͷ,tail|β + N expression| + ADJ aValue|ֵ,kind|,special| +˵ V exposure|¶ +˺ ADV aValue|ֵ,time|ʱ,future| +˼ ADJ aValue|ֵ,kind|,special| +˼ ADV location|λ,special| +˿ N time|ʱ,now| +˷ V happen|,manner=many| +˾ N attribute|,scene|,special|,&physical| +ʱ N time|ʱ,now| +ʱ˿ N time|ʱ,now| + CONJ {supplement|ݽ} + V salute|¾ +¾ V salute|¾ + ADV location|λ + V irritate|ŭ + V kill|ɱ,manner=hidden|,crime| + V mobilize| + N shape|,acute| + V stab| +̴̲ V speak|˵ +̵ N weapon|,*stab| +̶ ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ +̹ ADJ aValue|ֵ,temperature|¶,cold| +̻ N tree| +̼ V irritate|ŭ +̼ V mobilize| +̼ ADJ aValue|ֵ,performance|,#irritate|ŭ +̿ N human|,*kill|ɱ,crime| + V itch| + V exile|,police| +ɱ V kill|ɱ,manner=hidden|,crime| + V stab|,Vresult|,result=wounded| +̽ V scout| + N tool|þ,*decorate|װ,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V itch| + N human|,*stab| + N beast| + V grant| + N tool|þ,generic|ͳ,$GiveAsGift| +͸ V protect| +ͽ V teach| + V grant| + CLAS ActUnit|,&event|¼ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N attribute|,sequence|,&entity|ʵ + NUM qValue|ֵ,sequence|,ordinal| +γ N human|,occupation|ְλ,official|,*manage| +δ½ N earth| +ε ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ε ADV aValue|ֵ,sequence| +ε N attribute|,sequence|,&entity|ʵ +λ N artifact|˹,commercial|,useless|,generic|ͳ +μ ADJ aValue|ֵ,importance|,secondary| +μȦ N part|,%implement|,#electricity| +Ů N human|,family|,female|Ů +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N time|ʱ,day|,future| + N sound| + N sound| + ADJ aValue|ֵ,importance|,secondary| + N stone|ʯ,mine| + N tree| + N attribute|,frequency|Ƶ,&event|¼ + N attribute|,sequence|,&entity|ʵ +Ҫ ADJ aValue|ֵ,importance|,secondary| + V inferior| +֮ V inferior| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,family|,male| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N attribute|,ability|,#listen|,&AnimalHuman| + N attribute|,ability|,able|,#listen|,&AnimalHuman| +ϻ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,wise|,&human| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ,Ϳһʱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ӱ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,color|ɫ,green| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +а ADJ aValue|ֵ,color|ɫ,blue|,light| +а׶ N part|,%vegetable|߲,body| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,color|ɫ,green| +л N part|,%vegetable|߲,body| + ADJ aValue|ֵ,color|ɫ,green| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| +Ҵææ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +æ ADJ aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,importance|,secondary| + V conduct|ʵʩ + V engage| + V include| + V obey|ѭ + PREP {LocationIni} + PREP {TimeIni} + PREP {source} +Ӳ ADV {neg|} +ӳ V discuss|,manner=cautious| +Ӵ ADV aValue|ֵ,time|ʱ,now| +ӴԺ ADV aValue|ֵ,time|ʱ,future| +Ӷ ADJ aValue|ֵ,behavior|ֹ,passive| +Ӷ CONJ {supplement|ݽ} +ӷ N human|,crime|,undesired|ݬ +Ӹйʶ ADJ aValue|ֵ,ability|,able|,$sense|о +ӹŵ ADV aValue|ֵ,duration|,TimeLong| +ӹ ADV aValue|ֵ,duration|,TimeLong| +Ӽ˰ N expenditure| +Ӽ V obey|ѭ,content=simple| +ӽ V engage|,content=teach|,education| +ӽԺ ADV aValue|ֵ,time|ʱ,future| +Ӿ N expression| +Ӿ V include|,ResultWhole=army|,military| +ӿ ADV aValue|ֵ,behavior|ֹ,lenient| + ADV aValue|ֵ,frequency|Ƶ,often| + V cease|ͣ,content=(prostitution|) +˰ N expenditure| +㿪ʼ V start|ʼ + V disappear|ʧ + V obey|ѭ,content=aspiration|Ը +ǰ ADJ time|ʱ,past| +ǰ N time|ʱ,past| + ADV aValue|ֵ,behavior|ֹ,lenient| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V include|,ResultWhole=army|,military| + ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ݲ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V obey|ѭ,content=persuade|Ȱ˵ +ʦ V engage|,content=study|ѧ + V engage| + V handle| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| + V BeMember| + ADV aValue|ֵ,earliness|,early| + V happen| +ͷ ADV aValue|ֵ,frequency|Ƶ,again| +ͷ ADV aValue|ֵ,time|ʱ,head|ͷ +ͷ V start|ʼ +δ ADV {neg|} +޵ ADV aValue|ֵ,behavior|ֹ +С ADV aValue|ֵ,time|ʱ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,behavior|ֹ,strict| +ҵ V obtain|õ,possession=occupation|ְλ +ҵԱ N human|,#occupation|ְλ,employee|Ա +һ ADJ aValue|ֵ,behavior|ֹ,faithful| +ҽ V engage|,content=cure|ҽ,medical|ҽ + V engage|,content=entertainment|,entertainment| +Ӱ V engage|,content=entertainment|,entertainment| + ADV aValue|ֵ,behavior|ֹ,WellTreat|ƴ +絽 ADV aValue|ֵ,duration|,TimeLong| + V engage|,content=politics|,politics| + PREP {source} + ADV aValue|ֵ,behavior|ֹ,strict| + V obey|ѭ,content=persuade|Ȱ˵ + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N physical|,mass| + N tree|,mass| +Լ V ComeTogether| + N tree| + V grow|ɳ,manner=exuberant|ï + V happen| + N publications|鿯,mass| + ADJ aValue|ֵ,color|ɫ,colored| + V approach|ӽ + V gather|ɼ +շ V MakeTrouble| +շ V gather|ɼ,possession=money| +պ V ComeTogether| +պ ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ +պ V create|,manner=careless| +ռ V ComeTogether| +ռ V gather|ɼ +Ǯ V gather|ɼ,possession=money| + ADV {comment|} +Ȥ V please|ȡ + V MakeTrouble| + V WhileAway| + V benefit| + V add| + V add| + V gather|ɼ + V gather|ɼ,result=sufficient| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| +ֱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ֱ ADJ aValue|ֵ,performance|,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ֲ N material|,?clothing|,coarse| +ֲ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ֲ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ֲ赭 N edible|ʳ,thrifty| +ִ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ִ ADJ aValue|ֵ,SoundVolume|,loud| +ִ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ַ N material|,#clothing| +ַ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ַ ADJ aValue|ֵ,quality|,crude|ª,agricultural|ũ +ַ ADJ aValue|ֵ,style|,free| +ֹ V estimate|,manner=simple| +ֺ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֻ N material|,?clothing| +ֻ N text|,vulgar|,undesired|ݬ +ֻ N fact|,do|,engage|,crude|ª +ּӹ V produce|,simple|,industrial| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +³ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,simple| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,rash|ç + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ attribute|,behavior|ֹ,vulgar|,undesired|ݬ +׵ N human|,evil|,undesired|ݬ + V calculate|,manner=simple| +ͨ V know|֪,manner=simple| +ϸ N attribute|,fineness|ϸ,&physical| +ϸ N attribute|,quality|,&act|ж + ADJ aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ĵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +֦Ҷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,useless|,generic|ͳ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,size|ߴ,big| +׳ ADJ aValue|ֵ,SoundVolume|,loud| +׳ ADJ aValue|ֵ,fineness|ϸ,widediameter| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N emotion|,#love|,jealous|ʼ + N material|,#food|ʳƷ,$eat|,sour| +׹ N human|,*love|,*jealous|ʼ +׾ N emotion|,#love|,jealous|ʼ + N fruit|ˮ + N chemical|ѧ +̳ N human|,*love|,*jealous|ʼ + N emotion|,#love|,jealous|ʼ + V ComeTogether| + CLAS NounUnit|,&inanimate|,&plant|ֲ + ADJ aValue|ֵ,newness|¾,new|,desired| +ӵ V ComeTogether| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + V urge|ʹ +ٳ V benefit| +ٷ V urge|ʹ +ٽ V urge|ʹ +ٽ N institution|,*urge|ʹ + V urge|ʹ +ʹ V urge|ʹ +ϥ V sit|,manner=BeNear| +ϥ̸ V talk|̸,manner=sincere| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + V sell|,means=disseminate|,commercial| +֯ N InsectWorm| + V jump| + V rob| + V rob|,royal| +۶ V rob| +۶ V rob|,royal| +۶ N human|,*rob|,royal| +۸ V alter|ı,StateIni=true|,StateFin=fake|α +λ V rob|,possession=power|,royal| + V alter|ı + V expel| + V flee| +ܷ V attack| + V flee| + V destroy| +ݲ V damage| +ݻ V destroy| +ݿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N character|,surname|,human|,ProperName|ר +Ρ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + V SpeedUp|ӿ + V urge|ʹ +߰ V urge|ʹ +߱ V urge|ʹ +߲ V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ +ߴ V urge|ʹ +߷ V SpeedUp|ӿ,scope=fat|,agricultural|ũ +߻ V SpeedUp|ӿ,industrial| +߻ N chemical|ѧ,*SpeedUp|ӿ,industrial| +߻ѻ V SpeedUp|ӿ,industrial| +߻ N result|,*SpeedUp|ӿ,industrial| +߿ V urge|ʹ,ResultEvent=return|,#money|,commercial| +ᵯ N weapon|,$firing|,*expel|,#uprise|,#police| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#sleep|˯ + N music|,*CauseToDo|ʹ,#sleep|˯ + N method|,*CauseToDo|ʹ,#sleep|˯ +ҩ N medicine|ҩ,*CauseToDo|ʹ,#sleep|˯ + V urge|ʹ,manner=endeavour| + N human|,*urge|ʹ,#endeavour| + V CauseToDo|ʹ,ResultEvent=drain|ų,medical|ҽ + V urge|ʹ + V SpeedUp|ӿ,scope=GiveBirth|,agricultural|ũ +˷ܽ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| + ADJ aValue|ֵ,performance|,*CauseToDo|ʹ,#weep| + V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ + V SpeedUp|ӿ,scope=ripe|,agricultural|ũ + V urge|ʹ,ResultEvent=return|,commercial| +¼ N medicine|ҩ,*CauseToDo|ʹ,#vomit|³ +ծ V urge|ʹ,ResultEvent=return|,#money|,commercial| + V urge|ʹ,ResultEvent=return|,#money|,commercial| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,taste|ζ,crisp|,desired| + ADJ aValue|ֵ,taste|ζ,tender|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N attribute|,hardness|Ӳ,crisp| + N fruit|ˮ + V tired|ƣ + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V drill|ϰ + ADJ aValue|ֵ,color|ɫ,green| + N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +΢ N land|½ + N place|ط,village| +峤 N human|,#occupation|ְλ,official|,#village| + N regulation|,village| + N location|λ,%village|,#mouth| + N place|ط,village| + N human|,*reside|ס,*function|,#village| + N house| +ͷ N location|λ,%village|,#mouth| +կ N place|ط,village| + N place|ط,village| +ׯ N place|ط,village| + N place|ط,village| + V AmountTo|ܼ + V ComeTogether| + V SetAside| + V SetAside|,commercial| + V alive| + V cherish|Ļ + V exist| + V keep| + V store| +永 V record|¼ + V store|,purpose=check| +泵 N facilities|ʩ,@store|,#LandVehicle| +洢 V store| +洢 N quantity|,amount|,$store|,&natural|Ȼ,mine| +洢 N part|,%computer| +浥 N bill|Ʊ,#wealth|Ǯ +浵 V store| + V ^discuss| + V SetAside| + N bill|Ʊ,#wealth|Ǯ + V alive| + N quantity|,rate|,alive|,&animate| + N artifact|˹,commercial|,generic|ͳ + V SetAside|,patient=money|,commercial| + N money|,$SetAside| + N quantity|,amount|,&livestock| + V stay|ͣ +ȡ V store|,#computer| + V SetAside|,commercial| + V reside|ס +ʳ V StomachTrouble|֢ + V alive| + V ExistAppear| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V cherish|Ļ + V cherish|Ļ + V exist| + N document|,@record|¼,#SetAside|,#money| +ִ N bill|Ʊ,#wealth|Ǯ + V SetAside| + N part|,%computer| +ߡ N document|,@record|¼,#SetAside|,#money| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| +粽 V follow| +粽 V refuse|,content=surrender| +粽 V BeUnable| +ݲ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + N space|ռ,small|С + N emotion| + N time|ʱ,TimeShort| + N emotion| + V discuss| +ĥ V discuss| + V discuss| + V discuss| + V assemble|ۼ + V compile|༭ + V pick|ʰ + V mediate| +Ū V incite|ָʹ +Ū V tease|ȡ +Ҫ V compile|༭ +Ҫ N text| + V rub|Ħ + N tool|þ,*wash|ϴ +ĥ V rub|Ħ + V PlayWith|Ū +ϴ V wash|ϴ + V wash|ϴ + V arrange| + N method|,*use|,#expression|,#compile|༭ +ʩ N method| +ֲ V suffer|,manner=sudden| + V handle| +ò V handle|,manner=improper| +õõ V handle|,manner=proper| +ʧ V handle|,manner=improper| +ԣ V handle|,manner=suitable| + V MakeLower| + V defeat|սʤ + V defeat|սʤ + V discourage|ˮ + V wounded| + N phenomena|,undesired|ݬ,#unfortunate| + V BeAcross|ཻ + ADJ aValue|ֵ,content|,mixed| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V grind|ĥ + N result|,wrong|,undesired|ݬ + N emotion|,FondOf|ϲ + N fact|,police|,wrong| + N character|,wrong| + V turn|Ťת,patient=LandVehicle| + N result|,wrong|,undesired|ݬ + V IllTreat| + V blame|Թ,manner=improper| + V lose|ʧȥ + N text|,wrong| + V inlay|Ƕ,material=metal| + N experience|,wrong| + V escape| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V mad| + V exist|,manner=disperse|ɢ + ADJ aValue|ֵ,scene|,beautiful| +ʧ V lose|ʧȥ +λ N disease| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ +ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V inlay|Ƕ,material=metal| + ADJ aValue|ֵ,content|,mixed| + N character|,wrong| + ADJ aValue|ֵ,content|,mixed| +۸ ADJ aValue|ֵ,content|,mixed| + V TakeVehicle| + V add| + V build| + V connect| + V lift| + V establish|,PatientProduct=community|,entertainment| + V establish|,PatientProduct=part|,#institution| + V associate| + V associate| + V speak|˵ + V TakeVehicle|,patient=LandVehicle| + V build| + V TakeVehicle| +⳵ V TakeVehicle|,patient=LandVehicle| + V TakeVehicle|,patient=ship| + V TakeVehicle|,#vehicle|ͨ,manner=wrong| + V TakeVehicle|,patient=LandVehicle|,manner=wrong| + V cooperate| + N human|,friend| + V TakeVehicle|,patient=LandVehicle| +糵 V TakeVehicle|,patient=LandVehicle| +ɻ V TakeVehicle|,patient=aircraft| + V build| + V TakeVehicle|,patient=LandVehicle| + V speak|˵ + V associate| + V include|,ResultWhole=community|,#eat| + V TakeVehicle|,patient=LandVehicle| +Ƴ̳ V TakeVehicle|,patient=LandVehicle| + V build|,PatientProduct=bone| + V show|,content=arrogant| + V help|,purpose=CarryOnBack| + V stand|վ,location=part| + V build| + V establish| + V connect| + V BeNear| + V relate|й + V rescue| + V human|,*TakeVehicle| + V transport|,patient=human| + V fall| + V reply| + V mix| +ǻ V reply| +ǻ V talk|̸ + V build|,PatientProduct=facilities|ʩ + V recommend|Ƽ,purpose=GetMarried| + V build| + V help| + V sell| + V transport| + V TakeVehicle| +] V speak|˵ +ڨ V speak|˵ + V AmountTo|ܼ + V LeadTo|ͨ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V arrive| + V express|ʾ + V fulfil|ʵ + V fulfil|ʵ,patient=standard|׼ + V fulfil|ʵ +ɽ V fulfil|ʵ,patient=commercial| +Э V fulfil|ʵ,patient=ExpressAgreement|ʾͬ +ﵩ ADV aValue|ֵ,duration|,TimeLong| +ﵽ V fulfil|ʵ + N place|ط,ProperName|ר,(Australia|Ĵ) + N knowledge|֪ʶ,#animate| +ٹ N human|,official|,HighRank|ߵ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,ProperName|ר + N human|,(Dahoma|) +₩ N place|ط,capital|,ProperName|ר,(Senegal|ڼӶ) +│ N place|ط,capital|,ProperName|ר,(Bangladesh|ϼ) +˹ N place|ط,city|,ProperName|ר,(US|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) +˹ķ N place|ط,capital|,ProperName|ר,(Tanzania|̹ɣ) +ķ N weapon|,$firing| + V express|ʾ,content=thought|ͷ + N unit|λ,&strength| + V recompense| + V reply| + N result| + V reply| + V speak|˵ + V reply| + N text|,$reply| + V reply| + V reply|,content=wrong| + V reply| + V reply| + N readings|,$reply|,#exam| + V reply|,time=exam| + V reply| + V reply|,time=exam| + V attribute|,kind|,#reply|,#ask|,&text| + V reply|,content=$ask| +л V thank|л + V reply|,time=exam| +Ӧ V agree|ͬ +Ӧ V reply| + CLAS NounUnit|,&inanimate| + V TakeOutOfWater| + V associate| + V beat| + V build| + V buy|,commercial| + V calculate| + V catch|׽ס,agricultural|ũ + V compile|༭ + V damage| + V dig|ھ + V draw| + V engage| + V exercise|,sport| + V fight| + V gather|ɼ + V lift| + V mix| + V produce| + V remove| + V send| + V spray| + V use| + V weave| + V wrap| + V write|д + PREP {LocationIni} + PREP {TimeIni} + V subtract|,patient=price|۸,commercial| + V drill|ϰ,content=firing| +г N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| + V issue|ַ,possession=coupon|Ʊ֤ + V ill|̬ + V defeated| + V defeat|սʤ + V beat| + V MakeUp|ױ + V grow|ɳ,#crop|ׯ + V dump| + V wrap| +Ʊ V guarantee|֤ +Ʊ V guarantee|֤ +򱧲ƽ V help|,scope=unfortunate| +ȷ V quote|,patient=example|ʵ +򲹶 N repair| +򲹶 N repair| +򲻿 ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ + V gather|ɼ,possession=FlowerGrass|,means=break|۶ +ݸ V compile|༭,PatientProduct=text| +ݾ V RashlyAct|,result=exposure|¶ + V cease|ͣ + V shiver| + V beat|,patient=crop|ׯ,purpose=gather|ɼ,agricultural|ũ + V forming|γ,PatientProduct=place|ط,purpose=perform|,entertainment| +һƬ V merge|ϲ +ಲ V exposure|¶,#body| + V exposure|¶,#foot| + V attack|,military| + V guide| + V seek|ıȡ + PREP {LocationThru} + PREP {TimeIni} + V plan|ƻ,manner=wrong| + V plan|ƻ,manner=wrong| + V recreation| + V defeat|սʤ,politics| +ظ V GoBack| +û ADJ aValue|ֵ,relatedness|,intimate|,desired| + V guess|²,purpose=recreation| + V AtEase| + V eat| + V compile|༭,PatientProduct=text| + V do|,content=elementary| + V PutInOrder| + V entice|,means=GiveAsGift|,crime| + V manage| + V MakeSound|,content=time|ʱ +籨 V transmit|,patient=letter|ż +绰 V associate|,instrument=tool|þ + V destroy| + V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ + V excite|ж + V fight| + V compete| +̶ V engage|,content=affairs| +̹ V engage|,content=affairs| + V break|۶ + V cease|ͣ + V subtract|,patient=price|۸,commercial| + V shiver| + V beat|,#skin|Ƥ + V discharge| + V dispatch|Dz + V pass|ȹ + N method| + V defeat|սʤ + V reverse|ߵ + V alter|ı,StateIni=fail|ʧ,StateFin=succeed|ɹ + V draw|,ContentProduct=shape|,square| + V draw|,ContentProduct=shape|,square| + V associate|,instrument=tool|þ + V defend| + V engage| +Ҿ V salute|¾,means=CausePartMove| + V recreation|,patient=MusicTool|,entertainment| + V uneasy| +Ȼ N machine|,*separate|,#crop|ׯ,agricultural|ũ +ǻ V speak|˵,manner=arrogant| +˾ V accuse|ظ,police| + V disseminate|,commercial| + V roll| + V tease|ȡ +Ƿ V respire| + V beat| +Ƿ V respire| +Ƿ N human|,*respire| + V destroy|,patient=crime|,police| + V MakeTrouble| + V MakeSound|,#sleep|˯,#ill|̬ + V MakeSound|,#sleep|˯,#ill|̬ + V slide| + V damage| +ζ V walk|,manner=wave|ڶ +Ʊ V MoveItBack| + V lighting|ȼ + N tool|þ,*lighting|ȼ + V attack| + V beat| + N MusicTool| + V do|,content=elementary| +ҽ V rob|,source=family| + V fight| + V eat| +ɽ V fight|,take|ȡ,#country| +򽻵 V associate| + V MakeTrouble| + V rob| + V twine| + V GoInto| + V subtract|,patient=price|۸,commercial| + V rescue| + V TurnOn| + V open| +촰˵ ADV {comment|} + V stab| + V MakeSound| + V defeat|սʤ + V associate| + V transmit| + V SelfMove| + V TakeOutOfWater| +Ա N human|,#occupation|ְλ,*TakeOutOfWater| + V WeatherBad| + V compete| +̨ V compete| +ǹ V attack|,manner=secret| +ǹ V firing| +ǹ V firing|,manner=secret| + V manage| + V guess|² + V look| + V engage|,content=catch|׽ס,agricultural|ũ +㹤 V engage|,content=affairs| + V engage|,content=affairs| + V MakeSound| + V MakeTrouble| +ˮ V damage| + V HideTruth| + V IllTreat|,#beat|,#ExpressAgainst|Ǵ + V HideTruth| + V hide| + V cry| +ĥ V brighten|ʹ + V recreation| + V recreation|,instrument=tool|þ + V swollen| + V exhale| +ƨ V swollen| + V bump|ײ,StateFin=OutOfOrder| + V remove| +Ƴ V disobey|Υ,content=regulation| +ɳʵ V ask|,manner=attentive|ϸ + V subtract|,patient=price|۸,commercial| + V subtract|,patient=price|۸,commercial| + V feed|ι,patient=gas| + V mobilize| +Ͳ N tool|þ,*feed|ι,#gas| +ǰʧ V FallDown| +ǰվ V LeaveFor|ǰ +ǹ V firing|,instrument=weapon| + V SeekPleasure|Ѱ + V seek|ıȡ + V exercise|,instrument=tool|þ +Ȥ V tease|ȡ +Ȧ V circle| +Ⱥ V fight|,partner=mass| + V MakeTrouble| + V beat| + V include|,manner=secret| +乬 V despise| +ʮ˲ V ExpressAgainst|Ǵ +ɢ V separate| +ɢ V spread| +ɨ V remove| +ɨ V wipe| +ɨ V wipe|,patient=room| +ɨ V remove|,patient=room| +ɨս V wipe|,patient=place|ط,#fight|,military| +ɱ N fact|,fight| + V WeatherBad| + V beat|,result=wounded| + V write|д +ʤ V win|ʤ + N human|,crime|,undesired|ݬ + V express|ʾ,instrument=hand| +ˮ V gather|ɼ,possession=liquid|Һ + V plan|ƻ + V calculate|,instrument=tool|þ + V plan|ƻ + V bump|ײ,StateFin=OutOfOrder| +̥ V cease|ͣ,content=pregnant|,#medical|ҽ +̽ V ask| + V rob|,possession=country|,politics| + V win|ʤ + V ask| +ͨ V fulfil|ʵ +ͨ V endeavour| +ͷ V beat|,PartOfTouch=head|ͷ +ͷ V guide| +ͷ V guide| +ͷ V guide| + V defeat|սʤ +ù V refuse| + V ask| +ȷ V guide| + V start|ʼ,content=firing| + V succeed|ɹ + V remove| +С V tell| +С V plan|ƻ,manner=sly| + PP aValue|ֵ,behavior|ֹ,sincere| + V eat|,patient=good| +ڻ V protect| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V stab| + V draw| + V experiment|ʵ +ҩ V spray|,patient=chemical|ѧ +ҹ V endeavour| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡֽ N paper|ֽ,*print|ӡˢ +Ӯ V win|ʤ +Ӳ V endeavour| +ʫ N text| +λ V fight| +λ V roam| + V catch|׽ס,agricultural|ũ +Ԯ V attack|,military| +Բ V mediate| +Ӷ V engage|,content=secondary| + V produce|,industrial| +ս V shiver| + V fight|,military| +к V SayHello|ʺ +к V persuade|Ȱ˵ +к V tell| + V BecomeLess|,commercial| +ۿ V BecomeLess|,commercial| +ۿ V FitNot| + V cure|ҽ + V fulfil|ʵ + V ShowOff|ҫ + V plan|ƻ + V seek|ıȡ +ס V cease|ͣ +ת V rotate|ת +׮ V bury| + V write|д +ָ V text| +ֻ N tool|þ,*print|ӡˢ +Ա N human|,#occupation|ְλ,*write|д + V beat|,PartOfTouch=skin|Ƥ + V sit|,religion|ڽ +ö V StomachTrouble|֢ +ö V ill|̬,#respire| + V end|ս + V sleep|˯ +˯ V sleep|˯ + V MakeSound|,#sleep|˯,#ill|̬ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,clan| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,age|,&animate| + N attribute|,size|ߴ,&physical| + N fact|,important|,#police| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V exposure|¶ +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N time|ʱ,morning| + V exposure|¶ + V defeated| + V defeat|սʤ + N part|,%InstitutePlace|,education| + ADJ qValue|ֵ,amount|,many| +뱲 N time|ʱ,#alive|,TimeLong|,half| + V handle| + N system|ƶ +󱥶 V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +󱥿ڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +۸ V enjoy|,content=look|,#beautiful| +۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| + N attribute|,status|,education|,&human| +Ӫ N facilities|ʩ,space|ռ,@reside|ס +Ӫ N part|,%institution|,*order|,main|,military| + N PenInk|ī,*write|д + ADJ qValue|ֵ,amount|,many| + N text|,$write|д + V excrete|й,patient=waste| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N human|,military| + N army| + N food|ʳƷ + N human|,family|,male| + V aValue|ֵ,ability|,maintain|,desired| + ADV aValue|ֵ,degree|̶,more| +е N place|ط,country|,ProperName|ר,(Europe|ŷ) +е߼ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,distance|,far|Զ,#walk| + N attribute|,distance|,far|Զ,&walk| + ADJ aValue|ֵ,distance|,far|Զ,#walk| + ADJ qValue|ֵ,amount|,many| +󲿷 ADJ qValue|ֵ,amount|,many| +ͷ ADJ aValue|ֵ,size|ߴ,big| +С V lavish|˷ + N edible|ʳ,foreign| + N food|ʳƷ,important| + N edible|ʳ,foreign| +ٴ V engage| + N part|,%AnimalHuman|,viscera| +󳦸˾ N bacteria|΢ + N attribute|,outlook|ǰ,&event|¼ + N water|ˮ,#waters|ˮ + N LandVehicle| + N human|,#occupation|ְλ,*drive|Ԧ,#ship|,#machine| + N human|,#occupation|ְλ,royal| + N place|ط,city|,important| +Դ V consume|ȡ,manner=extravagant| +һ V surprise| + N beast| +Ѫ V bleed|Ѫ +󴵴 V ShowOff|ҫ +С ADJ aValue|ֵ,standard|׼,average|,desired| +ȴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V fight|,manner=fierce| + ADV aValue|ֵ,degree|̶,very| +󷽷 ADJ aValue|ֵ,demeanor|,gracious|,desired| +СС ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N beast| + ADJ aValue|ֵ,courage|,brave|,desired| + N tool|þ,*cut|,*split|ƿ,*stab| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N method|,fair| + N reason| + N reason|,important| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N human|,enemy|,strong|ǿ + ADV {comment|} + N place|ط + N fact|,great|ΰ + N law|ɷ,religion|ڽ + N room|,%facilities|ʩ + N room|,%facilities|ʩ,religion|ڽ +󶯸ɸ V fight| +󶯸λ V angry| + N facilities|ʩ,route|·,important| + N part|,%AnimalHuman|,nerve| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADV aValue|ֵ,possibility|,almost| +󶼻 N place|ط,city|,important| + N place|ط,city|,important| + N human|,fat|,#eat| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N institution| + N part|,%army|,military| + ADJ qValue|ֵ,amount|,many| + ADV {comment|} + ADJ qValue|ֵ,amount|,many| + N qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,many|,&physical| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +޵ ADJ aValue|ֵ,size|ߴ,big|,undesired|ݬ + V ExpressAnger|ʾŭ + N law|ɷ + ADV {comment|} + ADJ aValue|ֵ,appearance|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| +ʴ V TalkNonsense|Ϲ˵ + N part|,%physical| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N wind|,strong|ǿ,#WeatherBad| + N phenomena|,unfortunate|,hardship| + N wind|,strong|ǿ,#waters|ˮ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,#occupation|ְλ,official|,past| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,#ship| +󸹱 ADJ aValue|ֵ,fatness|,fat| +󸹼 N human|,rich|,desired| +Ƥ N FlowerGrass|,?medicine|ҩ,$eat| + N human|,rich| + ADJ aValue|ֵ,content|,simple| + N part|,%information|Ϣ,heart| + ADV {comment|} + V endeavour| + N part|,%information|Ϣ,bone| + N human|,family|,male| + N human|,male| + N human|,strong|ǿ,male| + N tool|þ,*communicate| + N result|,#succeed|ɹ,desired| +󹦸 V succeed|ɹ + ADJ aValue|ֵ,strength|,strong|ǿ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human|,royal| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N human|,family|,female|Ů + N MusicTool| + N shows| + N clothing|,#body| + N attribute|,rank|ȼ,&thing| + N part|,%building|,mouth|,important| + N attribute|,scene|,great|ΰ,&inanimate| +ģ ADJ aValue|ֵ,range|,extensive| +ģ ADJ aValue|ֵ,range|,extensive|,desired| +ģ ADJ weapon|,*destroy| + N food|ʳƷ,generic|ͳ + N waters|ˮ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N time|ʱ,day|,cold| +󺰴 V cry|,manner=loud| +󺰴 V disseminate| + N phenomena|,undesired|ݬ,waterless|,#weather| + V expect|,content=lucky| + N human|,big| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʱ N time|ʱ,important| + N MusicTool| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,name|,&human| + N human|,#power|,strong|ǿ,desired| + V disseminate| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,desired|,$like|ϧ + N place|ط,military| + N time|ʱ,future|,year| + N time|ʱ,future|,day| + V cry| + N human|,rich|,desired| + N text|,$boast| + N FlowerGrass|,?medicine|ҩ,$eat| + N fact|,discuss| + N fact|,discuss|,regular| + N room| + N human|,mass| + N human|,mass| + N fire| +󲻽 V ignorant|֪ + ADJ aValue|ֵ,circumstances|,happy|,desired| +󼪴 ADJ aValue|ֵ,circumstances|,happy|,desired| + N FlowerGrass|,?medicine|ҩ,$eat| + N plan|ƻ,important| + N community|,family|,glorious| + N human|,able|,desired| + PRON {ThirdPerson|,mass|} + V subtract|,range=extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,military| + N human|,official| + N waters|ˮ + N tool|þ,*reward|,$GiveAsGift|,desired| + N fact|,compete|,sport| + V cry| + N facilities|ʩ,route|· +С N facilities|ʩ,route|· + N result|,win|ʤ + V excrete|й,patient=waste| + N human|,family|,female|Ů + N human|,strong|ǿ,female|Ů + N part|,%clothing|,body| +С V flurried| + N human|,family|,male| + N attribute|,circumstances|,main|,&entity|ʵ + ADV aValue|ֵ,range|,extensive| + N army|,important|,#military| + N human|,mass| + CLAS unit|λ,&heat| + V exam|,education| +ͳ N LandVehicle| + V fulfil|ʵ,patient=aspiration|Ը,scope=eat| + V satisfied| + N human|,rich|,desired| + N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ +ϴ N human|,foolish|,undesired|ݬ +ʯ N stone|ʯ + N room| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N humanized|,ProperName|ר +ʿ N human|,strong|ǿ + N place|ط,city|,ProperName|ר,(China|й) + N part|,%house|,bone| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N material|,?food|ʳƷ,$eat| + ADJ aValue|ֵ,age|,over| +в N disease| +¥ N house| +· N facilities|ʩ,route|· +· N artifact|˹,commercial|,ordinary|,generic|ͳ +½ ADJ aValue|ֵ,property| +½ N earth| +½ N part|,%country|,ProperName|ר,(China|й) +½ N earth| + ADV aValue|ֵ,range|,ish| + N part|,%information|Ϣ,heart| + N thinking|˼,substantial|ʵ + N human|,family|,female|Ů + N human|,female|Ů + N crop|ׯ,?material|,#addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ + N fish| + N fish| +ʿ N place|ط,capital|,ProperName|ר,(Syria|) + N crop|ׯ +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +è N beast| + N part|,%building|,mouth| + N material|,?food|ʳƷ,#crop|ׯ + N part|,%entity|ʵ,skin|Ƥ + ADV aValue|ֵ,degree|̶,ish| + N InsectWorm|,undesired|ݬ + V announce| + N attribute|,name|,&human| + ADJ aValue|ֵ,reputation|,glorious|,desired| +Ȼ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren| +Ĵָ N part|,%AnimalHuman|,hand| +ľ N tool|þ,*beat| + N phenomena|,undesired|ݬ,#unfortunate| + N part|,%AnimalHuman|,head|ͷ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| + N time|ʱ,year| + N time|ʱ,year|,desired|,#crop|ׯ +һ N time|ʱ,festival|,@congratulate|ף +ҹ N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů + N human|,female|Ů,family| + N human|,*boast| + N weapon|,*firing| +Ա N human|,#occupation|ְλ,*judge|ö,police| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N LandVehicle| + ADJ qValue|ֵ,amount|,many| + N attribute|,effect|Ч,&human|,&organization|֯ +ҵ N human|,#occupation|ְλ,commercial| + N fact|,respire| + N gas|,#weather| + N sky| +ѹ N attribute|,strength|,&gas| +ǧ N inanimate| +Ǯ N money|,many| +ǰ N time|ʱ,past|,year| +ǰ N time|ʱ,past|,day| + N facilities|ʩ,route|·,#waters|ˮ + N place|ط,ProperName|ר,(China|й) + N time|ʱ,day|,#congratulate|ף + N time|ʱ,day|,*congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N crop|ׯ,$collect|,#autumn| + N fact|,collect|,#crop|ׯ,#autumn| + N time|ʱ,season|,#collect|,#autumn| + N drinks|Ʒ,$addict|Ⱥ + N material|,?drinks|Ʒ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + N human|,adult| + N human|,royal| + N human|,desired|,important| + N fact|,compete| +ɨ V clean|ʹ +ɩ N human|,family|,female|Ů +ɩ N human|,female|Ů +ү N human|,#wealth|Ǯ,desired| +ͷ N human|,undesired|ݬ + V cease|ͣ,content=punish|,police| + N human|,family|,female|Ů + ADJ aValue|ֵ,SoundVolume|,loud| + V announce| +к N human|,*cry| +ʦ N human|,able|,desired| +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*cook| +ʧ V disappointed|ʧ +ʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +ʹ N human|,female|Ů +ʹ N institution|,diplomatic|⽻ +ʹ N attribute|,rank|ȼ,diplomatic|⽻,&institution| + ADV aValue|ֵ,range|,extensive| + N affairs|,important| + N attribute|,circumstances|,important|,&organization|֯ +¼ N account|,@record|¼,#time|ʱ + N attribute|,outlook|ǰ,&event|¼ + N attribute|,outlook|ǰ,&event|¼ +ִ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N fact|,cure|ҽ + N attribute|,age|,&animate| + N human|,family|,male| + N human|,male| + N time|ʱ,day|,hot| + N quantity|,amount|,many|,&physical| +ˮ N phenomena|,unfortunate|,#water|ˮ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +մ N chemical|ѧ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̤ N attribute|,distance|,&walk| + N room| + N MusicTool| + N human|,#occupation|ְλ,*perform|,entertainment| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + N reason|,important| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + ADV {comment|} +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N time|ʱ,afternoon| + N land|½,#crop|ׯ + N room| +ͬ N phenomena|,intimate|,desired| +ͬС V BeSame|ͬ +ͷ N human|,extravagant|,undesired|ݬ +ͷ N part|,%thing|,important|,body| +ͷ N tool|þ,*cover|ڸ +ͷ N tool|þ,*fasten|˩ + N part|,%AnimalHuman|,leg| + N drinks|Ʒ + N human|,*perform|,glorious|,entertainment| + N human|,able|,desired| + N human|,able|,desired| + N human|,official|,royal| +Ϊ ADJ aValue|ֵ,degree|̶,very| +ξ N human|,#occupation|ְλ,official|,military| +η ADJ aValue|ֵ,courage|,brave|,desired| + N place|ط,(China|й) + N place|ط,(China|й) + N waters|ˮ,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר +ϲ N fact|,desired|,#congratulate|ף +ϲ V joyful|ϲ +Ϸ N shows| +Ϻ N fish| + N house| + V display|չʾ,content=able|,means=endeavour| +ͨ V display|չʾ,content=able|,means=endeavour| +ྶͥ V differ|ͬ + N beast| +С ADJ aValue|ֵ,size|ߴ,big|,small|С +С N attribute|,rank|ȼ,&human|,&organization|֯ +С N attribute|,size|ߴ,&physical| +С N human|,adult|,young| +С N excrete|й,patient=waste| +С V excrete|й,patient=waste| +С N stone|ʯ,#AnimalHuman|,waste|,$excrete|й +У N human|,#occupation|ְλ,official|,military| +Ц V laugh|Ц +д ADJ aValue|ֵ,pattern|ʽ,&character| + N beast| + V mobilize| +ľ V build| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| +ͻ N computer| +۱ N building|,precious| +è N beast| + V repair| +ѡ N fact|,select|ѡ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ̶ N attribute|,status|,education|,&human| +ѧѧ N fund|ʽ,*reward|,#study|ѧ,education| +ѧʦ N human|,#occupation|ְλ,education|,*teach| +ѧ N human|,*study|ѧ,education| +ѩ N RainSnow|ѩ +ѩ N time|ʱ,day| +ѩ׷ V WeatherBad|,#RainSnow|ѩ + N part|,%AnimalHuman|,*bite|ҧ +֮ N attribute|,appearance|,gracious|,&human| + N medicine|ҩ,?addictive|Ⱥ + N material|,#food|ʳƷ,$eat| +Բ V boast| + N bird| + N money|,past| + N waters|ˮ,surfacial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Oceania|) + N place|ط,ProperName|ר,(Oceania|) + N human|,(Oceania|) +ҡ V walk| +ү N human|,family|,male| +ҵ N affairs|,great|ΰ +ҶԷ N disease| + N clothing|,#body| + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N part|,%information|Ϣ,heart| + N reason|,important| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + V abandon|,possession=family|,cause=loyal|Т +ӡ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ӡ N stationery|ľ,*print|ӡˢ + N material|,#food|ʳƷ,$eat| + V exist| +пΪ V worth|ֵ + V exist|,experiencer=human| + ADJ aValue|ֵ,content|,profound| +ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| +Ϊ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| + ADJ aValue|ֵ,size|ߴ,big|,more| + ADJ qValue|ֵ,amount|,many|,more| + N RainSnow|ѩ + V WeatherBad| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ա N human|,official| +Ժ N part|,%house|,space|ռ +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV {comment|} + N time|ʱ,month| +Ժ N house| +Ժ N house| + N time|ʱ,morning| + V incite|ָʹ,patient=thought|ͷ,public| + N food|ʳƷ,ordinary| +ս N fact|,fight| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle|,important| + ADV aValue|ֵ,range|,extensive| +ɷ N human|,desired|,brave| +ָ N part|,%AnimalHuman|,hand| +־ N aspiration|Ը,expect|,desired| + ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + N human|,mass|,ordinary| +ڴý N tool|þ,*disseminate| +ڻ ADJ aValue|ֵ,kind|,ordinary| + N land|½ + N human|,#occupation|ְλ,religion|ڽ +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N human|,*study|ѧ,education| +רԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ȼ N natural|Ȼ +ֱ N readings| + ADJ qValue|ֵ,amount|,many| + V happen| + N text| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N crop|ׯ,?material|,#food|ʳƷ + N clothing|,#body| + N fish| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + V stay|ͣ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ľ V stupefied|ľȻ + N fund|ʽ,^$return| + V BeUnable|,commercial| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,fierce|,crime|,undesired|ݬ +ͽ N human|,fierce|,crime|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V PutOn| + V PutOn|,Vgoingon|չ + N character|,surname|,human|,ProperName|ר + V respect| +ñ V unfortunate| +ʤ N bird| +Т V condole|°,means=PutOn| + V apologize|Ǹ,cause=crime|,means=endeavour| + V TakeCare| + V bring|Я + V do| + V guide| + V own| + N part|,%LandVehicle|,leg| + N place|ط + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + PREP {partof} + V guide|,patient=army|,military| + V ill|̬ + V guide|,ResultEvent=SelfMove| + ADJ aValue|ֵ,property|,own|,#electricity| + V guide| + V guide|,patient=human| + N symbol|,#quantity|,#DoSum| + N metal| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V own|,possession=bacteria|΢,#disease| + N human|,*bring|Я,#bacteria|΢,#medical|ҽ + V bring|Я + V relate|й + V guide| +· V guide|,ResultEvent=SelfMove| +ͷ V guide| +ͷ N human|,*guide| +ͽ V teach|,target=human| + N medicine|ҩ +Т V condole|°,means=PutOn| +޴ɫ ADJ aValue|ֵ,content|,beautiful|,desired| +о V teach|,target=human|,education| + V own| +е ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,possibility|,almost| + V disappear|ʧ + ADJ aValue|ֵ,property|,replace| + N attribute|,clan|,&thing| + V replace| + N time|ʱ + V do|,means=replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ +촦 N part|,%institution|,diplomatic|⽻ + V write|д,means=replace| + N human|,$select|ѡ + V mean|ָ + V replace| + N part|,%InstitutePlace| + N fact|,discuss| + N human|,important| + N community| +ųԱ N human|,#organization|֯ + N text| + V TakeVehicle| + N part|,%language| +ഫ ADJ aValue|ֵ,property|,$PassOn| + N attribute|,similarity|ͬ,different|,&human|,#aged|,#young| + V buy|,means=replace|,commercial| + V manage|,manner=replace| + N symbol| + V replace| + N expenditure| + ADJ aValue|ֵ,property|,replace|,#commercial| + V replace|,scope=teach| + V do|,means=replace| + V do|,means=replace| + N human|,*help| + N human|,*replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,*help| + N human|,*help|,#police| + N human|,*help|,police| + N human|,*replace| + N human|,commercial| + N symbol| + N part|,%language| + V teach| +ʡ N human|,#occupation|ְλ,official|,place|ط +г N human|,#occupation|ְλ,official|,#city| + N collect| + V sell| + V write|д + N knowledge|֪ʶ,#quantity|,#calculate| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + V replace| +Ϊ ADJ aValue|ֵ,property|,replace| + V sell|,means=replace|,commercial| +л V exchange| +л V metabolize|л,medical|ҽ + V do|,means=replace| + N human|,*help|,#MakeOthersKnowledge|ʹ˸֪ + N human|,*replace| + V replace| +Ʒ N physical|,*replace| +֮ V undergo|,content=replace| + N human|,#occupation|ְλ,official|,#country| + V do|,means=replace| + V borrow|,commercial| + V evade|ر + V forgive|ԭ + V lend|,commercial| + V lend| + N part|,%account|,commercial|,#human| + V lend| + V lend|,possession=money|,commercial| + N money|,commercial|,$lend| + CLAS NounUnit|,&physical| + N tool|þ,cubic|,@put| +ݲ N material|,?drinks|Ʒ + N beast| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V entertain|д + V request|Ҫ + V stay|ͣ + V treat|Դ + V wait|ȴ + V request|Ҫ,ResultEvent=measure| + V request|Ҫ,ResultEvent=check| + V stay|ͣ + CONJ {time|ʱ} + V wait|ȴ,content=leave|뿪 + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + V aValue|ֵ,duration|,TimeShort| + V wait|ȴ,content=time|ʱ +۶ V wait|ȴ,content=price|۸,purpose=sell|,commercial| + V request|Ҫ,ResultEvent=check| + V entertain|д,patient=human| + V wait|ȴ,content=text| + V associate| +˴ V associate| +˽ V associate| + V sell| + ADJ aValue|ֵ,property|,$KeepOn|ʹ +ҵ ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ +ҵԱ N human|,*lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,$use| + N fact|,treat|Դ + N payment| + V catch|׽ס + V catch|׽ס,police| + V slack|͵ + ADJ slack|͵ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + V IllTreat| + V delay| + V indulge|,patient=self| + V delay| + V stay|ͣ + V delay| + V CarryOnBack| + N artifact|˹,commercial| + V bear|е + N duty| + CLAS unit|λ,&weight| + V guarantee|֤ + N human|,*guarantee|֤ + V undertake| + V bear|е,content=dangerous|Σ + V bear|е + N tool|þ,space|ռ,*transport|,#medical|ҽ,#rescue| + V fear| + V undertake| +ˮ V transport|,patient=liquid|Һ + V worried|ż + V worried|ż + N artifact|˹,commercial| + N duty| + ADJ aValue|ֵ,color|ɫ,red| + N medicine|ҩ,(China|й) + N bird| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Denmark|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Denmark|) + N money|,(Greenland|) + N human|,(Denmark|) + N language|,#country|,ProperName|ר +Ƥ N medicine|ҩ,(China|й) + N material|,*draw| + N part|,%human|,body| + N emotion|,loyal|Т,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N bill|Ʊ,#wealth|Ǯ + N character|,surname|,human|,ProperName|ר + N document| + ADJ qValue|ֵ,amount|,single| + ADV {emphasis|ǿ} + N computer|,simple| + N human|,commercial| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,range|,pieced|Ƭ + N quantity|,amount|,&crop|ׯ,&vegetable|߲ + N LandVehicle| + N process|,single| + ADJ aValue|ֵ,content|,pure| + ADJ aValue|ֵ,content|,pure|,desired| + ADV {emphasis|ǿ} + N attribute|,content|,pure|,&entity|ʵ + N expression| + N fact|,compete|,sport| +һ V PayAttention|ע + ADV {emphasis|ǿ} + V fight|,manner=single| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,behavior|ֹ,single| + N document|,medical|ҽ,@record|¼,#medicine|ҩ + ADJ aValue|ֵ,range|,pieced|Ƭ + N beast| + V do|,manner=self| + V do|,manner=self|,agricultural|ũ + N SportTool|˶ + N fact|,exercise| + ADJ aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + N facilities|ʩ,route|· +ɹ N MusicTool| + N crop|ׯ + N aValue|ֵ,property|,#chemical|ѧ + N attribute|,price|۸,&thing|,commercial| + N room| + N chemical|ѧ + N inanimate|,generic|ͳ + N bill|Ʊ,#wealth|Ǯ + N expression| +¡ ADJ aValue|ֵ,property|,#GiveBirth| + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N attribute|,name|,&human| +ť ADJ aValue|ֵ,form|״ +Ƭ۾ N tool|þ,*look|,#eye| +ǹƥ ADJ aValue|ֵ,behavior|ֹ,single| +׼ͥ N community|,family| +˴ N furniture|Ҿ,space|ռ,*sleep|˯ +˷ N room| +˼ N room| + N fact|,recreation|,entertainment| + N time|ʱ,day| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,single| + ADJ aValue|ֵ,property|,^GetMarried| + N human|,single|,male|,^GetMarried| + N human|,single|,^GetMarried| + N FlowerGrass| + N symbol|,#quantity| + N chemical|ѧ + N chemical|ѧ +λ N attribute|,amount|,&entity|ʵ +λ N part|,%organization|֯,generic|ͳ +λڲ N location|λ,%organization|֯,internal| + N facilities|ʩ,route|· +˼ N emotion|,love|,desired| + ADJ qValue|ֵ,amount|,single| + ADJ aValue|ֵ,direction|,single| + ADJ aValue|ֵ,form|״ +б N readings| + N regulation| + N attribute|,name|,surname|,&human| + N part|,%animal|,#eye| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +һ ADJ aValue|ֵ,content|,pure| +һ N quantity|,amount|,single|,&entity|ʵ + N clothing|,#body| + N character|,surname|,human|,ProperName|ר + N human|,official|,past| +Ԫ CLAS NounUnit|,&entity|ʵ + N document| + N tool|þ,*cover|ڸ,#sleep|˯ + N character| + V wipe|,manner=gentle| + N tool|þ,*wipe| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N tool|þ,cubic|,@put| +ľ V fear| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,brave| +Ϊ ADJ aValue|ֵ,behavior|ֹ,fierce| + V dare| +̴ N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,viscera| + V fear| + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,liquid|Һ +ʯ N disease| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ʶ N attribute|,courage|,&AnimalHuman|,&organization|֯ +С ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +С N human|,timid| +֭ N part|,%AnimalHuman|,liquid|Һ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N human|,female|Ů,*perform|,entertainment| + N time|ʱ,morning| +Ƕ N human|,female|Ů,*perform|,entertainment| +Ϧ N time|ʱ,TimeShort| +Ϧ֮ ADJ aValue|ֵ,duration|,TimeShort| + N gas| + N material|,*feed|ι,#crop|ׯ + V ize|̬ + N gas| + COOR {but|} + COOR {but|} +Ը ADV {modality|} + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,weak| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,desired| + N fish| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,red|,light| + V ize|̬ + ADJ aValue|ֵ,color|ɫ,yellow|,light| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| + N time|ʱ,season|,idle| + ADJ aValue|ֵ,color|ɫ,green|,light| +ɫ ADJ aValue|ֵ,color|ɫ,green|,light| +׶ N language|,#country|,ProperName|ר +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +Į֢ N disease| + ADJ aValue|ֵ,color|ɫ,BlueGreen| +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,light| +ˮ N water|ˮ,$drink| +ˮ N waters|ˮ,space|ռ +ˮ N fish| + V forget| + ADJ aValue|ֵ,pattern|ʽ,gracious|,desired| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,purple|,light| + V ComeToWorld| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + V ComeToWorld| + N place|ط,@ComeToWorld| + V accuse|ظ + V jump| + V loosen| + V recreation|,entertainment| + N shape|,round|Բ + V shoot| + N weapon|,$firing| + V perform|,#recreation|,#sing| + V shoot| + ADJ aValue|ֵ,performance| + N facilities|ʩ,route|· + N weapon|,$firing| + V congratulate|ף + N part|,%implement| +ɳ N tool|þ,*measure|,#weight| + N attribute|,strength|,&inanimate| +Ƭ N part|,%weapon| + V recreation|,entertainment| + V shoot| + V jump| +ͷ N weapon|,$firing| + N weapon|,$firing| +֮ N space|ռ,small|С + ADJ aValue|ֵ,behavior|ֹ,flexible| + ADJ aValue|ֵ,performance|,#FormChange|α + N attribute|,behavior|ֹ,flexible|,&event|¼ + N attribute|,performance|,#FormChange|α,&inanimate| +ѹ V restrain|ֹ,politics| +ҩ N weapon|,$firing|,mass| +ҩЯ N quantity|,amount|,&load|װ,#weapon| +ָ V PartSelfMove| +ָ֮ ADV aValue|ֵ,duration|,TimeShort| +ŵ N location|λ,&touch|,military| + N tool|þ,*recreation| + V recreation|,entertainment| + V accuse|ظ + N food|ʳƷ,#bird| + N part|,%bird|,embryo|,?food|ʳƷ + N shape| + N part|,%AnimalHuman|,embryo| +ø N physical|,%AnimalHuman|,#metabolize|л + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й,#disease| + N physical|,#animate| + N food|ʳƷ + N part|,%AnimalHuman|,embryo| + N bird|,*GiveBirth| + N part|,%AnimalHuman|,#embryo|,skin|Ƥ + N part|,%AnimalHuman|,embryo| + V RegardAs| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,kind|,special| + V bear|е + V equal| + V manage| + V pawn|Ѻ + V regard|Ϊ + V undertake| + PREP {condition} + AUX {modality|} + CONJ {time|ʱ} + V bear|е + V engage|,content=military|,military| + ADV aValue|ֵ,location|λ,special| + V suffer|,content=disgraced| + V RegardAs| + ADJ aValue|ֵ,source|Դ,original|ԭ + N time|ʱ,past| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +Ҫ N human|,desired|,important| + V obtain|õ,possession=power|,politics| + ADJ aValue|ֵ,location|λ,special| + N human|,original|ԭ +ʱ N time|ʱ,special| + CONJ {time|ʱ} + V undertake|,content=official| + N FlowerGrass|,?medicine|ҩ + V decide| + ADV aValue|ֵ,duration|,TimeShort| + V manage|,patient=family| +ҵ N human|,*manage|,family| +ҵ N human|,family|,male| + V manage|,patient=self| + N time|ʱ,now| + N institution|,official| +ڶ CONJ {time|ʱ} + N quantity| + ADJ aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,behavior|ֹ,opened| + N time|ʱ,now|,year| + N time|ʱ,past| + N time|ʱ,year| +Ʊ N bill|Ʊ,#wealth|Ǯ,#pawn|Ѻ + N InstitutePlace|,@pawn|Ѻ,*sell|,@buy|,commercial| +ϰ N human|,commercial| + N publications|鿯 +ǰ ADJ aValue|ֵ,time|ʱ,now| +ǰ N time|ʱ,now| +Ȩ V obtain|õ,possession=power|,politics| +Ȩ N human|,#power|,#rights|Ȩ,*control| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ ADV {comment|} +ʲ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N time|ʱ,day| +ʱ N time|ʱ,past| + N part|,%language| + N human|,*relate|й + N time|ʱ,day| +ͥ ADV aValue|ֵ,location|λ,special|,police| +ͷ ADV aValue|ֵ,location|λ +ͷ N artifact|˹,generic|ͳ,#pawn|Ѻ +ͷ V enjoy|,content=sequence| +ͷ V happen| +ͷ V persuade|Ȱ˵,manner=strict| + N time|ʱ,night| +֮ N affairs|,urgent| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ V win|ʤ,scope=select|ѡ +ҹ N time|ʱ,night| + N time|ʱ,month| + V PayAttention|ע + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {comment|} + ADJ {comment|} + V obtain|õ,possession=power|,politics| +֮ V FeelNoQualms| + N location|λ,middle| + N time|ʱ,now| + STRU {range} + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + PREP {condition} + V RegardAs| + V RegardAs| + V block|ס + V obstruct|ֹ + N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ + N part|,%implement|,*control|,#gas|,#liquid|Һ + V block|ס,patient=wind| +粣 N part|,%LandVehicle| + V obstruct|ֹ,ResultEvent=visit| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect|,*defend| +ס V block|ס + N character|,surname|,human|,ProperName|ר + N community| + N community|,ProperName|ר,(China|й) + N community|,undesired|ݬ + N publications|鿯,#community| + N FlowerGrass|,?medicine|ҩ + N human|,$select|ѡ,#community| + N fact|,discuss|,#community| + N expenditure| + N attribute|,behavior|ֹ,&community| + N regulation| + N attribute|,attachment|,#community|,&human| + N regulation|,#community| +͹ N regulation|,#community|,#country| + N publications|鿯,#community|,(China|й) + N affairs|,education|,#community|,(China|й) + N human|,official|,undesired|ݬ + N attribute|,age|,#community|,&human|,(China|й) + N community| + N mark|־ +Ⱥ N community| +Ⱥϵ N attribute|,relatedness|,&community|,(China|й) + N human|,#community| +ʷ N fact|,#time|ʱ,#community|,(China|й) +ͬ V remove|,patient=opposed|,politics| +ͽ N human|,#community|,undesired|ݬ + N community|,(China|й) +Ա N human|,#community| +ί N institution|,#community| +ί N fact|,discuss|,#community| + N affairs|,#community| +С N part|,%community| +У N InstitutePlace|,education|,#community| + N attribute|,property|,&community| + N human|,#community|,undesired|ݬ +Ա N human|,#community| +Ա N human|,politics|,#community|,(China|й) + N law|ɷ,#community| + N institution|,community|,#country|,politics| + N institution|,community|,army|,#country|,politics| +֧ N part|,%community| + N institution|,#country|,politics| +֧ N part|,%community| + N part|,%community| +֯ N part|,%community| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V remove| + V walk| + V wash|ϴ + V wave|ڶ + V wash|ϴ +Ȼ޴ V disappear|ʧ + V wave|ڶ + N attribute|,rank|ȼ,&artifact|˹ + N document| + N tool|þ + N tool|þ,@put|,generic|ͳ + N document| + N InstitutePlace|,@store|,#document| + N attribute|,rank|ȼ,&artifact|˹ + CLAS NounUnit|,&paper|ֽ + N shape| + N tool|þ,*cut|,*split|ƿ,*stab| + N part|,%tool|þ,*cut| + N fact|,fight| + N weapon|,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N attribute|,ability|,cut|,&human| + N part|,%tool|þ,*cut|,heart| + V planting|ֲ,manner=simple|,agricultural|ũ + N attribute|,ability|,cut|,&human| +⽣Ӱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%machine|,*cut|,heart| + N location|λ,#disease|,#wounded| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +Ƭ N part|,%tool|þ,*cut|,heart| +Ƭ N tool|þ,*MakeUp|ױ,*cut| +ǹ N weapon|,generic|ͳ + N tool|þ,@put| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +ɽ N phenomena|,dangerous|Σ,undesired|ݬ + N disease|,wounded|,#stab| + N fish| + N tool|þ,*cut|,*split|ƿ,*stab| + N human|,*damage| + V MakeTrouble| + V beat| + V MakeTrouble| + V destroy| + V MakeTrouble| + V beat| + V jump| + V walk| +Ϯ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ϯ V imitate|ģ + V FallDown| + V MoveItBack| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V alter|ı + V dump| + V end|ս,commercial| + V exchange| + V fail|ʧ + V reverse|ߵ + V venture|ð,commercial| + V replace|,patient=affairs| + V end|ս,commercial| + CONJ {comment|} +˵ CONJ {comment|} + V MoveItBack|,patient=LandVehicle| + V dump| + N part|,%AnimalHuman|,flesh| +һ V accuse|ظ + V FallDown| + V betray|,politics|,military| + V hang|,manner=treacherous| + V reverse|ߵ,patient=sequence| + V flow| + V irrigate|,agricultural|ũ + V replace| +ʱ V count| + V stand|վ,manner=reverse|ߵ + V flow| + V sell| + V sell| +ù V unfortunate| +ɤ V disable|м,scope=MakeSound| + ADV {supplement|ݽ} + V count| +ڶ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +һ NUM qValue|ֵ,sequence|,ordinal| + V resume|ָ,patient=wealth|Ǯ + V FallDown| +̨ V end|ս,politics| + V InDebt|,commercial| + V recompense| + V BeRecovered|ԭ,StateIni=bad| + V GoBackward| +θ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +θ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V FallDown| +ʩ V RashlyAct| +ʩ N fact|,RashlyAct| + V CausePartMove|,PatientPartof=foot| +ү N human|,*venture|ð,commercial| +Ӱ N trace|,#lights| +ӳ V appear| + V unfortunate| +Դ V FallDown| + V reverse|ߵ +ת V reverse|ߵ + N land|½,#waters|ˮ + N place|ط,country|,#waters|ˮ + N human|,*reside|ס,#land|½,#waters|ˮ + N land|½,#waters|ˮ + V beg| + V recite|ж,religion|ڽ + V recite|ж,religion|ڽ + V guide| + N human|,#occupation|ְλ,*guide|,entertainment| + V teach| + V transmit| + V transmit| + N weapon|,$firing| +ͧ N weapon|,ship|,military| + V transmit|,patient=electricity|,industrial| + V guide|,ResultEvent=buy| + N human|,#occupation|ְλ,*guide|,#buy| + N part|,%AnimalHuman|,nerve| + N part|,%implement|,nerve| + N part|,%machine|,route|· + V guide|,ResultEvent=VehicleGo|ʻ + N tool|þ,*transmit|,#fire| + N cause|ԭ + N tool|þ,*transmit|,#fire| + V guide|,ResultEvent=flow| + V cure|ҽ,content=excrete|й,medical|ҽ + V transmit|,patient=temperature|¶,industrial| + V transmit| +ʦ N human|,*guide|,desired| +ʦ N human|,*teach|,education| + N physical|,*transmit|,#electricity|,generic|ͳ + N tool|þ,*transmit|,#electricity| + V ResultIn| + N attribute|,direction|,&guide| + V guide| + V guide|,ResultEvent=perform|,entertainment| + N human|,#occupation|ְλ,*guide|,entertainment| + V guide| + V guide|,ResultEvent=tour| +Դ V situated| + V ResultIn| + V LeaveFor|ǰ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V arrive| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + STRU {Vachieve|} + V appear| + ADV aValue|ֵ,location|λ,all|ȫ + V arrive| + ADV aValue|ֵ,time|ʱ,ending|ĩ + V due| + V arrive|,LocationFin=extreme| + V arrive|,LocationFin=family| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V arrive| +˶ ADV aValue|ֵ,time|ʱ,ending|ĩ +ĿǰΪֹ ADV aValue|ֵ,time|ʱ,now| + V due| + V undertake|,content=occupation|ְλ + V obtain|õ +ͥ V appear|,location=institution|,#police| +ͷ ADV aValue|ֵ,degree|̶,extreme| +ͷ ADV aValue|ֵ,location|λ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +λ V finish| +ְ V undertake|,content=occupation|ְλ + N crop|ׯ + N part|,%crop|ׯ,?material| + N tool|þ,*frighten|Ż + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%crop|ׯ,embryo| + N crop|ׯ + V condole|° + N text|,*condole|° + V condole|° + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&information|Ϣ + N community|,undesired|ݬ,religion|ڽ + N facilities|ʩ,route|· + N method| + V regard|Ϊ + N regulation| + V speak|˵ + V farewell| +ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| + N fact|,religion|ڽ + N place|ط,religion|ڽ + V speak|˵ + N method| + N attribute|,behavior|ֹ,&human| +°ܻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +¹淶 N attribute|,behavior|ֹ,&human| + N attribute|,behavior|ֹ,&human| + N human|,religion|ڽ,female|Ů + V congratulate|ף + N community|,#knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N tool|þ,*perform|,#shows|,generic|ͳ + N location|λ,%route|· + N reason| +ֽ N paper|ֽ,@write|д +· N facilities|ʩ,route|· + N community|,religion|ڽ +ľ N material|,#route|· +Ǹ V apologize|Ǹ + N human|,religion|ڽ + N location|λ,%route|· +ʿ N human|,religion|ڽ +;˵ N information|Ϣ,wrong|,undesired|ݬ +ϲ V congratulate|ף,cause=lucky| +л V thank|л + N attribute|,behavior|ֹ,&human| + N human|,crime|,undesired|ݬ,*rob| + N human|,crime|,undesired|ݬ,*steal|͵ + V rob| + V steal|͵ + N fact|,#steal|͵,police| + N readings|,#steal|͵ + V steal|͵ + V gather|ɼ,means=break|۶,agricultural|ũ,#police|,crime| + N human|,crime|,undesired|ݬ,*rob| + V excrete|й,patient=waste|,time=night| + V rob| + V sell|,crime| +Ĺ V steal|͵,source=facilities|ʩ,crime| + V steal|͵,crime| +԰ N fact|,#steal|͵,police| +Է N human|,*steal|͵,undesired|ݬ,crime| + N fact|,steal|͵,undesired|ݬ,crime| +ȡ V steal|͵,crime| + V steal|͵,crime| + N human|,crime|,undesired|ݬ,*rob| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) + N attribute|,behavior|ֹ,&human| + N emotion|,like|ϧ,kindhearted|,desired| + N mental| + N place|ط,country|,ProperName|ר,(Germany|¹) +² N attribute|,ability|,&human| +²ż汸 ADJ aValue|ֵ,ability|,able|,desired| +¸ ADJ aValue|ֵ,reputation|,glorious|,desired| +¹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¹ N human|,(Germany|¹) +º N place|ط,capital|,ProperName|ר,(Iran|) + N money|,(Greece|ϣ) +ά N language|,#country|,ProperName|ר +ͨ N institution|,news|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר,(Germany|¹) + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| +־ N place|ط,country|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר + N affairs|,education|,#behavior|ֹ + N attribute|,behavior|ֹ,wisdom|ǻ,physique|,&human| + N place|ط,city|,ProperName|ר,(China|й) + V AmountTo|ܼ + N attribute|,effect|Ч,superior|,desired|,&event|¼ + V obtain|õ + V request|Ҫ + STRU {Vachieve|} + STRU {Vpossible|} + STRU {Vresult|} + AUX {modality|} +ò V ill|̬ +òʧ V WorthNot|ֵ +ò V BeUnable|,content=obtain|õ +ó V succeed|ɹ +ó V enjoy|,content=WellTreat|ƴ +ó V obtain|õ +ó V decide| +ô ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +õ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +õ V obtain|õ +õ V undergo| +õ V {Vable|} +õ ADJ aValue|ֵ,property|,$use| +÷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +÷ N quantity|,amount|,&result|,#compete|,sport| +ùҹ V slack|͵ +ü V succeed|ɹ +ý V enjoy|,content=reward| +ý N human|,$reward| +þ V BeWell|׳ +þ V undergo|,content=rescue| +ÿ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V obtain|õ,possession=pros| + ADJ aValue|ֵ,ability|,able|,desired| +¤ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V obtain|õ,possession=name| + STRU {Vable|} + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ +ʤ V win|ʤ +ʧ N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V succeed|ɹ + N result| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADV aValue|ֵ,ability|,able|,desired| +Ϥ V know|֪ +Ӧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V BeAble|ܹ + V satisfied| + V satisfied| + V obtain|õ,content=pros| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +֪ V know|֪ +־ V succeed|ɹ + N human|,*win|ʤ + V offend| + N location|λ,$firing| + STRU {DeChinese|} +Ļ CONJ {condition|} +貨 N place|ط,capital|,ProperName|ר,(Libya|) +ȷ ADV {comment|} +ȷ N material|,?clothing| +ʿ N LandVehicle|,$lend|,commercial| + V kick|߲ +̤ V kick|߲ + V CausePartMove| + V die| + N tool|þ + N tool|þ,*illuminate| +ƹ N lights| +ƹ N lights|,entertainment|,#perform|,#shows| +ƺ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ƻ N fire| +ƻ N fact|,congratulate|ף,festival| +ƻ N tool|þ,*illuminate| +ƻԻ ADJ aValue|ֵ,brightness|,bright| +ƻͨ ADJ aValue|ֵ,brightness|,bright| +ƽ N time|ʱ,festival|,@congratulate|ף +ƾ N tool|þ,*illuminate|,generic|ͳ + N tool|þ,*illuminate| + N clothing|,#leg| + N problem|,#guess|²,#recreation| + N part|,%tool|þ,#illuminate|,heart| +˿ N part|,%tool|þ,#illuminate|,heart| + N facilities|ʩ,*illuminate|,#vehicle|ͨ,#AlterLocation|ռλ +̨ N part|,%tool|þ,#illuminate|,heart| +о N material|,?clothing|,?tool|þ + N part|,%tool|þ,#illuminate|,heart| + N material|,liquid|Һ,$burn|,#illuminate| + N part|,%tool|þ,*cover|ڸ,#illuminate| + V climb|ʵ + V kick|߲ + V publish| + V record|¼ +DZ V publish|,LocationFin=publications|鿯 +dz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +dz V start|ʼ,content=leave|뿪 +dz V publish| +Ƿ켫 ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ǹ V climb|ʵ,LocationFin=tall| +ǻ V become|Ϊ,isa=official|,royal| +ǻ V climb|ʵ,LocationFin=aircraft| +ǻ N document|,*climb|ʵ,#aircraft| +Ǽ V record|¼ + V climb|ʵ + V tour| +¼ V record|¼ +½ V arrive| +½Dz N army| +½ͧ N weapon|,ship|,military| + V visit| +ɽ N fact|,sport| +ɽ N community|,sport| +Ϸɻ V climb|ʵ,LocationFin=aircraft| +̨ V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +̨ V show| + V GoInto| + V arrive|,LocationFin=celestial| + V publish| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,rank|ȼ,&entity|ʵ + V equal| + V wait|ȴ + COOR {and|} +ȴ V wait|ȴ +ȵ CONJ {time|ʱ} +ȵ V wait|ȴ +ȵ CONJ {and|} +ȶ N qValue|ֵ,amount|,equal| +ȶ֮ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +ȷ V separate| +ȷ N part|,%physical|,BeSame|ͬ +Ⱥ N symbol|,#DoSum| +Ⱥ V wait|ȴ +ȼ N attribute|,rank|ȼ,&entity|ʵ +ȼ ADJ aValue|ֵ,similarity|ͬ,alike| +Ⱦ ADJ aValue|ֵ,similarity|ͬ,alike|,#distance| +Ⱦ N attribute|,distance|,&physical| + N part|,%physical| + V MakeEqual|ʹ +ͬ V BeSame|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| +֮ V despise| +Ч ADJ aValue|ֵ,effect|Ч,equal| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V equal| +ֵ ADJ aValue|ֵ,value|ֵ,equal| + V wait|ȴ + V CausePartMove|,PatientPartof=eye| + V look| +ɴ۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| + V ExpressAnger|ʾŭ + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N character|,surname|,human|,ProperName|ר +Сƽ N human|,official|,politics|,ProperName|ר,(China|й) + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̷ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +Χ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V CausePartMove| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,height|߶,low| +Ͱ ADJ aValue|ֵ,height|߶,low| +Ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$create| +ͳ N water|ˮ +ͳ ADJ FeelingByBad| +ͳ ADJ aValue|ֵ,SoundVolume|,weak| +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ N land|½ +͵ N location|λ +͵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ +ͷֱ N attribute|,performance|,weak|,&distinguish|ֱ +͹ V estimate|,manner=insufficiently|Ƿ +͹ N attribute|,circumstances|,wane|˥,extreme|,&event|¼ +ͺ V exhaust|,quantity=few| +ͼ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,elementary| +ͼ N attribute|,price|۸,cheap|,&thing|,commercial| +ͼ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +Ϳ ADJ aValue|ֵ,location|λ,low|,#sky| +Ϳ N sky| + ADJ aValue|ֵ,effect|Ч,useless|,commercial| + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V FeelingByBad| + N decline|˥,commercial| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ +꼶 N human|,*study|ѧ,education| +Ƶ N aValue|ֵ,frequency|Ƶ,rarely|ż + N disease|,#fever| +һ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + N disease|,#fever| + ADJ aValue|ֵ,SoundVolume|,weak| + N aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| +ٶ ADJ aValue|ֵ,speed|ٶ,slow| +ٶ N attribute|,speed|ٶ,slow|,&AlterLocation|ռλ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V surrender| + ADJ aValue|ֵ,form|״,dented| +΢ ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,temperature|¶,cold| + N attribute|,temperature|¶,cold|,&physical| +Ϣ ADJ aValue|ֵ,effect|Ч,useless|,commercial| +Ϣ N money|,commercial|,$lend| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ѫѹ N disease| +ѹ N attribute|,strength|,&physical| + ADJ aValue|ֵ,SoundQuality| + N MusicTool| + ADJ aValue|ֵ,height|߶,low|,more| + ADJ aValue|ֵ,price|۸,cheap|,more| + ADJ aValue|ֵ,standard|׼,useless| + N CloudMist| +ֲ N AlgaeFungi|ֲ +ֵ ADJ aValue|ֵ,value|ֵ,^precious| +ֵ׺Ʒ N artifact|˹,generic|ͳ,*AptTo|,#OutOfOrder| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + V fall| +γ N bacteria|΢ +δ V MakeSound| +δ V fall| +ε N chemical|ѧ,*remove|,#InsectWorm| +ζ N method|,*measure| +ι V irrigate|,agricultural|ũ +ˮ N liquid|Һ +ˮɱ ADJ aValue|ֵ,temperature|¶,cold| +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ע V fall| + V teach| +ķ N money|,(the United Arab Emirates|) +˹ N recreation|,entertainment| +˹ N InstitutePlace|,@recreation|,(US|) + V equal| + V fight| + N human|,enemy| +еη N chemical|ѧ,poison|,agricultural|ũ +ж ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +з N army|,enemy| +й N place|ط,country|,enemy| +к N place|ط,enemy|,military| +о N army|,enemy|,military| + N attribute|,circumstances|,&army|,#enemy|,military| + N army|,enemy| + N human|,enemy| + V hate| + N human|,enemy| +̽ N human|,military|,enemy|,*scout| + N human|,military|,enemy|,*scout| +α N human|,enemy| + N human|,friend|,enemy|,military| +˫ N human|,friend|,enemy|,military| + N emotion|,opposed|,undesired|ݬ +ռ ADJ aValue|ֵ,attachment|,$occupy|ռ,#enemy|,undesired|ݬ +ռ N place|ط,$occupy|ռ,#enemy|,undesired|ݬ + N MusicTool| + N tool|þ,*MakeSound| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N community|,#space|ռ,past| + V wash|ϴ +ӳ V remove| +ӵ V wash|ϴ + N material|,?clothing| + N material|,?clothing| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,relatedness|,intimate| +մ V PassOn| + V PropUp|֧ + V arrive| + V equal| + V pawn|Ѻ + V recompense| + V resist| + V withstand|ס +ֲ V arrive| +ֳ V recompense| +ִ V FitNot| +ִ V arrive| +ֵ V obstruct|ֹ +ֻ V replace| +ֿ V resist| +ֿס ADJ aValue|ֵ,ability|,able|,$resist| +ֿ N human|,*resist| + V deny| + V return|,possession=strength| + V weaken| +Ѻ V pawn|Ѻ + V resist| + V withstand|ס +ծ V recompense|,possession=wealth|Ǯ + V refuse| + V withstand|ס +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$refuse| + N attribute|,scene|,&physical| + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,time|ʱ,ending|ĩ + N text| +װ N part|,%tool|þ,#TakePicture| +ײ N part|,%inanimate|,base| +ײ N attribute|,status|,LowRank|͵,&human| +ײ N part|,%building|,base| +׷ N material|,*feed|ι,#crop|ׯ +׸ N text| +׼ N attribute|,price|۸,&thing|,commercial| + N part|,%artifact|˹,base| +Ƭ N part|,%tool|þ,#TakePicture| + N material|,liquid|Һ,*decorate|װ + N attribute|,strength|,&human| +ɫ N attribute|,color|ɫ,original|ԭ,&image|ͼ + N standpoint| + N symbol|,#quantity| + N place|ط,city|,ProperName|ר,(US|) +ͼ N image|ͼ +ϸ N part|,%event|¼ + ADJ aValue|ֵ,sequence|,hind| + N location|λ,beneath| + N human|,*scout| + N mark|־,linear|,sport| + N part|,%fact|,bone| +ֹ N process|,ending|ĩ + N part|,%physical|,*surplus|ʣ + N part|,%artifact|˹,base| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&physical| + N earth|,#weather| + N land|½ + N land|½,#crop|ׯ + N location|λ + N place|ط +ذ N material|,?building| +ذ N part|,%building|,base| +ر N facilities|ʩ,space|ռ,military|,@defend| +ر N part|,%earth|,skin|Ƥ,external| +ز N attribute|,circumstances|,&event|¼ +ز N InsectWorm| +ز N part|,%earth| +زѧ N human|,#knowledge|֪ʶ +ز N wealth|Ǯ,#earth|,#building| +س N tool|þ,*measure| +ش V situated| +شﲩ N attribute|,area|,wide|,&country| +ش N place|ط +ص ADJ aValue|ֵ,GoodBad|û,good|,desired| +ص ADJ aValue|ֵ,content|,pure|,desired| +ص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N facilities|ʩ,route|· +صս N fact|,fight|,#land|½,military| +صص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N location|λ +ض N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ض N part|,%earth|,mouth| +ض N part|,%place|ط +ضԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԵص N weapon|,*firing|,#land|½ +ضԿ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԿյ N weapon|,*firing|,#aircraft| +ط N aValue|ֵ,attachment|,branch|֧ +ط N part|,%entity|ʵ,aspect| +ط N part|,%organization|֯ +ط N place|ط +ط N space|ռ +ط N disease| +ط N human|,official| +ط N human|,*reside|ס +طɫ N attribute|,style|,&edible|ʳ,&building| +ط N FlowerGrass|,?medicine|ҩ +ع N facilities|ʩ,space|ռ,religion|ڽ +ع N facilities|ʩ,space|ռ,royal| +ع N facilities|ʩ,#liquid|Һ,linear| +ع N part|,%vegetable|߲,embryo|,$eat| +ع N vegetable|߲ +عϡ N place|ط,broad| +ػ N part|,%building|,base| +ؼ N attribute|,price|۸,&land|½,commercial| +ؽ˨ N part|,%machine|,*fix|ס +ؽ N facilities|ʩ,@store|,@put| +ؽ N place|ط,boundary| +ؿ V investigate|,content=earth| +ؿ N part|,%earth|,skin|Ƥ +ؿյ N weapon|,*firing|,#aircraft| +ؿ N part|,%earth| + N place|ط,capital|,ProperName|ר,(Albania|) +ϻ N InsectWorm| + N weapon| + N attribute|,property|,&earth| + N knowledge|֪ʶ,#earth|,#country|,#weather| +ѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ +սѧ N knowledge|֪ʶ +սѧ N human|,#knowledge|֪ʶ + N attribute|,ProsCons|,pros|,#earth|,&event|¼ +˺ N attribute|,ProsCons|,pros|,#earth|,#human|,&event|¼ + N material|,*build|,route|· + N attribute|,ability|,#grow|ɳ +ò N knowledge|֪ʶ,#earth|,#country|,#weather| +òѧ N human|,#knowledge|֪ʶ + N land|½ + N part|,%building|,base| + N part|,%earth|,skin|Ƥ + N place|ط +沿 N army| +ս N army| + N attribute|,name|,&place|ط +ѧ N knowledge|֪ʶ,#name|,#place|ط +Ĥ N tool|þ,#planting|ֲ + N place|ط +Ƥ N place|ط +Ƥ N place|ط,@build| +Ʀ N human|,*MakeBad|Ӻ,undesired|ݬ +ƽ N part|,%earth| + N location|λ + N earth| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| + N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ + N place|ط + ADJ aValue|ֵ,attachment|,physical| + N location|λ,%earth| + N attribute|,form|״,&land|½ +˰ N expenditure|,#land|½ +̯ N InstitutePlace|,*sell|,commercial| +̺ N tool|þ,*cover|ڸ,#building| + N facilities|ʩ,LandVehicle| +ͷ N location|λ,#paper|ֽ +ͷ N part|,%land|½,edge| +ͷ N place|ط +ͷ N human|,*MakeBad|Ӻ,undesired|ݬ +ͼ N image|ͼ,#earth|,#country| +ͼ N publications|鿯,#image|ͼ,#earth|,#country| +ί N institution|,#community|,#place|ط +λ N attribute|,status|,&human| +λ N location|λ +λ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ͽ N land|½ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,location|λ,beneath| + N location|λ,beneath| +µ N community|,secret| + N room| +ˮ N water|ˮ + N tool|þ,linear|,*transmit| + N attribute|,form|״,&land|½ + N AlgaeFungi|ֲ + N place|ط + N place|ط,#humanized|,#die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +й N humanized| +Եѧ N knowledge|֪ʶ +Եѧ N human|,#knowledge|֪ʶ + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ַ N location|λ,#reside|ס + N part|,%land|½ +ʹѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#land|½ +ѧ N human|,#knowledge|֪ʶ +к N waters|ˮ,surfacial|,ProperName|ר + N human|,#wealth|Ǯ,rich| + N human|,*entertain|д + N payment|,#land|½ + N part|,%earth| + N part|,%plant|ֲ,base| + PREFIX aValue|ֵ,sequence|,ordinal| +ڰ NUM qValue|ֵ,sequence|,ordinal| +ڶ NUM qValue|ֵ,sequence|,ordinal| +ڶս N fact|,fight|,military| +ڶ ADJ aValue|ֵ,rank|ȼ,elementary| +ڶ N sound|,#language| +ڶʮ NUM qValue|ֵ,sequence|,ordinal| +ڶ ADJ aValue|ֵ,importance|,secondary| +ھ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +ɶ N money|,(Croatia|޵) +ɶ N money|,(Kuwait|) +ɶ N money|,(Slovenia|˹) +ɶ N money|,(Tunisia|ͻ˹) +ɶ N money|,(Yugoslavia|˹) + NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + N human|,organization|֯,aspect| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮһ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + NUM qValue|ֵ,sequence|,ordinal| +һ ADJ aValue|ֵ,importance|,important| +һ NUM qValue|ֵ,sequence|,ordinal| +һ N human|,official|,important| +һս N fact|,fight|,military| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ N sound|,#language| +һ ADJ aValue|ֵ,source|Դ,original|ԭ +һ ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,royal| + N human|,royal| +۹ N place|ط,country| +۹ ADJ aValue|ֵ,behavior|ֹ,fierce|,#country|,undesired|ݬ +۹ N system|ƶ,#country|,fierce|,undesired|ݬ +۹ N human|,fierce|,#country|,undesired|ݬ + N human|,#occupation|ְλ,royal| + N human|,family|,male| +ܵ N human|,family|,male| +ܸ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,male| + N human|,*study|ѧ + V submit| +ݲ V add| +ݹ ADJ aValue|ֵ,frequency|Ƶ,again| +ݼ V BecomeMore| +ݼ V BecomeLess| +ݽ V submit| +ݽ V BecomeMore| +ݽ V GoForward|ǰ + V post|ʼ + N human|,*post|ʼ + V BecomeMore| + V MakeAppointment|Լ + V forming|γ +޽ V forming|γ,PatientProduct=relatedness|,friend| +޽ V forming|γ,PatientProduct=relatedness|,friend|,politics| +޽ V MakeAppointment|Լ +޽ V forming|γ + V ally| + V ally|,means=GetMarried| +Լ V MakeAppointment|Լ,content=agreement|Լ +Լ N organization|֯,*MakeAppointment|Լ +Լ N place|ط,country|,*MakeAppointment|Լ + V establish| + V FallDown| + V fall| + V leave|뿪 + N part|,%physical|,head|ͷ + V run| + V shiver| +ߵ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ߵ V reverse|ߵ +ߵǷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߸ V destroy| +߸ ADJ aValue|ֵ,ability|,able|,uprise|,undesired|ݬ +߸ N human|,*destroy| +ȥ V repeat|ظ + V roam|,unfortunate| +˲ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V shiver| + V measure| +ﲥ V calculate|,manner=miser| + V calculate|,manner=miser| + V measure| + V think|˼ + V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N chemical|ѧ + N chemical|ѧ +⻯ N chemical|ѧ + N medicine|ҩ + N medicine|ҩ + N attribute|,property|,&entity|ʵ + V check| + V choose|ѡ + V drop|Ͷ,agricultural|ũ + V fall| + N image|ͼ,dot| + V lighting|ȼ + N part|,%character| + N part|,%entity|ʵ,aspect| + ADJ qValue|ֵ,amount|,some|Щ + N shape| + N symbol| + V tell| + N time|ʱ,hour|ʱ + N time|ʱ,hour|ʱ,special| + V touch| + N trace|,round|Բ,small|С,dot| + V write|д +㲥 V drop|Ͷ,agricultural|ũ +㲥 V request|Ҫ,ResultEvent=disseminate|,#shows| +㲦 V teach| +㲹 V eat| + V buy|,possession=food|ʳƷ + V TurnOn|,patient=tool|þ,ResultEvent=illuminate| + ADJ qValue|ֵ,amount|,few| + V request|Ҫ,ResultEvent=sing| +㺸 V fasten|˩,industrial| +㻭 V tell| +㻯 V teach|,religion|ڽ + V lighting|ȼ + V touch|,#computer| +㼢 V eat| +㽫 V CauseToBe|ʹ֮ +î V count| + V tell| + V count| + V mention|ἰ + V estimate| + V reveal|¶ + N fact|,punish|,#exercise| +ȼ V lighting|ȼ +Ⱦ V draw| + V shoot|,military| + V check| + V count| + N quantity|,amount|,&event|¼ + V express|ʾ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V agree|ͬ + N food|ʳƷ +Ѩ V beat|,PartOfTouch=nerve| + V check| + N image|ͼ + N time|ʱ,hour|ʱ,special| +׺ V decorate|װ +׺ V use|,ResultEvent=display|չʾ + N part|,%entity|ʵ,heart| + N shape|,liquid|Һ + N thought|ͷ + N trace|,round|Բ,small|С,dot| + N artifact|˹,$pawn|Ѻ + N fact| + N law|ɷ + V manage| + V pawn|Ѻ + N publications|鿯 + N text| + N human|,*pawn|Ѻ +䵱 V pawn|Ѻ +䵱ҵ N affairs|,pawn|Ѻ +䷶ N human|,desired|,$imitate|ģ + N text| +伮 N readings| + N fact| + ADJ aValue|ֵ,trueness|α,true|,desired| +Ѻ V pawn|Ѻ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,color|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + V fill| + V pay| + N tool|þ,*inlay|Ƕ +油 V eat| +׶ V eat| +׶ V establish|,patient=base| +׶ V put| +渶 V pay| + N tool|þ,*inlay|Ƕ +ʯ N human|,undesired|ݬ + N money|,$pay| +Ƭ N part|,%implement| +Ȧ N part|,%implement| +֧ V pay| + N tool|þ,*inlay|Ƕ + V damage|,means=electricity| + N electricity| + N letter|ż + N tool|þ,*illuminate|,#electricity| +籨 N letter|ż +籨Һ N information|Ϣ,#location|λ,#letter|ż +籨 N institution|,#information|Ϣ + N tool|þ,*measure|,#electricity| + N tool|þ,*cool| +粨 N electricity| + N machine|,*dig|ھ +糡 N space|ռ,#electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +糪 N machine|,*disseminate| +糪ͷ N part|,%machine|,#disseminate|,head|ͷ +糵 N LandVehicle|,#electricity| + N part|,%artifact|˹ +紫 N image|ͼ,$post|ʼ +紫 N machine|,*post|ʼ +紵 N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,performance| +Ų N electricity| +ų N space|ռ,#electricity| + N metal|,material| + N InstitutePlace|,@teach|,@study|ѧ,education| +絼 N quantity|,volume|ݻ,&electricity| + N tool|þ,*illuminate| +綯 ADJ aValue|ֵ,performance| +綯 N machine|,#electricity| +綯 N part|,%physical|,strength|,#electricity| + V apply|ͿĨ,industrial| +ȱ N tool|þ,*measure|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| + N expenditure|,#electricity| + N tool|þ,#wind|,*cool|,#electricity| + N tool|þ,#electricity|,arm| + N tool|þ,#electricity| + V tell|,instrument=tool|þ,#electricity| +繤 N fact|,#electricity| +繤 N human|,#occupation|ְλ,#electricity| + N information|Ϣ,#location|λ,#letter|ż +ܾ N institution|,#electricity|,ProperName|ר,politics| + N lights|,#electricity| +纸 V fasten|˩,industrial| +纸 N human|,#occupation|ְλ,*fasten|˩,#electricity| +纸 N machine|,*fasten|˩,#electricity| + N part|,%electricity| + V congratulate|ף +绡 N lights|,#electricity| +绡¯ N facilities|ʩ,space|ռ,industrial|,produce|,#metal| +绯 V teach|,education| +绯ѧ N knowledge|֪ʶ,#electricity| +绰 N fact|,communicate| +绰 N tool|þ,*communicate| +绰 N account|,#symbol|,#facilities|ʩ,#communicate| +绰벾 N account|,#symbol|,#facilities|ʩ,#communicate| +绰 N tool|þ,*communicate| + V post|ʼ + N fire|,#electricity| + N disease| + N machine|,#electricity| +缫 N attribute|,kind|,&electricity| + N part|,%tool|þ + V teach|,education| + N separate| + N chemical|ѧ + N tool|þ,*break|۶,#electricity| +翾 N tool|þ,cubic|,@cook|,#electricity| + N material|,linear|,@transmit| + N part|,%physical|,#electricity| + ADJ aValue|ֵ,performance| + N electricity| + N institution|,#electricity|,ProperName|ר,politics| + N institution|,#electricity|,ProperName|ר,politics| + N quantity|,amount|,&electricity| + N method|,#cure|ҽ,#disease|,#electricity| + N tool|þ,#electricity|,#material| + N tool|þ,*MakeSound|,#sound| + N electricity| + N tool|þ,*measure|,#electricity| + N quantity|,amount|,&electricity| +¯ N facilities|ʩ,space|ռ,industrial|,*produce|,#metal| +¯ N tool|þ,*WarmUp|,*cook| +· N part|,linear|,#electricity| +·ͼ N image|ͼ,#electricity| + N part|,%artifact|˹,#electricity|,*control| +ľ N material|,?tool|þ + N computer| + N part|,%physical|,electricity|,strength| +ť N part|,%artifact|˹,*control| +ƿ N part|,%tool|þ,#electricity| + N tool|þ,generic|ͳ,#electricity| + ADJ aValue|ֵ,performance| + V ize|̬,PatientAttribute=electricity|,industrial| + V WarmUp|,means=electricity| + ADJ aValue|ֵ,property|,WarmUp| + N attribute|,ability|,electricity|,&implement| + N part|,implement|,electricity| + N tool|þ,#wind|,*cool|,#electricity| + V refine|,means=electricity| +ʯ N chemical|ѧ + N image|ͼ,shows| + N tool|þ,*look|,#image|ͼ,#shows| +Ӵѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ӹ N human|,*look|,#perform| +ӹ㲥 V disseminate|,#image|ͼ,#shows| +ӻ N tool|þ,*look|,#image|ͼ,#shows| +Ӿ N shows| +Ƭ N shows| + N facilities|ʩ,*disseminate| +̨ N institution|,*disseminate| + N facilities|ʩ,*disseminate| +ת V disseminate|,#image|ͼ,#shows| +ת N facilities|ʩ,*disseminate| + N tool|þ,#electricity| +ˢ N tool|þ,#electricity| +̨ N institution|,*disseminate| +̨ N tool|þ,*disseminate| + V MakeUp|ױ + N machine|,*lift|,#electricity| +Ͳ N tool|þ,*illuminate|,#electricity| + N facilities|ʩ,*transmit|,#electricity| +λ N attribute|,strength|,#electricity| + N readings| + N tool|þ,linear|,@transmit| + N affairs|,*disseminate|,#information|Ϣ +ź N information|Ϣ +ž N institution|,#disseminate|,#information|Ϣ + V damage|,means=electricity| + V punish|,kill|ɱ,means=electricity| +ѧ N knowledge|֪ʶ,#electricity| +Ѷ N affairs|,*disseminate|,#information|Ϣ +ѹ N attribute|,amount|,&electricity| + N tool|þ,police|,*punish|,#crime| +Ӱ N shows| +Ӱ N readings|,#shows| +Ӱ N human|,entertainment| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӿ N phenomena|,#electricity| +Դ N location|λ,@ExistAppear|,#electricity| + N tool|þ,*WarmUp|,*cook| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + ADJ aValue|ֵ,performance| +Ӳ N part|,physical| +ӹ N part|,%implement|,#electricity| + N MusicTool| + N affairs|,commercial|,#software|,#computer| +ʼ N facilities|ʩ,software|,@communicate|,information|Ϣ,#computer| + ADJ aValue|ֵ,performance| + N attribute|,strength|,obstruct|ֹ,electricity|,&physical| + V borrow| +軧 N human|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ + N place|ط + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,*sell|,commercial| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| +̰ N human|,*steal|͵,undesired|ݬ,crime| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| +Ա N human|,#occupation|ְλ,employee|Ա,commercial|,*sell| + N human|,#occupation|ְλ,*sell|,commercial| + V ThinkOf|˼ + V ThinkOf|˼ + V ThinkOf|˼ + V establish| + V salute|¾,means=provide| +춨 V establish| +춼 V establish|,patient=capital|,politics| + V establish|,patient=base| + N human|,*establish| + N tool|þ,generic|ͳ + N waters|ˮ,surfacial| + N material|,#food|ʳƷ + N facilities|ʩ,space|ռ,religion|ڽ + N house|,royal| + N room| + V situated|,location=ending|ĩ + N army| + N human|,desired|,*win|ʤ,#compete| + N house|,religion|ڽ + N house|,royal| + N room| + N human|,royal| +ﱤ N facilities|ʩ,space|ռ,military|,@defend| +¥ N facilities|ʩ,space|ռ,military|,@look|,@defend| + V HoldInMouth| + N bird| + V carve| + V carve|,ContentProduct=image|ͼ + V carve| + N image|ͼ,$carve| +̼ N human|,*carve|,entertainment| + N part|,%building|,bone|,*decorate|װ + V write|д,manner=refined| + V carve| + N image|ͼ,$carve| + N image|ͼ,$carve| + V carve| + V write|д,manner=refined| + V decline|˥ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + V decline|˥ + V decline|˥ +ή V decline|˥ +л V decline|˥ +л V die| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V MakeTrouble| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V BecomeLess| + V exchange| + V fall| + V inferior| + V lose|ʧȥ + V turn|Ťת + V replace| + V WeatherBad| + V inferior| + V exchange| + V fall| +ɫ V AppearanceChange|۱,scope=color|ɫ +ͷ V TurnRound| + V fall| + V despise| +ת V turn|Ťת + V condole|° + V hang| + V install|װ + V remove| + N machine|,*lift| + N tool|þ,*illuminate| + N part|,%building| +ɵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N SportTool|˶ +¥ N house| + N facilities|ʩ,route|·,#waters|ˮ +ɤ V drill|ϰ,content=sing| +ɥ V condole|°,means=visit| + N tool|þ,#wind|,*cool| + V kill|ɱ + V suicide|ɱ +Ͱ N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,*fasten|˩,#foot| + V remove| + V condole|° + V lift| +װ V install|װ + V catch|׽ס + V seek|ıȡ,manner=sly| + N tool|þ,$eat|,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish|,generic|ͳ + V catch|׽ס,patient=fish| + V TakeAway|ᶯ + V adjust| + N attribute|,SoundQuality|,&music| + N attribute|,SoundQuality|,&speak|˵ + N attribute|,kind|,&music| + V mediate| + V mix| +Dz V dispatch|Dz,patient=army|,military| + V issue|ַ + V investigate| + N human|,*investigate| + V mediate| + V TakeAway|ᶯ + V TakeAway|ᶯ + V assemble|ۼ + V mobilize| + V dispatch|Dz + V manage| + V cease|ͣ,content=defend|,military| + N attribute|,width|,$adjust|,&physical| + N tool|þ,*eat| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V coordinate|Э + V mediate| + V maintain| + V exchange| + V dismiss| + V assemble|ۼ + V adjust| + V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V adjust|,patient=price|۸ + V adjust| + V adjust| + V coordinate|Э + V mediate| + N human|,*mediate| + N human|,*mediate| + V cure|ҽ,content=bleed|Ѫ,#female|Ů + V adjust| + N undergo|,content=$dispatch|Dz + V TakeCare| + V maintain|,medical|ҽ + N material|,#food|ʳƷ,$eat|,generic|ͳ + N information|Ϣ,#dispatch|Dz +Ŷ N attribute|,SoundVolume|,&speak|˵ +Ŷ N standpoint| +Ŷ ADJ aValue|ֵ,SoundVolume|,loud| +Ū V adjust| +Ū V incite|ָʹ +Ū V tease|ȡ + V dispatch|Dz + V dispatch|Dz + V produce|,means=mix| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƶ N attribute|,frequency|Ƶ,$adjust|,&physical| +Dz V dispatch|Dz + V ShowLove|ʾ + V undertake| +ɫ V adjust|,patient=color|ɫ + V adjust| + V incite|ָʹ +ͣ V mediate| +ͷ N attribute|,SoundQuality|,&music| +ͷ N attribute|,SoundVolume|,&speak|˵ +ͷ V turn|Ťת +ζ V adjust|,patient=taste|ζ +ζƷ N material|,#food|ʳƷ,$eat|,generic|ͳ +Ϸ V damage|,crime| + N attribute|,electricity|,$adjust|,&physical| +Ц V tease|ȡ +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V investigate| + V perform| + V maintain|,medical|ҽ + V adjust|,patient=SoundQuality| + V use| + V mix| + V transport| + V adjust| + N human|,*adjust| +ְ V undergo|,content=$dispatch|Dz + V adjust| +ƽ N tool|þ,#computer| + V cure|ҽ +ת V turn|Ťת +ת V undergo|,content=$dispatch|Dz +ת V undergo|,content=$dispatch|Dz + V adjust|,patient=payment| + N attribute|,SoundQuality|,&music| +٩ V LaughAt|Ц + V BecomeLess| + V FallDown| + V fall| + V FallDown| +ײײ V walk|,manner=wave|ڶ + N attribute|,range|,BecomeLess|,&price|۸,commercial| + V BecomeLess|,scope=price|۸ + V FallDown| + V fail|ʧ + V fall| + V BecomeLess| + N attribute|,outlook|ǰ,BecomeLess|,&price|۸,commercial| + ADJ aValue|ֵ,content|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,family|,male| + N human|,family|,male| + N tool|þ,cubic|,*put|,#food|ʳƷ + N tool|þ,cubic|,*put|,#food|ʳƷ + N InsectWorm|,*fly| + N part|,%AnimalHuman|,bone| +λ N FlowerGrass| +Ӿ V exercise|,#swim|,sport| + V replace| + V happen|,frequency=often| + N information|Ϣ,military| +Ա N human|,#occupation|ְλ,police|,military|,*scout| + V fold|ߡ + V pile|ѷ + V repeat|ظ,manner=improper| + N character|,surname|,human|,ProperName|ר + N human| + N human|,adult|,male| + NUM qValue|ֵ,sequence|,ordinal| + N shape| + N facilities|ʩ,#waters|ˮ,*protect| + N material| + ADJ qValue|ֵ,amount|,few| +ϩ N chemical|ѧ + V persuade|Ȱ˵ +Ƕ,îî ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ϩ N chemical|ѧ + N FlowerGrass| +ֳ N stationery|ľ,*draw| + V look| + V follow| +ס V PayAttention|ע + V look| + V sting| + ECHO sound| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V fasten|˩ + V fasten|˩,means=beat| + V follow| + N tool|þ,*fix|ס,metal|,acute| + V urge|ʹ + N tool|þ,#crop|ׯ + N tool|þ,*beat| + N fish| + V follow| +Ь N SportTool|˶,#clothing|,#foot| + N human|,*damage| + N tool|þ,*fix|ס,metal|,acute| + V PropUp|֧ + V bump|ײ + V equal| + V hold|,instrument=head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%entity|ʵ,head|ͷ + V refute| + V reject|ؾ + V replace| + V withstand|ס + N part|,%building| + N part|,%entity|ʵ,head|ͷ +ס V withstand|ס + N part|,%vehicle|ͨ,*illuminate| + N location|λ,angular|,dot| + N part|,%entity|ʵ,head|ͷ + N part|,%entity|ʵ,head|ͷ + ADV aValue|ֵ,range|,extensive| + N part|,%entity|ʵ,head|ͷ + N part|,space|ռ,%land|½,head|ͷ + V bump|ײ,patient=wind| + N wind| + N part|,%implement| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%inanimate|,head|ͷ + N image|ͼ,angular| +Ĥ V salute|¾ + N human|,desired|,important|,able| +ţ V quarrel| + N part|,%building| + V replace| + ADJ aValue|ֵ,courage|,brave|,desired| +ѿ N part|,%plant|ֲ,embryo| + N tool|þ,*protect| +ס V withstand|ס +ײ V offend| + V refute| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V BeOpposite| + N attribute|,strength|,strong|ǿ,&human| +ʢ V prosper| +ʢʱ N time|ʱ,@prosper| + N part|,%machine| + N shape| + N part|,%machine| + V AtEase| + V MakeAppointment|Լ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,property|,fixed|Ѷ + V buy|,means=MakeAppointment|Լ + V decide| + ADV {comment|} + V decide| + N result|,decide| + V delimit|,patient=organization|֯ + V decide|,content=amount| + N bill|Ʊ,#wealth|Ǯ,*MakeAppointment|Լ + N location|λ,dot| + V establish|,patient=capital| + V decide| + N quantity|,amount|,$delimit|,&entity|ʵ + V delimit|,patient=affairs| + V fulfil|ʵ,patient=compile|༭,#readings| + V buy|,means=MakeAppointment|Լ + V decide| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V decide|,content=rank|ȼ + V decide|,content=price|۸,commercial| + N thought|ͷ + N expenditure|,#MakeAppointment|Լ + V look| + V reside|ס +ӵ N place|ط,@reside|ס + V fixed|Ѷ + N law|ɷ + N regulation|,ordinary| + ADJ aValue|ֵ,kind|,#quantity| + V decide|,content=quantity| + N quantity|,amount|,$delimit|,&entity|ʵ + N system|ƶ,#provide| + N regulation|,#knowledge|֪ʶ + N result|,#decide| + V naming| + ADJ aValue|ֵ,frequency|Ƶ,regular| + V MakeAppointment|Լ,content=GetMarried| +ʱ V delimit|,patient=time|ʱ +ʱ N tool|þ,*delimit|,#time|ʱ +ʱը N weapon| +λ V decide|,content=location|λ + V decide|,Vachieve| + V decide|,Vachieve| + V adjust|,patient=MusicTool| + ADJ aValue|ֵ,direction|,#facing| + V decide|,commercial| + N entity|ʵ,*AtEase| + V decide|,content=plans|滮 + V decide|,content=pattern|ʽ,industrial| + ADJ aValue|ֵ,kind|,#attribute| + V decide|,content=attribute| + V decide|,content=attribute|,police| + N information|Ϣ + N MusicTool| + N part|,%language| +Ա V decide|,content=amount| + ADJ aValue|ֵ,property|,$produce| + V produce| +ס V fix|ס + N part|,%machine| + V decide|,content=crime|,police| + ADJ aValue|ֵ,property|,$produce| + V produce| + V MakeAppointment|Լ + V amend| + V buy|,means=MakeAppointment|Լ + V fasten|˩ + N document|,*buy|,commercial| + V buy|,means=MakeAppointment|Լ +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + N human|,*buy|,#commercial| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V MakeAppointment|Լ +Ʊ V buy|,possession=coupon|Ʊ֤,means=MakeAppointment|Լ + N quantity|,amount|,&MakeAppointment|Լ +Լ V MakeAppointment|Լ + V buy|,means=MakeAppointment|Լ + V amend| + V produce| + V abandon| + V lose|ʧȥ + V throw| + V suffer|,content=disgraced| + V abandon| + V lose|ʧȥ +ж V defeated| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V suffer|,content=disgraced| + V suffer|,content=disgraced| + V abandon| + V suffer|,content=disgraced| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V lose|ʧȥ +ɫ V show| + N character|,surname|,human|,ProperName|ר + N direction|,east| + N human|,*entertain|д + N human|,*own| + N part|,%earth|,east| + N direction|,east|,north| + N place|ط,ProperName|ר,#direction|,(China|й) + N location|λ,east|,north| + V run|,manner=endeavour| + N location|λ,east| + N part|,%place|ط,#east|,#country| + N location|λ,east| + N place|ط,country|,*entertain|д + N human|,*entertain|д + N location|λ,ending|ĩ,east| + ADJ aValue|ֵ,source|Դ,(Asia|) + N character|,surname|,human|,ProperName|ר + ADJ direction|,east| + N direction|,east| + N human|,#source|Դ,(Asia|) + N place|ط,ProperName|ר,east|,(Africa|) + N phenomena|,strong|ǿ,desired| + N wind|,#direction|,east| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,rich| +ձԪ N money|,(Grenada|ɴ) + N part|,%place|ط,surrounding|Χ,#city|,east| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(Japan|ձ) + N attribute|,distance|,&earth|,east| + V TalkNonsense|Ϲ˵ +צ ADJ inanimate|,secondary| + N character|,surname|,human|,ProperName|ר + N community|,country|,ProperName|ר,(Asia|) + N location|λ,east| + N direction|,east|,south| +ϲ N location|λ,east|,south| +Ͻ N location|λ,east|,south| + N direction|,east|,south|,west|,north| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) +ǹ N community|,country|,ProperName|ר,(Asia|) +ŷ N place|ط,ProperName|ר,east|,(Europe|ŷ) +ƴ V merge|ϲ +ʡ N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ɽ V BeRecovered|ԭ +ʩЧ V imitate|ģ + N attribute|,distance|,east|,west|,&earth| + N direction|,east|,west| + N entity|ʵ,generic|ͳ + N location|λ,east| + N place|ط,ProperName|ר,east|,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + V look| +֥ N InstitutePlace|,ProperName|ר,*produce|,(Japan|ձ) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ݸ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + N sound| + N time|ʱ,winter| + N MusicTool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +IJ N medicine|ҩ,(China|й) + N AlgaeFungi|ֲ,$eat| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V irrigate|,#winter|,agricultural|ũ + N time|ʱ,winter| + N time|ʱ,winter| +Ӫ N InstitutePlace|,@exercise|,#winter| + N crop|ׯ,#winter| + V sleep|˯,#winter| + N tree| + N celestial|,#winter| + N time|ʱ,winter| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,winter| + N time|ʱ,#winter| +С N crop|ׯ,#winter| + V build|,#winter| +ѵ V drill|ϰ,#winter| +ҹ N time|ʱ,winter|,night| + N clothing|,#winter| +Ӿ N fact|,#swim|,#winter| +˻ N fact|,compete|,sport|,#winter| + N time|ʱ,day|,winter| +װ N clothing|,#winter| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*manage| +³ N human|,#occupation|ְλ,*manage|,commercial| +» N institution|,*manage|,commercial| + N human|,ProperName|ר + V know|֪ + V know|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V know|֪,content=affairs| + V SelfMoveInManner|ʽ + V alter|ı + V consume|ȡ + V excite|ж + V function| + V use| + V start|ʼ,content=write|д + V start|ʼ,content=fight|,military| + ADV aValue|ֵ,frequency|Ƶ,often| + N physical|,#wealth|Ǯ + N part|,%language| + V SelfMoveInManner|ʽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V uprise|,politics| + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N experience|,#AlterLocation|ռλ + V start|ʼ,content=build| + N {Vresult|} + N shows| +Ƭ N shows| + V angry| + N thought|ͷ + N fact|,generic|ͳ + N sound| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&event|¼ + N part|,%vehicle|ͨ,heart| +ѧ N knowledge|֪ʶ,#strength| + N attribute|,strength|,&physical| + N fact|,uprise|,undesired|ݬ,politics| + N part|,%AnimalHuman|,nerve| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ӳ N disease| +Խ V think|˼ + N attribute|,strength|,&physical| +ŭ V angry| +ƽ N attribute|,behavior|ֹ,even| + V angry| + V excited| + N {Vdirection|} + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V excited|,result=AppearanceChange|۱ + V start|ʼ,content=leave|뿪 + V start|ʼ,content=beat| + V start|ʼ,content=do| +ֶ V damage| + V cure|ҽ + V undergo|,content=cure|ҽ,medical|ҽ +̬ N attribute|,outlook|ǰ,&event|¼ +̬ ADJ attribute|,property|,function| +̬ƽ N attribute|,behavior|ֹ,even| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V start|ʼ,content=build| + V start|ʼ,content=fight| + N AnimalHuman| +ﰮ N human|,*like|ϧ,#animal| +ﱣ N human|,*like|ϧ,#animal| +ѧ N human|,#knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#animal| +ѧ N human|,#knowledge|֪ʶ +԰ N InstitutePlace|,*display|չʾ,#animate| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V excited| + V punish| +ҡ V hesitate|ԥ +ҡ V weaken| +ҡ N weaken|,patient=behavior|ֹ,military| + N text|,$propose|,$discuss|,$debate| + V use| +Ա V mobilize| +Ա N information|Ϣ,#order|,*mobilize| + V do|,manner=true| +ֲ N animate|,generic|ͳ + N {LeChinese|} + V do| + N fact|,do| +ٶ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| + N NounUnit|,&building| + N part|,%house|,bone| + N human|,desired|,important|,able| +֮ N human|,desired|,important|,able| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V fear| + V frighten|Ż + V cool| + V perception|֪,content=cold| + V StateChange|̬,StateFin=ice| + N disease| + N phenomena|,unfortunate|,#cold|,undesired|ݬ + V paralyse|̱,cause=cold| + V cool| + V restrain|ֹ + N material|,?edible|ʳ,$cool|,#flesh| + N disease| + V die|,cause=cold| + N land|½,#cold| + N RainSnow|ѩ,#cold| + N part|,%inanimate|,mouth| + NUM qValue|ֵ,amount|,cardinal| + V know|֪,manner=profound| + N attribute|,ability|,able|,perception|֪ + N room|,@reside|ס,#GetMarried| + N location|λ + N part|,%inanimate|,mouth| +Ϥ V know|֪,manner=profound| + V know|֪,manner=profound| +Ѩ N part|,%earth|,mouth| + N MusicTool| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е + V circle| + N part|,%clothing|,cubic|,@put| + N tool|þ,cubic|,@put| + V wrap| + V block|ס + V reveal|¶ + N clothing|,#leg| + N clothing|,#body| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е +Ȧ V circle| +Ȧ V speak|˵,manner=hidden| + V sell|,commercial| + N tool|þ,cubic|,@put| + N clothing|,#head|ͷ,*protect| + V excite|ж + V satisfied| + V shake|ҡ + V shiver| + V shake|ҡ + V shiver| +§ V lavish|˷ +§ V reveal|¶ +§ V shake|ҡ,purpose=MoveItOut| + V excited| + V ExpressAgainst|Ǵ + N celestial| + V compete| + V fight| + N image|ͼ,#hand|,#trace| + V incite|ָʹ,ResultEvent=compete| + V merge|ϲ + CLAS unit|λ,&volume|ݻ + N LandVehicle|,#mine| + ADJ aValue|ֵ,courage|,brave| + N image|ͼ,#hand|,#trace| + N compete|,#bird| +ţ N compete|,#livestock| +ţʿ N human|,*compete|,#livestock| +Ź V fight| + N clothing|,#body| +ʿ N human|,*fight| + N room|,small|С +˿ N addictive|Ⱥ + N part|,%AnimalHuman|,#eye| + V accuse|ظ + V endeavour| + V fight| +־ N mental|,#fight| + V fight|,#wisdom|ǻ +ת V change| + N clothing|,#head|ͷ,#RainSnow|ѩ + ADJ aValue|ֵ,slope|¶,steep| + V stand|վ + N part|,%land|½,skin|Ƥ,steep| + ADJ aValue|ֵ,slope|¶,steep| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +꽴 N material|,?food|ʳƷ + N material|,#crop|ׯ + N food|ʳƷ + N food|ʳƷ +Ƥ N food|ʳƷ + N part|,%plant|ֲ,embryo| + N drinks|Ʒ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ƕ N part|,%vegetable|߲,embryo|,$eat| +Ƕ N vegetable|߲ + N attribute|,attachment|,&plant|ֲ + N fruit|ˮ,?medicine|ҩ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N material|,?food|ʳƷ +ɳ N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ѿ N food|ʳƷ +ѿ N food|ʳƷ + N material|,?food|ʳƷ + N artifact|˹,generic|ͳ,waste| +֭ N drinks|Ʒ +Ʒ N food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ޢ N FlowerGrass|,?medicine|ҩ + N material|,?food|ʳƷ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| + V stay|ͣ + V tease|ȡ + N symbol| + N symbol| +ֶ V please|ȡ + V stay|ͣ +Ū V tease|ȡ +Ȥ V please|ȡ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| +Ц V please|ȡ + V tease|ȡ + V quarrel| + N disease| + N medicine|ҩ + ADV aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,capital|,ProperName|ר,(Ireland|) + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,city| + N attribute|,circumstances|,city|,&human| +ѧר N human|,#knowledge|֪ʶ + V supervise| + V supervise| + V supervise| + V urge|ʹ + V supervise| +ѧ N human|,#occupation|ְλ,*supervise| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,poison| + V kill|ɱ,instrument=poison| + N medicine|ҩ,$addict|Ⱥ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + V beat| + N InsectWorm| + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + V damage| + V damage| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N disease| +Ʒ N medicine|ҩ,?addictive|Ⱥ + N gas|,poison|,*kill|ɱ,undesired|ݬ + N facilities|ʩ,#gas|,poison|,@kill|ɱ,undesired|ݬ +ɱ V kill|ɱ,instrument=poison| + N beast|,poison| + V kill|ɱ,instrument=poison| + N physical|,poison|,*kill|ɱ,undesired|ݬ +˹ N gas|,poison|,*kill|ɱ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + N part|,poison|,%AnimalHuman|,nerve| + N attribute|,poison|,&physical| +ҩ N chemical|ѧ,poison|,*kill|ɱ,undesired|ݬ,generic|ͳ + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + N aspiration|Ը,addict|Ⱥ,undesired|ݬ + N livestock|,young| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + V manage| + V speak|˵,target=self| +辶 V establish|,patient=route|· + V surpass|ǿ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,royal| + V sing| + V establish| + N attribute|,kind|,original|ԭ,&thing| +һ V manage| + ADJ aValue|ֵ,kind|,special| +֮ N attribute|,kind|,special|,&thing| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +϶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,undesired|ݬ,official| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V reside|ס,lonely| +߻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +߽ ADJ aValue|ֵ,kind|,special|,desired| +ɫ ADJ aValue|ֵ,kind|,special|,desired| + V control| + V BeIndependent| + ADJ aValue|ֵ,attachment|,BeIndependent| + N fact|,BeIndependent| + ADJ qValue|ֵ,amount|,single| + V BeIndependent| + N place|ط,country|,ProperName|ר +ɧ V surpass|ǿ +ֳ N LandVehicle| +ľ֧ V BeUnable|,content=help| +ľ N attribute|,circumstances|,&event|¼,hardship| +ľ N facilities|ʩ,route|·,#waters|ˮ + N attribute|,circumstances|,^GetMarried|,&human| + N human|,family|,young| +Ů N human|,family|,single|,young| +һ V establish|,patient=knowledge|֪ʶ + ADJ aValue|ֵ,kind|,special| + V take|ȡ,manner=self| + V recreation|,single| + N human|,undesired|ݬ,#disease| +һ޶ ADJ aValue|ֵ,kind|,special| + V own|,manner=self| +ռ V own|,manner=self| +ռͷ V surpass|ǿ + V drink|,manner=single| + N fund|ʽ,commercial| +ʹ˾ N InstitutePlace|,commercial| +ʾӪ V manage| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V recreation| + N human|,*perform|,entertainment| + V engage|,content=study|ѧ,education| + V read| + V recite|ж + N readings| + V read| +ȡ V take|ȡ,#computer| + V engage|,content=study|ѧ,education| + V read| + V study|ѧ + N quantity|,amount|,&measurement| + N readings| +д V read|,write|д + N attribute|,SoundQuality|,&speak|˵ + N human|,*read| + V BlockUp| + N character|,surname|,human|,ProperName|ר + N part|,%building|,skin|Ƥ + V upset| +³ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +½ V block|ס +© V BlockUp| + V BlockUp| + V BlockUp| +ס V BlockUp| + V obstruct|ֹ,ResultEvent=speak|˵ + V perception|֪,means=look| +˼ V ThinkOf|˼ + V gamble|IJ +IJ V gamble|IJ +ij N InstitutePlace|,@gamble|IJ,undesired|ݬ +Ĺ N human|,undesired|ݬ,*gamble|IJ +Ĺ N human|,undesired|ݬ,*gamble|IJ +ľ N tool|þ,*gamble|IJ +Ŀ N human|,undesired|ݬ,*gamble|IJ +Ŀ N InstitutePlace|,@gamble|IJ,crime|,undesired|ݬ + V angry| +Ǯ V gamble|IJ +ͽ N human|,*gamble|IJ,undesired|ݬ,crime| + V swear| +ע N wealth|Ǯ,#gamble|IJ + N character|,surname|,human|,ProperName|ר + V obstruct|ֹ + N tree| +ž N FlowerGrass| +ž N bird| +ž V obstruct|ֹ + N fruit|ˮ +³ N human|,official|,politics|,ProperName|ר,(US|) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Russia|˹) + N FlowerGrass|,?medicine|ҩ +׫ V forge|α + V apply|ͿĨ,industrial| +ƽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ƽ V apply|ͿĨ,material=metal|,industrial| +ƽ V study|ѧ,purpose=MakeBetter|Ż +ƽ N human|,#occupation|ְλ,industrial| +п V apply|ͿĨ,material=metal|,industrial| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + V apply|ͿĨ,material=metal|,industrial| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| +Ǵ N tool|þ,linear|,*fasten|˩,#livestock| +Ƥ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + CLAS ActUnit|,&event|¼ + N attribute|,degree|̶,&event|¼,&aValue|ֵ + N attribute|,tolerance|,&human|,&organization|֯ + V guess|² + V pass|ȹ + CLAS unit|λ,&angular| + CLAS unit|λ,&temperature|¶ +ȹ V pass|ȹ +Ȼ V pass|ȹ,patient=hardship| +ȼ V pass|ȹ,patient=festival| +ȼٴ N place|ط,@rest|Ϣ +ȼ N human|,*WhileAway| + N attribute|,tolerance|,&human|,&organization|֯ + V MakeLiving|ı,manner=hardship| + V alive| + N quantity|,amount|,&measurement| + V cross|Խ +ɴ N ship| +ɿ N part|,%place|ط,mouth|,#waters|ˮ + N ship| + V jealous|ʼ +ʼ V jealous|ʼ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,posture|,upright| + N cause|ԭ + V hold| + N information|Ϣ + N part|,%entity|ʵ,head|ͷ + N part|,%event|¼,head|ͷ +˵ N part|,%entity|ʵ,head|ͷ + V look| +ľ N character|,surname|,human|,ProperName|ר + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + V look| + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,posture|,upright| + V amend| +ׯ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + V sit|,manner=upright| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,length|,short| + V lack|ȱ +̱ V fight|,military| +̲ N electricity| +̳ ADJ aValue|ֵ,distance|,short| +̴ N attribute|,quality|,weak|,undesired|ݬ,&thing| +̴ ADJ aValue|ֵ,duration|,TimeShort| +̴ N clothing|,#perform| +̴ V fight| +̵ N MusicTool| +̹ N human|,#occupation|ְλ,employee|Ա +̺ N MusicTool| +̼ N thought|ͷ,NotProfound|dz,undesired|ݬ +̾ N shows| +̿ N clothing|,#leg| +· V OutOfOrder|,#electricity| + V run|,sport| +ƪС˵ N readings| +Ƭ N shows| + N text|,*estimate| + N human|,*compile|༭,literature| + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,TimeShort| +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +ǹ N weapon|,*firing| +ȱ V lack|ȱ +ȹ N clothing|,#leg|,female|Ů + ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +; ADJ aValue|ֵ,distance|,short| + N text| + ADJ qValue|ֵ,amount|,few| +߲Ʒ N artifact|˹,$produce|,few|,generic|ͳ +С ADJ aValue|ֵ,height|߶,low| +С ADJ aValue|ֵ,size|ߴ,small|С +ѵ N fact|,study|ѧ,education| +Ѷ N news|,simple| + N expression| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| +ͣ V stay|ͣ,duration=TimeShort| +װ N clothing| + V produce|,industrial| +͹ N human|,#occupation|ְλ,industrial|,#metal| +ͼ N artifact|˹,$produce|,#metal|,industrial| + V cultivate| + V cultivate| + V exercise|,sport| + N metal|,material| +ѹ V produce|,industrial| + V produce|,industrial| + N attribute|,rank|ȼ,&human|,#exercise|,sport| + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ + N part|,%text| +θ N character|,surname|,human|,ProperName|ר + N part|,%text| +λ N attribute|,rank|ȼ,&human|,#exercise|,sport| + V GiveUp| + V break|۶ + V cease|ͣ + V decide| + V judge|ö +ϲ N part|,%earth| +ϲ N part|,%earth| +ϳ V sorrowful| +ϵ V disappear|ʧ,#sell|,commercial| +ϵ V cease|ͣ,content=provide|,#electricity| +϶ V judge|ö +϶ ADJ aValue|ֵ,behavior|ֹ,^continuous| +Ϻ V OwnNot|,possession=young| +Ϻ V help|,military| +Ϻ V situated|,location=ending|ĩ +Ͻ V separate|,partner=country|,politics| +Ͻ V separate|,partner=friend| +Ͼ V separate| +Ͽ V break|۶,Vachieve| +Ͽ V separate| +Ͽ N location|λ,#OutOfOrder| + V FormChange|α,#split|ƿ + N part|,%earth| +Ѵ N part|,%earth| + V cease|ͣ,content=provide|,#electricity| + N tool|þ,*cease|ͣ,#provide|,#electricity| +· N part|,linear|,#electricity| + N part|,%inanimate|,surfacial| + V restrain|ֹ,ResultEvent=drink| + V cease|ͣ,content=provide|,#gas| + V die| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ +Ȼ ADV {emphasis|ǿ} +ˮ V cease|ͣ,content=provide|,#water|ˮ + V lose|ʧȥ + V disconnect| + V tool|þ,linear|,$break|۶ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V speak|˵ +ԫб N part|,%building|,incomplete|ȱ,desolate| +Ӿ V OwnNot|,possession=young| + N material|,?clothing| +д N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| + N material|,?clothing| + CLAS NounUnit|,&human|,mass| + CLAS NounUnit|,&inanimate|,mass| + V pile|ѷ + N shape| +Ѵ V store| +ѷ V pile|ѷ +ѷ N material|,*feed|ι,#crop|ׯ +ѻ V BecomeMore| +ѻ V pile|ѷ +ѻɽ ADJ qValue|ֵ,amount|,many| + V build| + V write|д +ջ N facilities|ʩ,space|ռ,@put|,@store| + V add| + V exchange|,commercial| +Ҹ V exchange|,commercial| +һ V exchange|,commercial| +һ N quantity|,rate|,&exchange|,commercial| +һȯ N coupon|Ʊ֤ +ˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ˮ V add|,patient=water|ˮ + V exchange|,commercial| + V fulfil|ʵ + N community| + N human|,mass| + N shape|,linear| +ӳ N human|,#occupation|ְλ,official| + N shape| + N mark|־ + N army|,generic|ͳ + N human|,mass| + N shape| + N human|,friend|,*exercise|,sport| +Ա N human| + CLAS NounUnit|,double|,&human| + CLAS NounUnit|,double|,&physical| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V add| + V adjust| + V check| + V facing| + V fit|ʺ + V reply| + PREP {concerning} + PREP {partner} + PREP {target} +...˵ PREP {scope} +԰ N part|,%land|½,#waters|ˮ,edge| +԰ N text|,$speak|˵ +Ա V compare|Ƚ +Աȶ N attribute|,similarity|ͬ,&brightness|,&color|ɫ +Բ V IllTreat| +Բ EXPR expression|,*apologize|Ǹ +Բ V suffer|,content=$accuse|ظ,police| +Բ V suffer|,content=$accuse|ظ,police| +Բ N method| +Գ V sing|,entertainment| +Գ ADJ aValue|ֵ,property|,BeSimilar| +Գ N attribute|,property|,BeSimilar|,&entity|ʵ +Դ N attribute|,correctness|,&event|¼ +Դ V reply| +Դ V fight| +Դ V treat|Դ +Ե V WellTreat|ƴ +Եס V WellTreat|ƴ +Ե V equal| +Ե V exchange| +Զ N image|ͼ,angular| +Է N human|,organization|֯,other| +Ը V handle| +Ը V succeed|ɹ +Ը V sing|,entertainment| +Թ V attack| +Թ V adjust|,patient=tool|þ,purpose=TakePicture| +Ժ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ի V talk|̸ +Ի N human|,*talk|̸ +Խ N tool|þ,*communicate| +Խ N image|ͼ,linear| +Խ V connect| +Խ N part|,%clothing|,body| +Ծ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ծ V fit|ʺ +Ծ V recreation| +Կ V VehicleGo|ʻ +Կ V fight| +Կ V resist| +Կ N fact|,compete| +Կ N attribute|,property|,fight|,&entity|ʵ +Կ V fit|ʺ +Կ V sing|,entertainment| + V BeOpposite| + V BeOpposite| + ADJ aValue|ֵ,contrariness|,negative| + N part|,%entity|ʵ,aspect| +ͳһ V merge|ϲ + N readings| + V flow| +· V fit|ʺ + N location|λ + ADJ aValue|ֵ,direction| + ADJ aValue|ֵ,kind| + V equal| + N human|,*HaveContest| + N human|,*equal|,#HaveContest| + N symbol| + N symbol| +ͷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N human|,enemy| + ADJ aValue|ֵ,attachment|,foreign| +ϵ N attribute|,relatedness|,&country|,diplomatic|⽻ +⿪ N regulation|,#country| +⿪ N regulation|,#country| +ó N affairs|,commercial|,#country| + N regulation|,#country|,diplomatic|⽻ +Ϻ N fish| + N entity|ʵ + N human|,friend|,desired| + V disable|м,partof=eye| +Ӧ ADJ aValue|ֵ,kind| +Ӧ V fit|ʺ + PREP {concerning} + V check|,content=account|,commercial| + V fit|ʺ + V compare|Ƚ + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + V HaveContest| +֢ V fit|ʺ,contrast=disease| +֢ҩ V obey|ѭ,content=disease| +֤ V check| + V BeOpposite| + V BeOpposite|,police| +׼ V AimAt| + N readings| + V recreation|,sport| + CLAS NounUnit|,&inanimate| + N land|½,small|С + N stone|ʯ + N wood|ľ +ղ N tool|þ,*wipe| + N shape|,low| + CLAS unit|λ,&weight| +ֹ CLAS unit|λ,&weight| +ּ N unit|λ,weight|,&ship| +λ CLAS unit|λ,&weight| + V sit| + V stay|ͣ +׵ V stay|ͣ,location=institution| + ADJ sit| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ش V urge|ʹ +ش N human|,*urge|ʹ +غ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ػ N place|ط,ProperName|ר,(China|й) + V CausePartMove| + V pause|ͣ +ٿé V know|֪ + V doubt| +ʱ ADV aValue|ֵ,behavior|ֹ,sudden| + V understand| + V SetAside| +ڻ V SetAside|,commercial| +ڻ V SetAside|,commercial| +ڻ N human|,*SetAside|,commercial| + ADJ aValue|ֵ,form|״,blunt| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +۽ N image|ͼ,angular| + N weapon|,*protect| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect| + V flee| + V shiver| + ADJ aValue|ֵ,degree|̶,over| + ADV aValue|ֵ,degree|̶,question| + ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| +ౣ EXPR expression|,*SayHello|ʺ + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N image|ͼ,cubic| + V change| +ಡ ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ +಼ N money|,(Sao tome and Principe|ʥ) +ಿ ADJ aValue|ֵ,kind| +Ŷ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,ability|,able|,create| +Ƹ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +Ƹ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +һ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| +൳ N system|ƶ,politics| +Զ ADJ aValue|ֵ,rate| +һ ADJ aValue|ֵ,rate| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,ish| + ADV {comment|} +෢ N disease| +෽ ADJ aValue|ֵ,range|,all|ȫ +෽ ADJ aValue|ֵ,range|,all|ȫ + N phenomena|,wind| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Togolese|) + N place|ط,country|,ProperName|ר + N human|,(Togolese|) + N quantity|,amount|,&entity|ʵ + N place|ط,capital|,ProperName|ר,(Qatar|) +༫ N attribute|,kind|,many| +༶ N tool|þ,*transport| +ྦྷ N inanimate|,generic|ͳ + ADV time|ʱ,question| +ʡ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADV lucky| +Ͷ ADJ aValue|ֵ,behavior|ֹ,fair| +׶ N place|ط,city|,ProperName|ר,(Canada|ô) +ô ADV aValue|ֵ,degree|̶,question| +ô ADV aValue|ֵ,degree|̶,very| +ý N tool|þ,#sound|,#music|,image|ͼ,#shows| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Dominica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Dominica|) + N human|,able| + N place|ط,country|,politics|,#community|,#human| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| +ǰ ADV aValue|ֵ,duration|,TimeLong|,past| + ADJ aValue|ֵ,kind| + V BecomeMore| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ţë ADJ qValue|ֵ,amount|,many| +ɫ ADJ aValue|ֵ,color|ɫ,colored| + ADJ qValue|ֵ,amount|,many|,question| +ʱ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ qValue|ֵ,amount|,fragment| +Ʊ N document|,*select|ѡ + N human| +ٲ V recompense| + V doubt| +ѩ ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + V ize|̬,PatientAttribute=different| + N attribute|,kind|,many| +; ADJ aValue|ֵ,effect|Ч,many| +΢ V ExpressDissatisfaction|ʾ + ADJ qValue|ֵ,amount|,many|,more| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ +Ԫ ADJ qValue|ֵ,amount|,many| +Ԫ N attribute|,kind|,many| + ADJ aValue|ֵ,property|,WeatherChange|,#CloudMist| +֭ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +֭ ADJ aValue|ֵ,property|,contain|,#liquid|Һ + ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,behavior|ֹ,many| +ʽ ADJ aValue|ֵ,manner|ʽ,many| + ADJ aValue|ֵ,kind|,many|,language| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˶ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +㶯 N animal|,generic|ͳ + V speak|˵ +觺 N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + V rob| + V seek|ıȡ + V win|ʤ + V win|ʤ,commercial| + V seek|ıȡ + V win|ʤ + V TakeBack|ȡ + V weep| + V win|ʤ +Ŀ ADJ aValue|ֵ,brightness|,bright| +ȡ V occupy|ռ,military| +ȡ V rob| +ȡ V seek|ıȡ +ȥ V take|ȡ +ȥ V kill|ɱ + V take|ȡ + N facilities|ʩ + N facilities|ʩ,military| + V pile|ѷ + N shape| + V escape| + V hide| + V escape| + V hide| +ܲ ADJ aValue|ֵ,possibility|,impossible|,$escape| + V hide| + V escape| + V hide| +㿪 V escape| + V evade|ر + V escape| + CLAS NounUnit|,&CloudMist|,&FlowerGrass| + N FlowerGrass| + V kick|߲ + V CausePartMove|,PatientPartof=foot| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,*drive|Ԧ + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + V break|۶ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N attribute|,behavior|ֹ,stiff|,&entity|ʵ + V OutOfOrder| + N OutOfOrder| +̥ V cease|ͣ,content=pregnant| + N InsectWorm| + ADJ aValue|ֵ,height|߶,tall| +üɽ N land|½,ProperName|ר,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + N bird| + ADJ aValue|ֵ,color|ɫ,yellow| +ڴ N disease| +ʯ N stone|ʯ,material| +ë N part|,%bird|,hair|ë + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) +˹ N humanized|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ո N place|ط,provincial|ʡ,ProperName|ר,(US|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,duration|,TimeShort| + N language|,#country|,ProperName|ר,(Russia|˹) + N language|,#country|,ProperName|ר + N part|,%AnimalHuman|,head|ͷ + N quantity|,amount|,&physical| + ADJ qValue|ֵ,rate| +ֵ N quantity|,rate|,&event|¼ + N quantity|,amount|,&event|¼ + N part|,%AnimalHuman|,head|ͷ +ֳ V ShowJoy|ʾϲ +ͷ N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| +Ĺ N fact|,do| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cheat|ƭ +թ V cheat|ƭ + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,performance|,kill|ɱ,undesired|ݬ,#disease| + V disgust| + N event|¼,undesired|ݬ,evil|,crime| + N human|,undesired|ݬ,evil| + V ill|̬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ӯ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ,evil| + N result|,undesired|ݬ +ݺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V damage| + V decline|˥ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N thought|ͷ,#dream|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N attribute|,power|,undesired|ݬ,&organization|֯ +ϰ N attribute|,habit|ϰ,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,kill|ɱ +˺ N disease| +ͨ N phenomena|,#money|,BecomeMore|,commercial| + N disease| + N aspiration|Ը,undesired|ݬ + N human|,*slander|̰ + V slander|̰ +ս N fact|,#fight|,fierce| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V IllTreat| + N location|λ,important| + N phenomena|,unfortunate|,undesired|ݬ +ŵ N phenomena|,#WeatherChange| +϶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ecuador|϶) +϶ N place|ط,country|,ProperName|ר,(South America|) +϶ N human|,(Ecuador|϶) + N place|ط,city|,ProperName|ר,(Ethiopia|) + N phenomena|,unfortunate|,undesired|ݬ + V control| + V defend| + V hold| +ɱ V destroy| +ɱ V kill|ɱ +ɱ N human|,*kill|ɱ + V defend| + V disappointed|ʧ +Ҫ ADJ aValue|ֵ,content|,accurate|׼,desired| + V restrain|ֹ + V obstruct|ֹ +ֹ V obstruct|ֹ + V obstruct|ֹ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +״ N community|,ProperName|ר,(China|й) +¿ N community|,ProperName|ר,(China|й) + V HungryThirsty| + V HungryThirsty| +ʳ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V CauseToDo|ʹ,ResultEvent=HungryThirsty|,degree=extreme| + V HungryThirsty|,degree=extreme| + V die|,cause=HungryThirsty| + V kill|ɱ,means=HungryThirsty| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V grant| + N emotion|,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +÷ N place|ط,capital|,ProperName|ר,(Chad|է) + V revenge| + N emotion|,like|ϧ,kindhearted|,desired| + N human|,friend|,kindhearted|,desired| +ͬ N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +Թ N emotion|,grateful|м,blame|Թ +Թ N emotion|,hate|,undesired|ݬ + N emotion|,like|ϧ,kindhearted|,desired| +ɽ N emotion|,like|ϧ,kindhearted|,desired| +׼ V agree|ͬ,manner=kindhearted| + CONJ {EventResult|¼} + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + COOR {and|} + CONJ {but|} + ADV aValue|ֵ,time|ʱ,hind| + N time|ʱ,now| +֮ N time|ʱ,#age|,adult| + PREP {concerning} + CONJ {supplement|ݽ} + CONJ {but|} + CONJ {supplement|ݽ} + PREP {concerning} + ADV {comment|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,family|,young| + N music|,$sing|,#young| +ʵ N human|,undesired|ݬ,royal|,$control| + N part|,%InstitutePlace|,#young|,medical|ҽ +ѧ N knowledge|֪ʶ,#young|,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ů N human|,family|,mass|,young| +Ů N human|,mass| +ʱ N time|ʱ,#young| + N human|,future| +ͯ N human|,young| +ͯѩ N clothing| +ͯ N part|,%institution|,politics|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +ͯ N time|ʱ,day|,festival|,#young|,@congratulate|ף +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +Ϸ N fact|,secondary| + N human|,family|,male|,young| + N part|,%AnimalHuman|,*listen| + N shape| + V ill|̬,scope=listen|,medical|ҽ + V ill|̬,scope=listen|,medical|ҽ + N part|,%AnimalHuman|,#listen| +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N part|,%AnimalHuman|,*listen| + N stone|ʯ,#AnimalHuman|,waste| + N fact|,beat|,#skin|Ƥ + N fact|,beat|,#skin|Ƥ + N tool|þ,*decorate|װ + N tool|þ,*listen| + N part|,%AnimalHuman|,#listen| + N part|,%AnimalHuman|,#listen| + ADJ disable|м,scope=listen| + N disease| +Ŀ N human|,military|,*scout| +Ŀ N knowledge|֪ʶ +Ŀһ V prosper| + N tool|þ,*protect| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#AnimalHuman|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V teach| + V perception|֪ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ѩ N part|,%AnimalHuman|,dot| +ʹ N part|,%AnimalHuman| + N disease| + V speak|˵,manner=weak| + N human|,*speak|˵ +׹ N part|,%AnimalHuman| +ĿȾ V undergo|,content=CauseAffect|Ⱦ + ADJ aValue|ֵ,kind|,special| + PRON {SecondPerson|} + ADJ aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V entice| + N food|ʳƷ + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N character|,(China|й) + NUM qValue|ֵ,amount|,cardinal|,mass| +ѵ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N human|,sport| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,rich| +Ӣ N chemical|ѧ + N human|,intimate|,female|Ů + N human|,*own|,#house| + N human|,#occupation|ְλ,official|,#ship| +ͷ N drinks|Ʒ,$addict|Ⱥ +һ ADJ aValue|ֵ,property|,$merge|ϲ + N MusicTool| + N InsectWorm|,undesired|ݬ +˵ ADV aValue|ֵ,behavior|ֹ,active|Ը +û˵ ADV aValue|ֵ,behavior|ֹ,active|Ը + N part|,%implement| +ױ N chemical|ѧ + ADJ aValue|ֵ,attachment|,#DoSum| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,rank|ȼ,elementary| + N human|,lazy|,undesired|ݬ + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +Ĵָ N part|,%AnimalHuman|,hand| + N human|,intimate|,female|Ů +꼶ѧ N human|,*study|ѧ,education| + N army|,military|,ProperName|ר,(China|й) + ADJ aValue|ֵ,newness|¾,used| +߽ N tool|þ,*WhileAway|,*congratulate|ף +ǧﳤ N fact|,military|,past| +ά ADJ aValue|ֵ,form|״,surfacial| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ʽ ADJ expression|,#quantity|,#symbol|,#DoSum|,#calculate| + N chemical|ѧ + N chemical|ѧ +̼ N gas| + N time|ʱ,month| +· N time|ʱ,month| +ս N fact|,fight|,military| + N attribute|,property|,double|,&entity|ʵ + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,undesired|ݬ,treacherous|,official| + CLAS NounUnit|,&weapon| + V announce| + V become|Ϊ + V express|ʾ + V firing| + V happen| + V issue|ַ + N part|,%AnimalHuman|,hair|ë + V produce| + V reveal|¶ + V send| + V shoot| + V shoot|,sport| + V speak|˵ + V happen|,experiencer=fact|,police| + V become|Ϊ,descriptive=white| + V announce|,content=result|,education| + V issue|ַ,possession=MakeAppointment|Լ + N human|,issue|ַ,#MakeAppointment|Լ + V post|ʼ,patient=information|Ϣ + N human|,*post|ʼ + V publish| + V ill|̬,medical|ҽ + V announce| + N fact|,@announce| + V prosper| + N AlgaeFungi|ֲ,?food|ʳƷ + V change|,StateFin=wet|ʪ + V start|ʼ,content=leave|뿪 + V worried|ż + V announce| + V issue|ַ + V send| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,country|,*prosper| + V stupefied|ľȻ + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| + N machine|,*produce|,#electricity| +רҵԱ N human|,industrial| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + V TurnOn| + V mobilize| + V start|ʼ + N part|,%vehicle|ͨ,heart| + V shiver| + V begin|ʼ + V issue|ַ + N material|,?food|ʳƷ + V endeavour| +ͼǿ V endeavour| + V endeavour| +ͼǿ V endeavour| + V mad| + N food|ʳƷ + V send|,patient=news| + V issue|ַ + V AppearanceChange|۱,StateFin=bright| + V aValue|ֵ,property|,illuminate| + V fever| + V CauseToDo|ʹ,ResultEvent=excrete|й +ʩ V order| + V become|Ϊ,descriptive=black| + V angry| + V endeavour| + V become|Ϊ,descriptive=red| + V ill|̬,scope=look|,medical|ҽ + V order| + V speak|˵,manner=angry| + V return| + V flurried| + V CauseToDo|ʹ + V express|ʾ + V AppearanceChange|۱,StateFin=fire| + V angry| + V lighting|ȼ + V send|,patient=artifact|˹,commercial| + V lucky|,scope=status| + V worried|ż + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + V prosper| +¸ V prosper| + V reward| + V StateChange|̬ + V dig|ھ + V investigate| + V perception|֪ + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + V tired|ƣ + N InstitutePlace|,@MakeUp|ױ,commercial| +ɧ V protest| + V AppearanceChange|۱,StateFin=bright| +ǹ N tool|þ,*MakeSound|,*order|,#exercise| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + V paralyse|̱ +ë V angry| +ë V flurried| +ù V StateChange|̬,StateFin=OutOfOrder| + V ignorant|֪ + V teach|,content=elementary| + N material|,?food|ʳƷ + V produce| + N human|,*create| + N human|,*produce| + V uprise| +ŭ V angry| + V submit|,possession=readings| + V AppearanceChange|۱,StateFin=fat| +ݼ N chemical|ѧ,*experiment|ʵ +Ƣ V angry| +Ʊ N bill|Ʊ,#wealth|Ǯ + V start|ʼ + N human|,*start|ʼ + V need|,content=mating| + V shoot|,patient=SportTool|˶,sport| + V AppearanceChange|۱,StateFin=hot| + V fever| + V flurried| + V produce|,PatientProduct=hot| +ʡ ADJ aValue|ֵ,content|,profound|,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| + V become|Ϊ,descriptive=soft| +ɢ V cure|ҽ,means=cool|,medical|ҽ +ɢ V disperse|ɢ + V fever| + N human|,*FondOf|ϲ,#WhileAway| + V firing| + V shoot| + V transmit| +䳡 N place|ط,@shoot| + N machine|,*shoot| + V MakeSound| + V happen| + V produce| + N chemical|ѧ,*produce| + V swear| + V sell|,commercial| +ˢ N tool|þ,*wipe|,#MakeUp|ױ +ˮ V unfortunate| + V send| + V transmit| + V StateChange|̬,StateFin=sour| + V painful|ʹ + N part|,%implement| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N document|,official| + V ask| + V perception|֪ + N human|,*perception|֪ + N place|ط,#event|¼,@ExistAppear| +Ц V laugh|Ц +й V release|ͷ +н V issue|ַ,possession=payment| + V post|ʼ,patient=letter|ż + N human|,*post|ʼ + N attribute|,pattern|ʽ,&hair|ë + N attribute|,pattern|ʽ,&hair|ë,#female|Ů + V publish| + V sell| + V sell|,commercial| +֤ N human|,official|,*issue|ַ,#document| +ѿ V pregnant| + V speak|˵ + N human|,*speak|˵ + V inflamed| + V CauseToGrow|ʹɳ + V use| + V CauseToGrow|ʹɳ + V itch| + V speak|˵ + V grow|ɳ +ȫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Դ V begin|ʼ +Դ N place|ط,#event|¼,@ExistAppear| +Դ V ResultFrom|Ե + V send| + V dizzy| +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V include| +չй N place|ط,country|,*grow|ɳ + V FormChange|α,StateFin=protruding|͹ + V perception|֪,content=swollen| +֤ V issue|ַ,possession=document| + V ResultFrom|Ե + ADJ aValue|ֵ,source|Դ + V angry| + V happen| + V show|,content=lascivious| + V issue|ַ,possession=payment| + V fever| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| + V punish|,ResultContent=drink| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| +û V levy| + V punish|,sport| + N ship| + N ship| + V attack| + V break|۶ +ľ V break|۶,patient=wood|ľ,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V lack|ȱ + V tired|ƣ + N human|,unable|ӹ,undesired|ݬ + V tired|ƣ + V lack|ȱ,scope=human| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + N human|,#power|,strong|ǿ + N part|,%implement| + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N knowledge|֪ʶ,religion|ڽ + N law|ɷ + N method| + N place|ط,country|,ProperName|ר,(France|) + N document|,#law|ɷ + V punish|,police| + N thing|,able| + N tool|þ,religion|ڽ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| + N place|ط,police|,@kill|ɱ,#crime| + N document|,#law|ɷ + ADJ aValue|ֵ,standard|׼,average|,desired| + N human|,*handle| +̳ N human|,*receive| + N quantity|,amount|,&human|,#select|ѡ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| +ٺʦ N human|,police| + N law|ɷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר + N money|,(Andorra|) +ͩ N tree| + N attribute|,name|,religion|ڽ,&human| + N law|ɷ + N human|,#occupation|ְλ,police|,#crime| +˸ N place|ط,city|,ProperName|ר,(Germany|¹) + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(France|) + N money|,(Monaco|Ħɸ) + N human|,royal|,ProperName|ר,(Egypt|) + N knowledge|֪ʶ,#law|ɷ +ѧ N human|,#knowledge|֪ʶ + N law|ɷ + ADJ aValue|ֵ,attachment|,#police| + N aValue|ֵ,attachment|,law|ɷ + N law|ɷ,politics|,generic|ͳ +ɳ N process|,#law|ɷ +ɹ N human|,police| + N fact|,accuse|ظ,police| +ж N fact|,#law|ɷ,police| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N fish| + N language|,#country|,ProperName|ר + N method| + N attribute|,name|,religion|ڽ,&human| + N MusicTool|,religion|ڽ + N human|,#police|,#InstitutePlace| +ʦ N human|,religion|ڽ + N method| +ͥ N institution|,police|,*judge|ö + N law|ɷ + N language|,#country|,ProperName|ר +˹ N human|,undesired|ݬ +˹ N system|ƶ,undesired|ݬ +˹ N human|,evil| +˹ N system|ƶ,undesired|ݬ + N image|ͼ,linear| + N institution|,news|,ProperName|ר,(France|) +ѧ N knowledge|֪ʶ,#law|ɷ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,#law|ɷ,education| +ҽ N human|,#occupation|ְλ,police|,*check|,#crime|,medical|ҽ +ҽѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ + N clothing|,#body|,religion|ڽ + N language|,#country|,ProperName|ר +Ժ N institution|,police|,@judge|ö + N law|ɷ + N system|ƶ,#law|ɷ + V manage|,AccordingTo=law|ɷ + N method| + N fittings|,%building| + N part|,%ship|,*drive|Ԧ + N ship| + N material|,?clothing| + N ship| + CLAS NounUnit|,&text|,&event|¼ + N quantity|,amount| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N symbol|,#army|,military| +ľ N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +خ N place|ط,city|,ProperName|ר,(China|й) + V LookFor|Ѱ + V add| + V cross|Խ + V quarrel| + V reverse|ߵ + V translate| + V deny|,police| + N artifact|˹,#copy|д + V engage|,agricultural|ũ + V roll| + V roll| + V roll| + V add| + V fly| + V wave|ڶ + V repair|,industrial| +ͷ V roll| + V deny|,police| + V roll| + V deny| + V build| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + V open| + V quarrel| +ɹɲ V dry|,patient=FlowerGrass|,agricultural|ũ +ɽԽ V cross|Խ + V roll| + V uprise| + V exercise|,sport| + V roll| + V turn|Ťת + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V uprise| +츲 ADJ aValue|ֵ,ability|,frighten|Ż + V repair| + V repair| + N human|,#occupation|ְλ,literature|,*translate| + V translate| +ӡ V print|ӡˢ +Խ V cross|Խ + V read| +Ƹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת V roll| + N character|,surname|,human|,ProperName|ר + N fittings|,%building| + N attribute|,boundary|,&event|¼ + N facilities|ʩ,#building|,*defend| + N fittings|,%building| + N attribute|,circumstances|,&event|¼,#restrain|ֹ,undesired|ݬ + N tool|þ,*detain|ס,#bird| + N chemical|ѧ + N material| + N chemical|ѧ + V GiveBirth| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N FlowerGrass|,mass| +ƽ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,complicated|,simple|,&content| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æIJ N fact|,busy|æ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| +ٲʢ V prosper| +ٸǿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N character|,old|,(China|й) + N character|,old|,(China|й) +Ƚ N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,property|,WeatherFine| + V GiveBirth| + V GiveBirth| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ qValue|ֵ,amount|,many| +ֳ V GiveBirth| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + N place|ط,ordinary|,#human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,kind|,special| + N human|,unable|ӹ,undesired|ݬ + N human|,ordinary| +ʿ N material|,liquid|Һ,*lubricate| + N event|¼,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ +ӹ ADJ aValue|ֵ,kind|,ordinary| + V MakeTrouble| + V MakeWorried| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V disgust| + V upset| + V MakeTrouble| + V upset| + V upset| + V MakeTrouble| + V MakeWorried| + V upset| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V upset| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + N human|,undesired|ݬ,#uprise| + V oppose| + V resist| + V roll| + V uprise|,politics| +Ϊʤ V change|,StateIni=defeated|,StateFin=win|ʤ + N quantity|,rate|,&quantity| + V refute| + N human|,*refute| + V loyal|Т + N attribute|,similarity|ͬ,&entity|ʵ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V ServeAsFoil| + V attack|,military| +༥ V satirize| + V jump| + N weapon|,$firing| + V oppose|,target=community|,#politics| + ADV {supplement|ݽ} + ADV {supplement|ݽ} + V oppose|,target=system|ƶ,#politics| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,*uprise| + N human|,undesired|ݬ,#uprise|,#politics| + V oppose| + V resist| +Գ V differ|ͬ +Ե N community|,*oppose|,#politics| +Ե N human|,*oppose|,politics| + N community|,*oppose|,#politics| +Ʊ N bill|Ʊ,*oppose|,#select|ѡ + N human|,*oppose| + ADV {supplement|ݽ} +˹ V oppose|,target=system|ƶ,#politics| + V BeRecovered|ԭ,StateIni=bad| + N fact| + N fact|,repeat|ظ +޳ V change|,manner=often| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +һ V attack| +һ V oppose| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,undesired|ݬ,*uprise| + V attack|,military| + V check|,content=self| + V oppose|,target=system|ƶ,#politics| + V LookBack| + V illuminate| + N lights| + ADV aValue|ֵ,behavior|ֹ + V deny| + V attack| + N army|,attack| + V resist| + N human|,*resist| + N information|Ϣ,$respond|Ӧ +¢Ϸ N law|ɷ + N part|,%entity|ʵ,aspect| + N part|,%inanimate|,edge| + N human|,entertainment| + N human|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| + V uprise|,politics| + V attack|,military| + V fall|,manner=also|Ҳ +֮ V do|,treacherous| +DZ V defend|,patient=ship|,military| +DZͧ ADJ aValue|ֵ,ability|,able|,attack| + N law|ɷ +Ǻ N symbol|,#quantity|,#DoSum| + V illuminate| + V respond|Ӧ +迹 V obstruct|ֹ,#electricity| + ADJ aValue|ֵ,behavior|ֹ,treacherous| + N human|,*uprise| +ʡ V check|,content=self| + ADV aValue|ֵ,behavior|ֹ +ˮ V betray| +˼ V think|˼ + V accuse|ظ +̹ ADJ aValue|ֵ,ability|,able|,attack| + ADJ aValue|ֵ,ability|,able|,attack| + V ask| + N expression|,question| + N information|Ϣ,$respond|Ӧ + ADJ aValue|ֵ,direction| +ҧһ V accuse|ظ,content=fake|α +Ӧ V respond|Ӧ +Ӧ N physical|,*ize|̬ +ӳ V mean|ָ +ӳ V tell| +ս ADJ aValue|ֵ,behavior|ֹ,#oppose|,#fight| + V illuminate| + V surrender| +֤ N information|Ϣ,#prove|֤ +֤ N method| +֮ CONJ {transition|ת} +֮Ȼ ADV {comment|} +֮ CONJ {transition|ת} +ת V reverse|ߵ + ADJ aValue|ֵ,performance| + N attribute|,strength|,negative|,&physical| +ڵ V ask| +ۻ V masticate|׽ + V GoBack| + V GoBack|,LocationFin=city| + N process|,#GoBack|,#route|· + V GoBack|,purpose=defend|,military| + V repeat|ظ,manner=also|Ҳ + V GoBack| + V return| + V GoBack| + V grow|ɳ + V GoBack|,LocationFin=place|ط + V sell| +У V GoBack|,LocationFin=InstitutePlace|,education| + V repair|,again| + N quantity|,rate|,#repair|,&artifact|˹ +豹 V resume|ָ,StateFin=pure| + N attribute|,pattern|ʽ,&thing| + N attribute|,range|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + N entity|ʵ,example|ʵ + N attribute|,range|,&entity|ʵ + N example|ʵ +Χ N attribute|,range|,&entity|ʵ + N text|,example|ʵ + V buy|,commercial| + V transport|,patient=addictive|Ⱥ,purpose=sell|,crime|,commercial| + V sell|,commercial| + V transport|,patient=weapon|,purpose=sell|,crime|,commercial| +˿ V transport|,patient=human|,purpose=sell|,crime|,commercial| + V transport|,patient=physical|,purpose=sell|,crime|,commercial| +˽ V transport|,patient=physical|,purpose=sell|,crime|,commercial| + V transport|,purpose=sell|,commercial| + N human|,#occupation|ְλ,commercial| + V ExpressAgainst|Ǵ + V SufferFrom|,medical|ҽ + V attack| + V disobey|Υ + V disobey|Υ,crime| + V do| + V exposure|¶,scope=crime|,police| + V ill|̬,medical|ҽ + V WorthNot|ֵ + V WorthNot|ֵ + V worried|ż + V err| + V worth|ֵ + V worth|ֵ + V disobey|Υ,content=law|ɷ,crime| + V err|,sport| + V damage|,#mating|,crime| + V disobey|Υ,content=regulation| + V ill|̬,medical|ҽ + V disobey|Υ,content=regulation| +ë V err| + V embarrassed|Ϊ + N human|,crime|,undesired|ݬ,$detain|ס + V offend|,target=HighRank|ߵ +IJ V doubt| + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + V do|,content=crime| + N human|,crime|,undesired|ݬ + N quantity|,rate|,#crime|,&organization|֯,&place|ط + N human|,$doubt|,#crime| + N fact|,eat| + N food|ʳƷ,generic|ͳ + N food|ʳƷ + N food|ʳƷ,generic|ͳ + N InstitutePlace|,@eat|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@eat|,commercial| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put|,#edible|ʳ + N attribute|,ability|,&eat| + N InstitutePlace|,@eat|,commercial| +ʳ N food|ʳƷ,generic|ͳ + N room|,@eat| +Ͱ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ͱ N human|,#eat|,undesired|ݬ +Ͱ N human|,unable|ӹ,undesired|ݬ +Ͱ N tool|þ,cubic|,@put|,#food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N method|,*earn|׬,*alive| + N tool|þ,cubic|,@put|,#food|ʳƷ +ׯ N InstitutePlace|,@eat|,commercial| + N furniture|Ҿ,@put|,#edible|ʳ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| + V float|Ư + V spill| + V undergo|,content=soak| + V ActGeneral| + V read|,range=extensive| + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,attachment| + V spill| + V surplus|ʣ +ij V appear|,quantity=many| + ADJ aValue|ֵ,attachment| + V appear| + N sound| +ָ V mean|ָ,ordinary| + V float|Ư + N InstitutePlace|,space|ռ,industrial|,*produce| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N FlowerGrass|,fragrant| + N FlowerGrass|,fragrant| + N human|,#reside|ס,near| + N attribute|,age|,&female|Ů + N attribute|,name|,&female|Ů + N chemical|ѧ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N chemical|ѧ,fragrant| + N emotion|,love|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,upright| + N character|,surname|,human|,ProperName|ר + N direction| + N document|,medical|ҽ,#medicine|ҩ + N method| + N part|,%entity|ʵ,aspect| + N place|ط + CLAS unit|λ,&bulk| + CLAS unit|λ,&size|ߴ,&area| + ADV {EventResult|¼} + N plans|滮 + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V benefit| + V excrete|й + N food|ʳƷ +֮ N attribute|,behavior|ֹ,convenient|,desired| + N material|,wood|ľ + ADV time|ʱ,past| + ADV {emphasis|ǿ} + N symbol| +ʽ N symbol| +ʽ N LandVehicle|,*compete|,sport| + N thought|ͷ + N method| + N knowledge|֪ʶ,#method| + ADJ aValue|ֵ,range|,all|ȫ + N shape|,square| + N document|,#medicine|ҩ,#medical|ҽ + N shape|,square| + N symbol| + N plans|滮 + N part|,%entity|ʵ,aspect| + N army|,military| + AUX BeAble|ܹ +ʽ N attribute|,behavior|ֹ,manner|ʽ,&event|¼ +ʽ V SelfMoveInManner|ʽ +ʿ N human|,religion|ڽ + N material|,?food|ʳƷ +λ ADJ aValue|ֵ,location|λ +λ N location|λ + N direction| + N part|,%LandVehicle|,*drive|Ԧ,hand| + ADJ aValue|ֵ,direction| +δ V prosper| + ADJ aValue|ֵ,form|״,square| + N language| +Բ N location|λ +Բ N place|ط,#reside|ס + N human|,religion|ڽ + N regulation|,politics| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,upright| + N ship| + N ship|,religion|ڽ,ProperName|ר + N document|,#medicine|ҩ,#medical|ҽ + N material|,wood|ľ +Բ V FitNot| + N character|,surname|,human|,ProperName|ר + N house|,generic|ͳ + N human|,mass|,#family| + N room| + N shape|,#house| + N room|,%ship| + N wealth|Ǯ,#house| +ز N wealth|Ǯ,#house| +زҵ N wealth|Ǯ,#earth|,#building| + N part|,%house|,head|ͷ + N human|,*own|,#house| + V improve|,patient=reside|ס + N part|,%building|,base| + N room| + N human|,*borrow|,*reside|ס,#house| + N part|,%building|,mouth| + N house|,generic|ͳ + N fact|,mating| + N room| + N house|,generic|ͳ + N human|,*own|,#house| + N house|,generic|ͳ + N expenditure|,*borrow|,#house| + N part|,%building|,head|ͷ + V defend| + N facilities|ʩ,*protect|,space|ռ + V obstruct|ֹ + V withstand|ס + V obstruct|ֹ,patient=uprise|,police| + N human|,#occupation|ְλ,police| + ADJ aValue|ֵ,ability|,able|,exempt| + V obstruct|ֹ + V obstruct|ֹ,patient=disease| +ʤ ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#wet|ʪ + ADJ aValue|ֵ,ability|,able|,withstand|ס + V remove| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=steal|͵ + N place|ط,military|,$defend| + V obstruct|ֹ,patient=cool| + V obstruct|ֹ,patient=poison| + N tool|þ,*obstruct|ֹ,#poison| + V defend| + V escape|,cause=wind| + N tree|,*protect| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + N chemical|ѧ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| + V obstruct|ֹ,patient=waterless| + V obstruct|ֹ,patient=waterlogging| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V protect| + N tree| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ +δȻ V obstruct|ֹ,patient=unfortunate| +δȻ V obstruct|ֹ,patient=unfortunate| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=fire| + V defend|,patient=sky| +ն N facilities|ʩ,@escape| +ն N location|λ,@hide|,#crime|,undesired|ݬ +ն N place|ط,@hide|,#crime|,undesired|ݬ + V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=ice| +© ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + V defend| +زס ADJ aValue|ֵ,possibility|,impossible|,$defend| + V obstruct|ֹ,patient=hot| + V obstruct|ֹ,patient=hot| +ˮ ADJ aValue|ֵ,ability|,able|,withstand|ס,#liquid|Һ + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shrink|С +΢Ž V restrain|ֹ,time=early| +α V obstruct|ֹ,ResultEvent=forge|α + V defend| + N affairs|,#defend|,#country| + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,withstand|ס +Ѵ V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=disease|,medical|ҽ + ADJ aValue|ֵ,ability|,able|,withstand|ס +겼 N material|,?clothing| + V defend|,military| + N defend|,military| + N human|,*defend|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,ResultEvent=shiver| +ֹ V obstruct|ֹ + V cure|ҽ + V obstruct|ֹ + V obstruct|ֹ + V damage| + V BeSimilar| + V imitate|ģ +· V BeSimilar| +¹ V imitate|ģ,content=artifact|˹ +ð V imitate|ģ +Ч V imitate|ģ + V produce|,means=imitate|ģ + V imitate|ģ + N imitate|ģ + V produce|,means=imitate|ģ + V ask| + V visit| +ƶʿ V visit|,target=poor| +̸ N fact|,talk|̸ + V investigate| + V visit| + V visit|,target=friend| + N material|,?clothing| +ij N material|,?clothing| +Ķ N part|,%machine| +Ļ N machine|,industrial| +ɴ V produce|,PatientProduct=material|,industrial| +˿ V produce|,PatientProduct=material|,industrial| +֯ V produce| +֯ N InstitutePlace|,factory|,@produce|,industrial| +֯ N machine|,industrial| +֯ N InsectWorm| +֯Ʒ N material|,?clothing| +֯ҵ N affairs|,industrial|,#material| + V abandon| + V add| + V adjust| + V display|չʾ + V enlarge| + V exile| + V expel|,agricultural|ũ + V grow|ɳ + V indulge| + V lend|,commercial| + V put| + V release|ͷ + V shoot| +ų V shoot| +Ŵ V enlarge| +Ŵ N tool|þ,*enlarge|,#look| +Ŵ N attribute|,performance|,&enlarge| +Ŵ N machine|,*enlarge|,#electricity| +Ŵ V lend| +ŵ V willing|Ը +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ V shoot|,#electricity| +ŵ V IllBehave| +ŵ V MakeTrouble| +Ŷ V disseminate|,content=bad| +Ŷ V put|,patient=poison|,purpose=kill|ɱ +ŷ V CauseToDo|ʹ,ResultEvent=fly| +ŷ V MoveItInto|,patient=gas|,purpose=clean|ʹ +ŷ V defend| +ŷ V disseminate|,content=information|Ϣ +ŷ V release|ͷ,patient=crime|,purpose=exercise|,police| +Ź V cease|ͣ +Ź V forgive|ԭ +Ź V release|ͷ +Ż V delay| +Ż V CauseToDo|ʹ,ResultEvent=alive| +Ż V MakeTrouble| +Ż V lighting|ȼ,crime| +ż V enjoy|,content=cease|ͣ +ż V enjoy|,content=festival| +ſ V do|,manner=free| +ſ V SelfMoveInManner|ʽ,result=empty| +ſ V boast| +ſ V disseminate|,content=information|Ϣ +ſ ADJ aValue|ֵ,circumstances|,relax|,desired| +ſ V weaken| +ſ V lend|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V satisfied| + V SlowDown| + V TakeCare|,#livestock|,agricultural|ũ +ţ N human|,agricultural|ũ,young| + V TalkNonsense|Ϲ˵ + V firing|,instrument=weapon| +ƨ V excrete|й,patient=waste| + V abandon| + V cease|ͣ + N human|,*abandon| + V WeatherFine| +Ȩ V abandon|,possession=power|,politics| + V shoot|,patient=hot| + V indulge| + V indulge| +ɢ V disperse|ɢ + V defend| + V shoot| +䲡 N disease| + N lights|,*diagnose|,medical|ҽ + ADJ aValue|ֵ,SoundVolume|,loud| + V release|ͷ,patient=AnimalHuman| + V release|ͷ,patient=AnimalHuman|,religion|ڽ + V endeavour| + V release|ͷ +ˮ V TurnOn|,patient=water|ˮ +ˮ V drain|ų,patient=liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V loosen| + V weaken| + V disseminate| + V MoveItDown| + N tool|þ,*display|չʾ,#shows| + V AtEase| +IJ V worried|ż + V release|ͷ +ѧ V enjoy|,content=festival|,education| +ѧ V finish|,education| +Ѫ V MakeBad|Ӻ +Ѫ V cure|ҽ + V look|,manner=wide| + V look|,content=place|ط + V foster|,agricultural|ũ + N image|ͼ,#vehicle|ͨ +ӳ V display|չʾ,shows| +ӳ N community|,*display|չʾ,#shows| +ӳ N tool|þ,*display|չʾ,#shows| + V ThinkOf|˼ +֮ĺ׼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V put| + V store| + V exile| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N inanimate| + N place|ط,country|,ProperName|ר,(Philippines|ɱ) +Ʊ V PlayDown| +Ʊ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +Ʊ V despise| +Ʒ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ʒ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Philippines|ɱ) +ɱ N place|ط,country|,ProperName|ר + V BeNot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N place|ط,ProperName|ר + N result|,undesired|ݬ,wrong| +...Ī V be|,manner=comment| +DZ ADJ aValue|ֵ,content|,opened| +DZ ADJ aValue|ֵ,behavior|ֹ,^fierce| +DZ ADJ aValue|ֵ,importance|,secondary| +DZ׼ ADJ aValue|ֵ,standard|׼,useless| +dz ADV aValue|ֵ,degree|̶,extreme| +dz ADV aValue|ֵ,degree|̶,very| +dz ADJ aValue|ֵ,kind|,special| +dz V sorrowful| +dz; ADJ aValue|ֵ,quality|,durable|,desired| +dz ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ǵ ADJ aValue|ֵ,kind|,special| +ǵ ADV {supplement|ݽ} +ǵ AUX {modality|} +ǵ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +Ƿ N fact|,publish|,crime|,undesired|ݬ +Ƿ N publications|鿯,crime|,undesired|ݬ +Ƿõ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǷӪ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ǹ ADJ aValue|ֵ,behavior|ֹ,passive| +ǹ˰ N method|,commercial| +ǹٷ ADJ aValue|ֵ,attachment|,private|˽ +ǽ ADJ aValue|ֵ,quality|,^metal| +Ǿ ADJ aValue|ֵ,importance|,secondary| +Ǿ ADJ aValue|ֵ,attachment|,^military| + V IllBehave|,crime| + V damage| +¿ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +˹ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ ADJ aValue|ֵ,attachment|,^commercial| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +ͬС ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,form|״ + V ExpressAgainst|Ǵ +Ӫ ADJ aValue|ֵ,property|,^earn|׬ + ADJ aValue|ֵ,duration|,TimeShort| +ԭ ADJ aValue|ֵ,source|Դ,^original|ԭ +սԱ N human|,military| +ʽ ADJ aValue|ֵ,behavior|ֹ,informal|ʽ +ͳ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,attachment|,organization|֯,ordinary| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Africa|) + N place|ط,ProperName|ר,(Africa|) +޽ڹͬ巨 N money|,(Benin|) +޽ڹͬ巨 N money|,(Mali|) +޽ڹͬ巨 N money|,(Niger|ն) +޽ڹͬ巨 N money|,(Senegal|ڼӶ) + N human|,(Africa|) +ר ADJ aValue|ֵ,property|,^$protect|,commercial| +Ȼ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| +ɱ V run| +ɳ V SelfMove|,manner=fast| +ɴ N aircraft| +ɵ N weapon|,$firing| +ɵ N place|ط +ɵ N aircraft| +ɵ N fact|,#firing|,sport| +ɶ V deceive|ƭ +ɶͶ V suicide|ɱ +ɺ V fly| +ɻڴ V prosper| +ɻ N InsectWorm|,undesired|ݬ +ɻ N aircraft| +ɻ N facilities|ʩ,#aircraft|,@stay|ͣ +ɻƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| +ɻʧ N phenomena|,unfortunate|,#aircraft|,undesired|ݬ +ɽ V disperse|ɢ +ɽ V GoInto|,means=fly| +ɿ ADJ aValue|ֵ,form|״,sharp| +ɿ ADJ aValue|ֵ,speed|ٶ,fast| + N phenomena|,undesired|ݬ,#unfortunate| + V leave|뿪,means=fly| + N InstitutePlace|,factory|,*produce|,ProperName|ר,(Netherland|) + V arrive|,means=fly| + N part|,%LandVehicle| + N part|,%implement| +ë N human|,*run|,fast| +ë N part|,%AnimalHuman|,leg|,*run|,fast| + N bird| + N FlowerGrass| + N water|ˮ,fast| + N animal| +Ȫ N waters|ˮ,surfacial| + N human|,*run|,fast| + V fly| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N humanized|,ProperName|ר +ͧ N aircraft| + V LeaveFor|ǰ,means=fly| + V fly| + V fly| + V fly| + N aircraft| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + V show|,instrument=eye| + V fly| + V rise| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V cross|Խ,means=fly| +Ծ V GoForward|ǰ + N phenomena|,undesired|ݬ,#unfortunate| + V BecomeMore|,commercial| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N part|,%building| +߱ V walk| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,size|ߴ,big| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ʳ N food|ʳƷ +ʴ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ʴ ADJ aValue|ֵ,size|ߴ,big| +ʺ ADJ aValue|ֵ,fatness|,fat| + N attribute|,ability|,*feed|ι,#crop|ׯ,agricultural|ũ + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh|,fat| +ʵ ADJ aValue|ֵ,fatness|,fat| +˶ ADJ aValue|ֵ,fatness|,fat| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + ADJ aValue|ֵ,quality|,fertile|,desired| +Ч N attribute|,effect|Ч,*feed|ι,#crop|ׯ,agricultural|ũ +Դ N location|λ,@ExistAppear|,#material|,agricultural|ũ + N tool|þ,*wash|ϴ + N shows| + N livestock| +׳ ADJ aValue|ֵ,fatness|,fat| + N human|,*rob|,crime|,undesired|ݬ +˰ N community|,*rob|,crime|,undesired|ݬ +˳ N place|ط,#rob|,crime|,undesired|ݬ +˻ N phenomena|,unfortunate|,#rob|,#crime|,undesired|ݬ +˿ N place|ط,#rob|,crime|,undesired|ݬ + N human|,*rob|,crime|,undesired|ݬ +ͽ N human|,*rob|,crime|,undesired|ݬ +˼ ADJ aValue|ֵ,kind|,special| +̰ V slander|̰ +̰ ADJ aValue|ֵ,content|,evil|,#uglify|,undesired|ݬ +̰ N human|,*slander|̰ + V cry|,#livestock| + N part|,%AnimalHuman|,viscera| +ΰ N disease| +β N disease| +β N disease| +β N part|,%AnimalHuman|,viscera| +ζ N part|,%AnimalHuman|,nerve| +θ N emotion|,sincere| +θ֮ N text|,$speak|˵,sincere| +ν N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N bacteria|΢ + N disease| +Ҷ N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,scene|,desolate|,undesired|ݬ + V abandon| + V remove| +ϳ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ϳ V remove| +ϻ V TalkNonsense|Ϲ˵ +Ͼ ADJ aValue|ֵ,quality|,used|,waste|,undesired|ݬ + N physical|,generic|ͳ,waste| +Ʒ N artifact|˹,generic|ͳ,waste| +Ʒ N physical|,generic|ͳ,waste| +Ʒ N human|,commercial| + N gas|,waste| + V abandon| + N physical|,generic|ͳ,waste| +ʳ V endeavour| + N human|,*disable|м,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ˮ N liquid|Һ,waste| + N metal|,waste| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N physical|,generic|ͳ,waste| + N place|ط,waste| +Һ N liquid|Һ,waste| + N material|,liquid|Һ,waste| + N physical|,generic|ͳ,waste| +ֹ V remove| +ֽ N paper|ֽ,waste| + V abandon| + V dismiss|,royal| + V StateChange|̬ +е N attribute|,boundary|,#StateChange|̬,&temperature|¶ +з ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ȫ N waters|ˮ,surfacial| +ˮ N liquid|Һ,StateChange|̬ + V StateChange|̬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V excited| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N expenditure| + V spend| +ѳ N place|ط,city|,ProperName|ר,(US|) +ѹ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѽ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѾĻ V think|˼ +Ѿ ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ +Ѿ V spend|,patient=strength| + ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ + V spend|,patient=strength| +ֺ V ^succeed|ɹ +ʱ ADJ aValue|ֵ,property|,spend|,#time|ʱ,undesired|ݬ + V CauseToDo|ʹ,ResultEvent=hardship| + V PayAttention|ע + N expenditure| + N place|ط,country|,ProperName|ר,(Finland|) +ҷ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +ҷ N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Finland|) + N place|ط,country|,ProperName|ר + N money|,(Finland|) + N human|,(Finland|) + N language|,#country|,ProperName|ר + N chemical|ѧ +ȩ N material| +Ը V urge|ʹ + N gas| +Χ N attribute|,occasion|,&event|¼ + ADJ aValue|ֵ,importance|,branch|֧ + V distinguish|ֱ + V issue|ַ + N part|,%entity|ʵ + N part|,%organization|֯ + N rights|Ȩ + V separate| + N symbol|,#quantity| + N time|ʱ,special| + V undergo|,means=cooperate| + CLAS unit|λ,&amount| + CLAS unit|λ,&area| + CLAS unit|λ,&length| + CLAS unit|λ,&money|,(China|й) + CLAS unit|λ,&money|,rate| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&weight| +ְ V entrust|ί +ֱ N unit|λ,&SoundVolume| +ֱ V perish| +ֱ V distinguish|ֱ +ֱ N attribute|,ability|,distinguish|ֱ,&human| +ֱ N attribute|,performance|,&distinguish|ֱ +ֱ V refute| +ֱ ADJ aValue|ֵ,behavior|ֹ,sequence| +ֱ N attribute|,similarity|ͬ,&entity|ʵ +ֱ V distinguish|ֱ +ֱ V farewell| +ֱ V separate|,SourceWhole=army| +ֲ V exist| +ֲʽ ADJ aValue|ֵ,property|,$spread| +ֲ N part|,%institution|,*manage| +ֲ N account|,@record|¼ +ֲ V separate| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ V separate| +ִ N attribute|,range|,&entity|ʵ +ֵ V bear|е,means=cooperate| +ֵ V obtain|õ +ֵ V undergo|,content=$dispatch|Dz +ֵ V disconnect| +ֵ V obtain|õ +ֵ V classify| +ֵ N institution|,branch|֧,*manage| +ֶ N part|,%army|,military| +ַ V issue|ַ +ַ N human|,*issue|ַ +ַ V issue|ַ,possession=house| +ָ V LeaveFor|ǰ +ָ V separate| +ָ V separate| +ֹ V separate|,SourceWhole=affairs| +ֹ˾ N InstitutePlace|,branch|֧,commercial| +ֹ V manage| +ֹ N tool|þ,*check|,#lights| +ֹ⾵ N tool|þ,*check|,#lights| +ֺ N InstitutePlace|,branch|֧,commercial| +ֺ N symbol| +ֺ V dredge|ͨ +ֺ V earn|׬,possession=payment| +ֺ V issue|ַ,possession=payment| +ֻ V separate| +ֻ N community|,branch|֧ +ֻ N facilities|ʩ,branch|֧,*communicate| +ּ V estimate|,content=rank|ȼ +ּ V separate|,SourceWhole=family| +ּ V classify| +ֽ V separate| +ֽ N attribute|,boundary|,&entity|ʵ +ֽ N place|ط,#country|,boundary| +ֽ N attribute|,boundary|,&entity|ʵ +־ V disconnect| +־ N institution|,branch|֧ +ֿ V farewell| +ֿ V separate| + V classify| +ϵ N result|,#classify| + N human|,*classify| + V farewell| + V separate| + ADJ aValue|ֵ,property|,$separate| + N attribute|,weight|,&physical| + V separate| +ű V classify| + V excrete|й + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ĸ N symbol|,#quantity| + ADJ aValue|ֵ,attachment|,private|˽ + V issue|ַ + V dispatch|Dz + V issue|ַ + ADJ aValue|ֵ,behavior|ֹ +Ƭ V classify|,patient=affairs| + ADV aValue|ֵ,behavior|ֹ +ڷ ADV aValue|ֵ,behavior|ֹ + N attribute|,divergence|,&entity|ʵ +Dz N part|,%army| + V distinguish|ֱ + N institution|,branch|֧ +Ȩ V separate|,patient=rights|Ȩ +ɢ ADJ aValue|ֵ,property|,$spread| +ɢ V disperse|ɢ +ɢ V spread| +ɢ...ע V CauseToDo|ʹ,ResultEvent=^PayAttention|ע + V establish| +ʱ V cooperate| + V disconnect| + V farewell| + N symbol|,#quantity|,#DoSum| +ˮ N attribute|,boundary|,&entity|ʵ +ˮ N part|,%land|½,space|ռ,head|ͷ +˰ N system|ƶ,#expenditure| +˵ V refute| + V send| + N institution|,branch|֧ +̯ V bear|е +ͥ V equal| +ͥ V oppose| +ͷ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͷ N shape|,&hair|ë + ADJ aValue|ֵ,attachment|,public| +Ϊ V separate| + N money| +IJȡ ADJ aValue|ֵ,property|,^$pay| + ADJ aValue|ֵ,performance| + V analyze| + ADJ aValue|ֵ,content|,pure| + N software| +Ա N human|,*analyze| +ϵͳ N software| +߹ N tool|þ,*measure| + V undergo|,means=cooperate| + N cause|ԭ + N result| +У N institution|,branch|֧,@teach|,@study|ѧ,education| + V ^PayAttention|ע + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + V separate| + V help|,scope=remove| +Ժ N institution|,branch|֧ + V enjoy|,possession=payment|,manner=together|ͬ + N regulation|,*enjoy|,#payment| + N part|,%tool|þ,#tell|,#time|ʱ,#minute| +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N part|,%organization|֯,branch|֧ +֧ N part|,%plant|ֲ,limb|֫ +֧ N part|,%organization|֯,branch|֧ +֮ NUM symbol|,#quantity| + CLAS unit|λ,&time|ʱ + V planting|ֲ + N human|,#organization|֯ + N part|,%physical| + N symbol| + N attribute|,weight|,&physical| + V classify| + V farewell| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ qValue|ֵ,amount|,many| +׳ V appear| +׷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׷ V fly| +׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +׷ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V quarrel| + V appear|,manner=many| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,space|ռ,@bury|,#die| +ص N facilities|ʩ,space|ռ,@bury|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#die| +ͷ N facilities|ʩ,space|ռ,@bury|,#die| + N facilities|ʩ,space|ռ,@bury|,#die| + V burn| +ٷ N wind| +ٻ V burn|,purpose=bury| +ٻ V destroy|,means=burn| + V burn| + V lighting|ȼ +ھ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,color|ɫ,white| + V decorate|װ,means=apply|ͿĨ + N food|ʳƷ + N shape| + N tool|þ,*MakeUp|ױ +۱ N PenInk|ī,*write|д +۳ N stone|ʯ,waste| +۴ N disease|,#skin|Ƥ +۵ N InsectWorm| +ۺ ADJ aValue|ֵ,color|ɫ,red| +ۼ N medicine|ҩ +ĩ N shape| +ĩұ N method|,*refine|,#metal| +īdz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +īdz V engage|,politics| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| + V die| + V HideTruth| + V beautify|,purpose=HideTruth| + V decorate|װ,means=apply|ͿĨ +ˢ V decorate|װ,means=apply|ͿĨ +˿ N food|ʳƷ + V FormChange|α + V bump|ײ + V destroy| + N machine|,*grind|ĥ +Թ N disease| + N food|ʳƷ +״ ADJ aValue|ֵ,form|״,shape| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V endeavour| +ܲ V endeavour| +ܶ V endeavour| +ܶ N human|,*endeavour| +ܷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ܷ V endeavour| +ܷ V excited| +ܷͼǿ V endeavour| +ܽ V endeavour| + V endeavour| + V endeavour| + V endeavour| +ֱ׷ N chase|׷,manner=endeavour| + ADV aValue|ֵ,courage|,brave|,desired| +ս V fight| + V seek|ıȡ + CLAS NounUnit|,&emotion|,&strength| + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&publications|鿯,&document| + N component|,%entity|ʵ +ݶ N component|,%entity|ʵ +ݶ N attribute|,degree|̶,&event|¼,&aValue|ֵ +ݶ N food|ʳƷ + N expenditure| + N emotion|,angry| + N emotion|,angry|,undesired|ݬ + N emotion|,angry|,desired| + N emotion|,angry|,undesired|ݬ +߷߲ƽ V unsatisfied| +ߺ V hate| +߼ V excited| +߿ N emotion|,angry|,desired| +ŭ V angry| +Ȼ ADV angry| + V unsatisfied| + V unsatisfied| + N stone|ʯ,#AnimalHuman|,waste| + N stone|ʯ,#AnimalHuman|,waste| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| +ᱮ N mark|־,#succeed|ɹ,desired| +ᱮ N result|,#succeed|ɹ,desired| + N attribute|,demeanor|,gracious|,&human| + V prosper|,agricultural|ũ + V prosper|,agricultural|ũ +ḻ V enrich|ʵ +ḻ ADJ qValue|ֵ,amount|,many| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +Ṧΰ N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,thickness|,thick|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,fatness|,fat| + ADJ qValue|ֵ,amount|,many|,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N time|ʱ,year|,desired|,#crop|ׯ + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ʢ ADJ qValue|ֵ,amount|,many|,desired| + V prosper|,agricultural|ũ +˶ ADJ qValue|ֵ,amount|,many|,desired| +ʳ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ʳ V prosper| +ӯ ADJ aValue|ֵ,fatness|,fat| +ӯ ADJ qValue|ֵ,amount|,many|,desired| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ԣ ADJ qValue|ֵ,amount|,many|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + V block|ס + N character|,surname|,human|,ProperName|ר + V grant|,royal| + V shut|ر + V shut|ر,instrument=mark|־ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V shut|ر +ʽ ADJ aValue|ֵ,behavior|ֹ,restrained| + ADJ aValue|ֵ,behavior|ֹ,restrained| + V store| + N part|,%publications|鿯,hind| + N place|ط,#country| +ⶥ V cease|ͣ,content=grow|ɳ +ⶥ V delimit|,#wealth|Ǯ +ⶳ V StateChange|̬,StateFin=ice| +⽨ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +⽨ N system|ƶ,politics| +⽨ƶ N system|ƶ,politics| +⽨ N system|ƶ,politics| + V BeRecovered|ԭ,medical|ҽ + V shut|ر + N part|,%publications|鿯,InFront|ǰ +Ƥ N stationery|ľ,*wrap| +ɽ V shut|ر,patient=route|· +ɽ V planting|ֲ,patient=tree|,LocationFin=land|½ + V shut|ر + V BlockUp| + V shut|ر + N location|λ,boundary|,*block|ס + N mark|־ + V exercise|,means=block|ס,sport| +Ϊ V RegardAs| +ס V shut|ر +װ V load|װ + N tree| + N tree| +Ҷ N part|,%plant|ֲ,hair|ë + N InsectWorm| +䷿ N room|,#InsectWorm| + N food|ʳƷ + N food|ʳƷ,?medicine|ҩ + N InsectWorm| + N food|ʳƷ,?medicine|ҩ + N house|,#InsectWorm| +ú N stone|ʯ,material|,$burn| +״ ADJ aValue|ֵ,form|״ +ӵ V ComeTogether| +ӵ V GoForward|ǰ +ӵ V come| + N part|,%animal| + N part|,space|ռ,%land|½,head|ͷ +嶥 N part|,%land|½,head|ͷ + N fact|,discuss|,HighRank|ߵ + N part|,space|ռ,%land|½,head|ͷ + N part|,%thing| + N part|,%tool|þ,*cut|,heart| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,form|״,sharp| +â N attribute|,ability|,&human| +â N part|,%tool|þ,*cut|,heart| +ⶠADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N attribute|,habit|ϰ,&human| + N attribute|,scene|,&inanimate| + N attribute|,style|,&text| + N information|Ϣ + N wind| +籩 N fact|,uprise|,undesired|ݬ,politics| +籩 N wind|,#WeatherBad|,undesired|ݬ + N tool|þ,#inhale|,#gas| + N tool|þ,*inhale|,#gas| +粨 N fact|,uprise|,undesired|ݬ,politics| + N attribute|,ability|,&compile|༭ + N attribute|,demeanor|,gracious|,&human| +¶ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糱 N fact|,uprise|,undesired|ݬ,politics| +糵 N tool|þ,#wind|,*exhale|,#crop|ׯ +糵 N tool|þ,*WhileAway| +糾 N phenomena|,#tired|ƣ,#tour|,undesired|ݬ +糾 N phenomena|,undesired|ݬ,hardship| +糾 ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糾 V tired|ƣ,cause=SelfMove| +۵糸 V SelfMoveInManner|ʽ,manner=fast| +紵ݶ N phenomena|,disorder|,undesired|ݬ +˳ N weather|,good|,desired| +綴 N facilities|ʩ,route|·,#wind|,#speed|ٶ + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +緢 ADJ aValue|ֵ,strength|,strong|ǿ,desired| +緫 N part|,%ship|,*drive|Ԧ +緫 N ship| +緶 N attribute|,demeanor|,&human| +緶 N attribute|,style|,&human| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship| + N phenomena|,undesired|ݬ,#unfortunate| + V dry| + N tool|þ,*dig|ھ,mine| + N attribute|,style|,&entity|ʵ + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&compile|༭,literature| + ADJ aValue|ֵ,circumstances|,good|,desired| + N attribute|,scene|,&inanimate| +ⲻ V disappear|ʧ +约 N phenomena|,unfortunate|,#WeatherBad|,undesired|ݬ +纮 N disease|,#fever|,medical|ҽ + ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +绪 N attribute|,demeanor|,ability|,&human| +绪ï ADJ aValue|ֵ,physique|,strong|ǿ,desired| +绯 V StateChange|̬ +羰 N attribute|,scene|,&inanimate| +羰 N image|ͼ,#scene| +羰 N place|ط,#scene| +羰续 ADJ aValue|ֵ,scene|,beautiful|,desired| +羵 N tool|þ,*protect|,#eye| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N part|,%machine|,mouth| + N part|,%place|ط,#wind| + N fact|,uprise|,undesired|ݬ,politics| + ADJ aValue|ֵ,strength|,&wind| + N attribute|,intensity|ǿ,&wind| + N attribute|,strength|,&wind| + ADJ aValue|ֵ,temperature|¶,chilly| + N tool|þ,*MakeSound| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,behavior|ֹ,flighty| + N human|,behavior|ֹ,free| +ɢ V disperse|ɢ +ţ༰ V RelateNot|޹ +ñ N clothing|,#head|ͷ +ò N attribute|,bearing|̬,gracious|,desired| +ò N attribute|,scene|,&inanimate| +ò N attribute|,style|,property|,&entity|ʵ +ý N FlowerGrass| + N part|,%vehicle|ͨ + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%building|,mouth| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +һʱ V prosper| + N attribute|,strength|,&wind| + N bird| +ƽ˾ ADJ aValue|ֵ,circumstances|,safe|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ V happen| + N attribute|,SocialMode|,&organization|֯ + N MusicTool| + N human|,*perform|,entertainment| + N attribute|,SocialMode|,&organization|֯ + N attribute|,bearing|̬,&human| + N emotion| + N emotion|,lascivious| + N information|Ϣ,#wind| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɳ N wind| +ɳܴ ADJ aValue|ֵ,property|,WeatherBad|,#wind| + N tool|þ,#wind|,*cool| + N attribute|,habit|ϰ,&human|,&organization|֯ + N information|Ϣ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʪ N disease| +ʪ N disease| +ʪ N disease| +ʪԹؽ N disease| +ʪ֢ N disease| +ʴ V damage|,#wind| +˪ N phenomena|,hardship|,undesired|ݬ +ˮ N information|Ϣ,#earth| + N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ + N attribute|,speed|ٶ,&wind| +ͷ N attribute|,circumstances|,&event|¼ +ͷ N attribute|,reputation|,glorious|,&human| + N attribute|,habit|ϰ,&human|,&organization|֯ +ζ N attribute|,style|,&information|Ϣ,special| +ζ N attribute|,taste|ζ,&edible|ʳ,special| + V perception|֪ + N attribute|,scene|,special|,&inanimate| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N direction|,#wind| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +ѩ N wind|,RainSnow|ѩ +ѹ N attribute|,strength|,&wind| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N clothing|,*protect|,#human|,#wind| + N phenomena|,hardship|,undesired|ݬ +Ʈҡ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ͬ V undergo|,content=hardship|,manner=together|ͬ + ADV aValue|ֵ,behavior|ֹ,lasting| + N attribute|,scene|,&inanimate| + N fact|,#love| + N attribute|,circumstances|,disorder|,&entity|ʵ +Ʊ V change|,manner=fast|,#politics| + N human|,glorious|,desired| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N phenomena|,undesired|ݬ,#unfortunate|,#WeatherBad| + N disease| + N time|ʱ,#age|,#aged| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N tool|þ,*dig|ھ,mine| + N tool|þ,*WhileAway| + V mad| + V mad| +蹷 N livestock|,*mad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,*mad|,undesired|ݬ + V mad| + N tool|þ,#fire|,*tell| + N fact|,fight| + N tool|þ,#fire|,*tell| +̨ N facilities|ʩ,#fire|,*tell| + N tool|þ,#fire|,*tell| + V meet| + CONJ {time|ʱ} + N time|ʱ +׻ V change|,StateIni=unfortunate|,StateFin=lucky| +ӭ V please|ȡ + N character|,surname|,human|,ProperName|ר + V fasten|˩ + N part|,%inanimate|,mouth| +첹 V repair| + V repair| + V fasten|˩ + V fasten|˩ +һ V tool|þ,*fasten|˩ +϶ N part|,%inanimate|,mouth| + V produce| + N part|,%inanimate|,mouth| + V recite|ж + V satirize| + ADJ aValue|ֵ,content|,#satirize| + V satirize| +̼ N human|,*satirize| + N human|,*compile|༭,#satirize|,literature| + V TakeCare| + V believe| + V receive| + V respect| + V submit| + ADJ aValue|ֵ,content|,#please|ȡ + V please|ȡ + N human|,*please|ȡ + V tell| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V return| + V obey|ѭ,content=order| + V follow| +Ȱ V persuade|Ȱ˵ + V salute|¾ + V GiveAsGift| +Ϊ V RegardAs| + N result|,desired|,$donate| + V submit| + V conduct|ʵʩ + V foster| + N bird| + N character|,surname|,human|,ProperName|ר + N clothing|,#head|ͷ + N bird| + N fruit|ˮ +ë ADJ aValue|ֵ,value|ֵ,precious|,desired| +β N fish| +β N tree| +ɻ N FlowerGrass| + N humanized|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ý ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cape Verde|ý) +ý N place|ط,country|,ProperName|ר + N knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N publications|鿯,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Italy|) + N community|,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N fact|,religion|ڽ + N tree| + N facilities|ʩ,religion|ڽ,space|ռ + N room|,religion|ڽ + N tool|þ,#humanized|,religion|ڽ +ѧ N knowledge|֪ʶ,#religion|ڽ + N location|λ,religion|ڽ,@put| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V deny| + V reject|ؾ + V deny| + V reject|ؾ +̩ V change|,StateIni=unfortunate|,StateFin=lucky| + V reject|ؾ +Ȩ N rights|Ȩ,politics|,*reject|ؾ + N human|,*reject|ؾ + V deny| + V reject|ؾ + CONJ {transition|ת} + N human|,#occupation|ְλ,employee|Ա + N human|,family|,male| + N human|,family|,mass| + N human|,family|,mass| + N human|,family|,female|Ů + N human|,female|Ů + N human|,*teach|,education| + N human|,stiff|,undesired|ݬ + V apply|ͿĨ + N material|,*cure|ҽ,generic|ͳ + V build| + V explain|˵ + V slack|͵ + V slack|͵ + V slack|͵ + V explain|˵ + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ɫ N attribute|,color|ɫ,&human|,#skin|Ƥ + V GiveBirth| + V GiveBirth| + V HoldWithHand| + V PropUp|֧ + N character|,surname|,human|,ProperName|ר + V help| + V help| +Я V HoldWithHand|,patient=human| +ƶ V help|,patient=poor| +ƶ V help|,patient=poor| + V HoldWithHand| +ɣ N place|ط,country|,ProperName|ר,(Japan|ձ) +ɣ N tree| + N fittings|,%artifact|˹ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%building|,nerve| + V ProvideFor| +ҡֱ V BecomeMore|,commercial| +ҡֱ V rise| +Ҵ V help| + V cure|ҽ + V put|,result=upright| +а V cure|ҽ +ֲ V cultivate| +ֲ V help| + V help| + V disobey|Υ + V stroke| + V wipe| + V stroke|,PartOfTouch=skin|Ƥ + V wipe| + N time|ʱ,morning| +ȥ V leave|뿪,cause=angry| + N part|,%LandVehicle|,#leg| + V disperse|ɢ + N attribute|,strength|,&physical| +Դ N attribute|,source|Դ,&physical| +״ ADJ aValue|ֵ,form|״,disperse|ɢ + V illuminate| + CLAS NounUnit|,&image|ͼ + N attribute|,size|ߴ,&physical| + N attribute|,width|,&material| + N attribute|,range|,&event|¼ + N attribute|,width|,&material| + N attribute|,width|,&physical| +Ա N attribute|,size|ߴ,&country| +Ա ADJ aValue|ֵ,area|,wide| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + N document|,*prove|֤ + N document|,religion|ڽ + V fit|ʺ + N symbol| + N symbol| + V fit|ʺ +ϰ ADJ aValue|ֵ,trueness|α,true|,#language| + V CausePartMove| + V LieDown| + N character|,surname|,human|,ProperName|ר + V fall| + V hide| + V surrender| + CLAS unit|λ,&PhysicsPower| + V CausePartMove| + V suffer|,content=kill|ɱ,police| + V attack|,military| + N waters|ˮ,linear| + N time|ʱ,season|,hot| + CLAS unit|λ,&voltage|ѹ +ؼ N drinks|Ʒ,$addict|Ⱥ + N time|ʱ,season|,hot| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather| + V catch|׽ס,military| + N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + V catch|׽ס,military| +² V catch|׽ס,military| +² N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + CLAS NounUnit|,&medicine|ҩ + V believe| + N clothing|,generic|ͳ + V eat|,medical|ҽ + V fit|ʺ + V surrender| + V engage|,content=military|,military| + V obey|ѭ + V suicide|ɱ,instrument=poison| + N method|,*consume|ȡ,#medicine|ҩ,medical|ҽ + V surrender|,target=law|ɷ,#police| + V believe| +ɥ V condole|° + V TakeCare| + N clothing|,generic|ͳ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V believe| + V TakeCare| + N computer| +̨ N facilities|ʩ,space|ռ,#entertain|д +ҵ N affairs|,#TakeCare|,commercial| +Ա N human|,*help|,#commercial| + V include|,ResultWhole=army|,military| + V suffer|,content=punish|,police| +ҩ V consume|ȡ,patient=medicine|ҩ + V engage|,military| + V include|,ResultWhole=army|,military| + V eat|,medical|ҽ +װ N clothing|,generic|ͳ +װ N InstitutePlace|,*sell|,@buy|,#clothing|,commercial| +װ N human|,#clothing|,commercial| +װʦ N human|,#occupation|ְλ,*plan|ƻ,#clothing| +װҵ N affairs|,produce|,#clothing| + ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V float|Ư + ADJ qValue|ֵ,amount|,redundant| + V swim| + V TalkNonsense|Ϲ˵ + N mark|־ + N stone|ʯ,waste| + V MakeLiving|ı + V appear| + V float|Ư + N symbol|,#quantity|,#DoSum| + N image|ͼ,$carve| + V QuantityChange|,commercial| + V change| + V float|Ư + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V exposure|¶ + V float|Ư +Ӱ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + N aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + V PlayUp|Ĵ + V boast| + N attribute|,strength|,&physical| + N part|,%inanimate|,skin|Ƥ +Ƥ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥ N part|,%inanimate|,skin|Ƥ +Ƽ N FlowerGrass|,#waters|ˮ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N facilities|ʩ,route|·,#waters|ˮ +ͷ N part|,%inanimate|,skin|Ƥ + N stone|ʯ,waste| + V appear| + V think|˼ +ѡ V choose|ѡ,industrial| + V swim| + V tour| + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V swollen| + N part|,%LandVehicle| + N tool|þ,*catch|׽ס,#fish| + N phenomena|,lucky|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N fact|,#organization|֯,help| + N fact|,#organization|֯,help| +Ժ N InstitutePlace|,@help|,#aged| + N money|,(Hungary|) + N attribute|,circumstances|,happy|,desired|,&human| + N attribute|,circumstances|,happy|,desired|,&human| + N information|Ϣ,#joyful|ϲ,#lucky|,desired| + N knowledge|֪ʶ,religion|ڽ + N place|ط,city|,ProperName|ר,(China|й) + ADV {neg|} + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,capital|,ProperName|ר,(Sierra Leone|) +˹ N language|,#country|,ProperName|ר + N attribute|,name|,&human| + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,only| + V foster| + V soothe|ο + V stroke| + V stroke|,purpose=ShowLove|ʾ +׷ V LookBack| + V stroke| +Ħ V stroke| +˳ N place|ط,city|,ProperName|ר,(China|й) +ο V soothe|ο +ο N human|,*soothe|ο + V recompense| + N payment|,*recompense|,#disable|м,#die| + V foster| + V cultivate| + V foster| + ADJ aValue|ֵ,importance|,secondary| + V enrich|ʵ + V help| + N money| + V teach| +Ա N human|,#occupation|ְλ,*teach| + N material|,secondary| + N sound|,#language| + ADJ aValue|ֵ,importance|,secondary| + V help| + ADJ aValue|ֵ,importance|,secondary| + V help|,scope=manage|,politics| + V CausePartMove|,PatientPartof=body| + V fall| + V LieDown| + N image|ͼ,angular|,#measure| + V CausePartMove|,PatientPartof=body| +ʰ ADJ aValue|ֵ,easiness|,easy|,desired| +ʰ ADJ qValue|ֵ,amount|,many| + V look| + V CausePartMove|,PatientPartof=head|ͷ + V surrender| + V LieDown| + V surrender| +֮ ADJ aValue|ֵ,duration|,TimeShort| + V look| + N tool|þ,cubic|,*cook| +׳н V handle|,manner=strong|ǿ + N tool|þ,*split|ƿ,*cut| +ͷ N tool|þ,*split|ƿ,*cut| + V amend| + N tool|þ,*split|ƿ,*cut| + N food|ʳƷ + N food|ʳƷ,#fruit|ˮ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N house| + N house|,#official| + N institution|,space|ռ,past| + N place|ط + N material|,?clothing| + N house|,#official| + N facilities|ʩ,space|ռ,past| +ۡ N house|,#official| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +ܶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,stiff|,undesired|ݬ + N food|ʳƷ +ʴ V FormChange|α +ʴ V bite|ҧ +ʴ V damage|,scope=behavior|ֹ,means=GiveAsGift| +ʴ N chemical|ѧ,*bite|ҧ,#metal| +ʴ ADJ aValue|ֵ,ability|,able|,bite|ҧ,#metal| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ֳ N stone|ʯ,agricultural|ũ +ֳ N physical|,agricultural|ũ + N food|ʳƷ + V LeaveFor|ǰ + V engage|,content=fact| + V obey|ѭ,content=MakeAppointment|Լ + V LeaveFor|ǰ,LocationFin=(Beijing|) + V help|,patient=country| + V endeavour| + CLAS NounUnit|,&clothing|,&tool|þ + ADJ aValue|ֵ,importance|,secondary| + V fit|ʺ + N human|,friend|,*help| + N readings| + N part|,%text| + N human|,occupation|ְλ,official|,*manage| +Ʒ N artifact|˹,generic|ͳ + N part|,%language| +³ N human|,#occupation|ְλ,*manage| + N human|,#occupation|ְλ,official|,secondary| + N human|,#occupation|ְλ,official|,politics| + N CloudMist| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N human|,#occupation|ְλ,*teach|,education| + N human|,#occupation|ְλ,official|,commercial| + N publications|鿯 +Ʒ N artifact|˹,generic|ͳ,useless| +˺ N disease| + N human|,*firing|,military| +ʳ N edible|ʳ +ʳƷ N edible|ʳ +ʳƷ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ +ʳ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ + N human|,friend|,*help| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +ҵ N affairs|,#occupation|ְλ,secondary| + N part|,%aircraft|,secondary| +ְ N attribute|,occupation|ְλ,secondary|,&human| +ܾ N human|,official|,commercial| + N result|,#medical|ҽ + V cover|ڸ + V reverse|ߵ + V cover|ڸ + N quantity|,rate|,#cover|ڸ,&space|ռ +û V perish| +û V sink|³ + V perish| +֮ԩ N phenomena|,undesired|ݬ,#unfortunate| + V perish| + N phenomena|,undesired|ݬ,#unfortunate| + V compile|༭ + N expenditure| + V give| + N text|,past| +ʫ V compile|༭,ContentProduct=text| +˰ N expenditure| + V cease|ͣ +μ N material|,?medicine|ҩ + V give| + V BeRecovered|ԭ + V TurnRound| + ADJ qValue|ֵ,amount|,double| + V reply| + V resume|ָ + V revenge| + N readings| + V resume|ָ,politics| + V check| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V revenge| + V obtain|õ,possession=power|,frequency=again| + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + V SufferFrom|,frequency=again|,#medical|ҽ + V GoBack| + ADJ aValue|ֵ,property|,#medicine|ҩ + V resume|ָ,patient=engage|,industrial| + V resume|ָ,patient=past| + V GoBack| + V reply|,content=letter|ż + V check| + V check|,police| + ADJ aValue|ֵ,kind|,include| + V resume|ָ,patient=fact|,#discuss| + V GetMarried| + V BeRecovered|ԭ,StateIni=alive| + N time|ʱ,day|,festival|,@congratulate|ף + V check|,frequency=again| + V resume|ָ,patient=associate|,#country|,politics| + V resume|ָ,patient=past| + N expression| + V resume|ָ,patient=publish| + V resume|ָ,patient=education|,education| + V cultivate|,agricultural|ũ + N wealth|Ǯ,desired|,$earn|׬ + V BeRecovered|ԭ,StateFin=look|,#eye| + N fact|,#compete| + V check|,frequency=again| + N interrogate|,police|,again| + V BeRecovered|ԭ,StateFin=alive| +ʽ ADJ aValue|ֵ,pattern|ʽ,#building| + N fact|,exam| + V speak|˵ + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| +λ V cure|ҽ +λ V resume|ָ,StateIni=royal|,politics| +ϰ V drill|ϰ + N facilities|ʩ,route|· +д V copy|д +дֽ N paper|ֽ,*copy|д + V reply|,content=letter|ż + V BeRecovered|ԭ,StateIni=alive| + V resume|ָ + V resume|ָ,StateIni=alive| +˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N human|,*resume|ָ +ѧ V resume|ָ,patient=education|,education| + N part|,%animal|,#eye| +Ҷ N part|,%plant|ֲ,hair|ë + V discuss| + N sound|,#language| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡ N readings|,$print|ӡˢ +ԭ V BeRecovered|ԭ,medical|ҽ +ԭ V resume|ָ +Ա V discharge|,SourceWhole=army|,military| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ӷ ADJ aValue|ֵ,property|,AptTo|,#change| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V resume|ָ,patient=occupation|ְλ + V produce| +Ʒ N artifact|˹,$imitate|ģ,generic|ͳ + V planting|ֲ +ָ N quantity|,amount|,&planting|ֲ +׳ V BeRecovered|ԭ + N character|,surname|,human|,ProperName|ר + V pay| + V submit| + V pay| + V pay|,possession=expenditure|,purpose=MakeAppointment|Լ + N part|,%account|,commercial|,#human| + N part|,%account|,commercial|,human| + V pay| + V pay| + V pay|,possession=money|,commercial| +ƾ֤ N bill|Ʊ + N human|,*pay|,commercial| + V submit|,possession=readings|,purpose=compile|༭ + V undergo|,content=pay| +Ǯ V pay| + V pay| + V pay|,possession=money|,commercial| + V entrust|ί +Ϣ V pay| +ӡ V submit|,possession=readings|,purpose=print|ӡˢ + V submit|,possession=letter|ż,purpose=post|ʼ + V pay|,possession=money|,commercial| +֮ V fail|ʧ +֮һ V destroy|,instrument=fire| + V CauseToDo|ʹ + V fail|ʧ + N land|½,small|С + ADJ qValue|ֵ,amount|,many|,desired| + N human|,aged|,male| + N human|,family|,aged| + N human|,#clan| + N human|,aged|,male| + N human|,mass| +ĸ N human|,family|,mass| +ĸ V human|,official| +ĸ N human|,family|,mass| +Ů N human|,family|,mass| + N human|,family|,male| + N human|,family|,mass| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N part|,%inanimate|,body| +ܵ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N part|,%AnimalHuman|,body| + N place|ط +ɹ N part|,%AnimalHuman|,leg| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,viscera| +ˮ N liquid|Һ,#disease| +ʹ V StomachTrouble|֢ +к N StomachTrouble|֢ + N emotion|,sincere| +֢ V StomachTrouble|֢ + N location|λ,%body| + N part|,%AnimalHuman|,tail|β + V CarryOnBack| + ADJ aValue|ֵ,property| + V bear|е + V defeated| + V defeated|,military| + V depend| + V disobey|Υ + V owe|Ƿ + V own| + V suffer| + V bear|е + N duty| + V bear|е + V load|װ + N part|,%electricity| + V apologize|Ǹ + V regret|Ǹ + N part|,%physical| + ADJ aValue|ֵ,contrariness|,negative| +Ƭ N part|,%tool|þ,#TakePicture| + V angry| + V wounded| + N symbol|,#quantity| + V bear|е + ADJ aValue|ֵ,ability|,able|,$bear|е +翹 V resist| +Լ V disobey|Υ,content=MakeAppointment|Լ + N quantity|,amount|,&affairs| + ADJ aValue|ֵ,ability|,able|,$bear|е + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V manage| +ɲ N human|,*manage| + N human|,*manage| +ծ V owe|Ƿ,possession=wealth|Ǯ +ծ V owe|Ƿ,possession=wealth|Ǯ +ֵ N quantity|,amount|,&entity|ʵ + V CarryOnBack|,patient=heavy| + V bear|е,content=duty| +Զ V bear|е,content=duty| + V bear|е,content=$blame|Թ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V CauseToDo|ʹ,patient=country|,ResultEvent=become|Ϊ,#rich| + V contain| + N human|,rich|,desired| + N human|,rich|,desired| + N InstitutePlace|,mine| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +û ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V CauseToDo|ʹ,patient=human|,ResultEvent=become|Ϊ,#rich| +ũ N human|,rich|,agricultural|ũ +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,rich|,desired|,commercial| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +гЧ ADJ aValue|ֵ,effect|Ч,superior|,desired| +е ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V contain| + ADJ aValue|ֵ,necessity|Ҫ,redundant| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Դ N location|λ,@ExistAppear|,#material| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N text|,*announce|,#die| + N human|,*compile|༭,literature| + V BeNear| + V depend| + V include| + N part|,%readings| + ADJ aValue|ֵ,importance|,secondary| + V include| + V obey|ѭ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + V include| +˰ N expenditure| + N part|,%artifact|˹ + N part|,%artifact|˹,%text| + ADJ aValue|ֵ,distance|,near| +¼ N part|,%readings| + V undergo|,content=include| + V contain| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N part|,%artifact|˹ +Сѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ͼ N image|ͼ +С N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ӹ N part|,%artifact|˹ +ӹ N place|ط,#country|,#BeMember| + V contain| + V situated| + N part|,%readings| + N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ע N part|,%text| + V situated| + N attribute|,strength|,#fasten|˩,&physical| + N physical|,$fasten|˩ + N medicine|ҩ + N human|,family|,female|Ů + N human|,female|Ů + N human|,female|Ů,*GetMarried| + N knowledge|֪ʶ,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,medical|ҽ + N community|,#female|Ů +Ů N human|,female|Ů +Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף + N human|,female|Ů,*GetMarried| +֪ ADJ aValue|ֵ,reputation|,glorious| + N human|,mass|,#female|Ů,#young| +ױ N affairs|,#maintain|,#female|Ů,#young|,medical|ҽ + V wrap| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,mischievous| +° V StateChange|̬ +° V situated| +¸ ECHO sound| + ADJ aValue|ֵ,kind|,special| + V fit|ʺ + V owe|Ƿ + V worth|ֵ + AUX {modality|} +õ AUX {modality|} + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V alter|ı + V amend| +İ V amend| +ı V compile|༭,manner=also|Ҳ +ı V forming|γ +ı V forming|γ,manner=also|Ҳ +ı V alter|ı +ı V change| +ij V alter|ı,patient=country|,politics| +ij V RegardAs| +ij V alter|ı +ĵ V alter|ı,patient=route|· +ĵ V GiveUp| +Ķ V alter|ı +Ķ V amend|,content=wrong| +ĸ V improve| +ĸ N human|,*improve| +Ĺ V alter|ı +Ĺ V amend|,content=wrong| +Ļ V alter|ı +Ļ V amend|,content=wrong| +ļ V MarryTo|,manner=also|Ҳ +Ľ V build| +Ľ V build|,manner=also|Ҳ +Ľ V improve| +Ľ ADJ aValue|ֵ,property|,$improve| +Ŀ V alter|ı,patient=content| + V improve| + ADJ aValue|ֵ,behavior|ֹ,#improve| + N thinking|˼,#improve| + N human|,*engage|,#improve| + V alter|ı,patient=name| + V alter|ı,patient=judge|ö,police| + V alter|ı,patient=time|ʱ + V undertake| + N time|ʱ,future| + V improve| +컻 V alter|ı,patient=environment| +ͷ V alter|ı,patient=attribute| +Ϊ V alter|ı +Ҹ V alter|ı,patient=method| + V alter|ı,patient=method| +а V amend|,content=wrong| +д V write|д +д V write|д,manner=also|Ҳ + V alter|ı,patient=kind| + V alter|ı,patient=occupation|ְλ +ѡ V choose|ѡ,manner=also|Ҳ + V use| +Ԫ V alter|ı,patient=name|,royal| + V alter|ı + V improve| + V produce| + V amend| + V improve| + V alter|ı,patient=system|ƶ + V planting|ֲ +װ V alter|ı,patient=clothing| +װ V install|װ,manner=also|Ҳ +װ V provide|,manner=also|Ҳ +װ V wrap|,manner=also|Ҳ +׶ N tool|þ,*tighten|ս,*loosen| + V establish| + V forming|γ,manner=also|Ҳ + ADJ aValue|ֵ,content|,simple| + ADV aValue|ֵ,content|,simple| +ſ N attribute|,circumstances|,&entity|ʵ + ADJ aValue|ֵ,content|,simple| + ADJ aValue|ֵ,content|,simple|,desired| + V explain|˵ + N attribute|,content|,simple|,&information|Ϣ + N quantity|,rate|,#possibility|,&event|¼ + N part|,%text| +ò N attribute|,circumstances|,simple|,&entity|ʵ + ADJ aValue|ֵ,attachment| + N information|Ϣ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N text|,simple| + V calculate| +Ҫ N text|,simple| + N chemical|ѧ +ƻ V ize|̬ + V build| + N character|,surname|,human|,ProperName|ר + V cover|ڸ + N part|,%animal|,skin|Ƥ + N part|,%artifact|˹,*shut|ر + V print|ӡˢ + V surpass|ǿ + N tool|þ,*cover|ڸ +Dz N part|,%vegetable|߲,embryo|,$eat| +Dz N vegetable|߲ +Ƿ N food|ʳƷ +ǹ۶ V estimate| +ǹ V surpass|ǿ +ǽ N food|ʳƷ +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V build|,Vachieve| + V cover|ڸ,Vachieve| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +̫ N human|,police|,undesired|ݬ,past|,(Germany|¹) +˫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V print|ӡˢ,content=mark|־ +ס V cover|ڸ,Vachieve| + N part|,%animal| + N part|,%artifact|˹ + N part|,%artifact|˹,generic|ͳ + V IllTreat| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V do| + V fight| + V kill|ɱ + N part|,%physical|,body| + N part|,%plant|ֲ,body| + V relate|й +ɰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɰͰ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɰͰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɱ V congratulate|ף,means=drink| +ɱ N food|ʳƷ,#fish| +ɱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɱ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ɱ N ice| +ɲ N human|,#occupation|ְλ +ɲѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +ɲ N food|ʳƷ +ɲ N FlowerGrass|,?material|,*feed|ι,#livestock| +ɴ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ɵ N facilities|ʩ,route|·,important| +ɵ V BeUnable| +ɵ N part|,%artifact|˹ +ɵ V kill|ɱ +ɷ N food|ʳƷ +ɸɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɸ N fact|,fight| +ɹ N fruit|ˮ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɺ ADJ aValue|ֵ,dampness|ʪ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɻ N FlowerGrass| +ɻ V engage| +ɻ N food|ʳƷ,dried| +ɽ N human|,able|,desired| +ɾ N attribute|,strength|,&human| +ɾ N emotion|,excited| +ɾ N human|,#occupation|ְλ,police| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɿ N pant| +ɿ V HungryThirsty| +ɿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɿ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɿ V decline|˥ + N food|ʳƷ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,ability|,able|,desired| + N food|ʳƷ + V split|ƿ + N waters|ˮ,linear| + ADV fact|,question| + ADV {cause|ԭ,question|} + N attribute|,clan|,&human| + N facilities|ʩ,#liquid|Һ,linear|,important| +Ⱥ N human|,mass| +Ⱥϵ N attribute|,relatedness|,&human| + V MakeTrouble| + V obstruct|ֹ + V obstruct|ֹ,industrial| + N chemical|ѧ + V include| + V obstruct|ֹ + N human|,*obstruct|ֹ +ʪ N attribute|,dampness|ʪ,&physical| + V engage|,content=affairs| + N human|,#occupation|ְλ + ADJ aValue|ֵ,fatness|,bony| +ϴ V wash|ϴ +ʹ N fruit|ˮ + N facilities|ʩ,route|·,important| +У N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +Ц V laugh|Ц + N place|ط,#official|,@reside|ס +Ԥ V include| +Ԥ V obstruct|ֹ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N character|,surname|,human|,ProperName|ר +ʰ· V surrender| +ʱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gambia|ʱ) +ʱ N place|ط,country|,ProperName|ר +ʲ N medicine|ҩ +ʵ V undertake| +ʿ N attribute|,circumstances|,&human|,&organization|֯ +ʿ N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N RainSnow|ѩ,desired| +¶ N RainSnow|ѩ,desired| +¶ N medicine|ҩ + ADJ aValue|ֵ,taste|ζ,good|,desired| +֭ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ȫ N water|ˮ,sweet|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,taste|ζ,sweet|,desired| +п N place|ط,capital|,ProperName|ר,(Sikkim|) + V willing|Ը + N chemical|ѧ + V willing|Ը +Ը V willing|Ը + N crop|ׯ,?material|,sweet| +֮ ADJ aValue|ֵ,taste|ζ,good|,desired| + N part|,%artifact|˹,arm| + N tool|þ +˳ N tool|þ,*measure| +˾ N bacteria|΢ + N tool|þ + N fruit|ˮ +̽ N fruit|ˮ + N fruit|ˮ + N fruit|ˮ + N tool|þ + N part|,%AnimalHuman|,viscera| +ΰ N disease| +ε ADJ attribute|,behavior|ֹ,sincere|,&human| +ε N attribute|,courage|,&AnimalHuman|,&organization|֯ +ε V WellTreat|ƴ +Ϳ V endeavour| + N emotion|,angry|,undesired|ݬ + N medicine|ҩ + N InsectWorm|,undesired|ݬ,#disease| + N disease| +Ӳ N disease| +Ӳ N disease| + N part|,%AnimalHuman|,viscera| + N InsectWorm|,undesired|ݬ,#disease| + V LeaveFor|ǰ + V VieFor| + V chase|׷ + V drive|Ԧ + V expel| + V undergo| +ϳ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +ϳ V LeaveFor|ǰ,purpose=perform| +ϳ V surpass|ǿ +ϵ V LeaveFor|ǰ +ϸ V LeaveFor|ǰ +ϼ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +Ͻ V VieFor| +Ͼɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ͼɱ V destroy| +Ͽ ADV aValue|ֵ,duration|,TimeShort| +ͷ V obey|ѭ,content=SocialMode| +· V SelfMove|,manner=fast| +æ ADJ aValue|ֵ,earliness|,early| + V chase|׷,Vachieve| + V undergo| +ʱ V obey|ѭ,content=SocialMode| + V LeaveFor|ǰ +粻 ADV aValue|ֵ,earliness|,early| + V cherish|Ļ + N emotion| + V excite|ж + N experience| + V grateful|м + V influence|Ӱ + V perception|֪ +д N emotion| +е V cherish|Ļ +е V regard|Ϊ +ж V excited| +ж V excite|ж +ж V grateful|м +з V excited| +й N part|,%AnimalHuman|,*sense|о +й V ize|̬,#lights| +л V teach| +м V grateful|м +о V perception|֪ +о V regard|Ϊ +о V cherish|Ļ +о V perception|֪ +оõ ADJ aValue|ֵ,ability|,able|,$perception|֪ +о N part|,%AnimalHuman|,*sense|о +п V sigh|̾ +п V excited| +ð N disease| +ð V fever| + ADJ aValue|ֵ,attachment|,#emotion| + N emotion| + ADJ aValue|ֵ,attachment|,#emotion| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ V inflamed| + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж,desired| +˷θ V excite|ж + ADJ sorrowful| + V sorrowful| + N experience| + N thought|ͷ + V undergo| +ܵ V perception|֪ + V understand| + N experience| +л V grateful|м +л V thank|л +Ȥ V FondOf|ϲ + ADJ aValue|ֵ,attachment|,mental| +ʶ N knowledge|֪ʶ,#mental| +Ӧ V aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ ADJ aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ V respond|Ӧ + V urge|ʹ +֪ V perception|֪ + N part|,%plant|ֲ,body| + ADJ aValue|ֵ,courage|,brave|,desired| + V believe| + AUX dare| + V dare| +ŭ ADJ suffer|,content=force|ǿ,#KeepSilence|˵ + ADV {comment|} + V dare| + AUX dare| + V dare| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,space|ռ,%land|½,head|ͷ +Ա N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV {tense|ʱ̬,past|} +ղ ADV {tense|ʱ̬,past|} +ո ADJ {emphasis|ǿ} +չ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Congo|չ) +չ N place|ط,country|,ProperName|ר,(Africa|) +չ N human|,(Congo|չ) +պ ADV aValue|ֵ,time|ʱ,proper| +պ ADJ {emphasis|ǿ} +ս ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ս ADJ aValue|ֵ,posture|,strong|ǿ,desired| +վ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +վ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV aValue|ֵ,time|ʱ,proper| + N inanimate|,generic|ͳ + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ѧĺ N human|,*study|ѧ,#walk|,young| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N metal| + V sharpen|ʹ +ְ N material|,metal|,surfacial| +ְ N part|,%LandVehicle| +ְ N stationery|ľ +ֱ N PenInk|ī,*write|д +ֲ N material|,metal| +ֶ N material|,#metal| +ֹˮ N material|,@building| +ֹ N material|,linear| +ֹ N material|,metal|,linear|,#LandVehicle| +ֻ N material|,?tool|þ +ֽṹ N part|,%entity|ʵ,bone|,#metal| +ֽ N material|,metal|,linear| + N material|,#metal| +ǥ N implement|,#metal| + N MusicTool| +ټ N human|,*perform|,entertainment| + N human|,*perform|,entertainment| +ˮ N metal|,material| +˿ N tool|þ,linear|,#metal| +˿ N tool|þ,linear|,#metal| + N tool|þ,linear|,#metal| + N metal|,material| +ӡ N stationery|ľ,*print|ӡˢ + N part|,%implement| + N tool|þ,cubic|,@put| +׹ N material|,linear| + N tool|þ,cubic|,#liquid|Һ,@wash|ϴ +ש N material|,*build| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N part|,%entity|ʵ,heart| + N part|,%information|Ϣ,bone| + N part|,%tool|þ,#catch|׽ס,#fish| + N reason| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%information|Ϣ,bone| + N land|½ + N shape| +¥ N facilities|ʩ,space|ռ,military|,@look| + N facilities|ʩ,space|ռ,military|,@defend| + N human|,military|,*defend| +ͤ N facilities|ʩ,space|ռ,military|,@defend| +ͤ N facilities|ʩ,space|ռ,police|,@defend| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ +λ N location|λ,space|ռ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N place|ط,city|,ProperName|ר,(China|й) +۰ N place|ط,city|,ProperName|ר,(China|й) +۰̨ N place|ط,city|,ProperName|ר,(China|й) +۱ N money|,(HK|) +ۿ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,(HK|) + N human|,commercial|,(HK|) +̨ N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,#occupation|ְλ,official| + N institution|,#ship| +Ԫ N money|,(HK|) + N fund|ʽ,(HK|) + N waters|ˮ,linear| + V remove| + N symbol|,linear| + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| +ܰ N tool|þ,*CarryOnBack|,long| +ܸ N tool|þ,widediameter|,straight|ֱ,long| + N SportTool|˶ + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| + N character|,surname|,human|,ProperName|ר + N land|½,#waters|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N character|,surname|,human|,ProperName|ר + V surpass|ǿ +߰ V CausePartMove| +߰ ADJ aValue|ֵ,SoundVolume|,loud| +߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +߰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +߱ ADJ aValue|ֵ,SoundQuality|,accurate|׼ +߱ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +߲ N human|,*study|ѧ,able| +߲ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,ability|,able|,$create|,many| +߲ N land|½,able|,@create|,many|,#crop|ׯ,desired| +߳ V sing| +߳ V speak|˵ +߳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +߳ N part|,%event|¼ +߳ N water|ˮ +߳ɱ ADJ aValue|ֵ,property|,expensive| +ߴ N location|λ,tall| +ߴ ADJ aValue|ֵ,content|,pure| +ߴ V AmountTo|ܼ +ߴ ADJ aValue|ֵ,height|߶,tall| +ߴ ADJ aValue|ֵ,size|ߴ,big| +ߵ ADJ aValue|ֵ,property| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵ ADJ aValue|ֵ,rank|ȼ,superior| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵȼ ADJ aValue|ֵ,rank|ȼ,superior| +ߵѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +ߵ N attribute|,behavior|ֹ,proper|,&event|¼ +ߵ N attribute|,height|߶,&physical| +ߵ N attribute|,rank|ȼ,&event|¼ +ߵ ADV {emphasis|ǿ} +ߵͲƽ ADJ aValue|ֵ,form|״,rugged| +ߵ͸ N SportTool|˶,sport| +ߵ N land|½ +ߵ ADJ aValue|ֵ,SoundVolume|,loud| +ߵ ADJ text|,empty| +߶ ADJ aValue|ֵ,degree|̶,very| +߶ N attribute|,height|߶,&physical| +߶ ADJ qValue|ֵ,amount|,many| +߶ N fact|,sport| +߶ N SportTool|˶ +߷ N institution|,police|,@judge|ö +߷ֱ N attribute|,performance|,strong|ǿ,&distinguish|ֱ +߷ N attribute|,circumstances|,flourishing|,extreme|,&event|¼ +߷ N part|,space|ռ,%land|½,head|ͷ +߷ N fact|,discuss|,HighRank|ߵ +߷ N aValue|ֵ,behavior|ֹ,true|,desired| +߸ N human|,official| +߸ ADJ aValue|ֵ,height|߶,tall| +߸ V joyful|ϲ +߸ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +߸ V sing| +߸ͽ V GoForward|ǰ +߸ N human|,tall| +߸ N tree|,?medicine|ҩ +߸Ь N clothing|,#foot| +߹ N human|,#occupation|ְλ,industrial| +߹ V estimate|,manner=over| +߹ N human|,official| +߹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ߺ ADJ aValue|ֵ,temperature|¶,cold| +ߺ V cry| +ߺ V cry| +߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߼ɲ N human|,official| +߼ʦ N human|,#occupation|ְλ,industrial| +߼ ADJ aValue|ֵ,rank|ȼ,superior| +߼ N human|,#occupation|ְλ,official|,military| +߼Ժ N institution|,police|,@judge|ö +߼Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +߼ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +߼ N knowledge|֪ʶ,superior| +߼ N place|ط,ProperName|ר,(Russia|˹) +߼ ADJ aValue|ֵ,price|۸,expensive| +߼ V buy|,cost=expensive| +߼ N facilities|ʩ,route|· +߼ N thought|ͷ +߽ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +߾ ADJ aValue|ֵ,quality|,refined|,desired| +߾ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߾ V engage|,content=occupation|ְλ +߾ V lift| +߿ ADJ aValue|ֵ,SoundVolume|,loud| +߿ V exam| +߿Ƽ N knowledge|֪ʶ,superior| +߿Ƽҵ N human|,#occupation|ְλ,#knowledge|֪ʶ,superior|,commercial| +߿ ADJ aValue|ֵ,location|λ,tall|,#sky| +߿ N sky| + N fact|,sport| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Korea|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,commercial|,$lend| + N human|,*lend|,undesired|ݬ + N crop|ׯ + N attribute|,age|,aged|,&human| + N stone|ʯ,material| +¥ N house|,tall| +¥ N house| +¯ N tool|þ,space|ռ,@burn|,*produce|,#metal| + ADJ aValue|ֵ,age|,aged| + N chemical|ѧ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,strength|,strong|ǿ,&physical| + N knowledge|֪ʶ,#strength| +꼶 N human|,*study|ѧ,education| +Ƶ N attribute|,frequency|Ƶ,fast|,&electricity| +ǿ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| + N human|,superior|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ɮ N human|,able|,desired|,religion|ڽ +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ +ɽ N land|½ +ɽӦ N disease| +ɽ N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N disease|,#fever| +ǹ N weapon|,*firing|,#aircraft| + N weapon|,*firing|,#aircraft| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,loud| + V upgrade| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V walk| + V walk|,manner=arrogant| + N human|,able|,desired| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ,manner=tall| + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٶ ADJ aValue|ֵ,speed|ٶ,fast|,desired| +ٶ N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٹ· N facilities|ʩ,route|·,@AlterLocation|ռλ,fast| +̧ V WellTreat|ƴ +̸ V speak|˵ +̸ V speak|˵,content=empty| + N food|ʳƷ,liquid|Һ,refined| + N food|ʳƷ,liquid|Һ,watery|ϡ +Σ ADJ aValue|ֵ,property|,AptTo|,$CauseAffect|Ⱦ,#medical|ҽ +ΣȺ N human|,*AptTo|,#CauseAffect|Ⱦ,#medical|ҽ +λ N attribute|,occupation|ְλ,HighRank|ߵ,&human| + N attribute|,temperature|¶,hot|,&physical| +¼ N tool|þ,*measure|,#temperature|¶ + N weather|,#temperature|¶,#hot| +ݽ ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,rank|ȼ,&event|¼ +С N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +У N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +Ч N attribute|,effect|Ч,superior|,&performance| +н N payment|,many| +¼ N knowledge|֪ʶ,superior| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V willing|Ը + N place|ط,city|,ProperName|ר,(China|й) +Ѫѹ N disease| +ѹ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ѹ ADJ aValue|ֵ,performance| +ѹ N attribute|,voltage|ѹ,&electricity| +ѹ N electricity| +ѹ N tool|þ,cubic|,*cook| +ѹ N tool|þ,linear|,@transmit|,#electricity| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ż ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N attribute|,SoundVolume|,loud|,&sound| + ADJ aValue|ֵ,height|߶,tall|,more| +ԭ N land|½ +հԶ ADJ aValue|ֵ,ability|,able|,desired| + V BecomeMore| + V rise| + N thought|ͷ,clever| + V AtEase| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N InstitutePlace|,@teach|,@study|ѧ,education| + N human|,*study|ѧ,education| + N human|,*study|ѧ + N human|,*study|ѧ,able| + N human|,past| + N tool|þ,*WhileAway| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh| + N shape| + N tool|þ,*apply|ͿĨ,#medical|ҽ + N food|ʳƷ,refined| +ҩ N medicine|ҩ,$apply|ͿĨ + ADJ aValue|ֵ,quality|,fertile|,desired| + N livestock|,young| + N livestock|,young| + N livestock| + N livestock|,young| + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ,*feed|ι,#young| + V CauseToDo|ʹ + V do| + V engage| + V establish| + V fulfil|ʵ + V produce| + V seek|ıȡ + V fulfil|ʵ + V misunderstand| +㶨 V handle|,result=finish| + V deceive|ƭ + V do|,result=finish| +ҳʽͳε N human|,*manage| + V damage| + V damage| + V TryToKnow|Ū + V TryToKnow|Ū + V TryToKnow|Ū +С V MakeTrouble| + V damage| + V damage| + N tool|þ,*beat| +ͷ N tool|þ,*beat| + N part|,%plant|ֲ,body| + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + N payment|,#readings| + N payment|,#readings| + N tool|þ,@LieDown| + N readings|,#text|,#image|ͼ,#music| +ֽ N paper|ֽ,@write|д + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + V accuse|ظ + V announce| + V beg| + V request|Ҫ + V tell| + V farewell| +˵ N human|,*speak|˵ +洵 V fail|ʧ + V farewell| + V request|Ҫ,ResultEvent=borrow|,commercial| +淢 V accuse|ظ,police| +漱 V request|Ҫ,ResultEvent=rescue| +漱 V tell|,content=dangerous|Σ +漱 V unfortunate| + V request|Ҫ,ResultEvent=agree|ͬ + V win|ʤ + V persuade|Ȱ˵ +澯 V tell|,content=dangerous|Σ +濢 V succeed|ɹ + V cease|ͣ,cause=aged| + V accuse|ظ + V surrender| +ʾ V tell| +ʾ N text|,@tell| + V tell| + V withdraw|˳ +ο V AtEase| +ο V soothe|ο +һ V finish| +֪ V mean|ָ +֪ V tell| + V finish| +״ V accuse|ظ,police| + V disappear|ʧ + N human|,family|,male| +籾 N place|ط,capital|,ProperName|ר,(Denmark|) +± N place|ط,city|,ProperName|ר,(Sweden|) + N human|,family|,mass|,male| + N human|,male|,young| + N human|,friend|,mass|,male| + N human|,family|,male| +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Colombia|ױ) +ױ N place|ط,country|,ProperName|ר +ױ N human|,(Colombia|ױ) +ײ N human|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Costa Rican|˹) +˹ N place|ط,country|,ProperName|ר + N music|,$sing| + V sing| +質 V sing| +質 N human|,*sing|,#music|,entertainment| + N text|,#music| +蹦̵ V praise|佱,cause=succeed|ɹ + N attribute|,SoundQuality|,#sing|,&human| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| +Ժ N InstitutePlace|,@perform|,entertainment| + N human|,*FondOf|ϲ,#music| + N music| + N sound|,#music|,$sing| + N human|,entertainment|,*sing|,#music| + V praise|佱 +̳ N community|,#music|,#sing| + N InstitutePlace|,@recreation|,@sing| + V recreation| + N shows|,#music|,entertainment| + N community|,#music|,#sing|,entertainment| + N human|,*sing|,able|,entertainment| +ҥ N shows| +ӽ V recreation| + V cease|ͣ + V endure| + V put| +dz V bump|ײ,patient=land|½ +dz V suffer|,content=obstruct|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + N land|½,surfacial| + N place|ط,ProperName|ר +̲ N place|ط,ProperName|ר,(China|й) + N bird| + N bird| + N part|,%AnimalHuman|,arm| +첲 N part|,%AnimalHuman|,arm| + N disease|,#skin|Ƥ + N experience|,#uneasy|,undesired|ݬ + N shape| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ + V abandon| + V break|۶,patient=FlowerGrass| + V remove| + V remove|,medical|ҽ + V give|,possession=land|½,politics| + V break|۶ + V manage|,patient=land|½,instrument=army| + V separate| + V give| + V abandon| + N image|ͼ,linear| + V discharge| + N material|,?clothing|,?tool|þ + V discharge| + V remove| + N clothing|,#foot| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V uprise|,politics| + N human|,*uprise|,politics| + ADJ aValue|ֵ,newness|¾,new|,desired| + V improve| + N human|,*improve| +ְ V discharge| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N material|,?clothing|,?tool|þ + N shape|,square| + N money|,(Guatemala|Σ) + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&information|Ϣ,literature|,entertainment| + V fight| + V FitNot| + N attribute|,pattern|ʽ,&entity|ʵ +ɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Grenada|ɴ) +ɴ N place|ط,country|,ProperName|ר +ɴ N human|,(Grenada|ɴ) +ʿʱ N time|ʱ,#standard|׼ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greenland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Georgia|³) +³ N place|ط,country|,ProperName|ר +³ N human|,(Georgia|³) +³ N language|,#country|,ProperName|ר +ɱ V kill|ɱ,AccordingTo=law|ɷ +ʽ N attribute|,pattern|ʽ,&entity|ʵ +ʽ V PutInOrder| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,very| + N expression| + N shape|,square| + N material|,?clothing| + N fish| + N beast| + N fish| + N fish| + N facilities|ʩ,space|ռ + N institution|,official|,#country| + N human|,#occupation|ְλ,official|,#country|,politics| +¥ N room| + N human|,official| +Ա N human|,#occupation|ְλ,official|,#country|,politics| + V from| + V separate| + N part|,%building|,skin|Ƥ + N location|λ,#reside|ס,near| + V BlockUp| + N part|,%building|,skin|Ƥ + V separate| + N attribute|,relatedness|,unfamiliar|϶ + N phenomena|,#obstruct|ֹ + V separate| + V separate| + V separate| +Ĥ N attribute|,relatedness|,unfamiliar|϶ +Ĥ V ignorant|֪ +ǽ N part|,%building|,skin|Ƥ +ǽж V exposure|¶ + N separate|,partner=hot| + ADV time|ʱ,future|,day| + ADV time|ʱ,other|,day| + N part|,%building|,skin|Ƥ +ѥɦ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ҹ ADV time|ʱ,past| + ADJ aValue|ֵ,ability|,able|,$escape|,#sound| + ADJ aValue|ֵ,ability|,able|,BlockUp|,#sound| + N chemical|ѧ + CLAS NounUnit|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,fragment| + N attribute|,height|߶,&human| + N attribute|,size|ߴ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,attachment|,private|˽ + N human| + PRON human|,firstPerson| + N attribute|,cleanness|ྻ,spotless|,&human| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N thinking|˼,#greedy|̰,undesired|ݬ + N human|,greedy|̰,undesired|ݬ + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,attachment|,private|˽ +廧 N institution|,private|˽ + N system|ƶ,#rights|Ȩ,#own|,private|˽ +ͷ N attribute|,height|߶,&human| +ͷ N attribute|,size|ߴ,&physical| + N attribute|,property|,special|,&entity|ʵ +ر N human|,special| + N attribute|,height|߶,&human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| +ǰ V BeIndependent| + ADJ aValue|ֵ,kind|,queer| +ּ V BeIndependent| + N part|,army|,#place|ط,military|,mass| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N place|ط,all|ȫ + N part|,%entity|ʵ,aspect|,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,rank|ȼ,all|ȫ + N community|,all|ȫ + V endeavour| +͸λ V arrive|,location=location|λ +ȡ V obtain|õ +ɫ ADJ aValue|ֵ,kind|,many| +ɫ ADJ aValue|ֵ,kind|,many|,desired| +ʽ ADV aValue|ֵ,kind|,many| +ʽ ADJ aValue|ֵ,kind|,many| +㼺 V announce|,content=standpoint| +˾ְ V bear|е +λ N human|,all|ȫ +λ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V show|,content=ability| + ADJ qValue|ֵ,amount|,all|ȫ +иҵ ADJ affairs|,many| + V BeIndependent| + V differ|ͬ +ǧ V own|,possession=pros| + V own|,possession=pros| +ִһ V debate| + ADJ aValue|ֵ,kind|,many| +ָ ADJ aValue|ֵ,kind|,many| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,single| +Ϊ V BeIndependent| + N community|,all|ȫ + V CauseToDo|ʹ + V give| + V provide| + PREP {agent} + PREP {beneficiary} + PREP {instrument} + PREP {target} + V display|չʾ + N edible|ʳ,generic|ͳ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V give| + V give| + CLAS NounUnit|,&inanimate| + N cause|ԭ + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,%plant|ֲ,base| + N part|,%thing|,base| + ADJ aValue|ֵ,importance|,important| + N law|ɷ,important| + N part|,%inanimate|,base| + V remove| + N tool|þ,$carve| + N part|,%thing|,base| + N part|,%plant|ֲ,body| + V investigate| + N information|Ϣ + PREP {AccordingTo} +ݵ N place|ط,important| + N human|,future| + N part|,%plant|ֲ,body| + N part|,%thing|,base| +ٹ ADJ aValue|ֵ,circumstances|,steady| +Ҷï ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N cause|ԭ +Դ N location|λ,@ExistAppear| +Դ V BaseOn| +Դ V ResultFrom|Ե + V cure|ҽ + N part|,%plant|ֲ,base| + N part|,%thing|,base| + V follow| + N part|,%AnimalHuman|,leg| +...ȥ V MakeTrouble| + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V follow| +ǰ ADJ aValue|ֵ,distance|,near| + V chase|׷ + V follow| +ͷ N fact|,FallDown| +ͷ N InsectWorm|,undesired|ݬ + V follow| + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N land|½,#crop|ׯ + N tool|þ,*planting|ֲ,#crop|ׯ,generic|ͳ +ţ N livestock|,*planting|ֲ + V engage|,agricultural|ũ + N livestock|,*planting|ֲ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V engage|,agricultural|ũ +ƶ N system|ƶ,#engage|,agricultural|ũ + ADV aValue|ֵ,degree|̶,more| + V alter|ı + V replace| + N time|ʱ,hour|ʱ + V replace| + V alter|ı + N human|,#occupation|ְλ,*defend| + V alter|ı + N human|,*alter|ı + V replace| + ADV aValue|ֵ,degree|̶,more| +һ V GoForward|ǰ +һ ADV aValue|ֵ,degree|̶,more| + N disease| +һ¥ V prosper| + ADJ qValue|ֵ,amount|,few| + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| + V replace| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V improve| + V replace| +» V prosper|,StateFin=superior| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V amend| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,liquid|Һ + V beat| + N tool|þ,*beat| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N land|½,protruding|͹ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ڻ V FeelingByBad| +ֱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V BlockUp| + V CausePartMove| + N part|,%inanimate|,body| + N part|,%plant|ֲ,body| + N part|,%information|Ϣ,heart| + V BlockUp| + N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V BlockUp| + V obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,desired| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N method|,#industrial| + CLAS unit|λ + N expenditure|,commercial| + V draw|,literature| + N human|,#occupation|ְλ,military| + N army| + N house|,industrial|,@produce|,factory|,#InstitutePlace| + N human|,#occupation|ְλ,official|,*manage|,factory| + N InstitutePlace|,@produce|,industrial| + N affairs| + N affairs|,industrial| +̱ N human|,military| +ʦ N human|,#occupation|ְλ,industrial| +ϵ N part|,%InstitutePlace|,education| +ѧ N knowledge|֪ʶ,#industrial| + N community|,ProperName|ר + N place|ط,@build| + N part|,%InstitutePlace|,industrial| +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + CLAS NounUnit|,quantity|,#industrial| + N InsectWorm| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N time|ʱ + N community|,#employee|Ա + N part|,%artifact|˹,#produce|,industrial| + N human|,#occupation|ְλ,industrial| + N affairs|,#industrial|,#transport| + N implement|,generic|ͳ + N tool|þ,cubic|,@put|,#implement| + N knowledge|֪ʶ,#industrial| + N affairs|,#mine|,#industrial| +ҵ N InstitutePlace|,#mine|,#industrial| + N place|ط,#mine|,#industrial| + N attribute|,ability|,&human| + N physical|,#human|,#material|,industrial| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա +ó N affairs|,#industrial|,#commercial| +ũ N human|,#industrial|,#agricultural|ũ +ũ N human|,mass| +ũҵ N affairs|,#industrial|,#agricultural|ũ + N house|,#build|,#industrial| + N attribute|,boundary|,&time|ʱ,#industrial| +Ǯ N payment| + ADJ aValue|ֵ,quality|,refined|,desired| + N place|ط,#city|,#industrial| + N human|,#occupation|ְλ,industrial| +˽׼ N community|,industrial| +˶ N affairs|,#employee|Ա,industrial| + N disease|,#wounded|,#industrial| +¹ N phenomena|,unfortunate|,#industrial|,undesired|ݬ + N community|,industrial|,commercial| +̽ N community|,industrial|,commercial| + N community|,industrial|,commercial|,ProperName|ר,(China|й) +ҵ N affairs|,industrial|,commercial| +ʱ CLAS NounUnit|,quantity|,#industrial| + N facilities|ʩ,#defend|,military| +ͷ N human|,#occupation|ְλ,official|,industrial| +Ч N attribute|,effect|Ч,&act|ж,industrial| +н N payment| + N plans|滮,industrial| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N affairs|,industrial| +ҵ V ize|̬,PatientAttribute=industrial|,industrial| +ҵƷ N artifact|˹,#industrial| + N InsectWorm| + N method| + N process| + N knowledge|֪ʶ,entertainment| +Ʒ N artifact|˹,literature| + N human|,industrial| + N affairs|,#employee|Ա,industrial| + ADJ aValue|ֵ,posture|,neat|,desired| + N attribute|,kind|,industrial|,&affairs| +װ N clothing|,#industrial| +װ N clothing|,#leg|,#industrial| + N payment| + N affairs|,$undertake| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + V do| + N fact|,do| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N house|,industrial|,@produce| + N human|,active|Ը,endeavour| + N quantity|,amount|,&affairs| + N location|λ,space|ռ,#facilities|ʩ,mine| + N part|,%artifact|˹,skin|Ƥ,#produce| + N time|ʱ,day|,@do|,@engage|,#affairs| + N room|,#affairs|,@do|,@engage| +̨ N furniture|Ҿ,@do|,industrial| +վ N computer| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| +Ե V occupy|ռ,possession=land|½,military| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| + V handle|,patient=problem|,important| + V accuse|ظ + V attack|,military| + V slander|̰ + V attack|,patient=facilities|ʩ,military| +ս N fact|,fight|,military| + V occupy|ռ,military| + V attack| +䲻 V attack|,manner=sudden|,military| +ȡ V occupy|ռ,military| + V occupy|ռ + ADJ fact|,attack|,military| + N fact|,attack|,defend| +޲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + V occupy|ռ,military| + V occupy|ռ,military| + V attack|,#mental| +ռ V occupy|ռ,military| + N method|,#industrial| + N result|,#succeed|ɹ,desired| +ܴ V fail|ʧ +û ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N human|,glorious|,superior|,*succeed|ɹ,desired| + V succeed|ɹ + N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N attribute|,ability|,&human| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N fact|,exercise| + N time|ʱ + N result|,#succeed|ɹ,#fail|ʧ + N result|,#succeed|ɹ,desired| + N affairs|,#study|ѧ,education| + N part|,%knowledge|֪ʶ,education| +һ V fail|ʧ + N result|,#succeed|ɹ,desired| + N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,behavior|ֹ + N thinking|˼,behavior|ֹ + N attribute|,ability|,&human| + N attribute|,effect|Ч,&act|ж + N attribute|,PhysicsPower|,&physical| + N attribute|,reputation|,&human| + N attribute|,performance|,&entity|ʵ +Լ N disease| +Ч N attribute|,effect|Ч,&event|¼ +ѫ N result|,#succeed|ɹ,desired| +ҵ N result|,#succeed|ɹ,desired| + N attribute|,performance|,&entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V congratulate|ף + V wait|ȴ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V invite| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ͱ N tool|þ,cubic|,@put|,#waste| +ά V please|ȡ +ά V praise|佱 +ϲ V congratulate|ף + N character|,surname|,human|,ProperName|ר + V admit| + V foster| + N inanimate|,generic|ͳ,*provide| + V provide| + N text|,*admit|,#crime|,#police| +Ӧ V lack|ȱ,commercial| + V provide|,possession=electricity| + V salute|¾ + V provide| + N human|,*provide| + V surpass|ǿ,experiencer=provide|,contrast=need| + V provide|,possession=inanimate|,commercial| +ů V provide|,possession=warm| +Ʒ N tool|þ,*salute|¾,#religion|ڽ,generic|ͳ + V provide|,possession=sit| + V provide|,possession=gas| + N phenomena|,#provide|,#need| + V provide|,possession=hot| + V admit| +ϲ V admit| + V admit| +ˮ V provide|,possession=water|ˮ + V sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N phenomena|,#provide|,#need| + V provide|,possession=gas| + V ProvideFor| +Ӧ V provide| +Ӧ N human|,*provide| +ְ V undertake|,content=occupation|ְλ + N furniture|Ҿ,space|ռ,*salute|¾,#religion|ڽ + V CausePartMove|,PatientPartof=body| + ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N affairs|,#official| + N affairs|,public| + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N affairs|,police| + N institution|,#police|,ProperName|ר,politics| +ɾ N human|,#occupation|ְλ,police| + N institution|,police| + N institution|,police| + N fact|,police| + N document| + N publications|鿯,news| + V announce| + N room|,@excrete|й + N affairs|,public| + N attribute|,boundary|,&quantity| + N human|,employee|Ա,public| + N LandVehicle| + CLAS unit|λ,&length| + V SelfMove|,#affairs|,#dispatch|Dz + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + N attribute|,behavior|ֹ,&human| + N human|,enemy|,public| + CLAS unit|λ,&weight| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N law|ɷ + N house|,public| + N expenditure|,public| + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + N affairs|,public| + N text|,official| + N human|,family|,male| + ADJ aValue|ֵ,attachment|,public| +ij˿ N human|,*TakeVehicle| + N LandVehicle| + N attribute|,cleanness|ྻ,spotless|,&space|ռ + N attribute|,relatedness|,public|,&human|,&organization|֯ +ز N institution|,*handle|,#relatedness| + N house|,#official| + N waters|ˮ + N phenomena|,undesired|ݬ,#pollute|ʹ + N letter|ż,#official| + N community|,commercial| + N fund|ʽ + N bird| + V salute|¾ + N attribute|,attachment|,public| +취 N institution|,police| + N affairs|,public|,#transport| + CLAS unit|λ,&weight| + N human|,royal| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V announce| + N fact|,compete|,sport| + N attribute|,behavior|ֹ,opened|,&event|¼ + N fund|ʽ,public| + N reason|,upright| + CLAS unit|λ,&length| + N law|ɷ,#time|ʱ + N regulation|,ordinary| + ADJ aValue|ֵ,attachment|,public| + N food|ʳƷ,$levy| + N material|,$levy|,#crop|ׯ + N character|,surname|,human|,ProperName|ר + V handle|,police| +· N facilities|ʩ,route|· + N thought|ͷ + N human|,#country| +Ȩ N rights|Ȩ,#human|,country| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ţ N livestock| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N human|,family|,mass| + N human|,official| + CLAS unit|λ,&area| +Ȼ ADV aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + V admit| + N institution| + V judge|ö,police| + CLAS unit|λ,&volume|ݻ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʽ N symbol| +ʽ V ize|̬,PatientAttribute=boring| +ʽ N human| + N affairs|,#official| + N affairs|,public| + N institution|,politics| +˽ ADJ aValue|ֵ,attachment|,public|,private|˽ +˽Ӫ N system|ƶ,#rights|Ȩ,#own|,public|,private|˽ +˾ N InstitutePlace|,commercial| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + N character|,surname|,human|,ProperName|ר + N institution|,space|ռ,police|,#crime|,@judge|ö + V recommend|Ƽ + N document|,official| +İ N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#document|,official| + N inanimate|,public| + N affairs|,#official| + N affairs|,public| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա,#institution|,#country| + N character|,surname|,human|,ProperName|ר + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N livestock|,male| + V perform|,entertainment| + N character|,surname|,human|,ProperName|ר +ұ N character|,surname|,human|,ProperName|ר + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N fund|ʽ,public| + ADJ aValue|ֵ,property|,help| + V discuss| +Ӫ ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,attachment|,public| +õ绰 N facilities|ʩ,*communicate| +ҵ N affairs|,public| + ADJ aValue|ֵ,attachment|,public| + N system|ƶ,#attachment|,public| +Ԣ N house| +Ԫ N time|ʱ,ProperName|ר +Ԫǰ N time|ʱ,ProperName|ר,past| +԰ N facilities|ʩ,space|ռ,public|,@WhileAway| +Լ N agreement|Լ +Լ N text|,$obey|ѭ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ծ N wealth|Ǯ,$owe|Ƿ,$return| + N stationery|ľ,*print|ӡˢ,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +֤ N document|,police| +֤ V prove|֤,police| +֤ N human|,*prove|֤,police| +֮ V announce| +ְ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + ADJ aValue|ֵ,standard|׼ + N human|,mass| + N human|,royal|,female|Ů + N human|,male|,royal| +Ӹ N human|,male|,flighty|,undesired|ݬ + N InstitutePlace|,space|ռ,@WhileAway|,entertainment| + N character|,surname|,human|,ProperName|ר + N house| + N house|,royal| + N part|,%AnimalHuman|,viscera| + N tool|þ,*illuminate| + N house|,royal| + N part|,%AnimalHuman|,viscera| +Ů N human|,employee|Ա,female|Ů,#royal| +͢ N house|,royal| +͢ N institution|,space|ռ,royal| + N house|,royal| + N house|,royal| + V CausePartMove|,PatientPartof=body| + N character|,surname|,human|,ProperName|ר + N shape| + N tool|þ,*measure| + N weapon|,*firing| + ADJ aValue|ֵ,form|״,curved| + V MakeBetter|Ż + N character|,surname|,human|,ProperName|ר + V MakeBetter|Ż + ADJ aValue|ֵ,circumstances|,steady|,desired| + N chemical|ѧ + N medicine|ҩ,liquid|Һ,*apply|ͿĨ + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V GoThrough| + ADJ aValue|ֵ,form|״,protruding|͹,curved| + V push| + V surround|Χ + V surround|Χ + N part|,%building|,mouth| + N facilities|ʩ,route|·,#waters|ˮ + V salute|¾ + V protect| + ADJ aValue|ֵ,form|״,protruding|͹,curved| +״ ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + N tool|þ,*salute|¾,generic|ͳ +Ʒ N tool|þ,*salute|¾,generic|ͳ + V donate| + N result|,desired|,$donate| + N human|,*donate| + V AmountTo|ܼ + ADJ aValue|ֵ,attachment|,public| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADV aValue|ֵ,range|,all|ȫ + N community|,ProperName|ר + V undergo| + N community|,politics| + N human|,#community|,politics| +Ա N human|,#community|,politics| + N community|,politics| + N human| + V exist| + V create|,together|ͬ + V exist| + V pass|ȹ,together|ͬ + N human|,*engage|,together|ͬ,undesired|ݬ,crime| +͵ N community|,politics|,ProperName|ר,(US|) +͵ N human|,politics| +͹ N place|ط,#human|,country|,politics| + V AmountTo|ܼ + ADJ aValue|ֵ,importance|,main| + V build|,together|ͬ + N phenomena|,#sound| + V respond|Ӧ,alike| + N community|,politics| +Ա N human|,#community| + N phenomena|,#alive| +ʶ N thought|ͷ,alike| + V cooperate| +ͬ ADJ aValue|ֵ,attachment|,public| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ N attribute|,similarity|ͬ,alike|,&thing| +ͬŬ N cooperate|,manner=together|ͬ +ͬ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬ N community|,politics| +ͬͨѶ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬͶ N fact|,provide|,#fund|ʽ,together|ͬ,commercial| +ͬԸ N aspiration|Ը,expect|,together|ͬ +֮ͬ N attribute|,similarity|ͬ,alike|,&thing| + V undergo|,manner=together|ͬ + N attribute|,similarity|ͬ,alike|,&thing| + N talk|̸,content=emotion| + ADJ aValue|ֵ,attachment|,public| + N phenomena|,#shiver| + ADV aValue|ֵ,range|,all|ȫ + V *detain|ס + V fasten|˩ + N symbol| + N tool|þ,*catch|׽ס,curved| + V weave| + V write|д + N FlowerGrass|,?medicine|ҩ +Ķ V fight| + N tool|þ,*weave| +ס V *detain|ס,Vachieve| +״ ADJ aValue|ֵ,form|״,curved| + N tool|þ,*catch|׽ס,curved| + V ResultIn| + N character|,surname|,human|,ProperName|ר + V collude| + V draw| + V remove| + V collude| + V entice| + N affairs| + N image|ͼ,space|ռ + V describe|д + V draw| + V collude| + V describe|д + V draw| + V stay|ͣ + V ResultIn| +ͨ V collude| + V remove| + V entice| + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,military|,@hide|,#fight| + N part|,%land|½,linear| + N part|,%land|½,linear|,#water|ˮ + N shape|,linear|,dented| + V irrigate|,agricultural|ũ + N facilities|ʩ,#liquid|Һ,linear| +ͨ V communicate| +ͨ V connect| + N part|,%land|½,linear|,#water|ˮ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V slack|͵ + V mating|,undesired|ݬ + V slack|͵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V slack|͵ +͵ V slack|͵ +͵ V slack|͵ +ȫ V surrender| +ȫ V surrender| +Ӳд V CauseToLive|ʹ,manner=hardship| + N livestock| +ͷʦ N human|,*help|,undesired|ݬ + N human|,*help|,undesired|ݬ +β N FlowerGrass| +β V FitNot| + N beast| + N human|,timid|,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ,*fly| + V use|,patient=power|,purpose=damage| + N beast| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N phenomena|,disgraced|,#shy|,undesired|ݬ + N stone|ʯ,waste| + V build| + V forming|γ + V produce| + V forming|γ + N part|,%building|,generic|ͳ + N part|,%implement|,generic|ͳ + V establish| + N part|,%implement|,generic|ͳ +˼ N thinking|˼ +ͼ V forming|γ,PatientProduct=image|ͼ + V slander|̰ + N thought|ͷ + V forming|γ + N part|,%thing|,bone| + N {DeChinese|} + V build| + N facilities|ʩ + V buy|,commercial| + V buy|,commercial| + V buy|,possession=artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V buy|,commercial| + V buy|,commercial| + N attribute|,ability|,buy|,&human|,&organization|֯ +Ʊ V buy|,possession=coupon|Ʊ֤ + V buy|,commercial| + V buy|,possession=artifact|˹ + N InstitutePlace|,*sell|,@buy|,commercial| + V AlterPossession|,sell|,buy| + V prosper|,scope=AlterPossession| + V buy|,commercial| + V arrive| + V fit|ʺ + ADJ qValue|ֵ,amount|,many|,desired| + V earn|׬,possession=wealth|Ǯ + V arrive|,Vachieve| +Ƕ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,standard|׼,average|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ƶ ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many|,desired| +ˮƽ ADJ aValue|ֵ,standard|׼,average|,desired| +ζ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| + N fact|,crime|,undesired|ݬ + V disappoint| + N AlgaeFungi|ֲ,$eat| + V MakeSound| + V crawl| + V MakeSound| + V speak|˵ + V cook| + V MakeSound| + V speak|˵ + V tighten|ս + V estimate| + V estimate| + V estimate| +Ʋ V despise| +Ʋ V estimate|,manner=insufficiently|Ƿ + N human|,*estimate| + V estimate| + V estimate|,commercial| + N human|,*estimate|,#value|ֵ + V estimate| + V guess|² + V estimate| + V buy|,commercial| + V sell|,commercial| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ N land|½ +¶ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¶ N human|,family|,undesired|ݬ +¶ĸ N human|,female|Ů,#young| +¶Ժ N InstitutePlace| +¹ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¹ N human|,female|Ů,#young| +¹ N human|,aged|,lonely| +¼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¼ҹ N human|,single|,undesired|ݬ +¾ N army|,lonely|,undesired|ݬ,military| + N human|,aged|,lonely| + N aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V separate| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +һ ADJ qValue|ֵ,amount|,single| +עһ V venture|ð + N human|,family|,female|Ů + N human|,religion|ڽ,female|Ů +ø N human|,family|,male| +ù N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + ADV {concession|ò} +֮ V speak|˵ +Ϣ V indulge| +Ϣ V indulge| +ү N human|,family|,male| + V FormChange|α,StateFin=protruding|͹ + V MakeSound| + N MusicTool| + V beat| + V mobilize| + V send| +İ N MusicTool| +Ĵ V PlayUp|Ĵ +Ĵ V disseminate| +Ĵ N human|,*PlayUp|Ĵ +ĵ V PlayWith|Ū +ĵ V incite|ָʹ +Ķ V incite|ָʹ +Ķ V mobilize| +ķ N machine|,*exhale|,#wind| +Ļ V entice| +ľ V urge|ʹ + N music| + V urge|ʹ +¥ N house| +Ĥ N part|,%AnimalHuman|,*listen| +Ū V PlayWith|Ū + V mobilize| + V take|ȡ,possession=courage| + V speak|˵,content=empty| + N part|,%AnimalHuman|,*listen| + N human|,*perform|,entertainment| + V urge|ʹ + V cry| + V beat|,patient=hand| + V welcome|ӭ + V endeavour| +ɾ V endeavour| + V take|ȡ,possession=courage| + N MusicTool| + ADJ aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Cuba|Ű) +Ű ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cuba|Ű) +Ű N place|ط,country|,ProperName|ר +Ű N human|,(Cuba|Ű) +ű N building|,past| +ų N place|ط,city|,past| +Ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŵ N time|ʱ,past| +ŵ N money|,(Haiti|) +ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŷ N artifact|˹,generic|ͳ,past|,precious| +Ŷ N human|,undesired|ݬ,stubborn| +Ŷ N place|ط,capital|,past| +ŷ N attribute|,habit|ϰ,past|,&human|,&organization|֯ +Ź ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ź ADJ aValue|ֵ,kind|,queer| +Ź ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Źֵ N human|,eccentric|Ƨ,undesired|ݬ +Ź N place|ط,country|,past| +Ż N text|,past| +ż N place|ط,#fact|,#time|ʱ +ż N language|,#country|,ProperName|ר +ż N publications|鿯,past| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +ž ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ſ N crop|ׯ,?medicine|ҩ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N MusicTool| + N human|,past| +ɫ ADJ aValue|ֵ,style|,gracious| +ɲ N facilities|ʩ,space|ռ,past|,religion|ڽ +ʫ N text|,past| + N publications|鿯,past| + N artifact|˹,generic|ͳ,past|,precious| + ADJ aValue|ֵ,duration|,TimeLong| +Ϊ V use|,patient=past| + N text|,past| + N artifact|˹,generic|ͳ,past| +ϡ N attribute|,age|,aged|,&human| +ѵ N expression|,past| + N expression|,past| +װ N clothing|,#perform| + N MusicTool|,(China|й) +ƻ V entice| + N part|,%AnimalHuman|,bone| + N part|,%inanimate|,bone| + N part|,%thing|,bone| +Ǵ N disease|,#bone| +Ƕ N part|,%FlowerGrass|,embryo| +Ƿ N material|,*feed|ι,#crop|ׯ +Ǹ N human|,desired|,important|,able| +Ǹ N part|,%AnimalHuman|,bone| +Ǹ N part|,%AnimalHuman|,bone| +ǻ N stone|ʯ,waste| +ǻ N stone|ʯ,waste|,#die| +ǻҺ N tool|þ,cubic|,@put|,#stone|ʯ,#die| +Ǽ N part|,%inanimate|,body| +Ǽ N part|,%thing|,bone| +ǽ N material|,sticky|,*fix|ס,*fasten|˩ +ǽ N part|,%AnimalHuman|,bone| +ǿ N part|,%InstitutePlace|,#bone|,medical|ҽ + N material|,generic|ͳ +µ V roll| +Ĥ N part|,%AnimalHuman| + N tool|þ,*gamble|IJ + N part|,%human|,#bone| + N attribute|,will|־,&human| + N human|,family|,mass| + N part|,%AnimalHuman|,bone| + N disease|,#bone|,#inflamed| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N part|,%AnimalHuman|,bone| +ͷ N part|,%AnimalHuman|,bone| + N disease|,#bone|,$break|۶ + N part|,%artifact|˹,bone| + N location|λ,%bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,flesh| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N land|½,dented| +Ȱ N chemical|ѧ +Ȳ N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ +Ȳ N crop|ׯ,*feed|ι,#livestock| +ȵ N attribute|,circumstances|,wane|˥ +ȶ N InsectWorm|,*fly| + N crop|ׯ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N time|ʱ,day| + N material|,?food|ʳƷ,#crop|ׯ + CLAS NounUnit|,&gas| + CLAS NounUnit|,&linear| + N image|ͼ,linear| + N part|,%AnimalHuman|,leg| + N part|,%inanimate| + N part|,%organization|֯ + N wealth|Ǯ +ɱ N fund|ʽ +ɳ N human|,#occupation|ְλ,official| +ɶ N human|,*own|,#wealth|Ǯ,commercial| +ɷ N human|,undesired|ݬ,*rob|,crime| +ɷ N fund|ʽ +ɷ޹˾ N InstitutePlace|,commercial| +ɷ N system|ƶ,#fund|ʽ +ɷʱ N fund|ʽ +ɹ N part|,%AnimalHuman|,bone| +ɼ N attribute|,price|۸,&coupon|Ʊ֤ +ɽ N fund|ʽ + N wealth|Ǯ +Ʊ N coupon|Ʊ֤,#fund|ʽ +Ʊ N affairs|,commercial|,buy|,sell|,#fund|ʽ +Ʊ N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ +Ʊ N human|,#occupation|ְλ,commercial|,*buy|,*sell|,#fund|ʽ +Ʊг N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ + N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤,commercial| +Ϣ N wealth|Ǯ + N fund|ʽ + N human|,friend|,*help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + N cause|ԭ + N fact|,undesired|ݬ + N human|,friend| +ʲԷ V refuse|,content=MakeBetter|Ż +ʴ CONJ {EventResult|¼} +ʵ N place|ط,original|ԭ +ʶ CONJ {EventResult|¼} +ʹ N place|ط,ProperName|ר,(China|й) +ʹ N place|ط,@ComeToWorld| +ʼ V use|,patient=method|,manner=also|Ҳ +ʾ N human|,friend| +ʾ N house|,original|ԭ + N place|ط,@ComeToWorld| +Ū V deceive|ƭ +ȥ V die| + N human|,friend| + V die| + N fact| + N information|Ϣ,?publications|鿯,#news|,literature| +Ƭ N shows| +̬ V BeRecovered|ԭ,StateIni=used| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld| + N place|ط,ComeToWorld| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը +԰ N place|ط,@ComeToWorld| + N phenomena|,undesired|ݬ,#BeBad|˥ +̬ V pretend|װ,content=bearing|̬ + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V look| +˴ʧ V err| +˼ V PayAttention|ע +˼ V hesitate|ԥ +˼ V TakeCare|,patient=family| +˿ N human|,*buy|,#commercial| + V worried|ż + V worried|ż +˼ V mean|ָ + V look| +ǰ˺ V RashlyAct| +ȫ V PayAttention|ע +ȫ V PayAttention|ע,target=circumstances| + N human|,#occupation|ְλ,friend| +ϧ V PayAttention|ע + N human|,*buy|,#commercial| + ADJ aValue|ֵ,circumstances|,steady|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,will|־,strong|ǿ,desired| + V strengthen|ӹ +̲Է V refuse|,content=MakeBetter|Ż +̵ N chemical|ѧ +̶ V CauseToDo|ʹ,ResultEvent=fixed|Ѷ +̶ ADJ aValue|ֵ,behavior|ֹ,lasting| +̶ V fix|ס +̶ְҵ N affairs|,duty|,#occupation|ְλ,lasting| +̶ʲ N wealth|Ǯ +̻ V AlterForm|״,industrial| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,quality|,durable|,desired| +ɳ N tree| + V defend|,military| +̬ ADJ aValue|ֵ,PhysicState|״̬ +̬ N attribute|,PhysicState|״̬,&physical| + N physical|,generic|ͳ + ADJ aValue|ֵ,source|Դ,original|ԭ +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V believe|,content=thought|ͷ,manner=stubborn| +ִ N human|,stubborn|,undesired|ݬ + V employ| +͹ V employ|,patient=human| +͹ N human|,#occupation|ְλ,$employ| +ũ N human|,#occupation|ְλ,agricultural|ũ + V employ| +Ӷ V employ| +Ӷ N army| +ӶͶ N affairs|,$employ|,engage| + V employ| +Ա N human|,#occupation|ְλ,$employ| + N human|,*employ| + V WeatherBad| + V apply|ͿĨ + V cut| + V rob| +ε N tool|þ,*cut| +εƤ V rob| +η V WeatherBad|,#wind| +ι V cure|ҽ + V MakeUp|ױ +Ŀ࿴ V enjoy|,content=respect| + V cut| + V cure|ҽ + N fruit|ˮ +Ϸ V separate| +ϸ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +Ϲ N fruit|ˮ + N money|,(Paraguay|) + N language|,#country|,ProperName|ר +ũ N human|,*planting|ֲ,#occupation|ְλ,#fruit|ˮ,agricultural|ũ +Ƥñ N clothing|,#head|ͷ + V succeed|ɹ + N part|,%plant|ֲ,embryo|,agricultural|ũ +Ӷ N food|ʳƷ + V break|۶ + ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| +Ѳ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ѹ N human|,female|Ů +ʳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ͷ N human|,rich|,important|,desired| + V ThinkOf|˼ + V cease|ͣ,content=communicate| + V communicate|,instrument=tool|þ + V fasten|˩ + V hang| + V record|¼ + V suffer|,content=fasten|˩ + V undergo|,content=cover|ڸ +Ҳ V decorate|װ +Ҳ V wounded| +ҳ N LandVehicle| +ҳ V cease|ͣ,agricultural|ũ +ҵ绰 V associate|,instrument=tool|þ +Ҷϵ绰 V cease|ͣ,content=associate|,instrument=tool|þ +ҹ V associate| +ҹ V fasten|˩ +ҹ V GiveBirth|,PatientProduct=fruit|ˮ,agricultural|ũ +Һ V record|¼ +һ V wounded| +һ V ThinkOf|˼ +һ V worried|ż +һ V angry| +һ V cease|ͣ,content=communicate| +ҿ V associate| + N tool|þ,*show|,#time|ʱ + V cease|ͣ,agricultural|ũ + N food|ʳƷ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V ThinkOf|˼ + V cease|ͣ,content=compete|,sport| + N start|ʼ,commercial| +ʧ V tell|,content=lose|ʧȥ +˧ V undertake|,content=official| +̺ N tool|þ,$hang|,*decorate|װ,#room| +ͼ N image|ͼ,$hang|,*decorate|װ,#room| +ѥ V cease|ͣ,content=compete|,sport| + V OnCredit| + N tool|þ,*tell|,#time|ʱ + N clothing|,#body| + N clothing|,#body| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Թ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Թ N human|,young| +Ծ ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +Ծ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,behavior|ֹ,queer|,undesired|ݬ + V TakeAway|ᶯ,crime| + V TurnRound| + V cheat|ƭ + V disable|м,scope=walk| + N tool|þ,#walk|,#disable|м +չ N tool|þ,#walk|,#disable|м +ս N location|λ,space|ռ,angular|,@TurnRound| + V TakeAway|ᶯ,crime| +ƭ V TakeAway|ᶯ,crime| +ƭ V cheat|ƭ + V TurnRound| + N location|λ,space|ռ,angular|,@TurnRound| +Ĩ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ĩ V speak|˵,manner=hidden| + N tool|þ,#walk|,#disable|м + N human|,crime|,undesired|ݬ,*cheat|ƭ + N human|,undesired|ݬ,#disable|м,#leg| + ADV aValue|ֵ,degree|̶,ish| + ADJ aValue|ֵ,kind|,queer| + V blame|Թ + N humanized|,undesired|ݬ,*frighten|Ż,ugly| +ֲ V ^blame|Թ +ֲ CONJ {comment|} +ֵ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + N human|,special|,undesired|ݬ + N fact|,queer| +̥ N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N human|,undesired|ݬ,eccentric|Ƨ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ phenomena|,queer| + V blame|Թ + N tool|þ,cubic|,#die|,*store| +ײ N tool|þ,cubic|,#die|,*store| +ľ N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,#die|,*store| + V TurnOff|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + V detain|ס + V end|ս + N institution|,space|ռ,#levy|,#wealth|Ǯ,@check| + N part|,%place|ط,mouth| + N phenomena|,*obstruct|ֹ + V relate|й + V shut|ر + N time|ʱ,important| +ذ N part|,%place|ط,mouth| +ر V cease|ͣ +ر V end|ս +ر V shut|ر +ص V TurnOff|ֹ +ض N food|ʳƷ +غ V relate|й +ػ V PayAttention|ע +ػ V PayAttention|ע +ػ V TurnOff|ֹ +ؼ N part|,%entity|ʵ,heart| +ؼ N human|,important| +ؼ ADJ aValue|ֵ,importance|,important| +ؼ N symbol|,important| +ؽ N part|,%AnimalHuman|,bone| +ؽ N part|,%entity|ʵ +ؽ N part|,%entity|ʵ,heart| +ؽ N disease|,#inflamed| +ؿ N part|,%place|ط,mouth| +ؿ N part|,%place|ط,important|,#military| +ؿ N time|ʱ,important| + V relate|й +óЭ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) + V cease|ͣ,content=discuss| + V end|ս + V shut|ر,patient=mouth| + V PayAttention|ע +˰ N expenditure| +˰ N method|,*obstruct|ֹ,commercial| +˰ V obstruct|ֹ,scope=pay|,#expenditure| +˰ V exempt|,ResultEvent=pay|,#expenditure| +˰óЭ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ͣ V end|ս,commercial| +ͣת V alter|ı +ͷ N time|ʱ,important| +ϵ N attribute|,power|,&entity|ʵ +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N document|,*prove|֤,#organization|֯ +ϵ V influence|Ӱ +ϵ V relate|й +ϵ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N place|ط,#city| + V PayAttention|ע +ļ V PayAttention|ע,target=affairs| + V PayAttention|ע,target=organization|֯ +Ѻ V detain|ס,police| + PREP {concerning} +ڶ ADJ aValue|ֵ,measurement| + V end|ս + V PayAttention|ע + V tell| +ע V PayAttention|ע + ADJ aValue|ֵ,attachment|,public| + N human|,#occupation|ְλ,official| +ٰ ADJ aValue|ֵ,attachment|,#country| +ٱ V uprise| +ٱ N human|,military| +ٳ N community|,#official| +ٷ ADJ aValue|ֵ,attachment|,#country| +ٸ N institution|,official| +ٹ໤ V protect|,patient=official| +ټ N attribute|,behavior|ֹ,#official|,flighty|,undesired|ݬ,&human| + N human|,#occupation|ְλ,official| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N human|,official|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N phenomena|,#behavior|ֹ,indifferent|Į,undesired|ݬ + N affairs|,commercial|,#country| + N human|,commercial|,#country| +˾ N fact|,#accuse|ظ,#police| + N institution|,space|ռ,past| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ա N human|,#occupation|ְλ,official| +˺ͨ V prosper|,scope=upgrade| +ְ N attribute|,occupation|ְλ,&human| +ۡ N house|,#official| + V PutOn| + N clothing|,#head|ͷ + N clothing|,#head|ͷ,royal| + N location|λ,important| + N part|,%bird|,head|ͷ + V put| + N shape| +ڴ N part|,%language| +ھ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +ھ N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| +ھ N fact|,compete|,sport| + N clothing|,#head|ͷ,royal| +û ADJ aValue|ֵ,behavior|ֹ,suitable| +IJ N disease|,#heart| +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + V put| +״ N part|,%AnimalHuman|,nerve| + N attribute|,scene|,&inanimate| + N house|,religion|ڽ + V look| + N thinking|˼ +۲ V investigate| +۲ V look| +۲ ADJ aValue|ֵ,ability|,able|,look|,desired| +۲Ա N human|,look| +۲ N human|,look| +۵ N standpoint| +۷ V defend| +۸ N experience| +۹ V tour| +ۿ V look| + V include|,ResultWhole=congratulate|ף +Ħ V study|ѧ + N thinking|˼ + V enjoy|,means=look| + V look| + V wait|ȴ +̨ N InstitutePlace|,space|ռ,@look|,#weather| + N humanized|,kindhearted|,ProperName|ר,(China|й) + N stone|ʯ,food|ʳƷ + N tree| +հ N attribute|,scene|,&inanimate| +ս V look|,content=compete| +ս V look|,content=fight| + N human|,*look|,#entertainment|,#sport|,*recreation| +ϯ N human|,*look|,#entertainment|,#sport|,*recreation| + N MusicTool| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V guarantee|֤ + V manage| + N part|,%implement|,#electricity| + V provide| + N shape| + V teach| +ܱ V guarantee|֤ +ܲ V BeUnable|,content=control| +ܲס V BeUnable|,content=control| +ܵ N facilities|ʩ,space|ռ,linear|,@transmit| +ܵ N human|,#occupation|ְλ,industrial| +ܵ V BeAble|ܹ,content=control| +ܷ V provide|,possession=edible|ʳ +ܷ N MusicTool| +ܼ N human|,#occupation|ְλ,*manage|,#family|,employee|Ա +ܼ N thought|ͷ +ܽ V teach| +̺ܽ ADJ aValue|ֵ,behavior|ֹ,proper| +ܾ N facilities|ʩ,#liquid|Һ + N MusicTool| + V manage| + N human|,*manage| +Ա N human|,#occupation|ְλ,*manage| + N human|,*manage| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N human|,#occupation|ְλ,employee|Ա + V manage|,patient=affairs| +¶ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V restrain|ֹ +Ͻ V manage| +ϽȨ N rights|Ȩ,#manage|,#control| + N music| +ֶ N community|,#music| + N facilities|ʩ,*transmit| +Ѻ V detain|ס,police| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V control| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + N material|,#building| + N InstitutePlace|,commercial| + N InstitutePlace|,literature| + N facilities|ʩ,space|ռ,@reside|ס + N institution|,#country| +ݲ N artifact|˹,$gather|ɼ +ݲ V store| +ݳ N human|,#occupation|ְλ,*manage| + N InstitutePlace|,commercial|,space|ռ,@eat| + N LandVehicle|,mine| + N tool|þ,cubic|,@put| +޳ N LandVehicle| +ͷ N tool|þ,cubic|,@store|,#edible|ʳ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V cook| +ţ N food|ʳƷ + V fit|ʺ + V indulge| +߳ ADV aValue|ֵ,frequency|Ƶ,often| +߳ ADJ aValue|ֵ,kind|,ordinary| +߷ N human|,crime|,undesired|ݬ +߷ N human|,crime|,undesired|ݬ,*rob| +߻ V indulge| + N regulation|,ordinary| + N attribute|,speed|ٶ,&SelfMove| + N human|,*steal|͵,crime|,undesired|ݬ +͵ N human|,*steal|͵,crime|,undesired|ݬ + N attribute|,speed|ٶ,&SelfMove| + V use| + ADJ aValue|ֵ,ability|,able|,desired| +ڻ ADJ aValue|ֵ,ability|,able|,doubt| + V indulge| + V fill| + V irrigate|,agricultural|ũ +೦ V cure|ҽ + V irrigate|,agricultural|ũ +ཬ V fill| +ཬ V fill|,agricultural|ũ +ཬ V ill|̬ +Ի V deceive|ƭ,means=please|ȡ + V please|ȡ +ľ N tree| + N place|ط,@irrigate|,agricultural|ũ + V teach| + V record|¼,content=sound| +ע V spray| + V GoThrough| + V connect| + V follow| + N money|,past| + N place|ط,@ComeToWorld| +᳹ V conduct|ʵʩ +ᴩ V GoThrough| +ᴮ V GoThrough| +ͨ V connect| +ͨ V know|֪ +ע V PayAttention|ע +ע V relate|й + V OwnNot| + ADJ aValue|ֵ,SmoothFinish|,polished| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + V exposure|¶ + N lights| + ADV {emphasis|ǿ} + N mark|־,*AimAt|,#computer| +Ⲩ N lights| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,brightness|,bright|,&thing| +ʶĿ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| +Ӳ ADJ aValue|ֵ,brightness|,bright| + V CauseToGrow|ʹɳ +⵼ά N material|,*transmit|,#lights| + N phenomena|,#lights|,#electricity| + N part|,%physical| + N attribute|,brightness|,&inanimate|,&physical| +ȼ N tool|þ,*measure|,#brightness| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| +⸴ V TakeBack|ȡ +˶ N human|,single| +˶ N part|,%physical|,body| +˾ N human|,single| + V arrive| +½ ADJ aValue|ֵ,form|״,queer| + N human|,undesired|ݬ + N human|,single|,male|,^GetMarried| + N phenomena|,#metabolize|л,#plant|ֲ +⻪ N attribute|,brightness|,bright|,&thing| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +⻯ѧ N knowledge|֪ʶ +⻷ N lights| +⻷ N lights|,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + N lights| +Բ ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,SmoothFinish|,&implement| +⾰ N attribute|,circumstances|,&entity|ʵ +⾰ N attribute|,scene|,&inanimate| + ADJ aValue|ֵ,brightness|,bright| + N lights| + V arrive| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,fullness|,empty| +â N lights|,bright| +â ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N lights| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CLAS unit|λ,&length| + N tool|þ,*record|¼ + N phenomena|,#color|ɫ,#lights| +׷ V analyze|,content=lights|,#color|ɫ +Ȧ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ٰ N account|,@record|¼,name|,#glorious| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,brightness|,bright| + ADV {emphasis|ǿ} + N lights| + N attribute|,speed|ٶ,&lights| +컯 N time|ʱ,afternoon| +ͷ V exposure|¶ +ͷ N part|,%human|,head|ͷ,$MakeUp|ױ +ͺͺ ADJ aValue|ֵ,fullness|,empty| + N material|,*transmit|,#lights| + N lights| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ ADJ aValue|ֵ,attachment|,#look| +ѧ N knowledge|֪ʶ,#lights| +ѧ N human|,#knowledge|֪ʶ + N lights|,bright| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ N lights|,bright| + N time|ʱ +Ƽ V pass|ȹ,manner=fast| +Դ N location|λ,@ExistAppear|,#lights| + N lights|,bright| +դ N fittings|,#lights| + V illuminate| + N lights| + N part|,%lights| +ҫ V CauseToDo|ʹ,patient=family|,ResultEvent=WellKnown| + ADJ aValue|ֵ,range|,extensive| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| +㲥 V disseminate| +㲥 N text|,disseminate| +㲥ӰӲ N institution|,#disseminate|,ProperName|ר,politics| +㲥 N shows| +㲥ҵ N affairs|,disseminate| +㲥Ա N human|,#occupation|ְλ,*disseminate| +㲩 ADJ aValue|ֵ,range|,extensive| +㳡 N place|ط + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,range|,extensive| + ADJ qValue|ֵ,amount|,many| + N human|,*read|,mass| +ɲ N human|,mass| +Ⱥ N human|,mass| +㵺 N place|ط,city|,ProperName|ר,(Japan|ձ) +㶫 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N attribute|,range|,&entity|ʵ +㷺 ADJ aValue|ֵ,range|,extensive| +㷺 ADJ aValue|ֵ,property|,$disseminate| +㷺 N attribute|,range|,&entity|ʵ + N fruit|ˮ + N readings|,$disseminate|,commercial| + V disseminate|,commercial| +㽻 N InstitutePlace|,@display|չʾ,commercial| + ADJ aValue|ֵ,area|,wide| +Į ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׳ N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N house| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N information|Ϣ + N knowledge|֪ʶ + N place|ط,city|,ProperName|ר,(China|й) + V roam| +䵴 V roam| + V walk|,location=route|· +̳ V walk|,location=InstitutePlace|,commercial|,#buy| +̵ V walk|,location=InstitutePlace|,commercial|,#buy| +Ҥ V SeekPleasure|Ѱ + ADJ aValue|ֵ,value|ֵ,precious|,desired| +屦 N treasure|䱦,precious| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ΰ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ΰ ADJ aValue|ֵ,behavior|ֹ,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,good|,desired| + V persuade|Ȱ˵ + V plan|ƻ + N regulation| + N tool|þ,*measure| + V evade|ر + N regulation|,ordinary| +涨 V decide| +涨 N regulation| +淶 ADJ aValue|ֵ,standard|׼,average|,desired| +淶 N attribute|,standard|׼,&entity|ʵ +淶 V ize|̬,PatientAttribute=standard|׼ + N attribute|,standard|׼,&entity|ʵ + V ize|̬,PatientAttribute=standard|׼ +ؾ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +滮 N plans|滮 +滮 V plan|ƻ +滮 N human|,*plans|滮 + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N attribute|,behavior|ֹ,&human| + N regulation| + N law|ɷ + N attribute|,behavior|ֹ,&event|¼ +ģ ADJ aValue|ֵ,range|,extensive| +ģ N attribute|,range|,&entity|ʵ +ģ N affairs|,produce|,extensive| +Ȱ V persuade|Ȱ˵ +оز V obey|ѭ,content=regulation| + ADJ aValue|ֵ,form|״,even| + N regulation| + N regulation|,ordinary| +ƶ N regulation|,ordinary| + V PutInOrder| + N tool|þ,#royal| + N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guyana|) + N place|ط,country|,ProperName|ר,(South America|) +Ԫ N money|,(Guyana|) + N law|ɷ + N chemical|ѧ + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) +轺 N material| +ʯ N stone|ʯ,material| + N chemical|ѧ + N chemical|ѧ + N AlgaeFungi|ֲ +ש N material|,@building| + V BeMember| + V ComeTogether| + V GoBack| + V return| + PREP {concession|ò} +鰸 V punish|,police| +鲢 V merge|ϲ +鵵 V store| + V include|,ResultWhole=organization|֯ +鸽 V surrender| + ADV {comment|} + ADV {comment|} +鹦 V BelongTo| + V GoBack|,LocationFin=country| + N human|,*GoBack|,#country| +麣 N character|,surname|,human|,ProperName|ר +黹 V return| + V explain|˵ + N process|,ending|ĩ + V accuse|ظ,content=wrong| + V GoBack| + V classify| +£ V assemble|ۼ + N method| + V explain|˵ + N human|,*GoBack|,#country| + V classify| + V BelongTo| +˳ V surrender| + N place|ط + N result| + V die| +; N process|,#GoBack|,#route|· + V die| +Ƽ V expect|,content=GoBack|,manner=worried|ż + V BelongTo| + V ResultIn| +淵 V resume|ָ,StateFin=pure| + V PutInOrder| + V explain|˵ + V accuse|ظ,content=wrong| + N fish| + V FormChange|α + V FormChange|α,medical|ҽ + V CausePartMove| + V escape| +ͷ N part|,%AnimalHuman| + N room|,#female|Ů,@reside|ס +뷿 N room|,#female|Ů,@reside|ס + N room|,#female|Ů,@reside|ס +Ů N human|,family|,female|Ů +Ů N human|,female|Ů,^GetMarried| + N human|,female|Ů,^GetMarried| + N material|,#route|· + N process| + N facilities|ʩ,route|· + N process| +췶 N attribute|,standard|׼,&entity|ʵ +켣 N image|ͼ,linear| +켣 N shape|,linear| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,quality|,refined|,desired| + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N text|,*deceive|ƭ +ƪ N text|,*deceive|ƭ + V MakeLiving|ı,manner=flighty| + N fire| +Ǻ V weep| +Ź N part|,%place|ط,mouth|,humanized| +Ź N place|ط,dangerous|Σ,military| +Ź N time|ʱ,important| + V FondOf|ϲ + N humanized|,undesired|ݬ +ʹ N fact|,*fit|ʺ +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N human|,foreign|,undesired|ݬ +⼿ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V debate| + N human|,*debate| + V deceive|ƭ + V pretend|װ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N symbol|,ProperName|ר,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tree| + N mark|־,glorious| + N FlowerGrass| + N place|ط,city|,ProperName|ר,(China|й) +Ƥ N part|,%tree|,?material| +Ƥ N part|,%tree|,skin|Ƥ +Բ N fruit|ˮ +֦ N medicine|ҩ,(China|й) + N furniture|Ҿ,cubic|,@store| +̨ N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N furniture|Ҿ,cubic|,@store| + V sit| + V salute|¾ + V sit| + ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,$WellTreat|ƴ + N human|,$WellTreat|ƴ,HighRank|ߵ,desired| + N human|,HighRank|ߵ,female|Ů,desired| + ADJ aValue|ֵ,price|۸,expensive|,cheap| + N attribute|,price|۸,&artifact|˹,commercial| + N metal|,material| + N human|,$WellTreat|ƴ + V buy|,cost=expensive| + V sell|,cost=expensive|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,royal| + N human|,royal|,past| + N human|,royal|,female|Ů + V break|۶ + N human|,fierce|,undesired|ݬ,*kill|ɱ + N human|,police|,*kill|ɱ,#crime| + N part|,machine| + V StateChange|̬ + V leave|뿪 + V roll| + V wrap| + N fittings|,%clothing|,*decorate|װ + V leave|뿪 + V roll| + N part|,%implement| + V roll| + ADJ aValue|ֵ,ability|,able|,desired| + V jet| + N SportTool|˶ + ADJ aValue|ֵ,temperature|¶,hot| +Ͳ N part|,%implement| +ѩ V BecomeMore| +Բ ADJ aValue|ֵ,form|״,round|Բ + N part|,%implement| + N part|,%implement| + N part|,%implement| + N human|,undesired|ݬ + N tool|þ + N tool|þ + N tool|þ + CLAS NounUnit|,&inanimate| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@store| + N food|ʳƷ + N part|,%tool|þ,head|ͷ +¯ N tool|þ,@burn| +̨ N part|,%tool|þ,#cook| +̨ת N human|,family|,female|Ů + N food|ʳƷ + N inanimate|,waste| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,attachment|,country| + N character|,surname|,human|,ProperName|ר + N place|ط,#human|,country|,politics| + N treasure|䱦,precious|,#country| + N attribute|,attachment|,#country|,&human| + N human|,$WellTreat|ƴ,#country| + N InstitutePlace|,@WellTreat|ƴ,#country| + N regulation|,#country|,politics| + ADJ aValue|ֵ,source|Դ,original|ԭ + N phenomena|,disgraced|,undesired|ݬ,#shy|,#country|,politics| + N knowledge|֪ʶ,precious|,#country| + N place|ط,capital|,#country| + N place|ط,#human|,country|,politics| + N law|ɷ,country|,politics| + N affairs|,#defend|,#country| + N institution|,#defend|,ProperName|ר,#country| + N human|,#occupation|ְλ,official|,*manage|,#country|,military| +ѧ N InstitutePlace|,@teach|,@study|ѧ,military|,ProperName|ר,#country|,(China|й) + N expenditure|,*defend|,#country| + N army|,*defend|,#country| + N human|,official|,politics| + N music|,$sing|,#country| + N music|,$sing|,&country| + N attribute|,reputation|,&country| + N community|,politics| + N attribute|,name|,#country|,#official|,&time|ʱ + N FlowerGrass|,#country| + N image|ͼ,$draw|,(China|й) + N mark|־,#country| + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Japan|ձ) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(US|) + N artifact|˹,commercial|,#country|,generic|ͳ + N attribute|,attachment|,#country|,&human| + N affairs|,#country| + ADJ aValue|ֵ,attachment|,#country| + N community|,#country| +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʷ N law|ɷ,#country| +ʷԺ N part|,%institution|,police|,(institution|=UN|Ϲ) +ʸ˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) +ʸ N music|,$sing| +ʺ֯ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ʻһ֯ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʽڹ˾ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʿЭ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ú֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ũҵչ N part|,%institution|,#agricultural|ũ,#fund|ʽ,(institution|=UN|Ϲ) + N community|,#country| + N affairs|,#country|,politics| + N attribute|,attachment|,#country|,&thing| + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) + N system|ƶ,#relatedness|,#country| + N place|ط,#human|,country|,politics| +ҲƲ N physical|,$own|,#country| +Ҵ N affairs|,#country| +ҵϵͳ N weapon|,*defend| +Ҷ N community|,#country| +Ҹϯ N human|,#occupation|ְλ,official|,#country| +һ N institution|,#country| +һعԱ N human|,#occupation|ְλ,#country| +Ҽ N attribute|,rank|ȼ,#country|,&thing| +Ҽල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ +ҽίԱ N institution|,ProperName|ר,#education| +ҾóίԱ N institution|,commercial|,ProperName|ר,(China|й) +ҿѧίԱ N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) +쵼 N human|,#occupation|ְλ,official|,#country| +Ԫ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,#occupation|ְλ,official|,#country| + N part|,%country|,edge| + N place|ط,#country| + N part|,%country|,edge| + N human|,#occupation|ְλ,royal| + N InstitutePlace|,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,space|ռ,#country|,@store|,#wealth|Ǯ +ȯ N coupon|Ʊ֤,#country| + ADJ aValue|ֵ,attachment|,#country| + N attribute|,strength|,&country| + N part|,%country|,mouth| + ADJ aValue|ֵ,attachment|,#country| + N human|,#country| + N community|,politics| +񾭼 N affairs|,industrial|,agricultural|ũ,commercial|,#country| + N wealth|Ǯ,$earn|׬,#country| + N phenomena|,undesired|ݬ,#unfortunate|,#country| + ADJ aValue|ֵ,source|Դ,#country| + ADJ aValue|ֵ,source|Դ,#country|,internal| + N location|λ,%country|,internal| +ڷ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N location|λ,%country|,internal|,external| + N mark|־,#country| + N attribute|,circumstances|,&country| + N text|,#politics|,(US|) + N time|ʱ,day|,@congratulate|ף,#country| + N time|ʱ,day|,@congratulate|ף,#country| + N human|,#country| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʷ N fact|,#time|ʱ,#country| +ʷ N human|,*record|¼,past|,#country| + N affairs|,#country| +· N fact|,visit|,#country|,politics| + N human|,able|,#country|,desired|,#WhileAway| + N document|,#country|,diplomatic|⽻ +˰ N institution|,*manage|,#expenditure|,ProperName|ר,country| +̩ ADJ aValue|ֵ,circumstances|,peaceful| + N attribute|,reputation|,&country| + N system|ƶ,country| + N place|ط,#country| + ADJ aValue|ֵ,source|Դ,#country|,external| + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N human|,#occupation|ְλ,royal| + N attribute|,reputation|,&country| + N language|,#country| + N affairs|,#country| + N human|,official|,*manage|,#country|,(US|) +Ժ N institution|,politics|,ProperName|ר,(China|й) +Ժ N institution|,politics|,ProperName|ר,(US|) +Ժί N part|,%institution|,*manage| +ѧ N knowledge|֪ʶ,(China|й) + N fact|,eat|,entertain|д,#country| +ҩ N medicine|ҩ,(China|й) +Ӫ ADJ aValue|ֵ,attachment|,#country| + ADJ aValue|ֵ,quality|,superior|,#country| + ADJ aValue|ֵ,attachment|,public| +л V ize|̬,PatientAttribute=public|,#country| + N language| + N attribute|,circumstances|,&country| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,#country| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fruit|ˮ + N result| + N food|ʳƷ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ + V feed|ι,patient=self| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ +϶ N material|,?food|ʳƷ +ľ N tree|,#fruit|ˮ +ũ N human|,#occupation|ְλ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ƥ N part|,%fruit|ˮ,skin|Ƥ +Ʒ N food|ʳƷ +Ȼ ADV {comment|} +Ȼ CONJ {condition|} + N food|ʳƷ + N part|,%fruit|ˮ,embryo| +ʶ N part|,%fruit|ˮ,embryo| + N part|,%fruit|ˮ,flesh| +ʵ N part|,%plant|ֲ,embryo| +ʵ N result|,desired| + N tree|,#fruit|ˮ + N chemical|ѧ +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + ADV {comment|} + CONJ {condition|} +֦ N part|,%plant|ֲ,#fruit|ˮ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֭ N drinks|Ʒ + N fruit|ˮ +ӽ N food|ʳƷ +¶ N drinks|Ʒ + V TakeAway|ᶯ + V drink| + V wrap| + N fittings|,%clothing|,#leg| +Ю V force|ǿ +в V force|ǿ +㲻ǰ V hesitate|ԥ,content=GoForward|ǰ + ADV aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,standard|׼,average|,desired| + V cross|Խ + V pass|ȹ + N result|,undesired|ݬ,wrong| + V surpass|ǿ + V undergo| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| + V measure|,content=weight| +Ա N human|,#occupation|ְλ,*measure|,#weight| +ȥ V BeUnable|,content=GoThrough| +ȥ V BeUnable|,content=undergo| +ȥ V quarrel| +ȥ V regret|Ǹ + N process| + V measure|,content=weight| + V associate| + N result|,undesired|ݬ,wrong| + N part|,%building|,nerve| +ȥ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ȥ ADJ aValue|ֵ,standard|׼,average|,desired| + V pass|ȹ,patient=winter| + ADJ aValue|ֵ,degree|̶,over| +ƣ V tired|ƣ,degree=over| + V SelfMove| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,degree|̶,over| +ּ򵥻 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V tired|ƣ,degree=over| +ӵ ADJ aValue|ֵ,occasion|,crowded|,degree=over| + ADJ aValue|ֵ,degree|̶,over| + V cross|Խ,LocationThru=place|ط + V pass|ȹ,patient=hardship| + V succeed|ɹ,scope=standard|׼ +ն V win|ʤ +Ӳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,time|ʱ,hind| + V submit| + V talk|̸ + V MakeLiving|ı + ADJ aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N human|,behavior|ֹ,strong|ǿ,undesired|ݬ + V praise|佱 +¥ N house| + V congratulate|ף,cause=festival| + V cross|Խ,LocationThru=country| +ǩ֤ N document|,*cross|Խ,#country| + N human|,*AlterLocation|ռλ,*tour| + V come| + ADJ aValue|ֵ,degree|̶,over| + N material|,*feed|ι,#crop|ׯ +· V cross|Խ,LocationThru=place|ط +· N human|,*GoThrough| + V worried|ż,manner=over| + V filter| + V MarryTo| + N disease| +Ӧ N disease| +Ŀ V check| +Ŀ ADJ aValue|ֵ,ability|,able|,remember|ǵ + V congratulate|ף,cause=festival| + V pass|ȹ,patient=festival| + N time|ʱ,future|,year| + V due| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,over| +ȥ ADJ aValue|ֵ,time|ʱ,past| +ȥ V die| +ȥ V go|ȥ +ȥ N time|ʱ,past| +ȥ V die| + V surpass|ǿ + V MakeLiving|ı + V congratulate|ף,cause=festival|,#ComeToWorld| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ ADJ qValue|ֵ,amount|,redundant| +ʧ N result|,undesired|ݬ,crime| +ʧ N result|,undesired|ݬ,wrong| +ʱ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ʱ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + V die| + V handle| + V count| + V interrogate|,police| +÷ N wind| +ͷ ADJ aValue|ֵ,degree|̶,over| + V SelfMoveInManner|ʽ + V associate| + V PayAttention|ע +ϥ ADJ aValue|ֵ,length| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ҹ V pass|ȹ,patient=night|,#reside|ס +ⲻȥ V regret|Ǹ +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,over| + V praise|佱 + V enjoy| + V exhale| + N place|ط,country|,ProperName|ר,(Kazakhstan|˹̹) +͹ N livestock| + N place|ط,capital|,ProperName|ר,(Botswana|) + V exhale| + N tool|þ,#salute|¾,#congratulate|ף + N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) + V tease|ȡ +Ц V laugh|Ц + N tool|þ,*look|,self| + N part|,%AnimalHuman|,liquid|Һ +ܹ N fruit|ˮ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kazakhstan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N community|,ProperName|ר,(China|й) + N place|ط,capital|,ProperName|ר,(Cuba|Ű) + V CausePartMove|,PatientPartof=body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,#die|,bone| + N human|,young| + N human|,young| + N time|ʱ,#young| +ʱ N time|ʱ,#young| +ͯ N human|,young| + N human|,family|,young| + N human|,young| + ADJ aValue|ֵ,ability|,unable|ӹ + N waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N attribute|,height|߶,&land|½ + N readings| + N beast| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N chemical|ѧ + N fish| + N artifact|˹,generic|ͳ,#fish|,$eat| +Ʒ N artifact|˹,generic|ͳ,#fish|,$eat| + ADJ aValue|ֵ,color|ɫ,blue| + N water|ˮ + N AlgaeFungi|ֲ,$eat| + N land|½,#waters|ˮ + N human|,*rob|,#waters|ˮ,crime| + N human|,crime|,undesired|ݬ,#waters|ˮ,*rob| +Ϊ N fact|,rob|,#waters|ˮ,crime| + N location|λ,%waters|ˮ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Haitii|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Haitii|) + N affairs|,*defend|,#waters|ˮ + N wind|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N waters|ˮ,surfacial| + N beast| + N institution|,#country| + N fish| + V forgive|ԭ + N waters|ˮ + N army|,#waters|ˮ +ٱ N human|,military|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ʯ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,range|,extensive| + N beast| + N beast| + CLAS unit|λ,&length| + N water|ˮ + N beast| + N fish| + N ship| + N fish| + N medicine|ҩ,?addictive|Ⱥ + N fish| + N food|ʳƷ,$eat|,#fish| + N material| + N waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ϵ N place|ط,ProperName|ר,(China|й) + N phenomena|,undesired|ݬ,#waters|ˮ,#unfortunate| + N location|λ,%country|,internal| + N location|λ,%country|,internal|,external| +ţ N beast| +Ÿ N bird| + N attribute|,style|,&shows| +ƽ N attribute|,height|߶,&waters|ˮ + N waters|ˮ,surfacial| +̷ N law|ɷ,#waters|ˮ,#ship|,#transport| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N location|λ,%waters|ˮ + N affairs|,#waters|ˮ,#ship|,#transport| +֯ N part|,%institution|,#affairs|,#waters|ˮ,#ship|,#transport|,(institution|=UN|Ϲ) +¥ N phenomena|,#weather|,fake|α +ˮ N liquid|Һ + N affairs|,#lose|ʧȥ,#waters|ˮ,#ship|,#transport| +̡ N beast| +̲ N part|,%land|½,#waters|ˮ,edge| + N facilities|ʩ,#liquid|Һ,space|ռ + N tree| +ͼ N image|ͼ,#earth|,#waters|ˮ,#country| + ADJ aValue|ֵ,source|Դ,foreign| + N publications|鿯,$sell|,#foreign| + N human|,*ThinkOf|˼,*like|ϧ,#country| + N waters|ˮ,surfacial| + N celestial| +ζ N food|ʳƷ,#fish|,generic|ͳ +Ͽ N waters|ˮ,surfacial| + N food|ʳƷ,#fish|,generic|ͳ +Х N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N beast| + N place|ط,capital|,ProperName|ר,(Netherlands|) + N material|,?food|ʳƷ + N bird| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N waters|ˮ,surfacial| + N law|ɷ,#waters|ˮ,#country| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N institution|,ProperName|ר,#waters|ˮ,#country|,politics| + N weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#waters|ˮ +ѧר N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,#waters|ˮ +Դ N material|,#waters|ˮ + N fish| + N waters|ˮ,surfacial| +Ա N human|,#occupation|ְλ,employee|Ա,#ship| + ADJ aValue|ֵ,attachment|,#waters|ˮ,#ship|,#transport| + V transport|,instrument=ship| + V bury|,LocationFin=waters|ˮ + N AlgaeFungi|ֲ + N fruit|ˮ +ս N fact|,fight|,#waters|ˮ + N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N waters|ˮ,surfacial| + N beast|,*swim| + N fish| + N gas| + N knowledge|֪ʶ +ʱ N time|ʱ,hour|ʱ + V SufferFrom| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V damage| + V kill|ɱ,crime| + N phenomena|,unfortunate|,undesired|ݬ + V SufferFrom|,content=disease| + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V kill|ɱ,crime| + N bird|,evil|,*MakeBad|Ӻ,undesired|ݬ + V fear| +Ⱥ֮ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +˳ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +ϲ V SufferFrom|,content=disease|,#female|Ů + V shy| + V SufferFrom|,content=disease|,#female|Ů + V shy| + V fear| + V fear| + V fear| + N human|,*damage|,#software|,undesired|ݬ +Ȼ V fear| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V fear| + V satisfied| + V satisfied| +˯ V sleep|˯,manner=satisfied| + V drink|,manner=satisfied| +ս V fight| + ADJ aValue|ֵ,ability|,unable|ӹ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ц V laugh|Ц +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(South Korea|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korean|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(South Korean|) + N language|,#country|,ProperName|ר + V HoldInMouth| + V cherish|Ļ + V contain| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +첻 ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,metal| +ƾ ADJ aValue|ֵ,content|,medicine|ҩ + V weep| + N quantity|,amount|,#contain|,#content|,&physical| +þ ADJ aValue|ֵ,content|,metal| +ŭ V angry| + ADJ aValue|ֵ,content|,medicine|ҩ +ɳӰ V ExpressAgainst|Ǵ,manner=tactful| +ˮ ADJ aValue|ֵ,content|,water|ˮ + ADJ aValue|ֵ,content|,material|,sweet| +ͭ ADJ aValue|ֵ,content|,metal| +Ц V laugh|Ц +п ADJ aValue|ֵ,content|,metal| + V endure|,content=hardship| + V shy| + ADJ aValue|ֵ,behavior|ֹ,tactful| + ADJ aValue|ֵ,content|,difficult| + V contain| +Ѫ ADJ aValue|ֵ,content|,part| +Ѫ V slander|̰ + N information|Ϣ + N information|Ϣ +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V contain| +ԩ V suffer|,damage| +Թ V sorrowful| +Ū V enjoy|,content=happy|,time=aged|,desired| + V contain| + N facilities|ʩ,route|· + V contain| + V forgive|ԭ + V contain| + N attribute|,ability|,#control|,#self|,&human| + N information|Ϣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + V shiver| + V shiver| + N weather|,cold| + N part|,%earth|,cold| + N time|ʱ,winter| + N time|ʱ,winter| + N wind|,cold| +̹ V perception|֪,content=cold|,degree=extreme| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education|,winter| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V disappear|ʧ,experiencer=time|ʱ + ADJ aValue|ֵ,temperature|¶,cold| + N weather|,cold| +¶ N time|ʱ,day| +ë N part|,%human|,hair|ë + ADJ aValue|ֵ,temperature|¶,cold| + N gas|,cold| + N weather|,cold| + N wind|,cold| +Ϯ ADJ aValue|ֵ,temperature|¶,cold| + V fever| + ADJ aValue|ֵ,temperature|¶,cold|,hot| + N time|ʱ,year| + N tool|þ,*measure|,#temperature|¶ + ADJ aValue|ֵ,circumstances|,poor|,miserable|,undesired|ݬ +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N clothing|,#cold|,#season| + N attribute|,temperature|¶,cold|,&space|ռ +ս V shiver| + V LaughAt|Ц + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V shiver| + N SayHello|ʺ,manner=EachOther|໥ + N letter|ż + N stationery|ľ,cubic|,@put|,letter|ż + V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N letter|ż + V reply|,content=letter|ż + V tell|,instrument=letter|ż + V buy|,instrument=letter|ż + N letter|ż + V teach|,instrument=letter|ż +ڴѧ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| +ѧУ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N symbol| + V seek|ıȡ,instrument=letter|ż + V cry| + V communicate|,means=tool|þ + V disseminate|,target=enemy|,military| + V cry| +ɤ V cry| +ɤ V cry| +ԩ V protest|,content=miserable| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ fact|,rarely|ż + N PenInk|ī,*write|д + N document| + N human|,#knowledge|֪ʶ,past| +Ժ N institution|,#knowledge|֪ʶ,past| +ī N PenInk|ī +ī N text| + V shake|ҡ + V shake|ҡ + V defend| + V defend| + V resist| + V defend| + V defend| + ADJ aValue|ֵ,dampness|ʪ,waterless| + N crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N time|ʱ,season|,waterless| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,@store|,vegetable|߲ +Ա V guarantee|֤,scope=obtain|õ,#crop|ׯ,agricultural|ũ + N tree| +· N facilities|ʩ,route|· + N time|ʱ,year|,waterless| + N facilities|ʩ,route|· + N attribute|,circumstances|,#waterless|,&place|ط +ɡ N tool|þ,*protect| +̡ N beast| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N addictive|Ⱥ + N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless| + V repent|û + N experience|,undesired|ݬ,#sorry|ϧ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,courage|,brave|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V fasten|˩,industrial| + N part|,%implement|,linear|,#fasten|˩,industrial| + N affairs|,industrial|,#fasten|˩ + N human|,#occupation|ְλ,industrial|,*fasten|˩ + V fasten|˩,industrial| + N material|,*fasten|˩,generic|ͳ +ǹ N tool|þ,*fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + N clothing|,#body| + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +䤱 V excrete|й + N result|,desired| +ë N part|,%human|,hair|ë +ţ䶰 ADJ qValue|ֵ,amount|,many| + N clothing|,#body| +ˮ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,nerve| + V shy| +Һ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N human|,ProperName|ר,mass| + N human|,male| + N language|,#country|,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N stone|ʯ,?material| + N place|ط,city|,ProperName|ר,(German|¹) + N food|ʳƷ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(South Korea|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V ize|̬,PatientAttribute=(China|й) + N human|,undesired|ݬ,*betray|,treacherous| + N place|ط,city|,ProperName|ר,(China|й) +ܶ N place|ط,capital|,ProperName|ר,(Bermuda|Ľ) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,past|,(China|й) + N human|,#country|,ProperName|ר + N character|,(China|й) + N language|,(China|й) +ѧ N knowledge|֪ʶ,(China|й) +ѧ N human|,#knowledge|֪ʶ + N language|,#country|,ProperName|ר,(China|й) +ƴ N symbol|,#language|,#sound| + N human|,family|,male| + N human|,male| + N character|,(China|й) +ֿ N software|,@store|,character|,(China|й) + N community|,ProperName|ר,(China|й) + V beat| + N tool|þ,*beat| +ʵ V beat| + N tool|þ,*beat| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V VehicleGo|ʻ + V fly| + N attribute|,number|,&aircraft|,#fly| + N mark|־,*guide|,#VehicleGo|ʻ + V measure| + N attribute|,distance|,#VehicleGo|ʻ,#fly| + N attribute|,distance|,&VehicleGo|ʻ,&fly| + N ship| + N attribute|,number|,&aircraft|,#fly| + N attribute|,number|,&ship|,#VehicleGo|ʻ + N quantity|,amount|,&ship|,#VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#waters|ˮ,#VehicleGo|ʻ + N affairs|,VehicleGo|ʻ,#ship| + N human|,*VehicleGo|ʻ,#ship| +ҵ N affairs|,VehicleGo|ʻ,#ship| + N affairs|,#VehicleGo|ʻ,#aircraft| +ձ N army|,#sky| +ձ N human|,#occupation|ְλ,#sky| +չ˾ N InstitutePlace|,#affairs|,#transport|,#aircraft| +ջ N affairs|,transport|,#aircraft| +ĸ N weapon|,ship|,military| +· N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| +ģ N tool|þ,$recreation|,aircraft| +ĸ N weapon|,ship|,military| + N attribute|,speed|ٶ,&VehicleGo|ʻ,&fly| + N affairs|,#fly| +ɻ N aircraft| + N affairs|,VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| + N direction|,#VehicleGo|ʻ,#fly| + V VehicleGo|ʻ + N VehicleGo|ʻ + V VehicleGo|ʻ + V fly| + N human|,*VehicleGo|ʻ + N affairs|,#transport|,#ship| +˹˾ N InstitutePlace|,#affairs|,#transport|,#ship| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + V weep| + V weep| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,rich|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,desired| + ADJ aValue|ֵ,kind|,extravagant| + N human|,able|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,rich|,strong|ǿ,desired| + N attribute|,courage|,brave|,&human| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ N human|,undesired|ݬ,fierce| + N attribute|,courage|,brave|,&human| + N language|,#country|,ProperName|ר + N human|,rich|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,brave|,able|,desired| + N emotion|,FeelingByGood|,desired| +׳ N expression|,brave|,desired| + N beast| +׳ ADJ aValue|ֵ,courage|,brave|,desired| + N PenInk|ī,*write|д + N part|,%animal|,hair|ë + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + CLAS unit|λ,&electricity| + ADV {neg|} +ҡ ADJ aValue|ֵ,will|־,stubborn|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ԥ ADJ aValue|ֵ,will|־,stubborn|,desired| +ԥ V willing|Ը + ADJ qValue|ֵ,amount|,few| + N unit|λ,&weight| + CLAS unit|λ,&weight| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&volume|ݻ + ADV {neg|} +ޱ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +޴ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +޶ V BeSame|ͬ +޹֮ͬ V differ|ͬ +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ + ADV aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,easiness|,easy|,desired| + N character|,surname|,human|,ProperName|ר + V AptTo| + V BeWell|׳ + V FondOf|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ðʽ N human|,able|,desired| +ð ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ñ V BeSimilar| +ò ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ó V FondOf|ϲ,target=eat| +ó ADJ aValue|ֵ,taste|ζ,good|,desired| +ó V slack|͵ +ô N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ô N wealth|Ǯ,desired|,$earn|׬ +ô N expenditure| +ô˾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#accuse|ظ +ôϲ V expect|,content=succeed|ɹ,undesired|ݬ +ô N attribute|,GoodBad|û,&entity|ʵ +ô N phenomena|,undesired|ݬ,#unfortunate| +ö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| +ö N attribute|,behavior|ֹ,FondOf|ϲ,#fight|,&human| +ö˶ ADJ aValue|ֵ,circumstances|,good|,desired| +ö ADJ qValue|ֵ,amount|,many| +ö ADJ qValue|ֵ,amount|,many|,question| +ø N experience|,kindhearted|,desired| +ù ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,brave|,desired| +ú ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ú ADJ aValue|ֵ,circumstances|,good|,desired| +úö ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +úö ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,undesired|ݬ +û N expression|,kindhearted| +û N attribute|,GoodBad|û,&entity|ʵ +þ V unfortunate| +þ N time|ʱ,TimeLong| +ÿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ÿ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ÿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ÿ ADJ aValue|ֵ,reputation|,glorious|,desired| +ÿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N place|ط,ProperName|ר,#(movie|Ӱ),(US|) + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N result|,#estimate|,good| + V expect| + N emotion|,expect| + V FeelingByGood| + N human|,good|,desired| + N human|,sly|,undesired|ݬ + N human|,strong|ǿ,desired| + N time|ʱ,day|,#GetMarried| + N time|ʱ,day|,#joyful|ϲ + N time|ʱ,happy| +ɫ V FondOf|ϲ,target=female|Ů +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ +ɱ¾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#kill|ɱ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʤ V FondOf|ϲ,target=surpass|ǿ +ʤ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʹ V succeed|ɹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N fact|,desired| + N fact|,good|,desired| +¶ĥ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N fact|,good|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +˵ EXPR expression|,*agree|ͬ +˵˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V BeSimilar| + V WeatherFine| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ϸ N fact|,interesting|Ȥ +Ϸ N shows|,good| + V BeSimilar| +Ц ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Щ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ѧ V FondOf|ϲ,target=study|ѧ + N human|,superior|,desired| +ݶ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ݶ V slack|͵ + N emotion|,like|ϧ,kindhearted|,desired| +˼ V shameless|û + N human|,friend| + N attribute|,circumstances|,lucky|,&human| + ADV {comment|} +ս ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| +ս N human|,*FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#quarrel| +Ͼ V calm| +ת V BeRecovered|ԭ +׬ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +Ϊ֮ V ActGeneral|,manner=proper| + V lavish|˷,patient=time|ʱ + V spend| +ĵ N quantity|,amount|,exhaust|,#electricity| +ķ V spend| +ľ V exhaust| + V exhaust|,patient=strength| +ɢ V exhaust| +ɢ V exhaust|,industrial| +ʱ V exhaust|,patient=time|ʱ +ʱ V lavish|˷,patient=time|ʱ + V exhaust| + V lavish|˷ + V exhaust| + V spend| + V spend|,patient=fund|ʽ + N beast| + N InstitutePlace|,commercial| + N MusicTool| + N attribute|,name|,&physical| + N attribute|,size|ߴ,&physical| + V cry| + N symbol| + N time|ʱ,day| + N time|ʱ,day|,special| + V weep| +ų V become|Ϊ +ų V naming| +Ž N MusicTool| +Ž V cry| +ſ V weep| + V order| + N text|,*order| + N symbol| + V diagnose|,medical|ҽ + N tool|þ,#quantity|,#sequence| + N human|,*perform|,entertainment| + N clothing|,#body| + V call|ٻ + V weep| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| +ƴ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ƶ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ʒ ADJ qValue|ֵ,amount|,many| +ƺƵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ƽ N phenomena|,undesired|ݬ,unfortunate| +Ȼ ADJ aValue|ֵ,area|,wide| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +Ȼ֮ ADJ mental|,fair|,desired| +̺ ADJ qValue|ֵ,amount|,many| +̾ V sigh|̾ + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + V ExpressAgainst|Ǵ + V exhale| +dz V ExpressAgainst|Ǵ +ǻ V TakeCare| +Ƿ V respire| + V ExpressAgainst|Ǵ + V cry| + V drink| +Ȳ V praise|佱 +Ȳ V praise|佱 +ȳ V ExpressAgainst|Ǵ +ȵ V ExpressDissatisfaction|ʾ + V force|ǿ + V ask| + V dizzy|,cause=addict|Ⱥ +߳ V ExpressAgainst|Ǵ + V CarryOnBack| + N FlowerGrass| + N duty|,$bear|е + N place|ط,country|,ProperName|ר,(Holland|) +ɰ N part|,%clothing|,cubic|,@put| +ɰ N tool|þ,cubic|,@store| +ɶ N medicine|ҩ +ɻ N FlowerGrass| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Netherland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Holland|) + N money|,(Netherlands|) + N human|,(Netherland|) + N language|,#country|,ProperName|ר +ǹʵ V CarryOnBack|,patient=weapon| +Ҷ N part|,%plant|ֲ,hair|ë + V load|װ + N place|ط,city|,ProperName|ר,(China|й) + V check| + N part|,%plant|ֲ,embryo| + N part|,%thing|,heart| +˲ V check| +˴Ź N phenomena| +˴ N place|ط,country|,#weapon| +˵ N weapon|,$firing| +˵ͷ N weapon|,$firing| +˵ N weapon|,$firing| +˵վ N facilities|ʩ,space|ռ,*produce|,#electricity| +˶ V estimate| +˶ N attribute|,strength|,&entity|ʵ +˶ĸ N weapon|,ship|,military| +˶ V check| +˷ V issue|ַ +˷Ӧ N physical|,*ize|̬ +˹ N part|,%plant|ֲ,embryo| +˻ N medicine|ҩ +˼ V estimate| +˼ V BecomeLess| + N attribute|,strength|,&physical| +DZͧ N weapon|,ship|,military| +ȼ N material|,$burn|,*lighting|ȼ +ʵ V check| + N chemical|ѧ + V calculate| +Ǻ N chemical|ѧ + N fruit|ˮ + N weapon| + V remove| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,heart| +׼ V ExpressAgreement|ʾͬ + N part|,%physical| + N chemical|ѧ + N crop|ׯ +̳ N facilities|ʩ,@separate|,#crop|ׯ,agricultural|ũ + N crop|ׯ,young| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + V compile|༭ + V mix| + V sing| + COOR {and|} +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N wind|,weak| +ͷϸ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N clothing| +ͺ V reconcile| +ͺ V reconcile| +ͻ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͻ V weaken| +ͻ N fact|,communicate|,#peaceful|,politics| +ͽ V reconcile| +; V BeSame|ͬ,sport| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| +г V reveal|¶ +ƽ ADJ aValue|ֵ,effect|Ч,gentle|,desired| +ƽ N human|,military| +ƽ V exist|,manner=together|ͬ +ƽ N human| + V BeSame|ͬ,sport| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,religion|ڽ,male| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N sound|,#music| + N human|,*persuade|Ȱ˵ + N symbol|,#quantity| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +̸ V discuss|,content=peaceful|,politics| + N place|ط,ProperName|ר,(China|й) +ϡ V mediate| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ɫ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Լ N agreement|Լ,#peaceful|,politics| +Թ V ally| + ADJ aValue|ֵ,temperature|¶,warm| + N character|,surname|,human|,ProperName|ר +α ADV {comment|} +γ ADV {comment|} +ε ADV aValue|ֵ,degree|̶,very| +ε ADJ aValue|ֵ,kind|,question| +η ADV {comment|} +ι N {cause|ԭ,question|} +ο ADV {comment|} +ο CONJ {supplement|ݽ} +ֶΪ ADV {comment|} + ADJ aValue|ֵ,kind|,question| +ȥδ V do|,content=event|¼ +ʱ ADV time|ʱ,question| + N medicine|ҩ,(China|й) +ν V be|,question| + ADV {comment|} + ADJ aValue|ֵ,kind|,question| + ADV {cause|ԭ,question|} + ADV {manner|ʽ,question|} + ADV location|λ,question| +ֹ ADV aValue|ֵ,degree|̶,over| + V AmountTo|ܼ + ADJ aValue|ֵ,range|,all|ȫ + V fit|ʺ + V include| + V shut|ر +ϰ V manage|,manner=together|ͬ,commercial| +ϱ V compile|༭,manner=together|ͬ +ϲ V merge|ϲ +ϲ N human|,*merge|ϲ +ϳ V sing| +ϳ V forming|γ +ϳά N material| +϶Ϊһ V merge|ϲ +Ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϸ̳ N human|,*receive| +Ϸ N attribute|,standard|׼,law|ɷ,&event|¼ +Ϸ N place|ط,city|,ProperName|ר,(China|й) +ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϲ V merge|ϲ,patient=fund|ʽ,commercial| +Ϻ V fit|ʺ +ϻ N tree| +ϻ N tree| +ϻ V merge|ϲ,patient=fund|ʽ,commercial| +ϻ V attack|,manner=together|ͬ +ϼ N medicine|ҩ +ϼ V AmountTo|ܼ +ϼ ADJ aValue|ֵ,importance|,main| +ϼ V discuss| +ϼ V think|˼ +ϼ N community|,family|,complete| +Ͻ N metal|,material| +Ͻ N metal| +Ͽ V BeRecovered|ԭ,medical|ҽ +Ͽ ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + V ize|̬,PatientAttribute=correct|ȷ + V cooperate| + V ComeTogether| + V cooperate| +£ V merge|ϲ +ı N fact|,engage|,#crime|,together|ͬ,undesired|ݬ +ı V plan|ƻ,#crime|,manner=together|ͬ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V calculate| + ADJ aValue|ֵ,pattern|ʽ,proper|,desired| +ͬ N agreement|Լ +Χ V surround|Χ + V sleep|˯ +ҳ N part|,%machine| +һ V merge|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V discuss| +Ӫ V manage|,manner=together|ͬ,commercial| +Ӱ V TakePicture| +Ӱ V image|ͼ,$TakePicture| + V use|,manner=together|ͬ +Լ N document|,#agree|ͬ,commercial|,industrial| +բ V TurnOn| + V fit|ʺ + N institution|,news|,ProperName|ר,(US|) + V compile|༭,manner=together|ͬ + V merge|ϲ,patient=fund|ʽ,commercial| + V recreation| + V cooperate| + N human|,cooperate| + V merge|ϲ + N tool|þ,cubic|,@put| +д N tool|þ,*record|¼ +з N food|ʳƷ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| +ǹ N weapon|,*firing| + N beast| + N part|,%beast|,hair|ë + N waters|ˮ,linear| +Ӱ N part|,%land|½,#waters|ˮ,edge| +ӱ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ӵ N waters|ˮ,linear|,generic|ͳ +Ӵ N waters|ˮ,linear| +ӵ N waters|ˮ,linear| +ӵ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ӹ N waters|ˮ,small|С,linear| +ӹ N part|,%land|½,#waters|ˮ,edge| +ӿ N part|,%waters|ˮ,mouth| + N beast| + N waters|ˮ,linear| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׹ N shows| + N place|ط,capital|,ProperName|ר,(Vietnam|Խ) + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,linear| + N waters|ˮ,linear| +ɽ N place|ط,#country| +̲ N part|,%land|½,#waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N part|,%waters|ˮ,linear| + N part|,%waters|ˮ,linear|,ProperName|ר + N part|,%waters|ˮ,curved| + N waters|ˮ,linear|,mass| + N place|ط,ProperName|ר,(China|й) +з N fish| + N part|,%land|½,#waters|ˮ,edge| +Դ N part|,%waters|ˮ,head|ͷ + V transport|,instrument=ship| + N fish| + ADJ aValue|ֵ,dampness|ʪ,waterless| +֮ N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר +ն N place|ط,capital|,ProperName|ר,(Finland|) +պ ADJ aValue|ֵ,quality|,great|ΰ,desired| +պ ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר +³ N human|,official|,politics|,ProperName|ר,(USSR|) +Ȼ ADJ aValue|ֵ,degree|̶,extreme| +Ȼ ADJ aValue|ֵ,impression|ӡ,strong|ǿ + CLAS unit|λ,&frequency|Ƶ + ADJ aValue|ֵ,color|ɫ,brown| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N bird| +׷ͯ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ⱥ ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + V congratulate|ף +ش N expression|,@congratulate|ף +ص N expression|,@congratulate|ף +ص N readings|,@congratulate|ף + N tool|þ,*congratulate|ף + V congratulate|ף,cause=festival| +ϲ V congratulate|ף,cause=festival| + N letter|ż,@congratulate|ף + ECHO sound| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,status|,^passed|ϸ +ڰ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ڰ ADJ aValue|ֵ,brightness|,dark| +ڰ ADJ aValue|ֵ,color|ɫ,black|,white| +ڰ ADJ aValue|ֵ,color|ɫ,colored| +ڰ ADJ aValue|ֵ,correctness|,&entity|ʵ +ڰ N attribute|,trueness|α,&entity|ʵ +ڰ N stationery|ľ,@write|д +ڰ屨 N readings|,news| +ڰ N community|,crime|,#police|,undesired|ݬ +ڲ ADJ aValue|ֵ,color|ɫ,black| +ڳԺ V cheat|ƭ +ڵ N community|,crime|,#police|,undesired|ݬ +ڵ N facilities|ʩ,route|·,dark| +ڵ N fact|,crime|,#police|,undesired|ݬ +ڵϹ ADJ aValue|ֵ,brightness|,dark| +ڶ N celestial| +ڶ ADJ aValue|ֵ,brightness|,dark| +ڶ N plant|ֲ +ڷ N part|,%human|,hair|ë,black| +ڸ N stone|ʯ,material| +ڸҹ N time|ʱ,day|,night| +ڹ¡ ADJ aValue|ֵ,brightness|,dark| +ڹ N MusicTool| +ڹ N lights| +ں N waters|ˮ,ProperName|ר +ں N place|ط,city|,ProperName|ר,(China|й) +ں ADJ aValue|ֵ,brightness|,dark| +ں ADJ aValue|ֵ,color|ɫ,black| +ڻ N inanimate|,$(smuggle|˽),#crime|,undesired|ݬ +ڻ N inanimate|,undesired|ݬ +ڿ N human|,*damage|,#software|,undesired|ݬ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,*win|ʤ,sudden| + N livestock|,black| + N crop|ׯ + N account|,@record|¼,#name|,#crime| +ơ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,brightness|,dark| +Ȳ N disease| + N human|,#status|,^passed|ϸ + N human|,black| +ɫ ADJ aValue|ֵ,color|ɫ,black| +ɫ N physical|,#black| + N community|,crime|,#police|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,crime|,#police|,undesired|ݬ + N human|,#crime|,#police|,undesired|ݬ +ֵ N community|,crime| + N material|,?tool|þ + N attribute|,kind|,&character|,&symbol| + N natural|Ȼ + N attribute|,kind|,&character|,&symbol| + N stone|ʯ,material| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N beast| + N beast| +ѹѹ N qValue|ֵ,amount|,many| +ѹѹ ADJ qValue|ֵ,amount|,many| +ҹ N time|ʱ,day|,night| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,color|ɫ,black| + N fish| + N fruit|ˮ + N trace|,#skin|Ƥ,#human| + N trace|,celestial|,#weather| + N beast| +Ƥ ADJ aValue|ֵ,property|,#material| + N fish| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + N trace| +ۼ N trace| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ qValue|ֵ,amount|,few| +а ADJ aValue|ֵ,ability|,able|,help| +б ADJ aValue|ֵ,will|־,strong|ǿ + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,will|־,strong|ǿ +ݶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ץ V PayAttention|ע + V hate| + V repent|û +޲ V expect| +޲ V expect| + N fact|,undesired|ݬ,#sorry|ϧ +ɸ V worried|ż + V MakeSound| + V prosper| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,posture|,horizontal| + N part|,%character| +ᱩ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N place|ط,city|,ProperName|ר,(Japan|ձ) + N wealth|Ǯ +ֱײ V GoForward|ǰ +ᴩ V cross|Խ + V cross|Խ +̫ƽ V cross|Խ,LocationThru=waters|ˮ + N part|,%inanimate|,surfacial| + N mark|־ + V cross|Խ +½ V cross|Խ,LocationThru=land|½ + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +᳦ N part|,%AnimalHuman|,viscera| + V cross|Խ + N part|,%building|,bone| + N text|,$sign|д + N mark|־ + N part|,%inanimate|,surfacial| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ +ɨ V destroy| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ + V exist| + V happen| +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| + V die| +Ƽ N part|,%AnimalHuman|,flesh| + ADJ aValue|ֵ,direction| + V IllBehave| +аԵ V IllBehave| + V levy|,possession=expenditure|,manner=fierce| + N mark|־,#location|λ,#direction| +ب V cross|Խ + V estimate| + V measure| + V estimate| + N tool|þ,*measure|,#weight| +ɽ N land|½,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,ordinary| +㶨 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɳ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɽ N land|½,ProperName|ר,(China|й) + N attribute|,temperature|¶,lasting|,&physical| + N aspiration|Ը,desired|,lasting| + N celestial|,space|ռ + V MakeSound| + V expel| + V firing| + V firing|,military| +䶯 V excite|ж +䶯һʱ V excite|ж + V expel| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V firing|,military| +¡ V MakeSound| + V MakeSound| +Ȼ ADV aValue|ֵ,SoundVolume|,loud| +ը V firing|,military| +ը N weapon|,aircraft|,*firing| + V cheat|ƭ + V deceive|ƭ + V entice| +崫 V disseminate| +嶯 V excite|ж +ƭ V cheat|ƭ +ƭ V deceive|ƭ +ƭ V entice| + V rob| +Ȼ ADJ aValue|ֵ,behavior|ֹ,bustling| +̧ V MakeHigher|,commercial| +̧ V MakeHigher|,patient=price|۸,commercial| +ôЦ V laugh|Ц +Ц V laugh|Ц + V ServeAsFoil| + V WarmUp| + V dry| +決 V dry| + V dry| +濾 V cook| + V ServeAsFoil| + N tool|þ,@dry|,*cook| + V ServeAsFoil| + N CloudMist| +Ĥ N part|,%AnimalHuman|,#eye| + N tool|þ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N bird| + N letter|ż +蹵 N part|,%inanimate|,mouth| + N human|,able|,desired| + N bird| + N phenomena|,lucky|,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +鲨 N water|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| +鶼˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Honduras|鶼˹) +鶼˹ N place|ط,country|,ProperName|ר,(South America|) +鶼˹ N human|,(Honduras|鶼˹) + N water|ˮ + N phenomena|,undesired|ݬ,#waterlogging|,#weather| + ADJ aValue|ֵ,SoundVolume|,loud| + N water|ˮ,strong|ǿ,#waters|ˮ +ˮ N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N water|ˮ,strong|ǿ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ + N phenomena|,#liquid|Һ,#undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,quality|,great|ΰ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,attachment| +۾ N affairs|,industrial|,agricultural|ũ,commercial| +ͼ N plan|ƻ,great|ΰ +ΰ ADJ aValue|ֵ,posture|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V MakeBetter|Ż +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N material|,red|,*congratulate|ף + N payment| + N result|,desired|,#succeed|ɹ + N fact|,GetMarried|,die| +ϲ N fact|,GetMarried|,die| + N disease| +Ǵ N disease| + N payment| +챦ʯ N stone|ʯ,treasure|䱦 + N drinks|Ʒ +쳡 N place|ط,ProperName|ר,(Russia|) +쳾 N place|ط,ordinary|,#human| + N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +춹 N part|,%tree|,#love|,embryo| +춹 N part|,%vegetable|߲,embryo|,$eat| +춹 N vegetable|߲ + N human|,female|Ů +칯 N medicine|ҩ + V BeWell|׳ + N fruit|ˮ +캣 N place|ط,ProperName|ר + N beast| +컨 N medicine|ҩ,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N army|,ProperName|ר,past| + N payment| + V angry| + V shy| + N InsectWorm|,undesired|ݬ + N human|,#young| + N tool|þ,$PutOn|,*decorate|װ + N plant|ֲ +¥ N readings|,glorious|,(China|й) +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ + N crop|ׯ,?material| +ñ N clothing|,#head|ͷ,red| +ñ N human|,#occupation|ְλ,*TakeAway|ᶯ +ù N medicine|ҩ +ľ N wood|ľ + N human|,*reconcile|,#GetMarried| + N tool|þ,@punish|,sport| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N mark|־,red|,desired| + N human|,able| + N material| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,color|ɫ,red|,&human| + ADJ aValue|ֵ,color|ɫ,red|,desired| +ɫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ N attribute|,color|ɫ,red|,&physical| + V cook| +ʮ N community|,medical|ҽ +ʮֻ N community|,medical|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N tree| + N material|,?edible|ʳ + N crop|ׯ,?material| +ͨͨ ADJ aValue|ֵ,color|ɫ,red|,desired| +ͷļ N document|,formal|ʽ + N material| + N lights| + N lights| + N human|,#community|,politics| +ϸ N part|,%AnimalHuman|,liquid|Һ + N part|,%event|¼,nerve| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ + N emotion|,loyal|Т,desired| + N human|,*perform|,glorious|,entertainment| + N mark|־ +ѧ N knowledge|֪ʶ,literature| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N human|,female|Ů,beautiful| + V angry| +۲ N disease|,eye| +۲ N emotion|,jealous|ʼ + ADJ aValue|ֵ,color|ɫ,red|,desired| +Ҷ N part|,%plant|ֲ,hair|ë + N human|,religion|ڽ +ӧǹ N weapon|,*stab| + N phenomena|,desired|,#lucky| + N attribute|,countenance|,red|,&human| + N fruit|ˮ +֩ N InsectWorm|,undesired|ݬ + V swollen| + V cook| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,mouth| + N tool|þ,*disseminate| +ͷ N part|,%AnimalHuman|,mouth| + N disease| + N character|,surname|,human|,ProperName|ר + N human|,royal| + N human|,royal| + N human|,royal|,female|Ů + N beast| + N human|,young|,wise| +ͷ N AlgaeFungi|ֲ + N beast| + V MakeSound| + V cry| + V cry| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + ADJ aValue|ֵ,thickness|,thick| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N emotion|,like|ϧ,kindhearted|,desired| + N attribute|,thickness|,&physical| +˱ V treat|Դ,manner=biased|ƫ + V WellTreat|ƴ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,thickness|,&physical| +ն ADJ aValue|ֵ,thickness|,thick| + N tool|þ,$GiveAsGift| + N payment|,many| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʵ ADJ aValue|ֵ,thickness|,thick| +ʵ ADJ qValue|ֵ,amount|,many|,desired| + V expect| +޳ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N aValue|ֵ,weight|,heavy| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V SayHello|ʺ + V wait|ȴ + V RegardAs| +Ա N human|,redundant| +ίԱ N human|,official|,politics| + V wait|ȴ,content=LandVehicle| + N room|,@wait|ȴ,#LandVehicle| + N bird| + V wait|ȴ,content=interrogate|,police| +ѡ N human|,$select|ѡ + V wait|ȴ,content=cure|ҽ,medical|ҽ + N room|,@wait|ȴ,#cure|ҽ,medical|ҽ + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,future| + N character|,surname|,human|,ProperName|ר + N human|,female|Ů,royal| + N human|,future| + N location|λ,hind| + N time|ʱ,future| +뱲 N time|ʱ,process|,@alive|,half| +볡 N part|,%fact|,#compete|,#exercise| + N time|ʱ,process|,@alive|,half| + N human|,future| + N location|λ,hind|,space|ռ + N part|,AnimalHuman|,hind|,body| + ADJ aValue|ֵ,property|,$SetAside|,replace| +۾ N human|,military| + ADJ aValue|ֵ,location|λ,hind| + N location|λ,hind| + N part|,%physical|,hind|,body| + N human|,future| + N time|ʱ + N human|,family|,male| + N human|,friend|,*help| + V fight| + N place|ط,hind|,military| + N part|,%AnimalHuman|,foot| + N part|,%clothing|,foot| + V LookBack| + V rotate|ת +֮ V worried|ż + N result| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,unfortunate|,undesired|ݬ + V repent|û + N part|,%text| + V KeepOn|ʹ + V KeepOn|ʹ + N part|,%clothing|,body| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,effect|Ч,&drinks|Ʒ,&medicine|ҩ + N attribute|,strength|,&human| + ADJ aValue|ֵ,time|ʱ,hind| + ADV {supplement|ݽ} + V surpass|ǿ + N time|ʱ,ProperName|ר,past| +· N facilities|ʩ,linear| +· N facilities|ʩ,linear|,route|·,@GoBackward| + N human|,family|,female|Ů + N attribute|,power|,&human|,&organization|֯ + N part|,%building|,mouth| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,future| + N location|λ,hind|,space|ռ + ADJ time|ʱ,future| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N time|ʱ,future|,year| + N human|,family|,female|Ů + V fear| + N location|λ,hind| + N time|ʱ,ending|ĩ + V appear| +֮ N human|,able| + N affairs|,#provide| +ڲ N institution|,*provide| + N human|,future| + N human|,future|,*bear|е + N time|ʱ,afternoon| + N part|,%clothing|,body| + N part|,%human|,hind|,body| + ADJ aValue|ֵ,age|,adult| + N human|,adult| +η ADJ aValue|ֵ,ability|,able|,desired| + N human|,future| + N time|ʱ,future| + N fact|,#die|,#bury| +֮ʦ N human|,*teach|,future| + V MoveItBack| +̨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +̨ N facilities|ʩ,space|ռ,#perform| +̨ N human|,friend|,*help| + ADJ aValue|ֵ,source|Դ + N time|ʱ,future|,day| +Լ N disease| +ͷ ADJ aValue|ֵ,time|ʱ,future| +ͷ N location|λ,hind|,space|ռ +ͷ ADJ time|ʱ,future| + N part|,%animal|,leg| + V GoBackward| + N human|,*exercise|,(football|) + V KeepOn|ʹ +֢ N disease| + N human|,future| +Ӱ N trace|,#lights|,hind| +Ԯ N human|,*help| +Ժ N part|,%building|,space|ռ,hind| + N entity|ʵ +׺ N part|,language| + N part|,%LandVehicle|,@sit| + V cry| + V exhale| + V naming| + V exhale| +绽 V MakeTrouble| + V cry| + V weep| +ͺ N place|ط,city|,ProperName|ר,(China|й) + V call|ٻ + V cry| + V cry| + N human|,*cry| + V cry|,content=rescue| + ECHO sound| + N aspiration|Ը,expect| + V weep| + V respire| + N part|,%AnimalHuman|,viscera|,*respire| + N disease| + N part|,%AnimalHuman|,viscera|,*respire| +ϵͳ N part|,%AnimalHuman|,viscera|,*respire| +Х V MakeSound| +Х V GoThrough| + N character|,surname|,human|,ProperName|ר +Ӧ V fit|ʺ +Ӧ V reply| + N aspiration|Ը,expect| + V request|Ҫ +֮ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N character|,(China|й) + ECHO sound| + V despise| + ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| + V wave|ڶ + N tool|þ,cubic|,@WarmUp|,#liquid|Һ + N tool|þ,cubic|,@store| +« N plant|ֲ +« N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,past| + N part|,%human|,hair|ë + V TalkNonsense|Ϲ˵ + N InsectWorm|,*fly|,*sting| + N material|,?food|ʳƷ + N plant|ֲ + N material|,?food|ʳƷ + V IllBehave| + V MakeTrouble| + V quarrel| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܲ N medicine|ҩ,*improve| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N MusicTool| +˵ V TalkNonsense|Ϲ˵ +˵˵ V TalkNonsense|Ϲ˵ +˼ V guess|² + N fruit|ˮ +ͬ N facilities|ʩ,route|· + N part|,%AnimalHuman|,hair|ë + V TalkNonsense|Ϲ˵ + V TalkNonsense|Ϲ˵ + N human|,undesired|ݬ,*rob|,crime| + N part|,%AnimalHuman|,hair|ë +Ϊ V IllBehave| +Ϊ N human|,evil| + V wipe| + N MusicTool| + N character|,(China|й) + N InsectWorm|,*fly| + N FlowerGrass| + N shape| + N beast| +ٻ V damage| + N beast| + V entice|,means=please|ȡ +Ⱥ N human|,undesired|ݬ,friend| + N experience|,doubt| + V StateChange|̬ + V fasten|˩ + N shape| + N material|,?food|ʳƷ + V MakeLiving|ı +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N material|,*thicken|Ũ +Ū V deceive|ƭ +ǽֽ N paper|ֽ,*cover|ڸ,#skin|Ƥ,#building| +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϳ N human|,foolish| + V MakeLiving|ı + N place|ط,ProperName|ר + N waters|ˮ,surfacial| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,surfacial| +ɽɫ N attribute|,scene|,&inanimate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%land|½,#waters|ˮ,edge| +ɫ ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +ͤ N facilities|ʩ,space|ռ,#waters|ˮ,@WhileAway| + N shape|,linear|,round|Բ + N lights| + N shape|,linear|,round|Բ + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N beast| + N document|,past|,*order|,military| + N SportTool|˶ + N part|,%human|,hand| + N place|ط,dangerous|Σ,undesired|ݬ,#die| +ڰ V treat|Դ,manner=brave|,target=dangerous|Σ + V escape|,cause=dangerous|Σ +ǯ N tool|þ,*hold| + V look|,manner=greedy|̰ +ͷβ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +Ѩ N place|ط,dangerous|Σ,military|,#die| + V frighten|Ż + V protect| + N facilities|ʩ,#waters|ˮ,*protect| + N part|,%building|,skin|Ƥ +Ǻ N facilities|ʩ,#waters|ˮ,*protect| + V keep| + V protect|,scope=wrong| + N tool|þ,*protect| + V protect| + N part|,%army| + V protect|,patient=official|,royal|,military|,police| + V TakeCare| + V TakeCare|,medical|ҽ +Ա N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ,mass| + V protect|,patient=tree| + N facilities|ʩ,*protect| + N entity|ʵ,*protect| + N tool|þ,*protect|,#religion|ڽ +ʿ N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ +ʿ N human|,#occupation|ְλ,official|,*TakeCare|,*cure|ҽ,medical|ҽ + V protect| + N tool|þ,*protect|,#leg| + N human|,*protect|,*defend| + V protect| + N weapon|,ship|,military| +ϥ N tool|þ,*protect|,#leg| + V TakeCare|,medical|ҽ + V foster| + V maintain| + N document|,*prove|֤,#country|,#tour| + ADV {EachOther|໥} + V enrich|ʵ,manner=EachOther|໥ + V visit|,politics|,manner=EachOther|໥ + V relate|й + V exchange| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + N attribute|,ability|,tie|,&entity|ʵ +» V understand|,manner=EachOther|໥ +ͨ V exchange| +ͨ V provide| + ADV {EachOther|໥} + V help|,manner=EachOther|໥ + N community|,#help|,EachOther|໥ + N place|ط,city|,ProperName|ר,(China|й) + N shows| + N account|,#wealth|Ǯ + N community|,#family| + N part|,%building|,mouth| + N account|,*record|¼,#status| + N account|,@record|¼,#status| + N attribute|,status|,&human| + N attribute|,status|,&human| +ڲ N account|,@record|¼,#status| +ͷ N account|,#wealth|Ǯ + N location|λ,%room|,external| + N human|,family| + N FlowerGrass| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,color|ɫ,colored| + N attribute|,pattern|ʽ,&inanimate| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N disease| + N location|λ,#disease|,#wounded| + N shape| + V spend| + N tool|þ,#fire|,*WhileAway|,*congratulate|ף + ADJ aValue|ֵ,color|ɫ,grey| + N part|,%FlowerGrass|,body| + N part|,%FlowerGrass|,body| + N tool|þ,*decorate|װ + N material|,?clothing| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass| + N material|,?drinks|Ʒ + N LandVehicle| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N FlowerGrass|,mass| + N InsectWorm| + N tool|þ,*illuminate|,*congratulate|ף + N drinks|Ʒ,$addict|Ⱥ + N material|,?clothing| + N FlowerGrass| + N FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#plant|ֲ + V spend| + N part|,%FlowerGrass| +ʯ N material|,stone|ʯ,*build| + N material|,stone|ʯ,*build| +Ƕ N part|,%FlowerGrass|,embryo| + N part|,%FlowerGrass|,head|ͷ +Բ ADJ aValue|ֵ,circumstances|,happy|,desired| + N artifact|˹,*GiveAsGift|,#GetMarried| + N fruit|ˮ + N payment| + N human|,male|,flighty|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + N tool|þ,*decorate|װ + N FlowerGrass| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N time|ʱ,season|,#FlowerGrass| + ADJ aValue|ֵ,age|,aged| + N attribute|,posture|,#ShowOff|ҫ,&human| + N SportTool|˶ + N fact|,sport| + N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N material|,?food|ʳƷ + N LandVehicle|,#GetMarried| + N tool|þ,*look|,#aged|,#eye| + N tool|þ,*GiveAsGift| + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +¶ˮ N tool|þ,*MakeUp|ױ,liquid|Һ,fragrant| + N account|,*record|¼,#name| +ľ N plant|ֲ + N material|,?clothing| + N image|ͼ + N image|ͼ +ũ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N part|,%FlowerGrass| + N tool|þ,#fire|,*recreation|,*congratulate|ף + N tool|þ,cubic|,@planting|ֲ,#FlowerGrass| +ƿ N tool|þ,cubic|,*put|,#FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N time|ʱ,#FlowerGrass| + N mark|־,(US|) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(US|) +Ǯ V spend|,patient=money| +Ǯ˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ǹ N plans|滮,undesired|ݬ,*deceive|ƭ +ǹ N weapon|,past|,stab| +Ȧ N tool|þ,#die| + N part|,%FlowerGrass|,heart| +ɫ N attribute|,pattern|ʽ,&artifact|˹ + ADJ aValue|ֵ,color|ɫ,colored| + N crop|ׯ + N material|,?food|ʳƷ,*cook| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N tool|þ,#FlowerGrass| +˿ N part|,%FlowerGrass|,heart| +̳ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| +̳ N facilities|ʩ,space|ռ,@put|,#FlowerGrass| +Ƶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N room| +Ž ADJ aValue|ֵ,bearing|̬,beautiful|,desired| +Ž ADJ aValue|ֵ,color|ɫ,colored| + N part|,%FlowerGrass| + N attribute|,pattern|ʽ,&inanimate| + N expenditure| + N information|Ϣ,interesting|Ȥ + V TalkNonsense|Ϲ˵ + N disease|,#look|,#aged|,#eye| + N attribute|,pattern|ʽ,&artifact|˹ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N fact|,sport| +ҩ N part|,%FlowerGrass| +Ҭ N part|,%vegetable|߲,embryo|,$eat| +Ҭ N vegetable|߲ +԰ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +֦չ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N part|,%FlowerGrass|,body| + N human|,poor|,undesired|ݬ,*beg| + N part|,%FlowerGrass|,body| + ECHO sound| + V betray|,politics|,military| + ECHO sound| +Ȼ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ц V laugh|Ц +ȡ V please|ȡ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,grey| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + N part|,%thing|,heart| + N place|ط,country|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N material|,?clothing| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N tool|þ,*illuminate|,*decorate|װ + N place|ط,ProperName|ר,(China|й) +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N place|ط,#wealth|Ǯ,(US|) + N fact|,entertainment| + N part|,%human|,hair|ë,white| + N tool|þ,royal| + N human|,industrial|,(China|й) + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + CLAS unit|λ,&length|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,ProperName|ר,(China|й) + N human|,#country|,(China|й) + N human|,(China|й) +ɳ N place|ط,capital|,ProperName|ר,(Poland|) +ɽ N land|½,ProperName|ר,(China|й) +ʢ N place|ط,capital|,ProperName|ר,(the United States of America|) +ʢ N place|ط,provincial|ʡ,ProperName|ר,(US|) + ADJ aValue|ֵ,standard|׼,#temperature|¶ + N language|,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + N human|,(China|й) + N language|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V slide| + N SportTool|˶,sport| + N fact|,sport| + N part|,%machine| + V exercise|,sport| + N human|,sport| + N part|,%implement| + N facilities|ʩ,route|· + V slide| + N LandVehicle| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + V cook| + N part|,%implement| + ADJ aValue|ֵ,SmoothFinish|,polished| + V decline|˥,commercial| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| +ʯ N material| +ʯ N stone|ʯ +ʯ N material| +ˬ ADJ aValue|ֵ,SmoothFinish|,polished| +ǹ N human|,*firing|,military| + N tool|þ,*recreation| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͷ N human|,sly|,undesired|ݬ + V fly| + V slide| +ѩ V slide| +ѩ N human|,sport| + V draw| + N image|ͼ,$draw| + N part|,%character| + N stationery|ľ,@draw| + N readings|,#image|ͼ + N PenInk|ī,*draw| +伢 V pretend|װ + N stationery|ľ,@draw| + N account|,@gather|ɼ,#image|ͼ +Ϊ V restrain|ֹ + N readings|,#image|ͼ,crude|ª +๷ V fail|ʧ + V draw| + N account|,@gather|ɼ,#image|ͼ + N human|,literature|,*draw| + N human|,*draw|,literature| + N image|ͼ + N publications|鿯,#image|ͼ + N part|,%building|,nerve| +㾦 V enrich|ʵ +ü V MakeUp|ױ +ü N bird| + N image|ͼ,#shows| + N part|,%image|ͼ,appearance|,skin|Ƥ +Ƥ N tool|þ,*cover|ڸ,*deceive|ƭ +Ƭ N image|ͼ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + ADJ fail|ʧ +ʦ N human|,literature|,*draw| + N room|,@draw| +̳ N community|,#draw| +ͼ V draw| + N text|,#shows| + V draw|,content=image|ͼ +Ѻ V write|д,content=mark|־ +Ѻ V write|д,content=name| +Ժ N institution|,#draw| +չ N fact|,@display|չʾ,#image|ͼ + V cut| + V delimit| + V distinguish|ֱ + V draw| + V drive|Ԧ + V issue|ַ + V plan|ƻ + V issue|ַ + V WorthNot|ֵ + V worth|ֵ + V delimit| + V classify| + V distinguish|ֱ + V include| + V occupy|ռ + V draw| + V cut| + V distinguish|ֱ +ȭ V compete| +ʱ ADJ aValue|ֵ,kind|,special| + V calculate| + V worth|ֵ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N ship|,small|С + V StateChange|̬ + V alter|ı + V change| + V consume|ȡ + V gather|ɼ +ʹΪ V alter|ı,StateIni=sorrowful|,StateFin=strength| + V remove| + V StateChange|̬ + N material|,*feed|ι,#crop|ׯ +ɸΪ V alter|ı,StateIni=enemy|,StateFin=friend| + N affairs|,#chemical|ѧ,industrial| + N InstitutePlace|,factory|,@produce|,#chemical|ѧ,industrial| +ҵ N affairs|,#chemical|ѧ,industrial| +Ϊ˽ V cheat|ƭ + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + V remove| + N method|,*cure|ҽ + V alter|ı,patient=name| + V attribute|,name| +ŧ V inflamed| + N entity|ʵ,$mean|ָ +ʯ N stone|ʯ +Ϊ V disappear|ʧ + N material|,?clothing| +Ϊ V BeRecovered|ԭ,StateIni=safe| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,#chemical|ѧ +ѧ N chemical|ѧ +ѧҩƷ N chemical|ѧ + V check| + N room|,@check| + N part|,%implement| +Ե V gather|ɼ +Ϊ V alter|ı,StateIni=complete|,StateFin=part| +װ V MakeUp|ױ +װ V pretend|װ +ױ V MakeUp|ױ +ױƷ N tool|þ,*MakeUp|ױ +ױʦ N human|,#occupation|ְλ,*MakeUp|ױ + V alter|ı + V speak|˵ + N text|,$speak|˵ + V farewell| + N information|Ϣ +Ͷ V FitNot| + N part|,%talk|̸,nerve| + N thought|ͷ,#talk|̸ + N part|,%talk|̸,nerve| + V LookBack| + V speak|˵,content=past| + N shows| + N community|,*perform|,entertainment| +л ADJ aValue|ֵ,behavior|ֹ,tactful| +˵ ADV {comment|} + N part|,%communicate|,heart| +Ͳ N tool|þ,*disseminate|,#sound| +ͷ N part|,%talk|̸,nerve| +Ա N human|,#occupation|ְλ,employee|Ա +ϻ N human|,*speak|˵ +ϻ N tool|þ,*disseminate|,#sound| + N sound|,#language| + N text|,$speak|˵ + N tree| + N tree| + V ThinkOf|˼ + N character|,surname|,human|,ProperName|ר + V cherish|Ļ + N emotion| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + V cherish|Ļ + N part|,%AnimalHuman|,body| + N tool|þ,*tell|,#time|ʱ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V ThinkOf|˼,content=past| + V hate| + N human|,*hate| + V ThinkOf|˼,content=past| + V ThinkOf|˼ + V ThinkOf|˼ + V entice|,politics| +̥ V pregnant|,#medical|ҽ + V ThinkOf|˼ + V doubt| + N experience|,doubt| +ɲ ADJ aValue|ֵ,countenance|,doubt| +ɵ ADJ aValue|ֵ,countenance|,doubt| + N human|,*doubt| + V cherish|Ļ + V pregnant|,#medical|ҽ +Ŷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) + V OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + N thought|ͷ,evil| + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + N human|,undesired|ݬ,evil| + V OutOfOrder| + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N attribute|,reputation|,disgraced|,undesired|ݬ,&human|,&organization|֯ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V FeelingByBad| + N human|,undesired|ݬ,evil| +˵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V damage| + N fact|,undesired|ݬ + V OutOfOrder|,medical|ҽ + V WeatherBad| + N fund|ʽ,^$return| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V joyful|ϲ + V joyful|ϲ + V pass|ȹ,manner=joyful|ϲ + V praise|佱 +ϲϲ ADJ joyful|ϲ + V assemble|ۼ,manner=joyful|ϲ +һ V assemble|ۼ,manner=joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V congratulate|ף +׶ V joyful|ϲ +Ц N sound|,#joyful|ϲ + V farewell| + V joyful|ϲ +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ +Ц V laugh|Ц + V joyful|ϲ + N emotion|,like|ϧ,kindhearted|,desired| + V entertain|д +ӭ V welcome|ӭ +ӭ N fact|,welcome|ӭ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +Ծ V joyful|ϲ + V joyful|ϲ + V BeNear| + N shape| + V protect|,patient=environment| + N institution|,*protect|,#environment|,ProperName|ר + V BeNear| + N location|λ,%city| + V look| + V BeNear|,partner=waters|ˮ + N part|,%event|¼ + N attribute|,environment|,&entity|ʵ + V protect|,patient=environment| +滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) + N attribute|,cleanness|ྻ,spotless|,&space|ռ +Ⱦ V pollute|ʹ,patient=environment| + V flow|,manner=circulate|ѭ +· N facilities|ʩ,route|· + N earth|,space|ռ + V BeNear| + V coil| +ɽ V BeNear|,partner=land|½ +ɽ N location|λ,%land|½ + V look| + V clean|ʹ,patient=environment| + ADJ aValue|ֵ,form|״,round|Բ +֬ N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V GoBack| + ADV Vcontinue| + ADV aValue|ֵ,degree|̶,more| + ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ + ADV also|Ҳ + V return| + V return|,commercial| + V return|,possession=wealth|Ǯ,commercial| +Ϣ V return|,possession=wealth|Ǯ,commercial| + V return|,^Vable| + V return| + V return|,commercial| + ADJ aValue|ֵ,standard|׼,average| + V BeRecovered|ԭ,StateIni=die| + V resist| + V resist|,military| + V discuss|,content=price|۸,commercial| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V return| + ADV time|ʱ + CONJ {or|} + V resist| + V GoBack|,LocationFin=place|ط +ԭ V BeRecovered|ԭ +ԭ N chemical|ѧ +ԭø N chemical|ѧ +Ը V obey|ѭ,content=agree|ͬ +ծ V return|,possession=wealth|Ǯ,commercial| + V refute| + V BeRecovered|ԭ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + V weaken| + N part|,%machine|,*weaken| + N part|,%software|,*store| + N part|,%computer|,*store| + V BeRecovered|ԭ + V weaken| + ADJ weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + N attribute|,circumstances|,&event|¼ + V mediate| + V delay|,patient=build| + V weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + N part|,%land|½,skin|Ƥ + V delay| + V BeRecovered|ԭ + V delay|,patient=punish|,#police| + V fact|,punish|,#police| + V VehicleGo|ʻ,manner=slow| + V walk|,manner=slow| + V BeRecovered|ԭ + V delay|,content=levy| + V exchange| + V exchange|,commercial| + V replace| + V replace|,patient=affairs| + V replace|,patient=foot| + V replace|,patient=crop|ׯ,agricultural|ũ + V replace|,patient=LandVehicle| + V replace| + V cease|ͣ,content=defend|,military| + V cease|ͣ,content=defend|,military| + V exchange|,possession=location|λ + V exchange|,patient=affairs| + V replace|,patient=clothing| +仰˵ ADV {comment|} +ë V replace|,patient=hair|ë + V respire| +Ǯ V exchange|,possession=money| +ȡ V exchange| + V replace|,patient=human|,sport| + V exchange| +ҩ V BeSame|ͬ + V exchange|,possession=document| +ϴ V replace| + N part|,%machine|,*change|,#direction| +֮ ADV {comment|} +ҩ V replace|,patient=medicine|ҩ,medical|ҽ + V SufferFrom|,medical|ҽ + N emotion|,sad|dz,undesired|ݬ + N phenomena|,undesired|ݬ,#unfortunate| + V sad|dz +ǾҲ V ill|̬ + V ill|̬ + N location|λ,#ill|̬ +ûʧ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ûʧ V worried|ż,cause=ProsCons| + V ill|̬ +빲 V undergo|,content=hardship|,manner=together|ͬ + V SufferFrom| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + V cry| + V LookBack| + V call|ٻ + V call|ٻ + V foster| + ADJ aValue|ֵ,brightness|,bright| + V AppearanceChange|۱ + V illuminate| +Ȼһ V prosper| +ɢ V BeBad|˥ +ɢ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɢ V weaken| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official| + N human|,#occupation|ְλ,official|,#royal| + N undertake|,content=official| +¹ N human|,#occupation|ְλ,official|,#royal| +º N community|,official| +; N phenomena|,#official| + ADJ aValue|ֵ,trueness|α,fake|α +õ N fact|,*disseminate| +õ N tool|þ,*disseminate| +û V change| +þ N experience|,empty|,wrong| + V disappear|ʧ + V think|˼ + N thought|ͷ,empty| +Ӱ N image|ͼ,empty|,wrong| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V despise| + N land|½,desolate|,undesired|ݬ + N land|½,surfacial|,desolate|,undesired|ݬ + N phenomena|,undesired|ݬ,wane|˥ +IJ N FlowerGrass| +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ N human|,wrong|,undesired|ݬ +ĵ N land|½,surfacial|,desolate|,undesired|ݬ +ķ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ķ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +ķ V despise| +ķ V end|ս +Ľ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren|,undesired|ݬ +Į N land|½,surfacial|,desolate|,undesired|ݬ + N time|ʱ,year|,undesired|ݬ,desolate|,#unfortunate| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V end|ս +ɽ N land|½,desolate| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +Ұ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ԭ N land|½,desolate| + V abandon| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + V flurried| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +æ V flurried| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + V end|ս +ƲӲ ADJ aValue|ֵ,color|ɫ,yellow| +Ƴγ ADJ aValue|ֵ,color|ɫ,yellow| +Ƶ N time|ʱ,day|,happy| +ƶ N crop|ׯ +ƶ N part|,%vegetable|߲,embryo|,$eat| +ƶ N vegetable|߲ +Ʒ N InsectWorm|,*fly| +ƹ N part|,%vegetable|߲,embryo|,$eat| +ƹ N vegetable|߲ +ƺ N waters|ˮ,ProperName|ר,(China|й) +ƺ N waters|ˮ,linear|,ProperName|ר,(China|й) +ƺɫ ADJ aValue|ֵ,color|ɫ,brown| +ƺɫ ADJ aValue|ֵ,color|ɫ,yellow| +ƻ N FlowerGrass| +ƻ N FlowerGrass|,?food|ʳƷ +ƻ N part|,%vegetable|߲,embryo|,$eat| +ƻ N vegetable|߲ +ƻ N fish| +ƻޣ N FlowerGrass| +ƻ N time|ʱ,night| +ƽ N material|,?food|ʳƷ +ƽ N metal|,material| +ƽʱ N time|ʱ,good| +ƾ N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ,(China|й) +ľ N tree| + N thought|ͷ,empty| + N chemical|ѧ + N plant|ֲ +ëѾͷ N human|,young|,female|Ů +÷ N time|ʱ,season|,#RainSnow|ѩ +÷ N RainSnow|ѩ + N material|,?food|ʳƷ,#crop|ׯ + N bird| +ţ N livestock| + N tool|þ,@punish|,sport| +ۼ V become|Ϊ,isa=official|,politics| +Ȳ N disease| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɳ N stone|ʯ + ADJ aValue|ֵ,physique|,ripe| + N beast| + N beast| +ͭ N metal|,material| + N stone|ʯ +ԭ N land|½ + N livestock| + N material|,*lubricate| + N material|,?food|ʳƷ + N fish| + N stone|ʯ,?material| + N medicine|ҩ,(China|й) +ݺ N bird| + N bird| + N disease| + N fish| + N beast| + N character|,(China|й) +ǰ N medicine|ҩ + N InsectWorm|,undesired|ݬ,*fly| +ȳ N InsectWorm|,undesired|ݬ,*fly| + N part|,%implement| +Ƭ N part|,%MusicTool| + ADJ aValue|ֵ,rank|ȼ,official| +ʵ N human|,#occupation|ְλ,royal| +ʸ N character|,surname|,human|,ProperName|ר +ʹ N house|,royal| +ʹ N clothing|,#head|ͷ,royal| +ʺ N human|,royal|,female|Ů +ʼ ADJ aValue|ֵ,rank|ȼ,official| +ʼ N community|,royal| + N human|,royal| + N community|,royal| +̫ N human|,royal|,female|Ů +̫ N human|,royal|,male| +̻ V worried|ż +̻̲ V worried|ż +̻ V worried|ż +̿ V fear| +ֲ̿ V fear| + V fear| + ADJ aValue|ֵ,brightness|,bright| + V SelfMoveInManner|ʽ,manner=fast| + V illuminate| + V shake|ҡ + V wave|ڶ +ε V shake|ҡ +ε V wave|ڶ +ζ V wave|ڶ + V shake|ҡ + V wave|ڶ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־,*deceive|ƭ + N mark|־,commercial| + ADJ aValue|ֵ,duration|,TimeShort| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ V know|֪ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N text|,*deceive|ƭ +ѱ V deceive|ƭ +ѳ V deceive|ƭ +ѻ N text|,*deceive|ƭ +ƭ V deceive|ƭ + N text|,*deceive|ƭ + ADJ aValue|ֵ,color|ɫ,grey| + N material|,@build| + N stone|ʯ,waste| +Ұ ADJ aValue|ֵ,brightness|,dark| +Ұ ADJ aValue|ֵ,color|ɫ,grey| +Ұ ADJ aValue|ֵ,color|ɫ,white| +ҳ N stone|ʯ,waste| +ҹ N human|,female|Ů,able| +һɫ ADJ aValue|ֵ,color|ɫ,yellow| +ҽ N stone|ʯ,waste|,#burn| +ҿ N metal|,material| + ADJ aValue|ֵ,brightness|,dark| + V disheartened| + ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +ɫ ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,clearness|,blurred| +ɫ ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N beast| + V disheartened| +ɥ V disheartened| + V disperse|ɢ + V order| + V shake|ҡ + V wipe| +ӱ V write|д +Ӷ V shake|ҡ +Ӷ N human|,*shake|ҡ +ӷ V disappear|ʧ,industrial| +ӷ N attribute|,performance|,disappear|ʧ,&liquid|Һ,industrial| +Ӹ V shake|ҡ,patient=weapon| +Ӻ V excrete|й,patient=waste| +Ӻ V excrete|й,patient=waste| +Ӻ V write|д +ӻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӻ V lavish|˷ +ӽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӽ V lavish|˷ + V wipe| + V draw| + V spray| + V write|д + V write|д,manner=fluent| +ʦ V order|,patient=army| + V shake|ҡ,patient=hand| + V shake|ҡ + N attribute|,brightness|,&inanimate| + V illuminate| +Ի ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ի ADJ aValue|ֵ,brightness|,bright| +Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ӳ V illuminate| + N mark|־ +ī N PenInk|ī,*write|д + N mark|־ + ADJ aValue|ֵ,range|,extensive| +ָ V BeRecovered|ԭ +ָ V TakeBack|ȡ +ָ V resume|ָ +ָ N time|ʱ,@BeRecovered|ԭ,medical|ҽ +ָ֪ V BeRecovered|ԭ,StateIni=dizzy| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֻ ADJ aValue|ֵ,range|,extensive| +׳ N InsectWorm| +׳没 N disease| + V GoBack| + V circle| + V reply| + V turn|Ťת +ذ V visit| +ر V recompense| +ر V reply| +ر V revenge| +ر V evade|ر +ز V refute| +ز ADJ aValue|ֵ,ability|,unable|ӹ,GoBack| +س N part|,%AnimalHuman|,viscera| +س ADJ aValue|ֵ,impression|ӡ,good|,desired| +س ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +س V order|,#computer| +س N fact|,GoBack| +ش V BeRecovered|ԭ,medical|ҽ +ش V time|ʱ,season|,#start|ʼ +ش V reply| +ش N human|,*reply| +ص V MakeSound| +ص V GoBack|,Vachieve| +ص V reply|,instrument=letter|ż +ط V GoBack|,LocationFin=place|ط +ط V GoBack|,LocationFin=place|ط +ط V visit| +ظ V reply| +ظ V reply|,instrument=letter|ż +ع V LookBack| +ع ADJ aValue|ֵ,attachment|,past| +عչ N fact|,InstitutePlace|,@display|չʾ,#past| +ع V GoBack| +ع V include| +ع N disease| +ع N law|ɷ,#earth| +ع V cook|,manner=also|Ҳ +غ CLAS NounUnit|,&event|¼ +ػ V reply| +ػ ADJ aValue|ֵ,form|״,curved| +ػ V WarmUp|,industrial| +ػ V resist| +ػ V resist|,military| +ؼ V GoBack|,LocationFin=family| +ؽ N knowledge|֪ʶ,religion|ڽ +ؽͽ N human|,religion|ڽ +ؾ V recompense| +ؾ V revenge| +ؾ V salute|¾ +ؾ V reject|ؾ +ؿ N payment| + V GoBack| + N part|,%building|,nerve| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V flow|,manner=reverse|ߵ + N water|ˮ + V collect|,commercial| + V cook|,manner=also|Ҳ +¯ V cook|,manner=also|Ҳ +¯ V produce|,manner=also|Ҳ +· N facilities|ʩ,route|·,@GoBack| +· N image|ͼ,linear| +· N part|,%implement| + V BecomeLess| + N human|,ProperName|ר,(China|й) +ȥ V GoBack| + N sound| + V BeBad|˥ + V BeRecovered|ԭ,medical|ҽ + V BecomeMore| +ʦ V GoBack|,military| + V collect| + V obtain|õ +վ N InstitutePlace|,*collect|,#waste| +װ N facilities|ʩ,*collect| + V CausePartMove| + V resist| + V CausePartMove|,PatientPartof=head|ͷ + V LookBack| + V LookBack| +췦 V BeUnable|,content=help| +췦 V BeUnable|,content=help| + V BeUnable|,content=help| +֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ + V fill| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V repent|û +ͷ· N facilities|ʩ,route|·,@GoBack| +ζ V LookBack| +ζ ADJ aValue|ֵ,content|,substantial|ʵ,desired| + V GoBack|,LocationFin=place|ط + V circle| + V LookBack| + N sound| +ת V BeRecovered|ԭ + V reply|,instrument=letter|ż + N stationery|ľ,*hold| + V repair| + V SelfMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V circle| + V MoveItBack| + V LookBack| +¼ N readings|,#LookBack| + ADJ aValue|ֵ,behavior|ֹ,#LookBack| + N sound| + N text|,#reply| +Ӧ V reply| + V GiveAsGift| +ִ N text|,*reply| +ת V TurnRound| + N community|,ProperName|ר,(China|й) + V refute| + V reply| + V look| + V StateChange|̬ + V damage| + V destroy| + V produce|,manner=also|Ҳ + V slander|̰ +ٰ V slander|̰ +ٻ V damage| +ٻ V destroy| + V destroy| + ADJ aValue|ֵ,ability|,able|,destroy| + V destroy| + V remove| + V damage|,patient=appearance| + V damage| + V damage| +һ V suffer|,content=destroy| +Լ V disobey|Υ,content=MakeAppointment|Լ + V repent|û +ڲ V repent|û +ڸ V amend| +ڹ V repent|û,cause=wrong| +ڹ V document|,*express|ʾ,#repent|û +ں V repent|û + V repent|û +֮޼ V repent|û + V repent|û + N human|,*repent|û + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,ability|,able|,perception|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N emotion|,like|ϧ,kindhearted|,desired| + N phenomena|,desired| +ݹ V arrive| + V arrive| + N place|ط,capital|,ProperName|ר,(New Zealand|) + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,day| + N time|ʱ,day|,night| +ް ADJ aValue|ֵ,brightness|,dark| + V unfortunate| +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N artifact|˹,crime| + V entice|,means=GiveAsGift|,crime| +߽ N artifact|˹,crime| +¸ N artifact|˹,crime| +¸ V entice|,means=GiveAsGift|,crime| + V entice|,means=GiveAsGift|,crime| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N fact|,undesired|ݬ,disgraced| + V BeAble|ܹ + V ComeTogether| + ADJ aValue|ֵ,ability|,able|,desired| + N community| + N fact| + N fact|,@communicate| + V meet| + V pay| + N time|ʱ + N time|ʱ,important| + V understand| + AUX {modality|} + N mark|־ + V eat|,manner=together|ͬ +᳡ N place|ط,@communicate| +᳤ N human|,#occupation|ְλ,official|,#community| + N expenditure| + N InstitutePlace| + V ComeTogether| +Ự V speak|˵ + N mark|־ + N affairs|,calculate|,#wealth|Ǯ + N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ƹ N affairs|,calculate|,#wealth|Ǯ +ʦ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ + V meet| + N human|,*meet| + V ComeTogether| +͸ N tool|þ,*assemble|ۼ,#lights| +` N publications|鿯 +ῼ N fact|,#exam| + V meet|,partner=human| + V meet| + N mark|־ +ǩ V sign|д,manner=together|ͬ + V discuss| + V interrogate|,police| +ʦ V meet|,partner=army|,military| + N InstitutePlace| +̸ V discuss| + N room| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V meet| + N affairs| + V understand| + V perform| + V know|֪ + V understand| + N fact|,@communicate| + N institution|,politics|,#country| + N part|,%human| +Ա N human|,#community| +ս V endeavour| +ս V fight|,military| + V pay|,possession=money| + V pay|,possession=money| + V diagnose|,manner=together|ͬ,medical|ҽ +ַ N location|λ,%community| +ַ N location|λ,%fact|,@communicate| + V cook| + V ComeTogether| + V assemble|ۼ + V post|ʼ,commercial| +㱨 V tell| +㱨 N fact|,@tell| + V compile|༭ + N readings| + V post|ʼ,patient=money|,commercial| + V ComeTogether| +ϴ N location|λ,@ComeTogether| +ϵص N location|λ,@ComeTogether| +㼯 V ComeTogether| +㼯 V compile|༭ +㼯 V gather|ɼ + N quantity|,rate|,&money|,commercial| + V ComeTogether| + V post|ʼ,patient=money|,commercial| + N bill|Ʊ,#post|ʼ,#money|,commercial| + N human|,*post|ʼ,#money| + V ComeTogether|,#water|ˮ + N quantity|,rate|,&money|,commercial| +Ʊ N bill|Ʊ,#post|ʼ,#money|,commercial| + V perform| + V gather|ɼ + V evade|ر +伲ҽ V HideTruth|,content=wrong|,purpose=evade|ر,#amend| +伲ҽ ADJ HideTruth|,content=wrong|,purpose=evade|ر,#amend| +Ī V KeepSilence|˵ + V HideTruth| + V KeepSilence|˵ + V teach| +˲ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +˲ V endeavour|,content=teach| + V draw| +滭 V draw| +ɫ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ͼ V draw| + V draw| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,attachment| + N food|ʳƷ,generic|ͳ + N material|,?food|ʳƷ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| +谵 ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| + V dizzy| +赹 V dizzy| + ADJ aValue|ֵ,brightness|,dark| +軨 V disable|м,scope=look| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,yellow| +˯ V sleep|˯ + N human|,royal|,official|,undesired|ݬ + V dizzy| +˯ V sleep|˯ +ڵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +ڵ ADJ aValue|ֵ,brightness|,dark| +ڵ V dizzy| +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N celestial|,space|ռ +ѣ V dizzy| +ӹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fact|,GetMarried| + ADJ aValue|ֵ,time|ʱ,hind|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + V GetMarried|,love| + N attribute|,age|,#GetMarried|,&human| + N time|ʱ,day|,#GetMarried| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#GetMarried| +ɴ N clothing|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + N law|ɷ,#GetMarried| + N emotion| + N humanized|,undesired|ݬ + N mental| + N mental|,desired| +겻 V uneasy| +겻 V uneasy| +ɢ V fear| + N mental| + ADJ aValue|ֵ,clearness|,blurred| +뵰 N human|,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +جج ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼһ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,range|,all|ȫ +׺͹ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V MakeLiving|ı,means=slack|͵ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V associate| + V confuse| + V pretend|װ,content=RegardAs| + V pretend|װ,content=RegardAs| + V weave|,means=mix| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +˫ N fact|,compete|,sport| +켣 V appear|,manner=flighty| +콻 N tree| + V GoInto|,manner=secret| + V include|,manner=secret| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N phenomena|,disorder|,undesired|ݬ + N chemical|ѧ + N material|,@building| + V GoInto|,manner=secret| + V include|,manner=secret| +ħ N human|,evil|,undesired|ݬ +˫ N fact|,compete|,sport| +ͬ V confuse| +Ϊһ̸ V confuse| + V confuse| + V mix| +Ѫ ADJ aValue|ֵ,kind|,mixed| +Ѫ N human|,#kind|,mixed| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +ս V fight| +ս V fight|,military| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V abandon| + V exempt| + V split|ƿ +ȥ V endeavour|,manner=venture|ð + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + N part|,%place|ط,mouth| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,brightness|,bright| + V exempt| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADJ aValue|ֵ,width|,wide| +Ȼ V understand| + N disease|,#mouth| + N human|,*SufferFrom|,#mouth| + V CauseToLive|ʹ + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,physique|,alive| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + V alive| + N artifact|˹,generic|ͳ + N fact|,do|,engage| + N part|,%artifact|˹,#produce|,industrial| + ADV {emphasis|ǿ} + N tool|þ,*print|ӡˢ + N part|,%AnimalHuman| + N human|,interesting|Ȥ + V WhileAway|,means=jump| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V entice| + V exercise| + N fact|,generic|ͳ + N human| + N attribute|,performance|,&chemical|ѧ + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N artifact|˹,$produce|,generic|ͳ + N human|,religion|ڽ + V fit|ʺ + V CauseToLive|ʹ + ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs| + V check|,medical|ҽ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N shape| + N human|,#information|Ϣ,$catch|׽ס + N human|,*alive| + N attribute|,strength|,$function|,&AnimalHuman| + N attribute|,strength|,$function|,&physical| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +· N method|,*earn|׬,*alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V kill|ɱ + N part|,%implement| + V alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,frequency|Ƶ,^regular|,commercial| + N human|,*alive| + N part|,%machine| + N part|,%machine| + N part|,%machine| + ADJ aValue|ֵ,trueness|α,true|,desired| +ˮ N water|ˮ,*flow| + V appear| + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +̿ N chemical|ѧ +Ѫ V CauseToLive|ʹ,patient=nerve|,medical|ҽ + N human|,evil|,undesired|ݬ + V use|,manner=flexible| +Ծ V CauseToLive|ʹ +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +׽ V catch|׽ס + V alive| +ֵ N human|,*know|֪,#expression|,desired| +֯ V check|,medical|ҽ + CLAS NounUnit|,&entity|ʵ + N attribute|,relatedness|,&human| + N community| + N food|ʳƷ,generic|ͳ + N human|,friend| + N human|,friend| +﷿ N room|,@cook| + N human|,#occupation|ְλ,*cook| + N human| + N human|,#occupation|ְλ,*sell|,employee|Ա,commercial| + N human|,#occupation|ְλ,agricultural|ũ + N human|,friend| +ʳ N food|ʳƷ,generic|ͳ +ʳ N expenditure|,#edible|ʳ +ͬ PREP {partner} + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V angry| + N disease| + N emotion|,angry|,undesired|ݬ + N fire| + N weapon|,*firing| + N tool|þ,*lighting|ȼ,*illuminate| + ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V fight|,military| + N tool|þ,*lighting|ȼ + N tool|þ,cubic|,@put| + N place|ط,#fire|,#unfortunate|,#police|,undesired|ݬ + N LandVehicle| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +ͷ N part|,%LandVehicle|,head|ͷ,*pull| +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ N facilities|ʩ,space|ռ,#electricity| + V attack|,instrument=fire|,military| + N lights|,#fire| + N tool|þ,cubic|,@cook| + N fire|,strong|ǿ + ADJ aValue|ֵ,color|ɫ,red| + N attribute|,degree|̶,&cook|,&WarmUp| + N time|ʱ,important| + N beast| + N fire| + N part|,%machine| + V burn|,purpose=bury|,#human|,#die| + N bird| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N tool|þ,*hold| + N weapon|,*firing| +Ѳ N weapon|,ship|,military| +ר N human|,#knowledge|֪ʶ + N phenomena|,undesired|ݬ,#burn| + N tool|þ,*lighting|ȼ,*illuminate| + N tool|þ,*hold| + ADJ aValue|ֵ,temperature|¶,hot| + N attribute|,strength|,&army|,military| + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,factory|,*produce|,#electricity| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fight|,&army|,military| + N InsectWorm| + N fact|,congratulate|ף + N part|,%building| +¯ N tool|þ,*WarmUp| +ð V ExpressAnger|ʾŭ + N fire| + N material|,@lighting|ȼ +ū³³ N place|ط,city|,ProperName|ר,(US|) + N weapon|,*firing| + N tool|þ,*WarmUp| + N weapon|,generic|ͳ + N emotion|,angry|,undesired|ݬ +ǯ N tool|þ,*hold| +ǹ N weapon|,*firing| +ǽ N part|,%building|,*WarmUp|,skin|Ƥ + N attribute|,circumstances|,#fire|,#police|,undesired|ݬ + N fire| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,hot| +ɽ N land|½,*exhale| +ϼ V MakeBetter|Ż + V destroy|,instrument=fire| + N food|ʳƷ +ջ V worried|ż +üë ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N CloudMist|,colored| + N fire| + N attribute|,intensity|ǿ,&fire| + N phenomena|,scene|,beautiful| + ADJ aValue|ֵ,speed|ٶ,fast| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N attribute|,degree|̶,&cook|,&WarmUp| +ͷ N emotion|,angry|,undesired|ݬ +ͷ N fire| +ͷ N human|,#occupation|ְλ,military|,*cook| + N food|ʳƷ,flesh| +ȵ N food|ʳƷ + N weapon|,#firing|,military| + V guarantee|֤,scope=fire|,commercial| + N place|ط,military|,@fight| + N tool|þ,linear|,*transmit|,#electricity| + N celestial| + N fire| + N fire| +ҩ N weapon|,*firing| + N material|,liquid|Һ,$burn| + N phenomena|,undesired|ݬ,#fire|,#unfortunate| + V burn| +᳡ N InstitutePlace|,@burn|,#human|,#die| + N material|,*lighting|ȼ + N building|,#fire|,$burn| +ש N material|,@building| + V catch|׽ס + V catch|׽ס,military|,police| + V enjoy| + V gather|ɼ,agricultural|ũ + V obtain|õ + V obtain|õ,possession=text| + V enjoy| + V fulfil|ʵ + V obtain|õ + N human|,*obtain|õ + V enjoy|,content=reward| + N human|,$reward| + V enjoy|,content=rescue| + V earn|׬ +ȡ V obtain|õ +ʤ V win|ʤ + V enjoy|,content=release|ͷ,police| +Ϥ V know|֪ + V obtain|õ,possession=pros| +֪ V know|֪ +׼ V enjoy|,content=appreciate|޳ + COOR {or|} + ADV aValue|ֵ,degree|̶,ish| + COOR {or|} + ADV {comment|} + ADV {comment|} + COOR {or|} + V deceive|ƭ + V ignorant|֪ + N character|,surname|,human|,ProperName|ר + N disease| + N place|ط,capital|,ProperName|ר,(Solomon Islands|Ⱥ) + N human|,unable|ӹ,undesired|ݬ + N inanimate|,commercial|,generic|ͳ + N money| +һ V collect|,possession=money|,commercial| +һ֯ N part|,%institution|,#commercial|,#fund|ʽ,(institution|=UN|Ϲ) + N room|,%vehicle|ͨ,@put|,#inanimate| + N facilities|ʩ,space|ռ,@store| + N facilities|ʩ,space|ռ,@store| + N LandVehicle|,@transport|,#inanimate| + N ship|,*transport|,#inanimate| + N bill|Ʊ,#transport| + V pay|,possession=expenditure|,time=obtain|õ,commercial| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N tool|þ,@put|,#transport|,#vehicle|ͨ + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N wealth|Ǯ,commercial| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N ship|,*transport|,#inanimate| +Ʒ N inanimate|,commercial|,generic|ͳ +ɫ N human|,unable|ӹ,undesired|ݬ +ɫ N inanimate|,commercial|,generic|ͳ +ɫ N inanimate|,waste|,undesired|ݬ +ɫ N text|,undesired|ݬ + N inanimate|,commercial|,generic|ͳ +Դ N location|λ,@ExistAppear|,#inanimate| + V transport| + N quantity|,amount|,&transport| +ջ N facilities|ʩ,space|ռ,@put|,@store| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,commercial| + V damage| + N phenomena|,unfortunate|,undesired|ݬ + V unfortunate|,manner=many| +ӿڳ V unfortunate|,cause=speak|˵ +콵 V unfortunate|,LocationIni=sky| + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V damage|,patient=country| + V damage| + N phenomena|,unfortunate|,undesired|ݬ +ǽ V happen|,experiencer=unfortunate|,location=internal| + N phenomena|,unfortunate|,undesired|ݬ + N human|,crime|,undesired|ݬ +̥ N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V attack|,military| + V beat| + V bump|ײ + V defeat|սʤ + V kill|ɱ + V destroy| + V destroy|,military| + V OutOfOrder| + V stab| + V beat| + V beat| + V destroy| + N fact|,sport| + V defeat|սʤ + V destroy| + V destroy| + V destroy|,military| + V defeat|սʤ + V destroy| + V beat|,patient=SportTool|˶ + V damage| +ˮ V beat|,patient=liquid|Һ +ˮ V swim| + V defeat|սʤ + V beat| +Ҫ V beat|,PartOfTouch=heart| +Ҫ V express|ʾ,content=heart| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,base| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + ADJ aValue|ֵ,rank|ȼ,elementary| + N part|,%entity|ʵ,base| + N knowledge|֪ʶ,elementary| + N fact|,build| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + N part|,%organization|֯ +㵥λ N part|,%organization|֯ + ADJ aValue|ֵ,importance|,important| + N part|,%thing|,base| +ʵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N part|,%thing|,heart| + N place|ط,military| + N image|ͼ,dot|,#measure| + N part|,%thing|,base| + N part|,%thing|,heart| + N attribute|,SoundQuality|,important|,&music| + N attribute|,standpoint|,important|,&information|Ϣ +˵ N human|,*speak|˵ + N humanized| + N knowledge|֪ʶ,religion|ڽ +̵ N place|ط,religion|ڽ +ͽ N human|,religion|ڽ +ͽ N human|,religion|ڽ + N place|ط,capital|,ProperName|ר,(Ecuador|϶) + N material|,*feed|ι,#crop|ׯ + N place|ط,capital|,ProperName|ר,(Ukraine|ڿ) + ADJ aValue|ֵ,importance|,important| + N human|,desired|,important|,able| + N place|ط,capital|,ProperName|ר,(Rwanda|¬) + N attribute|,price|۸,&artifact|˹,commercial| + N fact|,build| + N fund|ʽ + N community|,#fund|ʽ +¡ N language|,#country|,ProperName|ר + N money|,(Papua New Guinea|Ͳ¼) + N money|,(Laos|) +ɫ N attribute|,color|ɫ,&physical| +ʯ N part|,%thing|,base| + N attribute|,standard|׼,&entity|ʵ + N symbol|,#quantity| + N mark|־,linear|,#measure| +Ƕ N language|,#country|,ProperName|ר + N stone|ʯ +ҵ N part|,%affairs|,base| + N part|,%animate|,#PassOn| + N method|,*cure|ҽ + PREP {cause} +ڹ ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#regulation|,#software| + ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#text|,#software| +׼ N attribute|,standard|׼,&entity|ʵ + N aircraft| + N machine| + N part|,%implement| + N time|ʱ + N time|ʱ,important| +ʧ ADJ aValue|ֵ,value|ֵ,precious| + N room|,%vehicle|ͨ + N facilities|ʩ,#aircraft|,@stay|ͣ + N human|,#occupation|ְλ,official|,#aircraft| + N LandVehicle|,#(train|) + N machine|,*produce| + ADJ aValue|ֵ,performance|,#machine|,#electricity| + V SelfMove|,military| + ADJ aValue|ֵ,ability|,able|,AlterLocation|ռλ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,performance| + N attribute|,performance|,SelfMove|,&entity|ʵ + N ship| + N room|,#machine| + N room|,%ship|,#machine| + V engage|,agricultural|ũ,#machine| + N human|,#occupation|ְλ,industrial| + N institution| + ADJ aValue|ֵ,kind| + N institution|,generic|ͳ + N part|,%implement| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N reason| + N time|ʱ + N thinking|˼,#venture|ð,treacherous|,politics| + N human|,*venture|ð,treacherous|,politics| + N part|,%implement| + N facilities|ʩ,@take|ȡ,#liquid|Һ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N implement| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,content|,secret| + N fact|,secret| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,effect|Ч,&organization|֯,&human| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| + N machine| + N machine| +ǹ N weapon|,*firing| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ⱥ N army|,#aircraft| + N part|,%aircraft|,body| + N animate|,generic|ͳ + N part|,%aircraft|,body| +ͷ N part|,%aircraft|,head|ͷ + N affairs|,#maintain|,#repair| +е ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +е N machine| +е N reason| +е ADJ aValue|ֵ,performance| +е V ize|̬ +е N army|,*TakeVehicle|,#LandVehicle| +е N army|,*TakeVehicle|,#LandVehicle| +е N human| +еʦ N human|,#occupation|ְλ,industrial| + N part|,%tool|þ,#time|ʱ + N attribute|,kind|,&aircraft| + N attribute|,kind|,&machine| +Ҫ ADJ aValue|ֵ,content|,secret| + N part|,%aircraft|,wing|,*fly| + N material|,liquid|Һ,*lubricate| + N phenomena|,desired| + N time|ʱ +Ե N attribute|,circumstances|,lucky|,&human| + ADJ aValue|ֵ,source|Դ,#machine|,$produce| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human| + N machine| + N machine|,*weave|,industrial| + N part|,%weapon|,*firing| + N community|,#aircraft| +Ա N human|,#occupation|ְλ,#aircraft| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + ADJ aValue|ֵ,kind|,queer| + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V treat|Դ,manner=biased|ƫ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,queer| + ADJ aValue|ֵ,form|״,undesired|ݬ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V check| + V delay| + V investigate| + V check|,commercial| + V check| + V check| + V prove|֤ + V detain|ס + V salute|¾ + V gather|ɼ + N fact|,unfixed|δ,#police| + V SetAside| + V SetAside| + V do|,manner=kindhearted| + V gather|ɼ,possession=material|,agricultural|ũ + V calculate| + N quantity|,amount|,&result|,#compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V SetAside| + V gather|ɼ +ͳɼ V ill|̬,cause=tired|ƣ + V gather|ɼ +ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ľ N tool|þ,*recreation|,#young| + ADJ aValue|ֵ,duration|,TimeLong| +ٳɶ V obtain|õ,possession=many|,means=gather|ɼ +ˮ N liquid|Һ,SetAside| + V SetAside| + V gather|ɼ +ѩ N RainSnow|ѩ +ѹ V surplus|ʣ,commercial| + N CloudMist| +Թ N emotion|,hate|,undesired|ݬ + N CloudMist| + V gather|ɼ +ѷ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +۴ V gather|ɼ + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,skin|Ƥ,flesh| + N part|,%AnimalHuman|,flesh| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,body| + N part|,%human|,body| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,flesh| + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| +ʳ V worried|ż + V HungryThirsty| + V suffer|,content=hardship| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + V HungryThirsty| + N human|,poor|,undesired|ݬ + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + N mark|־ + N part|,%building|,waste|,body| + N trace| + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V excited| + V excite|ж + V ill|̬,medical|ҽ + V irritate|ŭ + V jet| + V excited| + V jet| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + V excite|ж + V excited| + V angry| + N lights| + V MakeBetter|Ż + V CauseToLive|ʹ + N method| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,behavior|ֹ,strong|ǿ + V mobilize| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N water|ˮ +ŭ V irritate|ŭ + V excite|ж + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N emotion|,excited| + N medicine|ҩ +Խ ADJ aValue|ֵ,SoundVolume|,loud| + V BecomeMore| +ս V fight|,military| + V clean|ʹ + V improve| + V LaughAt|Ц + V satirize| +Ц V LaughAt|Ц + N bird| + N part|,%bird|,$eat|,embryo| + N food|ʳƷ +ɵ V fail|ʧ + N part|,%bird|,head|ͷ +ڻ N FlowerGrass| +ʯ N stone|ʯ,mine| + V damage|,#mating|,crime| + N human|,lascivious| +㹷 ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +㹷 ADJ inanimate|,secondary| +ë N part|,%bird|,hair|ë +ë N tool|þ,*wipe| +ëƤ ADJ aValue|ֵ,importance|,secondary| + N method|,undesired|ݬ,*deceive|ƭ +ڽ N medicine|ҩ,(China|й) +Ƥ N disease| +Ȯ ADJ aValue|ֵ,SocialMode|,good|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ȯ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N food|ʳƷ,#bird| + N facilities|ʩ,space|ռ,@foster|,#bird| + N food|ʳƷ,liquid|Һ +β N drinks|Ʒ,$addict|Ⱥ +βƻ N fact|,drink|,recreation| + N facilities|ʩ,space|ռ,@foster|,#bird| + N shape| +Ѫ N medicine|ҩ + N disease|,#foot| + N character|,surname|,human|,ProperName|ר + N human|,royal|,female|Ů + N result|,desired|,#succeed|ɹ + N tool|þ,linear|,*fasten|˩ + V catch|׽ס,police| + V catch|׽ס,police| + V catch|׽ס,#crime|,police| + V catch|׽ס,patient=addictive|Ⱥ,police| + V catch|׽ס,police| +˽ V catch|׽ס,#crime|,police| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N human| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Djibouti|) + N place|ط,capital|,ProperName|ר,(Djibouti|) + N place|ط,country|,ProperName|ר,(Africa|) +ᷨ N money|,(Djibouti|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kirghizstan|˹˹̹) +˹˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹ N language|,#country|,ProperName|ר +Ƭ N artifact|˹,precious| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¡ N place|ط,capital|,ProperName|ר,(Malaysia|) + N LandVehicle| +ճ N LandVehicle| + N human| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#congratulate|ף + V lucky| + N time|ʱ,day|,#lucky| + N MusicTool| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V lucky| + N artifact|˹,#lucky| +Ǹ V lucky| + N attribute|,circumstances|,&event|¼ + N information|Ϣ,good| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,degree|̶,extreme|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β + N fittings|,#electricity| + ADV aValue|ֵ,intensity|ǿ,strong|ǿ,extreme| + N part|,%earth|,edge| + N attribute|,boundary|,extreme|,&entity|ʵ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,contrariness|,&entity|ʵ + N human| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V ize|̬ + N bird| + ADV aValue|ֵ,behavior|ֹ,strong|ǿ +Ŀ V look|,manner=far|Զ +ĿԶ V look|,manner=far|Զ +Ʒ N attribute|,rank|ȼ,HighRank|ߵ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +΢С ADJ aValue|ֵ,size|ߴ,small|С +Ϊ ADV aValue|ֵ,degree|̶,extreme| +Ϊ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,boundary|,extreme|,&entity|ʵ + N attribute|,contrariness|,&entity|ʵ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,correctness|,politics| +ҷ N human| + ADJ aValue|ֵ,correctness|,politics| + N part|,%AnimalHuman|,bone| + N tree| +Ƥ N AnimalHuman| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V compile|༭ + V gather|ɼ +¼ V compile|༭ + N account| + N attribute|,attachment|,&human| + N character|,surname|,human|,ProperName|ר + N place|ط,@ComeToWorld| + N publications|鿯 + N attribute|,source|Դ,#ComeToWorld|,&human| + N InstitutePlace|,space|ռ,commercial| + V assemble|ۼ + V gather|ɼ + N publications|鿯 + V merge|ϲ +ɵ· N part|,linear|,#electricity| + V gather|ɼ +缫 N part|,#electricity| + V ComeTogether| + V assemble|ۼ + N fact|,@communicate| + V ComeTogether| + V assemble|ۼ + N thing|,mass| + V assemble|ۼ + V gather|ɼ +Ȩ V control| +ɢ N place|ط,#inanimate| + N InstitutePlace|,space|ռ,commercial| +˼ V gather|ɼ,possession=wisdom|ǻ + ADJ aValue|ֵ,attachment|,public| +廯 V ize|̬,PatientAttribute=public| + N system|ƶ,#rights|Ȩ,#own|,public| + N community| +Ź˾ N InstitutePlace|,commercial| +ž N army| +ѵ V teach| +Ҹ V obtain|õ,possession=many|,means=gather|ɼ + V gather|ɼ,possession=coupon|Ʊ֤ +ʼ N human|,*gather|ɼ +Լ ADJ aValue|ֵ,quality|,refined|,agricultural|ũ +Լ V ize|̬,PatientAttribute=refined|,agricultural|ũ +ԼӪ V engage|,manner=refined|,agricultural|ũ + N place|ط,city| + V assemble|ۼ + V control| + V gather|ɼ +Ӫ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +װ N tool|þ,@put|,#transport|,#vehicle|ͨ + V gather|ɼ,possession=fund|ʽ,commercial| + N publications|鿯 + V arrive| + STRU {Vachieve|} + COOR {and|} + V succeed|ɹ,scope=exam| + ADJ aValue|ֵ,standard|׼,average|,desired| + CONJ {and|} +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ﶯ V part|,%language| + ADJ aValue|ֵ,earliness|,early| + PREP {LocationFin} + PREP {TimeFin} + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + N affairs|,urgent| + V angry| + V willing|Ը + V worried|ż + N disease| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,fast| + N letter|ż,urgent| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V cure|ҽ +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +Ա N human|,*cure|ҽ,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N waters|ˮ,linear| + V refuse| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ֱ׷ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,hasty| +ǻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ɲ V cease|ͣ +ɲ V fix|ס + N affairs|,urgent| + ADJ aValue|ֵ,speed|ٶ,fast| + V TurnRound| + N affairs|,urgent| + ADJ aValue|ֵ,circumstances|,urgent|,medical|ҽ +Բ N disease| +Էʪ N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N human|,rash|ç +ӵ N human|,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N phenomena|,need|,urgent| + N phenomena|,need|,urgent| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V expect|,content=succeed|ɹ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ĸĸ N human|,rash|ç,undesired|ݬ + N fact|,cure|ҽ,medical|ҽ,urgent| +֢ N disease| + V obtain|õ,possession=method| + ADJ aValue|ֵ,speed|ٶ,fast| +ת V TurnRound|,manner=sudden| +ת V change|,manner=sudden| +תֱ V change|,manner=sudden| +תֱ ADJ change|,manner=sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N disease| + V hate| + N disease| + V GoForward|ǰ + V hate|,target=evil| + N wind|,strong|ǿ + V announce| + N disease| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| +ʻ V VehicleGo|ʻ,manner=fast| +ɫ V ExpressAnger|ʾŭ +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V inhale| +ȡ V inhale| +ȡ V obtain|õ + V BeNear| + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + CONJ {concession|ò} + ADV aValue|ֵ,duration|,TimeShort| + V arrive|,future| + PP aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + CONJ {concession|ò} + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,now|,day| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʹ CONJ {concession|ò} +˵ CONJ {supplement|ݽ} +λ V bear|е,patient=official|,royal| +ϯ ADJ aValue|ֵ,duration|,TimeShort| +ϯ V engage| + ADJ aValue|ֵ,property|,^$prepare|׼ + V jealous|ʼ + V jealous|ʼ + N human|,*jealous|ʼ + V hate| +Ͷ V jealous|ʼ,target=able| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,rank|ȼ,&entity|ʵ + N community|,#unripe| + N part|,%building|,nerve| + N attribute|,rank|ȼ,&entity|ʵ + ADJ quantity|,rate|,&rank|ȼ + N expenditure| + V ComeTogether| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V press|ѹ + V push| + V SqueezeOut| +Ҫ ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + V collect|,possession=money|,commercial| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| +üŪ V CausePartMove|,PatientPartof=eye|,purpose=show| + V gather|ɼ,possession=drinks|Ʒ,agricultural|ũ +ѹ V SqueezeOut| + V CausePartMove|,PatientPartof=eye|,purpose=show| +ռ V occupy|ռ + ADJ aValue|ֵ,possibility|,almost| + N furniture|Ҿ,space|ռ,@put| + N place|ط,country|,ProperName|ר,(Guinea|) + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,question| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,some|Щ + ADJ qValue|ֵ,amount|,many|,question| +ͼ N image|ͼ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADV aValue|ֵ,possibility|,almost| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,frequency|Ƶ,often| + N quantity|,rate|,#possibility|,&event|¼ + N place|ط,country|,ProperName|ר,(Africa|) +DZ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guinea-Bissau|DZ) +DZ N place|ط,country|,ProperName|ר,(Africa|) +Ƿ N money|,(Guinea|) + N human|,(Guinea|) +ʱ ADV time|ʱ,question| +ʱ CONJ {time|ʱ} +ά N bird| + ADJ qValue|ֵ,amount|,question| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N disease| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N AnimalHuman| + N part|,%building|,bone| + N part|,%animal|,tail|β + ADJ aValue|ֵ,attachment|,self| + N army|,friend| + N part|,%entity|ʵ,self| + N duty| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N attribute|,ability|,&human| + N method| + N method|,#industrial| + V MakeBetter|Ż +һ ADJ aValue|ֵ,ability|,able|,desired| + N human|,#occupation|ְλ,industrial| + N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + N attribute|,ability|,&human| + N method| +ʦ N human|,#occupation|ְλ,industrial| + N knowledge|֪ʶ + V MakeBetter|Ż +ල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + ADJ knowledge|֪ʶ + ADJ aValue|ֵ,behavior|ֹ + N cause|ԭ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ա N human|,#occupation|ְλ,industrial| +ת V give| +У N InstitutePlace|,@teach|,@study|ѧ,education| + N method| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ + N time|ʱ,ending|ĩ,#season| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N wind| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N publications|鿯 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V salute|¾ + V use| + V salute|¾ + N fact|,*salute|¾,#die| + N tool|þ,*salute|¾,#die| +Ʒ N tool|þ,*salute|¾,#die| + V salute|¾ + N medicine|ҩ + N medicine|ҩ,#experiment|ʵ + N quantity|,amount|,&consume|ȡ,&use|,#medicine|ҩ +С N quantity|,amount|,&use|,#medicine|ҩ + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V cross|Խ,LocationThru=waters|ˮ + V help| +ü ADJ qValue|ֵ,amount|,many| +üһ ADJ qValue|ֵ,amount|,many| + N place|ط,city|,ProperName|ר,(China|й) +ƶ V help|,patient=poor| + V benefit|,patient=human| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V depend| + V entrust|ί + V post|ʼ +Ĵ V SetAside| +Ĵ N part|,%computer| +ķ V SetAside| +ľ V reside|ס + V sell|,commercial| + V alive| + N bacteria|΢ + N human|,#wealth|Ǯ,undesired|ݬ + V reside|ס,education| + V SetAside| + V entrust|ί + V express|ʾ +ϣ V entrust|ί + V entrust|ί,ResultEvent=ProvideFor| + V entrust|ί + V express|ʾ +Ԣ V reside|ס + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| +ž ADJ aValue|ֵ,occasion|,quiet|,desired| +ž N attribute|,occasion|,quiet|,desired|,&space|ռ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,occasion|,quiet|,desired| + V calculate| + N character|,surname|,human|,ProperName|ר + V measure| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V plan|ƻ + N thought|ͷ + N tool|þ,*measure| +Ƴ̳ N LandVehicle|,$lend|,commercial| +Ƴ V calculate|,content=payment| +ƻ V plan|ƻ +ƻ V plan|ƻ,content=GiveBirth| +ƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ƻƶ N human|,*plan|ƻ +Ƽ V calculate|,content=price|۸,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=insufficiently|Ƿ,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=extreme|,commercial| +Ƽ V count|,content=quantity| +ƽ V debate| +ƽ V think|˼ + V calculate| + V measure| +ı N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ί N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ʱ V count|,content=time|ʱ +ʱ N tool|þ,*count|,#time|ʱ + V count| + N tool|þ,*count|,#quantity| + V calculate| + N tool|þ,*calculate| + N computer| + V help|,instrument=computer| + V ize|̬,#computer| + N tool|þ,calculate| + N InstitutePlace|,#computer|,#software| +ί N institution|,ProperName|ר,*plan|ƻ + V discuss| + N mark|־ + V record|¼ + V remember|ǵ + V sign|д + N text| +Dz V BeUnable|,content=remember|ǵ +dz V cherish|Ļ,content=hate| +ǵ V remember|ǵ +Ƿ V record|¼,content=result| +ǹ V record|¼,content=result| +ǹ V ThinkOf|˼ +ǹ V record|¼,content=result| +Ǻ N symbol| +Ǻ V cherish|Ļ,content=hate| +¼ V record|¼ +¼ N result| +¼ N text| +¼ N human|,desired|,*win|ʤ,#compete|,#WhileAway| + V write|д,content=name| + V remember|ǵ,Vachieve| +ȡ V remember|ǵ +ʵ ADJ aValue|ֵ,trueness|α,true|,&information|Ϣ + V record|¼,content=event|¼ +¶ V BeAble|ܹ,content=remember|ǵ + V record|¼ + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V explain|˵ + N text| + V LookBack| + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V remember|ǵ + V record|¼ + V record|¼,content=account|,commercial| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ס V remember|ǵ + ADV aValue|ֵ,time|ʱ + CONJ {cause|ԭ} +... COOR {supplement|ݽ} +ȳʵ V happen|,content=fact| +ȵ N wealth|Ǯ +ȶ ADJ aValue|ֵ,behavior|ֹ,lasting| +Ȼ CONJ {cause|ԭ} + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| +Լ N symbol|,#quantity|,#DoSum| + V GiveUp| + V evade|ر + V fear| + V jealous|ʼ +ɵ V fear| +ɶ V jealous|ʼ +ɺ V hate| +ɻ V evade|ر +ɿ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N time|ʱ,day|,@salute|¾,#die| +ʳ V evade|ر,content=consume|ȡ + N location|λ,surrounding|Χ,space|ռ + N time|ʱ + N attribute|,circumstances|,&human|,&event|¼ + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ů N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ժ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ + V KeepOn|ʹ +̳ V KeepOn|ʹ +̳ V receive| +̳ N human|,*receive| +̵ N part|,%machine| +̶ ADV aValue|ֵ,time|ʱ,hind| +̷Լ N disease| +̸ N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + V KeepOn|ʹ,patient=undertake| + V KeepOn|ʹ,patient=affairs| + V GoOn| + V KeepOn|ʹ +֮ ADV aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N system|ƶ +ͼ V supervise|,content=regulation| +ͼί N institution|,ProperName|ר,*check|,#regulation| +¼ N human|,*record|¼ +¼ V record|¼ +¼ N result|,#exercise|,sport| +¼ N text| +¼Ƭ N shows| + N regulation| + N account| + V commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ + N thing|,*commemorate|ʾ˼ + N time|ʱ,day|,@commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N account|,*commemorate|ʾ˼ + N stationery|ľ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N fact|,*commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ +Ʒ N tool|þ,*commemorate|ʾ˼ + N time|ʱ,day|,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ +Ʊ N coupon|Ʊ֤,#letter|ż,*commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ +ʵ N information|Ϣ,true| + V account|,@record|¼ + V record|¼,content=event|¼ +ί N institution|,ProperName|ר,*check|,#regulation| + N text| +Ҫ N text| +Ԫ N time|ʱ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V praise|佱 +α N human|,$WellTreat|ƴ +ν V reward| +ξ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V mobilize| + V agree|ͬ + V praise|佱 + N tool|þ,police|,*punish|,#crime| + N tool|þ,police|,#crime|,*detain|ס + ADJ aValue|ֵ,form|״,special| + V fasten|˩ + V hold| + V insert| + V mix| + V pick|ʰ + V press|ѹ + N tool|þ,*hold| +а N tool|þ,*fix|ס,medical|ҽ +в N part|,%entity|ʵ,space|ռ +д V transport|,manner=secret|,crime|,commercial| +е N facilities|ʩ,route|· +еӭ V welcome|ӭ +з N location|λ +з N part|,%inanimate|,mouth| +й V attack|,military| +й N character|,surname|,human|,ProperName|ר +л V attack|,military| +о N tool|þ,*hold| +п N clothing|,#body| +߼а ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,property|,$fill| +ı N food|ʳƷ + V relate|й +֫ N part|,%AnimalHuman|,arm| + N tool|þ,*hold| + N tool|þ,@put|,#wealth|Ǯ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѻ N fact|,desired| +Ѽ N result|,good|,desired| +ѽ N time|ʱ,festival|,@congratulate|ף +Ѿ N phenomena|,desired|,#lucky| +Ѿ N expression|,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| +ľ˹ N place|ط,city|,ProperName|ר,(China|й) +ż N human|,family|,mass|,#GetMarried| +Ʒ N physical|,good|,desired| + N time|ʱ,day|,#GetMarried| + N human|,desired|,female|Ů,beautiful| + N information|Ϣ,desired|,*ShowJoy|ʾϲ + N artifact|˹,good|,desired| + N text|,good|,desired| + N edible|ʳ,good|,desired| + CLAS NounUnit|,&InstitutePlace| + ADJ aValue|ֵ,kind| + N character|,surname|,human|,ProperName|ר + N community|,#knowledge|֪ʶ + N community|,family| + N human|,#occupation|ְλ,able| + N human|,able|,#knowledge|֪ʶ,#affairs| +Ҳ N wealth|Ǯ,#family| +Ҳ N InsectWorm|,agricultural|ũ +Ҳ N wealth|Ǯ,#family| +ҳ ADJ aValue|ֵ,kind|,ordinary| +ҳ N fact|,#family| +ҳ㷹 N fact|,ordinary| +ҳ㷹 N food|ʳƷ,thrifty| +ҳ N human|,official|,family| +ҳʽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ҳ ADJ attribute|,behavior|ֹ,fierce|,&human| +Ҵ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ N wealth|Ǯ,#family| +ҵ N wealth|Ǯ,#family| +ҵ N tool|þ,generic|ͳ,#electricity|,#family| +ҷ V visit| +ҷ N attribute|,SocialMode|,&family| +Ҹ N bird| +Ҹ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +һ N human| +һ N tool|þ,generic|ͳ +һ N weapon|,generic|ͳ +Ҽ N fact|,#family| +Ҽ N community|,family|,mass| +Ҽһ N community|,family|,mass| +ҽ N affairs|,education|,#family| +Ҿ N attribute|,circumstances|,family|,&human| +Ҿ N community|,family| +Ҿ N furniture|Ҿ +Ҿ N human|,#furniture|Ҿ,commercial| +Ҿ N human|,family|,female|Ů +Ҿ N human|,family|,mass| +ҿ N human|,family|,mass| +ҿ N quantity|,amount|,&human|,#family| + N location|λ,#family| + N community|,#family| + N community|,family| + ADJ aValue|ֵ,property|,#family|,$produce| + V unfortunate| + N account|,@record|¼,#family| + N process|,#family| + N bird| + N human|,mass|,family| +ʲ N tool|þ,generic|ͳ + N affairs|,#family| + N letter|ż,#family| + N human|,family| +˽ N wealth|Ǯ,#family| +ͥ N community|,family| +ͥİ N attribute|,circumstances|,peaceful|,&family| +ͥϷ N fact|,#family|,recreation| +ͥ N human|,female|Ů,#family| +ͥ N human|,female|Ů,family| +ͥҵ N affairs|,#study|ѧ,education| +ͽı ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N livestock| + N affairs|,#family| + N affairs|,#family| + N affairs|,#family| + N place|ط,#ComeToWorld| + N place|ط,@ComeToWorld| +С N human|,family| + N letter|ż,#family| + N livestock| + N fact|,eat|,entertain|д,#family| + V foster|,agricultural|ũ +ҵ N wealth|Ǯ,#family| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N expenditure|,#family| +õ N tool|þ,generic|ͳ,#electricity|,#family| + ADJ aValue|ֵ,reputation|,glorious|,desired| +԰ N place|ط,#family| + N affairs|,#family| + N community|,#family| + V DoSum|,means=add| + V MakeBetter|Ż + V add| + N place|ط,country|,ProperName|ר,(Canada|ô) + N place|ط,country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Ghana|) + V put| +Ӱ V endeavour| +Ӱ N payment| +Ӱӵ V endeavour| +ӱ V add| +ӱ ADJ qValue|ֵ,amount|,double| +Ӳ N edible|ʳ +ӳ V enlarge|,PatientAttribute=length| +ӳ V inlay|Ƕ +Ӵ V MakeBetter|Ż +Ӵ V enlarge| +ӵ N place|ط,capital|,ProperName|ר,(Nepal|Ჴ) +Ӷ N place|ط,city|,ProperName|ר,(India|ӡ) +ӷ N method|,*DoSum| +Ӹ V build|,quantity=many| +Ӹ V print|ӡˢ,quantity=many| +Ӹ V enlarge|,PatientAttribute=height|߶ +ӹ V produce| +ӹ V produce|,industrial| +ӹ N InstitutePlace|,@produce|,industrial| +ӹ V strengthen|ӹ +Ӻ V damage| +Ӻ N symbol|,*DoSum| +Ӻ V enlarge|,PatientAttribute=height|߶ +Ӽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ӽ N fish| +ӽ V MakeBetter|Ż +ӽ V SpeedUp|ӿ +Ӿ V damage| +ӿ V SpeedUp|ӿ +ӿ V enlarge| +˹ N place|ط,capital|,ProperName|ר,(Venezuela|ί) +ձȺ N waters|ˮ,surfacial|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N language|,#country|,ProperName|ר + CLAS unit|λ,&volume|ݻ + V add| + V add|,commercial| + V add|,patient=price|۸,commercial| + V ally| + V RegardAs|,ResultIsa=secret| +ô ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Canada|ô) +ô N place|ط,country|,ProperName|ר,(North America|) +ô N human|,(Canada|ô) +ôԪ N money|,(Canada|ô) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ghana|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Ghana|) +Ũ V thicken|Ũ +ũ N weapon|,*firing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Gabon|) +ǿ V MakeBetter|Ż + V WarmUp| +¯ N tool|þ,*WarmUp| + N tool|þ,*WarmUp| + V appreciate|޳ + V include| + V put| + N human|,*include| + V add| + V give| + CONJ {supplement|ݽ} + V MakeBetter|Ż + V deepen| +ʪ V moisten|ʪ + N symbol|,#quantity| + V SpeedUp|ӿ +ٶ N attribute|,speed|ٶ,&inanimate| + N tool|þ,*SpeedUp|ӿ +̬¡ N language|,#country|,ProperName|ר + V WarmUp| +н V add|,patient=payment| +ѹ V press|ѹ,industrial| + V CauseToDo|ʹ + CONJ {supplement|ݽ} +޸ V CauseToDo|ʹ,ResultEvent=amend| + V endeavour| + V feed|ι,patient=material| + V lubricate| +ͻ N aircraft|,*feed|ι +վ N InstitutePlace|,*feed|ι,commercial| +֮ CONJ {supplement|ݽ} + V MakeHeavier| + V damage| + V decline|˥ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N part|,%plant|ֲ,embryo| +Թ N part|,%plant|ֲ,embryo| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%animal|,mouth| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N clothing|,*protect|,military| + N part|,%AnimalHuman|,skin|Ƥ + NUM qValue|ֵ,sequence|,ordinal| +װ N part|,%ship| +ױ N chemical|ѧ +ױ N human|,military| +ױ N weapon|,generic|ͳ +׳ N InsectWorm| +״ N chemical|ѧ +׵ N attribute|,rank|ȼ,superior|,&entity|ʵ +׷ N human|,organization|֯,#associate| +׷ N chemical|ѧ +׸ N disease| +׹ N disease| +׹ N character| +׻ N chemical|ѧ +׼ N attribute|,rank|ȼ,superior|,&entity|ʵ +׿ N disease| +׿ N part|,%AnimalHuman|,skin|Ƥ +ȩ N chemical|ѧ +ȩˮ N chemical|ѧ + N chemical|ѧ + N gas| +ս N fact|,fight|,ProperName|ר +͸ N disease| + N fish| +״ N part|,%AnimalHuman|,nerve| +״ٻܼ N disease| +״ٻܿ N disease| +״ N chemical|ѧ +״ N disease| + N medicine|ҩ,*apply|ͿĨ + N time|ʱ +غͪ N medicine|ҩ + N clothing|,*protect|,military| + N metal| +ط N material|,*feed|ι,#crop|ׯ + N chemical|ѧ + ADJ aValue|ֵ,source|Դ,artificial| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N time|ʱ,@rest|Ϣ,@WhileAway| + V use| +ٰ V pretend|װ,content=RegardAs| +ٱ N money|,fake|α +ٳ V pretend|װ,content=RegardAs| +ٵѧ N human|,fake|α,undesired|ݬ +ٶ V RegardAs|,ResultIsa=true| +ٷ N tool|þ,*MakeUp|ױ,#hair|ë +ٷ N symbol|,#quantity|,#DoSum| +ٸ N part|,%plant|ֲ,base| +ٹ˽ V seek|ıȡ,means=use|,#rights|Ȩ,undesired|ݬ +ٹ N part|,%plant|ֲ,embryo| +ٻ N text|,*deceive|ƭ +ٻ N physical|,fake|α +ٽ V use| +ٿ N human|,*pretend|װ,#weep| +ð V pretend|װ,content=RegardAs| +ð N human|,*pretend|װ + V sleep|˯ + N tool|þ,*cover|ڸ + N attribute|,name|,fake|α,&human| + N symbol|,(Japan|ձ) + N time|ʱ,@rest|Ϣ,@WhileAway| +ʼ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + CONJ {condition|} + CONJ {condition|} +ɤ N sound|,#music| +ɽ N facilities|ʩ,space|ռ + V RegardAs|,ResultIsa=true| + N information|Ϣ,$guess|² +ʹ CONJ {condition|} + V release|ͷ,police| +˵ N information|Ϣ,$guess|² + V pretend|װ,content=die| + N phenomena|,fake|α + ADJ aValue|ֵ,trueness|α,^true| + N human|,enemy|,military| + N attribute|,form|״,&stone|ʯ + N phenomena|,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +ҩ N artifact|˹,#medicine|ҩ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V forge|α +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +װ V pretend|װ +װʥ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N attribute|,price|۸,&artifact|˹,commercial| + N attribute|,value|ֵ,&thing| +۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸ N attribute|,price|۸,&artifact|˹,commercial| +۸񲻷 ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap| + N attribute|,price|۸,&artifact|˹,commercial| +Ŀ N attribute|,price|۸,&thing|,commercial| +Ŀ N document|,*display|չʾ,#price|۸,commercial| +ǩ N mark|־,#price|۸ +Ǯ N attribute|,price|۸,&thing|,commercial| +ֵ N attribute|,value|ֵ,&thing| +ֵ N thought|ͷ,#value|ֵ +ֵ N regulation|,#value|ֵ +ֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ֵ N quantity|,amount|,&value|ֵ + V HoldWithHand| + V PropUp|֧ + V build| + N fact|,fight| + V obstruct|ֹ + N part|,%artifact|˹,bone| + N tool|þ,@put|,generic|ͳ + V withstand|ס +ܲס V WithstandNot|ס +ܴ CLAS NounUnit|,&aircraft| +ܵס V withstand|ס +ܿ V CauseToDo|ʹ,ResultEvent=fake|α +ܿ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ܿ ADJ aValue|ֵ,posture| + V HoldWithHand| + V build| + V put| + V build| +ʽ N attribute|,posture|,&animate| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,flighty|,undesired|ݬ,&human| + N attribute|,posture|,&animate| + N part|,%artifact|˹,bone| + N part|,%entity|ʵ,bone| + N part|,%text|,bone| + N tool|þ,@put|,generic|ͳ + N livestock| + V drive|Ԧ +ݳ V drive|Ԧ,patient=LandVehicle| + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ʻ V drive|Ԧ +ʻ N part|,%ship|,%aircraft|,room|,@drive|Ԧ +ʻ N part|,%LandVehicle|,room|,@drive|Ԧ +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Ԧ V control| +Ԧ V drive|Ԧ + V MarryTo| + V give| +޻ V damage| +޽ V connect|,agricultural|ũ +ױ N tool|þ,$GiveAsGift|,#MarryTo|,generic|ͳ + V destroy| +߻ V destroy|,military| +߻ N weapon|,aircraft|,military| + V destroy| +ս N fact|,fight|,destroy|,military| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,royal| + V supervise| + V supervise| + N facilities|ʩ,*supervise| +վ N InstitutePlace|,*supervise| + V supervise| +첿 N institution|,*supervise|,ProperName|ר,politics| +쳤 N human|,#occupation|ְλ,*supervise|,official|,police| + N human|,*supervise| +ೡ V supervise|,education| +ල V supervise| +ලԱ N human|,*supervise| +ල N human|,*supervise| +෸ N human|,crime|,undesired|ݬ,$detain|ס +๤ N human|,#occupation|ְλ,*supervise|,industrial| + V detain|ס,police| + N fact|,TakeCare|,police| +໤ V TakeCare| +໤Ȩ N rights|Ȩ,TakeCare|,police| +໤ N human|,*TakeCare| +໤ N human|,*protect| + V detain|ס,police| +࿼ V supervise|,education| +࿼ N human|,*supervise|,#exam|,education| + V supervise| + V control| +Ʊ V supervise|,content=select|ѡ +» N institution|,*supervise| + V check| + V supervise| + N part|,%computer|,*display|չʾ +Ե V steal|͵,crime| + V supervise| +ִ V punish| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N human|,#occupation|ְλ,*supervise|,police| +Ů N human|,#occupation|ְλ,*supervise|,police|,female|Ů +֤ V appreciate|޳ + V supervise|,content=produce| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V hide| +Ұ V hide|,military| +᲻ɴ ADJ aValue|ֵ,ability|,withstand|ס,desired| +᲻ɴ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ֲи ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ֲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ּ V obey|ѭ,content=thinking|˼ +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ N attribute|,will|־,strong|ǿ,&human| + ADJ aValue|ֵ,quality|,durable|,desired| + N part|,%plant|ֲ,embryo| + N weapon|,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,&human| +Ͳ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯ ADJ aValue|ֵ,circumstances|,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V believe| +Ų V believe| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ִ V obey|ѭ,content=thinking|˼ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,acute| + N part|,%inanimate|,head|ͷ + N human|,military| +⵶ N tool|þ,*cut|,acute| +ⶥ ADJ aValue|ֵ,form|״,acute| +ⶥ N part|,%inanimate|,head|ͷ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,form|״,sharp| + N fish| + N part|,%fish|,body| + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,form|״,acute| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̱ ADJ aValue|ֵ,content|,#satirize| + N human|,superior|,able|,desired| +챡 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N expression|,*explain|˵ + N letter|ż + N paper|ֽ,@write|д,#letter|ż + N text|,*explain|˵ + CLAS NounUnit|,&InstitutePlace|,&house| + N location|λ,space|ռ,internal| +䲻ݷ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +䲻ݷ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N facilities|ʩ,route|· + N human|,police|,military|,*scout| + N part|,%army| + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V pause|ͣ +䷢ N disease| + N attribute|,distance|,&time|ʱ,&space|ռ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,behavior|ֹ,tactful| +˰ N expenditure| + N attribute|,distance|,&space|ռ + V PickOut|γ,patient=crop|ׯ,agricultural|ũ +϶ N location|λ +϶ N time|ʱ +Ъ ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V planting|ֲ,agricultural|ũ + V cook| + V produce| +尾 V punish| + N food|ʳƷ + V undertake| +汸 V own|,manner=also|Ҳ +沢 V occupy|ռ,military| + V undertake|,content=other| + V SelfMove|,manner=fast| +֮ V own|,manner=also|Ҳ + V PayAttention|ע + V manage|,manner=also|Ҳ + V teach|,education| + V undertake| + ADJ aValue|ֵ,performance|,alike| +ݻ N computer| + N attribute|,performance|,#fit|ʺ,&information|Ϣ,&implement| +ղ V include| +Ӫ V manage|,manner=also|Ҳ + V use|,manner=also|Ҳ + V own|,manner=also|Ҳ +ְ V undertake|,content=other| +ְְҵ N affairs|,#occupation|ְλ,other| + V be|,manner=also|Ҳ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +縺 V bear|е +ؽ N part|,%AnimalHuman|,bone| +Ħ챻 ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ͷ N location|λ,%part| +ͷ N part|,%AnimalHuman|,body| + N mark|־,#clothing|,$PutOn| +ι N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ܶ V endeavour|,manner=hardship| +׿ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V suffer|,content=hardship|,manner=extreme| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,*betray|,treacherous| +鳼 N human|,undesired|ݬ,official|,treacherous| +黫 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,commercial|,crime|,*deceive|ƭ + V damage|,purpose=mating|,crime| +ϸ N human|,police|,military|,*scout| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +Ц V laugh|Ц +а ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + V damage|,purpose=mating|,crime| + N human|,undesired|ݬ,*betray|,treacherous| +թ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + N human|,undesired|ݬ,treacherous| + V shut|ر + V KeepSilence|˵ +Ĭ V KeepSilence|˵ + N house|,#InsectWorm| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N material|,?clothing| +˿ N material|,?clothing| + V check| + V restrain|ֹ,patient=self| +첨 V distinguish|ֱ,information|Ϣ,#electricity| + V check| + V check| + N human|,*check| +Ա N human|,#occupation|ְλ,*check| + V check|,police| +쳤 N human|,#occupation|ְλ,*check|,official|,police| + N human|,#occupation|ְλ,*check|,official|,police| +Ժ N institution|,*check|,police| + V check|,Vachieve| + V PayAttention|ע + V check| +춨 V distinguish|ֱ + V reveal|¶ + N human|,*reveal|¶ + V check| + V LookFor|Ѱ + V check| + V repair| + V check| + V exam| + V check|,#medical|ҽ + V check| + V check|,military| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) + N letter|ż + N place|ط,country|,ProperName|ר,(Cambodia|կ) +կ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) +կ N place|ط,country|,ProperName|ר,(Asia|) +կ N language|,#country|,ProperName|ר + N letter|ż + N chemical|ѧ + N land|½ + N fact|,ize|̬ + ADJ aValue|ֵ,performance|,industrial| + N attribute|,performance|,industrial|,&inanimate| + N chemical|ѧ + V choose|ѡ +ѡ V choose|ѡ + V gather|ɼ + V pick|ʰ +ö V gather|ɼ,possession=waste| + ADJ aValue|ֵ,content|,simple|,desired| + N character|,surname|,human|,ProperName|ר + N letter|ż + N letter|ż,past| + N publications|鿯,news| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N attribute|,name|,simple|,&entity|ʵ + N naming|,manner=simple| + ADJ aValue|ֵ,content|,simple|,desired| +򵥻 ADJ aValue|ֵ,content|,shallow|dz +򵥻 V handle|,manner=careless| +򵥻 N human|,*ize|̬ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +֮ ADV {comment|} + N ize|̬,PatientAttribute=simple| + V ize|̬,PatientAttribute=simple| + N character|,simple|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,simple|,desired| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,content|,simple|,desired| + N document|,@record|¼,#process|,#human| + ADJ aValue|ֵ,content|,simple|,desired| +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +Ҫ ADJ aValue|ֵ,content|,concise|,desired| +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʷ N fact|,#time|ʱ,simple| + V describe|д,manner=simple| + N character|,simple|,(China|й) + N character|,simple|,(China|й) +ͼ N image|ͼ +Ѷ N news|,simple| +֮ ADV {comment|} +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,content|,easy|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| + N document|,regulation|,simple| +Ȩ V MakeBetter|Ż,politics| +ֱ ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + V break|۶ + N tool|þ,*break|۶ + N part|,%publications|鿯 + V break|۶ + V compile|༭ + V start|ʼ + V destroy| + N tool|þ,*break|۶ + N quantity|,rate|,&price|۸,commercial| + V compile|༭ + V compile|༭ + V compile|༭ +Ӱ N image|ͼ +ֽ N image|ͼ + N tool|þ,*break|۶ + V DoSum| + V DoSum|,means=subtract| + V subtract| + V subtract|,range=half| + V BecomeLess|,scope=produce|,industrial| + V subtract| + V BecomeLess| + V subtract| + N method|,*DoSum| + V AlterMeasurement|,ResultEvent=bony| + N attribute|,range|,BecomeLess|,&price|۸,commercial| + N symbol|,*DoSum| + V SlowDown| + V BecomeLess|,scope=price|۸,commercial| + V subtract|,patient=expenditure| + V SlowDown| + V exempt| + V subtract| + V weaken| +ȥ V DoSum| + V weaken| +ɫ V weaken| +ɱ V weaken| + V subtract| + N quantity|,amount|,#DoSum| +˰ V subtract|,patient=expenditure| + V SlowDown| + N tool|þ,*SlowDown| + V BecomeLess| +С V subtract| + V weaken|,patient=punish|,police| +ѹ V weaken|,patient=press|ѹ,industrial| +Ա V BecomeLess|,scope=employee|Ա + V subtract|,patient=unfortunate| + V weaken|,patient=shiver| + N tool|þ,*weaken|,#shiver| + N tool|þ,*weaken|,#shiver| + V BecomeLess| + N FlowerGrass| + V recommend|Ƽ + N tool|þ,@sleep|˯ + V recommend|Ƽ + N facilities|ʩ,space|ռ,@detain|ס,animal| + N part|,%building|,mouth| + N part|,%house| + V check| + N information|Ϣ + V investigate| + V mean|ָ + N tool|þ,*look|,#self| + V distinguish|ֱ + V distinguish|ֱ + V estimate| + N fact|,*estimate| + N human|,*estimate| + N information|Ϣ + V appreciate|޳ +ͼ N human|,*estimate| + PREP {cause} + V conduct|ʵʩ + V kick|߲ +̤ V damage| +Լ V obey|ѭ,content=MakeAppointment|Լ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ͷ N human|,undesired|ݬ + V sell|,cost=cheap|,commercial| + N human|,undesired|ݬ + V appear| + V meet| + V perception|֪,means=look| + V read| + N thought|ͷ + STRU {Vachieve|} + V appear|,location=publications|鿯 + ADJ aValue|ֵ,ability|,able|,desired| + V grow|ɳ + V perception|֪ + N thought|ͷ +ʶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,form|״,square| +ʩ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V endeavour| +ֲ V despise|,target=ordinary| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V BeRecovered|ԭ + V read| + N thought|ͷ + V disloyal|,cause=wealth|Ǯ + V meet| +ǰ V read| +ʼ V differ|ͬ + V read| +ʶ V enrich|ʵ,material=experience| +ʶ N experience| + V enrich|ʵ,material=experience| +δ ADJ aValue|ֵ,kind|,special| +΢֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N information|Ϣ +ϰ V drill|ϰ +ϰ N human|,*study|ѧ,education| + V read| +Ц V LaughAt|Ц +Ч V succeed|ɹ +Ϊ V dare| +˼Ǩ ADJ aValue|ֵ,behavior|ֹ,^lasting| + V read| +֤ N experience| +֤ V perception|֪,means=look| +֤ N human|,*prove|֤,#police| + V appear|,location=publications|鿯 + N part|,%chemical|ѧ + N part|,%implement| + N part|,%tool|þ,#fasten|˩ + N part|,%computer|,%MusicTool| + V write|д + N weapon|,*firing| + N tool|þ,#firing| +¥ N facilities|ʩ,space|ռ,@look| +ͷ N mark|־ +ͷ N part|,%weapon|,*firing| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N beast| + N weapon|,*firing| + CLAS NounUnit|,&thing| + N letter|ż + N part|,%artifact|˹,#produce|,industrial| + V MakeBetter|Ż + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + N human|,desired|,able| + N human|,desired|,employee|Ա,able|,#exercise| + N human|,desired|,employee|Ա,able|,#exercise| + V BeWell|׳ + ADJ aValue|ֵ,kind|,ordinary|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ȫ V MakeBetter|Ż +ȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V exercise| + N facilities|ʩ,@exercise|,sport| +̸ ADJ aValue|ֵ,ability|,able|,speak|˵ + V exercise| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,unable|ӹ,remember|ǵ + N human|,*forget| +θ ADJ aValue|ֵ,ability|,able|,MakeBetter|Ż + V alive| +׳ V BeWell|׳ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N weapon|,ship|,military| + N human|,#occupation|ְλ,official|,#ship|,military| + N weapon|,ship|,military| + N army|,#ship| + N weapon|,%ship|,*firing|,military| +ͧ N weapon|,ship|,military| + ADJ aValue|ֵ,performance|,able|,$transport|,#ship| +ֻ N weapon|,ship|,military| + N weapon|,*stab| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ü N part|,%human|,hair|ë + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) +Ŵѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) + V farewell| + V farewell| + ADJ aValue|ֵ,speed|ٶ,slow| + N fact|,change|,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,continuous| + V prosper| +Ѿ V prosper| + V disperse|ɢ + N land|½,linear|,#water|ˮ + N part|,%land|½,linear|,#water|ˮ + V build| + V establish| + V propose| + N material|,*build| + V build|,Vachieve| + V establish|,patient=community|,politics| + V establish|,patient=capital|,politics| + N fact|,#build| + V succeed|ɹ +ҵ V succeed|ɹ + V establish|,patient=country|,politics| + V associate| + V establish|,patient=army|,military| + N time|ʱ,day|,festival|,#army|,@congratulate|ף + V establish| + V build|,Vachieve| + V build| +貿 N institution|,*build|,ProperName|ר,politics| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) + N human|,*build| + V donate| + V establish|,PatientProduct=organization|֯ +ί N institution|,*build|,ProperName|ר,politics| +У V establish|,PatientProduct=InstitutePlace| +ҵ V succeed|ɹ + V propose| + N text|,$propose|,$discuss|,$debate| + V build| + N part|,%organization|֯,bone| + N building|,generic|ͳ,space|ռ + V build| + N material|,*build| + N building|,generic|ͳ,space|ռ +ѧ N knowledge|֪ʶ,#build| +ҵ N affairs|,#build|,industrial| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + V BeOpposite| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V ize|̬,PatientAttribute=hard|Ӳ + N attribute|,circumstances|,hardship|,&event|¼ +ʬ N part|,%AnimalHuman|,*die|,body| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ζ ADJ aValue|ֵ,taste|ζ + ADV aValue|ֵ,time|ʱ,future| + V attack| + N human|,#occupation|ְλ,official|,military| + V incite|ָʹ + N part|,%tool|þ,#recreation|,#compete| + PREP {PartOfTouch} + PREP {PatientProduct} + ADV {comment|} + PREP {content} + PREP {patient} + PREP {possession} + AUX {tense|ʱ̬,future|} +...乬 N discharge| + N human|,able|,military| + N human|,able|,military| + ADV time|ʱ,past| +ʹ V fulfil|ʵ,means=^amend| + V amend|,content=err|,means=endeavour| + V amend|,content=crime|,means=endeavour| + V amend|,content=crime|,means=endeavour| + N human|,#occupation|ְλ,official|,military| +ƾͼ V defeat|սʤ,means=use|,#method| + ADV aValue|ֵ,possibility|,almost| + V endure| + N human|,#occupation|ְλ,official|,military| + V come|,future| + N time|ʱ,future| + N human|,#occupation|ְλ,official|,military| + N community|,family|,military| +ʿ N human|,military|,mass| +˧ N human|,official|,military| +Ϣ V rest|Ϣ +ı V pity| +Ž V doubt| + V maintain| + V rest|Ϣ +Ҫ AUX {tense|ʱ̬,future|} +ָ N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,hand| + V wash|ϴ + N water|ˮ,concentrated| + N part|,%plant|ֲ,$eat|,embryo| + N tool|þ,sticky|,*fix|ס,*fasten|˩ +ϴ V wash|ϴ +Һ N water|ˮ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,linear| + N part|,%land|½,#waters|ˮ,edge| + N location|λ,north|,%land|½,#waters|ˮ + N location|λ,east|,%land|½,#waters|ˮ + N waters|ˮ,linear| + V decline|˥ + N place|ط + N waters|ˮ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%waters|ˮ,mouth| + N ship| + N material|,?food|ʳƷ,#crop|ׯ + N location|λ,south|,%land|½,#waters|ˮ +ɽ N attribute|,power|,politics|,&country| +ɽ N land|½ +ɽ N place|ط,#human|,country|,politics| +ˮ N water|ˮ,#waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N location|λ,%waters|ˮ,middle| + N human|,crime|,undesired|ݬ,*rob| + N place|ط,city|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N location|λ,surrounding|Χ,space|ռ + N place|ط,military|,@fight| + N place|ط,#country| + N place|ط,#country| + N place|ط,#country| + N character|,surname|,human|,ProperName|ר +ʯ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N part|,%ship| + V mobilize| + V praise|佱 + V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| + V reward|,punish| + N reward|,punish| +ƶ N regulation|,#reward|,#punish| + V reward|,punish| + N payment|,*reward|,$GiveAsGift| + V reward| + N payment|,*reward|,$GiveAsGift| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ʒ N tool|þ,*reward|,$GiveAsGift|,desired| +ڷ V reward|,punish| +ȯ N bill|Ʊ,*reward|,$GiveAsGift|,desired| + V reward| +ѧ N fund|ʽ,*reward|,#study|ѧ,education| +Ҵ V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| +» N human|,$reward| +״ N document|,*prove|֤,#reward| + V ParticularAbout| + V discuss| + V explain|˵ + V speak|˵ + N text| + V reconcile| + V speak|˵ + V discuss|,content=price|۸,commercial| + V explain|˵ + V ParticularAbout| + ADJ aValue|ֵ,quality|,refined|,desired| + V teach|,content=knowledge|֪ʶ,education| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V debate| + V explain|˵ + V estimate| + V explain|˵ + V mediate| + V ParticularAbout| +ʦ N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V explain|˵ +̨ N facilities|ʩ,space|ռ,@teach| +̳ N facilities|ʩ,space|ռ,@teach| +̳ N fact|,@communicate| + N room|,education| +ϰ V teach|,education| +ѧ V teach|,content=knowledge|֪ʶ,education| + V speak|˵ + N readings|,*teach|,education| + N fact|,teach|,education| + N human|,#occupation|ְλ,industrial| + N human|,#occupation|ְλ,industrial| + N thinking|˼ +Ķ ADJ aValue|ֵ,kind|,special|,desired| +Ķ V use|,patient=method|,refined| + V cook| + N material|,?food|ʳƷ + N food|ʳƷ + N food|ʳƷ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown|,NotLight|Ũ + N material|,?food|ʳƷ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + V BecomeLess| + V MoveItDown| + V defeat|սʤ + V fall| + V subtract| + V surrender| + V put|,patient=mark|־ + V BecomeLess| + V MakeLower| + V subtract| + V defeat|սʤ + V surrender| + V degrade| + V degrade| + V degrade|,education| + V BecomeLess|,scope=price|۸ + V arrive| + V defeat|սʤ,partner=strong|ǿ + V arrive| + V fall| +ɡ N tool|þ,#fall|,#aircraft| + V ComeToWorld| +ˮ V WeatherBad| +ˮ N quantity|,amount|,&RainSnow|ѩ +˳ V surrender| + V WeatherBad| + V cool| + V MoveItDown| +ѹ V MakeLower|,patient=voltage|ѹ + N liquid|Һ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ +ְ V degrade| +ּ V publish|,ContentProduct=document|,royal| + N plant|ֲ + N crop|ׯ,?material| + N plant|ֲ + N material|,?food|ʳƷ + N stone|ʯ,material| +ʯ N stone|ʯ +ʯ N stone|ʯ,material| + V FormChange|α + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,color|ɫ,black| + V burn|,industrial| + ADJ aValue|ֵ,color|ɫ,yellow| + V worried|ż + N attribute|,distance|,#TakePicture| + ADJ aValue|ֵ,dampness|ʪ,dried| + N emotion|,worried|ż + V worried|ż +Dz V uneasy| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ͷö V unfortunate| + N stone|ʯ,material| + V worried|ż + N chemical|ѧ + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V worried|ż + V worried|ż + ADJ aValue|ֵ,stickiness|,sticky| + V fasten|˩ + N material| + N material|,*fasten|˩ + N tool|þ,*print|ӡˢ + N tool|þ,medical|ҽ + N tool|þ,*wrap|,#electricity| + V fasten|˩ +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ + N part|,%tool|þ,#record|¼ +ľ N material|,?tool|þ + N tool|þ,cubic|,@put|,#medicine|ҩ,medical|ҽ + N stone|ʯ,material| +Ƥ N material| +Ƭ N part|,%tool|þ,#record|¼ +ˮ N stationery|ľ,*fasten|˩ +Ь N clothing|,#foot| +Ь N clothing|,#foot|,#RainSnow|ѩ +ѥ N clothing|,#foot|,#RainSnow|ѩ +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ɪ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +״ ADJ aValue|ֵ,form|״ + V BeOpposite| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V BeAcross|ཻ + V associate| + V mating| + V submit| +׾ V fail|ʧ + V entrust|ί + V dispatch|Dz +ͷ V release|ͷ +ʧ֮ V lose|ʧȥ + V fight|,military| + V BeAcross|ཻ + N location|λ,BeAcross|ཻ,#route|· + N location|λ,BeAcross|ཻ,#route|· +· N location|λ,BeAcross|ཻ,#route|· + V submit| + V SetAside| + V BeAcross|ཻ + V admit| + V entrust|ί + V explain|˵ + V admit| + V entrust|ί + V explain|˵ + N fact|,#associate| + V tell| + N image|ͼ,dot| + N part|,%space|ռ,dot| + V separate| + V pay| + V compete| + V fight| + V fight|,military| + V pay| + V submit| + N part|,%AnimalHuman|,nerve| + V pay| + V submit| + V associate| + ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ +ʽ ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ + V return| + V exchange| + N machine|,#communicate| + V return| + V BeAcross|ཻ +㴦 N location|λ,@ComeTogether| + V fight|,military| + V submit|,commercial| + N time|ʱ,@submit|,commercial| + V appear| + V mix| + V associate| +ʻ N human|,*associate|,female|Ů + N shows|,#associate| + V happen|,manner=together|ͬ + V associate| + V connect| + V entrust|ί +Ӱ V replace|,patient=affairs| + V BeAcross|ཻ + N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| + V fulfil|ʵ + V submit|,possession=document|,education| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ڳ V praise|佱 +ڳ V praise|佱,manner=together|ͬ + N pay|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,#electricity| + V exchange| + N electricity| + V pay| + V mating|,#animal| + N attribute|,relatedness|,&human| + V mix| + V discuss| + V fight| + V sell| +˰ V pay|,possession=expenditure| +̸ V talk|̸ + V replace| +ͨ N fact|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,*transport|,#information|Ϣ +ͨ N institution|,#vehicle|ͨ,ProperName|ר,politics| +ͨ N vehicle|ͨ +ͨ N law|ɷ,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| +ͨ N quantity|,amount|,&vehicle|ͨ,&VehicleGo|ʻ +ͨ¹ N phenomena|,#vehicle|ͨ,unfortunate|,undesired|ݬ +ͨ N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ +ͨ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ͨӵ N phenomena|,crowded|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +ͷӶ V speak|˵ + V associate| +β V mating|,#animal| +ӳ V AppearanceChange|۱ +ӳ V illuminate| + N music|,entertainment| + N community|,*perform|,#music|,entertainment| + N music|,entertainment| + V speak|˵ + V submit|,purpose=check| + N furniture|Ҿ,space|ռ,@sit| + N affairs|,#buy|,#sell|,commercial| + N affairs|,#money|,commercial| +׻ N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,#buy|,#sell|,commercial| + N attribute|,relatedness|,&human| + N shows|,#associate| + V associate|,partner=friend| + V associate| +ս V fight|,military| + V explain|˵ + V pay| +֯ V mix| + V mating| + N part|,%place|ط,surrounding|Χ,#city| + N part|,%place|ط,surrounding|Χ,#city| + N human|,*reside|ס + N part|,%place|ط,surrounding|Χ,#city| + V tour| + V irrigate|,agricultural|ũ + V spray| + V spray|,industrial| + V irrigate| + V irrigate|,agricultural|ũ +ˮ V irrigate| + V produce|,industrial| + V fill| +ע V fill| +ע V give| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N celestial| +ƻ ADJ aValue|ֵ,temperature|¶,hot| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ε ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V shy| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V indulge| + V indulge| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V masticate|׽ + V TalkNonsense|Ϲ˵ + V MakeTrouble| + V mix| + V mix| + N machine|,*mix| + N machine|,*mix| + V mix| + V MakeTrouble| + V mix| + V mix| + V MakeTrouble| + V deceive|ƭ + V MakeTrouble| + V break|۶ +½ V connect| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V amend| + V pretend|װ +ý ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ý ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + N human|,*pretend|װ + V HideTruth| + V amend| + V amend|,medical|ҽ + V lucky| + N part|,%AnimalHuman|,foot| + N part|,%inanimate|,base| + N stone|ʯ,waste| +Ű N part|,%AnimalHuman|,foot| +ű N part|,%AnimalHuman|,foot| +ű N publications|鿯,#shows|,entertainment| +Ų N part|,%AnimalHuman|,foot| +Ų N attribute|,distance|,&walk| +ŵ N tool|þ,*illuminate|,#entertainment| +ŵ N part|,%AnimalHuman|,foot| +ŷ N human|,#occupation|ְλ,*TakeAway|ᶯ +Ÿ N part|,%AnimalHuman|,foot| +ż N part|,%AnimalHuman|,foot| + N attribute|,strength|,&leg| + N payment|,#TakeAway|ᶯ + N tool|þ,police|,#crime|,#foot|,*detain|ס +¯ N tool|þ,*WarmUp|,#foot| + N part|,%AnimalHuman|,foot| + N disease| +ּ N facilities|ʩ,#build| +̤ N LandVehicle| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + N part|,%AnimalHuman|,foot| + ADJ aValue|ֵ,attachment|,foot| + N location|λ,#foot|,beneath| + N part|,%AnimalHuman|,foot| +Ѿ N part|,%AnimalHuman|,foot| +ӡ N trace|,#SelfMove|,#CauseToMove|,#foot| + N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,foot| +ֺ N part|,%AnimalHuman|,foot| +ֺϸ ADJ aValue|ֵ,length|,long| +ע N part|,%text| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ʊ V debate| +ƻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V deny| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N MusicTool| + V compete| + V fight| + N human|,*perform|,entertainment| + N image|ͼ,angular| + N land|½,#waters|ˮ + N location|λ,space|ռ,angular| + N part|,%AnimalHuman|,*feel| + N part|,%space|ռ,space|ռ,angular| + N shape| + N tool|þ,past|,*drink|,#drinks|Ʒ + CLAS unit|λ,&money|,(China|й) +dz N tool|þ,*measure| +Ƕ N attribute|,distance|,&location|λ +Ƕ N standpoint| +Ǹ N metal|,material| +¥ N facilities|ʩ,space|ռ,@look| + N location|λ,space|ռ,angular| +Ĥ N part|,%AnimalHuman|,eye| +Ĥ N disease| + N phenomena|,sport| +ɫ N human|,*perform|,entertainment| +ʯ N stone|ʯ,material|,mine| + N metal|,material| + V compete| + V fight| + N image|ͼ,cubic| +״ N shape| +׶ N image|ͼ,cubic| + N food|ʳƷ + N food|ʳƷ + V obtain|õ,military|,police| + V submit| +ɷ V pay|,possession=money| +ɸ V pay| +ɻ V obtain|õ,military|,police| +ɿ V pay|,possession=money| + V pay| +˰ V pay|,possession=expenditure| + V remove| +е V remove|,patient=weapon|,military|,police| +е V surrender|,military|,police| + V coil| + V kill|ɱ +ʳ N machine|,*lift| +ʼ N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʾ֭ V think|˼ + N tool|þ +ɱ V kill|ɱ + N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʹ V painful|ʹ + N fact|,kill|ɱ,police| + V attack|,military| + V steal|͵ + V destroy| +Ϯ V steal|͵ + N system|ƶ,generic|ͳ,religion|ڽ + V teach| + V teach|,education| +̰ N plans|滮,#teach|,education| +̲ N readings|,*teach|,education| +̳ N readings|,*teach|,education| +̵ V teach| +̵Ա N human|,#occupation|ְλ,*teach|,politics| +̸ V improve|,patient=education| +̹ N human|,#occupation|ְλ,employee|Ա,education| +̹ N human|,#occupation|ְλ,*teach| +̻ V teach| +̻ N human|,religion|ڽ +̻ N community|,religion|ڽ +̻ V teach| +̻ V teach|,education| +̾ N tool|þ,*teach|,generic|ͳ +̿ N readings|,*teach|,$study|ѧ,education| +̿ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) + N human|,#occupation|ְλ,*teach| + V teach|,education| +Ա N human|,#occupation|ְλ,*teach| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա,#teach| + N place|ط +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ ADJ human|,#occupation|ְλ,*teach|,education| +ʦ N human|,#occupation|ְλ,*teach|,education| +ʿ N human|,religion|ڽ + N room|,education| + N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V teach|,education| + V incite|ָʹ + N InstitutePlace|,religion|ڽ + N thinking|˼ + N thinking|˼,stiff| + N human|,stiff|,undesired|ݬ +ͷ N human|,#occupation|ְλ,*teach| +ͷ N human|,#occupation|ְλ,*teach|,military|,past| +ͽ N human|,religion|ڽ +ί N institution|,ProperName|ר,#education| + N affairs|,#teach| +ѧ V teach|,education| +ѧ N plans|滮,#teach|,education| +ѧ N method|,*teach|,education| +ѧҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ѵ V ExpressAgainst|Ǵ +ѵ N experience| + V teach|,research|о + N part|,%InstitutePlace|,*teach|,*research|о + N part|,%InstitutePlace|,*teach|,*research|о + V teach| + N reason|,religion|ڽ + N attribute|,ProsCons|,pros|,desired|,&teach| + N affairs|,education| + V teach| + N institution|,ProperName|ר,#education| +ĸ V improve|,patient=education| + N human|,#knowledge|֪ʶ,education| + N institution|,ProperName|ר,#education| +ѧ N knowledge|֪ʶ,#education| +Ա N human|,#occupation|ְλ,*teach|,education| +ְ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| + V ize|̬ +ĸ N bacteria|΢,material|,?food|ʳƷ + N LandVehicle| +γ N LandVehicle| + N LandVehicle| + ADV aValue|ֵ,degree|̶,more| + PREP {contrast} +ϱ ADV aValue|ֵ,degree|̶,ish| +ϱ ADV aValue|ֵ,degree|̶,more| +Ͼ V HaveContest| + V HaveContest| + ADJ aValue|ֵ,weight|,NotHeavy|,ish| + ADJ aValue|ֵ,time|ʱ,late| +Ϊ ADV aValue|ֵ,degree|̶,more| +֮ PREP {contrast} + ADJ aValue|ֵ,sex|Ա,male| + V cry| + V employ| + V naming| + V order| + V request|Ҫ +в ADJ aValue|ֵ,possibility|,impossible|,$naming| +з N attribute|,name|,&entity|ʵ +к V cry| +к N human|,*cry| +к N human|,*cry| +к V praise|佱 +л N human|,poor|,undesired|ݬ +л V cry| +о V praise|佱 +п V protest| +п V sigh|̾ +п಻ V protest| + V ExpressAgainst|Ǵ + V cry|,content=sell|,commercial| + V cry| + V ExpressDissatisfaction|ʾ + V protest| + V cry| + N sound|,cry| + V ShowBadEmotion|ʾ + V call|ٻ + V naming| + V naming| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N facilities|ʩ,space|ռ,@store| + V StripOff|ȥ + V lift| + V reveal|¶ +Ҵ V reveal|¶ +ҵ V reveal|¶,patient=secret| +Ҷ V reveal|¶,patient=undesired|ݬ +ҷ V reveal|¶ +ҸͶ V uprise| +ҿ V open| +ҿ V reveal|¶ +¶ V reveal|¶ +Ļ V start|ʼ +ʾ V announce| +ʾ V reveal|¶ +ʾ N human|,*reveal|¶ + V announce| + V approach|ӽ + V catch|׽ס + V connect| + V meet| + V receive| + V replace| +Ӱ V replace|,content=bear|е +Ӱ N human|,*bear|е +Ӳ V help|,scope=GiveBirth|,medical|ҽ +Ӵ V associate| +Ӵ V fight|,military| +Ӵ V touch| +Ӵ N phenomena|,#touch|,loose|,undesired|ݬ +ӴȾ ADJ aValue|ֵ,behavior|ֹ,#touch| +ӴȾ N disease| +Ӵ V entertain|д +Ӵ N room|,@entertain|д +ӴԱ N human|,#occupation|ְλ,*entertain|д +Ӵվ N InstitutePlace|,@entertain|д +ӵ V meet|,Vachieve| +ӵ V receive|,Vachieve| +ӵ V touch|,patient=land|½,#electricity| +ӵ N location|λ,@BeAcross|ཻ +Ӷ ADJ aValue|ֵ,behavior|ֹ,continuous| +ӷ V replace|,content=defend|,military| +ӷ V entertain|д +ӹ V replace|,content=manage| +ӹ V obey|ѭ +Ӻ V connect| +ӻ V MakeBetter|Ż,industrial| +ӻ V fight|,military| +ӻ V receive| +Ӽ V help| +Ӽ V meet| +ӽ V BeNear| +ӽ ADJ aValue|ֵ,distance|,near| +ӽ V approach|ӽ +ӽ V approach|ӽ +ӿ N part|,%software| + V do|,manner=replace| + N SportTool|˶,sport| + N fact|,compete|,sport| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,behavior|ֹ,continuous| +Ŀ N tool|þ,*look| + V include| + ADJ aValue|ֵ,content|,concise|,desired| +Ǣ V associate| + V BeNear| + V replace|,content=bear|е + V connect| + V help|,scope=GiveBirth|,medical|ҽ + V include| + V receive| +ջ N machine|,*receive|,#information|Ϣ +վ N InstitutePlace|,@receive|,information|Ϣ + N human|,*receive| + V bear|е + V accept| + V suffer|,content=interrogate|,police| + N human|,*receive| + V follow| + V replace| +ͨ V connect| +ͷ V associate| +ͷ V connect| +ͷ V connect|,industrial| +ͷ V meet| + V ShowLove|ʾ,means=CausePartMove| +ᄉ N tool|þ,*look|,#physical| + CONJ {supplement|ݽ} + V connect|,#electricity| + N facilities|ʩ,#electricity| + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,continuous| +Ӧ V help| +Ӧ V provide| +վ V meet|,location=facilities|ʩ,#vehicle|ͨ + V cure|ҽ +ס V catch|׽ס,Vachieve| + V GoOn| + V catch|׽ס,Vachieve| + V follow| + V appear| + V appear| + ADJ aValue|ֵ,range|,all|ȫ +Դϲ V joyful|ϲ +Կ AUX {modality|} + N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,route|· +ֵ N facilities|ʩ,route|· +ֵ N place|ط,#reside|ס +ֵ N facilities|ʩ,*illuminate|,#route|· +ַ N human|,*reside|ס,near| +־ N attribute|,scene|,&facilities|ʩ,&building| +ֿ N location|λ,#route|·,angular| + N facilities|ʩ,route|· + N place|ط,#reside|ס + N location|λ,%route|· + N InstitutePlace|,space|ռ,commercial| +̸ V talk|̸ +ͷ N location|λ,#route|·,space|ռ,angular| +ͷβ N location|λ,#route|·,space|ռ + N facilities|ʩ,route|· + N location|λ,%route|· + N attribute|,rank|ȼ,&human| + N part|,%building|,nerve| +ײ N attribute|,status|,&human| +׶ N process|,#time|ʱ +׶ ADJ aValue|ֵ,behavior|ֹ +׼ N attribute|,rank|ȼ,&human| +׼ N attribute|,status|,&human| + N part|,%building|,nerve| + N human|,crime|,undesired|ݬ,$detain|ס + V break|۶ + V obstruct|ֹ +س V improve| +ض V BlockUp| +ض V break|۶ +ض V obstruct|ֹ +ظ V due| +ظ N time|ʱ,@due| +ػ V obtain|õ +ػ V attack|,military| + V detain|ס + V BlockUp|,#waters|ˮ + N part|,%inanimate|,surfacial| +ȡ V separate| +Ȼ ADV aValue|ֵ,degree|̶,extreme| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| +̱ V paralyse|̱ +֫ V cure|ҽ,#limb|֫ +ֹ V due| +ֹ N time|ʱ,@due| + PREP {TimeFin} + V attack| + V force|ǿ + N phenomena|,undesired|ݬ,#unfortunate| + V rob| +ٲ V rob|,possession=wealth|Ǯ +ٳ V control|,means=fierce|,crime| +ٳ N human|,*control|,crime| +ٶ V rob| +ٷ N human|,crime|,undesired|ݬ,*rob| +ٺ V alive|,#unfortunate| +ٻ V control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| + V rob| + N phenomena|,unfortunate|,undesired|ݬ +ɫ V rob|,target=female|Ů,purpose=mating| + V rescue|,patient=human|,crime| + N attribute|,behavior|ֹ,&human| + N attribute|,length|,&inanimate| + V compile|༭,means=subtract| + V economize|ʡ + N location|λ,dot| + N part|,%document| + N part|,%inanimate| + N part|,%physical| + N shape| + N time|ʱ,festival|,@congratulate|ף +ڰ V restrain|ֹ,patient=sorrowful| +ڵ V economize|ʡ,patient=electricity| +ڹ N part|,%thing|,important| +ڹ N time|ʱ,important| +ڼ N time|ʱ,day|,@rest|Ϣ,@WhileAway| +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڽ ADJ aValue|ֵ,behavior|ֹ,lasting| +ڽ N disease| + N time|ʱ,season| + V economize|ʡ,patient=expenditure| + N part|,%machine| +¼ V record|¼ + N attribute|,speed|ٶ,&act|ж +ú V economize|ʡ,patient=material| +Ŀ N shows| + V economize|ʡ,patient=strength| + N attribute|,speed|ٶ,&music|,&language| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ V economize|ʡ +ʳ V subtract|,patient=consume|ȡ +ˮ V economize|ʡ,patient=water|ˮ +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| +ʳ V alive|,manner=thrifty| + V economize|ʡ,patient=material| + V surplus|ʣ + V prohibit|ֹ,ResultEvent=GiveBirth| +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ V economize|ʡ +ԼͶ ADJ aValue|ֵ,ability|,able|,economize|ʡ +֫ N AnimalHuman|,generic|ͳ + V control| + V restrain|ֹ + N attribute|,speed|ٶ,&event|¼ + N attribute|,speed|ٶ,&music|,&language| + N fruit|ˮ +۹ N food|ʳƷ + N fruit|ˮ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N human|,able|,desired| +ܳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ܳ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ܳ˲ N human|,able|,desired| + N artifact|˹,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble| + ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Czech|ݿ) +ݱ N information|Ϣ,desired|,#win|ʤ,#succeed|ɹ +ݾ N facilities|ʩ,route|· +ݾ N method|,convenient| +ݿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ˺˹工 N place|ط,ProperName|ר +ݿ˺˹工 N human|,(Czechoslovak|ݿ˺˹工) +ݿ˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ N language|,#country|,ProperName|ר +ȵ V VieFor| + N part|,%AnimalHuman|,hair|ë +ë N part|,%AnimalHuman|,hair|ë + V exhaust| +߳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +߾ V exhaust| +߾ȫ V endeavour| + V endeavour| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,color|ɫ,white| +ྻ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N tool|þ,*cleanness|ྻ,generic|ͳ +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| + V AlterForm|״ + V GiveBirth| + N document|,commercial| + V finish| + N location|λ,dot| + V produce| + V twine| + V weave| +᰸ V finish|,police| +᰸ N quantity|,rate|,&finish|,police| + V disable|м,scope=speak|˵ + N human|,undesired|ݬ,*SufferFrom|,#speak|˵ + V ally| + V associate| + V StateChange|̬,StateFin=ice| +᳦ N part|,%AnimalHuman|,viscera| +᳦ N disease| + V forming|γ + V become|Ϊ,isa=enemy| + V AmountTo|ܼ +ᵳӪ˽ V collude| +֯ N part|,%AnimalHuman|,flesh| +ṹ N part|,%entity|ʵ,bone| +ṹ N attribute|,ability|,$forming|γ,&artifact|˹ + V kill|ɱ + N result| + N disease| +˲ N disease| +˸˾ N bacteria|΢ +˾ N medicine|ҩ + V GetMarried| + V merge|ϲ + N human|,*merge|ϲ + V pay|,commercial| + V GetMarried| + N human|,*GetMarried| + N image|ͼ,$TakePicture|,#GetMarried| + V collude| +Ἧ V ComeTogether| +Ἧ V assemble|ۼ +ύ V associate| + N disease|,#swollen| +ᾧ ADJ aValue|ֵ,form|״ +ᾧ N natural|Ȼ +ᾧ N result| +ᾧ״ ADJ aValue|ֵ,form|״ + N result| + V AlterForm|״ + N thought|ͷ,$decide| + V ally| +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease|,#eye| + V GetMarried| + V calculate|,commercial| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V forming|γ,PatientProduct=community| +ʯ N stone|ʯ,#disease| +ʯ N disease| +ʵ V GiveBirth| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| +ʵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʶ V associate| + V cease|ͣ + V finish| + N expression|,*finish| +˪ V StateChange|̬ + V calculate|,commercial| +Ϊ V become|Ϊ +β N part|,&event|¼,tail|β +β N part|,&music|,tail|β + V forming|γ +ҵ V finish|,scope=study|ѧ,education| + N wealth|Ǯ,surplus|ʣ + N expression|,*finish| +ԩ V become|Ϊ,isa=enemy| +Ե V tie| + V cure|ҽ + V calculate|,commercial| + V BeRecovered|ԭ,#skin|Ƥ,medical|ҽ + N character|,surname|,human|,ProperName|ר + V dismiss| + V excrete|й + V explain|˵ + V handle| + V know|֪ + V remove| + N result|,$handle| + V send| + V separate| + V soothe|ο + V remove| +ͬ V remove|,patient=document| + V explain|˵ +ⶳ V StateChange|̬ +ⶳ V resume|ָ +ⶾ V cure|ҽ,content=fever|,medical|ҽ +ⶾ V cure|ҽ,content=poison|,medical|ҽ + V explain|˵ + V release|ͷ +ź N time|ʱ,(China|й) +ž N army|,(China|й) +ž N publications|鿯,news|,military|,(China|й) +ǰ N time|ʱ,(China|й) +ǰ ADJ time|ʱ,past| + N place|ط,(China|й) + V discharge| + V remove|,patient=hate| +׹ V cease|ͣ,military| + V cease|ͣ,content=prohibit|ֹ + V rescue| + V destroy| + V handle| +⿪ V separate| + V remove|,patient=HungryThirsty| + V remove|,patient=difficult| +ϵ V handle| + V translate|,#computer|,#software| + V remove|,patient=upset| + V CauseToDo|ʹ,ResultEvent=^secret| + V remove|,patient=difficult| + V donate| + V help|,scope=wealth|Ǯ +Ƹ V discharge| + V split|ƿ +ʬ N human|,*split|ƿ,medical|ҽ +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*split|ƿ,medical|ҽ + V remove|,patient=angry| +Ȱ V soothe|ο + V cure|ҽ,content=fever| +ɢ V remove| + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + V excrete|й + N attribute|,ability|,&human| + N attribute|,posture|,&human| +˵ V explain|˵ +˵ N text|,*explain|˵ +˵Ա N human|,*explain|˵ + V handle|,patient=problem| + V perish| + V release|ͷ +Χ V remove|,patient=surround|Χ,military| +Χ V rescue|,StateIni=embarrassed|Ϊ +Χ V rescue|,patient=surround|Χ,military| + V analyze| + V remove|,patient=sad|dz +ְ V dismiss|,ResultIsa=official| + N human|,family|,female|Ů + N human|,female|Ů,adult| + N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,mass| + N human|,family|,mass|,female|Ů + V GiveUp| + V obstruct|ֹ + V persuade|Ȱ˵ + V prohibit|ֹ + N system|ƶ,religion|ڽ + N tool|þ,*decorate|װ,$PutOn| +䱸 V defend| +䱸 V obstruct|ֹ + V GiveUp| + V prohibit|ֹ +䵶 N tool|þ,religion|ڽ +佾 V GiveUp|,content=arrogant| + N aspiration|Ը,PayAttention|ע + V GiveUp|,content=addict|Ⱥ + V prohibit|ֹ,politics| +ָ N tool|þ,*decorate|װ,$PutOn| + N tool|þ,@LieDown| + V use| + PREP {purpose} + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ĩ N material|,?food|ʳƷ + N gas|,*kill|ɱ + N attribute|,range|,&entity|ʵ + N part|,%entity|ʵ + N part|,%human|,#community| + N place|ط +籮 N mark|־ + N tool|þ,*measure| +綨 V delimit| +綨 V explain|˵ + N waters|ˮ,linear| + N part|,%software| +ʯ N mark|־ +˵ N information|Ϣ + N phenomena|,sport| + N attribute|,boundary|,&entity|ʵ + N location|λ,ending|ĩ + N mark|־ +׮ N mark|־ + V borrow| + V use| + V lend| + V lend|,commercial| + PREP {purpose} + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| +赶ɱ V damage| + V dispatch|Dz + V lend|,commercial| +跽 N part|,%account|,commercial|,#human| + V lend| + V lend|,commercial| +ŷ V ExpressAgainst|Ǵ + V use|,patient=reason| +軨׷ V GiveAsGift| + V use|,patient=time|ʱ + V study|ѧ + V use| + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + N reason|,fake|α,undesired|ݬ + V use| + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| + N money|,commercial|,$lend| + V borrow| +ʬ V BeRecovered|ԭ + V reside|ס + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + PREP {purpose} + V borrow| + V borrow|,commercial| + V use| + V borrow| +ծ V borrow|,possession=fund|ʽ,commercial| +֧ V borrow|,possession=fund|ʽ,commercial| + V use| + V use| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N clothing|,*protect|,military|,past| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%language| +ʶ N part|,%language| + N part|,%AnimalHuman|,skin|Ƥ + V engage| + V explain|˵ + V guide| + V recommend|Ƽ + N human|,*guide| + N human|,*reconcile|,#GetMarried| + N letter|ż,*prove|֤ + ADJ aValue|ֵ,performance|,explain|˵ + V PayAttention|ע + V oppose| + V situated| + N physical| + N disease| + N beast| + V persuade|Ȱ˵ + N regulation|,#religion|ڽ + CLAS NounUnit|,&fact| + V due| + V due| +ʱ CONJ {time|ʱ} + N tool|þ,*wipe| + N human|,female|Ů + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,nerve| + N part|,%physical|,nerve| + N attribute|,physique|,&human| +ƣ V tired|ƣ + N part|,%AnimalHuman|,flesh| + CLAS unit|λ,&weight| +ƽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + N metal| + N metal|,material| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N account|,*record|¼,#name|,#win|ʤ,past| + V succeed|ɹ,scope=exam|,result=include|,education| + N PenInk|ī,*write|д +̻Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,#metal| + N place|ط,capital|,ProperName|ר,(Cambodia|կ) +𲻻 ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ӳ ADJ aValue|ֵ,brightness|,bright| +ѿ V flee| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,circumstances|,steady|,desired| + N mark|־ + N quantity|,amount|,&wealth|Ǯ + N part|,%human|,hair|ë,yellow| + N human|,religion|ڽ +ŬĿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʯ N material|,?tool|þ,precious| + N material|,?tool|þ,precious| + N lights|,bright| + N fish| + N InsectWorm| +𻨲 N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,yellow| + N time|ʱ,#GetMarried| + N bird| + N tree|,?medicine|ҩ +˪ N medicine|ҩ + N attribute|,price|۸,&metal|,commercial| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,commercial| + N InstitutePlace|,space|ռ,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,mine| + N part|,human|,female|Ů,foot| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ƶ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ǯ N wealth|Ǯ +Ǯ N beast| +ǹ N fish| + N time|ʱ,autumn| + N affairs|,#wealth|Ǯ,commercial| +ڲ N human|,*control|,#commercial| +ڹͷ N human|,#commercial| +ڼ N human|,#wealth|Ǯ,rich|,commercial| +ڽ N community|,#wealth|Ǯ,commercial| +ȶ N attribute|,circumstances|,peaceful|,&money|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɳ N place|ط,capital|,ProperName|ר,(Zaire|) + N metal| + N metal|,generic|ͳ +˹ N place|ط,capital|,ProperName|ר,(Jamaica|) +˿ N beast| +˿ȸ N bird| + N metal|,#wealth|Ǯ +ݲؽ V GetMarried|,undesired|ݬ + N celestial|,space|ռ,#weather| + N FlowerGrass|,?medicine|ҩ + N fish|,*recreation| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Կ N part|,%entity|ʵ,important|,heart| +Կ N tool|þ,*open|,*shut|ر + N FlowerGrass| + N tool|þ,*cure|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N metal|,material| + N facilities|ʩ,space|ռ + N attribute|,name|,empty|,&entity|ʵ + N mark|־,commercial| +ǵ N house|,royal| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now| + N time|ʱ,now|,day| + V differ|ͬ + ADJ aValue|ֵ,time|ʱ,future| + N time|ʱ,future| + N time|ʱ,now|,year| + N human|,now| + N time|ʱ,now|,day| + N time|ʱ,#alive| + N time|ʱ,#alive| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now|,night| + N time|ʱ,now|,past| + N sound|,#language| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%place|ط,mouth| + N place|ط,city|,ProperName|ר,(China|й) +ͲΤ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zimbabwe|ͲΤ) +ͲΤ N place|ط,country|,ProperName|ר,(Africa|) +ͲΤԪ N money|,(Zimbabwe|ͲΤ) +ֵ V talk|̸,manner=joyful|ϲ +ζ ADJ aValue|ֵ,property|,joyful|ϲ + N payment| +Һ N part|,%AnimalHuman|,liquid|Һ + N human|,family|,male| + N part|,%clothing|,body| + N mental| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,tightness|ɽ,tight| + V tighten|ս + V approach|ӽ + V shut|ر + ADJ aValue|ֵ,content|,concise|,desired| + V follow| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +״̬ N attribute|,circumstances|,urgent|,&entity|ʵ + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V BeNear| + V BeNear| + N human|,*reside|ס,near| +ܹ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,tightness|ɽ,tight| + V relate|й + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired|,commercial| +ȱ V lack|ȱ,commercial| + ADJ aValue|ֵ,tightness|ɽ,tight| + N clothing|,#body| + V follow| + V shrink|С + V BeNear| + V hold| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + V uneasy| +׷ V chase|׷ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?clothing| + N fact|,compete|,sport| + N material|,?clothing| + N bird| + N FlowerGrass| + N material|,?clothing| + N mark|־,*reward|,*GiveAsGift| + V MakeBetter|Ż + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,city|,ProperName|ר,(China|й) + ADV {emphasis|ǿ} + ADJ aValue|ֵ,kind|,special| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +Сĵ N human|,cautious| +С΢ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V GoForward|ǰ + V GoInto| + V buy|,commercial| + V drink| + V eat| + V obtain|õ + V submit| + V succeed|ɹ,sport| + V approach|ӽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V prosper| + V consume|ȡ + V engage| + N process| + N attribute|,speed|ٶ,&dig|ھ + V SelfMoveInManner|ʽ + N part|,%place|ط,mouth| + N transport|,commercial| + N attribute|,speed|ٶ,&event|¼ + CONJ {supplement|ݽ} + V start|ʼ,content=leave|뿪 + V attack|,military| + V attack|,military| + N human|,*attack|,military| + V submit| + V prosper| + N knowledge|֪ʶ,#grow|ɳ + N human|,#knowledge|֪ʶ + V buy|,possession=artifact|˹,commercial| + V attack|,military| + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V meet| + V SelfMoveInManner|ʽ + V GoForward|ǰ + V GoForward|ǰ,military| + N part|,%implement|,mouth| + N part|,%place|ط,mouth| + V transport|,commercial| + N human|,*transport|,commercial| + V GoInto| + STRU {Vdirection|,internal|} + N human|,*GoInto| + V GoInto| +ȡ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȡ N mental| +ȥ V GoInto| +ȥ STRU {Vdirection|,internal|} + V GoInto| +ʳ V eat|,patient=edible|ʳ +ʿ N human|,*succeed|ɹ,#exam|,past| +ˮ V GoInto|,agent=liquid|Һ +ˮբ N facilities|ʩ,#waters|ˮ + V GoForward|ǰ,GoBackward| + N attribute|,range|,&event|¼ + V embarrassed|Ϊ +ά V embarrassed|Ϊ + V GoInto|,LocationFin=room| + N payment| + V GoForward|ǰ + V GoOn|,Vgoingon|չ + V conduct|ʵʩ + N music| + V check|,commercial| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +һ ADJ aValue|ֵ,degree|̶,more| + N fact|,prosper| +չ V prosper| +վ V GoInto|,LocationFin=facilities|ʩ,#LandVehicle| + N payment| + N method|,#calculate| +פ V arrive| +פ V arrive|,military| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N character|,surname|,human|,ProperName|ר + V upgrade| + V meet| + N shows| + V upgrade| +ְ V upgrade| + V meet| + V detain|ס,police|,crime| + N place|ط,#prohibit|ֹ + V prohibit|ֹ + N system|ƶ + V WithstandNot|ס +ס V EndureNot| +ס V WithstandNot|ס + V withstand|ס +ס V withstand|ס + N place|ط,#prohibit|ֹ + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=gamble|IJ + V evade|ر + V evade|ر,medical|ҽ + N regulation|,*evade|ر + V prohibit|ֹ + N text|,*prohibit|ֹ + N place|ط,#prohibit|ֹ + N place|ط,#prohibit|ֹ,#exercise| + V prohibit|ֹ,ResultEvent=compete|,sport| + V withstand|ס + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=use| + V prohibit|ֹ,ResultEvent=transport|,commercial| +ֹ V prohibit|ֹ +ֹ N prohibit|ֹ +ֹ N human|,prohibit|ֹ +Ʒ N artifact|˹,generic|ͳ,#prohibit|ֹ + V restrain|ֹ + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N location|λ,surrounding|Χ,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,distance|,near| + N location|λ,surrounding|Χ + N time|ʱ,now| +ʷ N fact|,#time|ʱ + N facilities|ʩ,route|· + N waters|ˮ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,surrounding|Χ,space|ռ,#city| + N attribute|,distance|,near| + N attribute|,circumstances|,now|,&entity|ʵ + ADV aValue|ֵ,time|ʱ,now| + N human|,friend|,#reside|ס +· N facilities|ʩ,route|· + ADJ aValue|ֵ,time|ʱ + ADV aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + N time|ʱ,future| + N time|ʱ,future| + N human|,family| + N human|,family|,intimate| + N time|ʱ,now| + N time|ʱ,now| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V ill|̬,#eye| + N disease|,#eye| +ˮ¥̨ N attribute|,circumstances|,convenient|,&entity|ʵ +ˮ¥̨ȵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,similarity|ͬ,alike| +ֵ N symbol|,#quantity| +Щ N time|ʱ,now| + N cause|ԭ + ADJ aValue|ֵ,distance|,near| + N image|ͼ,$TakePicture|,#human| + N stone|ʯ,waste| + V soak| + N medicine|ҩ +û V soak| + V soak| +Ⱦ V influence|Ӱ + V soak| + V ill|̬ + V soak| +ʪ V become|Ϊ,descriptive=wet|ʪ,cause=soak| +͸ V soak| + V soak| + N human|,*soak| + V KeepOn|ʹ + V OwnNot| + V PayAttention|ע + ADJ aValue|ֵ,degree|̶,extreme| + V endeavour| + V exhaust| + ADJ qValue|ֵ,range|,all|ȫ + CONJ {concession|ò} + ADV {modality|} + CONJ {concession|ò} + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,earliness|,early| + V endeavour| +Ϊ V endeavour| + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| +Ȼ ADV aValue|ֵ,possibility|,possible| +˽֪ ADJ aValue|ֵ,property|,$know|֪ + ADV aValue|ֵ,ability|,able|,please|ȡ +ƾ ADJ aValue|ֵ,GoodBad|û,good|,desired| +۵ V perception|֪,#look| +ͷ N location|λ,ending|ĩ +ͷ N time|ʱ,ending|ĩ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| +ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| + V conduct|ʵʩ,content=duty| + ADV aValue|ֵ,earliness|,early| + V conduct|ʵʩ,content=duty| +ְ V endeavour| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,desired| + N attribute|,bearing|̬,&human| + N attribute|,strength|,&human| + N emotion|,FondOf|ϲ + N human|,enemy|,strong|ǿ + N attribute|,strength|,&AnimalHuman| + N human|,mass|,strong|ǿ + V kick|߲ +ͷ N attribute|,strength|,&AnimalHuman| +ͷ N emotion| +ͷ N emotion|,excited| + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +; ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N medicine|ҩ,(China|й) + N character|,(China|й) +ҵҵ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N part|,%plant|ֲ,body| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,brightness|,bright| + N natural|Ȼ + N natural|Ȼ,generic|ͳ + N attribute|,form|״,&inanimate| + N part|,%inanimate| +ʯ N stone|ʯ,mine| + N natural|Ȼ,generic|ͳ + N part|,%implement|,#electricity| +Ө ADJ aValue|ֵ,clearness|,clear| +Ө͸ ADJ aValue|ֵ,clearness|,clear| +״ N natural|Ȼ,generic|ͳ + N beast|,*swim| + V occupy|ռ + V occupy|ռ,military| + N beast|,*swim| + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(Japan|ձ) + N MusicTool| + N shows| +ʦ N place|ط,capital| +Ϸ N shows| + V fear| + V surprise| + V stupefied|ľȻ + V MakeTrouble| + V fear| + V cry| + V flurried| +ʧ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +ʧ V fear| +δ V flurried| + V cry| + V fear| + N thunder| + V surprise| + V MakeTrouble| + ADJ aValue|ֵ,ability|,frighten|Ż +˵ ADJ aValue|ֵ,degree|̶,extreme| +̾ V surprise| +κ N phenomena|,undesired|ݬ,#unfortunate| +κ N water|ˮ,strong|ǿ +춯 ADJ aValue|ֵ,ability|,frighten|Ż +ϲ V joyful|ϲ + V frighten|Ż + ADJ aValue|ֵ,ability|,able|,frighten|Ż +Ķ ADJ aValue|ֵ,ability|,frighten|Ż + V awake| + V surprise| + V surprise| + V surprise| + V dizzy| + V twitch|鴤 + V surprise| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&AnimalHuman| + N humanized|,undesired|ݬ + N part|,%AnimalHuman|,liquid|Һ,#mating| + N part|,%entity|ʵ,heart| + N part|,%physical|,heart| + ADJ aValue|ֵ,content|,accurate|׼,desired| + N army|,strong|ǿ,desired|,military| + V MakeBetter|Ż,patient=army|,patient=institution| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʷ׳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + ADJ aValue|ֵ,content|,simple|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V read|,manner=attentive|ϸ + N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,ability|,able|,desired| +ϸ V planting|ֲ,manner=attentive|ϸ,agricultural|ũ + ADJ aValue|ֵ,brightness|,bright| + ADV aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N part|,%entity|ʵ,heart| +ӹ V produce|,industrial| + V subtract| + V subtract| + N attribute|,strength|,&AnimalHuman| +ݽ ADJ tired|ƣ + V refine|,industrial| + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| +ܶ N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ǿ ADJ aValue|ֵ,ability|,able|,desired| +ƣ V tired|ƣ +ƣ V tired|ƣ +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,quality|,refined|,desired| +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ N attribute|,content|,accurate|׼,&mental|,&act|ж + ADJ aValue|ֵ,quality|,refined|,desired|,military| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N attribute|,strength|,&AnimalHuman| + N mental| + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N disease| +Ժ N InstitutePlace|,@cure|ҽ,#disease|,#mental|,medical|ҽ + ADJ aValue|ֵ,strength|,weak| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +֢ N disease| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human| + ADJ aValue|ֵ,attachment|,mental| + ADJ aValue|ֵ,attachment|,mental| + N mental| + N part|,%entity|ʵ,bone| +ͨ ADJ BeAble|ܹ +ͨ V BeAble|ܹ +ͨ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ ADJ aValue|ֵ,quality|,refined|,desired| +ѡ V choose|ѡ + N material|,?food|ʳƷ,salty| +Һ N part|,%AnimalHuman|,liquid|Һ,#mating| + V endeavour| +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| + V BeAble|ܹ +տ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + V refine|,industrial| +װ ADJ aValue|ֵ,property|,$wrap|,refined| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + V GoThrough| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N attribute|,distance|,&earth| + N character|,surname|,human|,ProperName|ר + V endure| + V manage| + N material|,industrial| + N part|,%AnimalHuman|,nerve| + N part|,%human|,#female|Ů,liquid|Һ,#mating| + N phenomena|,#female|Ů,#medical|ҽ + N publications|鿯 + V undergo| + PREP {time} + V handle| + V WithstandNot|ס + ADV aValue|ֵ,frequency|Ƶ,often| + V withstand|ס + ADJ aValue|ֵ,content|,good| + N publications|鿯,religion|ڽ + N publications|鿯,good| + N attribute|,distance|,&earth| + N fund|ʽ + V manage| + V GoThrough| + N process| + V undergo| + PREP {time} +֯ N community|,commercial|,ProperName|ר + N community|,commercial|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N affairs|,industrial|,agricultural|ũ,commercial| +ò N part|,%aircraft|,@sit| +÷ N law|ɷ,commercial| +÷ N law|ɷ,commercial| +ü» N part|,%institution|,politics|,(institution|=UN|Ϲ) + N tree|,commercial| +ʦ N human|,#occupation|ְλ,commercial| + V decline|˥,commercial| +Ч N attribute|,effect|Ч,&act|ж,commercial| +ѧ N knowledge|֪ʶ,#commercial| +ѧ N human|,#knowledge|֪ʶ + N human|,#occupation|ְλ,commercial| + V manage| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N human|,#occupation|ְλ,commercial| + ADJ aValue|ֵ,duration|,TimeLong| +ò˥ ADJ aValue|ֵ,duration|,TimeLong| +òϢ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + N human|,#occupation|ְλ,official|,commercial| + N experience| + V undergo| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| +ó N affairs|,commercial| +óί N institution|,commercial|,ProperName|ר,(China|й) + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#female|Ů,#disease| + V engage|,content=commercial|,commercial| +» N part|,%institution|,politics|,(institution|=UN|Ϲ) + V handle| + V sell|,commercial| + V undergo| + V withstand|ס +γ N attribute|,distance|,&earth| +γ N tool|þ,*measure| + N publications|鿯,religion|ڽ +ϴ ADJ aValue|ֵ,ability|,able|,withstand|ס,$wash|ϴ + N attribute|,distance|,&earth| + N material|,industrial| + V sell| + V sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ѫ N part|,%human|,#female|Ů,liquid|Һ,#mating| + N experience| + V undergo| +鲻 ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ḻ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,attachment|,experience| +̸֮ N text|,#experience| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӫ V manage| +Ӫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V GoThrough| + ADJ aValue|ֵ,content|,neat|,desired| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,@take|ȡ,#liquid|Һ + N shape| +֮ N human|,foolish|,undesired|ݬ + V irrigate|,agricultural|ũ + N facilities|ʩ,mine| + ADJ aValue|ֵ,content|,neat|,desired| + N part|,%facilities|ʩ,mouth| + N part|,%facilities|ʩ,mouth|,mine| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +ˮ N water|ˮ +ˮˮ V RelateNot|޹ + N InstitutePlace|,mine| + N material|,?food|ʳƷ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N human|,#occupation|ְλ,police| + N institution|,police| + N information|Ϣ,*tell|,#dangerous|Σ + N tool|þ,*tell|,#dangerous|Σ + V defend| + N place|ط,military|,$defend| + N human|,#occupation|ְλ,police| + N institution|,police| +ͤ N facilities|ʩ,space|ռ,police|,@defend| + N institution|,police| + N human|,#occupation|ְλ,official|,police| + N LandVehicle|,police| + N tool|þ,#sound| + N tool|þ,#sound|,#police| + N institution|,police| + N clothing|,police| + V persuade|Ȱ˵ + N human|,*persuade|Ȱ˵ + N human|,#occupation|ְλ,official|,police| + N human|,official|,police| + N weapon|,police| + V PayAttention|ע +䲿 N army| + N human|,*obstruct|ֹ,military| + N facilities|ʩ,*prohibit|ֹ,linear| + N institution|,police| + N institution|,police| + N expression|,*persuade|Ȱ˵ + V PayAttention|ע + N aspiration|Ը,PayAttention|ע + N institution|,police| + N tool|þ,*tell|,#dangerous|Σ +Ȯ N livestock|,police| +ʾ V persuade|Ȱ˵ + V PayAttention|ע + V defend| + N human|,#occupation|ְλ,*protect| +Ա N human|,#occupation|ְλ,*protect| + N attribute|,rank|ȼ,&official|,police| +е N weapon| + V understand| +Ա N human|,#occupation|ְλ,police| + N tool|þ,*tell|,#dangerous|Σ + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N character|,surname|,human|,ProperName|ר + N part|,%shows| + N tool|þ,#shows|,#recreation| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + N attribute|,circumstances|,&entity|ʵ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,#scene| +ɫ N attribute|,scene|,&inanimate| +ɫ ADJ aValue|ֵ,scene|,beautiful|,desired| +̩ N artifact|˹,literature|,(China|й) + N tree| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + V respect| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +׵ N part|,%AnimalHuman|,#head|ͷ,#bone| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N electricity| +ӡˢ N fact|,print|ӡˢ + V look|,manner=calm| + V wait|ȴ,manner=quiet| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,static|̬ +ѧ N knowledge|֪ʶ,#strength| + N part|,%AnimalHuman|,nerve| + N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ĭ V KeepSilence|˵ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| +̬ ADJ aValue|ֵ,behavior|ֹ,static|̬ +̬ ADJ aValue|ֵ,circumstances|,steady| + V maintain| +ֹ ADJ aValue|ֵ,behavior|ֹ,static|̬ +ֹ ADJ aValue|ֵ,occasion|,quiet| +ֹ ADJ aValue|ֵ,ability|,unable|ӹ,SelfMove| + V sit|,manner=quiet| + V uprise|,means=sit| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N attribute|,circumstances|,&entity|ʵ + N location|λ,surrounding|Χ,space|ռ + N place|ط + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N location|λ,%country|,internal| + N location|λ,%country|,external| + N attribute|,circumstances|,&entity|ʵ + V respect| + V respect| +Զ֮ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V GiveAsGift| + V salute|¾ + V tell| + V congratulate|ף,means=drink| +Ժ N InstitutePlace|,@TakeCare|,#aged| + V salute|¾ +Ľ V respect| +Ľ N human|,*respect| + V respect| + V invite| +η V respect| + V submit| +л V refuse| + V respect| +ҵ V endeavour| +ҵ N emotion|,endeavour|,desired| + N emotion|,salute|¾,desired| + V respect| + N tool|þ,*look|,#self| + N tool|þ,@put| + N tool|þ,@put|,#image|ͼ +Ƭ N part|,%tool|þ,#look| +̨ N furniture|Ҿ,*MakeUp|ױ +ͷ N attribute|,scene|,&inanimate| +ͷ N part|,%tool|þ,#look| + N tool|þ,*look| + N tool|þ,*look|,#self| + N facilities|ʩ,route|· + N image|ͼ,linear|,straight|ֱ + N method| + V flow| +ֱ ADJ aValue|ֵ,form|״,upright| + N character|,(China|й) + N disease| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V attack| + ADJ aValue|ֵ,range|,all|ȫ + ADV {emphasis|ǿ} +Ȼ ADV {emphasis|ǿ} + V HaveContest| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete|,scope=VehicleGo|ʻ + V compete|,scope=swim| + N fact|,exercise|,sport| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete| +Ͷ V HaveContest|,scope=propose|,#price|۸,commercial| + V HaveContest| + V HaveContest|,scope=sell|,commercial| +ѡ V engage|,content=select|ѡ,politics| + V HaveContest| + ADJ aValue|ֵ,ability|,able|,HaveContest| + V human|,*HaveContest| + N human|,*HaveContest| + N fact|,exercise|,sport| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V clean|ʹ + N human|,entertainment| +ֵ N attribute|,value|ֵ,&produce|,industrial| + N quantity|,amount|,pure|,&physical| + V clean|ʹ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + V excrete|й + N place|ط,spotless|,desired|,religion|ڽ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + V add| +ֵ N attribute|,value|ֵ,&physical| + N attribute|,weight|,&physical| +׬ V earn|׬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright|,#eye| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + N attribute|,circumstances|,embarrassed|Ϊ,&human|,&organization|֯ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ +̬ V attribute|,bearing|̬,&human|,embarrassed|Ϊ + V hold| + V pull| + V MakeTrouble| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ + V worried|ż + V cure|ҽ + V investigate| + V research|о + V handle| + N process|,ending|ĩ + ADV {emphasis|ǿ} + V amend| + V assemble|ۼ + V twine| + N human|,*obstruct|ֹ + V keep| + N human|,mass|,*obstruct|ֹ +Ա N human|,*check| + V MakeWorried| + V tie| + N fact|,quarrel| + N fact|,quarrel| + V ComeTogether| + V assemble|ۼ +ƫ V amend|,content=wrong| + V amend| + NUM qValue|ֵ,amount|,cardinal|,mass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +² N part|,%vegetable|߲,embryo|,$eat| +² N vegetable|߲ +» N part|,%vegetable|߲,embryo|,$eat| +» N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| +ñ V farewell|,TimeRange=TimeLong| +ò V ill|̬,TimeRange=TimeLong| +ö֮ ADJ aValue|ֵ,duration|,TimeLong| +ú N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless|,TimeRange=TimeLong| +þ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +þ ADJ aValue|ֵ,duration|,TimeLong| +ϲ ADJ aValue|ֵ,property|,^$decide| +Υ V farewell| + ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| + N {duration|} + V cure|ҽ + NUM qValue|ֵ,amount|,cardinal|,mass| + N time|ʱ,TenDays|Ѯ +Ź N stationery|ľ,@drill|ϰ,#character| +ţ֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ +ţһë ADJ qValue|ֵ,amount|,few| +Ȫ N place|ط,humanized|,#die| +ѧ N community|,ProperName|ר,politics|,(China|й) +һ V lucky| + N sky| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + N qValue|ֵ,rate|,BecomeLess|,commercial| + N place|ط,country|,ProperName|ר,(China|й) + N drinks|Ʒ,$addict|Ⱥ +ư N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưɼ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưŮ N human|,#occupation|ְλ,*entertain|д,female|Ů +Ʊ N tool|þ,cubic|,@put|,#drinks|Ʒ +Ʋ N food|ʳƷ,#drinks|Ʒ +Ʋ N food|ʳƷ,generic|ͳ +Ƴ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +Ƶ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +Ƶ N InstitutePlace|,@reside|ס,#tour|,commercial| +ƹ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ƹ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ +ƺ N tool|þ,cubic|,@put|,#drinks|Ʒ +ƻ N FlowerGrass|,?drinks|Ʒ +ƻ N fact|,drink|,recreation| +Ƽ N InstitutePlace|,commercial|,@drink|,@addict|Ⱥ +Ƽ N InstitutePlace|,commercial|,space|ռ,@eat| +ƾ N material|,liquid|Һ,$burn|,?medicine|ҩ + N attribute|,ability|,#drink|,#addictive|Ⱥ,&human| +¥ N InstitutePlace|,@eat|,commercial| +ĸ N material|,?drinks|Ʒ +ҷ N human|,unable|ӹ,undesired|ݬ + N food|ʳƷ + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ȫ N place|ط,city|,ProperName|ר,(China|й) + N human|,friend|,undesired|ݬ + N human|,#drinks|Ʒ,commercial| +ʯ N chemical|ѧ +ʳ N food|ʳƷ,generic|ͳ +ͽ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ + N part|,%human|,skin|Ƥ +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д +ҩ N material|,?drinks|Ʒ + N inanimate|,waste| + N part|,%AnimalHuman|,*smell| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N facilities|ʩ,space|ռ,@foster|,#livestock| +Ƿ N material|,*feed|ι,#crop|ׯ + V help| + V rescue| +ȹ V rescue|,patient=country| +Ȼ V rescue|,cure|ҽ +Ȼ N LandVehicle|,@cure|ҽ,medical|ҽ +Ȼ N InstitutePlace|,@rescue|,military|,medical|ҽ +Ȼ V cure|ҽ +Ȼ V remove|,patient=fire| +ȼ V help| +ȼ V rescue| +ȼ V help| +ȼ N human|,*help| +ȿ V help| + V rescue| + V rescue| + V rescue| +Ȧ N tool|þ,*rescue|,#swim| +ͧ N ship|,*rescue| + N community|,*help| + N human|,*help| + V cure|ҽ + V rescue|,StateIni=perish| + N human|,*help| + N human|,*rescue|,desired| +Ӧ V help| +Ԯ V help| + V rescue|,StateIni=unfortunate| + V cure|ҽ + V help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,past| + N attribute|,relatedness|,friend|,&human| + N human|,friend| +ɰ N fact| +ɰ N fact|,police| +ɲ V ill|̬,medical|ҽ +ɶ N emotion|,hate|,undesired|ݬ +ɽ N human|,friend| +ɽɽ N place|ط,city|,ProperName|ר,(US|) +ɾ N house|,original|ԭ + N law|ɷ,#time|ʱ + N time|ʱ,past| +ʯʱ N time|ʱ,past| +ʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,pattern|ʽ,old| +ַ N place|ط + N part|,%AnimalHuman|,bone| + N tool|þ,*grind|ĥ +ʳ N part|,%AnimalHuman|,*bite|ҧ + N human|,family|,male| +˸ N human|,family|,male| +˾ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| +ȡ V bear|е + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + V engage| + V fulfil|ʵ + V obey|ѭ + V relate|й + PREP {concerning} + CONJ {concession|ò} + ADV {emphasis|ǿ} +Ͳ V eat|,patient=edible|ʳ +ʹ CONJ {supplement|ݽ} +͵ ADV aValue|ֵ,location|λ,special| +͵ȡ V use|,patient=material| +Ͷ V engage|,content=study|ѧ,education| +ͷ V surrender| +ͷ V surrender| +ͽ ADJ aValue|ֵ,distance|,near| + V sleep|˯ + V undertake| + N human|,*undertake| + V estimate| + V be|,manner=emphasis|ǿ + CONJ {concession|ò} + ADJ {emphasis|ǿ} + ADV {emphasis|ǿ} +˵ ADV {supplement|ݽ} + CONJ {concession|ò} +λ V arrive|,location=location|λ + V finish| +ѧ V engage|,content=study|ѧ,education| +ҵ V obtain|õ,possession=occupation|ְλ +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ + V die| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V undertake|,content=official| + V sit| + V sit| + N character|,surname|,human|,ProperName|ר +Ϲ V salute|¾ +Ϲ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + V restrain|ֹ +в V catch|׽ס,police| +д V call|ٻ,detain|ס,police| +н ADJ aValue|ֵ,demeanor|,cautious|,undesired|ݬ +н V detain|ס,police| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V obey|ѭ,manner=stiff| +Ʊ N bill|Ʊ,*catch|׽ס,police| + V embarrassed|Ϊ + V restrain|ֹ +Ѻ V detain|ס,police| + V detain|ס,police| +ѻ V attack| +ѻ N human|,*firing|,military| + N character|,surname|,human|,ProperName|ר + N house| + V reside|ס + V situated| +Ӱ˼Σ V PayAttention|ע,target=dangerous|Σ +Ӷ V BeMember|,whole=many| +Ӹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +Ӽ V manage|,patient=family| +Ӽ N location|λ,middle| + CLAS unit|λ + V reside|ס +Ȩ N rights|Ȩ,*reside|ס + N human|,*reside|ס +Ժ N place|ط,#official|,@reside|ס + N place|ط,@reside|ס + N place|ط,@reside|ס +ίԱ N institution|,#reside|ס,politics|,(China|й) +Ȼ ADV {emphasis|ǿ} +ʿ N human|,religion|ڽ + N room| + N place|ط,@reside|ס +ί N institution|,#reside|ס,politics|,(China|й) +IJ V cherish|Ļ,content=evil| + N location|λ,middle| + V situated|,location=middle| +ס V reside|ס +ס N human|,*reside|ס + N livestock|,young| + N livestock|,young| + N FlowerGrass| +ջ N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + CLAS NounUnit|,&fact| + N attribute|,circumstances|,&entity|ʵ + N institution| + N tool|þ,*recreation| +ֲ ADJ aValue|ֵ,range|,pieced|Ƭ +ֲ N part|,%entity|ʵ +ֳ N human|,#occupation|ְλ,official|,*manage| +ִ ADJ aValue|ֵ,duration|,TimeShort| +ִ ADJ aValue|ֵ,width|,narrow|խ +ִ V uneasy| + V cure|ҽ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&place|ط,&organization|֯ + ADV aValue|ֵ,property|,RelateNot|޹ + N human|,*RelateNot|޹ + V delimit| + N attribute|,property|,delimit|,&event|¼ + V undergo|,content=delimit| + ADJ aValue|ֵ,range|,pieced|Ƭ + V masticate|׽ +׽ ADJ aValue|ֵ,ability|,able|,$masticate|׽ +׽ V masticate|׽ +׽ V think|˼ +׽ N human|,*masticate|׽ + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N symbol|,#calculate| + ADJ aValue|ֵ,range|,all|ȫ + V choose|ѡ + V do| + V lift| + N part|,%fact|,#act|ж + V quote| + V start|ʼ +ٰ V condole|° +ٰ V engage| +ٱ V accuse|ظ,police| +ٱ N human|,*accuse|ظ,police| +ٱ V congratulate|ף +ٲʤ ADJ qValue|ֵ,amount|,many| +ٲ V walk| +ٳ V quote| +ٴ N part|,%fact|,#act|ж +ٶ N part|,%fact|,#act|ж +ٷ ADV aValue|ֵ,range|,all|ȫ +ٹ N place|ط,country|,complete| +ٹ N place|ط,country|,complete| +ټ N community|,family|,complete| +ټ V recommend|Ƽ + V quote|,patient=example|ʵ +Ŀ V CausePartMove|,PatientPartof=eye| +岻 V hesitate|ԥ + V lift| + N human|,*succeed|ɹ,#exam|,past| + N tool|þ,*lift| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,reputation|,glorious|,desired| +˫ ADJ aValue|ֵ,importance|,important| +Ŀ V attract|,target=PayAttention|ע + V uprise| + V lift|,patient=hand| + V engage| +һ V deduce| +ծ V borrow|,possession=fund|ʽ,commercial| +֤ V quote|,content=information|Ϣ,#police| +ֹ N attribute|,behavior|ֹ,&human| + N fact|,sport| + ADJ aValue|ֵ,importance|,important| +ɥ V disappointed|ʧ +ɥ V sorrowful| + V ComeTogether| + V assemble|ۼ +۱ N place|ط,precious| +۱ϩ N chemical|ѧ +۱ V StateChange|̬ +۱ϩ N chemical|ѧ +۲ V eat| +۹ N tool|þ,*illuminate| +ۺ V ComeTogether| +ۺ N chemical|ѧ +ۻ N fact|,recreation| +ۻ V meet| +ۻ V gather|ɼ +ۼ V ComeTogether| +ۼ V assemble|ۼ +ۼ V gather|ɼ +ۼ V destroy|,military| +۽ V assemble|ۼ,patient=lights| +۾ V PayAttention|ע +۾ V reside|ס +۾ N place|ط,#reside|ס + V levy| +£ V ComeTogether| +ϩ N chemical|ѧ +ɳ V add| + V meet| +ϩ N material| +ϩ N chemical|ѧ + V assemble|ۼ,patient=human| + N chemical|ѧ + V refuse| + V reject|ؾ +ܲ V reject|ؾ,$catch|׽ס +ܸ V refuse|,content=pay| +ܾ V refuse| +ܾ V reject|ؾ +ܾ N human|,*deny| +ǧ֮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V refuse| +η V hide|,patient=wrong| + V depend| + N document|,*prove|֤ + N information|Ϣ + V occupy|ռ,military| + PREP {AccordingTo} +ݱ V obey|ѭ,content=information|Ϣ +ݳ ADV {comment|} +ݴ ADV {comment|} +ݵ N facilities|ʩ,space|ռ,military| + V debate| +ʵ ADV aValue|ֵ,behavior|ֹ,faithful| + V defend|,military| +˵ ADV {comment|} +Ϊ V cheat|ƭ +֪ ADV {comment|} +Ϥ ADV {comment|} + ADJ aValue|ֵ,size|ߴ,big| +ޱ V change| +޴ ADJ aValue|ֵ,area|,wide| +޴ ADJ aValue|ֵ,size|ߴ,big| +޴ ADJ qValue|ֵ,amount|,many| +޶ ADJ qValue|ֵ,amount|,many| +޷ ADJ aValue|ֵ,size|ߴ,big| +޸ N human|,#wealth|Ǯ,rich| +޸ N wealth|Ǯ,many| +޽ N tool|þ,*reward|,$GiveAsGift|,desired| +޽ N human|,able|,desired| +޿ N money|,many| + N water|ˮ + N waters|ˮ,linear| + N part|,%LandVehicle|,leg| + N ship| + N human|,able|,desired| + N human|,big| +ͷ N human|,able|,desired| + N sound|,loud| + N celestial| + N human|,*perform|,glorious|,entertainment| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N publications|鿯,great|ΰ + N money|,many| + N human|,#wealth|Ǯ,rich| + N human|,able|,desired| + CLAS NounUnit|,&part|,die| + N implement| + V own| + V provide| +߱ V own| + V sign|д,content=name| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,kind|,special| +˵ ADV {comment|} +΢ ADJ aValue|ֵ,range|,all|ȫ,desired| +˵ ADV {comment|} +˵ ADV {comment|} + V own| +б ADJ aValue|ֵ,ability|,able|,store| +еֿ ADJ aValue|ֵ,ability|,able|,resist| +кЯ ADJ aValue|ֵ,ability|,able|,$bring|Я,#weapon| +ʷ ADJ aValue|ֵ,value|ֵ,important| + ADJ aValue|ֵ,ability|,able|,teach| + N human|,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,attract| +ѹ ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$BeRecovered|ԭ + V from| + V from| + V occupy|ռ + V sit| + V break|۶ + N tool|þ,*break|۶ + N part|,%tool|þ,*bite|ҧ +ⴲ N machine|,*break|۶ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ֲ N InstitutePlace|,@associate|,@recreation|,#literature|,#entertainment|,#sport| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N expression| +䷨ N knowledge|֪ʶ,#regulation|,#language| + N symbol| + N expression| + V fear| + V fear| + N fire| + N tool|þ,*illuminate| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N shows| +籾 N publications|鿯,#shows|,entertainment| + V change| + V change|,manner=strong|ǿ +糡 N InstitutePlace|,@perform|,entertainment| +綾 ADJ aValue|ֵ,cleanness|ྻ,poison| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +Ŀ N document|,@announce|,#shows|,entertainment| + N fact|,#shows|,$BaseOn|,entertainment| +̳ N community|,#perform|,entertainment| +ʹ V painful|ʹ + N community|,*perform|,entertainment| + N affairs|,#perform|,entertainment| + N human|,#occupation|ְλ,*manage|,#perform|,entertainment| +Ժ N InstitutePlace|,@perform|,entertainment| + V add| + N image|ͼ,#shows| + N human|,*perform|,entertainment| + V finish|,#perform|,entertainment| + N attribute|,kind|,entertainment|,&shows| + N community|,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V abandon| + V donate| + N expenditure|,$levy| + V donate|,possession=money| + N expenditure|,$donate| + V abandon| + V die| + V donate| + V donate| + V donate| + V donate|,possession=money| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V tired|ƣ +뵡 V tired|ƣ + N experience|,#tired|ƣ + V FondOf|ϲ + V ThinkOf|˼ + N human|,family| + V FormChange|α + CLAS NounUnit|,&publications|鿯 + V bend| + N document| + N document|,*exam| + V engage| + N publications|鿯 + N shape| + N tool|þ,*measure| +̸ V withdraw|˳ + V bend| + V bend| + V engage| + V flee|,crime| + V resume|ָ +IJ N part|,%vegetable|߲,embryo|,$eat| +IJ N vegetable|߲ + N addictive|Ⱥ + N machine|,*lift| +Ҷ N InsectWorm|,*fly| + N CloudMist| + N document|,*exam| + N food|ʳƷ + N document| + N tool|þ,*store|,#document| + N material|,?clothing| + N tool|þ,#FlowerGrass| + V CausePartMove| + V break|۶ + V rob| +ȡ V rob| + V choose|ѡ + V dig|ھ + V dig|ھ,mine| + N machine|,*dig|ھ + ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ͷ ADJ aValue|ֵ,behavior|ֹ,stubborn| + N human|,official|,royal|,past| +ʿ N human|,official|,royal|,past| +ʿ N music|,entertainment| + V awake| + V know|֪ + V perception|֪ + V sleep|˯ + V know|֪ + V perception|֪ + V regard|Ϊ + V know|֪ + V understand| + V OutOfOrder| + V decide| + V kill|ɱ,police| + ADV {neg|} + N result|,decide| + N human|,*decide| + N human|,*decide| + V HaveContest| + V ResultIn| + ADJ aValue|ֵ,importance|,important| + V decide| + N document|,#decide| + N aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + V fight| + N attribute|,will|־,&human|,&organization|֯ + V decide| + ADV {neg|} + V OutOfOrder| + V separate| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fact|,compete| +ʤ V HaveContest| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fact|,calculate|,commercial| + N aspiration|Ը,expect| + V willing|Ը +һ V HaveContest| + V decide| + N document|,#decide| +鰸 N document|,#decide| +ս V fight|,military| + N method| + V farewell| + N method|,*succeed|ɹ + V OwnNot| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,special| + V separate| + V disappear|ʧ + N part|,%land|½,skin|Ƥ + ADV {neg|} + N music|,good|,desired| + V BeRecovered|ԭ +󲿷 ADJ qValue|ֵ,amount|,fragment| + ADJ qValue|ֵ,amount|,fragment| + ADJ aValue|ֵ,kind|,special| + V laugh|Ц + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,behavior|ֹ,free| + ADV aValue|ֵ,degree|̶,extreme| +Գɱ N expenditure|,commercial| +Զ N quantity|,amount|,&physical| +Ի ADJ aValue|ֵ,behavior|ֹ,free| + N quantity|,amount|,&physical| +ֵ N quantity|,amount|,&physical| + ADV {neg|} + N attribute|,ability|,special|,&human| + V disappear|ʧ + N attribute|,ability|,special|,&human| + V separate|,politics| + V BeBad|˥,female|Ů,#age|,#GiveBirth| + N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + N attribute|,environment|,$separate|,&physical| + V KeepSilence|˵ +· V BeUnable| +· N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʳ V refuse|,content=eat| +ʳ V uprise| + V OwnNot|,scope=gather|ɼ,agricultural|ũ + V disappointed|ʧ +޽ ADJ aValue|ֵ,kind|,special| + V prohibit|ֹ,ResultEvent=GiveBirth|,medical|ҽ +Ե ADJ aValue|ֵ,ability|,able|,exempt|,#transmit| +Ե N material|,*exempt|,#transmit|,#electricity| +Ե N material|,*exempt|,#transmit|,#electricity| + N attribute|,ability|,special|,&human| + N method|,special| +֢ N disease| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADV aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + V separate| + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADJ aValue|ֵ,content|,even| +һ ADJ aValue|ֵ,content|,even| + ADJ aValue|ֵ,content|,even| + N AlgaeFungi|ֲ + N bacteria|΢ + N medicine|ҩ,#bacteria|΢ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N army|,generic|ͳ + N part|,%army| + N publications|鿯,news|,military|,(China|й) + N weapon| + V HaveContest|,scope=weapon|,military| + V control|,patient=weapon|,military| + V restrain|ֹ,patient=weapon|,military| + N army| + N part|,%army|,military| + N human|,#occupation|ְλ,official|,military| + N LandVehicle|,army|,military| + N weapon|,*stab| + N army| + N human|,undesired|ݬ,#military| + N law|ɷ,military| + N punish|,AccordingTo=law|ɷ,military| + N army| + N expenditure|,military| + N part|,army|,#place|ط,military| + N clothing|,military| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,military| + N affairs|,industrial|,military| + N affairs|,industrial|,military| + N result|,desired|,military| + N human|,#occupation|ְλ,official|,military| +ʿ N human|,#military| +ܻ N institution|,military| + N system|ƶ,military|,undesired|ݬ + N human|,undesired|ݬ,#military| + N MusicTool|,military| + N mark|־,military| + N weapon|,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N human|,commercial|,#military| + N fact|,military|,secret| + N plans|滮,military| + N attribute|,status|,#army|,&human|,military| + N law|ɷ,military| + N weapon|,ship|,military| + N army| + N army| + N music|,military| +ֶ N part|,%army|,#music|,military| + N part|,%army|,#music|,military| + N fact|,salute|¾,military| + N attribute|,strength|,&army|,military| +ˮƽ N attribute|,rank|ȼ,military| + N food|ʳƷ,military| + N human|,family|,#military| + N attribute|,age|,#military|,&human| + N text|,*order|,military| +ɽ N aValue|ֵ,behavior|ֹ,strict| +״ N text|,*guarantee|֤ +״ N text|,*guarantee|֤,military| + N army| +ñ N clothing|,#head|ͷ,military| + N human|,mass|,#military| +Ʒ N artifact|˹,military| + N mark|־,military| + N attribute|,circumstances|,&fight|,military| + N part|,army|,#place|ط,military| +Ȩ N attribute|,power|,&human|,&organization|֯,military| + N human|,#occupation|ְλ,military| +ʦ N human|,#occupation|ְλ,friend|,military| +ʷ N fact|,#time|ʱ,military| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,#occupation|ְλ,#military| + N affairs|,military| +· N human|,#occupation|ְλ,*judge|ö,military| +·ͥ N institution|,police|,*judge|ö,military| +¹ҵ N affairs|,industrial|,military| +¹ίԱ N institution|,military| +» V ize|̬,military| +» N place|ط,military| +¼ N community|,military| +¼ N human|,#knowledge|֪ʶ,military| + N attribute|,strength|,&army|,military| +ʩ N facilities|ʩ,military| +̬ N attribute|,circumstances|,&physical|,military| + N affairs|,exercise|,sport|,military| +ѧ N human|,#knowledge|֪ʶ,military| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education|,military| +ռ N human|,*occupy|ռ,military| + N human|,family|,#military| + N affairs|,exercise|,sport|,military| + N army| + N part|,%army| + N attribute|,strength|,&army|,military| +ί N institution|,military|,ProperName|ר,(China|й) + N affairs|,military| + N attribute|,rank|ȼ,&official|,military| +У N InstitutePlace|,@teach|,@study|ѧ,education|,military| +е N weapon| +е N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N attribute|,behavior|ֹ,&army|,military| + N artifact|˹,$provide|,military| + N human|,#occupation|ְλ,military| +ѵ N fact|,drill|ϰ,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,military| + N clothing|,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס + ADJ aValue|ֵ,ability|,able|,$use|,military| + N affairs|,military| +ְ N attribute|,occupation|ְλ,military|,&human| + N army| +ת N aValue|ֵ,property|,alter|ı +װ N clothing|,military| + N human|,#occupation|ְλ,official|,royal| + N human|,male| + N human|,official| + N human|,#occupation|ְλ,official|,royal| + N human|,#occupation|ְλ,official|,royal| + N system|ƶ,politics|,royal| + N human| +ר N system|ƶ,politics|,royal| + N human|,desired|,gracious| + N human|,good|,desired| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strict| + N land|½ + ADJ aValue|ֵ,slope|¶,steep| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V finish| + V finish| + V dredge|ͨ +ബ N ship| + N place|ط,#human| + N livestock|,superior| + N livestock|,superior| + ECHO sound| + N place|ط,capital|,ProperName|ר,(Afghanistan|) +¡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cameroon|¡) +¡ N place|ط,country|,ProperName|ר,(Africa|) +ʲ N place|ط,city|,ProperName|ר,(China|й) +ʲ׶ N place|ط,ProperName|ר + N place|ط,capital|,ProperName|ר,(Sudan|յ) + N drinks|Ʒ +ȵ N InstitutePlace|,@drink|,commercial| +ȶ N material|,?drinks|Ʒ +ȹ N InstitutePlace|,@drink|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N InstitutePlace|,@drink|,commercial| + N material|,?food|ʳƷ + V block|ס + N character|,surname|,human|,ProperName|ר + N coupon|Ʊ֤,#money| + V hold| + V restrain|ֹ + V stay|ͣ + N tool|þ,*fix|ס + CLAS unit|λ,&heat| +ǹ N weapon|,*firing| + N LandVehicle|,*transport|,#inanimate| + N tool|þ,*measure| + N tool|þ,*fix|ס + V OutOfOrder| + V OutOfOrder|,military| + V stay|ͣ +ϣ N fact|,recreation|,sing| + N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) +ɴ N language|,#country|,ProperName|ר +Ƭ N account|,@record|¼ + N material|,?clothing| +ǯ N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Qatar|) + N place|ط,country|,ProperName|ר,(Africa|) +Ƕ N money|,(Qatar|) + N human|,(Qatar|) +ͨ N image|ͼ +ס V block|ס + N part|,%place|ط,mouth|,@check| + N tool|þ,*fix|ס + V vomit|³ +Ѫ N disease| +Ѫ V vomit|³,medical|ҽ + V CauseToLive|ʹ + V StateChange|̬ + V TurnOn| + V cultivate| + V dig|ھ + V disperse|ɢ + V engage| + V establish| + V function| + V manage| + V open| + V pay| + V remove| + V start|ʼ + V start|ʼ,content=leave|뿪 + V write|д +...֮Ⱥ N become|Ϊ,isa=example|ʵ + V start|ʼ,content=leave|뿪 + V establish| + N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + N attribute|,size|ߴ,&publications|鿯 + V start|ʼ + V announce|,commercial| + V gather|ɼ,industrial| + V begin|ʼ + N part|,shows|,head|ͷ + N part|,text|,head|ͷ + V CauseToLive|ʹ + V drive|Ԧ + V drive|Ԧ,patient=LandVehicle| +ϲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + V believe| + V discharge| + V start|ʼ + N human|,*establish| + N time|ʱ,spring|,early| + V attack| + V cure|ҽ + V GoBackward| + V decline|˥ + V teach| + V escape| + V guide| + V function| + N process|,early| + V CauseToGrow|ʹɳ + V cultivate| + V gather|ɼ,industrial| +ƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + N place|ط,@research|о,@produce| +Э N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + V start|ʼ,content=eat| + V DoSum| + V appear| + V cease|ͣ,content=prohibit|ֹ +Թ N disease| + N place|ط,city|,ProperName|ר,(China|й) + V LeaveFor|ǰ + V start|ʼ,content=do| + N part|,%artifact|˹,*OpenShut| + V StateChange|̬ + V establish|,patient=country|,politics| + V function| + V start|ʼ,content=VehicleGo|ʻ + N facilities|ʩ,route|·,#waters|ˮ + V StateChange|̬ + V establish|,content=account|,commercial| + V pregnant| + V StateChange|̬ + V prosper|,scope=mental| + V satisfied| + V cultivate|,agricultural|ũ + V engage| + V engage|,content=communicate| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=fight|,military| + V TurnOn| + V propose|,content=price|۸ + V display|չʾ,commercial| + N attribute|,width|,&room| + V announce|,content=reward| + V start|ʼ,content=teach| + V indulge| + V GoForward|ǰ + V cease|ͣ,content=prohibit|ֹ + N part|,%compete|,head|ͷ,sport| + V write|д + V exam| + V read| + V dig|ھ + V start|ʼ,content=teach|,education| + V start|ʼ,education| + V cultivate|,agricultural|ũ + V sharpen|ʹ + V speak|˵ + V OutOfOrder| + V wounded| +쳵 V SpeedUp|ӿ +쳵 V VieFor| + V gather|ɼ,possession=mine|,industrial| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=planting|ֲ,agricultural|ũ + V start|ʼ,content=collect|,agricultural|ũ + V quote| + V FormChange|α +· V build|,PatientProduct=route|· +· N part|,linear|,#electricity| +·ȷ N human|,guide| +̵ V ExpressAgreement|ʾͬ + N place|ط,capital|,ProperName|ר,(Egypt|) + V open|,patient=part| +ź V succeed|ɹ,time=begin|ʼ +żɽ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +żɽ V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ʿ N human|,wise|,desired| +Ļ V begin|ʼ +Ļ N text|,#begin|ʼ + V start|ʼ,content=TakePicture| + V start|ʼ,commercial| +̻ N quantity|,rate|,#start|ʼ,&money|,commercial| +̼ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| +̼۸ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| + V ExpressAgainst|Ǵ + V firing|,military| +ƪ N part|,information|Ϣ,head|ͷ +Ʊ V announce| +Ʊ V write|д,ContentProduct=bill|Ʊ,commercial| +ն N place|ط,city|,ProperName|ר,(South Africa|Ϸ) + V open| +ǹ V firing| +ǻ V speak|˵ + V understand| + V start|ʼ,compete| + V start|ʼ,content=compete|,sport| +ɽ V dig|ھ,industrial| +ɽ N human|,past|,#start|ʼ +ɽʦ N human|,past|,#start|ʼ + V conduct|ʵʩ,education| + V establish| +ʼ N process|,early| +ʼ V start|ʼ +ʿ N material|,?clothing| + V release|ͷ,police| + V start|ʼ,commercial| +ˮ N water|ˮ,$drink| +˾ N material|,?clothing| +̨ V start|ʼ,entertainment| +ٵ N process|,early| +ͥ V start|ʼ,police| +ͨ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ͷ V begin|ʼ +ͷ N process|,early| + V CauseNotToBe|ʹ֮ + V CauseToGrow|ʹɳ + V cultivate| + V dig|ھ + ADV aValue|ֵ,amount|,over| +Ц V please|ȡ + V LeaveFor|ǰ +θ V improve|,patient=aspiration|Ը,#eat| + V open|,patient=tool|þ + N expenditure| +С V flee| +С V stupefied|ľȻ + V joyful|ϲ + V please|ȡ + V tease|ȡ +ѧ V start|ʼ,education| + V laugh|Ц + V enrich|ʵ + V start|ʼ,entertainment| +ҵ V start|ʼ +ҵ V start|ʼ,commercial| +ҵ N human|,*establish| +ҹ V endeavour| +Դ V MakeBetter|Ż,#wealth|Ǯ + V dig|ھ,industrial| +ի N time|ʱ,festival|,@congratulate|ף,#eat|,religion|ڽ +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V start|ʼ +ս V start|ʼ,content=fight|,military| + V FormChange|α + V start|ʼ,commercial| + V pay|,commercial| + V write|д,ContentProduct=bill|Ʊ,commercial| + V start|ʼ,content=fight|,military| + V start|ʼ,content=levy| +֧ N expenditure| +֧ V pay| +֧ V pay|,possession=payment| + V explain|˵ + V endeavour| + V remove| + V wipe| + V dry| + N attribute|,kind|,&character|,&symbol| + N human|,$study|ѧ,$imitate|ģ,desired| +ģ N human|,$study|ѧ,$imitate|ģ,desired| + N attribute|,kind|,&character|,&symbol| + N attribute|,kind|,&character|,&symbol| + V win|ʤ + N music|,$sing|,#win|ʤ + V win|ʤ,GoBack| + ADJ aValue|ֵ,tolerance|,generous|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,undesired|ݬ +̾ V sigh|̾ + V print|ӡˢ + N publications|鿯,mass| + V publish| + N publications|鿯 + V publish| + N character|,surname|,human|,ProperName|ר + V endure| + V RegardAs| +Ƶһ ADJ aValue|ֵ,importance|,important| + N place|ط,capital|,ProperName|ר,(Australia|Ĵ) +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V check| + V investigate| + V investigate| + V investigate| + V investigate| +̽ V investigate| +̽ N human|,*investigate|,industrial| + V amend| + V check| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge| + N part|,%land|½,mouth| + N facilities|ʩ,#liquid|Һ,#crop|ׯ + ADJ aValue|ֵ,SmoothFinish|,rugged|,undesired|ݬ + V unfortunate| + N place|ط,capital|,ProperName|ר,(Uganda|ڸɴ) + V break|۶ + V gather|ɼ,possession=material|,#burn| + N tool|þ,*split|ƿ,*break|۶ + V break|۶ + V TakeCare| + V cure|ҽ + V depend| + V look| + V read| + V regard|Ϊ + V supervise| + V visit| + STRU {Vtry|} + V cure|ҽ + V request|Ҫ,ResultEvent=cure|ҽ + V disgust| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V despise| + V RegardAs| + V perception|֪ + V perception|֪ + V regard|Ϊ + V treat|Դ + V perception|֪,means=look| + V PayAttention|ע + ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ + V undergo|,content=predict|Ԥ,#BecomeLess|,commercial| + N standpoint| +ʹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V TakeCare| + V supervise| + V undergo|,content=predict|Ԥ,#prosper| + V TakeCare|,medical|ҽ + N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ + N human|,*TakeCare|,medical|ҽ + V TakeCare|,patient=house| + V perception|֪,means=look| + V TakeCare| + V cure|ҽ + V look| + V read| + V visit| + ADV {comment|} + V supervise|,content=mouth| + V look|,content=price|۸ + V perception|֪ + V imitate|ģ + V be| + ADV {comment|} + V despise| + V perception|֪ + V recreation| + V FondOf|ϲ +ȥ ADV {comment|} + N human|,#occupation|ְλ,police| + V supervise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,#country|,politics|,TimeShort| +̨ N facilities|ʩ,space|ռ,@look| +ͷ N thing|,*worth|ֵ,#look| +ͷ V thing|,*worth|ֵ,#read| +͸ V know|֪ +͸ V perception|֪ + V visit| + ADV {comment|} +ҽ V request|Ҫ,ResultEvent=cure|ҽ + V undergo|,content=predict|Ԥ,#BecomeMore|,commercial| + V FondOf|ϲ + V PayAttention|ע +׼ V believe| + V RegardAs| + V RegardAs| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N attribute|,physique|,&animate| + N character|,surname|,human|,ProperName|ר + N machine|,*collect|,#crop|ׯ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| +ܰ N FlowerGrass| +Ҹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +̩ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ͭ N metal|,material| +ׯ N facilities|ʩ,route|· + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V sing|,manner=strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V help|,scope=wealth|Ǯ,manner=generous| + V die|,manner=brave| +֮ V help|,scope=wealth|Ǯ,manner=generous| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + N part|,%plant|ֲ,skin|Ƥ +˰ V MakeLiving|ı,manner=poor| + N part|,%plant|ֲ,skin|Ƥ + N physical|,waste| + V CarryOnBack| + V lift| + V pick|ʰ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V HaveContest| + V equal| + V fight| + V refuse| + V resist| + V withstand|ס + V refute| + V refute|,police| + N human|,*refute| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#disease| +ס V WithstandNot|ס +ס V withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#illuminate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#MakeTrouble| + V fight|,partner=waterless| + V HaveContest| + V equal| + V fight|,partner=waterlogging| +Ѫ N medicine|ҩ + V resist| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#electricity| + V refuse| + V reject|ؾ + ADJ aValue|ֵ,ability|,able|,destroy|,#bacteria|΢,medical|ҽ + N medicine|ҩ,*destroy|,#bacteria|΢ +ǿ N attribute|,strength|,withstand|ס,#straighten|ֱ,&inanimate| +Ԯ N fact|,*fight|,ProperName|ר,military| + V disobey|Υ,content=order| +ĥ N attribute|,strength|,obstruct|ֹ,#grind|ĥ,&thing| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| + N fact|,*fight|,ProperName|ר,military| +ս N fact|,*fight|,ProperName|ר,military| + N medicine|ҩ,*destroy|,#bacteria|΢ +˰ V refuse|,content=pay| + V accuse|ظ,police| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + N part|,%human|,*destroy|,#bacteria|΢,#medical|ҽ +ѹǿ N attribute|,strength|,withstand|ס,#press|ѹ,&inanimate| +ҩ ADJ aValue|ֵ,ability|,able|,withstand|ס,#medical|ҽ + V protest| + N human|,*protest| + V resist| +ԭ N physical|,medical|ҽ + V fight|,content=unfortunate|,#weather| +ս V fight|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shiver| + V resist| +ס V withstand|ס + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V excited| + V WeatherBad| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N disease| + V dry| + N furniture|Ҿ,space|ռ,$WarmUp|,@sleep|˯ +ͷ N part|,%furniture|Ҿ,$WarmUp|,@sleep|˯ + N furniture|Ҿ,space|ռ,@put| + V check| + V exam| +ʿ V exam|,purpose=include|,education| +ȡ V fail|ʧ,scope=exam|,result=include|,education| + V fail|ʧ,scope=exam|,result=include|,education| + V check| + V investigate| + N community|,*investigate| + N place|ط,@exam| +ѧ V exam|,purpose=include|,education| + V amend| + V research|о + ADJ knowledge|֪ʶ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#past| +ѧ N human|,#knowledge|֪ʶ + N human|,#exam| + V check| + V exam| + ADJ aValue|ֵ,quality|,refined|,desired| + V investigate| + V research|о + N document|,#exam| + N beast| + N thinking|˼ + V think|˼ + V estimate| + V check| +ȡ V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + N human|,unripe|,*exam| + V exam| +˶ʿ V exam|,purpose=include|,education| + V exam|,purpose=include|,education| +о V exam|,purpose=include|,education| + V exam| + N fact|,exam|,important| +֤ V research|о + V beat| + V punish| + N document|,$copy|д + N material|,?clothing| + V beat| + V punish| + V interrogate| + V interrogate|,police| + V WarmUp| + V cook| + V WarmUp| + N food|ʳƷ + N tool|þ,@dry|,*cook| +Ѽ N food|ʳƷ + N addictive|Ⱥ + V BeNear| + V approach|ӽ + V depend| + V lean|п + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%furniture|Ҿ + V approach|ӽ,LocationFin=edge| +ס ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ס ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ס ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ס ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,@lean|п +ı N human|,$employ| + V BeNear| + ADJ aValue|ֵ,distance|,near| + V approach|ӽ +£ V approach|ӽ +ɽ N human|,friend| +ɽɽ V use|,patient=material| +ɽɽˮˮ V use|,patient=material| + N character|,(China|й) + N stone|ʯ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V request|Ҫ + V ExpressAgainst|Ǵ + N character|,surname|,human|,ProperName|ר + N part|,%plant|ֲ,limb|֫ + N part|,%tool|þ,arm| +¶ N community|,ProperName|ר,(China|й) + CLAS NounUnit|,&plant|ֲ + V beat| +İ V disable|м,scope=speak|˵ +Ĵ V beat| +Ŀİ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +Ŀİ V walk| +Ŀײײ V walk| + V bump|ײ + V quarrel| +ͷ V salute|¾ +ͷ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&physical| + N shape|,round|Բ +״ ADJ aValue|ֵ,form|״ + N attribute|,kind|,&thing| + N part|,%organization|֯ +ư ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +Ƴ N human|,#occupation|ְλ,official|,*manage| +ƶ N money|,(Nicaragua|) +ƻ N publications|鿯 +Ƽ N knowledge|֪ʶ +Ƽ N community|,*research|о,#knowledge|֪ʶ +Ƽ ADJ aValue|ֵ,kind|,#knowledge|֪ʶ +ƽ N knowledge|֪ʶ,education| +ƽƬ N shows|,#knowledge|֪ʶ,education| +ƾ V exam|,past|,royal| + N money|,(Costa Rica|˹) + N money|,(El Salvador|߶) +¡ N place|ط,city|,ProperName|ר,(Germany|¹) + N place|ط,capital|,ProperName|ר,(Sri Lanka|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Comoros|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħ޷ N money|,(Comoros|Ħ) +Ŀ N part|,%knowledge|֪ʶ +ɿ N place|ط,capital|,ProperName|ר,(Guinea|) + N knowledge|֪ʶ + N language|,#country|,ProperName|ר + N part|,%organization|֯,#employee|Ա + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kuwait|) + N place|ط,country|,ProperName|ר,(Asia|) +س N place|ط,capital|,ProperName|ר,(Kuwait|) + N human|,(Kuwait|) +ί N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) + N language|,#country|,ProperName|ר +Э N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +ѧ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ѧ N knowledge|֪ʶ +ѧ V ize|̬,PatientAttribute=knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ѧо N affairs|,research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N fact|,research|о + N InstitutePlace|,*research|о,#knowledge|֪ʶ +Ŀ N affairs|,#research|о,#knowledge|֪ʶ +Ա N human|,#occupation|ְλ,employee|Ա + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ +Dz N fish| + V pant| +ȴ V pant| + N disease| + V pant| + ADJ aValue|ֵ,standard|׼,average|,desired| + V fit|ʺ + V worth|ֵ +ɰ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ ADJ aValue|ֵ,ability|,able|,$store| +ɱ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ɱ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +ɱȼ۸ N attribute|,price|۸,lasting|,&artifact|˹,commercial| +ɱȽ ADJ aValue|ֵ,ability|,able|,$compare|Ƚ +ɱ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$compile|༭,#software| +ɱ ADJ aValue|ֵ,ability|,able|,$change| +ɱӲ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ绤 ADJ aValue|ֵ,ability|,able|,$refute| +ɱ ADJ aValue|ֵ,ability|,able|,$debate| +ɱ ADJ aValue|ֵ,ability|,able|,$express|ʾ +ɲ ADJ aValue|ֵ,ability|,able|,$refute| +ɲ ADJ aValue|ֵ,ability|,able|,$remove| +ɲ ADJ aValue|ֵ,ability|,able|,$use| +ɲ ADJ aValue|ֵ,ability|,able|,$control| +ɲ ADJ aValue|ֵ,ability|,able|,$handle| +ɲ ADJ aValue|ֵ,ability|,able|,$measure| +ɲ ADJ aValue|ֵ,ability|,able|,$perception|֪ +ɲж ADJ aValue|ֵ,ability|,able|,$dismount|ж +ɳ ADJ aValue|ֵ,ability|,able|,$return| +ɳ ADJ aValue|ֵ,ability|,able|,$remove| +ɳ ADJ aValue|ֵ,ability|,able|,$forming|γ +ɳ֮ N time|ʱ,important| +ɳ ADJ aValue|ֵ,ability|,able|,GoOn| +ɳ ADJ aValue|ֵ,ability|,able|,withstand|ס +ɳ ADJ attribute|,ability|,able|,withstand|ס,&organization|֯,&event|¼ +ɳ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ɳ ADJ aValue|ֵ,ability|,able|,$satisfied| +ɳ ADJ aValue|ֵ,ability|,able|,$lend|,commercial| +ɴ ADJ aValue|ֵ,ability|,able|,$store| +ɴ͸ ADJ aValue|ֵ,ability|,able|,$stab| +ɴ ADJ aValue|ֵ,ability|,able|,$PutOn| +ɴ ADJ aValue|ֵ,ability|,able|,$disseminate| +ɴС ADJ aValue|ֵ,ability|,able|,$adjust| +ɵõ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɵ N medicine|ҩ +ɵǼ ADJ aValue|ֵ,ability|,able|,$record|¼ +ɵݽ ADJ aValue|ֵ,ability|,able|,$subtract| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɶ ADJ aValue|ֵ,ability|,able|,$decide| +ɶ ADJ aValue|ֵ,ability|,able|,$understand| +ɶ ADJ attribute|,ability|,able|,$understand|,&information|Ϣ +ɶҡ ADJ aValue|ֵ,ability|,able|,$shake|ҡ +ɶ ADJ aValue|ֵ,ability|,able|,$read| +ɶ ADJ attribute|,ability|,able|,$read|,&information|Ϣ +ɶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɷ ADJ aValue|ֵ,ability|,able|,$announce| +ɷ ADJ aValue|ֵ,ability|,able|,$oppose| +ɷ ADJ aValue|ֵ,ability|,withstand|ס,desired| +ɷ ADJ aValue|ֵ,ability|,able|,$defend| +ɷֹ ADJ aValue|ֵ,ability|,able|,$escape| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷֽ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$classify| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$analyze| +ɷ N aspiration|Ը +ɷ CONJ {question|} +ɸ ADJ aValue|ֵ,ability|,able|,$amend| +ɸ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɸ ADJ aValue|ֵ,ability|,able|,$cultivate| +ɸ ADJ aValue|ֵ,ability|,able|,$alter|ı +ɸ ADJ aValue|ֵ,ability|,able|,$improve| +ɹ ADJ aValue|ֵ,ability|,able|,$occupy|ռ +ɹʹ ADJ aValue|ֵ,ability|,able|,$use| +ɹ ADJ aValue|ֵ,ability|,able|,$estimate|,commercial| +ɹ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ɹ ADJ aValue|ֵ,degree|̶,very| +ɹ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɹ黹 ADJ aValue|ֵ,ability|,able|,$return| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultIn| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultFrom|Ե +ɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ɺ N human|,official|,past| +ɺ ADV aValue|ֵ,time|ʱ,proper| +ɺͽ ADJ aValue|ֵ,ability|,able|,$reconcile| +ɺͽ N attribute|,ability|,reconcile|,&organization|֯ +ɺ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɻ ADJ aValue|ֵ,ability|,able|,$exchange| +ɻ ADJ aValue|ֵ,ability|,able|,$weaken| +ɻӷ ADJ aValue|ֵ,ability|,able|,$disappear|ʧ +ɻָ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻظ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɻ ADJ aValue|ֵ,ability|,able|,$LookBack| +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɼ ADJ aValue|ֵ,ability|,able|,$count| +ɼ ADJ aValue|ֵ,ability|,able|,$calculate| +ɼǵ ADJ aValue|ֵ,ability|,able|,$remember|ǵ +ɼ̳ ADJ aValue|ֵ,ability|,able|,$receive| +ɼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɼӹ ADJ aValue|ֵ,ability|,able|,$produce| +ɼٶ ADJ aValue|ֵ,ability|,able|,$deduce| +ɼ ADJ aValue|ֵ,ability|,able|,$fit|ʺ +ɼ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɼ ADJ aValue|ֵ,ability|,able|,$weaken| +ɼ CONJ {comment|} +ɼ N lights| +ɽ ADJ aValue|ֵ,ability|,able|,$exchange| +ɽ̸ ADJ aValue|ֵ,ability|,able|,$talk|̸ +ɽӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +ɽ ADJ aValue|ֵ,ability|,able|,$accept| +ɽ ADJ aValue|ֵ,ability|,able|,$handle| +ɽ ADJ aValue|ֵ,ability|,able|,$explain|˵ +ɽ ADJ aValue|ֵ,ability|,able|,$transport| +ɾ ADJ aValue|ֵ,ability|,frighten|Ż +ɾ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ɾ ADJ aValue|ֵ,ability|,able|,$amend| +ɾס ADJ aValue|ֵ,ability|,able|,@reside|ס +ɾܾ ADJ aValue|ֵ,ability|,able|,$refuse| +ɾ ADJ aValue|ֵ,ability|,able|,$decide| +ɿ N medicine|ҩ,?addictive|Ⱥ +ɿ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ɿ ADJ aValue|ֵ,trueness|α,true|,desired| +ɿ N human|,true|,desired| +ɿ N attribute|,trueness|α,true|,&thing| +ɿ N drinks|Ʒ +ɿ ADJ aValue|ֵ,ability|,able|,$carve| +ɿ ADJ aValue|ֵ,ability|,able|,$control| +ɿع N tool|þ,*control|,#electricity| +ɿع N tool|þ,*control|,#electricity| +ɿ ADJ aValue|ֵ,taste|ζ,good|,desired| +ɿڿ N drinks|Ʒ +ɿˡ ADJ aValue|ֵ,ability|,able|,$forgive|ԭ +ɿˡ N attribute|,ability|,$forgive|ԭ,&act|ж + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,$understand| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V pity| +о ADJ aValue|ֵ,ability|,able|,$propose| +¼ ADJ aValue|ֵ,ability|,able|,$record|¼ +û ADJ aValue|ֵ,ability|,able|,$levy| +ģ ADJ aValue|ֵ,ability|,able|,$imitate|ģ +Ĩ ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,possibility|,possible| + N attribute|,possibility|,possible|,&event|¼ + ADV {comment|} +ܱԽ ADJ aValue|ֵ,ability|,able|,$surpass|ǿ + N attribute|,possibility|,&event|¼ + ADJ aValue|ֵ,ability|,able|,reverse|ߵ + N attribute|,ability|,able|,reverse|ߵ,&event|¼ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +µ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ʵ ADJ aValue|ֵ,ability|,able|,$climb|ʵ +Ʒ ADJ aValue|ֵ,ability|,able|,$savor| + ADJ aValue|ֵ,ability|,able|,$sit| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$rescue| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,$request|Ҫ +ȡ ADJ aValue|ֵ,property|,worth|ֵ,desired| +ȡ ADJ aValue|ֵ,ability|,able|,$remove| +Ȧɵ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$endure| + ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ + N attribute|,ability|,able|,StateChange|̬,&physical| + ADJ aValue|ֵ,ability|,able|,$perform| +ˮ ADJ aValue|ֵ,ability|,able|,$walk| + ADJ fit|ʺ +͸ ADJ aValue|ֵ,ability|,able|,$influence|Ӱ + ADJ aValue|ֵ,ability|,able|,$produce| +ʪ ADJ aValue|ֵ,ability|,able|,$moisten|ʪ +ʪ N attribute|,ability|,&moisten|ʪ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$eat| +ʳ N attribute|,ability|,able|,$eat|,&physical| + CONJ {but|} + ADV {emphasis|ǿ} + ADJ aValue|ֵ,ability|,able|,$use| +ջ ADJ aValue|ֵ,ability|,able|,$MoveItBack| +˵ ADJ aValue|ֵ,ability|,able|,$persuade|Ȱ˵ + ADJ aValue|ֵ,ability|,able|,awake| + ADJ aValue|ֵ,behavior|ֹ,flexible| + N attribute|,behavior|ֹ,flexible|,&thing| + ADJ aValue|ֵ,ability|,able|,$accuse|ظ +̾ ADJ aValue|ֵ,ability|,able|,$sorry|ϧ + ADJ aValue|ֵ,ability|,able|,$listen| +̸ͨн ADJ aValue|ֵ,ability|,able|,$discuss| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ƶ ADJ aValue|ֵ,ability|,able|,$deduce| +˻ ADJ aValue|ֵ,ability|,able|,$GoBack| +ڿ ADJ aValue|ֵ,ability|,able|,$satirize| + ADJ aValue|ֵ,ability|,able|,$resume|ָ + ADJ aValue|ֵ,possibility|,possible| +ɼ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +ν V be| + ADJ aValue|ֵ,ability|,able|,$abandon| +ϧ V sorry|ϧ +Ϩ ADJ aValue|ֵ,ability|,able|,$remove| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ +뵽 ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +֪ V deduce| + N attribute|,ability|,&sell| + ADJ aValue|ֵ,ability|,able|,$consume|ȡ +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| + ADJ aValue|ֵ,ability|,able|,$believe| +Ŷ N attribute|,ability|,able|,$believe|,&mental| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + N attribute|,ability|,able|,$fulfil|ʵ,&thinking|˼ +޸ ADJ aValue|ֵ,ability|,able|,$repair| + ADJ aValue|ֵ,ability|,able|,$repair| +ѡ ADJ aValue|ֵ,ability|,able|,$choose|ѡ +ѱ ADJ aValue|ֵ,ability|,able|,$cultivate| +ѹ ADJ aValue|ֵ,ability|,able|,$shrink|С +ѹե ADJ aValue|ֵ,ability|,able|,$SqueezeOut| +ӳ ADJ aValue|ֵ,ability|,able|,$enlarge| +֤ ADJ aValue|ֵ,ability|,able|,$prove|֤ + ADJ aValue|ֵ,ability|,able|,$ize|̬ +Һ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ҽ ADJ aValue|ֵ,ability|,able|,$cure|ҽ +ֲ N attribute|,ability|,$TakeAway|ᶯ,$install|װ,&software| +ֲ N attribute|,ability|,$TakeAway|ᶯ,$planting|ֲ,&plant|ֲ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| + AUX {modality|} +Ա ADJ aValue|ֵ,ability|,able|,$guarantee|֤,&human| +Ա N attribute|,ability|,able|,$guarantee|֤,&human| +Ա ADJ aValue|ֵ,ability|,able|,$escape| +Ա任 ADJ aValue|ֵ,ability|,able|,$replace| +Թ ADJ aValue|ֵ,ability|,able|,$estimate| +Ժ ADJ aValue|ֵ,ability|,able|,$respire| +Ի ADJ aValue|ֵ,ability|,able|,$obtain|õ +Լ ADJ aValue|ֵ,ability|,able|,$perception|֪ +Խܱ ADJ aValue|ֵ,ability|,able|,$guarantee|֤ + ADJ aValue|ֵ,ability|,able|,$satisfied| +ȷ ADJ aValue|ֵ,ability|,able|,$decide| +ʶ ADJ aValue|ֵ,ability|,able|,$know|֪ +ʡȥ ADJ aValue|ֵ,ability|,able|,$remove| +ʵ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$deduce| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ӻ ADJ aValue|ֵ,ability|,able|,$delay| + ADJ aValue|ֵ,ability|,able|,$quote| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$drink| + ADJ aValue|ֵ,ability|,able|,$quote| +ӡˢ ADJ aValue|ֵ,ability|,able|,$print|ӡˢ +п ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,ability|,able|,$exempt| +û ADJ aValue|ֵ,ability|,able|,$replace| +Ԥ ADJ aValue|ֵ,ability|,able|,$pay| +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +Ԥδ V time|ʱ,future|,$predict|Ԥ +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ + ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ + ADJ aValue|ֵ,ability|,able|,$add| +չ ADJ aValue|ֵ,ability|,able|,$unfold|̯ +۵ ADJ aValue|ֵ,ability|,able|,$fold|ߡ + ADJ aValue|ֵ,ability|,able|,$defeat|սʤ +˰ ADJ aValue|ֵ,performance|,#collect| + ADJ aValue|ֵ,ability|,able|,$debate| + ADJ aValue|ֵ,ability|,able|,$debate| +֤ʵ ADJ aValue|ֵ,ability|,able|,$prove|֤ +֪ ADJ aValue|ֵ,ability|,able|,$know|֪ +ִ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ,desired| +ֲ ADJ aValue|ֵ,ability|,able|,$planting|ֲ +ػ ADJ aValue|ֵ,ability|,able|,$obtain|õ +׷ ADJ aValue|ֵ,ability|,able|,$need| +׷ ADJ aValue|ֵ,ability|,able|,$follow| + ADJ aValue|ֵ,ability|,able|,$use| +֯ ADJ aValue|ֵ,ability|,able|,$establish| + V HungryThirsty| + V expect| + N aspiration|Ը,expect| + V expect| + V consume|ȡ + V defeat|սʤ + V delimit| + V occupy|ռ,military| + V restrain|ֹ + CLAS unit|λ,&weight| +˵ʤ V defeat|սʤ,partner=enemy|,military| +˷ V defeat|սʤ +˷ V defeat|սʤ,military| +˸ V TakeBack|ȡ +˸ N institution|,police|,ProperName|ר,politics|,(Soviet|) +˼ V loyal|Т +˿ V levy| + CLAS unit|λ,&weight| + N SportTool|˶ + N money|,(Czechoslovakia|ݿ) + N money|,(Czech|ݿ) + N money|,(Slovakia|˹工) + N place|ط,ProperName|ר,(Russia|˹) + N human|,(Crimea|) +ķֹ N house|,institution|,#politics|,(Russia|˹) +ֶ N human|,official|,politics|,ProperName|ר,(US|) +¡ V produce| +޵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Croatia|޵) +޵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ǹ͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ N language|,#country|,ProperName|ר + N money|,(Brazil|) +ڿ˼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʲ׶ N place|ط,ProperName|ר,(Asia|) +ʲ׶ N language|,#country|,ProperName|ר +͡ N disease| +߲ N money|,(Zambia|ޱ) + V restrain|ֹ + V carve| + V delimit| + N time|ʱ + N time|ʱ,special| +̰ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +̱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̲ݻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +̶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̶ N mark|־,linear|,#measurement| +̹ ADJ aValue|ֵ,content|,profound| +̹ V remember|ǵ +̻ V describe|д +̻ V carve| +̿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +̿ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V carve|,ContentProduct=character| + ADJ aValue|ֵ,source|Դ,different| + N human|,*buy|,commercial| + N human|,*engage| + N human|,*tour| + N human|,*visit| + N human|,commercial| +Ͳ N part|,%vehicle|ͨ,room|,@reside|ס +ͳ N LandVehicle|,*transport|,human| +ʹ N ship|,*transport|,#human| +ʹ V RegardAs|,entertainment| +Ͷ N community|,$invite|,*compete|,sport| +ͷ N food|ʳƷ +ͷ N room| +͹ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +͹ N attribute|,correctness|,correct|ȷ,desired|,&mental| +ͻ N human|,*buy|,#commercial| +ͻ N aircraft|,*transport|,human| +ͼ N community|,ProperName|ר,(China|й) + N human|,mass|,commercial| + N quantity|,amount|,&human|,commercial| + N ship|,*transport|,#human| + ADJ aValue|ֵ,fullness|,full| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,#tour| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human|,*visit| + N human|,commercial| + N human|,commercial| + N entity|ʵ + N room| +Դ N location|λ,@ExistAppear|,#human|,commercial| + V transport| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +ջ N InstitutePlace|,@reside|ס,#tour|,commercial| + N affairs|,education| + N expenditure|,$levy| + V levy| + N part|,%knowledge|֪ʶ,$study|ѧ,education| +α N readings|,*teach|,$study|ѧ,education| +α N readings|,#plans|滮,education| +γ N part|,%knowledge|֪ʶ,$study|ѧ,education| +μ N time|ʱ,@rest|Ϣ,education| +μ N exercise|,education| +ʱ N time|ʱ,education| +ʱ N time|ʱ,hour|ʱ,education| + N room|,education| +˰ N expenditure| +˰ V levy|,possession=expenditure|,commercial| + N room|,education| + N attribute|,content|,&information|Ϣ + N problem| + N part|,%InstitutePlace|,*research|о + ADJ aValue|ֵ,attachment|,education| + N readings| + N affairs|,education| +Ķ N affairs|,#read|,education| +ҵ N affairs|,#study|ѧ,education| + N text|,education| +ҵ N affairs|,education| + ADJ aValue|ֵ,attachment|,education| + V levy|,commercial| + N furniture|Ҿ,space|ռ,@put| + V agree|ͬ + V willing|Ը +϶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +϶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +϶ ADJ aValue|ֵ,correctness|,upright|,desired| +϶ V admit| +϶ V agree|ͬ + N human|,official|,politics|,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kenya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǰ N money|,(Kenya|) + N human|,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ػ ADJ place|ط,ProperName|ר,(US|) + V bite|ҧ +ҧ V bite|ҧ +Ӳͷ V endeavour| + V engage|,agricultural|ũ +ѻ V cultivate|,agricultural|ũ + N place|ط,#crop|ׯ,agricultural|ũ +ֳ V engage|,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V request|Ҫ,manner=sincere| + V request|Ҫ,manner=sincere| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,dented| + V damage| + V deceive|ƭ + N facilities|ʩ,mine| + V kill|ɱ + N part|,%earth|,mouth| +ӵ N facilities|ʩ,mine| +ӵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ӻ V damage| +ӿ ADJ aValue|ֵ,SmoothFinish|,rugged| +ɹƭ V cheat|ƭ +ƭ V cheat|ƭ + V cheat|ƭ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V endeavour| + V pant| + V speak|˵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V dump| + N location|λ,space|ռ,empty| + N sky| + N time|ʱ,#idle| +հ N attribute|,content|,empty|,&entity|ʵ +հ N weapon|,*firing| +ճ N part|,%AnimalHuman|,viscera| +ճ N LandVehicle|,$lend|,empty|,commercial| +յ N time|ʱ,#idle| +յ ADJ aValue|ֵ,fullness|,empty| +յ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +յ N method|,#speed|ٶ,#vehicle|ͨ +յ N place|ط +յ N place|ط,empty| +յ V adjust|,patient=temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ豸 N tool|þ,*adjust|,#temperature|¶ +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ն N part|,%inanimate|,mouth| +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +նԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +շ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +շ N house|,$lend| +շ V defend|,patient=sky| +ո ADJ aValue|ֵ,fullness|,empty| +ո N symbol|,#computer| +ջ V talk|̸,content=empty| +ջ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ռ N sky| +ռ N attribute|,space|ռ,&inanimate| +ռվ N facilities|ʩ,#aircraft|,#celestial| +ս V fall|,military| +ս N army|,#sky| +ս N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| +վ N army|,#sky| +տյ ADJ aValue|ֵ,fullness|,empty| +տҲ ADJ aValue|ֵ,fullness|,empty| +տ˵׻ V TalkNonsense|Ϲ˵ +տ ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V talk|̸,content=empty| + N {fullness|} + N phenomena|,unfortunate|,#aircraft|,undesired|ݬ + N gas| +ǰ ADJ aValue|ֵ,kind|,special| +ǰ ADJ aValue|ֵ,kind|,special| +ǻ N shape|,cubic| +Ա N human|,#occupation|ְλ,military| +ȱ V OwnNot| +ȱ N attribute|,occupation|ְλ,empty|,&human| + V fail|ʧ,scope=take|ȡ + N attribute|,speed|ٶ,&SelfMove| +̸ V talk|̸,content=empty| +̸ N human|,*TalkNonsense|Ϲ˵ +Ͷ V drop|Ͷ +ͷ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͷ N fact|,disloyal| +ͷ֧Ʊ N coupon|Ʊ֤,#wealth|Ǯ,fake|α +ͷ֧Ʊ N information|Ϣ,empty|,fake|α,undesired|ݬ +λ N location|λ,@sit|,empty| +Ϯ V attack|,military| +϶ N location|λ,space|ռ,empty| +϶ N time|ʱ,#idle| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,#idle| + N thought|ͷ,empty| + N human| + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,property|,^$occupy|ռ + N sky| + V transport| + ADJ aValue|ֵ,property|,^$load|װ +ս V fight|,location=sky| + N location|λ,%sky| +зʽ N fact|,check|,#army|,military| +¥ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +С N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| + N tool|þ,*WhileAway| +ת V rotate|ת + N part|,%inanimate|,mouth| + N time|ʱ,important| + V fear| + V frighten|Ż + V uneasy| +ֲ N emotion|,fear| +ֲ V fear| +ֲ N thing|,*frighten|Ż +ֲ N human|,*damage|,crime| +ֲ N knowledge|֪ʶ,#damage|,crime| +ֻ N emotion|,fear| +ֻ V fear| +־ V fear| + N AnimalHuman|,past| + ADV {comment|} + V frighten|Ż + N character|,surname|,human|,ProperName|ר + N part|,%inanimate|,mouth| +׵ N facilities|ʩ,route|· +׶ N part|,%inanimate|,mouth| +׾ N attribute|,length|,&mouth| +׾ N part|,%tool|þ,#TakePicture| + N facilities|ʩ,space|ռ,religion|ڽ +ȸ N bird| +϶ N part|,%inanimate|,mouth| +Ѩ N part|,%inanimate|,mouth| + N human|,ProperName|ר,past|,literature|,(China|й) + V accuse|ظ + V control| + V dump| +ظ V accuse|ظ + V accuse|ظ + V control| +Ʋ ADJ aValue|ֵ,possibility|,impossible|,$control| +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$control| +̨ N part|,%implement|,@control| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| + V dig|ھ + V research|о + V scratch|ץ +Ŷ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +۶ V LookFor|Ѱ,location=expression|,content=wrong| + N attribute|,age|,&livestock| + N part|,%AnimalHuman|,mouth| + N part|,%building|,mouth| + N part|,%inanimate|,mouth| + N part|,%tool|þ,*cut|,heart| +ڰ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ڱ N attribute|,reputation|,#praise|佱,&human|,&organization|֯ +ڲ N attribute|,ability|,&speak|˵ +ڲźõ N human|,able| +ڳ V disable|м,scope=speak|˵ +ڳ N attribute|,ability|,&speak|˵ +ڳ N sound|,#language| +ڳ N attribute|,odor|ζ,stinky|,undesired|ݬ +ڳ V boast| +ڴ N part|,%clothing|,cubic|,@put| +ڴ N tool|þ,cubic|,@put| +ڷ V accept| +ڷ V eat|,medical|ҽ +ڷҺ N medicine|ҩ +ڸ N attribute|,circumstances|,happy|,#eat|,&human| +ڸ N food|ʳƷ,generic|ͳ +ڸ V HungryThirsty| +ڸ N experience|,#eat| +ڹ N text|,*admit|,#crime|,#police| +ں N text| +ں N tool|þ,*MakeUp|ױ +ڻ N information|Ϣ,empty|,fake|α,undesired|ݬ +ڽ N part|,%AnimalHuman|,mouth| +ڽ V quarrel| +ڽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ھ N attribute|,size|ߴ,&mouth| +ھ N attribute|,standard|׼,&entity|ʵ +ڿ V HungryThirsty| +ڿ V speak|˵ + N food|ʳƷ + N text| +۸ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ģ N AlgaeFungi|ֲ,$eat| + N part|,%InsectWorm|,mouth| + N attribute|,bearing|̬,#speak|˵,&human| + N information|Ϣ,#language| + N sound|,#language| +ǻ N part|,%AnimalHuman|,mouth| +ǻ N part|,%InstitutePlace|,#mouth|,medical|ҽ + N MusicTool| + ADJ aValue|ֵ,age|,young|,#animal| + ADJ aValue|ֵ,habit|ϰ + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + N sound| + V debate| + N text|,$speak|˵ +ʵ N reason|,undesired|ݬ +ķ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V exam| + V exam|,education| + V teach| + V teach|,education| + V speak|˵ +ˮ N part|,%AnimalHuman|,liquid|Һ +ͷ ADJ aValue|ֵ,kind|,$speak|˵ +ͷ N expression| + N part|,%AnimalHuman|,mouth| +ζ N emotion|,FondOf|ϲ + N part|,%AnimalHuman|,mouth| + N sound|,#language| + N result|,wrong|,undesired|ݬ,#speak|˵ + N food|ʳƷ + N information|Ϣ,$speak|˵ + V translate| + N attribute|,SoundQuality|,&speak|˵ + N sound|,#language| + N language|,$speak|˵ + N tool|þ,*protect|,#mouth| + ADJ aValue|ֵ,habit|ϰ +ʷ V ExpressAgainst|Ǵ + N location|λ,#OutOfOrder| + N location|λ,#disease|,#wounded| + N part|,%inanimate|,mouth| + V beat| + V cover|ڸ + V detain|ס,police| + V fasten|˩ + V levy|,police| + N part|,%clothing|,*fasten|˩ + V reverse|ߵ + V subtract| +۳ V subtract| +۷ V subtract| +۽ V levy|,police| +ۿ V subtract|,patient=money| + V detain|ס,police| + V beat|,patient=SportTool|˶ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɱ V beat| +ѹ V detain|ס +Ѻ V detain|ס,police| +Ѻ V levy|,police| +Ѻ N fact|,sell|,police| + N part|,%clothing|,*fasten|˩ +ס V detain|ס + N part|,%clothing|,*fasten|˩ + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*attack| + N human|,undesired|ݬ,*rob|,crime| + N human|,undesired|ݬ,enemy| +ܳ N human|,undesired|ݬ,enemy| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V decline|˥ +ݳ N thinking|˼ +ݻ ADJ aValue|ֵ,color|ɫ,yellow| +ݼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ݽ ADJ aValue|ֵ,dampness|ʪ,dried| +ݽ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ݾ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ľ괺 V BeRecovered|ԭ +ɬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ˮ N time|ʱ,season|,waterless| +ή ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ή V decline|˥ +Ҷ N InsectWorm|,*fly| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +﷦ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V decline|˥ + V weep| +ޱ V weep| +޿ V weep| + V weep| +ɥ V unsatisfied| + N sound|,#weep| + V accuse|ظ,manner=weep| +Ц V embarrassed|Ϊ + N house|,#animal|,#alive| + N part|,%earth|,mouth| + N part|,%inanimate|,mouth| + N place|ط,crime| + N part|,%inanimate|,mouth| + N wealth|Ǯ,$owe|Ƿ +۶ N part|,%inanimate|,mouth| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + N phenomena|,undesired|ݬ,unfortunate| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,undesired|ݬ,unfortunate| +ദ N phenomena|,undesired|ݬ,#unfortunate| +൨ N part|,%AnimalHuman|,viscera| +භ V endeavour| + V study|ѧ,manner=diligent| + V endeavour| +๤ N affairs|,industrial|,hardship| +๤ N human|,#occupation|ְλ,employee|Ա +๦ V endeavour| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V result|,miserable|,undesired|ݬ +ຣ N attribute|,environment|,miserable|,&human|,&organization|֯ +ຮ ADJ aValue|ֵ,temperature|¶,cold| +ྡ V lucky| +ྡ V lucky| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N human|,#occupation|ְλ,employee|Ա + V drill|ϰ,manner=diligent| + V upset| + N phenomena|,undesired|ݬ,#unfortunate| + V upset| +ɬ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ +ɬ V sorrowful| +ˮ N part|,%AnimalHuman|,liquid|Һ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N water|ˮ,bitter| +˼ V think|˼,manner=endeavour| +˼ڤ V think|˼,manner=endeavour| +ʹ N phenomena|,undesired|ݬ,#unfortunate| +ͷ N attribute|,taste|ζ,&edible|ʳ,bitter| +ͷ N phenomena|,undesired|ݬ,#unfortunate| +ζ N attribute|,taste|ζ,bitter|,&inanimate| +Ц V sigh|̾ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ĺ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ľӪ V endeavour| + V inferior| + V suffer| +ս V fight|,manner=endeavour| + N phenomena|,undesired|ݬ,#unfortunate| + N tree| + N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ᰮ V FondOf|ϲ,degree=extreme| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ + N time|ʱ,season|,hot| + V BeSimilar|,degree=extreme| + N fact|,damage|,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@put|,@store| + N physical|,$store| +Ʒ N artifact|˹,$store|,commercial|,generic|ͳ + N language|,#country|,ProperName|ר +ⷿ N facilities|ʩ,space|ռ,@put|,@store| + CLAS unit|λ,&ChargeQuantity| + N attribute|,volume|ݻ,&facilities|ʩ + N clothing|,#leg| + N tool|þ,linear|,#clothing|,*fasten|˩ + N part|,%clothing|,leg| + N part|,%clothing|,#leg| + N clothing|,#leg| + N clothing|,#leg| + V boast| + V praise|佱 + V boast| + V boast| +亣 V boast| +佱 V praise|佱 + V boast| +̸ V boast| + CLAS unit|λ,&volume|ݻ +ҫ V ShowOff|ҫ +ҫ V boast| + V praise|佱 + V boast| + N expression|,*boast| + V end|ս + V perish| +̨ V end|ս +̨ V perish|,politics| + V hold| + N tool|þ,cubic|,@put| + V BeBeyond|Խ + V GoThrough| + V cross|Խ + V sit| + V GoOut|ȥ + N attribute|,distance|,&facilities|ʩ + ADJ aValue|ֵ,attachment|,#country| +˾ N InstitutePlace|,commercial| +ҵ N InstitutePlace|,commercial| + V cross|Խ + ADJ aValue|ֵ,time|ʱ + V GoInto| + V sit| + ADJ aValue|ֵ,time|ʱ + N facilities|ʩ,route|· + V cross|Խ,LocationThru=waters|ˮ +Խ V BeBeyond|Խ +Խ V cross|Խ + N part|,%AnimalHuman|,#body| + N part|,%AnimalHuman|,bone| + CLAS NounUnit|,&inanimate|,^liquid|Һ + N shape| + CLAS unit|λ,&money|,(China|й) + N part|,%plant|ֲ,base| + N tool|þ,*measure| +龥 N part|,%plant|ֲ,body| +״ N shape| + N tool|þ,*eat| + N tool|þ,*eat| + V VieFor| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V joyful|ϲ +챨 N publications|鿯,news| +첽 V run| +첽 V walk| + N edible|ʳ +쳵 N LandVehicle| +쳵 N facilities|ʩ,route|·,#speed|ٶ +쵱 ADJ aValue|ֵ,speed|ٶ,fast| +쵶ն ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V VieFor| + N emotion|,joyful|ϲ,desired| +칥 V attack|,sport| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N physical|,$post|ʼ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +ӱ V VieFor| +ӱ ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж + N part|,%tool|þ,#TakePicture| +˿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fact|,#joyful|ϲ,desired| + ADJ aValue|ֵ,speed|ٶ,fast| +ٻ ADJ aValue|ֵ,behavior|ֹ,fast|,flexible| +ת ADJ aValue|ֵ,speed|ٶ,fast| +ͧ N ship| +ο V joyful|ϲ +Ѷ N news| +Ҫ ADV aValue|ֵ,duration|,TimeShort| + V satisfied| + N fish| + N part|,%physical| + N human|,forthright|ˬ + V AtEase| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V AtEase| + ADJ aValue|ֵ,area|,wide| +խ V economize|ʡ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V WellTreat|ƴ + N attribute|,width|,&physical| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V soothe|ο + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ˡ V forgive|ԭ + V AtEase| + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,occasion|,^crowded|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ο V soothe|ο + V enlarge|,PatientAttribute=boundary|,#time|ʱ + N time|ʱ,@enlarge|,#boundary|,#time|ʱ + V StripOff|ȥ,patient=clothing| +ԣ ADJ qValue|ֵ,amount|,sufficient| + N money|,(Angola|) +խ N attribute|,width|,&physical| + V indulge| + ADJ aValue|ֵ,speed|ٶ,slow| + N fund|ʽ + N part|,%document| + V entertain|д + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,speed|ٶ,slow| + V detain|ס +ʽ N attribute|,pattern|ʽ,&artifact|˹ + N part|,%text| + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + V calculate| + N character|,surname|,human|,ProperName|ר + V estimate| + V help| + V rescue| + V help| +︴ V rescue|,patient=country| + V calculate| + V estimate| + V rescue| + V amend|,content=wrong| + V calculate| + V estimate| + V amend| +ʱ V amend|,content=wrong| + V help| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V run|,manner=fast| + N water|ˮ + V cry|,#livestock| + N wind|,strong|ǿ +籩 N weather|,#RainSnow|ѩ,#wind| + V joyful|ϲ + N fact|,undesired|ݬ +Ȯ N disease| + ADJ aValue|ֵ,behavior|ֹ,sincere| + N human| + N human|,undesired|ݬ,*mad| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ,degree=extreme| +Ц V laugh|Ц + N text|,undesired|ݬ + N wind|,strong|ǿ + V draw| + N part|,%artifact|˹,bone| + N part|,%thing|,bone| + N part|,%artifact|˹,bone| + N regulation| +ͼ N image|ͼ + N part|,%artifact|˹,bone| + N InstitutePlace|,mine| + N stone|ʯ,mine| + N location|λ,#stone|ʯ,mine|,@ExistAppear| + N physical|,mine| +Ʒ N physical|,mine| + N human|,#occupation|ְλ,official|,mine| + N LandVehicle|,mine| + N stone|ʯ,waste|,mine| + N part|,%land|½,mine| + N tool|þ,*illuminate|,mine| + N human|,#occupation|ְλ,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| +Ȫ N waters|ˮ,#mine| +Ȫˮ N drinks|Ʒ +ɰ N stone|ʯ,mine| +ɽ N InstitutePlace|,mine| +ʯ N stone|ʯ,mine| + N part|,%land|½,mine| + N inanimate|,mine| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N inanimate|,mine| + N institution|,#mine|,ProperName|ר,politics| +ҵ N affairs|,mine| + N stone|ʯ,waste|,#mine| + N attribute|,kind|,&mine| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,size|ߴ,big| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V lavish|˷ + V cease|ͣ,content=affairs|,undesired|ݬ + V cease|ͣ,content=affairs|,education|,undesired|ݬ +ճ־ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,special| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Զ ADJ aValue|ֵ,area|,wide| +Զ ADJ aValue|ֵ,duration|,TimeLong|,past| +ְ V cease|ͣ,content=affairs|,undesired|ݬ + N attribute|,circumstances|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + CONJ {supplement|ݽ} + V IllTreat| + V InDebt| + V InDebt|,commercial| + V lack|ȱ + V lack|ȱ,commercial| + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V InDebt|,possession=fund|ʽ,commercial| + V affairs|,*InDebt|,commercial| + V affairs|,*InDebt|,commercial| + V IllTreat| + V lose|ʧȥ + V InDebt| + V InDebt|,commercial| + V InDebt|,commercial| +Ƿ V InDebt|,commercial| +Ƿ V owe|Ƿ,commercial| +ʴ V InDebt|,commercial| +ʴ V disappear|ʧ + V InDebt|,commercial| + V GuiltilyConscious| + N clothing|,#head|ͷ,*protect| + N clothing|,*protect| +Ȼ ADJ aValue|ֵ,height|߶,tall| + V look|,manner=secret| + V perception|֪ + V look|,manner=secret| +̽ V look|,manner=secret| + V look|,manner=secret| + N human|,*look|,secret|,undesired|ݬ + N crop|ׯ + N crop|ׯ + N part|,%plant|ֲ,embryo|,?food|ʳƷ + N tool|þ,#wind|,*cool| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N human|,official| + N place|ط,ProperName|ר,(Canada|ô) + N human|,able|,desired| + N human|,official| +ΰ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N human|,undesired|ݬ,$order| + V GiveAsGift| + V GiveAsGift| + N tool|þ,linear|,@transmit| + V GiveAsGift| + V shy| + V shy| + V shy| + V shy| + V shy| +ɫ N attribute|,countenance|,shy|,&human| + V shy| + V shy| + V shy| + V OutOfOrder| + V defeated|,military| + V inflamed| + V defeated|,military| + V inflamed| + V defeated|,military| +ɢ V defeated|,military| + V flee| + V flee| + N disease| + V inflamed| + ADJ aValue|ֵ,sex|Ա,female|Ů +Ƕ N human|,female|Ů,entertainment| + N human|,family|,male| + N place|ط,city|,ProperName|ר,(China|й) + N AlgaeFungi|ֲ,?medicine|ҩ,$eat| + N InsectWorm|,generic|ͳ +ѧ N knowledge|֪ʶ,#InsectWorm| +ѧ N human|,#knowledge|֪ʶ,#InsectWorm| + N shows|,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N shows|,(China|й) + N human|,family|,mass|,male| + CLAS NounUnit|,&inanimate| + N shape| + V wrap| + V wrap| + V wrap| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V decline|˥ + V surround|Χ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V tired|ƣ + V tired|ƣ + V ignorant|֪ + N attribute|,circumstances|,miserable|,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V unfortunate| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N phenomena|,undesired|ݬ,poor| +ѻ N community|,family|,poor|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V MakeWorried| + V defend|,military| +̶ V RashlyAct| + V contain| + N symbol| + N symbol| +Լ N part|,%AnimalHuman|,flesh| + V enlarge| + V enlarge|,#organization|֯,military| + V MakeBetter|Ż + V enlarge| + V enlarge| + V MakeBetter|Ż + N fact|,discuss| + V enlarge| + V add|,patient=army|,military| +ɢ V disperse|ɢ +ɢ V disseminate| + N SportTool|˶ +չ V CauseToGrow|ʹɳ +չ V enlarge| + V enlarge| + V enlarge|,medical|ҽ + ADJ aValue|ֵ,area|,wide| + V destroy| + V enlarge| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V farewell| + V walk| +ǰ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| +Ҷ N tree| + N physical|,waste| + V handle|,patient=waste| + N physical|,waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| + V attract| + V attract|,commercial| + V attract|,politics|,commercial| + V excrete|й + V force|ǿ + V help| + V include|,manner=force|ǿ + V pull| + V recreation|,entertainment| + V talk|̸ + V transport| + V transport|,military| + N place|ط,capital|,ProperName|ר,(Morocco|Ħ) + V AlterForm|״,PatientAttribute=long| + V unsatisfied| + V foster| + V pull| + V relate|й + V talk|̸ + N machine| +˹ N language|,#country|,ProperName|ר + V include|,manner=force|ǿ + N place|ط,ProperName|ר + N language|,#country|,ProperName|ר + V StomachTrouble|֢ + N money|,(Maldives|) + N fittings|,industrial| +˹ N place|ط,capital|,ProperName|ר,(Nigeria|) +ϵ V associate| +϶ N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) + N SportTool|˶ + V owe|Ƿ +ҳ V talk|̸ + V mediate|,ResultEvent=fight| + V associate| + V transport| + V open| + V separate| + V attract|,target=human|,ResultEvent=SeekPleasure|Ѱ,#commercial| + V attract|,target=human|,commercial| + V transport|,patient=human| + V collude| + V pull| + N community|,*urge|ʹ,#sport| + N attribute|,strength|,#pull|,&physical| + N part|,%clothing| + V drill|ϰ,military| +£ V entice| + N place|ط,ProperName|ר + N part|,%building|,mouth| + V cook| + N food|ʳƷ +ģ N tool|þ +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| + N place|ط,city|,ProperName|ר,(China|й) +ʺ V excrete|й,patient=waste| + V ShowLove|ʾ,means=CausePartMove| + N part|,%artifact|˹,arm| +˿ V straighten|ֱ,industrial| + N part|,%clothing| +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Latvia|ά) +ά N place|ط,country|,ProperName|ר,(Europe|ŷ) +ά N language|,#country|,ProperName|ר +ϡ V StomachTrouble|֢ + V mediate| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +բ V TurnOff|ֹ +ֱ V straighten|ֱ +ס V catch|׽ס + N character|,(China|й) + N MusicTool| + N tool|þ,*disseminate| + N human|,religion|ڽ +ﻨ N FlowerGrass| + N community|,religion|ڽ +ͽ N human|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N material| + N tool|þ,*illuminate| + N stationery|ľ,@write|д + N PenInk|ī,*write|д + N InsectWorm| + N tool|þ,*decorate|װ + ADJ aValue|ֵ,color|ɫ,yellow| +Ⱦ V AlterColor|ɫ +̨ N tool|þ,@put|,#illuminate| + N tool|þ,image|ͼ +ֽ N paper|ֽ,*wrap| +ֽ N paper|ֽ,@write|д + N tool|þ,*illuminate| + ADJ aValue|ֵ,property|,$cook| + N time|ʱ,month| + N food|ʳƷ + N food|ʳƷ +÷ N FlowerGrass| + N food|ʳƷ +ζ N food|ʳƷ +ζ N food|ʳƷ,generic|ͳ + N time|ʱ,month| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ζ N attribute|,taste|ζ,peppery|,&physical| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ECHO {modality|} + N community|,*urge|ʹ,#sport| + N FlowerGrass|,?medicine|ҩ + N land|½,#crop|ׯ + N place|ط,city|,ProperName|ר,(Germany|¹) + N lights| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lesotho|) + N place|ط,country|,ProperName|ר,(Africa|) + N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V arrive| + V come| + V happen| + ADV qValue|ֵ,amount|,almost| + N human|,*visit| + V prohibit|ֹ + ADV aValue|ֵ,earliness|,late| + V appear|,content=water|ˮ + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ü ADV aValue|ֵ,earliness|,early| + V visit| +ǹ N weapon|,*firing| + N text| + N letter|ż +༦ N bird| + V ToAndFro| +ȥ V ToAndFro| + N physical|,$post|ʼ + PREP {scope} + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V excited| + PREP {scope} + N human|,*visit| + V ToAndFro| + N attribute|,source|Դ,&physical| + N material| +ϼӹ V produce| + V approach|ӽ + V arrive| +ȥ N process| +· N attribute|,source|Դ,&physical| +· N facilities|ʩ,route|·,#approach|ӽ +· ADJ aValue|ֵ,attachment|,unfixed|δ +· N artifact|˹,commercial|,generic|ͳ + N time|ʱ,future|,year| +ȥ V ToAndFro| + N human|,*post|ʼ + N time|ʱ,future| + N attribute|,circumstances|,future|,&human| + N attribute|,circumstances|,future|,&human| + N attribute|,strength|,#happen|,&physical|,&event|¼ +ͷ N cause|ԭ +ͷ N emotion|,#FondOf|ϲ +ͷ N emotion|,FondOf|ϲ +ͷ N human|,*help| + V ToAndFro| + V associate| + N text| + N letter|ż,$post|ʼ + V post|ʼ,patient=letter|ż + N purpose|Ŀ + N cause|ԭ +Դ N attribute|,source|Դ,&physical| +Դ V ResultFrom|Ե +߲ ADJ aValue|ֵ,tolerance|,generous|,desired| +֮ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V ResultFrom|Ե + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V blame|Թ + N character|,surname|,human|,ProperName|ר + V deny| + V depend| + V disobey|Υ,content=MakeAppointment|Լ + V stay|ͣ +Ƥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ƥ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V depend| +ծ V deny|,content=owe|Ƿ,commercial| + V deny|,content=owe|Ƿ,commercial| + V disobey|Υ,content=MakeAppointment|Լ + ADJ aValue|ֵ,color|ɫ,blue| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ʯ N stone|ʯ,treasure|䱦 + N attribute|,kind|,original|ԭ,&readings| + N thing|,$BaseOn| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ + N human|,#occupation|ְλ,employee|Ա +칤 N human|,#occupation|ְλ,employee|Ա +ɫ ADJ aValue|ֵ,color|ɫ,blue| + N sky|,blue| +ͼ N image|ͼ + N facilities|ʩ,space|ռ,@foster|,#livestock| + N fittings|,%building| + N part|,%readings| + N fittings|,%building| +Ŀ N part|,%shows|,%readings|,name| + V block|ס + V block|ס +Ӱ N facilities|ʩ,#waters|ˮ + V attack|,sport| + V block|ס +· V block|ס +· N thing|,*obstruct|ֹ +·ǿ N human|,crime|,undesired|ݬ,*rob| + V block|ס,sport| + V obstruct|ֹ + ADV aValue|ֵ,location|λ,middle| +ס V block|ס + V block|ס + N tool|þ,cubic|,@put| + N phenomena|,sport| + N SportTool|˶ + N fact|,exercise|,sport| + N fact|,compete|,sport| +̳ N community|,sport| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,earliness|,late| + N part|,%building| + N part|,%building| +ɺ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɺ V decline|˥ +β N part|,%AnimalHuman|,viscera| +β N disease| + N FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N money|,(Namibia|ױ) + N money|,(South Africa|Ϸ) + N place|ط,city|,ProperName|ר,(China|й) + N water|ˮ,strong|ǿ + V HoldInArm|§ + V attract| + V bear|е + V control| + V look| + V read| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + N human|,lazy|,undesired|ݬ + V unwilling|Ը + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N human|,lazy|,female|Ů +ͷ N human|,lazy| + N human|,lazy| + N human|,lazy|,undesired|ݬ + N human|,lazy|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ɢ V slack|͵ + N tool|þ,linear|,#electricity| + N tool|þ,linear|,*fasten|˩ +³ N LandVehicle| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V OutOfOrder| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,soft| + V inflamed| +õ V OutOfOrder| +ú ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,color|ɫ,colored|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N stone|ʯ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,ripe| +̯ N attribute|,circumstances|,disorder|,undesired|ݬ,&organization|֯ + V dizzy|,cause=addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V flow|,quantity=many| +IJ V catch|׽ס,manner=improper|,police| +ĵ N text|,used|,undesired|ݬ +ķ V issue|ַ,manner=improper| +ķ V break|۶,#tree|,manner=improper| +Ŀķ V break|۶,#tree|,manner=improper| + V use|,manner=improper| +ְȨ V use|,patient=power|,manner=improper| + N character|,(China|й) + ADJ aValue|ֵ,SoundVolume|,loud| + N character|,(China|й) +ͷ N tool|þ,*beat| + N beast| +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZΪ V collude| +DZͻ V run| +Ǵ N disease| +ǹ N livestock| +Ǻ N PenInk|ī,*write|д +ǽ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +̻ V eat| +β N FlowerGrass|,undesired|ݬ +Ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N CloudMist| + N beast| + N part|,%building|,nerve| + N part|,%building|,nerve| + N part|,%building|,head|ͷ + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,male|,past| +è N livestock| + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + ADJ aValue|ֵ,brightness|,bright| +ʶ V recite|ж + ADJ aValue|ֵ,SoundVolume|,loud| + V recite|ж + N human|,recite|ж + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N water|ˮ +˳ N water|ˮ +˴ N tool|þ,*recreation| +˵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ V lavish|˷ +˷ N human|,lavish|˷ +˻ N water|ˮ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N thinking|˼,#flighty| + N water|ˮ +ͷ N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ +ͷ N water|ˮ +ӿ V jet| + N human|,male|,flighty|,undesired|ݬ + N human|,undesired|ݬ + V TakeOutOfWater| + V cheat|ƭ + V seek|ıȡ +̱ V seek|ıȡ,possession=fund|ʽ + V TakeOutOfWater| +ȡ V cheat|ƭ +ȡ V seek|ıȡ + N character|,surname|,human|,ProperName|ר + V do| + V invite| + V tired|ƣ +ͱ V guarantee|֤,scope=engage|,commercial| +ͱ V protect|,scope=engage|,commercial| +ʹ V tired|ƣ +Ͷ V engage| +Ͷ N time|ʱ,day|,@congratulate|ף,#employee|Ա +Ͷ N human|,industrial| +Ͷ N quantity|,amount|,&human|,#do| +Ͷܼ ADJ aValue|ֵ,property|,BaseOn|,#strength| +Ͷ N human|,#occupation|ְλ,employee|Ա +Ͷ V tired|ƣ +Ͷ޹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +͸ V teach|,#police| +͹ N human|,#occupation|ְλ,employee|Ա +͹ N institution|,#employee|Ա,ProperName|ר,politics| +͹ N community|,#occupation|ְλ,employee|Ա +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ͼ N result|,#succeed|ɹ,desired| +ͽ V teach|,police| +ͽ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +Ϳ N fact|,endeavour| + V tired|ƣ + N human|,industrial| +µ V endeavour| +˲ V lavish|˷ +ģ N human|,desired| + V upset| +ʦ V SayHello|ʺ,military| +ʦ V use|,military| + V wounded| + N affairs|,#engage| + N payment| +ַ V farewell| +ݽ V engage|,rest|Ϣ + N human|,mass| + V engage| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,quality|,durable|,desired| + N facilities|ʩ,space|ռ,@foster|,#livestock| +β ADJ aValue|ֵ,ability|,withstand|ס,desired| +β ADJ aValue|ֵ,circumstances|,steady|,desired| +η N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +ι ADJ aValue|ֵ,circumstances|,steady|,desired| +ι ADJ aValue|ֵ,quality|,durable|,desired| +μ V remember|ǵ +ο ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ο ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,behavior|ֹ,steady|,desired| + N method|,undesired|ݬ,*deceive|ƭ + N tool|þ,space|ռ,@detain|ס,#animal| +ɧ N text|,*protest| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,age|,aged| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,tough|,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,aged| + N place|ط,country|,ProperName|ר,(Laos|) +ϰʽ N human|,able|,desired| +ϰ׸ɶ N drinks|Ʒ,$addict|Ⱥ +ϰ N human|,ordinary| +ϰ N human|,*employ|,commercial| +ϰ N human|,female|Ů,*employ|,commercial| +ϰ N human|,family| +ϱ N fund|ʽ +ϲ N human|,male| +ϲ N human|,rich|,desired| +ϳ N house|,#animal|,#alive| +ϳ N place|ط,crime| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ϴŮ N human|,female|Ů,^GetMarried|,aged| +ϴ ADJ aValue|ֵ,age|,aged| +ϴ ADV aValue|ֵ,degree|̶,very| +ϴ N human|,*drive|Ԧ,#ship| +ϴ N human|,family| +ϴ N human|,strong|ǿ,male| +ϴ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ϴ N human|,aged|,female|Ů +ϴ N human|,female|Ů +ϴү N human|,aged|,male| +ϴү N human|,male| +ϵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,#aged|,desired| +ϵ N human|,adult| +ϵ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ϸ N human|,family|,male|,aged| +Ϲ N human|,family|,male| +Ϲ N human|,aged|,male| +Ϲ N human|,family|,male| +ϹŶ N human|,undesired|ݬ,stubborn| +ϹŶ N implement|,generic|ͳ +Ϲ N regulation| +Ϻ N human|,aged|,male| +Ϻ N human|,indifferent|Į +Ϻ N beast|,aged| +Ϻ N human|,sly|,undesired|ݬ +ϻ N beast| +ϻƨ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϻǯ N tool|þ,*hold| +ϻ N disease|,#look|,#aged|,#eye| +ϻ V decline|˥ +ϻ N expression| +ϼ N place|ط,@ComeToWorld| +ϼ N part|,%AnimalHuman|,skin|Ƥ,#disease| +Ͻ N human|,desired|,able| +Ͻ N human| +Ͻ N human|,able|,desired| +Ͼ N phenomena|,#aged| +Ͼ N drinks|Ʒ,$addict|Ⱥ + N human|,mass| +ʵʵ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +ݺ V weep| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,aged|,mass| + N tree| + ADJ aValue|ֵ,#age|,aged| +· N facilities|ʩ,route|· + N human|,#occupation|ְλ,female|Ů,employee|Ա +ʶ; ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,age|,aged| +ı ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,family|,female|Ů,aged| + ADJ aValue|ֵ,age|,aged| +겡ѧ N knowledge|֪ʶ,#aged|,medical|ҽ +겡ѧ N human|,*cure|ҽ,medical|ҽ + N human|,aged| +ţƳ ADJ aValue|ֵ,speed|ٶ,slow| +ũ N human|,agricultural|ũ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,able|,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,aged|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,weak|,undesired|ݬ +ǰ N human|,family|,aged| + N human|,family| + N human|,family|,mass| + N place|ط,(China|й) + N human|,aged| + N human|,family|,aged| +˼ N human|,aged| +˼ N human|,family| + N celestial| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N human| + ADJ aValue|ֵ,age|,aged|,young| +ٱ N place|ط,undesired|ݬ +̸ N text|,boring|,undesired|ݬ +̸ N text|,ordinary| +ʦ N human|,*teach|,education| +ʦ N human|,able|,industrial| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted| +ʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʽ N attribute|,kind|,old|,&artifact|˹ + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,desired|,able| + N beast| +̫ N human|,aged|,female|Ů +̫̫ N human|,aged|,female|Ů +̫ү N human|,aged|,male| +̬ ADJ aValue|ֵ,age|,aged|,undesired|ݬ +̬ ADJ aValue|ֵ,bearing|̬,aged|,undesired|ݬ + N humanized| +ү N humanized| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,undesired|ݬ,stubborn| + N human|,#space|ռ,foreign| + N human|,undesired|ݬ,unable|ӹ + N human|,aged|,male| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Laos|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N human|,#reside|ס,village| +С N human|,family|,mass| +С N human|,mass| + N human|,family|,male| + N human|,male| +߳ŭ V angry| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ү N human| +ү N human|,family|,male| +ү N human|,undesired|ݬ,official| +үү N human|,aged|,male| +үү N human|,family|,male| +ү N human|,family|,male| +ү N human|,male| +һ N human|,aged| +һ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,sly|,undesired|ݬ + ADJ aValue|ֵ,age|,aged|,young| + ADJ aValue|ֵ,ability|,able|,desired| +ʸ N human|,desired|,able| + N human|,family|,male| + N human|,military|,past| + N human|,official|,military| + N human|,past| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird| + N human|,adult| + N human|,adult|,undesired|ݬ + N human|,aged|,female|Ů + N human|,family|,female|Ů +ү N human|,family|,male| + N food|ʳƷ + V cook| + V press|ѹ +ӱ N food|ʳƷ + N tool|þ,*AlterForm|״,#level|ƽ + N tool|þ,*fasten|˩,industrial| +ӡ N mark|־ +ӡ V record|¼ + ADJ aValue|ֵ,dampness|ʪ,waterlogging| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V carve| + V force|ǿ + V tighten|ս +ձ V force|ǿ +ս V tighten|ս + V force|ǿ + V rob| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + V laugh|Ц + N music| + V willing|Ը +ִ˲ƣ V FondOf|ϲ +ֶ N community|,#music| +ֹ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ֹ N attribute|,behavior|ֹ,optimistic|ֹ,&human|,organization|֯ +ֹ N human|,optimistic|ֹ +ֺǺ V joyful|ϲ + N publications|鿯,@record|¼,#music| + N MusicTool| + N music| +Ȥ N emotion|,joyful|ϲ,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#joyful|ϲ +̳ N community|,#music| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,happy|,#lucky| + N community|,#music| + N shows| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V willing|Ը + N sound|,#music| +԰ N place|ط,happy|,#lucky| + N part|,%music| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N thunder| + N weapon| +״ N facilities|ʩ,*check| +״Ա N human|,military| +״վ N facilities|ʩ,*check| +״򲻶 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +״򲻶 ADJ aValue|ֵ,will|־,strong|ǿ,desired| +׵ N thunder| +׶ ADJ aValue|ֵ,SoundVolume|,loud| +׹ N humanized|,#thunder| +׹ N weapon| +׻ V damage|,agent=thunder| +׿δ N place|ط,capital|,ProperName|ר,(Iceland|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V WeatherBad| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound|,#thunder| +ͬ V BeSimilar| + N RainSnow|ѩ,#thunder| + N RainSnow|ѩ,#thunder| + N attribute|,strength|,strong|ǿ,desired|,&physical| + N emotion|,angry|,undesired|ݬ + N thunder| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N metal| + N part|,%FlowerGrass|,embryo| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V endeavour| + V gather|ɼ + V pile|ѷ + V tired|ƣ +۴ ADV aValue|ֵ,frequency|Ƶ,often| +ۻ V gather|ɼ +ۼ V relate|й +ۼ V AmountTo|ܼ +ۼ N quantity|,amount|,$AmountTo|ܼ,&physical| +ۼΪ V AmountTo|ܼ +ۼ ADJ aValue|ֵ,kind|,ordinary| +۽̲ ADJ refuse|,content=amend| +۽ V BecomeMore| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V tired|ƣ +¾ ADJ aValue|ֵ,duration|,TimeLong| +׸ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ + V build| + N SportTool|˶ + V beat| +̨ N facilities|ʩ,space|ռ,@compete| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,bone| +߹ N part|,%AnimalHuman|,bone| +߼伡 N part|,%AnimalHuman|,flesh| +Ĥ N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + V CompareTo| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ʪԹؽ N disease| + V BeSimilar| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| + V BeSimilar| +ͬ V BeSimilar| + V deduce| + N celestial| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ѧ N knowledge|֪ʶ + N part|,%AnimalHuman|,liquid|Һ + N trace|,#weep| +Ứ N part|,%AnimalHuman|,liquid|Һ,#eye| +˶ N human|,*weep| + V weep| +ˮ N part|,%AnimalHuman|,liquid|Һ + V weep| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,#eye| +Һ N part|,%AnimalHuman|,liquid|Һ +ӯӯ V weep| + N part|,%AnimalHuman|,liquid|Һ + N part|,%inanimate|,edge| + N image|ͼ,angular| + N part|,%inanimate|,edge| +⾵ N tool|þ + N image|ͼ,cubic| +׶̨ N image|ͼ,cubic| + N part|,%inanimate|,edge| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר + V cool| + V perception|֪,content=cold| + N phenomena|,undesired|ݬ,$IllTreat| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| +䲻 ADJ aValue|ֵ,behavior|ֹ,sudden| +䲼 N material|,?clothing| + V store|,#cold| +䳰ȷ V satirize| +䴲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +䵭 V IllTreat| +䵭 ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +䵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +䵭 V despise| + N food|ʳƷ +䶳 V cool| + N information|Ϣ,wrong|,undesired|ݬ + N wind|,cold| + V cure|ҽ,means=cool|,medical|ҽ +乬 N house|,undesired|ݬ + N lights| +亸 V fasten|˩,industrial| +亹 N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N artifact|˹,commercial|,generic|ͳ +侲 V calm| + ADJ aValue|ֵ,behavior|ֹ,strict| + N gas|,cold| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@store| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V IllTreat| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +í V fasten|˩,industrial| + ADJ aValue|ֵ,kind|,queer| + N affairs|,undesired|ݬ + N human|,*win|ʤ,sudden| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V cool| +ů N attribute|,circumstances|,&human| +ů N attribute|,temperature|¶,&weather| + N food|ʳƷ +Ƨ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N facilities|ʩ,*cool| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ȴ V cool| +ȴ N tool|þ,cool| +ɼ N tree| +ʳ N edible|ʳ,cold| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,cold| +Ц V LaughAt|Ц +Ѫ N AnimalHuman|,generic|ͳ +Ѫ N human|,fierce| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N text|,*satirize|,*IllTreat|,undesired|ݬ + N phenomena|,undesired|ݬ,#IllTreat| + N drinks|Ʒ,cold| + N phenomena|,undesired|ݬ,#IllTreat| + V press|ѹ,industrial| +ս V fight| + ADJ aValue|ֵ,temperature|¶,cold| + CLAS unit|λ,&money|,$earn|׬ + CLAS unit|λ,&money|,(China|й) +嶨 V decide| + CLAS unit|λ,&length| + V amend| + N fruit|ˮ + N drinks|Ʒ + N tree| +԰ N community|,#music|,entertainment| + N fruit|ˮ + V engage|,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + V engage|,agricultural|ũ +ͷ N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Lebanon|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lebanon|) + N place|ط,country|,ProperName|ר,(Asia|) +۰ N money|,(Lebanon|) + N human|,(Lebanon|) + N human|,ordinary|,mass| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + N community|,ProperName|ר,(China|й) + N fittings|,%building| + N fittings|,%building| + N beast| +è N beast| + V from| + V leave|뿪 + V farewell| + V leave|뿪 +벻 V BeUnable|,content=leave|뿪 + V leave|뿪,LocationIni=community| + N part|,%machine| + V separate| +鸾Ů N human|,female|Ů,*separate|,#GetMarried| + V leave|뿪,LocationIni=family| + V separate| +뾭ѵ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +뾭ѵ V betray| +뾳 V leave|뿪,LocationIni=place|ط +뿪 V leave|뿪 +˻ N human|,*separate|,#GetMarried| + V FitNot| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ȥ V leave|뿪 +Ⱥ V MakeLiving|ı,manner=lonely| + V cease|ͣ,content=undertake| +ɢ ADJ aValue|ֵ,attachment| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ + ADJ aValue|ֵ,content|,unattached|ɢ + V cease|ͣ,content=undertake| + ADJ aValue|ֵ,performance|,#software| + V leave|뿪,LocationIni=family| + V FitNot| + ADJ aValue|ֵ,property| +ı N tool|þ,*separate| +Ļ N tool|þ,*separate| + N attribute|,strength|,#separate|,&thing| + V cease|ͣ,content=undertake| + V separate| +ְ V cease|ͣ,content=undertake| + N part|,%physical| + V PutInOrder| + V ShowInterest| + V handle| + N knowledge|֪ʶ + V manage| + N reason| + V manage|,patient=wealth|Ǯ,commercial| + V ShowInterest| + AUX {modality|} + V MakeUp|ױ,scope=hair|ë +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#hair|ë + AUX {modality|} + N knowledge|֪ʶ + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| + N knowledge|֪ʶ + V PayAttention|ע + V ShowInterest| + V understand| + V transport| + V understand| + N attribute|,ability|,#understand|,&AnimalHuman| + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N method|,*cure|ҽ +ʦ N method|,*cure|ҽ + V debate| + N knowledge|֪ʶ +ۼ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment| + N thinking|˼ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N human|,*manage| +³ N human|,*manage| +¹ N institution|,*manage|,(UN|Ϲ) +» N institution|,*manage| +˳ V PutInOrder| +Ȼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N aspiration|Ը,expect| +뻯 ADJ aValue|ֵ,GoodBad|û,good|,desired| +뻯 ADJ aValue|ֵ,content| + N human| + ADJ aValue|ֵ,property| + N attribute|,ability|,control|,&human| +ʶ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧʿ N human|,literature| +Ӧ AUX {modality|} + N reason| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֱ׳ V FeelNoQualms| + N attribute|,ability|,control|,&human| + N character|,surname|,human|,ProperName|ר + N fruit|ˮ +ҽ V replace| +ǻ N human|,official|,politics|,ProperName|ר,(China|й) + N fruit|ˮ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| + N part|,%inanimate|,generic|ͳ + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + CLAS unit|λ,&length| +ﰺ N place|ط,city|,ProperName|ר,(France|) + N location|λ,internal| + N attribute|,distance|,AlterLocation|ռλ + N process| +̱ N mark|־ + N part|,%tool|þ,viscera|,#LandVehicle| +ﺣ N waters|ˮ,ProperName|ר +Y N part|,%AnimalHuman|,#body| + N money|,(Italy|) + N money|,(San Marino|ʥŵ) + CLAS unit|λ,&money|,(Italy|) + N money|,(Swaziland|˹ʿ) + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| +Ū N facilities|ʩ,space|ռ,@reside|ס + N human|,able|,desired| +˹ N place|ط,capital|,ProperName|ר,(Portugal|) +ͨ V betray| +ͷ ADJ aValue|ֵ,location|λ,internal| +ͷ N location|λ,internal| + N room| + N part|,%MusicTool| +Ƕ N money|,(Iran|) +Ӧ V help| +Լ¬ N place|ط,city|,ProperName|ר,(Brazil|) + N fish| + N fish| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N fact| + N tool|þ,$GiveAsGift| + N fact|,religion|ڽ + N time|ʱ,week| + N time|ʱ,week|,day| +ݶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N InstitutePlace|,religion|ڽ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| +˾ N part|,%institution|,*manage|,#diplomatic|⽻ + N clothing| + N tool|þ,*recreation|,*congratulate|ף + N regulation| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N money|,$GiveAsGift| +ñ N clothing|,#head|ͷ +ò N attribute|,behavior|ֹ,gracious|,desired|,&human| + N tool|þ,*salute|¾,*congratulate|ף +Ʒ N tool|þ,$GiveAsGift| + V refuse|,manner=modest|ǫ + V associate|,manner=equal| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N room| + N tool|þ,$GiveAsGift| + N fact| + N fact|,WellTreat|ƴ + V praise|佱 + N character|,(China|й) + N character|,(China|й) +֦ N fruit|ˮ +֦ N tree| + N human|,#occupation|ְλ,official| + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N fruit|ˮ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| + N attribute|,prettiness|,beautiful|,&human| + ADJ aValue|ֵ,behavior|ֹ,strict| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,SoundVolume|,strict| +нԼ V economize|ʡ + V mobilize| +ͼ V endeavour| + N stone|ʯ,material| +ʯ N stone|ʯ,material| + N stone|ʯ + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,time|ʱ,past|,all|ȫ + V undergo| + N process| + ADJ aValue|ֵ,time|ʱ,past| + N time|ʱ,past| + N system|ƶ,*calculate|,#time|ʱ + ADJ aValue|ֵ,time|ʱ,past| + V undergo| + V undergo| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + N time|ʱ,year|,past| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V undertake| +ʱ V spend| +ʷ N fact|,#time|ʱ +ʷ N InstitutePlace|,@display|չʾ,#past| +ʷ N standpoint| +ʷ N shows| +ʷʹ N affairs|,#dispatch|Dz +ʷΨ N knowledge|֪ʶ +ʷС˵ N publications|鿯 +ʷ ADJ aValue|ֵ,value|ֵ,important| +ʷѧ N human|,#knowledge|֪ʶ + V quote| + V undergo|,content=dangerous|Σ + ADJ aValue|ֵ,form|״,sharp| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + V benefit| + N character|,surname|,human|,ProperName|ר + N fund|ʽ,$earn|׬,commercial| + N money|,(Sierra Leone|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Liberia|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Liberia|) +Ԫ N money|,(Liberia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Libya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǵɶ N money|,(Libya|) + N attribute|,ProsCons|,&event|¼ +ά N place|ط,capital|,ProperName|ר,(Gabon|) +˰ V alter|ı,StateIni=payment|,StateFin=expenditure| + V benefit|,patient=country| + V benefit|,patient=country| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,ProsCons|,&event|¼ + V benefit|,patient=self| + N thinking|˼,benefit|,#self| + N weapon|,*stab| +ǻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +¡ N place|ط,capital|,ProperName|ר,(Malawi|) + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| + N place|ط,capital|,ProperName|ר,(Peru|³) + V benefit|,patient=community| + V urge|ʹ,ResultEvent=excrete|й,medical|ҽ + N medicine|ҩ,*urge|ʹ,#excrete|й + N implement|,good| + N weapon|,sharp| +Ǯ N fund|ʽ,$earn|׬,commercial| + N wealth|Ǯ,desired|,$earn|׬ + V SetAside|,patient=wealth|Ǯ,commercial| + N quantity|,rate|,&payment|,commercial| +˰ N wealth|Ǯ,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| +Ϣ N wealth|Ǯ,desired|,$earn|׬ +ŵ N place|ط,capital|,ProperName|ר,(Saudi Arabia|ɳذ) + N attribute|,effect|Ч,&act|ж +մ N payment|,$gather|ɼ + V use| + N quantity|,rate|,&use| + V entice| + V benefit| +Ѭ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N example|ʵ + N fact|,discuss| + N time|ʱ,@rest|Ϣ + ADV {supplement|ݽ} + N attribute|,kind|,special|,&event|¼ + ADJ aValue|ֵ,kind|,ordinary| +й ADJ aValue|ֵ,kind|,ordinary| +֤ N example|ʵ + N example|ʵ + N character|,(China|й) + N disease| + N disease| + V CauseToBe|ʹ֮ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,posture|,straight|ֱ + V compile|༭ + V establish| + V put|,result=stand|վ + V stand|վ + V record|¼ + V record|¼,police| + N standpoint| + N time|ʱ,day|,spring| + ADV aValue|ֵ,location|λ,special| + V CeaseSelfMove|ֹ + N time|ʱ,day|,winter| + ADJ aValue|ֵ,performance|,*forming|γ,#law|ɷ,politics| + V forming|γ,patient=law|ɷ,politics| + N institution|,*forming|γ,#law|ɷ,politics| +Ȩ N rights|Ȩ,*forming|γ,#law|ɷ,politics| + N human|,*forming|γ,#law|ɷ + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| + CLAS unit|λ,&bulk| + ADJ aValue|ֵ,form|״,cubic| +ͼӰ V succeed|ɹ +ͼӰ ADJ succeed|ɹ + V establish|,PatientProduct=result|,desired| + N furniture|Ҿ,cubic|,@put| + V establish|,patient=country|,politics| +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + V establish|,content=account|,commercial| + V record|¼,content=family| + ADJ aValue|ֵ,duration|,TimeShort| + N attribute|,form|״,cubic|,&building| + N facilities|ʩ,route|· + ADV aValue|ֵ,duration|,TimeShort| + V explain|˵,content=standpoint| + N standpoint| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ,day|,autumn| +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʽ ADJ aValue|ֵ,posture|,straight|ֱ + V swear| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lithuania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| +彻 N attribute|,form|״,cubic|,&building| + N sound| + N time|ʱ,day|,summer| + V establish|,patient=law|ɷ + N system|ƶ,official| + V ExpressAgreement|ʾͬ + V create|,PatientProduct=new| + V compile|༭ +ҵ V start|ʼ,content=affairs| + V decide| + N thinking|˼ + V stand|վ +־ V decide| + N artifact|˹,#image|ͼ,literature| + N part|,%machine| + N part|,%building|,bone| +׶֮ N place|ط,small|С + V BaseOn| + V situated| + N standpoint| + CLAS NounUnit|,&inanimate| + N shape| + N material|,*feed|ι,#crop|ׯ +ѡ V choose|ѡ +ѩ N RainSnow|ѩ +״ ADJ aValue|ֵ,form|״,round|Բ + N part|,%physical| + N part|,%physical| + V fall| + N material|,*build| +ˮ N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + V BeMember| + N attribute|,kind|,&character|,&symbol| + V BeMember| + V BeMember| + N attribute|,ability|,&physical| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&physical| + V endeavour| + V BeUnable| + N space|ռ,#strength| + V fulfil|ʵ,manner=endeavour| + V defeat|սʤ,manner=endeavour| + N attribute|,intensity|ǿ,&event|¼ + V obstruct|ֹ + N attribute|,strength|,&physical| + V defeat|սʤ,manner=endeavour| + N attribute|,strength|,&entity|ʵ + V defeat|սʤ + N attribute|,strength|,&human| + N attribute|,strength|,&physical| + V endeavour| +ʿ N human|,strong|ǿ +ܼ V BeAble|ܹ +ͼ V endeavour| + V amend|,content=wrong| + N livestock| +ѧ N knowledge|֪ʶ + V debate| + V seek|ıȡ + V endorse|ӵ + N artifact|˹,good|,desired| + CLAS unit|λ,&length| + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V aValue|ֵ,content|,unattached|ɢ,#speak|˵,undesired|ݬ + N human|,mass| + N human|,mass| + N human|,mass| + V ally| + N text| + V engage|,manner=together|ͬ + N community| +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N institution|,#police|,ProperName|ר,politics|,(US|) + N institution|,#place|ط,politics| + N system|ƶ +ӵ N human| + V disseminate|,manner=ally| + N system|ƶ +а N system|ƶ + N part|,%institution|,politics|,(institution|=UN|Ϲ) + N community|,compete|,sport| + N part|,%army|,#sky| + N fact|,defend| + V ally| +Ϲ N institution|,ProperName|ר,#country| +Ϲ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲѧ N part|,%institution|,education|,(institution|=UN|Ϲ) +Ϲͯ N part|,%institution|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲҵչ֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲ滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) +Ϲ̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +ϹѧĻ֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +Ϲƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲʳũҵ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ϲó׺ͷչ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +Ϲ߼רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲ˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲر N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲ N law|ɷ,ProperName|ר,(UN|Ϲ) +Ϲѵо N part|,%institution|,politics|,(institution|=UN|Ϲ) +ϻ N community| +ո N LandVehicle|,*collect|,agricultural|ũ + N community| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + V recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,discuss| + V relate|й,partner=computer| + V connect| + V ally| + V connect| + N army| + V associate| +紦 N institution|,diplomatic|⽻ +Ա N human|,*transport|,#information|Ϣ +վ N institution|,diplomatic|⽻ + V ally| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + N fact|,compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V connect| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + V connect| +ϯ N fact|,discuss| +ϵ V associate| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N human|,*transport|,#information|Ϣ + V connect|,#mental| + V sell|,manner=together|ͬ + V associate| + N fact|,recreation| + V ally|,means=GetMarried| +Ӫ N fact|,together|ͬ,commercial| +Ӫҵ N InstitutePlace|,commercial|,industrial| + V transport|,manner=ally| +չ N fact|,display|չʾ,together|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N FlowerGrass| + N FlowerGrass| +ź N FlowerGrass| + N part|,%FlowerGrass|,embryo| +̨ N furniture|Ҿ,#humanized|,religion|ڽ + N part|,%FlowerGrass|,$eat|,embryo| + N furniture|Ҿ,#humanized|,religion|ڽ + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N character|,surname|,human|,ProperName|ר + V connect| + V contain| + N part|,%army| + ADV {emphasis|ǿ} + N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,property|,$relate|й + N part|,%army|,military| + V firing| + N symbol|,#quantity|,#DoSum| + N part|,%implement| + N facilities|ʩ,#waters|ˮ + N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| + ADJ connect| + V connect| + ADJ attribute|,similarity|ͬ,alike|,&entity|ʵ + V destroy| + N tool|þ,$fasten|˩ + N publications|鿯,#image|ͼ + V connect| + N thing|,*connect| +Ӵ N part|,%language| +Ӵ ADJ part|,%language| + N thing|,*connect| + V connect| + N human|,family|,mass| + N clothing|,#leg| + V relate|й + ADV aValue|ֵ,frequency|Ƶ,often| +æ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,continuous| +಻ ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| +Ƥ ADJ aValue|ֵ,kind| +ƪ ADJ aValue|ֵ,range|,all|ȫ +ƪ ADJ qValue|ֵ,amount|,many| +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ +Ƭ V connect| + N medicine|ҩ,(China|й) + V undertake|,manner=GoOn| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,frequency|Ƶ,often| + V connect| + N InstitutePlace|,*sell|,@buy|,commercial| +Ӧ N fact|,respond|Ӧ,continuous| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + ADJ aValue|ֵ,area|,wide| +ͨ V connect| +ͬ PREP {partner} + V connect| + ADJ aValue|ֵ,property|,$connect| +д V write|д,manner=connect| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N shows| + N attribute|,behavior|ֹ,continuous|,&event|¼ +ѡ V undertake|,manner=GoOn| +ҹ N time|ʱ,day|,night| +ȹ N clothing| +ȹ N clothing|,#leg| + V use|,manner=GoOn| +Ƹ N place|ط,city|,ProperName|ר,(China|й) + V publish| +ս N part|,%army| +սԱ V defeated| +ת V endeavour|,duration=morning|,duration=night| + ADJ aValue|ֵ,behavior|ֹ,continuous| +׺ V connect| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ɿ N clothing|,#leg| +޺ N part|,%human|,hair|ë + N tool|þ,*collect|,#crop|ׯ + N tool|þ,*collect|,#crop|ׯ + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,price|۸,cheap|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N institution|,politics|,honest| + V establish|,PatientProduct=institution|,politics|,honest| + V pity| + V like|ϧ + V pity| +ϧ V pity| + N character|,(China|й) + N water|ˮ + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,mark|־,commercial| + N material|,?tool|þ +Ļ N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ +Ӳ N material|,?tool|þ + V levy| + V restrain|ֹ + V levy|,possession=wealth|Ǯ + V hide| + N attribute|,countenance|,&AnimalHuman| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + V excited| +첱Ӵ V angry| + N part|,%AnimalHuman|,skin|Ƥ + N attribute|,reputation|,glorious|,desired|,&human| + N part|,%AnimalHuman|,skin|Ƥ +̶ N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N tool|þ,cubic|,@put|,*wash|ϴ + N tool|þ,*perform|,#shows| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N tool|þ,linear|,*fasten|˩ + N part|,%machine| +ù N medicine|ҩ + N SportTool|˶ + N bacteria|΢ + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V FondOf|ϲ + V love| + V FondOf|ϲ + N emotion|,love| + N human|,friend|,*love|,desired| + V burn|,industrial| + V refine|,industrial| + V produce|,PatientProduct=medicine|ҩ + V refine|,patient=metal|,industrial| +ֳ N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V burn|,industrial| + N drinks|Ʒ + V refine|,patient=metal|,industrial| + N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V produce|,industrial| + V produce|,material|,#edible|ʳ +ͳ N InstitutePlace|,@produce|,factory|,industrial| + V refine|,industrial| + ADJ aValue|ֵ,ability|,able|,desired| + V drill|ϰ + V drill|ϰ,military| + N material|,?clothing| + V drill|ϰ,military| + ADJ aValue|ֵ,ability|,able|,desired| + V exercise| + V exercise|,obtain|õ +ȵ N bird| +ϰ V drill|ϰ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ + N food|ʳƷ,military| + N InstitutePlace|,*sell|,@buy|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N facilities|ʩ,space|ռ,@put|,@store| + N material|,?edible|ʳ,?clothing| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ũ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ʊ N coupon|Ʊ֤,#edible|ʳ +ʳ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ʳ N crop|ׯ,?edible|ʳ + N material|,?edible|ʳ +վ N facilities|ʩ,provide|,#material|,#edible|ʳ + N food|ʳƷ,military| + ADJ aValue|ֵ,temperature|¶,chilly| + V change|,StateFin=chilly| + V cool| + V disheartened| + V perception|֪,content=cold| + V cook| + ADJ aValue|ֵ,temperature|¶,chilly| +˿ ADJ aValue|ֵ,temperature|¶,chilly|,desired| + N food|ʳƷ + N food|ʳƷ + N wind|,chilly| + ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ñ N clothing|,#head|ͷ + N food|ʳƷ + N house|,@cool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,chilly| +̨ N part|,%house|,space|ռ +ͤ N facilities|ʩ,space|ռ +ϯ N tool|þ,@LieDown| +Ь N clothing|,#foot| + N attribute|,temperature|¶,chilly|,&space|ռ + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,#waters|ˮ + N part|,%building|,bone| + N part|,%inanimate|,%space|ռ,edge| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N plans|滮,good| + N medicine|ҩ,good| + N plans|滮,good| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N time|ʱ,important|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ʦ N human|,*teach|,good| +̬ V BeGood|̬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N time|ʱ,night|,happy| + N emotion| +ķ V understand|,content=crime| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| +ҩ N medicine|ҩ,good| +Ե N attribute|,relatedness|,intimate|,#GetMarried|,&human| +֪ N experience| + ADJ aValue|ֵ,kind|,superior| +ݬ ADJ aValue|ֵ,content|,mixed| + NUM qValue|ֵ,amount|,cardinal| + ADJ qValue|ֵ,amount|,double| + ADJ qValue|ֵ,amount|,some|Щ + CLAS unit|λ,&weight| + N place|ط,#waters|ˮ +ܾ V defeated| + N direction|,mass| + N part|,%entity|ʵ,mass|,aspect| + N part|,%physical|,edge| + N part|,%physical|,head|ͷ,tail|β + N mental|,physical| + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N fact|,differ|ͬ + N attribute|,contrariness|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β +ֻ V ize|̬ +Ź N tool|þ,*measure| + N human|,family|,mass| + N fact|,differ|ͬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V embarrassed|Ϊ +һ ADJ aValue|ֵ,frequency|Ƶ + N part|,%physical|,edge| + ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ܲ N army|,*fight|,#land|½,#waters|ˮ,military| +ܶ N animal|,*alive|,#land|½,#waters|ˮ +ս N fact|,fight|,#land|½,#waters|ˮ,military| +ȫ ADJ aValue|ֵ,range|,all|ȫ,desired| +ȫ V fulfil|ʵ +Ϊ V lucky| + N method| +ͷ N part|,%entity|ʵ,aspect| +ͷ N part|,%entity|ʵ,mass|,aspect| + N part|,%entity|ʵ,mass|,aspect| +Ը V willing|Ը,manner=EachOther|໥ + N part|,%physical|,head|ͷ,tail|β + N room| +С޲ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N attribute|,sex|Ա,male|,female|Ů,&animate| +Թϵ N attribute|,relatedness|,#mating|,&animate| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + ADJ aValue|ֵ,ability| + N part|,%human|,mass|,aspect| + ADJ qValue|ֵ,amount|,double| + N attribute|,property|,double|,&entity|ʵ + N part|,%human|,head|ͷ +ް߰ ADJ aValue|ֵ,age|,aged| +޲Բ ADJ aValue|ֵ,age|,aged| + CLAS NounUnit|,&LandVehicle| + CLAS unit|λ,&LandVehicle| + V measure| + N quantity|,amount|,&entity|ʵ + N quantity|,amount|,&inanimate| + N tool|þ,*measure| + V QuantityChange| + N fact|,change| + N tool|þ,*measure| + N part|,%language| + N attribute|,measurement|,&physical| + V ize|̬ + N quantity|,amount|,&physical| + N tool|þ,*measure| + N tool|þ,*measure| + V do|,manner=proper| + V do|,manner=proper| +ƿ N tool|þ,*measure| +Ϊ V do|,manner=proper| + ADJ aValue|ֵ,kind|,special| + V do|,manner=proper| + N measure|,content=temperature|¶ + V estimate|,content=punish|,police| +Ѫѹ N measure|,content=strength| +ֵ N quantity|,amount|,&physical| + N part|,%physical| + V dry| + V dry| +ɹ V dry| + ADJ aValue|ֵ,brightness|,bright| + N attribute|,quality|,strong|ǿ,desired|,&thing| + N attribute|,brightness|,&physical| + N lights| + N lights| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V appear| + V forgive|ԭ + V understand| +½ V forgive|ԭ +½ V understand| + V incite|ָʹ + V lift| + V spray| + V tease|ȡ +ò V incite|ָʹ +ò V tease|ȡ +ÿ V lift| + V lift| + V talk|̸ + V talk|̸ + V talk|̸ + V talk|̸ +ο V AtEase| +Ż N weapon|,aircraft|,military| + N human|,employee|Ա + N human|,friend| + V cure|ҽ +Ƴ N process|,#cure|ҽ,#disease| +Ʒ N method|,*cure|ҽ,#disease| +Ч N attribute|,effect|Ч,&cure|ҽ,medical|ҽ + V maintain| +Ժ N InstitutePlace|,@maintain|,medical|ҽ + V burn| +ԭ V burn|,patient=land|½ +ԭ֮ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,few| +޼ ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,distance|,far|Զ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ɶ N place|ط,ProperName|ר,(China|й) +ɶ뵺 N land|½,#waters|ˮ,ProperName|ר,(China|й) +ɺ N waters|ˮ,linear|,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) +Զ ADJ aValue|ֵ,distance|,far|Զ +ʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʲ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ʵ V decline|˥ + V finish| + V know|֪ + STRU {MaChinese|} +˲ ADJ aValue|ֵ,circumstances|,urgent| +˲ ADJ aValue|ֵ,kind|,special| +˲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˲ ADJ aValue|ֵ,kind|,special| +˵ N expression|,*surprise| +˽ V finish| +˽ V fulfil|ʵ +˽ V know|֪ +˽⵽ V know|֪ +˾ V finish| +˾ N process|,ending|ĩ + V know|֪ +ȴ V fulfil|ʵ +ָ V know|֪ + V finish| + V look| + V MoveItDown| + V defeat|սʤ + V put| +̵ V defeat|սʤ +̻ V damage|,agricultural|ũ + V put| + N tool|þ,police|,*detain|ס,#crime| + N tool|þ,police|,*detain|ס,#crime| + N character|,surname|,human|,ProperName|ר + N attribute|,quality|,&human| + N food|ʳƷ,*feed|ι,#animal| + N material| + V predict|Ԥ +ϵ V predict|Ԥ +ϼ V predict|Ԥ +Ͼ N material|,liquid|Һ,?food|ʳƷ,$drink| + V arrange| + V cook| + N edible|ʳ + V handle| + N tool|þ,generic|ͳ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V predict|Ԥ + N material|,?clothing|,?tool|þ + V PutInOrder| + V include| + V quote| +б N human|,#occupation|ְλ,military| +г N LandVehicle| +г N human|,#occupation|ְλ,official|,#LandVehicle| +гԱ N human|,#occupation|ְλ,employee|Ա,#LandVehicle| +е N FlowerGrass|,?medicine|ҩ +е N land|½,mass| +ж V PutInOrder| +и N money|,(Bulgaria|) +й N place|ط,country|,mass| +о V quote| +п N money|,(Albania|) + N human|,official|,politics|,ProperName|ר,(Russia|˹) +ǿ N place|ط,country|,mass|,past| +ϯ V engage| + N money|,(Romania|) +֧ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,past| + V FormChange|α +ѱ V change| +ѷ N trace|,#FormChange|α +Ѻ N trace|,#FormChange|α +ѻ V FormChange|α +ѽ V FormChange|α +ѿ V FormChange|α +ѿ V FormChange|α +ѿ N location|λ,#OutOfOrder| + N trace|,#FormChange|α +϶ N trace|,#FormChange|α + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ҷ N attribute|,intensity|ǿ,&shiver|,#land|½ +һ N fire|,strong|ǿ +Ҿ N human|,family| +Ҿ N human|,family|,#military| + N celestial|,hot| +ʿ N human|,*die|,desired| + N human|,family|,#die| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fire| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ӵ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ӽ N result|,undesired|ݬ,#crime| + N livestock|,useless|,undesired|ݬ + N human|,undesired|ݬ + N attribute|,circumstances|,bad|,&human|,&organization|֯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,bad|,undesired|ݬ + V catch|׽ס +Բ V catch|׽ס +Թ N livestock|,*catch|׽ס,#beast| +Ի N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +Ի V obtain|õ + N human|,*catch|׽ס,#beast|,agricultural|ũ + V seek|ıȡ,possession=new| +ǹ N weapon|,*firing| +ȡ V catch|׽ס +ȡ V seek|ıȡ + N human|,#occupation|ְλ,*catch|׽ס,#beast|,agricultural|ũ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ɱ V catch|׽ס,kill|ɱ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ͷ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + N AnimalHuman|,$catch|׽ס + N bird| + N character|,(China|й) +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N affairs|,planting|ֲ,tree|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N community| + N tree| +ֲ N artifact|˹,#tree| +ֲƷ N artifact|˹,#tree| +ֳ N place|ط,@planting|ֲ,#tree| +ִ N place|ط,#tree| +ֵ N land|½,#tree| +ֺ N tree| +ּ N money|,(Malaysia|) +ּ N language|,#country|,ProperName|ר +ֿ N human|,official|,ProperName|ר,(US|) + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ľ N tree| +ũ N human|,#occupation|ְλ,*planting|ֲ,#tree|,agricultural|ũ + N place|ط,@planting|ֲ,#tree| + N sound|,#tree| + N place|ط,#tree| +Ա N human|,#occupation|ְλ,*manage|,#tree| +ҵ N affairs|,planting|ֲ,tree|,agricultural|ũ +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| + N facilities|ʩ,route|· +о N human|,*reside|ס + N tree| + N chemical|ѧ +׷ N material|,*feed|ι,#crop|ׯ +׹ N lights| +׻ N fire| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +֬ N chemical|ѧ + N RainSnow|ѩ,strong|ǿ + N RainSnow|ѩ,strong|ǿ + V BeNear| + ADV aValue|ֵ,time|ʱ,future| + V arrive| + V facing| + PREP {time|ʱ} +ٱ V farewell| +ٲ V labour|ٲ +ٳ ADJ aValue|ֵ,location|λ,special| +ٳ ADJ aValue|ֵ,time|ʱ,special| +ٴ ADJ aValue|ֵ,property|,#cure|ҽ,medical|ҽ +ٴҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ٵ V undergo| +ٵ PREP {time} +ٺ V BeNear|,partner=waters|ˮ +ٺ V BeNear|,partner=waters|ˮ +ٽ V BeNear|,partner=waters|ˮ +ٽ V facing|,partner=route|· +ٽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ٽ V BeNear| +ٿʾ V slack|͵ + ADJ aValue|ֵ,time|ʱ,#facing|,#mouth|,sport| + V arrive|,LocationFin=house| +ġ V imitate|ģ + V labour|ٲ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ V slack|͵ +ʱ N human|,military| +ʱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʱ N human|,#occupation|ְλ,employee|Ա,TimeShort| +ʱ N attribute|,duration|,TimeShort|,&entity|ʵ +˯ ADJ aValue|ֵ,time|ʱ,#BeNear|,#sleep|˯ + N time|ʱ,@BeNear|,#die| +ͷ V happen| +Σ V BeNear|,partner=die| +Σ ADJ aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V facing|,partner=dangerous|Σ,manner=^fear| + ADJ aValue|ֵ,time|ʱ,#BeNear|,#leave|뿪 + N place|ط,city|,ProperName|ר,(China|й) +ս ADJ aValue|ֵ,time|ʱ,#BeNear|,#fight| +ĥǹ V slack|͵ + V flee| + ADJ aValue|ֵ,time|ʱ,#BeNear|,partner=die| + ADJ aValue|ֵ,distance|,near| +ڰ N place|ط,country|,*BeNear| +ڴ N place|ط,village|,*BeNear| +ڹ N place|ط,country|,*BeNear| +ڼ N human|,*BeNear|,#reside|ס +ڽ N image|ͼ,angular| +ڽ V BeNear| +ڽ ADJ aValue|ֵ,distance|,near| +ڽ V BeNear| +ڽ N location|λ,near| +ھ N human|,*BeNear|,#reside|ס +ھ N human|,*reside|ס,near| +ھӼ N human|,*BeNear|,#reside|ס + N human|,#reside|ס,near| + N place|ط,#reside|ס + N human|,*reside|ס,near| + N human|,#reside|ס,near| + N part|,%fish|,skin|Ƥ +۴α ADJ qValue|ֵ,amount|,many| +ۼ N part|,%fish|,skin|Ƥ +۾ N part|,%plant|ֲ,body| +Ƭ N part|,%fish|,skin|Ƥ +צ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +צ N part|,%fish|,skin|Ƥ +צ N part|,%thing|,secondary| + V filter| + V spray| +ܰ N part|,%AnimalHuman|,liquid|Һ +ܰͽ N part|,%AnimalHuman|,nerve| +ܰϸ N part|,%animate| +ܲ N disease| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +쾡 ADJ aValue|ֵ,content|,detailed|,desired| +ϴ V wash|ϴ +ԡ V wash|ϴ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + V borrow| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ϧ V grudge| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +Ĺ N human|,miser|,undesired|ݬ + V pick|ʰ + V pick|ʰ,Vgoingon|չ + N character|,(China|й) + N character|,name|,human|,ProperName|ר + N sound| + ADJ aValue|ֵ,quality|,refined|,desired| + N part|,%plant|ֲ,embryo| + N part|,%plant|ֲ,embryo| + N image|ͼ,cubic| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + N inanimate| + NUM qValue|ֵ,amount|,cardinal| + N symbol|,sport| +㲿 N part|,%implement| + N quantity|,amount|,&unit|λ,#temperature|¶ +㹤 N affairs|,industrial| +㹤 N human|,#occupation|ְλ,employee|Ա +㻨Ǯ N money| + N part|,%implement| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + V sell| + N part|,%implement| +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,importance|,secondary| +߰ N inanimate|,secondary| +Ǯ N money| +ɢ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʳ N edible|ʳ + V sell| +۵ N InstitutePlace|,*sell|,@buy|,commercial| +۶ N quantity|,amount|,&sell|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +ҵ N affairs|,commercial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ inanimate|,secondary| +ͷ ADJ inanimate|,secondary| +ͷ N part|,%physical|,*surplus|ʣ + N quantity|,amount|,&unit|λ,#temperature|¶ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ǯ N money| + N edible|ʳ + N attribute|,age|,&animate| + N attribute|,duration|,&entity|ʵ + N part|,%plant|ֲ,embryo| + N tool|þ,*MakeSound| + N tool|þ,*MakeSound| + N human|,#occupation|ְλ,entertainment| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N beast| + N beast| + N character|,surname|,human|,ProperName|ר + V damage| + V rise| +賿 N time|ʱ,morning| + V punish| + V surpass|ǿ + V surpass|ǿ + V rise| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ű V damage| + V damage| + N FlowerGrass| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N tool|þ,cubic|,@store|,#human|,#die| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +鳵 N LandVehicle|,*transport|,#human|,#die| +鵤 N medicine|ҩ,good| +鵤ҩ N medicine|ҩ,good| + N emotion| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N lights|,#humanized| + N lights|,queer| + N mental| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N attribute|,behavior|ֹ,flexible|,&entity|ʵ + N thinking|˼ +һ V own|,possession=thought|ͷ +è N livestock| + ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,behavior|ֹ,clever|,&implement| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N room|,@salute|¾,#die| +ͨ V know|֪,#information|Ϣ,manner=fast| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| +֥ N AlgaeFungi|ֲ,?medicine|ҩ + N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,@store|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V decline|˥ +԰ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%land|½,head|ͷ + V collect| + V guide| + V know|֪ + V own| + N part|,%AnimalHuman|,head|ͷ + N part|,%clothing|,#head|ͷ + V receive| + V understand| + V guide|,patient=employee|Ա + N human|,#occupation|ְλ,official| +쳪 V guide|,ResultEvent=sing|,entertainment| +쳪 N human|,*guide|,#sing|,entertainment| + N fittings|,%clothing| + N fittings|,%clothing|,*fasten|˩ +쵼 N fact|,order|,control| +쵼 V guide| +쵼 N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼λ N attribute|,status|,&human|,#guide| +쵼 N method|,*guide| +쵼ɲ N human|,official| +쵼Ǹ N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N human|,official| +쵼ˮƽ N attribute|,rank|ȼ,&human|,#guide| +쵼ͬ־ N human|,official| +쵼С N part|,%organization|֯,*guide|,official| +쵼 N method|,*guide| +쵼 N human|,official| +쵼 N attribute|,behavior|ֹ,&human|,#guide| +쵼 N attribute|,effect|Ч,&human|,#guide| +쵽 V collect|,Vachieve| +쵽 V guide| + V guide|,ResultEvent=walk| + V guide|,ResultEvent=SelfMove| + N place|ط + N place|ط,#country| + V guide|,patient=community| + N human|,official| + V guide|,ResultEvent=VehicleGo|ʻ + N human|,#occupation|ְλ,*guide|,#ship| + N institution|,diplomatic|⽻ +캣 N waters|ˮ,surfacial|,#country| +캽 V guide|,ResultEvent=VehicleGo|ʻ +캽 N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| +캽Ա N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| + V know|֪ + V understand| +콭 V guide|,ResultEvent=VehicleGo|ʻ +콭 N human|,#occupation|ְλ,*guide|,#ship| + V perception|֪ + V request|Ҫ,ResultEvent=teach| + N tool|þ,$PutOn|,*decorate|װ + N tool|þ,$PutOn|,*decorate|װ + N sky|,#country| + N part|,%clothing|,#head|ͷ +· V guide|,ResultEvent=SelfMove| + V understand| + V grateful|м +ȡ V collect| + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +¹ N institution|,diplomatic|⽻ + V receive| +ˮ N waters|ˮ,surfacial|,#country| +ͷ V guide| + N place|ط,#country| + V understand| + V surpass|ǿ + V undertake|,content=important| + V undertake|,content=important| + N human|,official| + N aspiration|Ը,become|Ϊ,#official| + V foster| + V use| + V own| +֤ N human|,$ExpressAgreement|ʾͬ + N part|,%entity|ʵ,aspect| + N place|ط,#country| + N mark|־,$PutOn| + N human|,*own|,#place|ط + N part|,%clothing|,#head|ͷ + V admit|,content=crime| + ADJ aValue|ֵ,kind|,other| +辶 V create|,PatientProduct=method|,manner=other| + N account|,*record|¼ + CONJ {supplement|ݽ} + V create|,PatientProduct=different| +¯ V start|ʼ,manner=also|Ҳ + ADJ aValue|ֵ,kind|,other| + CONJ {supplement|ݽ} + ADV aValue|ֵ,kind|,other| +һ CONJ {supplement|ݽ} +һ PRON other| + V CauseToDo|ʹ + CLAS NounUnit|,&paper|ֽ + V ResultIn| + N fact|,compete|,#drink| + V order| + N text|,*order| + N text|,past| + N time|ʱ,season| + N character|,surname|,human|,ProperName|ר + N mark|־,*order| + V ResultIn| +˲ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#uneasy| +˲ ADJ aValue|ֵ,ability|,able|,MakeWorried| +˳ V CauseToDo|ʹ,ResultEvent=despise| +˴۽ ADJ aValue|ֵ,ability|,able|,attract| +˴۽ N thing|,*teach| +˶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +˷ָ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +˸ ADJ aValue|ֵ,circumstances|,happy|,desired| +˹ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| +˻ ADJ aValue|ֵ,ability|,able|,LookBack| +˾η ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#fear| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| +ëȻ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +ջ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#upset| +ƣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,property|,attract| + ADJ aValue|ֵ,ability|,able|,irritate|ŭ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N fact|,$disgust|,undesired|ݬ +ŷ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#believe| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +ź ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +۶ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +Ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#pant| +Ŀ ADJ aValue|ֵ,property|,attract| +Ż ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +нֹ V obey|ѭ + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + N location|λ + N part|,%building|,#liquid|Һ,@flow| + N place|ط,#reside|ס + N shape| + V slide| + N water|ˮ,fast| + V exercise| + V walk| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ˮ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + V refuse| + V please|ȡ +֮ V flee| + V flee| + N material| + N material|,?building| + N fruit|ˮ + N weapon| + N fruit|ˮ + N weapon|,$firing| + N chemical|ѧ + V ize|̬ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +þ N chemical|ѧ + N chemical|ѧ +ͭ N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + V cook| + V PassOn| + V SetAside| + V keep| + V receive| + V request|Ҫ,ResultEvent=stay|ͣ + V stay|ͣ + V study|ѧ,#foreign| + V stay|ͣ + V SetAside|,commercial| + N money|,foreign|,$SetAside|,commercial| + V SetAside| + V wait|ȴ +쿴 V suffer|,content=punish| + V PassOn| +· V defend| + V defend| + V stay|ͣ + V stay|ͣ,education| + V SetAside|,patient=space|ռ + V stay|ͣ,cause=satisfied| + V FondOf|ϲ + V study|ѧ,location=(US|) + V MakeTrouble| + V PassOn| + V request|Ҫ,patient=human|,ResultEvent=stay|ͣ + V undertake| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N tool|þ,*disseminate| + V defend| + V engage| + V reside|ס + V PassOn| + V PayAttention|ע +ѧ V study|ѧ +ѧ N human|,*study|ѧ,#foreign|,education| + V tell| +Բ N readings|,@record|¼,#thought|ͷ + V study|ѧ,#foreign| +һ V SetAside|,patient=knowledge|֪ʶ,#teach| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӱ V TakePicture| + V employ| + V SetAside| + V SetAside| + V defend| + V SetAside| +Ȩ N rights|Ȩ,*SetAside| +ס V detain|ס,Vachieve| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N disease| +θ N part|,%AnimalHuman|,viscera| + V SelfMove| + V circulate|ѭ,commercial| + V disseminate| + V flow| + N ill|̬ + ADJ aValue|ֵ,property|,^$fulfil|ʵ + V fail|ʧ + V labour|ٲ + ADJ aValue|ֵ,behavior|ֹ,fluent|,speak|˵ + ADJ aValue|ֵ,content|,easy|,desired| + N process| +ͼ N image|ͼ + V PassOn| + V disseminate| + V roam| + N weapon|,$firing| + V roam| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + V flow| + V roam| +ʲ N wealth|Ǯ +ʽ N fund|ʽ,*SelfMoveInManner|ʽ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V exile| + N disease| + N time|ʱ + V excrete|й,patient=waste| + V flow| +ˮ N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + N human|,undesired|ݬ,*rob|,crime| + V roam| +˺ N human|,*roam|,poor|,undesired|ݬ + N drop|Ͷ,patient=liquid|Һ,LocationIni=eye| +ʧ V roam| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| + V stay|ͣ,cause=satisfied| + V stay|ͣ,cause=satisfied| + N quantity|,amount|,#flow|,&water|ˮ + N tool|þ,*measure|,#amount|,#water|ˮ,#flow| +¶ V express|ʾ + V reside|ס +å N human|,undesired|ݬ,#crime| +åϰ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +åΪ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +å N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| + N disease| + N attribute|,outlook|ǰ,&human| + N time|ʱ + N community|,#knowledge|֪ʶ +ɢ V disperse|ɢ +ɳ N stone|ʯ + N human|,*withdraw|˳,#education| +ʧ V disappear|ʧ + V disappear|ʧ +ˮ N water|ˮ,*flow| +ˮ N facilities|ʩ,@produce| +ˮ N account|,@record|¼,#wealth|Ǯ +ˮҵ N method|,*produce|,industrial| + N tool|þ,*decorate|װ + N attribute|,speed|ٶ,&flow|,#water|ˮ + V flow| + N physical|,liquid|Һ,generic|ͳ +ѧ N knowledge|֪ʶ +ͨ V circulate|ѭ +ͨ N quantity|,amount|,#circulate|ѭ,&water|ˮ,wealth|Ǯ +ͨȯ N money| +ͨҵ N affairs|,commercial| +ͨʽ N fund|ʽ,*SelfMoveInManner|ʽ + V flee| + N tool|þ,*catch|׽ס,#fish| + N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + ADJ aValue|ֵ,form|״ + N celestial| + N weapon|,past| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| + V prosper| +в N disease| +вѧ N knowledge|֪ʶ,#disease|,medical|ҽ +и N music| +и N human|,*compile|༭,#music|,entertainment| +ɫ N attribute|,color|ɫ,&physical| + ADJ aValue|ֵ,property|,CauseAffect|Ⱦ,medical|ҽ +Ըð N disease| + N disease| +Ѫ V bleed|Ѫ + N information|Ϣ,wrong|,undesired|ݬ +Է N information|Ϣ,wrong|,undesired|ݬ + N information|Ϣ,wrong|,undesired|ݬ +ʽ V become|Ϊ,descriptive=empty| + N place|ط,#waters|ˮ + ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ + N edible|ʳ,liquid|Һ +ת V circulate|ѭ,commercial| +ת V roam| + N character|,surname|,human|,ProperName|ר + N tree| + N attribute|,circumstances|,happy|,&human|,&organization|֯ + N artifact|˹,$weave| + N tree|,mass| + N MusicTool| + N tree| + N part|,%tree|,limb|֫ + N place|ط,city|,ProperName|ר,(China|й) +ݺ N bird| + NUM qValue|ֵ,amount|,cardinal|,mass| + N tool|þ,*measure| + N location|λ,%celestial|,%land|½ + ADJ aValue|ֵ,form|״ + N medicine|ҩ + N human|,family| + V uneasy| + N livestock| + N time|ʱ,month| +· N time|ʱ,month| + ADJ aValue|ֵ,status|,official| + N beast|,humanized| + N character|,surname|,human|,ProperName|ר + N humanized|,royal| + N ship| + N FlowerGrass| + N medicine|ҩ + N tool|þ,*illuminate| + N part|,%land|½,mouth| +ɷ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + N beast|,humanized| + N house|,#humanized| + N medicine|ҩ + N part|,%bird|,bone| + N part|,%ship|,bone| +dz N tool|þ,agricultural|ũ,*take|ȡ,#liquid|Һ + N beast| + N drinks|Ʒ + N material|,?drinks|Ʒ + N drinks|Ʒ + N wind|,strong|ǿ + N part|,%humanized|,mouth| +ʭ N InsectWorm| +̶ N place|ط,dangerous|Σ +̶Ѩ N place|ط,dangerous|Σ + N human|,entertainment| +ڻԾ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ͷ N part|,%LandVehicle|,*drive|Ԧ,arm| +ͷ N part|,%tool|þ,*OpenShut| + N humanized| +Ϻ N fish| + N crop|ׯ,?material| + N FlowerGrass|,?medicine|ҩ + N fruit|ˮ + V fight| + ADJ aValue|ֵ,age|,aged| + N ship| + V disable|м,scope=listen| + V disable|м,scope=listen|,scope=speak|˵ + N human|,undesired|ݬ,*disable|м,#listen|,#speak|˵ + N human|,undesired|ݬ,*disable|м,#listen| + V cover|ڸ + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + V lighting|ȼ + V entice| + V put|,patient=hand| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@cook| +ͳ ADJ aValue|ֵ,content|,simple|,undesired|ݬ +ͷ N part|,%LandVehicle| + V cover|ڸ + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + N part|,%mine| +¡ V FormChange|α,StateFin=protruding|͹ +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¡ N character|,surname|,human|,ProperName|ר +¡ N time|ʱ,winter| +¡¡ V MakeSound| +¡ V FormChange|α,StateFin=protruding|͹ +¡ N emotion|,strong|ǿ +¡ N time|ʱ,season|,hot| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¢ N part|,%land|½,agricultural|ũ +¢ V control| +£ V AmountTo|ܼ +£ V ComeTogether| +£ V approach|ӽ +£ N tool|þ,*MakeUp|ױ +¤ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¤ N place|ط,ProperName|ר,(China|й) +¥ N character|,surname|,human|,ProperName|ר +¥ N house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%building|,nerve| +¥ N part|,%house|,head|ͷ +¥ N house| +¥ N house| +¥ N part|,%house| +¥Ⱥ N building| +¥ N location|λ,%building| +¥̨ N building| +¥̨ N part|,%house|,space|ռ +¥ù N building| +¥ N part|,%building|,nerve| +¥ N location|λ,%building| +¥ N house|,generic|ͳ +¦ N aValue|ֵ,physique|,weak|,undesired|ݬ +¦ N character|,surname|,human|,ProperName|ר +¦ N phenomena|,undesired|ݬ,#unfortunate| +¦ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +§ V HoldInArm|§ +§ V gather|ɼ +§ V lift| +§ V rob| +§ V HoldInArm|§ +¨ N tool|þ,cubic|,@put| +¨ N tool|þ,cubic|,@put| +© V leak|© +© V lose|ʧȥ +© V ^tell| +© V leak|© +© N disease| +© V leak|©,agent=electricity| +© N attribute|,quality|,weak|,undesired|ݬ,&event|¼ +© N part|,%inanimate|,mouth| +©ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +© N tool|þ,*fill| +© V exposure|¶,agent=information|Ϣ +© V leak|©,agent=gas| +© V speak|˵,manner=difficult| +© N part|,%inanimate|,mouth| +© V leak|©,agent=lights| +© N tool|þ,*tell|,#time|ʱ +© N part|,%inanimate|,mouth| +© N tool|þ,cubic|,*TakeOutOfWater| +©˰ V evade|ر,content=expenditure|,commercial| +© V flee| +©֮ N human|,crime|,undesired|ݬ,*flee| +©й V exposure|¶ +©й V reveal|¶ +©ҹ N time|ʱ,day|,night| +© N part|,%inanimate|,mouth| +© N tool|þ,*fill| +ª ADJ aValue|ֵ,bearing|̬,thrifty|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ª ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ª N room|,thrifty| +ªϰ N attribute|,habit|ϰ,#addict|Ⱥ,bad|,&AnimalHuman| +« N FlowerGrass|,?material| +« N medicine|ҩ,(China|й) +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ +«έ N FlowerGrass|,?material| +« N MusicTool| +¬ N character|,surname|,human|,ProperName|ר +¬ N money|,(Armenia|) +¬ N money|,(Azerbaijan|ݽ) +¬ N money|,(Byelorussia|׶˹) +¬ N money|,(Estonia|ɳ) +¬ N money|,(Georgia|³) +¬ N money|,(Kazakhstan|˹̹) +¬ N money|,(Kirghizstan|˹˹̹) +¬ N money|,(Latvia|ά) +¬ N money|,(Lithuania|) +¬ N money|,(Russia|˹) +¬ N money|,(Tajikistan|˹̹) +¬ N money|,(Turkmenistan|˹̹) +¬ N money|,(Ukraine|ڿ) +¬ N money|,(Uzbekistan|α˹̹) +¬ N place|ط,capital|,ProperName|ר,(Zambia|ޱ) +¬ɭ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,capital|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¬ɭ N money|,(Luxemburg|¬ɭ) +¬ɭ N human|,(Luxemburg|¬ɭ) +¬ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rwanda|¬) +¬ N place|ط,country|,ProperName|ר,(Africa|) +¬﷨ N money|,(Rwanda|¬) +­ N part|,%AnimalHuman|,head|ͷ +­ N part|,%AnimalHuman|,bone| +® N house| +®ɽ N place|ط,ProperName|ר,(China|й) +®ɽĿ N attribute|,trueness|α,true|,&thing| +® N house| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N fire| +¯ ADJ aValue|ֵ,ability|,able|,desired| +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N material|,*lighting|ȼ,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N part|,%implement|,viscera| +¯ N attribute|,temperature|¶,&tool|þ +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N stone|ʯ,waste| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +° V rob| +° V rob|,military|,police| +° V rob| +± V cook| +± V ize|̬ +±ˮ N water|ˮ,salty| +± N chemical|ѧ +±ζ N food|ʳƷ +² V catch|׽ס +² N human|,$catch|׽ס +² N human|,$catch|׽ס,military| +² V catch|׽ס,military|,police| +³ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ N character|,surname|,human|,ProperName|ר +³ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +³ N edible|ʳ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ç ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +³ N place|ط,ProperName|ר,(China|й) +´ N part|,%land|½,base| +µ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +µµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µµΪ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +µ N tool|þ,*press|ѹ,#crop|ׯ +¶ N RainSnow|ѩ +¶ V express|ʾ +¶ V reveal|¶ +¶ V reveal|¶ +¶ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +¶ N beast|,*swim| +¶ N drinks|Ʒ,$addict|Ⱥ +¶ V WellKnown| +¶ V exposure|¶ +¶ V appear| +¶ˮ N RainSnow|ѩ +¶ V reside|ס +¶ N location|λ,external|,space|ռ +¶ N facilities|ʩ,mine| +¶ú N facilities|ʩ,mine| +¶ͷ V appear| +¶ڶ V exposure|¶ +¶һ V ShowOff|ҫ +¶һ V express|ʾ +¶Ӫ V reside|ס +¶ N RainSnow|ѩ +· N attribute|,distance|,&physical| +· N attribute|,kind|,&physical| +· N attribute|,rank|ȼ,&physical| +· N character|,surname|,human|,ProperName|ר +· N facilities|ʩ,route|· +· N fact|,tour| +· N method| +· N place|ط +· N reason| +· N part|,%route|·,edge| +· N mark|־,#route|· +·ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| +· N attribute|,distance|,#tour| +· N facilities|ʩ,*illuminate|,#route|· +· N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +· N part|,%route|· +· N expenditure|,*tour| +· N attribute|,behavior|ֹ,#transport|,&organization|֯ +· V GoThrough| +· N part|,%facilities|ʩ,route|·,base| +· V rob| +· PREP {LocationThru} +· N human|,#occupation|ְλ,police|,#route|· +· N facilities|ʩ,route|· +· N method| +· N institution|,#transport|,#route|· +· N part|,%place|ط +· N fact|,#vehicle|ͨ,#VehicleGo|ʻ +· N part|,%facilities|ʩ,route|·,skin|Ƥ +· N mark|־,#route|· +·ǩ N document|,*agree|ͬ,#vehicle|ͨ +· N human|,*GoThrough| +· N human|,unfamiliar|϶ +· N location|λ,%route|· +· N process|,#tour| +· N method| +· N document|,*agree|ͬ,#vehicle|ͨ +·͸ N institution|,news|,ProperName|ר,(UK|Ӣ) +·; N facilities|ʩ,route|· +·; N fact|,tour| +· N plans|滮,#tour| +·׸ N place|ط,capital|,ProperName|ר,(Mauritius|ë˹) +·˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +· N facilities|ʩ,*obstruct|ֹ,#AlterLocation|ռλ,#route|· +· N attribute|,relatedness|,&human|,&organization|֯ +· N method| +·ӿ V associate|,manner=extensive| +·Ұ V associate|,manner=extensive| +¹ N beast| +¹ N facilities|ʩ,space|ռ,military| +¹ N part|,%AnimalHuman|,*feel| +¹ N material|,?medicine|ҩ +¹˭ V unfixed|δ +¹ص N place|ط,city|,ProperName|ר,(Holland|) +¹ N facilities|ʩ,space|ռ,military| +º N place|ط,ProperName|ר,(China|й) +» N character|,surname|,human|,ProperName|ר +» N payment| +» N payment|,past| +¼ N account|,*record|¼ +¼ V employ| +¼ V record|¼ +¼ V record|¼ +¼ V record|¼,police| +¼ȡ V include| +¼ V record|¼ +¼ V TakePicture| +¼ V record|¼,content=image|ͼ +¼ N tool|þ,@record|¼,#image|ͼ +¼ N tool|þ,*TakePicture| +¼Ƭ N shows| +¼ N affairs|,entertainment| +¼ V record|¼,content=sound| +¼ N tool|þ,@record|¼,#sound| +¼ N tool|þ,*record|¼,#sound| +¼Ա N human|,*record|¼,#sound| +¼Ӱ V record|¼,content=image|ͼ +¼ V employ| +¼ V compile|༭ +½ N character|,surname|,human|,ProperName|ר +½ N land|½ +½ NUM qValue|ֵ,amount|,cardinal| +½ N crop|ׯ +½ N land|½ +½ N land|½,waters|ˮ,sky| +½ N army|,#land|½ +½ձ N army| +½· N facilities|ʩ,route|· +½ ADJ aValue|ֵ,sequence| +½ V transport| +½ս N fact|,fight|,#land|½ +½ս N army| +¾ͬ V cooperate| +¿ N livestock| +¿ V FitNot| +¿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +¿ N livestock| +¿Ƥ N medicine|ҩ +¿ N livestock| + N character|,surname|,human|,ProperName|ר + N metal| + N tool|þ +Ͻ N material|,metal| + N material| + N human|,friend| + N army|,generic|ͳ + N part|,%army| + V tour| +ð N human|,friend|,#tour| +ò N expenditure|,*tour| +ó N human|,#occupation|ְλ,official|,military| +ó N fact|,tour|,*AlterLocation|ռλ +ó N process|,#tour| +õ N InstitutePlace|,@reside|ס,#tour|,commercial| +÷ N expenditure|,*tour| +ù N InstitutePlace|,@reside|ס,#tour|,commercial| +ùϰ N human|,*employ|,commercial| +ý V obey|ѭ +þ V reside|ס +þӺ V reside|ס +ÿ N human|,*tour| +ÿ N human|,*tour|,*AlterLocation|ռλ + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| +˳ N place|ط,city|,ProperName|ר,(China|й) +; N fact|,tour| + V tour| +а N tool|þ,cubic|,@put|,#tour| +г N LandVehicle|,*tour| +д N tool|þ,cubic|,@put|,#tour| + N InstitutePlace|,#tour| + N InstitutePlace|,#tour|,commercial| + N community|,*tour| + N human|,*tour| + N affairs|,#tour| + V tour| +γ N LandVehicle|,*tour| +ʤ N place|ط,glorious|,@tour| +Ь N clothing|,#foot|,*tour| +ҵ N affairs|,#tour| + N human|,*tour| + N expenditure|,*tour| + N clothing|,#foot| + V conduct|ʵʩ + V walk| +Ĵ N part|,%implement| + N document|,@record|¼,#process| + N document|,@record|¼,#process| + ADJ aValue|ֵ,courage|,brave|,desired| + V engage|,content=occupation|ְλ,new| + V conduct|ʵʩ +Լ V conduct|ʵʩ,content=ExpressAgreement|ʾͬ + ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +ż ADJ aValue|ֵ,kind|,ordinary| +Ž̲ V refuse|,content=amend| +Žֹ V BeUnable|,content=restrain|ֹ + ADV aValue|ֵ,frequency|Ƶ,again| +Բˬ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V suffer|,frequency=again| + CLAS NounUnit|,&inanimate| + N tool|þ,linear|,*fasten|˩ + ADV aValue|ֵ,behavior|ֹ,^continuous| + V explain|˵ + V sad|dz + V think|˼ + N gas| +ȷ N chemical|ѧ +Ȼ N chemical|ѧ +Ȼ N chemical|ѧ + N material|,?clothing| +ù N medicine|ҩ + N gas| + N law|ɷ + V manage| + V restrain|ֹ + N system|ƶ +ɷ N law|ɷ +ɼ V restrain|ֹ,patient=self| +ʦ N human|,#occupation|ְλ,police|,#law|ɷ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| + V order| + N quantity|,rate|,&quantity| +ʲ V guide|,patient=army|,military| +ʶ V guide|,patient=community| +ʶ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʶ V write|д,manner=careless| + V guide| + V order| +Ȼ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| +ɾ V obey|ѭ,content=regulation| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V filter| +˲ V filter|,patient=electricity| +˲ N tool|þ,*filter|,#electricity| + N tool|þ,*filter| + V filter| +ɫ N tool|þ,*filter|,#color|ɫ +Һ N tool|þ,liquid|Һ,*filter| +ֽ N paper|ֽ,*filter| + ADJ aValue|ֵ,color|ɫ,green| +̲ N material|,?drinks|Ʒ +̵ N information|Ϣ,*agree|ͬ +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ +̵ N land|½,@planting|ֲ,FlowerGrass|,tree| +̶ N crop|ׯ +̷ N material|,*feed|ι,#crop|ׯ +̻ V ize|̬ +̿ N document|,*reside|ס,#country| + N part|,%building| +ֺú N human|,*rob|,#rich|,*help|,#poor| +ֺú N human|,undesired|ݬ,*rob|,crime| +Ӣ N human|,*rob|,#rich|,*help|,#poor| +ɫ ADJ aValue|ֵ,color|ɫ,green| +ɫʳƷ N edible|ʳ,#plant|ֲ,^$pollute|ʹ +ɫֲ N plant|ֲ,green| + ADJ aValue|ֵ,color|ɫ,green| +ˮ N waters|ˮ,green| +ˮɽ N place|ط,beautiful| +ͷѼ N bird| +Ҷ N part|,%plant|ֲ,hair|ë + N land|½,@planting|ֲ,FlowerGrass|,tree| + N facilities|ʩ,@exercise|,@compete|,sport| + ADJ aValue|ֵ,color|ɫ,green| + N trace|,#tree| +ӨӨ ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,FlowerGrass|,tree| + N land|½ + V CausePartMove| + ADJ aValue|ֵ,source|Դ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N part|,%AnimalHuman|,embryo| +Ѱ N part|,%AnimalHuman|,embryo| +ѳ N part|,%AnimalHuman|,female|Ů,viscera|,#GiveBirth| +ѻ N part|,%AnimalHuman|,embryo| +֬ N medicine|ҩ +ʯ N stone|ʯ,material| +ϸ N part|,%AnimalHuman|,embryo| + N part|,%AnimalHuman|,embryo| + V CauseToDo|ʹ,ResultEvent=disorder| + V FeelingByBad| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N fact|,uprise|,undesired|ݬ,politics| + V mix| + N phenomena|,disorder|,undesired|ݬ +ұ N human|,military|,undesired|ݬ +Ҳ V gather|ɼ,means=break|۶,manner=improper|,agricultural|ũ +ҵ V TalkNonsense|Ϲ˵ +ҷ׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ҷ׷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ҷظ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ҹ V associate|,scope=sex|Ա,manner=improper| +ҸŮϵ V associate|,scope=sex|Ա,manner=improper| +Һ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ +һǮ V lavish|˷ +ҿñ V damage|,politics| + V roam| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + V establish|,manner=improper| + N time|ʱ,disorder| +˵ V TalkNonsense|Ϲ˵ +̯ V issue|ַ,manner=improper| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N phenomena|,undesired|ݬ,disorder|,#unfortunate| + V GoThrough|,manner=fast| + V rob| +Ӷ V rob| +Ӷ N human|,*rob|,undesired|ݬ +ӹ V GoThrough|,manner=fast| +ȡ V rob| + N look|,manner=fast| +Ӱ N part|,%thing|,bone| + ADJ aValue|ֵ,content|,simple|,desired| + ADV aValue|ֵ,degree|̶,ish| +Գ ADJ aValue|ֵ,length|,long|,ish| +Գ N attribute|,name|,simple|,&entity|ʵ +Դ ADJ aValue|ֵ,size|ߴ,big|,ish| +Դ V contain|,quantity=few| +Դζ ADJ aValue|ֵ,taste|ζ,sour|,ish| +Լ ADV aValue|ֵ,degree|̶,ish| +ȥ V discharge| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,size|ߴ,small|С,ish| +ѷһ ADJ inferior|,degree=ish| +֪һ V know|֪,degree=ish| + V wave|ڶ + CLAS NounUnit|,&event|¼ + N part|,%LandVehicle|,leg| + V replace| + N shape| + N ship| +ְ V replace| +ֳ N part|,%implement| +ִ N ship| +ֵ V replace| +ֶ N ship| +ַ V replace| +ֻ V replace| +ֻ V circulate|ѭ +ֻ V circulate|ѭ,religion|ڽ +ֻ N machine| +ּ V damage|,purpose=mating|,crime| + N part|,%thing|,bone| + V replace| +ʽ ADJ aValue|ֵ,performance| +̥ N part|,%LandVehicle|,leg| + V shape| + V rest|Ϣ +ѵ V drill|ϰ + N LandVehicle|,*SelfMove|,#disable|м +ֵ V engage|,content=bear|е + N part|,%implement| +ת V circulate|ѭ + N part|,%LandVehicle|,leg| + V circulate|ѭ,#planting|ֲ,agricultural|ũ + N attribute|,relatedness|,&human| +״ N attribute|,content|,&language| +׶ N place|ط,capital|,ProperName|ר,(UK|Ӣ) + N attribute|,behavior|ֹ,&human| +ѧ N knowledge|֪ʶ,#behavior|ֹ +Ƥ N money|,(Honduras|鶼˹) + N unit|λ,&lights| + N lights| + N attribute|,sequence|,&event|¼ + V sink|³ + V unfortunate| +ɥ V decline|˥ + V perish| +Ϊ V become|Ϊ + V perish| + N fittings|,%clothing| + V decide| + V discuss| + N knowledge|֪ʶ + V regard|Ϊ + N text| + N thought|ͷ + PREP {AccordingTo} +۴ V decide| +۴ V punish| +۵ N human|,enemy|,#debate| +۵ N reason| +۵ N reason| +۶ N thought|ͷ +۹ V reward| +ۼ V discuss| +ۼ V decide|,content=price|۸ +۾ N information|Ϣ,*debate|,*explain|˵ + V fit|ʺ + N reason| + V explain|˵ +˵ N text| +˵ ADV {comment|} +̳ N fact|,@communicate| + N text|,$propose|,$discuss|,$debate| + N text|,#research|о +ļ N publications|鿯,#research|о + N publications|鿯,ProperName|ר +ս V debate| + V debate| +֤ N information|Ϣ,*explain|˵ + N publications|鿯 +ű V AlterGrade|伶,AccordingTo=status| + V decide| + N FlowerGrass| +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܽľ N FlowerGrass|,?medicine|ҩ + N fish| + N trace| +ݶ N tool|þ,*fix|ס,*fasten|˩ +ݺ N MusicTool| +ݺ N tool|þ,*MakeSound| +ĸ N tool|þ,*fix|ס,*fasten|˩ +˨ N part|,%implement| +˿ N tool|þ,*fix|ס,*fasten|˩ +˿ N tool|þ,*tighten|ս,*loosen| + N part|,%tool|þ,#fix|ס,#fasten|˩ + N trace| + N part|,%implement| + N part|,%implement| +״ ADJ aValue|ֵ,form|״ + N fish| + CLAS NounUnit|,&inanimate| + N character|,surname|,human|,ProperName|ר + V filter| + V gather|ɼ + N place|ط,country|,ProperName|ר,(Romania|) + N tool|þ,*catch|׽ס,#bird| +ް N place|ط,capital|,ProperName|ר,(Angola|) +޲ N crop|ׯ,?material| +޵µ N place|ط,provincial|ʡ,ProperName|ר,(US|) +޵õ N place|ط,ProperName|ר +޵õ N human|,(Rhode island|޵õ) +޵ N place|ط,ProperName|ר +޵ N human|,(Rhodesia|޵) +޹ N human|,*disable|м +޺ N human|,religion|ڽ + N crop|ׯ,?material| + V quote| + N place|ط,capital|,ProperName|ר,(Italy|) +ʵ N human|,royal| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Romania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rumania|) + N human|,(Rumania|) + N language|,#country|,ProperName|ר + N tool|þ,*tell|,#direction| +˹ N human|,official|,politics|,ProperName|ר,(US|) + V gather|ɼ + V include| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V speak|˵ +߼ N reason| +߼ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N MusicTool| + ADJ aValue|ֵ,occasion|,bustling| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N livestock| + N livestock| + ADJ aValue|ֵ,property|,exposure|¶ +¶ V aValue|ֵ,property|,exposure|¶ + N crop|ׯ + ADJ aValue|ֵ,property|,exposure|¶ + N tool|þ,linear|,*transmit|,#electricity| + V MoveItDown| + V ResultFrom|Ե + V decline|˥ + V fall| + V inferior| + V lose|ʧȥ + V sink|³ + V subtract| + V undergo| + V fail|ʧ,scope=exam|,result=include|,education| + V write|д + V FormChange|α,StateFin=bony| +Ϊ V become|Ϊ + N attribute|,different|,#water|ˮ,&waters|ˮ +䳱 V WeatherBad| + V succeed|ɹ +䵽 V undergo| + V undergo| + V ComeToWorld| + V fall| + V fail|ʧ + N location|λ,@arrive|,military| + N location|λ,@arrive|,sport| + N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| +仧 V reside|ס +仨ˮ V defeated| +仨 N crop|ׯ,?material|,$eat| +Ķ V flee| + V BecomeLess|,scope=price|۸ + V reside|ס +侮ʯ V damage| + V fail|ʧ + V sign|д,content=name| + V weep| + ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ѻ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V fail|ʧ + V fall|,LocationIni=livestock| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ļ V finish| + V unfortunate| +Ƹ V fail|ʧ,scope=$employ| + N celestial| +ɫ V AppearanceChange|۱ +ʵ V AtEase| +ʵ V decide| +ʵ V fulfil|ʵ +ˮ N human|,undesired|ݬ,*fail|ʧ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V suffer|,content=catch|׽ס,police|,crime| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| + N human|,bad|,undesired|ݬ +ѡ V fail|ʧ,scope=$select|ѡ +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N tree| + N lights|,#celestial| + V put|,#recreation| + V sit| + N character|,(China|й) + N money|,(Lesotho|) + N place|ط,capital|,ProperName|ר,(Togo|) +ɣ N place|ط,city|,ProperName|ר,(Swiss|ʿ) +ɼ N place|ط,city|,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N beast| +մ N crop|ׯ,?material| + N material|,?clothing| + N part|,%AnimalHuman|,nerve| + N shape| + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + N part|,%human|,hair|ë +ﲻ ADJ qValue|ֵ,amount|,many| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ,?material| + N medicine|ҩ + V paralyse|̱ + N tool|þ,cubic|,@put| + V CauseToDo|ʹ,ResultEvent=careless| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V paralyse|̱ +Դ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +鲼 N material|,?clothing| + N tool|þ,cubic|,@put| +鷳 V MakeTrouble| +鷳 ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +鷳 ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V produce|,industrial| + N disease| +粡 N human|,*SufferFrom|,disease| +粡 N human|,*SufferFrom|,disease| +黨 N food|ʳƷ + N FlowerGrass| + N medicine|ҩ +齫 N tool|þ,*gamble|IJ +齴 N material|,?food|ʳƷ + ADJ aValue|ֵ,taste|ζ,peppery| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,bright| +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ľ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ȸ N bird| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ +ʡ N place|ط,ProperName|ר,(US|) + N tool|þ,linear|,*fasten|˩ +ҩ N medicine|ҩ + N material|,?food|ʳƷ + N disease| + N human|,undesired|ݬ,#disease| + N trace|,undesired|ݬ,#disease| + V cure|ҽ +Ʒ N medicine|ҩ,?addictive|Ⱥ +ҩ N medicine|ҩ + N character|,(China|й) + N place|ط,ProperName|ר + N human| + N human|,ProperName|ר + N material|,?tool|þ,#decorate|װ + V pile|ѷ + N symbol| + CLAS unit|λ,&length| + V pile|ѷ +ͷ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ͷ N place|ط,city| + N symbol| + N tool|þ,*gamble|IJ,#money| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N InsectWorm| + N character|,surname|,human|,ProperName|ר + N livestock| + N part|,%tool|þ,#recreation| + N place|ط,country|,ProperName|ר,(Malaysia|) + N tool|þ,@sit|,#livestock| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,@sit|,#livestock| + N part|,%livestock|,body| + N tool|þ,*tell|,#time|ʱ + N InsectWorm| +ͣ V VieFor| +ͣ ADJ aValue|ֵ,behavior|ֹ,continuous| + N LandVehicle| + N FlowerGrass|,?medicine|ҩ + N machine| +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Madagascar|˹) +˹ N place|ط,country|,ProperName|ר,(Africa|) +˹ӷ N money|,(Madagascar|˹) + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N human|,careless|,undesired|ݬ + N weapon|,*stab| +ɹ V succeed|ɹ + N place|ط,capital|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(Cambodia|կ) + N tool|þ,*illuminate| + N army|,#livestock| + N livestock|,mass| + N livestock| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Africa|) +ʲ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Malta|) + N language|,#country|,ProperName|ר +ֽ N paper|ֽ + N InsectWorm|,*fly| + N human|,#occupation|ְλ,employee|Ա +ʬ V endeavour| + N clothing| +Լ N agreement|Լ,ProperName|ר,#(China|й),#(Japan|ձ) + CLAS unit|λ,&speed|ٶ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N clothing|,#body| + N livestock|,young| + N money|,(Germany|¹) + N money|,ProperName|ר +˹ N human| +˼ N human|,#knowledge|֪ʶ,ProperName|ר,(Germany|¹) + N metal|,material| + N clothing|,#leg| + N place|ط,capital|,ProperName|ר,(Equatorial Guinea|) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Africa|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malawi|ά) +ά N place|ط,country|,ProperName|ר,(Africa|) +ά߲ N money|,(Malawi|ά) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malaysia|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Malaysia|) + N place|ط,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Maldives|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mali|) + N place|ط,country|,ProperName|ר,(Africa|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + CLAS unit|λ,&PhysicsPower| + N knowledge|֪ʶ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,ProperName|ר +· N facilities|ʩ,route|· +¹ N beast| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| +ǹ N place|ط,capital|,ProperName|ר,(Nicaragua|) + N place|ط,capital|,ProperName|ר,(Philippines|ɱ) +ƥ N livestock|,mass| +ƨ N human|,*please|ȡ + N place|ط,capital|,ProperName|ר,(Mozambique|Īɣȿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Macedonia|) + N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר +ǰ N human|,undesired|ݬ,$employ| +ǹ N weapon|,*firing| + N SportTool|˶ +¬ N place|ط,capital|,ProperName|ר,(Lesotho|) + N place|ط,city|,ProperName|ר,(France|) + N material|,*build| + ADV aValue|ֵ,duration|,TimeShort| + N tool|þ,cubic|,*TakeOutOfWater| +ܶȺ N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N knowledge|֪ʶ,#sit|,#livestock| +˹ N place|ط,capital|,ProperName|ר,(Oman|) + N part|,%livestock|,foot| + N material| + N part|,%tool|þ,#livestock|,#foot| + ADJ aValue|ֵ,form|״ +Ͱ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ͷ N MusicTool| +β N part|,%livestock|,tail|β +β N tree| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| + N beast| +ѥ N clothing|,#foot| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N tool|þ,space|ռ,@sit| + N tool|þ,#foot|,#livestock| + N part|,%livestock|,hair|ë +濨 N fact|,entertainment| + N human|,#occupation|ְλ,*protect| + N crop|ׯ,?material| + N fish| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + STRU {MaChinese|} + STRU {MaChinese|,question|} + N medicine|ҩ,?addictive|Ⱥ + V bury| + V hide| + V bury| + V hide| +û V despise| +û V hide| + V bury| + V bury| +ͷ V endeavour| +ͷ V endeavour| + V bury| +Թ V blame|Թ + V bury| + V buy|,commercial| + N human|,commercial|,past| + N human|,*buy|,commercial| + V buy|,cost=expensive| + V please|ȡ + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V buy|,commercial| + V exchange|,manner=venture|ð,commercial| + N affairs|,#buy|,#sell|,commercial| +ͬ N agreement|Լ,commercial| +˫ N human|,*buy|,*sell|,commercial| + V buy|,commercial| +ͨ V entice|,means=GiveAsGift|,crime| +һһ V obtain|õ,manner=^pay|,condition=buy|,commercial| + V endorse|ӵ + N human|,*buy|,commercial| + N human|,#commercial|,*buy| + N crop|ׯ + N FlowerGrass|,?medicine|ҩ + N InsectWorm|,*fly| + N material|,?clothing| +ѳ N InsectWorm| + N part|,%crop|ׯ,body| +˷ N tool|þ,*disseminate| + N crop|ׯ,young| + N place|ط,capital|,ProperName|ר,(Bahrain|) +Ƭ N food|ʳƷ + N time|ʱ,autumn|,@collect|,#crop|ׯ + V collect|,agricultural|ũ + N part|,crop|ׯ + N land|½,#crop|ׯ +ѿ N part|,crop|ׯ + N InsectWorm|,undesired|ݬ,*fly| + N crop|ׯ + V betray| + V sell| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V MakeLiving|ı,means=sing| +úܻ ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V sell|,Vachieve| + N human|,*sell|,commercial| +г N affairs|,commercial| + V sell| +Ƥҩ V boast| + V ShowOff|ҫ,content=clever| + V betray|,target=country| + N human|,*betray|,#country| + V please|ȡ + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + V endeavour| + V endeavour| + V endeavour| +Ū V ShowOff|ҫ +Ū V show|,content=lascivious| +Ūɧ V show|,content=lascivious| + V show|,content=lascivious| +Ͷ V SeekRefuge|Ͷ + V MakeLiving|ı,means=perform| + V engage|,content=lascivious|,crime| + N human|,#commercial|,*sell| + ADJ aValue|ֵ,age|,aged| + V walk| + N place|ط,city|,ProperName|ר,(US|) + V walk| + V walk| + V GoForward|ǰ + V walk| + V walk| + V walk| + N experience| + N part|,%AnimalHuman|,nerve| + N phenomena|,#medical|ҽ + N phenomena| + V shiver| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| + N part|,%plant|ֲ,nerve| + N part|,%thinking|˼,nerve| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HideTruth| + V HideTruth| + V HideTruth|,^Vable| +ùȥ V HideTruth|,Vable| + V HideTruth|,Vachieve| + V deceive|ƭ + V HideTruth| + V HideTruth| +ȥ V HideTruth|,Vcontinue| + V HideTruth|,Vgoingon|չ +ͷ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADV aValue|ֵ,degree|̶,ish| + N human| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,fullness|,full| + N character|,surname|,human|,ProperName|ר + N community|,ProperName|ר,(China|й) + V due| + V fill| +ں V despise| + N result|,desired| + V doubt| + V arrive|,LocationFin=extreme| + V cherish|Ļ + V believe| + ADJ qValue|ֵ,amount|,many| +ڴӦ V agree|ͬ,manner=forthright|ˬ +໰ V speak|˵,content=lascivious| + ADJ aValue|ֵ,fullness|,full| + V exposure|¶,#countenance| +洺 V satisfied| +Ц V laugh|Ц +Ŀ ADJ aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ +ǻ V cherish|Ļ +ǻȳ V cherish|Ļ,content=sincere| +ǻ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ɽҰ N location|λ,land|½ +ù V teach|,manner=stiff| +ú N fact|,succeed|ɹ + ADJ aValue|ֵ,range|,all|ȫ + V satisfied| + N celestial| + N time|ʱ,day|,#young| +ض V GoBack|,#succeed|ɹ + ADJ place|ط,ProperName|ר,(China|й) + N human| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V fulfil|ʵ + V satisfied| + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,fullness|,full| + N part|,%plant|ֲ,body| + V disperse|ɢ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +˹ N place|ط,city|,ProperName|ר,(UK|Ӣ) + N place|ط,capital|,ProperName|ר,(Thailand|̩) + N place|ط,ProperName|ר,(US|) + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N sound| + N MusicTool| + N FlowerGrass|,?medicine|ҩ + V FormChange|α + V SlowDown| + ADJ aValue|ֵ,speed|ٶ,slow| + N LandVehicle| + V IllTreat| + ADJ aValue|ֵ,speed|ٶ,slow| + V run| + N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,speed|ٶ,slow| +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,kind| +Բ N disease| +Էʪ N disease| + N attribute|,behavior|ֹ,NotQuick|ګ,undesired|ݬ,&human| + N human|,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + V spill| + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V walk| + N human|,*walk| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V irrigate|,agricultural|ũ + N image|ͼ + N human|,*draw|,entertainment| + V talk|̸ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| +ɽҰ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,range|,extensive| + N sky| +Ҫ V propose|,content=price|۸,commercial| +ޱ߼ ADJ aValue|ֵ,area|,wide| +ޱ߼ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V spill| + V tour| + V tour|,#internet| + N human|,*tour| +á ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +á V deceive|ƭ +á V ExpressAgainst|Ǵ +á N human|,*ExpressAgainst|Ǵ +â N part|,%crop|ׯ +âڱ V uneasy| +â N fruit|ˮ +â N chemical|ѧ +â N time|ʱ,day| +ã ADJ aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãã ADJ aValue|ֵ,area|,wide| +ãã ADJ aValue|ֵ,clearness|,blurred| +ãȻ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãͷ V ignorant|֪ +ãͷ V unfixed|δ +ä V disable|м,scope=look| +ä ADJ disable|м,scope=look| +ä N part|,%AnimalHuman|,viscera| +ä V obey|ѭ +ä N location|λ,^$perception|֪ +ä V RashlyAct| +ä N human|,mass|,*roam| +äĿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +äĿ N human|,*salute|¾ +äĿ N attribute|,behavior|ֹ,rash|ç,&event|¼ +ä N location|λ,^$perception|֪ +ä N human|,undesired|ݬ,*disable|м,#look| +ä ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +äϹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +äͯ N human|,undesired|ݬ,young|,*disable|м,#look| +ä N character|,#disable|м,#look| +å N human|,ordinary| +æ V VieFor| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æ V VieFor| +æͣ V endeavour| +æ V endeavour| +æ͵ V rest|Ϣ,time=busy|æ +æµ V endeavour| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ææµµ V endeavour| +ç ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ç ADJ aValue|ֵ,clearness|,blurred| +ç N human|,rash|ç +çç ADJ aValue|ֵ,area|,wide| +çç ADJ aValue|ֵ,scene|,exuberant|ï,desired| +çԭ N land|½,surfacial|,desolate|,undesired|ݬ +çײ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +è N livestock| +è ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +èͷӥ N bird| +è N beast| +é N FlowerGrass| +é N character|,surname|,human|,ProperName|ר +é N FlowerGrass| +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é® N house| +éٿ V know|֪ +é N house| +ę́ N drinks|Ʒ,$addict|Ⱥ,ProperName|ר +ę́ N drinks|Ʒ,$addict|Ⱥ +é N house| +ê N tool|þ,*detain|ס,#ship| +ê N place|ط,#ship|,@stay|ͣ +ê N tool|þ,*detain|ס,#ship| +êλ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ë V BecomeLess|,commercial| +ë V BecomeLess|,scope=value|ֵ +ë ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ë ADJ aValue|ֵ,kind| +ë ADJ aValue|ֵ,property|,^succeed|ɹ +ë ADJ aValue|ֵ,size|ߴ,small|С +ë N bacteria|΢ +ë N character|,surname|,human|,ProperName|ר +ë N material|,?clothing| +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë CLAS unit|λ,&money|,(China|й) +ë N tree| +ë N PenInk|ī,*write|д +ëֽ N paper|ֽ,@write|д +ë N attribute|,quality|,weak|,undesired|ݬ,&thing| +ë N disease| +ë N phenomena|,undesired|ݬ,#BeBad|˥ +ë N material|,?tool|þ +ë N material|,?clothing| +ë ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ë N InsectWorm| +ë N shape| +ëػ N FlowerGrass|,?medicine|ҩ +ë N part|,%vegetable|߲,embryo|,$eat| +ë N vegetable|߲ +ë N part|,%AnimalHuman|,hair|ë +ë N material|,?clothing| +ëij N InstitutePlace|,@produce|,factory|,industrial| +ë N material|,?clothing| +ëȻ V fear| +ë N tool|þ,*wipe| +ë N tool|þ,*cover|ڸ,#sleep|˯ +ë N part|,%AnimalHuman| +ë˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritius|ë˹) +ë˹ N place|ط,country|,ProperName|ר,(Africa|) +ë˹¬ N money|,(Mauritius|ë˹) +ë˹ N human|,(Mauritius|ë˹) +ë ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritania|ë) +ë N place|ط,country|,ProperName|ר,(Africa|) +ë N human|,(Mauritania|ë) +ë N wealth|Ǯ,desired|,$earn|׬ +ë N quantity|,rate|,&wealth|Ǯ,#earn|׬ +ë N language|,#country|,ProperName|ר +ë N material|,?clothing| +ë¿ N livestock| +ëë N human|,young| +ëë N RainSnow|ѩ,weak| +ë N material|,?clothing| +ë N artifact|˹ +ëƤ N material|,?clothing| +ë N facilities|ʩ,#liquid|Һ,#crop|ׯ +ë ADJ aValue|ֵ,form|״ +ë N material|,?clothing| +ëɪǹ N weapon|,*firing| +ëë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ëԼ V recommend|Ƽ,content=self| +ë̺ N tool|þ,*cover|ڸ +ëϸ N part|,%AnimalHuman|,nerve| +ëϸѪ N part|,%AnimalHuman|,nerve| +ë N material|,?clothing| +ë N beast| +ë N clothing|,#body| +ë ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë N human|,official|,politics|,ProperName|ר,(China|й) +ëձ N material|,?clothing| +ë֯Ʒ N clothing| +ë֯Ʒ N material|,?clothing| +ë N tree| +ë״ ADJ aValue|ֵ,form|״ +ë N InsectWorm| +ì N weapon|,stab| +ì V FitNot| +ì ADJ aValue|ֵ,similarity|ͬ,FitNot| +ì N fact|,FitNot| +ì״ ADJ aValue|ֵ,form|״,acute| +ìͷ N weapon|,*stab| +í V fasten|˩,industrial| +í N part|,%implement| +í V fasten|˩,industrial| +î N character|,(China|й) +îʱ N time|ʱ,hour|ʱ +î N part|,%artifact|˹,#wood|ľ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ð ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ð ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ð V jet| +ð V venture|ð +ð V RegardAs|,means=pretend|װ +ð V jet| +ð V offend| +ð V venture|ð +ð V excrete|й,patient=waste| +ð V angry| +ð V appear| +ð V appear|,manner=many| +ð ADJ qValue|ֵ,amount|,many| +ð V surpass|ǿ +ð V GoForward|ǰ,manner=rash|ç +ð V collect|,means=cheat|ƭ +ð V venture|ð +ð N human|,rash|ç +ð V naming|,ResultIsa=name| +ð V replace|,means=naming|,#name| +ð ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ðƻ N thing|,$forge|α +ðʧ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ð֮ V venture|ð,content=suffer|,#ExpressAgainst|Ǵ +ð ADJ aValue|ֵ,circumstances|,dangerous|Σ +ð ADJ aValue|ֵ,courage|,brave| +ð V venture|ð +ðռ N human|,*venture|ð +ð ADJ aValue|ֵ,clearness|,blurred| +ð V use| +ðз ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ð V venture|ð,content=WeatherBad| +ð V venture|ð +ðΣ V venture|ð +ñ N clothing|,#head|ͷ +ñ N part|,%physical| +ñ N mark|־,$PutOn| +ñ N clothing|,#head|ͷ +ñ N part|,%clothing|,#head|ͷ +ñ N clothing|,#head|ͷ +ñ N mark|־ +ñ N part|,%clothing|,#head|ͷ +ò N attribute|,appearance|,&physical| +ò V BeIndependent| +ò V BeSimilar| +òʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ó N affairs|,commercial| +óٻ N institution|,commercial|,ProperName|ר,(China|й) +ó N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +óȻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ó N affairs|,#buy|,#sell|,commercial| +óױ N facilities|ʩ,*obstruct|ֹ,#commercial| +óײ N institution|,#commercial|,ProperName|ר,politics| +ó׶ N quantity|,amount|,&sell|,commercial| +ó׷ N law|ɷ,#commercial| +ó N quantity|,amount|,&sell|,commercial| +ó N quantity|,amount|,#InDebt|,&commercial| +ó N place|ط,commercial| +ó N human|,commercial| +ó˳ N quantity|,amount|,#earn|׬,&commercial| +ó N fact|,associate|,commercial| +óȶ N attribute|,circumstances|,peaceful|,&commercial| +óս N fact|,HaveContest|,#commercial| +ô STRU {MaChinese|} +õ N character|,(China|й) +õ N FlowerGrass| +ö CLAS NounUnit|,&inanimate| +÷ N character|,surname|,human|,ProperName|ר +÷ N fruit|ˮ +÷ٿ N money|,(Mozambique|Īɣȿ) +÷ N disease| +÷ N FlowerGrass| +÷¹ N beast| +÷ N RainSnow|ѩ +÷ N fruit|ˮ +ø N part|,animate| +ù N bacteria|΢ +ù V OutOfOrder| +ù N bacteria|΢ +ù V OutOfOrder| +ù N time|ʱ,season|,#RainSnow|ѩ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N part|,%facilities|ʩ,mine| +ú N stone|ʯ,waste| +ú˶ N stone|ʯ,material|,$burn| +ú N stone|ʯ,material|,$burn|,waste| +ú N material|,liquid|Һ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N InstitutePlace|,mine| +ú N material|,gas|,$burn| +ú N tool|þ,cubic|,@store|,#gas| +ú N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +ú N material|,$burn| +ú̿ N tool|þ,material|,*lighting|ȼ,$burn| +ú N land|½,#mine| +ú N gas|,waste| +ú N stone|ʯ,waste| +úҤ N facilities|ʩ,mine| +ú N material|,liquid|Һ,$burn| +ú N material|,waste|,$burn| +úש N tool|þ,material|,$burn| +ú N material|,$burn| +û V OwnNot| +û V disappear|ʧ +û V inferior| +û V sink|³ +û V spill| +û ADV {neg|,past|} +û ADV {neg|} +ûݲ V remember|ǵ +ûϢ V BeUnable|,content=prosper| +ûʶ ADJ BeUnable|,content=speak|˵ +û V BeUnable| +û V BeUnable| +ûֿ ADJ aValue|ֵ,wholeness|ȱ,complete| +ûϵ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V OwnNot|,possession=strength| +û ADJ aValue|ֵ,content|,boring|,undesired|ݬ +û V decline|˥ +ûŶ ADJ aValue|ֵ,possibility|,impossible| +û ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +û V die| +ûŪ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +û׶ V ignorant|֪ +û׶ V unfixed|δ +ûûҹ ADJ aValue|ֵ,duration|,TimeLong| +ûʲô ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û¶ ADJ aValue|ֵ,circumstances|,idle|,desired| +û¶ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V levy| +ûܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷû ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ûû ADJ aValue|ֵ,behavior|ֹ,continuous| +ûû ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +û V shameless|û +û ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +û V ExistNot| +û V OwnNot| +û V inferior| +û ADV {neg|,past|} +ûб ADJ aValue|ֵ,content|,empty| +ûв ADJ aValue|ֵ,content|,pure|,desired| +ûг嵭 ADJ aValue|ֵ,concentration|Ũ,concentrated| +ûи ADJ aValue|ֵ,circumstances|,relax|,desired| +û׶ V unfixed|δ +û ADJ aValue|ֵ,occasion|,quiet|,desired| +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,relax|,desired| +ûѧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +û׼ V unfixed|δ +û谭 ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ +û׼ V unfixed|δ +ü N part|,%AnimalHuman|,hair|ë +ü N part|,%paper|ֽ,head|ͷ +üɫ V joyful|ϲ +üЦ V laugh|Ц +üȥ V show|,content=lascivious| +üë N part|,%AnimalHuman|,hair|ë +üĿ N attribute|,appearance|,&AnimalHuman| +üĿ N attribute|,outlook|ǰ,&event|¼ +üĿ N attribute|,prettiness|,&AnimalHuman| +üĿ N part|,%thinking|˼,nerve| +üĿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ü N part|,%AnimalHuman|,hair|ë +üͷ N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,head|ͷ +ý N human|,*reconcile|,#GetMarried| +ý N physical|,*connect| +ý N institution|,*disseminate|,#news| +ý N physical|,*connect| +ý N human|,*reconcile|,#GetMarried| +ý N human|,*reconcile|,#GetMarried| +ý N institution|,*disseminate|,#news| +ý N tool|þ,*disseminate| +ý N physical| +þ N metal| +þ N lights| +þש N material|,*build| +ÿ ADJ qValue|ֵ,amount|,all|ȫ +ÿ CONJ {time|ʱ} +ÿ CONJ {time|ʱ} +ÿ V decline|˥ +ÿÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿʮ ADJ aValue|ֵ,frequency|Ƶ +ÿʱÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿһ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,day| +ÿСʱһ ADJ aValue|ֵ,frequency|Ƶ +ÿҳ N quantity|,amount|,&part|,#readings| +ÿҹ ADJ aValue|ֵ,frequency|Ƶ +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,week| +ÿܶ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿһ N time|ʱ,day|,#week| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + V satisfied| +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,(US|) + N attribute|,name|,good|,&entity|ʵ + N {prettiness|} + N attribute|,behavior|ֹ,good|,&human| + N part|,beautiful|,%AnimalHuman|,hair|ë + N money|,(US|) + N experience|,#beautiful| + N fact|,plan|ƻ,#shows|,entertainment| + N human|,#occupation|ְλ,*plan|ƻ,#shows|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + N place|ط,country|,ProperName|ר,(North America|) + N mark|־,#country|,(US|) + N army|,ProperName|ר,(US|) + N army|,ProperName|ר,(US|) +½ս N army|,ProperName|ר,(US|) + N human|,black| +վ N army|,ProperName|ר,(US|) +½ N army|,ProperName|ר,(US|) + N human|,(US|) + N institution|,*research|о,#aircraft|,(US|) + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V beautify| + ADJ aValue|ֵ,status|,(US|) + N human|,(China|й),(US|) + N money|,(US|) + N attribute|,scene|,beautiful|,&inanimate| + N drinks|Ʒ,good|,$addict|Ⱥ + N army|,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + N institution|,news|,ProperName|ר,(US|) + ADJ aValue|ֵ,circumstances|,happy|,desired| +ò ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ò N attribute|,appearance|,beautiful|,&human| + N thought|ͷ,#dream|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N attribute|,reputation|,glorious|,&human|,&organization|֯ + N human|,male|,beautiful|,desired| +Ů N human|,female|Ů,beautiful|,desired| +Ի V naming| + N human|,desired|,beautiful|,female|Ů + V MakeUp|ױ,#human| +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#human| +ҵ N affairs|,*MakeUp|ױ,#human| +Ժ N InstitutePlace|,@MakeUp|ױ,commercial| + N human|,commercial|,(US|) +ʳ N edible|ʳ,good|,desired| +ʳ N human|,able|,#eat| +ʽ ADJ aValue|ֵ,pattern|ʽ,(US|) + N fact|,*draw| + N knowledge|֪ʶ,entertainment| + N InstitutePlace|,@display|չʾ,literature| + N community|,literature| + N place|ط,country|,ProperName|ר,(US|),(USSR|) +̸ N fact|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N food|ʳƷ,#taste|ζ,good|,desired| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#literature| +ѧ N human|,#knowledge|֪ʶ + V praise|佱 + N affairs|,education|,#entertainment| + N attribute|,reputation|,glorious|,&human|,&organization|֯ +Ԫ N money|,(US|) +Ժ N InstitutePlace|,@teach|,@study|ѧ,#entertainment|,education| +Ժѧ N human|,*study|ѧ,education|,entertainment| +չ N InstitutePlace|,@display|չʾ,literature| +в N attribute|,quality|,weak|,undesired|ݬ,&thing| + N place|ط,ProperName|ר + V joyful|ϲ + V ignorant|֪ + V sleep|˯ + N human|,family|,female|Ů +÷ N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,young|,female|Ů + V please|ȡ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̬ N attribute|,bearing|̬,#please|ȡ,&human|,undesired|ݬ + V please|ȡ,target=foreign| + CLAS NounUnit|,&community|,#family| + CLAS NounUnit|,&knowledge|֪ʶ + CLAS NounUnit|,&weapon| + N attribute|,kind|,&physical| + N community|,#family| + N community|,#knowledge|֪ʶ + N community|,religion|ڽ + N method| + N part|,%building|,mouth| + N part|,%implement| +Ű N part|,%implement|,*hold|,*OpenShut|,hand| +Ű N tool|þ,*cover|ڸ,*protect|,#mouth|,#house| +ų N part|,%AnimalHuman|,*bite|ҧ +Ŵ N part|,%building|,mouth| +ŵ V fit|ʺ,scope=status| +ŵ N method| +Ŷ N part|,%building|,mouth| +Ŷ N part|,%building|,mouth| +ŷ N human|,#occupation|ְλ,*defend|,#building| +ŷ N part|,%building|,#mouth|,@defend| +Ż N attribute|,status|,&human| +Ż N community| +Ż N part|,%building|,mouth| +Ż֮ N thinking|˼,biased|ƫ,undesired|ݬ +ż N method| +ż N part|,%building|,mouth| +Ž N human|,sport| +ž N human|,#occupation|ְλ,*defend|,#building|,police| +ž N method| +ſ N method| +ſ N part|,%building|,mouth| +ſȸ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ſ N human| +ſ N location|λ,space|ռ,#mouth|,#building| +ſ N part|,%building|,mouth| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%InstitutePlace|,#commercial|,mouth| + N tool|þ,*MakeSound| +¥ N part|,%building|,#mouth|,space|ռ +· N attribute|,relatedness|,&human| +· N method| + N attribute|,prettiness|,&physical| + N part|,%InstitutePlace|,#commercial|,mouth| + N mark|־,#building| + N symbol|,#building| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +ǰ N location|λ,%building|,mouth| + N fact|,exercise| + N part|,%building|,mouth| + N humanized| + N human|,*study|ѧ + N fact|,sell|,commercial| +в N part|,%InstitutePlace|,*sell|,commercial| + N room|,@GoInto| +ͥ N attribute|,status|,&human| +ͥ N part|,%building|,mouth| +ͥ ADJ aValue|ֵ,occasion|,bustling|,desired| +ͽ N human|,*study|ѧ +⺺ N human|,undesired|ݬ,unable|ӹ + N human|,#occupation|ְλ,*protect|,*defend| + N human|,*study|ѧ + N part|,%AnimalHuman|,*bite|ҧ + V cure|ҽ +ﲡ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ﲿ N part|,%InstitutePlace|,@cure|ҽ,medical|ҽ +ﻼ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + N attribute|,power|,&entity|ʵ + N fittings|,%building|,mouth| + N part|,%building|,mouth| + V FeelingByBad| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V cover|ڸ + V stay|ͣ +ƺ« N problem| + N fact|,frighten|Ż,undesired|ݬ + N thunder| +Ʋ V FeelingByBad| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ +ӳ N LandVehicle| + SUFFIX aValue|ֵ,mass| + V pregnant|,agricultural|ũ +ȶ V begin|ʼ +ȶ V pregnant| +ȷ V pregnant|,agricultural|ũ + V appear| +ѿ V pregnant|,agricultural|ũ + V HideTruth| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V cover|ڸ + V dizzy| + V guess|² + V obtain|õ + N place|ط,country|,ProperName|ר,(Mongolia|ɹ) +ɱ V HideTruth| +ɴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɵά N place|ط,capital|,ProperName|ר,(Uruguay|) +ɹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mongolia|ɹ) +ɹ N place|ط,country|,ProperName|ר,(Asia|) +ɹŹ N place|ط,country|,ProperName|ר,(Asia|) +ɹ N language|,#country|,ProperName|ר +ɺ V HideTruth| +ɻ V HideTruth| +ά N place|ط,capital|,ProperName|ר,(Liberia|) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N knowledge|֪ʶ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,bright| + V suffer|,content=unfortunate| +ƭ V deceive|ƭ + V cover|ڸ,Vachieve| + V suffer| +֮ܲԩ N suffer|,content=unfortunate| + N place|ط,city|,ProperName|ר,(Canada|ô) +ͷת V dizzy| +ͷת V ignorant|֪ +ڹ V ignorant|֪ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,clan| + N community|,#ally| + N place|ط,#community| +˹ N place|ط,country|,*ally|,military|,desired|,#(WWII|ս) +˾ N army|,#country|,*ally|,military|,desired|,#(WWII|ս) + N human|,friend|,$ally| +Ա N human|,friend|,$ally| + N human|,official|,#ally| + N metal| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| +͹ V attack|,manner=strong|ǿ +ͻ N beast| +ͻ V beat| +ͽ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N bird| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N beast| + N beast|,past| + N fact|,dream| +λ N thought|ͷ,#dream| +λӰ N thought|ͷ,#dream| +μ V perception|֪ +ξ N thought|ͷ,#dream| + N fact|,dream| + V expect|,degree=extreme| + N thought|ͷ,#dream| + V expect| + V excrete|й,medical|ҽ + V walk|,time=dream| + N human|,*walk|,*dream| +߽ V speak|˵,time=dream| +߽ N text|,#dream| +߽ N human|,*speak|˵,*dream| + N thought|ͷ,#dream| + N character|,surname|,human|,ProperName|ר +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bangladesh|ϼ) +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N place|ط,city|,ProperName|ר,(India|ӡ) + N human|,ProperName|ר,past|,literature|,(China|й) + V CausePartMove|,#eye| + V ill|̬ + V sleep|˯ +з V CausePartMove| +з۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +ۿ V look| +ۿ V look|,manner=strong|ǿ + N chemical|ѧ + V lavish|˷ +ҷ V lavish|˷ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N food|ʳƷ + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N crop|ׯ + V FondOf|ϲ + V MakeMisunderstand|ʹ֪ + V attract| + V ignorant|֪ +Թ N facilities|ʩ,complicated| +Թ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ժ ADJ aValue|ֵ,clearness|,blurred| +Ժ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ժ V dizzy| +Ի V MakeMisunderstand|ʹ֪ +Ի󲻽 V confuse| +Խ N direction|,wrong| + ADJ aValue|ֵ,clearness|,blurred| + V FondOf|ϲ +· V ignorant|֪,content=direction| +· N part|,%AnimalHuman|,viscera| +ã ADJ aValue|ֵ,clearness|,blurred| +ȹ N clothing|,#leg|,#female|Ů + ADJ aValue|ֵ,ability|,&attract| + V FondOf|ϲ +ʧ V lose|ʧȥ +; V ignorant|֪ + N CloudMist|,blurred| + N entity|ʵ,*deceive|ƭ + N believe|,undesired|ݬ + N emotion|,believe|,undesired|ݬ +ס V attract| + V ignorant|֪ + N problem|,#guess|²,#recreation| +յ N result| + N problem|,#guess|²,#recreation| + ADJ aValue|ֵ,range|,all|ȫ +ֲ V enrich|ʵ +ֲ...IJ V enrich|ʵ +ֺ V enrich|ʵ + N humanized|,religion|ڽ + V BeNear|,partner=die| +֮ N time|ʱ,@BeNear|,#die| + V disperse|ɢ + N fact|,religion|ڽ +ɢ V disperse|ɢ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N part|,%plant|ֲ,embryo| + CLAS unit|λ,&length| +״ N material|,#food|ʳƷ,$eat|,sour| +׷ N food|ʳƷ +׷ N food|ʳƷ +׷ N material|,?food|ʳƷ,#crop|ׯ +׻ ADJ aValue|ֵ,color|ɫ,yellow| +׾ N drinks|Ʒ,$addict|Ⱥ + N place|ط,city|,ProperName|ר,(Italy|) + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N material|,?food|ʳƷ,#crop|ׯ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| + N food|ʳƷ,liquid|Һ + N InsectWorm| +н ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ˮ N water|ˮ,waste| + ADJ aValue|ֵ,behavior|ֹ,secret| +ط N document|,medical|ҽ,#medicine|ҩ +ط N method|,*cure|ҽ +ؾ N method|,secret| +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Peru|³) +³ N place|ط,country|,ProperName|ר,(South America|) +³ N human|,(Peru|³) + ADJ aValue|ֵ,behavior|ֹ,secret| + N fact|,secret| +ܻ N fact|,discuss|,secret| + N human|,#occupation|ְλ,employee|Ա +鳤 N human|,#occupation|ְλ,official| +鴦 N part|,%institution|,politics|,(institution|=UN|Ϲ) +鴦 N part|,%organization|֯ + N part|,%organization|֯ + N information|Ϣ + V LookFor|Ѱ +ʳ V LookFor|Ѱ,content=edible|ʳ + V excrete|й + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,taste|ζ,sweet| + N food|ʳƷ +۷ N InsectWorm|,*fly| +۸ N fruit|ˮ +۽ N food|ʳƷ,#fruit|ˮ + N part|,%FlowerGrass|,nerve| + N time|ʱ,#GetMarried| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ܱ ADJ aValue|ֵ,property|,$shut|ر +ܲɷ ADJ aValue|ֵ,relatedness|,intimate| +ܲ V exist| +ܶ N attribute|,density|ܶ,&physical| +ܷ ADJ aValue|ֵ,property|,$shut|ر +ܷȦ N tool|þ,*shut|ر +ܷ N attribute|,tightness|ɽ,&implement| +ܼ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ܼ ADJ aValue|ֵ,property| + N tree| + N symbol|,secret| + ADJ aValue|ֵ,density|ܶ,dense| +ܲ ADJ aValue|ֵ,density|ܶ,dense| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,density|ܶ,dense| +ı V plan|ƻ +ı N human|,*plan|ƻ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| + V discuss|,manner=secret| +ʵ ADJ aValue|ֵ,density|ܶ,dense| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̸ N fact|,talk|̸,secret| +̸ V talk|̸,manner=secret| +̽ N human|,#occupation|ְλ,police|,military|,*scout| +Ъ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,friend| +Ʋ V AptTo| +ֲ V planting|ֲ,agricultural|ũ + N crop|ׯ,?material| +ް N clothing|,#body| +ޱ N tool|þ,*cover|ڸ,#sleep|˯ +޲ N material|,?clothing|,?tool|þ +޷ N fact|,produce| +޷ij N InstitutePlace|,@produce|,factory|,industrial| +޷֯ N fact|,produce| +޺֩ N InsectWorm|,undesired|ݬ +޺ N clothing|,#body| +޻ N material|,?clothing|,?tool|þ +޿ N clothing|,#leg| + N InsectWorm| +ë N clothing|,#leg| +ë N clothing|,#body| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ɴ N material|,?clothing| + N land|½,@planting|ֲ,#crop|ׯ + N tool|þ,linear|,*fasten|˩ +Ь N clothing|,#foot| + N material|,?clothing|,?tool|þ + N InsectWorm|,undesired|ݬ + N clothing| +֯Ʒ N clothing|,generic|ͳ + N part|,%plant|ֲ,embryo| + V sleep|˯ + ADJ aValue|ֵ,hardness|Ӳ,soft| + N material|,clothing| +ౡ N attribute|,strength|,&human| +೤ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V enlarge| + N livestock| + N place|ط,city|,ProperName|ר,(China|й) +ب V enlarge| + N clothing|,#head|ͷ,royal| + V discharge| + V escape| + V exempt| + V remove| + V exempt| + V obstruct|ֹ + V escape| + ADJ aValue|ֵ,property|,^$pay| + V OwnNot|,possession=clothing| + V StripOff|ȥ,patient=clothing| +Ʊ ADJ aValue|ֵ,property|,^$pay| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,cheap| +ȥ V discharge|,Vachieve| + V escape| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V aValue|ֵ,ability|,able|,$exempt| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V exempt|,ResultEvent=submit| +˰Ʒ N artifact|˹ + V exempt|,ResultEvent=punish|,police| + ADJ aValue|ֵ,ability|,able|,exempt|,#disease|,medical|ҽ + ADJ attribute|,ability|,able|,exempt|,#disease|,medical|ҽ + N attribute|,ability|,escape|,&human| + V exempt|,ResultEvent=accuse|ظ,police| + V exempt| + V exempt| +˰ V exempt|,ResultEvent=submit| +ְ V dismiss| + V exempt|,ResultEvent=punish|,police| + V endeavour| + V mobilize| + V mobilize| + V urge|ʹ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ǿ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǿ V endeavour| +ǿ V force|ǿ +ǿ ADJ qValue|ֵ,amount|,few| + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Burma|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Burma|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +廳 V LookBack| + V LookBack| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ԫ N money|,(Burma|) + ADJ aValue|ֵ,hardness|Ӳ,soft| + N attribute|,range|,&entity|ʵ + V facing| + N food|ʳƷ + N location|λ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%entity|ʵ,aspect| + N part|,%image|ͼ + N part|,%physical|,head|ͷ + N part|,%physical|,surfacial| + N part|,%physical|,surfacial|,external| + N shape| + N part|,%implement| + N tool|þ,#cook| + N food|ʳƷ + N LandVehicle|,*tour| +ͻ N food|ʳƷ +ʦ N human|,#occupation|ְλ,*cook| +治ɫ V calm| +沿 N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ +泯 V facing| + V facing| + V facing| + V facing| + N quantity|,amount|,&money| + N material|,?food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ +۳ N InstitutePlace|,@produce|,factory|,industrial| + V excited| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N food|ʳƷ +Ƽ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,size|ߴ,surfacial|,&inanimate| + N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ + N tool|þ,*cover|ڸ + N part|,%AnimalHuman|,skin|Ƥ + N material|,?clothing| + V facing| +ò N attribute|,appearance|,#skin|Ƥ,&AnimalHuman| +ò N attribute|,appearance|,&inanimate| +òһ ADJ aValue|ֵ,newness|¾,new|,desired| + N part|,%entity|ʵ,aspect|,all|ȫ +㵽 ADJ aValue|ֵ,range|,all|ȫ + V disappointed|ʧ +Ŀ N attribute|,appearance|,&AnimalHuman| +Ŀ N attribute|,appearance|,&inanimate| +Ŀ N attribute|,reputation|,&human| +Ŀȫ V change|,result=^$perception|֪ +Ŀһ V change|,StateFin=new| + N part|,%AnimalHuman|,skin|Ƥ +Ǣ V discuss| +ǰ N location|λ,InFront|ǰ + N attribute|,appearance|,&AnimalHuman| +ɫ V fear| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɴ N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,relatedness|,intimate| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ʳ N food|ʳƷ + V appear| + V appear| + V meet| + V teach|,manner=self| +ڻ V teach|,content=method|,manner=self| + ADJ aValue|ֵ,relatedness|,intimate| + N tool|þ +̸ V talk|̸ + N food|ʳƷ,liquid|Һ + N food|ʳƷ + N food|ʳƷ +ɫ V fear| + V benefit| + V facing| + V discuss| + N tool|þ,*protect|,#skin|Ƥ +ֵ N attribute|,value|ֵ,&coupon|Ʊ֤,&money| +ֵ N quantity|,amount|,&coupon|Ʊ֤,&money| + N attribute|,reputation|,&human|,&organization|֯ + N part|,%physical|,skin|Ƥ + N animal|,young| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N physical|,young| + N plant|ֲ,young| +紲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ľ N plant|ֲ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,fatness|,bony|,desired| +ͷ N phenomena|,#fact| + N human|,future| +կ N place|ط,village| + N human| + N plant|ֲ,young| + N community|,ProperName|ר,(China|й) + V MakeBetter|Ż + V copy|д +軭 V describe|д +軭 V draw| + V describe|д +ü V MakeUp|ױ +ġ V describe|д + V describe|д + N describe|д + V describe|д +д V describe|д + V AimAt| +׼ V AimAt| + ADJ aValue|ֵ,size|ߴ,small|С + V despise| +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N time|ʱ,hour|ʱ + N time|ʱ,special| + CLAS unit|λ,&time|ʱ + N tool|þ,*tell|,#time|ʱ + N part|,%tool|þ,#tell|,#time|ʱ,#minute| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +ã V aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,clearness|,blurred| +ã V unfixed|δ +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,space|ռ,religion|ڽ + N InstitutePlace|,*sell|,@buy|,commercial| + N facilities|ʩ,religion|ڽ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,content|,refined| + ADJ aValue|ֵ,age|,young| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N knowledge|֪ʶ,superior| +ֻش V succeed|ɹ,scope=cure|ҽ + N text|,interesting|Ȥ + N human|,*BeAble|ܹ,#speak|˵ + V despise| + V slander|̰ + V despise| + V TurnOff|ֹ + V destroy| + V disappear|ʧ + V sink|³ +֮ N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + V TurnOff|ֹ + V remove|,patient=fire| + N tool|þ,*remove|,#fire| + N tool|þ,*remove|,#fire| + V perish| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V destroy| + N destroy| + V destroy|,patient=bacteria|΢,medical|ҽ + V kill|ɱ,crime| + V perish| + V disappear|ʧ + N human|,mass| + ADJ aValue|ֵ,attachment| + N human|,military| + V unfortunate| + N attribute|,behavior|ֹ,&human|,&organization|֯ + N law|ɷ +񷨵 N document|,#law|ɷ + N house| + N emotion|,angry|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N music| +谮 N human|,*FondOf|ϲ,#music| + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,employee|Ա +񹤳 N fact|,#employee|Ա + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N affairs|,#VehicleGo|ʻ,#aircraft| + ADJ aValue|ֵ,attachment| + N location|λ,%community| + N community|,politics|,ProperName|ר,(China|й) + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,police| + N institution|,police| + N music| + N community|,politics|,ProperName|ר,(China|й) +Ʒ N artifact|˹,^military|,generic|ͳ + N attribute|,circumstances|,&human|,&organization|֯ + N emotion| +Ȩ N rights|Ȩ + N affairs| + ADJ aValue|ֵ,attachment| +° N fact|,police| + N fact|,police| + N duty|,police| + N attribute|,habit|ϰ,&human| +ѧ N knowledge|֪ʶ +ί N institution|,#community|,ProperName|ר,politics|,(China|й) + N emotion| +ѡ V undergo|,content=select|ѡ,agent=community| + N expression| +ҥ N music| + N aspiration|Ը,expect| + V estimate| + N estimate| +ר N human|,*investigate| + ADJ aValue|ֵ,ability|,able|,$use| +Թ V unsatisfied| + N fact|,function|,politics| + N human|,undesired|ݬ,*betray|,treacherous| + N affairs| + N institution|,ProperName|ר,politics| + N human|,mass| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N community|,politics|,ProperName|ר,(US|) + N community|,politics|,(China|й) + N human|,politics| + V ize|̬ + N thinking|˼ + N community| +ͥ N community| + N place|ط,village| + N human| +ʲ׼ N community| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| + V apply|ͿĨ + V drink| + V fold|ߡ + V inlay|Ƕ + V shut|ر + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,ability|,nimble|,#perception|֪ +ж N attribute|,behavior|ֹ,clever|,&physical| + N attribute|,behavior|ֹ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human|,&organization|֯ + V pity| + V sad|dz + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + N aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N ability|,#look|,#eye| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,future|,day| + V understand| + N attribute|,brightness|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ƿ V distinguish|ֱ,content=correctness| +鰵 V investigate| +찵 V investigate| + V know|֪ + ADJ aValue|ֵ,content|,easy|,desired| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + N time|ʱ,ProperName|ר,#royal|,#country| + N facilities|ʩ,*illuminate| + N time|ʱ,future|,day| + N chemical|ѧ + N facilities|ʩ + N celestial| +λ ADJ aValue|ֵ,brightness|,bright| + N fire| +ִ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + N material|,sticky| + N tool|þ,*look|,#self|,bright| + N phenomena|,#judge|ö,fair|,police| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,easy|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ know|֪ + ADJ aValue|ֵ,content|,opened| + V know|֪ + N text|,*order| + ADJ aValue|ֵ,content|,opened| + N symbol| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ŀ V brighten|ʹ,patient=eye| +Ŀŵ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +մ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,year|,future| +ǰ N part|,%plant|ֲ,hair|ë + N time|ʱ,ProperName|ר,#royal|,#country| +ȷ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ȷ V decide| +˲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N time|ʱ,future| + N time|ʱ,future|,day| +ջƻ N physical|,used| +ʯ N chemical|ѧ +ʾ V teach|,manner=opened| +˵ V speak|˵,opened| +˹ N place|ط,capital|,ProperName|ר,(Byelorussia|׶˹) + N time|ʱ,future| + N time|ʱ,future|,day| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ϸ ADJ aValue|ֵ,property|,$enrich|ʵ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +Ϻ N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N tool|þ,*transmit|,#electricity| +Ƭ N letter|ż + N human|,*perform|,glorious|,entertainment| + N human|,wise|,desired| + N celestial| +ܱ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V fight| +֤ N information|Ϣ,*prove|֤ +֪ V know|֪ +֪ʷ V disobey|Υ +֪ V ask| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N material|,$burn|,*lighting|ȼ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,family|,male|,young| + V MakeSound| + V cry| + V express|ʾ +ƽ V protest| + V MakeSound| + V cry| +ձ V cease|ͣ,content=fight|,military| +࿪ V guide| +ǹ V firing| +ǹʾ V firing| + N bird|,#MakeSound| +л V thank|л +ԩ V protest| + V cry|,#bird| + N weapon|,past| + V carve| + V remember|ǵ + V carve| + V remember|ǵ + N mark|־,#implement| + N text|,$carve| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,name|,&entity|ʵ +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,reputation|,Notwellknown| +鴫 ADJ aValue|ֵ,trueness|α,true|,desired| + N food|ʳƷ,glorious| + N account|,*record|¼,#name| + N drinks|Ʒ,glorious| + N artifact|˹,glorious|,generic|ͳ,commercial| + N LandVehicle|,glorious| + N attribute|,name|,&entity|ʵ + N place|ط,glorious| + N human|,*cook|,glorious| +ʷ ADJ aValue|ֵ,reputation|,glorious|,desired| + N part|,%language| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ʵ V perish| + N account|,*record|¼,#name| + N quantity|,amount|,&human|,&organization|֯ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N place|ط,city|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,value|ֵ,precious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N attribute|,name|,&organization|֯ + N human|,desired|,able|,glorious| + N human|,official|,glorious|,military| + N human|,*perform|,glorious|,entertainment| + V undergo|,content=naming| + N drinks|Ʒ,$addict|Ⱥ,glorious| + N expression|,glorious| + N attribute|,reputation|,wealth|Ǯ,&human|,&organization|֯ +˫ V obtain|õ,possession=reputation|,possession=wealth|Ǯ + N {NounUnit|} + V become|Ϊ +а V succeed|ɹ,scope=HaveContest| +а V succeed|ɹ,scope=compete| +ǰé V succeed|ɹ,scope=HaveContest| + N human|,*perform|,glorious|,entertainment| + N human|,desired|,able|,glorious| +ɽ V fail|ʧ +Ŀ N attribute|,kind|,&inanimate| +Ŀ ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N artifact|˹,glorious|,generic|ͳ,commercial| + N mark|־,#name| + N mark|־,*visit| + N mark|־,desired|,glorious| +ƲƷ N artifact|˹,glorious|,generic|ͳ,commercial| +Ƭ N tool|þ,*display|չʾ,#status|,#occupation|ְλ,#name| +Ʒ N artifact|˹,glorious|,generic|ͳ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N music|,glorious| + N human|,desired|,glorious| +ɽ N land|½,glorious| +ɽ N place|ط,glorious| + N attribute|,reputation|,&human|,&organization|֯ + V enjoy|,content=glorious| +ʤ N place|ط,glorious|,@tour| +ʤż N place|ط,glorious|,beautiful|,desired|,#tour| +ʦ N human|,*teach|,glorious| +ʿ N human|,desired|,glorious| + N human|,literature|,glorious| + N attribute|,kind|,&inanimate| + N reason| + N result| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N location|λ + N text|,glorious|,desired| +ĺ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҽ N human|,medical|ҽ,*cure|ҽ,glorious| + ADJ aValue|ֵ,trueness|α,fake|α + N attribute|,name|,&entity|ʵ + ADJ aValue|ֵ,trueness|α,fake|α + N human|,*perform|,glorious|,entertainment| +ŲƷ N artifact|˹,glorious|,generic|ͳ,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + N attribute|,reputation|,&human|,&organization|֯ +ɨ V unfortunate|,scope=disgraced| +һʱ V enjoy|,content=glorious| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N publications|鿯,glorious| + N attribute|,name|,&entity|ʵ + N publications|鿯,glorious| + N attribute|,circumstances|,&human|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N information|Ϣ,*order| + V order| + N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| + V write|д + N attribute|,strength|,&animate|,&organization|֯ + V order| + N text|,*order| + N attribute|,strength|,&animate|,&organization|֯ + N part|,%AnimalHuman|,strength| + V RegardAs| + N human|,*RegardAs| + N information|Ϣ +; V unfortunate| + N attribute|,circumstances|,&human| + V shoot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N text|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ + V LookFor|Ѱ + V TryToKnow|Ū + V feel| + V stroke| +Ŷ V ignorant|֪ +ͷ V ignorant|֪ + V PickOut|γ + V TryToKnow|Ū + V LookFor|Ѱ,content=route|·,time=night| +Ŷ V understand| + V TryToKnow|Ū + V LookFor|Ѱ + V TryToKnow|Ū +ͷ V understand| +͸ V understand| +Ϲ V LookFor|Ѱ,content=route|·,time=night| +ġ V copy|д +ġ V imitate|ģ +ġд V copy|д +ġд V describe|д +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ N vegetable|߲ +Ģ V MakeTrouble| +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ V slack|͵ +Ģ N vegetable|߲ +Ģ N CloudMist| +ģ N regulation| +ģ N tool|þ,*produce| +ģ N tool|þ,*build| +ģ N tool|þ,*produce| +ģ N human|,desired|,$imitate|ģ +ģ V imitate|ģ +ģ V CauseToDo|ʹ,ResultEvent=blurred| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ V mix| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ N tool|þ,*produce| +ģ N part|,%entity|ʵ +ģ黯 V aValue|ֵ,property|,$ize|̬ +ģ黯 V ize|̬ +ģ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ģ V imitate|ģ +ģ N tool|þ,*imitate|ģ +ģʽ N attribute|,pattern|ʽ,&physical| +ģʽʶ V perception|֪,content=pattern|ʽ,#computer| +ģ N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģض N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģ N tool|þ,*produce| +ģѹ V produce|,industrial| +ģ N attribute|,appearance|,&AnimalHuman| +ģ N tool|þ,*produce| +Ĥ N part|,%AnimalHuman| +Ĥ N shape| +Ĥ V salute|¾ +ĤƬ N part|,%implement| +ĥ V MakeTrouble| +ĥ V OutOfOrder| +ĥ V brighten|ʹ +ĥ V grind|ĥ +ĥ V lavish|˷,patient=time|ʱ +ĥ V remove| +ĥ V rub|Ħ +ĥ N tool|þ,*grind|ĥ +ĥ V turn|Ťת +ĥ V embarrassed|Ϊ +ĥ V rub|Ħ +ĥ V slack|͵ +ĥ N machine|,*grind|ĥ +ĥ V sharpen|ʹ,patient=tool|þ +ĥʯ N tool|þ,*rub|Ħ +ĥÿ V AtEase| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ V brighten|ʹ +ĥ V OutOfOrder| +ĥ V improve| +ĥ N material|,*rub|Ħ,generic|ͳ +ĥ V disappear|ʧ +ĥ V remove| +ĥ N phenomena|,undesired|ݬ,#unfortunate| +ĥ V unfortunate| +ĥ N tool|þ,*grind|ĥ +ĥɰ N material|,?tool|þ +ĥʴ V OutOfOrder|,industrial| +ĥ V OutOfOrder|,industrial| +ĥ V grind|ĥ,industrial| +ĥ V CausePartMove|,PatientPartof=mouth| +ĥ V TalkNonsense|Ϲ˵ +ĥ V slack|͵ +ĥƤ V TalkNonsense|Ϲ˵ +ĥ V improve| +Ħ V research|о +Ħ V rub|Ħ +Ħ V stroke| +Ħ V HaveContest| +Ħ V rub|Ħ +Ħ N attribute|,strength|,rub|Ħ,&entity|ʵ +Ħ ADJ aValue|ֵ,newness|¾,new|,desired| +Ħ N tool|þ,*illuminate|,#LandVehicle| +Ħά N language|,#country|,ProperName|ר +Ħӵɳ N place|ط,capital|,ProperName|ר,(Somalia|) +Ħ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Morocco|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħķ N money|,(Morocco|Ħ) +Ħ N human|,(Morocco|Ħ) +Ħɸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,capital|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ħɸ N human|,(Monaco|Ħɸ) +Ħ ADJ aValue|ֵ,height|߶,tall| +Ħ¥ N house| +Ħ N machine| +Ħг N LandVehicle| +Ħд N ship| +Ħл N human|,military| +Ħ N InstitutePlace|,#tool|þ,#communicate|,commercial| +Ħͧ N ship| +Ħ V stroke| +ħ N humanized|,undesired|ݬ +ħ N method|,undesired|ݬ,*deceive|ƭ +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ +ħ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ħ N attribute|,power|,&human|,&organization|֯ +ħ N shows| +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħԱ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ,fierce| +ħ N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ +ħ N FlowerGrass|,?edible|ʳ +ħ N phenomena|,dangerous|Σ,#unfortunate| +Ĩ V TurnRound| +Ĩ V apply|ͿĨ +Ĩ V remove| +Ĩ V wipe| +Ĩ V weep| +Ĩ V suicide|ɱ +Ĩ V embarrassed|Ϊ +Ĩ N tool|þ,*wipe| +Ĩ N tool|þ +Ĩÿ V AtEase| +Ĩ V slander|̰ +Ĩ V apply|ͿĨ,material=material|,industrial| +Ĩȥ V remove| +Ĩɱ V remove| +Ĩɷ V remove| +Ĩ㾨 N beast|,*swim| +Ĩһӻ V fail|ʧ +ĩ N part|,%thing|,head|ͷ +ĩ N part|,%thing|,secondary| +ĩ N process|,ending|ĩ +ĩ N shape| +ĩ N time|ʱ,ending|ĩ +ĩ N location|λ,ending|ĩ +ĩ N time|ʱ,TenDays|Ѯ,#hot| +ĩ N time|ʱ,day|,#hot| +ĩ N part|,%thing|,secondary| +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N process|,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,#die| +ĩ N part|,%thing|,head|ͷ +ĩ N time|ʱ,ending|ĩ +ĩβ N process|,ending|ĩ +ĩҶ N time|ʱ,ending|ĩ,royal| +ĩ N shape| +Ī N character|,surname|,human|,ProperName|ר +Ī AUX {modality|} +Ī ADV aValue|ֵ,range|,all|ȫ +Ī ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Ī ADJ aValue|ֵ,content|,profound|,desired| +Īȱȸ N place|ط,capital|,ProperName|ר,(Papua New Guinea|Ͳ¼) +Ī CONJ {comment|} +Ī V inferior| +Ī״ ADJ aValue|ֵ,possibility|,impossible|,$describe|д +Ī N place|ط,capital|,ProperName|ר,(the Comoros|Ħ) +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ī ADV {modality|} +Ī ADV {modality|} +Īɣȿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mozambique|Īɣȿ) +Īɣȿ N place|ط,country|,ProperName|ר,(Africa|) +Īɣȿ N human|,(Mozambique|Īɣȿ) +Ī˹ N place|ط,capital|,ProperName|ר,(Russia|˹) +Ī ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Īһ V BeUnable|,content=decide| +ī N PenInk|ī,*write|д +ī ADJ aValue|ֵ,brightness|,dark| +ī ADJ aValue|ֵ,color|ɫ,black| +ī N community| +ī N knowledge|֪ʶ +ī N place|ط,country|,ProperName|ר,(Mexico|ī) +ī N artifact|˹,#image|ͼ,entertainment| +ī N fish| +ī N place|ط,city|,ProperName|ר,(Australia|Ĵ) +ī N character|,surname|,human|,ProperName|ר +ī N PenInk|ī,liquid|Һ,#write|д +ī ADJ aValue|ֵ,color|ɫ,black| +ī N trace|,#write|д +ī N tool|þ,*protect|,#eye|,#look| +ī ADJ aValue|ֵ,color|ɫ,green| +īɫ ADJ aValue|ֵ,color|ɫ,green| +īسɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +īط N human|,stiff| +īˮ N PenInk|ī,liquid|Һ,#write|д +īˮ N knowledge|֪ʶ +īˮ N trace| +ī ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mexico|ī) +ī N place|ط,country|,ProperName|ר,(South America|) +ī N place|ط,capital|,ProperName|ר,(Mexico|ī) +ī N human|,(Mexico|ī) +ī N waters|ˮ,(Mexico|ī) +ī N water|ˮ,(Mexico|ī) +ī N fish| +ī֭ N PenInk|ī,liquid|Һ,#write|д +Ĭ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ĭ V write|д +Ĭ V condole|° +Ĭ V recite|ж +Ĭ V recite|ж +Ĭ N shows| +ĬĬ ADJ aValue|ֵ,occasion|,quiet|,desired| +ĬĬ ADV aValue|ֵ,behavior|ֹ,gentle| +ĬĬ ADJ aValue|ֵ,reputation|,Notwellknown| +Ĭ V LookBack| +Ĭ V recite|ж +ĬƬ N shows| +Ĭ N result|,#agree|ͬ +ĬȻ ADV aValue|ֵ,behavior|ֹ,gentle| +Ĭ V agree|ͬ +Ĭ V write|д +Ĭ V think|˼ +Ĭд V write|д +Ĭ V agree|ͬ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N gas|,#liquid|Һ,round|Բ +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į N land|½,surfacial|,barren| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ĮĮ ADJ aValue|ֵ,area|,wide| +ĮĮ ADJ aValue|ֵ,clearness|,blurred| +ĮȻ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į V despise| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +İ N facilities|ʩ,route|· +İ· N human|,unfamiliar|϶ +İ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +İ N human|,unfamiliar|϶ +ı V plan|ƻ +ı V seek|ıȡ +ıƺ V kill|ɱ,purpose=wealth|Ǯ,crime| +ı V uprise| +ı V seek|ıȡ,possession=pros| +ı V kill|ɱ,crime| +ı V plan|ƻ +ı V seek|ıȡ,possession=fund|ʽ +ı N plans|滮 +ı V meet|,partner=EachOther|໥ +ı V seek|ıȡ +ıȡ V seek|ıȡ +ıɱ V kill|ɱ,crime| +ı V MakeLiving|ı +ı V seek|ıȡ +ı· V seek|ıȡ,possession=method|,#alive| +ıʿ N human|,friend| +ı V plan|ƻ,content=fact| +ı V seek|ıȡ,possession=occupation|ְλ +ı˽ V seek|ıȡ,possession=pros|,undesired|ݬ +ıְ V seek|ıȡ,possession=occupation|ְλ +IJ V seek|ıȡ +IJ V seek|ıȡ,possession=pros|,undesired|ݬ +IJ V seek|ıȡ,possession=wealth|Ǯ +IJȡ V seek|ıȡ +IJȡ V seek|ıȡ,possession=wealth|Ǯ +ij ADJ aValue|ֵ,kind|,certain|ij +ijij ADJ aValue|ֵ,kind|,certain|ij +ijЩ ADJ aValue|ֵ,kind|,certain|ij +Ĵ N character|,(China|й) +Ĵָ N part|,%AnimalHuman|,hand| +ĵ ADJ aValue|ֵ,sex|Ա,male| +ĵ N FlowerGrass| +ĵ N place|ط,city|,ProperName|ר,(China|й) +ĵ N fish| +Ķ CLAS unit|λ,&area| +Ķ N quantity|,amount|,&create|,agricultural|ũ +Ķ N quantity|,amount|,&create|,agricultural|ũ +ķ N character|,(China|й) +ķͰ N place|ط,capital|,ProperName|ר,(Swaziland|˹ʿ) +ĸ ADJ aValue|ֵ,importance|,main| +ĸ ADJ aValue|ֵ,sex|Ա,female|Ů +ĸ N human|,family|,female|Ů +ĸ N part|,%implement| +ĸ N part|,%thing|,base| +ĸ N emotion|,like|ϧ,kindhearted|,desired| +ĸ N plant|ֲ +ĸ N InsectWorm| +ĸ˾ N InstitutePlace|,commercial| +ĸ N livestock|,female|Ů +ĸ N aircraft| +ĸ N machine| +ĸ N bird|,female|Ů +ĸϻ N beast|,female|Ů +ĸϻ N human|,female|Ů,undesired|ݬ,fierce| +ĸ N livestock|,female|Ů +ĸţ N livestock|,female|Ů +ĸŮ N human|,family|,mass| +ĸ N human|,family|,female|Ů +ĸ N part|,%AnimalHuman|,$drink|,liquid|Һ +ĸι V feed|ι,patient=part|,#AnimalHuman| +ĸɽ N beast|,female|Ů +ĸʨ N beast|,female|Ů +ĸ N human|,family|,female|Ů +ĸϵ ADJ aValue|ֵ,attachment| +ĸ N image|ͼ,linear| +ĸ N part|,machine| +ĸУ N InstitutePlace|,@teach|,@study|ѧ,education| +ĸ ADJ aValue|ֵ,attachment| +ĸ N livestock| +ĸҺ N chemical|ѧ +ĸ N sound|,#language| +ĸ N language| +ĸ N plant|ֲ +ĸ N livestock|,female|Ů +ĸ N human|,family|,mass| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N mark|־,#facilities|ʩ,#bury|,#human|,#die| +Ĺ N part|,%facilities|ʩ,#facilities|ʩ,#bury|,#human|,#die|,route|· +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺǰ N location|λ,%facilities|ʩ,InFront|ǰ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĹѨ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĺ ADJ aValue|ֵ,earliness|,late| +ĺ N time|ʱ,night| +ĺ N time|ʱ,spring| +ĺij N fact|,persuade|Ȱ˵ +ĺ N aValue|ֵ,age|,aged| +ĺ N time|ʱ,#aged| +ĺɫ N attribute|,scene|,night|,&inanimate| +ĺ N CloudMist| +Ļ N part|,%shows| +Ļ N tool|þ,#perform| +Ļ N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,#perform| +Ļ N tool|þ,#perform|,*cover|ڸ,*decorate|װ +Ļ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +Ļ V incite|ָʹ,manner=hidden| +Ļ N human|,*incite|ָʹ,hidden| +Ļ N fact|,hidden|,undesired|ݬ +Ļ N fact|,hidden|,undesired|ݬ +Ļ N news|,#fact|,#hidden| +ĻϢ N time|ʱ,@rest|Ϣ,#look|,#listen|,#shows| +Ļ N human|,#occupation|ְλ,official| +ļ V gather|ɼ +ļ V include| +ļ V gather|ɼ,possession=fund|ʽ +ļ V gather|ɼ +ļ V gather|ɼ +ļ V gather|ɼ +Ľ V admire|Ľ +Ľ N character|,surname|,human|,ProperName|ר +Ľ V admire|Ľ +Ľ N place|ط,city|,ProperName|ר,(Germany|¹) +Ľ N character|,surname|,human|,ProperName|ר +ľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľ V paralyse|̱ +ľ N tool|þ,cubic|,@store|,#human|,#die| +ľ N tree| +ľ N wood|ľ +ľ N material|,wood|ľ +ľ N tool|þ,*print|ӡˢ +ľ N shape|,wood|ľ +ľ ADJ aValue|ֵ,attachment|,wood|ľ +ľ N material|,wood|ľ +ľ N material|,wood|ľ,*lighting|ȼ,$burn| +ľ N artifact|˹,$carve|,entertainment| +ľ N human|,#occupation|ְλ,industrial| +ľ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ľ N AlgaeFungi|ֲ +ľ N ship| +ľ N human|,#occupation|ְλ,employee|Ա +ľ N fruit|ˮ +ľ N shape|,wood|ľ +ľʯ N stone|ʯ +ľ N material|,?paper|ֽ +ľ N human|,#occupation|ְλ,employee|Ա +ľ V carve|,LocationFin=wood|ľ,literature| +ľ N shape|,wood|ľ +ľ N FlowerGrass| +ľ N material|,wood|ľ +ľ N SportTool|˶ +ľ N plans|滮 +ľ N tool|þ,*recreation| +ľ N crop|ׯ,?material| +ľ N human|,*die|,dried| +ľż N tool|þ,*recreation| +ľ N tool|þ,generic|ͳ,#wood|ľ +ľȻ V stupefied|ľȻ +ľ N fruit|ˮ +ľ̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ľͷ N material|,wood|ľ +ľͷľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľͷ˶ N human|,NotQuick|ګ,undesired|ݬ +ľϬ N FlowerGrass| +ľϬ N food|ʳƷ +ľϬ N tree| +ľ N celestial| +ľѳ V fixed|Ѷ +ľ N MusicTool| +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľګ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľܽ N FlowerGrass| +ľ N clothing|,#foot| +ľ N tool|þ,*beat| +ľ N food|ʳƷ +ľ N tree| +Ŀ N document|,@record|¼ +Ŀ N part|,%AnimalHuman|,#eye| +Ŀ N part|,%text| +Ŀ N purpose|Ŀ +Ŀ N tool|þ,#weapon|,$AimAt|,$firing| +Ŀֵ N quantity|,amount|,&entity|ʵ +Ŀʶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ĿϾ ADJ aValue|ֵ,amount|,many| +ĿϾ ADJ qValue|ֵ,amount|,many| +Ŀб V look|,manner=PayAttention|ע +Ŀת V look|,manner=PayAttention|ע +Ŀ V measure|,instrument=eye| +Ŀ N part|,%readings|,content| +Ŀ N purpose|Ŀ +Ŀĵ N location|λ,@arrive| +Ŀĸ N location|λ,@arrive| +Ŀɿڴ V stupefied|ľȻ +Ŀ V perception|֪,means=look| +Ŀ N experience| +Ŀ N thinking|˼ +Ŀdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ綹 ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ŀ׺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ŀ V perception|֪,means=look| +Ŀ N human|,*perception|֪ +Ŀ N human|,*prove|֤,#police| +Ŀ֤ N human|,*perception|֪ +Ŀ V perception|֪,means=look| +Ŀ N tool|þ,*look| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ŀ¼ N part|,%readings|,content| +Ŀ¼ N part|,%thing|,kind| +Ŀɫ V ignorant|֪ +Ŀǰ N time|ʱ,now| +Ŀ ADJ aValue|ֵ,property|,look| +Ŀ V farewell|,means=look| +Ŀ޷ ADJ aValue|ֵ,behavior|ֹ,undesired|ݬ +Ŀȫţ ADJ aValue|ֵ,ability|,able|,desired| +Ŀѣ V dizzy|,medical|ҽ +Ŀ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V TakeCare|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N FlowerGrass|,#livestock| + N place|ط,@foster|,#livestock|,agricultural|ũ + N music| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N land|½,#FlowerGrass| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ʦ N human|,#occupation|ְλ,religion|ڽ +ͯ N human|,agricultural|ũ,*TakeCare|,#livestock| +ͯ N human|,agricultural|ũ,*foster|,*TakeCare|,#livestock| + V TakeCare|,patient=livestock| +Ů N human|,female|Ů,agricultural|ũ,*foster|,*TakeCare|,#livestock| +Ȯ N livestock|,agricultural|ũ,*TakeCare|,#livestock| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ҵ N affairs|,#livestock|,agricultural|ũ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + N character|,surname|,human|,ProperName|ר +ºĬ N human|,religion|ڽ,ProperName|ר +˹ N human|,religion|ڽ + V CauseToDo|ʹ + V MakeTrouble| + V believe| + V catch|׽ס + V hold| + V occupy|ռ,military| + PREP {instrument} + PREP {patient} + PREP {scope} +ð V catch|׽ס,police| +òȥ ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò V BeUnable| +ò V BeUnable|,content=believe| +ò׼ V BeUnable|,content=believe| +ô V reverse|ߵ,sport| +õ V obtain|õ,means=take|ȡ +õ V BeAble|ܹ +õ V believe| +õ׼ V believe| +ö V decide| +û V catch|׽ס,police| +ü V show|,content=arrogant| + N human|,official|,politics|,ProperName|ר,(France|) +Ȩ V obtain|õ,possession=power|,politics| + V MakeTrouble| +ɧ N place|ط,capital|,ProperName|ר,(Bahamas|͹) + V manage| + ADJ aValue|ֵ,ability|,able|,desired| +ֺϷ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ + V decide| + ADJ aValue|ֵ,kind|,question| +Ķ N location|λ +Ķ N location|λ,question| + N location|λ + N location|λ,question| + CONJ {concession|ò} +λ PRON human|,question| +Щ ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,kind|,question| +һ N time|ʱ,day|,question| + STRU {MaChinese|} +ź V cry| +ź V cry| + N chemical|ѧ + ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + CONJ {EventResult|¼} +Dz˹ N place|ط,city|,ProperName|ר,(Italy|) +Ƕ N location|λ,question| +Ǹ ADJ aValue|ֵ,kind|,special| +ǻ N time|ʱ,special| + N location|λ,special| +ô ADV aValue|ֵ,degree|̶,more| +ô CONJ {EventResult|¼} +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ĩ CONJ {EventResult|¼} +ʱ N time|ʱ +ʱ N time|ʱ +Щ ADJ aValue|ֵ,kind|,special| +Щ PRON entity|ʵ + ADJ aValue|ֵ,degree|̶,more| + N time|ʱ + N character|,(China|й) + V include| + V pay|,commercial| + V receive| + V submit| +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɸ V enjoy|,content=happy| +ɺ V surprise| +ɻ V entice|,means=GiveAsGift|,crime| +ɻ V receive|,possession=artifact|˹,crime| +ɽ V win|ʤ,military| + V enjoy|,content=chilly| + V ignorant|֪ +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Namibia|ױ) +ױ N place|ط,country|,ProperName|ר,(Africa|) +ױ N human|,(Namibia|ױ) + V include| +˰ V pay|,content=expenditure| +˰ N human|,*pay| +˰ N duty|,#pay| + N community|,ProperName|ר,(China|й) + N gas| +ʵ N tool|þ,*illuminate| + V be| + CONJ {EventResult|¼} + V be| + CONJ {supplement|ݽ} + V feed|ι,patient=drinks|Ʒ + V feed|ι,patient=drinks|Ʒ,means=part|,#AnimalHuman| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| +̲ N drinks|Ʒ +̷ N food|ʳƷ + N food|ʳƷ + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +ţ N InstitutePlace|,*foster|,livestock| +Ƥ N food|ʳƷ +ƿ N tool|þ,cubic|,@put|,*feed|ι +ˮ N part|,%AnimalHuman|,$drink|,liquid|Һ + N food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ N tool|þ,*feed|ι + N part|,%AnimalHuman|,*bite|ҧ + N livestock| + N food|ʳƷ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N tool|þ,*feed|ι + V endure| + V withstand|ס +Ͳס V WithstandNot|ס +͵ס V withstand|ס +ͷ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +͸ ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#waterless| +ͺֲ N plant|ֲ,*withstand|ס,#waterless| +ͻ ADJ aValue|ֵ,ability|,able|,withstand|ס,#fire| +ͻ N material|,*withstand|ס,#fire| +ͻש N material|,?building| +; ADJ aValue|ֵ,quality|,durable|,desired| +; N attribute|,quality|,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hardship| + N attribute|,strength|,&AnimalHuman| +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#grind|ĥ +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#rub|Ħ +ĥ N attribute|,ability|,able|,withstand|ס,#grind|ĥ,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +Ѱζ ADJ aValue|ֵ,content|,profound|,desired| + V endure| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + ADJ aValue|ֵ,able|,endure|,desired| + ADJ attribute|,able|,endure|,desired|,&human| + ADJ attribute|,able|,endure|,desired|,&human| +Է ADJ attribute|,able|,endure|,desired|,&human| + ADJ aValue|ֵ,quality|,durable|,desired| +Ʒ N artifact|˹,generic|ͳ +Ʒ N artifact|˹,generic|ͳ + CONJ {but|} +κ V treat|Դ + N money|,(Nigeria|) + N direction|,south| + N place|ط,country|,ProperName|ר,(Yugoslavia|˹) +ϰ N part|,%land|½,#waters|ˮ,edge|,south| +ϰ N part|,%earth|,south| +ϱ N attribute|,distance|,south|,north|,&earth| +ϱ N direction|,south|,north| +ϱ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϱ N location|λ,south| +ϲ N location|λ,south| +ϲ N part|,%place|ط,#south|,#country| +ϲ N location|λ,south| +ϲ N place|ط,city|,ProperName|ר,(China|й) +ϳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϳ N place|ط,country|,ProperName|ר,(South Korea|) +ϴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ϴ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +϶ N location|λ,ending|ĩ,south| +Ϸ N direction|,south| +Ϸ N location|λ,south| +Ϸ N part|,%place|ط,#south|,#country| +Ϸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Africa|Ϸ) +Ϸ N place|ط,country|,ProperName|ר,(Africa|) +ϷǺ N language|,#country|,ProperName|ר +Ϸ N wind| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ N part|,%vegetable|߲,embryo|,$eat| +Ϲ N vegetable|߲ +Ϲ N part|,%country|,south| +Ϻ N waters|ˮ,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korea|) +Ϻ N place|ط,country|,ProperName|ר,(South Korea|) +Ϻ N MusicTool| +ϻ N food|ʳƷ,commercial| +ϼ N part|,%earth|,south|,edge| +ϼ N place|ط,ProperName|ר +Ͻ N part|,%country|,south| +Ͻ N part|,%place|ط,surrounding|Χ,#city|,south| +Ͼ N place|ط,city|,ProperName|ר,(China|й) +Ͼѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ͽ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽһ N thought|ͷ,dream|,desired| +´ N part|,%land|½,base| + N place|ط,ProperName|ר,south|,(America|) + N place|ط,ProperName|ר,south|,(America|) + N character|,surname|,human|,ProperName|ר + N location|λ,south| +Ϻ V cooperate| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,south|,(Europe|ŷ) +Ǩ V AlterLocation|ռλ,direction=south| +ɳ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yugoslavia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹˹͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N human|,(Yugoslavia|˹) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר + N FlowerGrass|,?medicine|ҩ +ͨ N place|ط,city|,ProperName|ר,(China|й) +γ N law|ɷ,#earth| + V LeaveFor|ǰ,direction=south| + N place|ط,ProperName|ר,south|,(Asia|) +Ǵδ½ N place|ط,ProperName|ר,south|,(Asia|) + N place|ط,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +ԯ V FitNot| + N information|Ϣ,*guide| + N tool|þ,*measure|,#direction| +ս V fight| + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,male| + N human|,male|,young| +в N room|,#male|,@excrete|й +е N fact|,compete|,sport|,#male| +е N sound|,#music| +ж N community|,male|,sport| +ж N human|,male| +з N part|,%community|,#GetMarried|,aspect| +и N sound|,#music| +к N human|,male|,young| +к N human|,male|,young| +к N human|,male|,young| +о N human|,royal| +о N human|,female|Ů,royal| + N fact|,exercise|,sport|,#male| +ŮŮ N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ůƽ N attribute|,behavior|ֹ,fair|,#sex|Ա,&human|,&organization|֯ + N fact|,exercise|,sport|,#male| + N human|,male|,friend|,desired| + N human|,male|,family| + N human|,family|,male| + N human|,male| + N sound|,#music| + N human|,male| + N human|,male|,*study|ѧ,education| +ʿ N human|,male| +˫ N fact|,exercise|,sport|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N attribute|,sex|Ա,male|,&human| + N human|,male| + N sound|,#music| +װ N clothing|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N human|,male| +Ӻ N human|,male| + ADJ aValue|ֵ,behavior|ֹ,male| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,possibility|,difficult|,undesired|ݬ + V embarrassed|Ϊ + N phenomena|,undesired|ݬ,#unfortunate| +Ѱ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ѳ ADJ aValue|ֵ,earliness|,late| +Ѳ V delay| +Ѳ V fail|ʧ +Ѳ V labour|ٲ,manner=difficult| +Ѵ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +Ѵ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +ѵ V MakeTrouble| +ѵ V defeat|սʤ +ѵ ADV {emphasis|ǿ} +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż,desired| +ѵ N phenomena|,undesired|ݬ,#unfortunate| +Ѷ N attribute|,easiness|,&event|¼ +ѹ ADJ aValue|ֵ,property|,^$blame|Թ +ѹ ADV {comment|} +ѹ N phenomena|,undesired|ݬ,#unfortunate| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$GoThrough| +ѹ V sorrowful| +ѹ V unfortunate| +ѽӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +ѽѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ѿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѿ V embarrassed|Ϊ +ѿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ѿ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ѿ V shy| +ѿ ADJ aValue|ֵ,easiness|,difficult|,$control| + V BeUnable|,content=escape| + N human|,undesired|ݬ,*escape|,#unfortunate| +Ӫ N InstitutePlace|,@include|,#human|,#escape|,#unfortunate| +רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ܿɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ƥ ADJ aValue|ֵ,ability|,unable|ӹ,$equal| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ɫ N attribute|,countenance|,passive|,&human| +ϼ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,difficult| + V ill|̬,medical|ҽ + V sorrowful| +˵ ADV {comment|} + N phenomena|,difficult|,undesired|ݬ + N problem|,difficult|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| + ADJ aValue|ֵ,ability|,unable|ӹ,$forget| + ADJ aValue|ֵ,property|,^$forget| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ѵ N human|,*BeSame|ͬ,#circumstances| +ѵ N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Գ ADJ aValue|ֵ,ability|,unable|ӹ,$undergo| +Ը ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +Թ ADJ aValue|ֵ,ability|,unable|ӹ,$estimate| +Ի ADJ aValue|ֵ,ability|,unable|ӹ,$obtain|õ +Խӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +Ծ ADJ aValue|ֵ,easiness|,difficult|,$perception|֪ + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,easiness|,difficult|,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д + ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ + ADJ aValue|ֵ,ability|,unable|ӹ,$endure| +͸ ADJ aValue|ֵ,ability|,unable|ӹ,$leak|© +ʹ ADJ aValue|ֵ,ability|,unable|ӹ,$use| + ADJ aValue|ֵ,ability|,unable|ӹ,$believe| + ADJ aValue|ֵ,ability|,unable|ӹ,$deduce| + ADJ aValue|ֵ,easiness|,difficult|,$guess|² + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ԥ ADJ aValue|ֵ,easiness|,difficult|,$predict|Ԥ + ADJ aValue|ֵ,easiness|,difficult|,$guess|² +׽ ADJ aValue|ֵ,easiness|,difficult|,$understand| + N {easiness|} + N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ + V BeUnable| +׷ ADJ aValue|ֵ,ability|,unable|ӹ,$follow| + N shape| + N tool|þ,cubic|,@put| +ҳ N InsectWorm| +ҿϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V contain| + N disease| + V scratch|ץ + N part|,%AnimalHuman|,head|ͷ +Բ N part|,%AnimalHuman|,head|ͷ +ԳѪ N disease| +Դ N part|,%AnimalHuman| +Դ N part|,%AnimalHuman|,head|ͷ +Եͼ N image|ͼ,#diagnose|,medical|ҽ +Ժ N thinking|˼ +Ժ N thinking|˼ +Լ N thinking|˼ +Խ N part|,%AnimalHuman|,liquid|Һ +Խ N thinking|˼ +Կ N part|,%AnimalHuman|,head|ͷ + V attribute|,wisdom|ǻ,wise|,&human| + N human|,#occupation|ְλ,wise| +Ͷ N affairs|,#mental|,engage| +Ͷ N human|,#occupation|ְλ,wise| + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +Ĥ N part|,%AnimalHuman|,head|ͷ +Ĥ N disease| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,head|ͷ +嵹 V reverse|ߵ,patient=sequence|,scope=engage| + N disease| +Ѫ N disease| + N part|,%AnimalHuman|,head|ͷ + N thinking|˼ + V angry| + V upset| +պ V blame|Թ +ջ V angry| +ŭ V angry| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +߳ŭ V angry| + V IllBehave| + V MakeTrouble| + V SufferFrom|,medical|ҽ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V do| + V quarrel| +ֱŤ V quarrel| +ֲ V ill|̬,medical|ҽ +ַ V quarrel| +ַ V IllBehave| +ֹ V happen| +ֺ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ּ V suffer|,content=HungryThirsty| +־ N shows| + V upset| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V MakeTrouble| + V uprise|,politics| + N place|ط,#city|,bustling| + N place|ط,#city|,bustling| +Ц V err| + V quarrel| + N tool|þ,*tell|,#time|ʱ + V tease|ȡ + N stone|ʯ + N material|,?clothing| + N material|,?clothing| + N material|,?clothing| + V HungryThirsty| + V disheartened| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,time|ʱ,internal| + N location|λ,internal| +ڲ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڲ ADJ aValue|ֵ,location|λ,internal| +ڲ N location|λ,internal| +ڲ N location|λ,space|ռ,internal| +ڲ N text|,#news|,secret| +ڲ V contain| +ڲ N part|,%inanimate|,skin|Ƥ,internal| +ڳѪ V bleed|Ѫ +ڴ N part|,%computer| +ڵ N place|ط,internal| +ڵ N human|,family|,male| +ڶ V decide| +ڶ N part|,%AnimalHuman|,viscera| +ڷ N fact|,excrete|й +ڷ V eat|,medical|ҽ +ڸ N institution|,#country|,politics| +ڹ N method| +ڹƤ N part|,%plant|ֲ,embryo| +ں N waters|ˮ,surfacial|,internal| +ں N information|Ϣ +ں N attribute|,strength|,$exhaust|,&implement| +ں N attribute|,strength|,$exhaust|,&organization|֯ +ں N part|,%entity|ʵ,heart| +ں N waters|ˮ,linear|,internal| +ں N fact|,fight|,internal| +ں V fact|,fight|,internal| +ڻ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڼ N human|,undesired|ݬ,*betray|,treacherous| +ڽ N image|ͼ,angular|,internal| +ھ N facilities|ʩ,#perform| +ھ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ھ V regret|Ǹ +ڿ N knowledge|֪ʶ,medical|ҽ +ڿҽ N human|,#occupation|ְλ,medical|ҽ,*cure|ҽ + N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + N attribute|,strength|,&entity|ʵ +½ N land|½,internal| + V uprise|,politics| +ޱ N place|ط,capital|,ProperName|ר,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N information|Ϣ + N human|,family| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N information|Ϣ +ȼ N part|,%vehicle|ͨ,*drive|Ԧ +ȼ N LandVehicle| + N disease| + N human|,family|,female|Ů + N attribute|,content|,&readings|,&information|Ϣ +Ҫ N text| + N disease| +ʡ V LookBack| +̥ N part|,%LandVehicle|,leg| + ADJ aValue|ֵ,range|,all|ȫ + N location|λ,surrounding|Χ,space|ռ + N affairs| + N affairs|,military| + N institution|,#police|,ProperName|ר,politics| + N facilities|ʩ,space|ռ,linear|,#electricity| + N human|,*scout| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,behavior|ֹ,hidden| + V sell|,range=country|,commercial| + N mental| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,desired|,able| + N human|,desired|,able| + N human|,family|,male| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N fire| + N clothing| +ྭ N human|,commercial| + V MoveItInto| + N cause|ԭ +⻼ N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,source|Դ,original|ԭ + N part|,%AnimalHuman|,viscera| +լ N room| +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ս N fact|,fight| + N affairs| + N institution|,#police|,ProperName|ר,politics| + N human|,family|,female|Ů +ڧ N fact|,fight|,internal| +ڧ V fact|,fight|,internal| +ڧ V fight|,range=internal|,politics| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,green| + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,ability|,&AnimalHuman| + N character|,surname|,human|,ProperName|ר + N part|,%physical|,strength| +ܲ ADJ aValue|ֵ,ability|,able|,create| +ܴ ADJ aValue|ֵ,ability|,able|,$transmit| +ܶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܷ AUX {modality|,question|} +ܸı ADJ aValue|ֵ,ability|,able|,$alter|ı +ܸ ADJ aValue|ֵ,ability|,able|,desired| +ܸ V BeAble|ܹ,content=perform| +ܹɽ N human|,able|,desired| +ܹ V BeAble|ܹ +ܺ V exhaust|,patient=material| +ܼ N attribute|,rank|ȼ,#strength|,&inanimate| +ܼ N attribute|,ability|,$look|,&space|ռ +ܿ ADJ aValue|ֵ,ability|,able|,$open| +ܿ˷ ADJ aValue|ֵ,ability|,able|,$defeat|սʤ + N attribute|,ability|,&physical| + N part|,%physical|,strength| +˽ ADJ aValue|ֵ,ability|,able|,$know|֪ + N attribute|,ability|,&AnimalHuman| + N human|,able|,desired| + V willing|Ը,content=undertake|,#HighRank|ߵ,#LowRank|͵ + ADJ aValue|ֵ,ability|,able|,alive| + N fact|,$BeAble|ܹ + N human|,able|,desired| +˵ ADJ aValue|ֵ,ability|,able|,desired| +ͨ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ϸ˵ ADJ aValue|ֵ,ability|,able|,$explain|˵ + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,$translate| + ADJ aValue|ֵ,ability|,able|,$employ| +Դ N part|,%physical|,strength| + ADJ aValue|ֵ,ability|,able|,$borrow| + N character|,(China|й) + N human|,young|,female|Ů + N CloudMist| +޺ N tool|þ,*illuminate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ + N material|,*build| + N stone|ʯ + N stone|ʯ + N material|,*feed|ι,#crop|ׯ +๸ N stone|ʯ,waste| +ཬ N stone|ʯ + N material|,*decorate|װ + N waters|ˮ,surfacial| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +Ţ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ţ N place|ط,dirty|,waterlogging|,undesired|ݬ +ţ뺣 V disappear|ʧ + N tool|þ,*recreation| +ɳ N stone|ʯ +ɳ ADJ aValue|ֵ,content|,mixed| +ʯ N stone|ʯ +ˮ N water|ˮ,#stone|ʯ +ˮ N human|,#occupation|ְλ,*build|,industrial| + N image|ͼ,$carve| +̶ N waters|ˮ,surfacial| + N waters|ˮ,surfacial| + N stone|ʯ + N human|,agricultural|ũ +߽ N human|,#occupation|ְλ,*build|,industrial| + N fish| + N human|,religion|ڽ,female|Ů + N place|ط,country|,ProperName|ר,(Nepal|Ჴ) +Ჴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nepal|Ჴ) +Ჴ N place|ط,country|,ProperName|ר,(Asia|) +Ჴ¬ N money|,(Nepal|Ჴ) +Ჴ N human|,(Nepal|Ჴ) +Ჴ N language|,#country|,ProperName|ר + N human|,religion|ڽ,female|Ů +Ŷ N chemical|ѧ +Ŷ N inanimate|,#addictive|Ⱥ,undesired|ݬ +Ŷж N disease| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nicaragua|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Nicaragua|) +ϣ N place|ط,capital|,ProperName|ר,(Cyprus|·˹) + N human|,official|,politics|,ProperName|ר,(US|) + N material| +޺ N waters|ˮ,linear|,ProperName|ר,(Egypt|) +ն ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Niger|ն) +ն N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nigeria|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Nigeria|) + N place|ط,capital|,ProperName|ר,(Niger|ն) + V forming|γ + V imitate|ģ + V plan|ƻ +ⶨ V forming|γ +ⶩ V forming|γ + V compile|༭,ContentProduct=text| +⽨ V build| + N humanized| + V forming|γ + V forming|γ + PRON {SecondPerson|} + PRON {SecondPerson|,mass|} +һ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +׷Ҹ V HaveContest| + V hide| + V hide| +伣 V hide| + ADJ aValue|ֵ,trueness|α,fake|α + N letter|ż +Ӱ V hide| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V disgust| + N InsectWorm|,undesired|ݬ +巳 V disgust| +ζ V disgust| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + V betray| + V disobey|Υ + N human|,undesired|ݬ,*betray|,treacherous| + N location|λ + N quantity|,amount|,#InDebt|,&commercial| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +淴 ADJ aValue|ֵ,behavior|ֹ,treacherous| + N wind| +澳 N phenomena|,undesired|ݬ,#unfortunate| + V predict|Ԥ + ADJ aValue|ֵ,direction|,GoBack| + N attribute|,SocialMode|,treacherous|,&human|,&organization|֯ +ʱ ADJ aValue|ֵ,direction| +ʱ뷽 ADJ aValue|ֵ,direction| +ˮ V VehicleGo|ʻ,direction=GoBack| + ADJ aValue|ֵ,direction|,GoBack| + V SelfMove|,manner=negative| +ת V decline|˥ +ת V reverse|ߵ + N human|,undesired|ݬ,family|,treacherous| + V engage| + V sink|³ +簮 V like|ϧ +ˮ V sink|³ + V decline|˥ +費 ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V pick|ʰ +黨Dz V associate|,partner=female|Ů,manner=lascivious| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ζ V gamble|IJ + ADJ aValue|ֵ,time|ʱ,year| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N part|,%time|ʱ,@alive| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,year| + N time|ʱ,year|,special| + N unit|λ,&time|ʱ +갮 N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ,&artifact|˹,#year| +곤 ADJ aValue|ֵ,age|,aged| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,early|,year| +һ N time|ʱ,festival|,@congratulate|ף + N time|ʱ + N time|ʱ,ending|ĩ,year| + ADJ aValue|ֵ,frequency|Ƶ,year| + N time|ʱ,year| +극 N fact|,eat|,#congratulate|ף,#festival| + N time|ʱ + N time|ʱ,year| +긴һ ADV aValue|ֵ,duration|,TimeLong| +긻ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,age|,aged| +ߵۿ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + ADJ aValue|ֵ,age|,aged| + N attribute|,name|,#country|,#official|,&time|ʱ +껪 N time|ʱ +껭 N image|ͼ,*congratulate|ף,#festival| + N artifact|˹,$buy|,*congratulate|ף,#festival| +꼶 N attribute|,rank|ȼ,&education| + N attribute|,age|,&animate| + N time|ʱ,@rest|Ϣ + N publications|鿯 + N time|ʱ,festival|,@congratulate|ף +꾰 N attribute|,circumstances|,&event|¼,#crop|ׯ +꾰 N attribute|,scene|,&event|¼ + ADJ aValue|ֵ,age|,aged| + N tool|þ,*show|,#time|ʱ + N fund|ʽ,$earn|׬,commercial| + N attribute|,age|,&animate| + N trace|,#tree|,#grow|ɳ + ADJ aValue|ֵ,age|,aged| +ĩ N part|,%time|ʱ,year|,ending|ĩ + N time|ʱ,year| + N account|,@record|¼,#time|ʱ + ADJ aValue|ֵ,age|,young| +ŮԱ N human|,*perform|,female|Ů,entertainment| + N human|,young| + ADJ aValue|ֵ,age|,young| + N human|,young| + N attribute|,age|,young| +Ѹ ADJ aValue|ֵ,age|,aged| + N attribute|,age|,&animate| + N time|ʱ +ͷ N phenomena|,#collect|,#crop|ׯ +ͷ N time|ʱ +ͷ N time|ʱ,TimeLong| +ͷ N unit|λ,&time|ʱ +Ϣ N fund|ʽ,$earn|׬,commercial| + N quantity|,amount|,&year| +۶ N quantity|,amount|,&sell|,commercial| +н N payment|,#year| +ҹ N time|ʱ,night| +ҹ N fact|,eat|,*congratulate|ף,#festival| + ADJ aValue|ֵ,age|,young| +⻨ ADJ aValue|ֵ,age|,aged| + N time|ʱ + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + N time|ʱ,ending|ĩ,year| + V grind|ĥ + N tool|þ,*grind|ĥ + V grind|ĥ + N tool|þ,*grind|ĥ + V chase|׷ + V expel| + V PlayWith|Ū + V ThinkOf|˼ + V recite|ж + V study|ѧ,education| + V recite|ж + V recite|ж,content=text|,religion|ڽ + V ThinkOf|˼,content=friend| + V remember|ǵ + V recite|ж,content=publications|鿯 + V study|ѧ,education| +ͷ N thought|ͷ + N tool|þ,*recite|ж,#text|,religion|ڽ +߶ V talk|̸ + N human|,family|,female|Ů + N human|,female|Ů,adult| + N community|,family| + N human|,family|,male| + N humanized|,female|Ů + N human|,royal|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů,adult| +Ӿ N army|,female|Ů + V ResultIn| + N drinks|Ʒ,$addict|Ⱥ + V produce|,industrial| + V ResultIn| + V produce|,PatientProduct=drinks|Ʒ + V produce|,industrial| + N bird| + N bird| +񾡹 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N bird| + N tool|þ,space|ռ,@detain|ס,#bird| + V cry|,agent=bird| +ﻨ N attribute|,scene|,good|,&place|ط + N part|,%bird|,mouth| + V investigate| + V look| + V excrete|й + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + N tool|þ,*wipe| +򳣹 N fact|,check|,#liquid|Һ,medical|ҽ + N part|,%AnimalHuman|,#excrete|й + N disease| +֢ N disease| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ +Һ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + V forge|α + V press|ѹ + V produce| + V forge|α + N human|,*forge|α + N character|,surname|,human|,ProperName|ר + V bite|ҧ + V bite|ҧ + ADJ connect| + V connect| + N tool|þ,*pick|ʰ + N metal| + N character|,(China|й) + PRON {SecondPerson|} + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ˮ N drinks|Ʒ + N chemical|ѧ +֭ N drinks|Ʒ + V StateChange|̬ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ + V StateChange|̬ + V StateChange|̬ + N StateChange|̬ + V StateChange|̬ + N attribute|,strength|,&entity|ʵ + ADV aValue|ֵ,behavior|ֹ,attentive|ϸ + V look| + N human|,look| + V look| +Ѫø N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,SoundQuality|,strong|ǿ + ADJ aValue|ֵ,countenance|,stately|ׯ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADV {modality|} + ADV {modality|} + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ը ADV {modality|} +š V press|ѹ +ţ N aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ţ N character|,surname|,human|,ProperName|ר +ţ N livestock| +ţ N LandVehicle| +ţ N medicine|ҩ +ţ N livestock|,young| +ţ N human|,#knowledge|֪ʶ,ProperName|ר,(UK|Ӣ) +ţ N unit|λ,&strength| +ţ N medicine|ҩ +ţ N part|,%livestock|,*feel| +ţ N humanized|,agricultural|ũ +ţ N celestial| +ţ N drinks|Ʒ +ţ N food|ʳƷ +ţƤ N material|,?clothing|,?tool|þ +ţƤֽ N paper|ֽ,*wrap| +ţ N food|ʳƷ +ţͷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ţ N beast| +ţ N human|,#occupation|ְλ,*foster|,#livestock| +ţп N clothing|,#leg| +Ť V hold| +Ť V rotate|ת +Ť V turn|Ťת +Ť V wounded| +Ť V fight| +Ť V rotate|ת +Ť N beast| +Ť V twine| +Ť V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +ŤΪӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ťӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ť V pretend|װ +Ť V alter|ı +Ť V wounded| +Ť V catch|׽ס,transport| +Ťͷ V CausePartMove|,PatientPartof=head|ͷ +Ťͷ V TurnRound| +Ť V perform|,content=shows|,entertainment| +Ťת V CausePartMove| +Ťת V reverse|ߵ +Ťת V turn|Ťת +ť N character|,surname|,human|,ProperName|ר +ť N part|,%clothing|,*fasten|˩ +ť N part|,%implement|,hand| +ť N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%implement|,hand| +Ŧ N entity|ʵ,*tie| +Ŧ N part|,%clothing|,*fasten|˩ +Ŧױ N place|ط,city|,ProperName|ר,(Germany|¹) +ŦԼ N place|ط,city|,ProperName|ר,(US|) +ŦԼ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +ŧ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й +ŧ N disease| +ŧ N human|,undesired|ݬ,unable|ӹ +ŧ N disease| +ŧ N disease| +ŧ N disease| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ +Ũ N attribute|,hue|Ũ,&color|ɫ +Ũ N attribute|,concentration|Ũ,&liquid|Һ +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,density|ܶ,dense| +Ũ V StateChange|̬,industrial| +Ũ N StateChange|̬,industrial| +Ũ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ũ N affairs|,agricultural|ũ +ũ N character|,surname|,human|,ProperName|ר +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹,agricultural|ũ,#crop|ׯ,generic|ͳ +ũ N InstitutePlace|,space|ռ,agricultural|ũ +ũ N place|ط,village| +ũ˿ N human|,*function|,village| +ũ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹ +ũ N affairs|,agricultural|ũ,industrial|,commercial| +ũ N community|,family|,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N machine|,agricultural|ũ +ũ N tool|þ,agricultural|ũ +ũ N knowledge|֪ʶ,#agricultural|ũ +ũ N human|,agricultural|ũ +ũ N implement|,agricultural|ũ,generic|ͳ +ũ N tool|þ,agricultural|ũ,generic|ͳ +ũԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,#agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N law|ɷ,#time|ʱ +ũ N time|ʱ,month| +ũ N time|ʱ,month| +ũ N affairs|,agricultural|ũ +ũó N affairs|,agricultural|ũ,commercial| +ũ N community|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũū N human|,agricultural|ũ +ũū N human| +ũ N house|,agricultural|ũ +ũʱ N time|ʱ,@engage|,#agricultural|ũ +ũ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ũ N time|ʱ,@pause|ͣ,#agricultural|ũ +ũ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ũѧԺ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũҩ N chemical|ѧ,#agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũҵ N institution|,#agricultural|ũ,ProperName|ר,politics| +ũҵ N human|,#occupation|ְλ,agricultural|ũ +ũҵ˰ N expenditure| +ũʦ N human|,#occupation|ְλ,#knowledge|֪ʶ,agricultural|ũ +ũ ADJ aValue|ֵ,attachment|,agricultural|ũ +ũ N crop|ׯ,generic|ͳ +Ū V CauseToDo|ʹ +Ū V PlayWith|Ū +Ū V WhileAway| +Ū V do| +Ū V handle| +Ū V take|ȡ +Ū V CauseToDo|ʹ +Ū V TryToKnow|Ū +Ū V damage| +Ū V damage| +Ū V MakeTrouble| +Ū V TryToKnow|Ū +Ūɳ׾ V fail|ʧ +Ū V TryToKnow|Ū +Ū V TryToKnow|Ū +Ū V kill|ɱ +Ū N facilities|ʩ,route|· +Ū V deceive|ƭ +Ū V damage| +Ū V pollute|ʹ +Ū V damage| +ū N human|,employee|Ա +ū N human|,undesired|ݬ,*MakeBad|Ӻ +ū V ize|̬ +ū N human|,employee|Ա +ū N organization|֯ +ū N attribute|,behavior|ֹ,passive|,undesired|ݬ,&human| +ū N system|ƶ +ū N human|,*own| +ū N human|,employee|Ա +ūϥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ū V damage| +Ŭ V CausePartMove| +Ŭ³ķ N money|,(Bhutan|) +ŬⰢ巨 N place|ط,capital|,ProperName|ר,(Tonga|) +Ŭ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ŭ V endeavour| +Ŭ߿Ф N place|ط,capital|,ProperName|ר,(Mauritania|ë) +Ŭ V CausePartMove|,PatientPartof=mouth| +ŭ V angry| +ŭ N emotion|,angry|,undesired|ݬ +ŭɶ V angry| +ŭ V ExpressAgainst|Ǵ +ŭ V angry| +ŭ V ExpressAnger|ʾŭ +ŭ V angry| +ŭ V MakeSound| +ŭ V MakeSound| +ŭ V cry| +ŭ N emotion|,angry|,undesired|ݬ +ŭĿ V ExpressAnger|ʾŭ +ŭ N emotion|,angry|,undesired|ݬ +ŭ V look|,manner=angry| +ŭ N water|ˮ,strong|ǿ +ŭɫ V ExpressAnger|ʾŭ +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N human|,family|,female|Ů,young| +Ů N human|,female|Ů +Ů N human|,female|Ů,rich| +Ů N human|,female|Ů,*protect| +Ů N human|,*fight|,female|Ů,military| +Ů N room|,#female|Ů,@excrete|й +ŮԱ N human|,#occupation|ְλ,female|Ů,employee|Ա,#LandVehicle| +Ů N fact|,compete|,sport|,#female|Ů +Ů N sound|,#music| +ŮԱ N human|,employee|Ա,female|Ů,commercial|,*sell| +Ů N human|,female|Ů,*mediate| +Ů N community|,female|Ů,sport| +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N part|,%community|,#GetMarried|,aspect| +Ůм N human|,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*entertain|д +Ů N sound|,#music| +Ů N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů質 N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů N human|,#occupation|ְλ,female|Ů,industrial| +Ů N human|,#occupation|ְλ,industrial|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,royal|,female|Ů +Ů̳ N human|,female|Ů,*receive| +Ůҳ N human|,female|Ů,official|,family| +Ů๤ N human|,#occupation|ְλ,female|Ů,*supervise|,industrial| +Ů N human|,official|,military| +Ů N human|,wise|,female|Ů,desired| +Ů N human|,#occupation|ְλ,female|Ů,official|,commercial| +Ů N human|,#occupation|ְλ,female|Ů,police| +Ů N human|,official|,female|Ů,police| +Ů N human|,family|,female|Ů +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,adult| +Ů N human|,#occupation|ְλ,female|Ů,agricultural|ũ,*catch|׽ס,#beast| +Ů N human|,female|Ů +Ůðռ N human|,female|Ů,*venture|ð +Ů N fact|,exercise|,sport|,#female|Ů +Ůͽ N human|,female|Ů,undesired|ݬ,betray|,treacherous| +Ů N human|,female|Ů,friend| +Ů N human|,employee|Ա,female|Ů +Ůǿ N human|,female|Ů,able|,desired| +Ů N human|,female|Ů,family| +Ů N community|,religion|ڽ +Ů๤ N human|,*clean|ʹ,employee|Ա,female|Ů +ŮȨ N rights|Ȩ,#human|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ůɱ N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ůɳ N human|,female|Ů,royal|,(Russia|˹) +Ů N humanized|,female|Ů +Ů N sound|,#music| +Ů N human|,female|Ů,*study|ѧ,education| +Ůʫ N human|,female|Ů,*compile|༭,literature| +Ůʿ N human|,female|Ů,adult| +Ůг N human|,female|Ů,official|,#city| +Ů˫ N fact|,compete|,sport|,#female|Ů +Ů˾ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#LandVehicle| +Ůͯ N human|,female|Ů,young| +ŮͯӾ N human|,young|,#military|,female|Ů +Ů N human|,royal|,female|Ů +Ů N human|,undesired|ݬ +ŮУ N human|,#occupation|ְλ,female|Ů,official|,education| +Ůż N human|,#occupation|ְλ,female|Ů,*gather|ɼ,*compile|༭,#news| +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N attribute|,sex|Ա,female|Ů,&human| +Ů N human|,female|Ů +Ů N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ů޵Ժ N human|,#occupation|ְλ,female|Ů,religion|ڽ,official| +Ů N human|,family|,male| +Ů˵ N human|,female|Ů,*speak|˵ +ŮԱ N human|,#occupation|ְλ,*perform|,female|Ů,entertainment| +Ůħ N humanized|,undesired|ݬ,evil|,female|Ů +Ůҵ N human|,female|Ů,*employ|,commercial| +ŮӶ N human|,employee|Ա,female|Ů +ŮӶ N human|,employee|Ա,female|Ů +Ů N human|,female|Ů,friend| +ŮԤԼ N human|,female|Ů,*predict|Ԥ +Ů N sound|,#music| +Ů N human|,female|Ů,*entertain|д +Ůϯ N human|,female|Ů,official| +Ůװ N clothing|,#female|Ů +Ů N human|,female|Ů,adult| +Ůܶ N human|,#occupation|ְλ,female|Ů,official| +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,past| +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N facilities|ʩ,space|ռ,house|,*planting|ֲ,#plant|ֲ +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N tool|þ,cubic|,@put|,#liquid|Һ +ů N tool|þ,*cover|ڸ +ů N experience|,excited| +ůƿ N tool|þ,cubic|,@put|,#liquid|Һ +ů N facilities|ʩ,*WarmUp|,#building| +ůķ V soothe|ο +ůɫ N attribute|,hue|Ũ,&color|ɫ,warm| +ůˮƿ N tool|þ,cubic|,@put|,#liquid|Һ +Ű ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ű V damage|,crime| +Űɱ V kill|ɱ,manner=fierce|,crime| +ű N disease| +ű N disease| +ű N InsectWorm|,undesired|ݬ,*influence|Ӱ,#disease| +Ų V SelfMoveInManner|ʽ +Ų V TakeAway|ᶯ +Ų N place|ط,country|,ProperName|ר,(Norway|Ų) +Ų V recompense| +Ų V TakeAway|ᶯ +Ų V borrow|,commercial| +Ų ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Norway|Ų) +Ų N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ų N money|,(Norway|Ų) +Ų N language|,#country|,ProperName|ר +ŲѶ V SelfMoveInManner|ʽ +ŲѶ V TakeAway|ᶯ,patient=family| +Ų V cheat|ƭ +Ų V use|,commercial| +Ųù N human|,*cheat|ƭ,crime|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ų N human|,undesired|ݬ,timid| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +Ŵ ADJ aValue|ֵ,stickiness|,sticky| +Ŵ N crop|ׯ +Ŵ N material|,?food|ʳƷ,#crop|ׯ +ŵ N text|,$admit| +ŵ N human|,ProperName|ר +ŵ N tool|þ,*reward|,$GiveAsGift|,desired| +ŵ N human|,$reward| +ŵ N place|ط,ProperName|ר,(France|) +ŵ N information|Ϣ,*MakeAppointment|Լ,#bear|е +Ŷ ECHO sound| +ŷ N character|,surname|,human|,ProperName|ר +ŷ N place|ط,ProperName|ר +ŷ N institution|,ProperName|ר +ŷ V ize|̬,PatientAttribute=foreign| +ŷ N place|ط,ProperName|ר +ŷķ CLAS unit|λ,&resistance| +ŷ N institution|,ProperName|ר +ŷǴ½ N place|ط,ProperName|ר +ŷ N character|,surname|,human|,ProperName|ר +ŷԪ N money|,(Europe|ŷ) +ŷԪ N place|ط,#country|,ProperName|ר,(Europe|ŷ) +ŷ ADJ aValue|ֵ,attachment|,ProperName|ר,(Europe|ŷ) +ŷ N place|ط,ProperName|ר +ŷ޹ͬ N institution|,ProperName|ר +ŷ޾ùͬ N institution|,ProperName|ר +ŷ N human|,(Europe|ŷ) +Ÿ N bird| +Ź V beat| +Ź N character|,surname|,human|,ProperName|ר +Ź V beat| +ź N fruit|ˮ +ź N food|ʳƷ +ź N material|,?food|ʳƷ +ź ADJ aValue|ֵ,color|ɫ,purple| +źɫ ADJ aValue|ֵ,color|ɫ,grey| +Ż V vomit|³ +Ż V StomachTrouble|֢ +Ż V vomit|³ +Ż N human|,*StomachTrouble|֢,medical|ҽ +ŻѪ V endeavour| +ŻѪ V bleed|Ѫ,means=vomit|³ +ż N human|,$believe| +ż N human|,family|,mass| +ż N human|,friend| +ż N image|ͼ +ż ADJ qValue|ֵ,amount|,double| +żȾ N material|,*AlterColor|ɫ +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż V fit|ʺ +żȻ ADJ aValue|ֵ,kind|,special| +żȻ N attribute|,frequency|Ƶ,rarely|ż,&event|¼ +ż N thing|,$respect| +Ž V soak| +Ž N material|,*feed|ι,#crop|ׯ +ſ V FallDown| + V climb|ʵ + V crawl| + N beast| + N LandVehicle| + V climb|ʵ + V crawl| +Ӿ V exercise|,sport| + N tool|þ,*wipe| +ﲩ N place|ط,capital|,ProperName|ר,(Surinam|) +׶ N place|ط,ProperName|ר +׶ԭ N place|ط,ProperName|ר + V fear| + V guess|² + ADV {comment|} + V shy| + N SportTool|˶ + V TakePicture| + V beat| + V please|ȡ + V post|ʼ +...ƨ V please|ȡ +İо V praise|佱 +İ N MusicTool| +İ V beat|,commercial| +İ V decide| +İ V recreation|,entertainment| +Ĵ V beat| +ķ V post|ʼ +ƨ V please|ȡ + N human|,*please|ȡ + V sell|,commercial| + V sell|,manner=HaveContest|,commercial| +Ƭ V produce|,#shows| + V TakePicture| + V beat|,PartOfTouch=hand| + V praise|佱 + V TakePicture| +ֽ N account|,*record|¼ + N SportTool|˶ + N attribute|,speed|ٶ,&music|,&language| + CLAS NounUnit|,&physical| + V PutInOrder| + V discharge| + V drain|ų + V drill|ϰ,entertainment| + N food|ʳƷ + N part|,%army| + V push| + N ship| +Ű V PutInOrder|,#print|ӡˢ +ų ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ +ų N human|,#occupation|ְλ,official|,military| +ų N attribute|,performance|,discharge|,&thing| +ų V discharge| +ų V drain|ų +ų V remove| +ų V discharge| +ŵ N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ +Ŷ V PutInOrder| +ŷ V PutInOrder| +ŷ V drain|ų +Ź N food|ʳƷ +Ź V irrigate|,agricultural|ũ +Żʿ N human|,*oppose| +ż V discharge| +Ž V mediate| + V drain|ų,content=liquid|Һ,agricultural|ũ + V drill|ϰ,entertainment| + V PutInOrder| + V put| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V GiveBirth| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ѽ V mediate| + V excrete|й,patient=gas|,industrial| +Dz V WhileAway| + N SportTool|˶ + V drain|ų +ɽ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ˮ V drain|ų,patient=liquid|Һ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N quantity|,amount|,&ship| + N attribute|,performance|,discharge|,&thing| +ͷ N human|,$study|ѧ,$imitate|ģ,desired| +ͷ N human|,*fight|,military| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V oppose| + V drain|ų,patient=waste| +й V drain|ų +й V excrete|й,medical|ҽ +йϵͳ N part|,%AnimalHuman|,viscera|,*excrete|й + N attribute|,clan|,&human| +а N account|,@record|¼,sequence|,#compete| + V arrange|,patient=sequence| + V drill|ϰ,entertainment| +ӡ V print|ӡˢ +ǽ V remove|,content=difficult| +ӳ N LandVehicle| + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,*recreation| +Ʒ N facilities|ʩ,religion|ڽ +ƺ N mark|־,#InstitutePlace|,commercial| +ƺ N mark|־,commercial| +Ƽ N attribute|,price|۸,&physical|,commercial| +λ N tool|þ,*salute|¾,#die| + N document|,*prove|֤,#vehicle|ͨ + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,@write|д +ǻ V QuantityChange|,commercial| +ǻ V hesitate|ԥ +ǻ V roam| + V CauseToBe|ʹ֮ + N attribute|,style|,&human| + N attribute|,style|,&physical| + N community| + N community|,#knowledge|֪ʶ + V dispatch|Dz + V issue|ַ +ɱ N community| +ɲ V ExpressAgainst|Ǵ +ɳ N institution|,police| +Dz V dispatch|Dz + ADJ aValue|ֵ,source|Դ + V associate| + V climb|ʵ + V tie| +ʱ V protest|,means=CompareTo| +ʳ V tie| +ʵ V climb|ʵ +ʵ N human|,*climb|ʵ + V SeekRefuge|Ͷ,partner=power| + V associate| + V climb|ʵ +̸ V talk|̸ +Ե V climb|ʵ +Ե V endeavour| + V break|۶ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&fact| + CLAS NounUnit|,&inanimate| + N attribute|,price|۸,&inanimate| + V build| + V check| + V circle| + V sell|,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +̰ V rob| +̲ V check| +̳ N tool|þ,*measure|,#weight| +̴ V check| +̵ N facilities|ʩ,route|· +̵ V check| +̶ N food|ʳƷ +̸ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +̻ V stay|ͣ +̻ V check|,content=artifact|˹,commercial| +̾ V situated| +̿ V check|,content=artifact|˹,commercial| +Ū V PlayWith|Ū + ADJ aValue|ֵ,form|״,curved| + V coil| + V plan|ƻ + V think|˼ + N part|,%building|,nerve| + V CausePartMove|,PatientPartof=leg| + V interrogate| + N tool|þ,*salute|¾,$burn| + V circle| + V stay|ͣ + N livestock| + V check|,content=account|,#wealth|Ǯ,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +ڵ V ask| +ڵ V interrogate| + N stone|ʯ +ʯ N stone|ʯ + V expect| + V look| +ͷ N entity|ʵ,$expect| + V expect| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge|,agricultural|ũ + V distinguish|ֱ + V judge|ö + V judge|ö,police| +б V distinguish|ֱ +д V punish|,police| +ж V judge|ö +ж V judge|ö +ж N judge|ö +ж V judge|ö +ж N result|,#judge|ö +ж N attribute|,ability|,*judge|ö,&physical| +жȷ ADJ aValue|ֵ,correctness|,upright|,desired| +о N attribute|,standard|׼,&entity|ʵ +о V judge|ö +о N document|,*judge|ö + N example|ʵ,police|,#fact| + V distinguish|ֱ + V differ|ͬ + ADJ aValue|ֵ,similarity|ͬ,different| + V punish|,police| + V punish|,police| + V betray| + V uprise|,crime| +ѱ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ѱ V betray| +ѱ V betray|,crime| +ѹ V betray|,target=country| +Ѿ N army| + V betray| + V uprise| + V betray| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| +ͽ N human|,*betray|,treacherous|,undesired|ݬ + ADJ aValue|ֵ,size|ߴ,big| + N character|,surname|,human|,ProperName|ר +Ӵ ADJ aValue|ֵ,size|ߴ,big| +Ȼ N AnimalHuman|,big| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,importance|,branch|֧ + ADJ aValue|ֵ,kind|,other| + N location|λ,edge| + N part|,%character| +Ա ADJ aValue|ֵ,direction| +Ա N location|λ,edge| +Թ V look| +Թ N human|,*look| +Լ V relate|й +· N part|,implement|,electricity| + N part|,%building|,mouth| +ò ADJ aValue|ֵ,behavior|ֹ,tactful| + N human|,other| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V study|ѧ,education| + N language|,#country|,ProperName|ר + V quote| +֤ N information|Ϣ,*explain|˵ +֧ ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,fatness|,fat| +ִ N FlowerGrass|,?medicine|ҩ +ֺ ADJ aValue|ֵ,fatness|,fat| + N {fatness|} +ͷ N fish| + N human|,fat| + V put| + V throw| +׹ V brighten|ʹ,industrial| +ê V OutOfOrder| +ê V stay|ͣ +ê N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + V abandon| + V sell|,commercial| +ͷ¶ V appear| + N image|ͼ,linear| + V throw| + V MakeSound| + V cry| + V cut|,industrial| + V dig|ھ + V subtract| + N tool|þ +ٱ N drinks|Ʒ,ice| +ٴ N machine|,*produce| +ٴ N tool|þ +ٵ N tool|þ +ٸ V investigate| +ٹ N human|,#occupation|ְλ,industrial| + N tool|þ + V cook|,medical|ҽ + N tool|þ,*recreation| + N weapon|,*firing| +ڱ N army|,*firing| +ڱ N human|,*firing|,military| +ڵ N weapon|,$firing| +ڻ N human|,military| +ڻ N fire| +ڻ V firing|,military| +ڽ N weapon|,ship|,military| +¥ N facilities|ʩ,space|ռ,military|,@defend| + N sound| +ͧ N weapon|,ship|,military| +Ͳ N human|,#speak|˵ +λ N location|λ,@firing|,military| + N part|,%facilities|ʩ,@firing|,military| + N part|,%facilities|ʩ,mine| + N tool|þ,*WhileAway|,*congratulate|ף + V cook|,medical|ҽ + V forge|α + N clothing|,#body| + N human|,friend| + N clothing|,#body| +˵dz V undertake|,content=official| + V engage| + V flee| + V run| +ܱ N tool|þ,*tell|,#time|ʱ +ܲ V run| +ܳ N SportTool|˶,#LandVehicle| +ܵ V engage|,content=commercial|,manner=single| +ܵ N part|,%facilities|ʩ,route|·,#aircraft|,@slide| +ܵ N part|,%facilities|ʩ,route|·,@compete|,sport| +ܵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +ܶ V StomachTrouble|֢ +ܽ V MakeLiving|ı,means=perform| + V engage| + V perform|,entertainment| + V compete|,sport| + V exercise| +ܵߵ V endeavour| +ö N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +ȶ V engage| +Ь N SportTool|˶,#clothing|,#foot| + CLAS NounUnit|,&stone|ʯ,#waste|,#excrete|й + ADJ aValue|ֵ,tightness|ɽ,loose| + N shape| + N shape|,loose| + N shape|,round|Բ + V slack|͵ + V soak| +ݲ V pretend|װ,content=ill|̬,purpose=slack|͵ +ݲ N food|ʳƷ +ݲ V cook|,PatientProduct=drinks|Ʒ +ݷ V cook|,PatientProduct=food|ʳƷ +ݷ N food|ʳƷ +Ģ V MakeTrouble| +Ģ V slack|͵ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N tool|þ,*remove|,#fire| +ĭ N material| +ɴ N material|,?clothing| + V fail|ʧ +ͩ N tree| +Ӱ N thinking|˼,empty| + N waters|ˮ,surfacial| + N part|,%animate|,embryo| +߸ N part|,%plant|ֲ,base| +̥ N part|,%AnimalHuman|,embryo| +ѿ N part|,%plant|ֲ,embryo| + V cultivate| + V install|װ + V pile|ѷ + V repair| +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ + V cultivate| + V cultivate|,medical|ҽ + V cultivate| +ֲ V cultivate| +ֲ V planting|ֲ +ֲ V teach| + N character|,surname|,human|,ProperName|ר + V InDebt|,commercial| + V recompense| +Ȿ V InDebt|,possession=fund|ʽ,commercial| +ⲻ V apologize|Ǹ +⳥ V recompense| + V recompense|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ +Ǹ V apologize|Ǹ +Ǯ V InDebt| +Ǯ V pay|,possession=money| +Ц V apologize|Ǹ + V InDebt|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ + V follow| + V follow| + V ServeAsFoil| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ + V undertake|,content=judge|ö,police| + N community|,*judge|ö,police| +Ա N human|,*judge|ö,police| + V GiveAsGift|,purpose=MarryTo| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ +ͬ V follow| +Ц V please|ȡ + N sound| + V bury| + V MarryTo| + V fit|ʺ + V issue|ַ + V mating| + V mix| + V seek|ıȡ,fit|ʺ + V worth|ֵ +䱸 V arrange| +䱸 V arrange|,military| +䱸 N machine|,generic|ͳ + N quantity|,rate|,&mix| +䲻һ V FitNot| + N edible|ʳ + N fact|,issue|ַ,#electricity| + N room| + V mating| + N quantity|,amount|,$delimit|,&entity|ʵ +䷽ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V issue|ַ + V cooperate| + V coordinate|Э + N fact|,cooperate| +Ĭ N mental|,#coordinate|Э,desired| + N part|,generic|ͳ + N human|,*help| + N human|,entertainment| + V mix|,patient=material| +¥ N house| +ż N human|,family| + V mix|,patient=MusicTool| +ɫ V mix|,patient=color|ɫ + V sell| + V include|,military| + V fit|ʺ + ADJ qValue|ֵ,amount|,all|ȫ +׳ V forming|γ,PatientProduct=complete| +Ϸ V perform|,entertainment| +ҩ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V MakeSound| + V arrange| + V arrange|,military| + V produce| + V produce|,medical|ҽ + V mating|,agricultural|ũ + V PutOn|,Vgoingon|չ + V respect| + V PutOn|,Vgoingon|չ + V PutOn|,Vgoingon|չ + V respect| + ADJ qValue|ֵ,amount|,many|,desired| + CLAS NounUnit|,&plant|ֲ + V jet| + V jet| +緢 V jet| +緹 ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +緹 V laugh|Ц + N tool|þ,cubic|,*spray|,#liquid|Һ + V irrigate| + N tool|þ,cubic|,*spray|,#liquid|Һ + V decorate|װ + N material|,liquid|Һ,*decorate|װ + V jet| +ɻʻԱ N human|,*drive|Ԧ,#aircraft| +ʽ ADJ aValue|ֵ,performance| +ʽɻ N aircraft| +Ȫ N facilities|ʩ,@jet|,#liquid|Һ + V spray| + V jet| +Ϳ V apply|ͿĨ + N tool|þ,*moisten|ʪ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%tool|þ,*moisten|ʪ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N land|½ +軨 N FlowerGrass| +辰 N tool|þ,*decorate|װ +ǻ N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,property|,$planting|ֲ + N tool|þ,*decorate|װ + ECHO sound| + V ExpressAgainst|Ǵ + V cook| + V cook| + ADJ aValue|ֵ,attachment|,#cook| + N knowledge|֪ʶ,#cook| +ѧ N human|,*cook| + V cook| + V cook| + V spray| + V excited| + V jet| + N character|,surname|,human|,ProperName|ר + N FlowerGrass| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,form|״,disorder| + ADJ aValue|ֵ,tightness|ɽ,loose| +ͷ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ﳵ N LandVehicle| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N chemical|ѧ +ɰ N material| + N chemical|ѧ + N part|,%ship| + N part|,%vehicle|ͨ,*cover|ڸ + V enlarge| + V enlarge| + ADJ aValue|ֵ,property|,$enlarge| + V enlarge| + N human|,friend| +Ϊ V collude| + N human|,friend| + N human|,friend|,#love| + N bird| + V prosper| + CLAS NounUnit|,&inanimate| + V pick|ʰ + V please|ȡ + V praise|佱 + V help|,scope=perform| + V please|ȡ + V praise|佱 + V bump|ײ + V meet| + V touch| + V try| + V congratulate|ף + V fail|ʧ + V meet| + V fail|ʧ + N tool|þ,*shut|ر + V meet| + ADV aValue|ֵ,time|ʱ,proper| + V meet| + N tool|þ,*shut|ر +ͷ V meet| +ͷ N fact|,@communicate| +һӻ V fail|ʧ +Ӳ V handle|,patient=difficult| +ײ V bump|ײ + N artifact|˹,coarse| + N material|,*build|,coarse| + N material|,?clothing| + N artifact|˹,coarse| +˪ N medicine|ҩ,*kill|ɱ + N thunder| + N thunder| + V ExpressAgainst|Ǵ + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&physical| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V beat| + V estimate| + N part|,%material|,#clothing| + V write|д,ContentProduct=thought|ͷ + V estimate| + V refute| + V ExpressAgainst|Ǵ + V announce|,politics| + V sell|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +г N InstitutePlace|,*sell|,@buy|,commercial| + V reply|,politics| + V amend| +ҵ V amend|,patient=text| + N symbol| + N document| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,&produce| + V produce|,quantity=many| + V estimate| + N human|,*estimate| + V estimate| + N human|,*estimate| +ʾ V express|ʾ,politics| + N document| + V read|,politics| +ע N part|,%text| +ת V write|д,ContentProduct=thought|ͷ,issue|ַ +׼ V ExpressAgreement|ʾͬ +׼ N human|,*ExpressAgreement|ʾͬ + V CausePartMove| + V FormChange|α,StateFin=OutOfOrder| + V FormChange|α,StateFin=enlarge| + V PutOn| + V open| + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + V PutOn| +ִ V prepare|׼,content=fight|,military| + N clothing|,#body| +¶ V announce| +¶ V reveal|¶ +ɢ V CausePartMove| +ɳ V choose|ѡ,content=heart| +Ǵ V endeavour| + V read| + V StripOff|ȥ + V beat| + V break|۶ + V damage| + V separate| + N shape| + V split|ƿ + N method|,*fight|,military| + N tool|þ,*break|۶,*split|ƿ +ɽ V cut| +ɽ V cut|,industrial| + ADJ aValue|ֵ,speed|ٶ,fast| +ͷ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N MusicTool| + V BeNear| + V BeNear| + V BeNear| +ơ N drinks|Ʒ,$addict|Ⱥ +ơ N drinks|Ʒ,$addict|Ⱥ +ơƳ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +ơƻ N material|,?drinks|Ʒ +Ƣ N part|,%AnimalHuman|,viscera| +Ƣ N attribute|,behavior|ֹ,&AnimalHuman| +Ƣ N emotion|,bad|,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce| +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ƣθ N emotion|,FondOf|ϲ +Ƣ N disease| +Ƣ N part|,%AnimalHuman|,viscera| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣǿ N attribute|,strength|,withstand|ס,#tired|ƣ,&inanimate| +ƣ V decline|˥,commercial| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ƣ V slack|͵ +ƣڱ V endeavour| +ƣڱ V tired|ƣ +ƣ V slack|͵ +Ƥ V StateChange|̬,StateFin=tough| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƥ N character|,surname|,human|,ProperName|ר +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N material|,?tool|þ +Ƥ N part|,%animate|,skin|Ƥ +Ƥ N part|,%artifact|˹,skin|Ƥ +Ƥ N part|,%physical|,skin|Ƥ +Ƥ N shape| +Ƥ N tool|þ,*wrap| +Ƥ N tool|þ,cubic|,@put| +Ƥ˾ N InstitutePlace|,undesired|ݬ,commercial| +Ƥͷ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +Ƥ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,*measure|,#length| +Ƥ N fittings|,%clothing| +Ƥ N part|,%implement| +Ƥ N tool|þ,$PutOn| +Ƥ N part|,%implement| +Ƥ N food|ʳƷ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥֲ N method|,*cure|ҽ +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N clothing|,#body| +Ƥ N artifact|˹,commercial|,generic|ͳ +Ƥп N clothing|,#body| +Ƥ N tool|þ,cubic|,@put| +Ƥ N human|,#occupation|ְλ,industrial| +Ƥ V wounded| +Ƥë ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥë N knowledge|֪ʶ,NotProfound|dz +Ƥë N material|,?clothing|,?furniture|Ҿ +Ƥ N material| +Ƥ N SportTool|˶ +Ƥ N tool|þ,*WhileAway| +Ƥʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ƥʵ ADJ aValue|ֵ,quality|,durable|,desired| +Ƥ ADJ aValue|ֵ,attachment|,#part|,#AnimalHuman| +Ƥע V cure|ҽ +Ƥ֯ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,linear|,*transmit|,#electricity| +Ƥ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥ N tool|þ,cubic|,@put| +ƤЦⲻЦ V pretend|װ,content=laugh|Ц +ƤЬ N clothing|,#foot| +Ƥѥ N clothing|,#foot| +Ƥ N disease| +Ƥ N clothing|,#body| +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N disease| +Ƥ֬ N part|,%AnimalHuman|,nerve| +Ƥֽ N paper|ֽ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| +Ƥ N material|,?clothing|,?furniture|Ҿ +ƥ CLAS NounUnit|,&material|,&livestock| +ƥ V equal| +ƥ V fit|ʺ +ƥ V equal| +ƥ N human|,ordinary| +ƥ V GetMarried| +ƥ V fit|ʺ +Ʀ N disease| +Ʀ N human|,undesired|ݬ,evil| +Ʀ N human|,undesired|ݬ,evil| +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƨ N place|ط,far|Զ +ƨ EXPR expression|,*ExpressDissatisfaction|ʾ +ƨ N gas|,#AnimalHuman|,waste| +ƨ N part|,%AnimalHuman|,base| +ƨ N part|,%animal|,base| +ƨ N part|,%thing|,waste|,head|ͷ +Ʃ N example|ʵ +Ʃ N expression|,#BeSimilar| +Ʃ ADV {supplement|ݽ} +Ʃ N expression|,#BeSimilar| +ƪ CLAS NounUnit|,&text| +ƪ N text| +ƪ N attribute|,area|,&paper|ֽ +ƪ N attribute|,content|,&text| +ƪĿ N part|,%readings|,content| +ƪ N text| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,form|״,slanted| +ƫ V like|ϧ +ƫ N result|,undesired|ݬ,wrong| +ƫ N document|,#medicine|ҩ,medical|ҽ +ƫ V despise| +ƫ V like|ϧ +ƫ V protect| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N thought|ͷ,biased|ƫ,undesired|ݬ +ƫ N fish| +ƫ V leave|뿪 +ƫƧ ADJ aValue|ֵ,distance|,far|Զ +ƫƧ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ƫƫ ADV aValue|ֵ,will|־,strong|ǿ,desired| +ƫƫ ADV {emphasis|ǿ} +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫʳ V eat|,medical|ҽ +ƫ̱ N disease| +ƫ̻ V protect|,manner=biased|ƫ +ƫƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N attribute|,outlook|ǰ,wrong|,&human|,&organization|֯,&event|¼ +ƫ V endorse|ӵ +ƫб ADJ aValue|ֵ,form|״,slanted| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ V result|,undesired|ݬ,wrong| +ƫԶ ADJ aValue|ֵ,distance|,far|Զ +ƫ N lights| +ƫ V ParticularAbout| +ƫת V rotate|ת +Ƭ CLAS NounUnit|,&inanimate| +Ƭ ADJ aValue|ֵ,range|,fragment| +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ V cut| +Ƭ ADJ qValue|ֵ,amount|,few| +Ƭ N shape| +Ƭ N payment|,#perform| +Ƭ N part|,%entity|ʵ +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ N part|,%entity|ʵ +Ƭ N medicine|ҩ +Ƭײ V disappear|ʧ,military| +Ƭײ V disappear|ʧ,military| +Ƭ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +Ƭ N attribute|,range|,pieced|Ƭ,&event|¼ +Ƭʱ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ޴ V disappear|ʧ,military| +Ƭ N shape| +Ƭ N shows| +Ƭ N tool|þ,@record|¼ +Ƭ N tool|þ,@record|¼,#music| +ƭ V deceive|ƭ +ƭ N fact|,deceive|ƭ,undesired|ݬ +ƭȡ V cheat|ƭ +ƭ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƭ V deceive|ƭ,human| +ƭ˵Ķ N entity|ʵ,*deceive|ƭ +ƭ N method|,*deceive|ƭ,undesired|ݬ +ƭ N human|,*deceive|ƭ,undesired|ݬ,crime| +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V roam| +Ʈ N tool|þ,*decorate|װ,$PutOn| +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V decline|˥ +Ʈ V roam| +ƮƮȻ V satisfied| +ƮȻ V float|Ư +Ʈ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈҡ V float|Ư +Ʈҡ V wave|ڶ +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ư V AlterColor|ɫ +Ư V float|Ư +Ư V wash|ϴ +Ư V AlterColor|ɫ +Ư׷ N material|,*AlterColor|ɫ +Ư V roam| +Ư ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +Ư V float|Ư +Ư ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ư ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ư V float|Ư +ƯȾ V AlterColor|ɫ +Ưϴ V wash|ϴ +Ư V float|Ư +ư N tool|þ,cubic|,*TakeOutOfWater| +ưô N RainSnow|ѩ,strong|ǿ +Ʊ N bill|Ʊ,*choose|ѡ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ +Ʊ N human|,undesired|ݬ,$detain|ס +Ʊ N money| +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N attribute|,price|۸,&coupon|Ʊ֤,commercial| +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N quantity|,amount|,&coupon|Ʊ֤,&money| +Ʊ N tool|þ,cubic|,#select|ѡ +Ʊѡ V choose|ѡ,politics| +Ʊ N human|,*FondOf|ϲ,#perform|,#entertainment| +Ʊ֤ N coupon|Ʊ֤ +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N money| +Ʋ V TakeOutOfWater| +Ʋ V abandon| +Ʋ N part|,%character| +Ʋ V throw| +Ʋ V abandon| +Ʋ V abandon| +Ʋ V despise| +Ƴ V look| +Ƴ V perception|֪ +ƴ V endeavour| +ƴ V endeavour| +ƴ V fight|,military| +ƴ V merge|ϲ +ƴ V fasten|˩ +ƴ V endeavour| +ƴ N food|ʳƷ +ƴ V endeavour| +ƴͼϷ N fact|,recreation| +ƴд V write|д +ƴ N MakeSound| +ƴ N character| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +Ƶ V appear| +Ƶ N attribute|,range|,&frequency|Ƶ +Ƶ N facilities|ʩ,#disseminate| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +ƵƵ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N phenomena|,sound| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ N attribute|,richness|ƶ,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N community|,family|,poor| +ƶ V ize|̬,PatientAttribute=poor| +ƶ N human|,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N attribute|,richness|ƶ,poor|,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +ƶũ N human|,#occupation|ְλ,agricultural|ũ +ƶѪ N disease| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&inanimate| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ V savor| +Ʒ V savor|,patient=drinks|Ʒ +Ʒ V savor| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,style|,&text| +Ʒ ADJ aValue|ֵ,color|ɫ,red| +Ʒ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +Ʒ ADJ aValue|ֵ,color|ɫ,green| +Ʒ N attribute|,name|,&artifact|˹ +Ʒ N attribute|,name|,&artifact|˹ +Ʒ V estimate| +Ʒͷ V ExpressAgainst|Ǵ +Ʒͷ V estimate| +Ʒ CLAS unit|λ,&volume|ݻ +Ʒζ N attribute|,style|,&physical| +Ʒζ V savor| +Ʒζ V think|˼ +Ʒλ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒλ N attribute|,rank|ȼ,&physical| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒѧ ADJ aValue|ֵ,behavior|ֹ,good|,desired| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&entity|ʵ +Ʒ N attribute|,kind|,&animate| +Ʒ N attribute|,kind|,&physical| +Ʒ V savor|,patient=drinks|Ʒ +Ƹ V MarryTo| +Ƹ V employ| +Ƹ N tool|þ,$GiveAsGift|,#GetMarried| +Ƹ N time|ʱ,@undertake| +Ƹ V employ| +Ƹ V invite| +Ƹ V CauseToBe|ʹ֮ +Ƹ V employ| +Ƹ N system|ƶ,#employ| +Ƹ N document|,#employ| +ƸΪ V CauseToBe|ʹ֮ +Ƹ V employ| +ƹ ECHO sound| +ƹ N fact|,exercise|,sport| +ƹ N SportTool|˶ +ƹ N fact|,exercise|,sport| +ƹ N fact|,compete|,sport| +ƹ N fact|,compete|,sport| +ƹ̳ N community|,sport| +ƺ N land|½ +ƺ CLAS unit|λ,&area| +ƻ N character|,(China|й) +ƻ N fruit|ˮ +ƻ N food|ʳƷ,#fruit|ˮ +ƻ N drinks|Ʒ,$addict|Ⱥ,#fruit|ˮ +ƻ N aValue|ֵ,color|ɫ,green| +ƻ N tree|,#fruit|ˮ +ƻ԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ +Ƽ N FlowerGrass| +Ƽˮ V meet| +ƽ V AlterForm|״,level|ƽ +ƽ V BeSame|ͬ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ V attack|,military|,police| +ƽ N character|,surname|,human|,ProperName|ר +ƽ V equal| +ƽ V equal|,sport| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ峵 N LandVehicle| +ƽ N tool|þ,*print|ӡˢ +ƽ V prosper| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N land|½ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ N aValue|ֵ,similarity|ͬ,alike| +ƽ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽȻ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽ V PutInOrder|,patient=earth|,agricultural|ũ +ƽ N land|½,surfacial| +ƽط粨 N fact|,disorder| +ƽط粨 N phenomena|,undesired|ݬ,disorder|,#unfortunate| +ƽһ V happen|,manner=sudden| +ƽ V attack|,military|,police| +ƽ V calm| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ V amend| +ƽ ADJ aValue|ֵ,form|״,surfacial| +ƽ CLAS unit|λ,&area| +ƽ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&size|ߴ,&area| +ƽ N house| +ƽ V put|,result=level|ƽ +ƽ V separate| +ƽɫ V equal| +ƽ V BeRecovered|ԭ +ƽ V calm| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,even|,desired| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| +ƽ N attribute|,strength|,&physical| +ƽľ N SportTool|˶ +ƽ ADJ aValue|ֵ,SmoothFinish|,polished| +ƽ N part|,%AnimalHuman|,flesh| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ N attribute|,price|۸,$stabilize|ʹ,&artifact|˹,commercial| +ƽ V stabilize|ʹ,patient=price|۸,commercial| +ƽ N image|ͼ,angular| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ N attribute|,circumstances|,peaceful|,desired|,&entity|ʵ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ N attribute|,PhysicsPower|,standard|׼ +ƽ N quantity|,amount|,&entity|ʵ +ƽֵ N quantity|,amount|,&entity|ʵ +ƽ N thinking|˼ +ƽ V put| +ƽ N wind| +ƽ¯ N facilities|ʩ,space|ռ,@produce|,#metal| +ƽ CLAS unit|λ,&area| +ƽ N image|ͼ,surfacial| +ƽͼ N image|ͼ +ƽ N human|,ordinary| +ƽ N time|ʱ,year| +ƽ N time|ʱ,year|,#crop|ׯ +ƽƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽƽ ADJ aValue|ֵ,kind|,ordinary| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ƽֱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽֱ V explain|˵ +ƽƽ V equal| +ƽ N place|ط,capital|,ProperName|ר,(North Korea|) +ƽ N time|ʱ,ordinary| +ƽ N material|,?clothing|,?tool|þ +ƽ N sound|,#language| +ƽ ADJ aValue|ֵ,duration|,TimeLong| +ƽ N time|ʱ,#alive| +ƽʱ N time|ʱ,ordinary| +ƽʱ N time|ʱ,peaceful|,^fight| +ƽ V BeSame|ͬ,sport| +ƽ˳ V lucky| +ƽ ADV aValue|ֵ,frequency|Ƶ,often| +ƽ̨ N part|,%building|,space|ռ +ƽ̹ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V LieDown| +ƽ V add| +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ƽ V LieDown| +ƽϢ V BeRecovered|ԭ +ƽϢ V attack|,military|,police| +ƽϢ V calm| +ƽ N facilities|ʩ,mine|,space|ռ +ƽĶ V estimate| +ƽľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,rank|ȼ,alike| +ƽ ADJ aValue|ֵ,sequence|,alike| +ƽ V AlterLocation|ռλ +ƽ V stabilize|ʹ +ƽ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ƽ ADJ aValue|ֵ,content|,easy|,desired| +ƽ׽ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ƽӹ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N fish| +ƽԭ N land|½,surfacial| +ƽ N time|ʱ,month| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽչ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V AlterForm|״,level|ƽ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽװ ADJ aValue|ֵ,property|,$store| +ƽ N part|,%AnimalHuman|,foot|,#disease| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ V lean|п +ƾ N document|,*prove|֤ +ƾ V visit| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƾ V enjoy|,content=scene| +ƾ V look| +ƾ N document|,*prove|֤ +ƾ N document|,*prove|֤ +ƾ֤ N document|,*prove|֤ +ƾ֤ N information|Ϣ,*prove|֤ +ƿ CLAS NounUnit|,&inanimate| +ƿ N tool|þ,cubic|,@put| +ƿ N part|,%tool|þ,*shut|ر +ƿ N phenomena|,undesired|ݬ,hardship| +ƿ N part|,%tool|þ,mouth| +ƿ N part|,%tool|þ,*shut|ر +ƿװ ADJ aValue|ֵ,property|,$store|,#cubic| +ƿ N tool|þ,cubic|,@put| + V estimate| + V judge|ö + N text| + V estimate| + V estimate| + V select|ѡ + V estimate| + V estimate| + V judge|ö + V estimate|,content=unit|λ + V estimate|,content=unit|λ,education| + V estimate|,content=affairs| + V estimate|,content=result| + V estimate| + V estimate|,content=rank|ȼ + V estimate| +ĸ ADJ aValue|ֵ,GoodBad|û,good|,$estimate| + N human|,*estimate| + V estimate|,content=reward| + V estimate| + N shows| + V estimate| +ۼ N human|,*estimate| +Ա N human|,*estimate| +Ա N text|,*explain|˵ + V judge|ö + N human|,*estimate| + V estimate| + N shows| + N text|,*explain|˵ +˵ V estimate| +Ϊ V RegardAs| +ί N human|,*estimate| +ί N institution|,*estimate| +н V judge|ö,content=payment|,commercial| +ѡ V choose|ѡ + V estimate| + N text| + V estimate| + V abandon| + V cover|ڸ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N image|ͼ + V remove| + V restrain|ֹ + V cover|ڸ + V dismiss| + V remove| + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N part|,%building|,mouth| +Ļ N part|,%machine|,*look|,#computer| + V abandon| + N facilities|ʩ,*protect| + V protect| + ADJ aValue|ֵ,form|״,slanted| + N part|,%land|½,skin|Ƥ +µ N land|½ +µ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +¶ N attribute|,slope|¶,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V dump| +ø N human|,female|Ů,undesired|ݬ,fierce| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ˮ V discourage|ˮ +ī V draw|,literature| +ˮ N time|ʱ,festival|,@congratulate|ף + ADV aValue|ֵ,degree|̶,very| +ΪҪ ADJ aValue|ֵ,importance|,important| + N human|,aged|,female|Ů + N human|,employee|Ա,female|Ů + N human|,family|,female|Ů +ż N community|,#family| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ + ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +ϱ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + V float|Ư + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V defeat|սʤ + V defeat|սʤ,military| + V destroy|,military| + V remove| + V reveal|¶ + V split|ƿ +ư V reveal|¶,patient=fact|,police| +ư ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +Ʊ N ship| +Ʋ V lose|ʧȥ,possession=wealth|Ǯ +Ʋ V BeUnable|,content=return|,commercial| +Ʋ ADJ aValue|ֵ,circumstances|,InDebt|,commercial| +Ʋ V fail|ʧ +Ʋ N human|,*BeUnable|,#return|,#owe|Ƿ,undesired|ݬ,commercial| +Ƴ V remove| +Ʒ V spend| +Ƹ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ƹ V disobey|Υ,content=regulation| +ƻ V alter|ı,manner=all|ȫ +ƻ V damage| +ƻ V destroy| +ƻ V disobey|Υ +ƻ ADJ aValue|ֵ,ability|,able|,damage| +ƻ N human|,*damage| +ƻ V reveal|¶,police| +ƻ V attack|,military| +ƻ V destroy|,military| +ƾԲ V BeRecovered|ԭ +ƾ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ƾ V improve| +ƿ V split|ƿ +ƿ N location|λ,#disease|,#wounded| +ƿڴ V ExpressAgainst|Ǵ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N entity|ʵ,generic|ͳ,waste| + N entity|ʵ,waste| +ò ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V disobey|Υ,content=regulation| +˸ V OutOfOrder| +˸ V OutOfOrder| +˸ V wounded| + V FormChange|α,StateFin=OutOfOrder| + V decline|˥ + V decline|˥,commercial| + V open|,patient=part|,means=split|ƿ +ն V guess|² + V disappear|ʧ +˷ N disease| + V FormChange|α,StateFin=OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ΪЦ V laugh|Ц + ADJ aValue|ֵ,kind|,special| + V appear|,agricultural|ũ + V start|ʼ,agricultural|ũ + V start|ʼ,industrial| + V start|ʼ,content=build| + V appear| +˹ V start|ʼ,content=build| + V win|ʤ,sport| + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| +Ь N clothing|,#foot|,*OutOfOrder| +Ь N human|,lascivious|,female|Ů,undesired|ݬ + V translate| +Լ V disobey|Υ,content=MakeAppointment|Լ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N attribute|,strength|,&AnimalHuman| + N mental| + N attribute|,courage|,&AnimalHuman| + V BeNear| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V approach|ӽ + V force|ǿ +Ȳ V undergo|,content=force|ǿ +Ȳ V worried|ż +Ⱥ V damage|,politics| +Ƚ V approach|ӽ + ADJ aValue|ֵ,circumstances|,urgent| +Ҫ V need| +ʹ V force|ǿ + PREP {condition} +ü ADJ aValue|ֵ,circumstances|,urgent| + N stone|ʯ,waste| + V analyze| + V split|ƿ +ʰ V explain|˵ +ʸ V split|ƿ,patient=part|,#AnimalHuman| +ʹ V labour|ٲ,means=cure|ҽ +ʽ V analyze| +ʿ V split|ƿ + N part|,%physical|,surfacial| + V analyze| + V FallDown| + V GoForward|ǰ + V apply|ͿĨ + V attack| + V beat| +˱ V touch|,PartOfTouch=part|,#AnimalHuman| +˴ V beat| +˷ V MakeUp|ױ +˷ N tool|þ,*MakeUp|ױ +˾ V remove|,patient=fire| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ V fail|ʧ + N tool|þ,cubic|,@put|,#wealth|Ǯ + V touch|,PartOfTouch=part|,#AnimalHuman| + V remove| +˷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V jump| + V shiver| + V shiver|,medical|ҽ +ͨ ECHO sound| + N InstitutePlace|,*sell|,@buy|,commercial| + V build| + N furniture|Ҿ,space|ռ,@LieDown|,@sleep|˯ + V unfold|̯ +̳ V explain|˵ +̵ N method|,#readings| +̵ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̸ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̹ܹ N human|,#occupation|ְλ,industrial| +̹ V build|,PatientProduct=facilities|ʩ,route|· +̿ V undergo|,Vgoingon|չ +· V build|,PatientProduct=facilities|ʩ,route|· +· N human|,#occupation|ְλ,industrial| + V exist| + N part|,%InstitutePlace|,#commercial|,mouth| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V lavish|˷ +ƽ V unfold|̯ +ƽ· V build|,PatientProduct=route|· + V build| +̯ V unfold|̯ +ǵ ADJ qValue|ֵ,amount|,many| +λ N location|λ,space|ռ,#sleep|˯ + V explain|˵ +չ V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա +ʹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Portugal|) + N fruit|ˮ +Ѹ N food|ʳƷ +Ѽ N facilities|ʩ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ѿ N drinks|Ʒ,$addict|Ⱥ + N bacteria|΢ +ղ N human|,*gather|ɼ,agricultural|ũ + N material|,?edible|ʳ + N tree|,#fruit|ˮ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Portugal|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + N humanized|,religion|ڽ + N human|,kindhearted|,desired| + N attribute|,behavior|ֹ,#religion|ڽ + N tree| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר +Ѱ N tool|þ,cubic|,@put| +Ѳ N FlowerGrass| +ѹӢ N FlowerGrass| + N tree| + N tool|þ,#wind|,*cool| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʵ޻ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N facilities|ʩ,#plant|ֲ + ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ N attribute|,range|,extensive|,&entity|ʵ +ղ V investigate| +ն N material|,?drinks|Ʒ +շ V disseminate|,content=knowledge|֪ʶ,#law|ɷ +ջ N regulation|,commercial| +ռ V CauseToDo|ʹ,ResultEvent=exist|,manner=extensive| +ռ V disseminate| +ռ ADJ disseminate| +ռ V exist|,manner=extensive| +ռ N quantity|,rate|,&disseminate| +ս V WeatherChange| + N money|,(Botswana|) + N place|ط,capital|,ProperName|ר,(Cape Verde|ý) +³ʿ N place|ط,ProperName|ר +³ʿ N human|,(Prussia|³ʿ) +ͨͨ ADJ aValue|ֵ,kind|,ordinary| +ʲͼ N language|,#country|,ProperName|ר +ͬ V congratulate|ף +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ N symbol|,#quantity|,#DoSum| +ͨ N language| +ͨ N human|,ordinary| +ѡ V select|ѡ + V illuminate| + N character|,surname|,human|,ProperName|ר + N part|,%land|½,#waters|ˮ,edge| + N account|,@record|¼ + V compile|༭ + N experience|,believe| + N publications|鿯,@record|¼,#music| + V compile|༭,ContentProduct=music| +д V compile|༭ + N publications|鿯,@record|¼,#music| + V exposure|¶ +ع V exposure|¶ +¶ V exposure|¶ +ɹ N illuminate| + N water|ˮ,fast| +ٲ N water|ˮ,fast| + CLAS NounUnit|,&fact| + CLAS NounUnit|,&publications|鿯 + V expect| + N time|ʱ +ڴ V expect| +ڻ N artifact|˹,commercial|,generic|ͳ +ڻ V affairs|,commercial| +ڼ N time|ʱ +ڿ N publications|鿯 + V due| +ĩ N time|ʱ,ending|ĩ,education| + V expect| +Ʊ N bill|Ʊ + N aspiration|Ը,expect| + V expect| +ֵ N aspiration|Ը,expect| + N attribute|,boundary|,&time|ʱ + N time|ʱ,middle|,education| + V damage| + V deceive|ƭ + V use| +۸ V damage| + V damage| + V HideTruth| +ƭ V deceive|ƭ +ƭ ADJ aValue|ֵ,property|,*deceive|ƭ +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ӳ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V HideTruth| + V damage| +ѹ V damage| +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ V deceive|ƭ + V reside|ס + V stay|ͣ + V reside|ס + V stay|ͣ +Ϣ V reside|ס + N character|,surname|,human|,ProperName|ר + N emotion|,sorrowful| + N human|,family| + N human|,family|,female|Ů +޶ N human|,family|,mass| +޶С N human|,family|,mass| +ɢ V unfortunate|,scope=lose|ʧȥ,family| + N human|,family|,female|Ů + N human|,family|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ƴ˴ V merge|ϲ +± N fact|,fight|,#(China|й),#(Japan|ձ) +ɰ N tool|þ,*recreation| + V ExpressAnger|ʾŭ +ϰ ADJ aValue|ֵ,form|״,rugged| +ϰ V uneasy| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| +Ϧ N time|ʱ,day|,night| +һ N time|ʱ,day| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + ADJ aValue|ֵ,property|,speak|˵,bustling| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + N phenomena|,undesired|ݬ,#WeatherBad| + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V sorrowful| +Ȼ V sorrowful| + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + N tool|þ,*transmit|,#electricity| +᲼ N material|,?tool|þ + N character|,surname|,human|,ProperName|ר + N tool|þ,*decorate|װ,generic|ͳ +Ṥ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ṥ N image|ͼ,$apply|ͿĨ +Ṥ N image|ͼ,$draw| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| +һ ADJ aValue|ֵ,brightness|,dark| +һ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +έ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ƥ N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƥ N part|,%material|,#apply|ͿĨ,skin|Ƥ + N tool|þ,*decorate|װ,generic|ͳ + NUM qValue|ֵ,amount|,cardinal|,mass| + V produce| + ADJ aValue|ֵ,kind|,special| + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + PRON {it|} + ADJ aValue|ֵ,importance|,secondary| + ADV aValue|ֵ,sequence|,ordinal| + ADV location|λ,hind| + N time|ʱ,future| + N location|λ + N time|ʱ +ò ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ʵ ADV aValue|ֵ,trueness|α,true| + ADJ aValue|ֵ,kind|,other| + PRON {it|} + ADJ aValue|ֵ,kind|,other| + N location|λ + N tool|þ,*recreation| + V equal| + N tool|þ,*recreation| + N human|,*FondOf|ϲ,#recreation| + N part|,%tool|þ,#recreation| +ʥ N human|,desired|,wise|,sport| + N human|,*engage|,#compete|,sport| +̳ N community|,sport| + N knowledge|֪ʶ,#sport| + N part|,%tool|þ,#recreation| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,kind|,single| + ADJ aValue|ֵ,kind|,special| + N human|,desired|,wise| + N language|,#country|,ProperName|ר +湦 N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,kind|,queer| + V ignorant|֪ + N attribute|,scene|,good|,&inanimate| +ɾ ADJ aValue|ֵ,value|ֵ,precious|,desired| +漣 N entity|ʵ,queer| +漣 ADJ aValue|ֵ,kind|,queer| +澰 N attribute|,scene|,good|,&inanimate| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ȱ V lack|ȱ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N text|,desired| + N text|,undesired|ݬ + N information|Ϣ,queer| +Ϯ V attack|,manner=sudden|,military| +Ч N attribute|,effect|Ч,good|,&entity|ʵ,&act|ж +ι״ ADJ aValue|ֵ,form|״,queer| +ѫ N result|,desired| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N phenomena|,desired|,#lucky| + N phenomena|,queer| + N method| +װ N clothing|,queer| + N FlowerGrass| + ADJ aValue|ֵ,similarity|ͬ,different| + N facilities|ʩ,route|·,branch|֧ +· N facilities|ʩ,route|· + V despise| +; N facilities|ʩ,route|·,wrong| + N information|Ϣ + N land|½ + V irrigate|,agricultural|ũ + ADJ aValue|ֵ,form|״,rugged|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| +᫲ƽ ADJ aValue|ֵ,form|״,rugged| + N part|,%AnimalHuman|,body| + N part|,%fish|,body| + N part|,%AnimalHuman|,body| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADJ aValue|ֵ,form|״,neat|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete| + N character|,surname|,human|,ProperName|ר +뱸 ADJ aValue|ֵ,wholeness|ȱ,complete| +볪 V sing|,entertainment| + ADJ aValue|ֵ,content|,neat|,desired| + V MakeSound| + V WellKnown| + N place|ط,city|,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,property|,MakeSound|,together|ͬ +ˢˢ ADJ aValue|ֵ,content|,neat|,desired| +ͷ V GoForward|ǰ + V cooperate| +Э V cooperate| + ADJ aValue|ֵ,depth| + ADJ aValue|ֵ,form|״,neat|,desired| +ץ V manage|,manner=cooperate| + V recreation|,entertainment| + N mark|־ + N place|ط,#human| + N tool|þ,@hang|,#mark|־ + N mark|־ +콢 N weapon|,ship|,military| +쿪ʤ V succeed|ɹ +쿪ʤ V win|ʤ + N clothing|,#body|,#female|Ů + N human|,*lift|,#mark|־ + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,opened| + N mark|־ + V recite|ж + V request|Ҫ + V recite|ж + V request|Ҫ + N character|,surname|,human|,ProperName|ר + N material|,?drinks|Ʒ + V sit| + N army| + N human|,military| + N part|,%army| +ﳵ V TakeVehicle|,patient=LandVehicle| +ﻢ V embarrassed|Ϊ +ᆵ N human|,#occupation|ְλ,police| + V TakeVehicle|,patient=livestock| +ʿ N human|,military| + N human|,#occupation|ְλ,*TakeVehicle|,#livestock| + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&event|¼ + V PickOut|γ + V appear| + V arise| + V collect| + V compile|༭ + V do| + V establish| + V happen| + V rise| + V start|ʼ + STRU {Vable|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + V write|д + V begin|ʼ + V compile|༭ + N human|,*compile|༭ + V start|ʼ,content=leave|뿪 + ADV aValue|ֵ,time|ʱ,early| + V arise| + V do| + N location|λ,space|ռ,@begin|ʼ + V lift| + V start|ʼ + V start|ʼ,content=fly| + V WeatherBad|,#wind| + V SelfMoveInDirection| + ADJ aValue|ֵ,form|״,rugged| + V compile|༭,ContentProduct=text| + V start|ʼ,content=VehicleGo|ʻ + V IllBehave| + V cook| + V unfortunate|,cause=fire|,police| + V obtain|õ,means=LookFor|Ѱ,#crime| + V collect|,possession=artifact|˹,commercial| + V prosper| + N attribute|,price|۸,&artifact|˹,commercial| + N reason| + V SelfMoveInDirection| + V endeavour| + N fact|,#alive| + N room| + V arise| + STRU {Vdirection|,upper|} + STRU {Vresult|} + STRU {Vstart|} + STRU {Vsuppose|ٶ} + V arise| + V SelfMoveInDirection| + ADJ aValue|ֵ,rank|ȼ,elementary| +ê V start|ʼ,content=VehicleGo|ʻ + V naming| + V start|ʼ,content=run|,sport| + N location|λ,@start|ʼ,#run|,sport| + V swollen| + N process| +Ȧ V clean|ʹ,agricultural|ũ +ɫ N result|,#improve|,desired| + V arise| + V start|ʼ,content=leave|뿪 +ʼ V begin|ʼ + V uprise|,politics| + V swear| + V start|ʼ + ADV aValue|ֵ,time|ʱ,early| +ˮ V swollen| + V BeRecovered|ԭ,medical|ҽ + V accuse|ظ,police| + N document|,*accuse|ظ,police| +״ N document|,*accuse|ظ,police| + V start|ʼ,content=jump|,sport| +ͷ ADV aValue|ֵ,time|ʱ,early| +ͷ V start|ʼ + ADV aValue|ֵ,time|ʱ,early| + V start|ʼ,content=leave|뿪 +ҹ V arise|,purpose=excrete|й + V doubt| + N fact|,uprise|,politics| + V uprise|,politics| + N human|,*uprise|,politics| + N cause|ԭ + V BeRecovered|ԭ + V employ| +Դ V ResultFrom|Ե +Դ N cause|ԭ + V start|ʼ,content=transport| +̰ ADJ aValue|ֵ,duration|,TimeLong| + V lift| +ػ N machine|,*lift| + N material|,?food|ʳƷ + N tool|þ,*open|,#tool|þ + V function| + ADJ aValue|ֵ,form|״,wrinkled| + V start|ʼ,content=VehicleGo|ʻ + ADJ aValue|ֵ,form|״,wrinkled| + ADV {comment|} + CONJ {emphasis|ǿ} + ADV {comment|} +д ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ֹ CONJ {emphasis|ǿ} + V beg| + V request|Ҫ + V surrender|,military| + V request|Ҫ,ResultEvent=pity| + V beg| + V request|Ҫ + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ +Ԯ V request|Ҫ,ResultEvent=help| +ؤ N human|,poor|,undesired|ݬ + V expect| + V upmove| + V bird|,^fly| + V manage|,patient=affairs|,#industrial| + N plans|滮 + V expect| +ҵ N affairs| +ͼ N aspiration|Ը,expect| +ͼ V try| + V expect| +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ V manage|,patient=affairs|,AccordingTo=commercial| +ҵ N human|,#occupation|ְλ,commercial| +ҵ N community|,commercial| + V explain|˵ + V open| + V start|ʼ + V teach| + V start|ʼ,content=leave|뿪 + V teach| + V TurnOn| + V start|ʼ +ɱ N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + V teach| +ʽ ADJ aValue|ֵ,content| + N human|,*teach| + V open| + V start|ʼ,content=VehicleGo|ʻ + V teach| + V CauseToDo|ʹ,ResultEvent=doubt| +ʾ V teach| + N text|,*announce| + V incur| + V start|ʼ,content=quarrel| + V use| + V start|ʼ,content=transport| + V start|ʼ,content=VehicleGo|ʻ + V carve| + N document|,*MakeAppointment|Լ + V fit|ʺ + V fit|ʺ + N time|ʱ,important| + N bill|Ʊ,#wealth|Ǯ + N document|,*MakeAppointment|Լ + N human|,friend| +Լ N agreement|Լ + V build| + N part|,%building|,nerve| + N attribute|,ability|,&human| + N implement|,generic|ͳ + N part|,%AnimalHuman|,viscera| + N implement| + N part|,%AnimalHuman| + N part|,%implement|,generic|ͳ + N implement|,generic|ͳ + N music| + N tool|þ,generic|ͳ + N implement|,generic|ͳ +е N implement|,generic|ͳ +е N weapon|,generic|ͳ +е N fact|,sport| +е N fact|,sport| +Լ N disease| + V PayAttention|ע + V angry| + N attribute|,bearing|̬,&human| + N attribute|,odor|ζ,&physical| + N attribute|,strength|,&AnimalHuman| + N gas| + N gas|,#human| + V irritate|ŭ + N tool|þ,*inhale|,#gas| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V angry| + N disease|,pant| + V pant| + V pant| + N part|,%building| + N machine|,*beat| + N tool|þ,*inlay|Ƕ +洬 N ship| + ADJ aValue|ֵ,performance| +Һѹ ADJ aValue|ֵ,performance| + N attribute|,demeanor|,&human| + N attribute|,tolerance|,&human| + V disheartened| + V pant| + N part|,%implement| + N attribute|,occasion|,&event|¼ + V angry| + N mental| + N part|,%implement| + V break|۶,industrial| + N part|,%plant|ֲ,base| + N attribute|,strength|,&AnimalHuman| + N part|,%AnimalHuman|,viscera| + N disease| +᳤ ADJ aValue|ֵ,courage|,brave|,desired| + V fasten|˩,industrial| + N attribute|,circumstances|,&entity|ʵ + N weather| + V ize|̬,PatientAttribute=gas| + V pant| +ܻ V worried|ż + N attribute|,behavior|ֹ,&human| + V die| + N part|,%AnimalHuman| + N part|,%building| + N part|,%inanimate| + N part|,%plant|ֲ + N attribute|,tolerance|,&human| + N gas| +ú N material|,$burn| + N part|,%AnimalHuman| + N part|,%implement| + ADJ aValue|ֵ,circumstances|,$shut|ر + N part|,%bird|,#gas| + N tool|þ,cubic|,@put|,#gas| + V angry| + V disheartened| + ADJ disheartened| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,demeanor|,&human| + N shape| + ADJ aValue|ֵ,courage|,brave|,desired| +ǹ N weapon|,*firing| + N tool|þ +ɫ V BeWell|׳ + N attribute|,strength|,&physical| +ư ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,circumstances|,&human|,&organization|֯ +Ѿ V decline|˥ +Ѿ V end|ս +̬ N attribute|,PhysicState|״̬,gas|,&physical| + N gas| + N facilities|ʩ,mine| +Ͳ N tool|þ,*fill|,#gas| +ͷ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + N gas| +ɽ ADJ aValue|ֵ,courage|,brave|,desired| +ζ N attribute|,odor|ζ,&physical| +ζ N emotion|,FondOf|ϲ +ζͶ V fit|ʺ + N attribute|,temperature|¶,&weather| +Ϣ N attribute|,odor|ζ,&physical| +Ϣ N gas| +Ϣ V decline|˥ + N attribute|,occasion|,&event|¼ + N knowledge|֪ʶ,#weather| + N weather| +̨ N InstitutePlace|,*investigate|,#weather| +ǧ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N aircraft|,#WeatherChange| +ѧ N knowledge|֪ʶ,#weather| +վ N InstitutePlace|,*investigate|,#weather| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) + N disease| + V ill|̬ + N gas| +Ѫ N attribute|,strength|,&AnimalHuman| +ѹ N attribute|,strength|,&gas| +ѹ N attribute|,strength|,&gas| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pant| + N attribute|,behavior|ֹ,&human| + N attribute|,quality|,&human| +׳ɽ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V swollen| + PREP {TimeFin} + N time|ʱ,now| +Ϊֹ N time|ʱ,now| + V abandon| +Ͷ V amend|,content=wrong| +ʴ V include|,ResultWhole=army|,military| + N human|,$abandon|,young| +ҷ V defeated|,military| +ͼ V amend|,content=wrong| +Ȩ V abandon|,possession=choose|ѡ +Ȩ V abandon|,possession=compete| + V die| +Ӥ V abandon|,possession=human|,young| +Ӥ V human|,young|,$abandon| + V abandon| + N gas| + N LandVehicle| +ҵ N affairs|,#LandVehicle| +ù N InstitutePlace|,@reside|ס,#tour|,#LandVehicle|,commercial| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| + N ship| + N machine|,*beat| + N tool|þ,*illuminate| + N tool|þ,*MakeSound| + N part|,%implement| + V ize|̬,industrial| + N part|,%machine| + N drinks|Ʒ,$addict|Ⱥ +ַ N machine|,*produce|,#electricity| +ֻ N machine| +ˮ N drinks|Ʒ +ͧ N ship| + N material|,liquid|Һ,$burn|,*lighting|ȼ + V weep| + V weep| + V finish| + V break|۶ + V calculate| +ͷȥβ V subtract| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡô ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ CONJ {time|ʱ} +ǡ ADV {emphasis|ǿ} +ǡǡ ADV {emphasis|ǿ} +ǡǡ෴ ADV {supplement|ݽ} +ǡ ADV aValue|ֵ,time|ʱ,proper| +ǡ PREP {contrast} +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ PREP {contrast} +Ǣ V discuss| +Ǣ V fit|ʺ +Ǣ V discuss| +Ǣ̸ V discuss| +Ǣ̸ N fact|,discuss| +ǣ V guide| +ǣ V pull| +ǣ V relate|й +ǣҶ V ThinkOf|˼ +ǣ V relate|й +ǣ V obstruct|ֹ +ǣ V restrain|ֹ +ǣ V restrain|ֹ,military| +ǣ V influence|Ӱ +ǣ V ThinkOf|˼ +ǣ V relate|й +ǣ V connect| +ǣ V relate|й +ǣţ N celestial| +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣ V relate|й +ǣ V tie| +ǣͷ V guide| +ǣ V ally| +ǣ V control| +ǣߴ V reconcile| +ǣ V pull| +ǣ N LandVehicle|,*pull| +ǣ N attribute|,strength|,#pull|,&physical| +ǣ V restrain|ֹ,military| +ǣƲ N army| +ǥ N tool|þ,*stab| +ǥ N tool|þ,*stab|,#stone|ʯ +Ǧ N metal| +Ǧ N tool|þ,*print|ӡˢ +Ǧ N PenInk|ī,*write|д +Ǧ N material|,?tool|þ +Ǧ N tool|þ,*build| +Ǧ N SportTool|˶ +Ǧӡ V print|ӡˢ +Ǧֱ ADJ aValue|ֵ,posture|,upright| +Ǧ ADJ aValue|ֵ,source|Դ,metal| +Ǧж N disease| +Ǧ N tool|þ,*print|ӡˢ +ǧ NUM qValue|ֵ,amount|,cardinal|,mass| +ǧ NUM qValue|ֵ,amount|,many| +ǧ V aValue|ֵ,kind|,many| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ V differ|ͬ,scope=many| +ǧٿ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ǧ V MakeBetter|Ż +ǧټ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ǧ֮һ NUM qValue|ֵ,amount| +ǧ N human|,mass| +ǧ CLAS unit|λ,&electricity| +ǧ CLAS unit|λ,&electricity| +ǧ ADJ aValue|ֵ,duration|,TimeLong| +ǧ V call|ٻ +ǧ N community|,#family|,many| +ǧ ADJ aValue|ֵ,weight|,heavy| +ǧ N tool|þ,*lift| +ǧﶥ N tool|þ,*lift| +ǧ N human|,family|,female|Ů +ǧ N wealth|Ǯ,many| +ǧ CLAS unit|λ +ǧһ N time|ʱ,dangerous|Σ +ǧ N army|,strong|ǿ +ǧ CLAS unit|λ,&weight| +ǧ N FlowerGrass| +ǧ N livestock|,desired|,fast| +ǧ ADJ aValue|ֵ,distance|,far|Զ +ǧ N human|,able|,desired| +ǧ N tool|þ,*look|,#far|Զ +ǧ N phenomena|,*damage|,#software| +ǧƪһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ǧٹ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ǧǧ NUM qValue|ֵ,amount|,many| +ǧ N time|ʱ,TimeLong| +ǧҵ N affairs|,great|ΰ,TimeLong| +ǧɽˮ ADJ aValue|ֵ,distance|,far|Զ +ǧ CLAS unit|λ,&volume|ݻ +ǧ˿ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ǧͷ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ǧͷ ADJ qValue|ֵ,amount|,many| +ǧ CLAS unit|λ,&electricity| +ǧʱ CLAS unit|λ,&electricity| +ǧ NUM qValue|ֵ,amount|,many| +ǧ ADV {modality|} +ǧǧ ADV {modality|} +ǧ N phenomena|,undesired|ݬ,hardship| +ǧ N text|,many| +ǧѷ ADJ qValue|ֵ,amount|,few| +ǧһʱ ADJ qValue|ֵ,amount|,few| +ǧȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ǧ CLAS unit|λ,&frequency|Ƶ +ǧ N time|ʱ,year| +Ǩ V SelfMoveInManner|ʽ +Ǩ V change| +Ǩ V TakeAway|ᶯ,patient=capital| +Ǩ V endure| +Ǩ V obey|ѭ +Ǩ V surrender| +Ǩ V TakeAway|ᶯ,patient=family| +Ǩŭ V blame|Թ +Ǩ V TakeAway|ᶯ +Ǩ V delay| +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ,patient=family| +ǩ V sign|д +ǩ N tool|þ +ǩ N tool|þ,#mark|־ +ǩ V write|д +ǩ V record|¼ +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V send| +ǩͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩ V sign|д,ContentProduct=name| +ǩ N human|,*sign|д +ǩ V receive|,means=sign|д +ǩ V sign|д +ǩЭ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩԼ V sign|д,content=agreement|Լ,commercial| +ǩ֤ N document| +ǩע V write|д +ǩ V sign|д,ContentProduct=name| +Ǫ NUM qValue|ֵ,amount|,cardinal| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫǫ N human|,desired|,modest|ǫ +ǫ V refuse|,manner=modest|ǫ +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ǭ ADJ aValue|ֵ,sex|Ա,male| +Ǭ N natural|Ȼ +Ǭ¡ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ǭ ADJ aValue|ֵ,color|ɫ,black| +ǭ N human|,mass| +Ǯ N character|,surname|,human|,ProperName|ר +Ǯ N fund|ʽ +Ǯ N money| +Ǯ CLAS unit|λ,&weight|,(China|й) +Ǯ N wealth|Ǯ +Ǯ N tool|þ,cubic|,@put| +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N wealth|Ǯ,$obtain|õ,commercial| +Ǯ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ǯׯ N InstitutePlace|,past|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ǯ V pick|ʰ +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǯ N affairs|,industrial| +ǯ N human|,#occupation|ְλ,industrial| +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǰ ADJ aValue|ֵ,source|Դ,original|ԭ +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ N location|λ,InFront|ǰ +ǰ NUM qValue|ֵ,sequence|,ordinal| +ǰ N time|ʱ,past| +ǰ뱲 N time|ʱ,process|,@alive|,half| +ǰ볡 N part|,%fact|,#compete|,#exercise| +ǰ N time|ʱ,morning| +ǰ N time|ʱ,process|,@alive|,half| +ǰ N time|ʱ,morning| +ǰҹ N time|ʱ,day|,night| +ǰ N human|,clan| +ǰ N part|,%human|,arm| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N time|ʱ,past| +ǰ֮ N information|Ϣ,*persuade|Ȱ˵ +ǰ N phenomena|,past| +ǰ N attribute|,outlook|ǰ,&thing| +ǰƽ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ V guide| +ǰ N place|ط,military|,InFront|ǰ +ǰ N part|,%AnimalHuman|,head|ͷ +ǰ N location|λ,InFront|ǰ +ǰ N human|,family|,female|Ů,past| +ǰ N human|,employee|Ա,*exercise| +ǰ N human|,guide| +ǰ N human|,family|,male| +ǰ V KeepOn|ʹ +ǰ V fail|ʧ +ǰ ADV aValue|ֵ,duration|,TimeLong| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ ADV qValue|ֵ,amount|,almost| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ N part|,%clothing|,body| +ǰ V GoForward|ǰ +ǰ N attribute|,outlook|ǰ,&thing| +ǰ N attribute|,scene|,&physical| +ǰ N fact|,crime|,undesired|ݬ,past| +ǰ V come| +ǰ N example|ʵ +ǰ N location|λ,InFront|ǰ +ǰ N part|,%AnimalHuman|,nerve| +ǰٷʴ N disease| +ǰ N disease| +ǰ N part|,%LandVehicle|,leg| +ǰé N community|,*succeed|ɹ,#HaveContest| +ǰ N part|,%building|,mouth| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N location|λ,InFront|ǰ,space|ռ +ǰ N time|ʱ,past|,year| +ǰ N location|λ,InFront|ǰ +ǰͺ V KeepOn|ʹ +ǰ N time|ʱ,early| +ǰ N human|,family|,female|Ů +ǰǰ N process| +ǰ V PartSelfMove| +ǰ N human|,past| +ǰȥ V LeaveFor|ǰ +ǰ N human|,past| +ǰ N human|,#occupation|ְλ +ǰ N human|,past| +ǰ N time|ʱ,past|,day| +ǰ N human|,military|,*look|,*defend| +ǰ N physical|,past| +ǰ² EXPR remember|ǵ,content=past| +ǰ ADJ aValue|ֵ,kind|,special| +ǰδ ADJ aValue|ֵ,kind|,special| +ǰ̨ N facilities|ʩ,space|ռ,#perform| +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N time|ʱ,past|,day| +ǰͥ N part|,%AnimalHuman| +ǰͷ ADJ aValue|ֵ,time|ʱ,past| +ǰͷ ADJ location|λ,InFront|ǰ +ǰ; N attribute|,outlook|ǰ,&thing| +ǰ; V prosper| +ǰ N part|,%animal|,leg| +ǰ V LeaveFor|ǰ +ǰ N human|,*exercise|,(football|) +ǰ޹ ADJ aValue|ֵ,kind|,special| +ǰϦ N time|ʱ,past| +ǰ N place|ط,military|,InFront|ǰ +ǰ߲ N army| +ǰ N part|,%text| +ǰԲ V FitNot| +ǰ N place|ط,military|,InFront|ǰ +ǰ V CausePartMove|,PatientPartof=body| +ǰҹ N time|ʱ,past| +ǰʶ N thought|ͷ +ǰ N process| +ǰԵ N attribute|,relatedness|,&human| +ǰհ V predict|Ԥ +ǰհ N attribute|,ability|,predict|Ԥ,&human|,&organization|֯ +ǰ N information|Ϣ +ǰ N entity|ʵ,InFront|ǰ +ǰ PRON {ThirdPerson|} +ǰô N part|,language| +ǰ׺ N part|,language| +ǰ N process|,early| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ ADJ aValue|ֵ,behavior|ֹ,secret| +DZ V walk|,manner=secret| +DZ V hide| +DZ V flee|,manner=secret| +DZ V sink|³ +DZ V hide| +DZ N time|ʱ,@GiveBirth|,#disease| +DZ V hide| +DZ V reside|ס,manner=hide| +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ N water|ˮ +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ V GoInto| +DZ V GoInto|,manner=secret| +DZ V sink|³ +DZˮ V sink|³ +DZˮͧ N weapon|,ship|,military| +DZˮ N clothing|,*sink|³ +DZˮԱ N human|,#occupation|ְλ,*sink|³ +DZ̨ N information|Ϣ +DZ̨ N text|,#shows| +DZ V flee|,manner=secret| +DZͧ N weapon|,ship|,military| +DZ N tool|þ,*look| +DZ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +DZ V SelfMoveInManner|ʽ,location=waters|ˮ +DZ V walk|,manner=secret| +DZѪ N part|,%AnimalHuman|,liquid|Һ +DZĬ V influence|Ӱ,manner=tactful| +DZʶ N mental| +DZӾ V swim| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ N attribute|,ability|,possible|,&entity|ʵ +Dz V discharge| +Dz V dispatch|Dz +Dz V expel| +Dzɢ V discharge| +Dz V expel| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dz ADJ aValue|ֵ,content|,easy|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,depth|,shallow|dz +dz ADJ aValue|ֵ,duration|,TimeShort| +dz ADJ aValue|ֵ,hue|Ũ,light| +dz ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dzֹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +dz N waters|ˮ +dzɫ ADJ aValue|ֵ,color|ɫ,brown|,light| +dzɫ ADJ aValue|ֵ,color|ɫ,red|,light| +dz N thought|ͷ +dz ADJ aValue|ֵ,content|,simple|,desired| +dzɫ ADJ aValue|ֵ,color|ɫ,blue|,light| +dzª ADJ aValue|ֵ,content|,empty|,undesired|ݬ +dzɫ N attribute|,color|ɫ,light|,&physical| +dz̲ N land|½ +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +Ǵ V ExpressAgainst|Ǵ +ǵ N part|,%inanimate|,mouth| +ǵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ƕ V inlay|Ƕ +Ƕ V inlay|Ƕ +ǶԹ N disease| +Ƿ V CausePartMove| +Ƿ V CausePartMove|,PatientPartof=head|ͷ +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +Ƿ V BecomeLess|,scope=produce| +Ƿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ƿ N wealth|Ǯ,$owe|Ƿ,$return| +Ƿȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƿȱ V lack|ȱ +Ƿ V gather|ɼ,possession=few| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ƿծ V owe|Ƿ +Ƿ V owe|Ƿ +Ƿ V owe|Ƿ,possession=wealth|Ǯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N emotion|,regret|Ǹ +Ǹ N emotion|,regret|Ǹ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ N emotion|,regret|Ǹ +ǹ N weapon|,*firing|,generic|ͳ +ǹ N weapon|,*stab| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N weapon|,*stab| +ǹ N weapon|,$firing| +ǹ N weapon|,generic|ͳ +ǹ V firing| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N part|,%weapon| +ǹֵ N fact|,firing| +ǹ N weapon|,generic|ͳ +ǹɱ V kill|ɱ,manner=firing| +ǹ N sound|,#firing| +ǹ N human|,*firing| +ǹ N part|,%weapon| +ǹе N weapon| +ǹ N part|,%facilities|ʩ,#military|,@firing| +ǹ N part|,%physical| +ǹս N fact|,firing| +ǹ֧ N weapon|,mass| +ǹӶ N weapon|,$firing| +Ǻ V ill|̬ +ǻ N attribute|,SoundQuality|,&sound| +ǻ N attribute|,SoundVolume|,&sound| +ǻ N part|,%physical|,body| +ǻ N sound| +ǻ N AnimalHuman|,generic|ͳ +ǻ N attribute|,SoundQuality|,&speak|˵ +Ǽ N character|,(China|й) +Ǽ N community|,ProperName|ר,(China|й) +ǽ N part|,%building|,skin|Ƥ +ǽ N publications|鿯,news| +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,base| +ǽ N location|λ,%building|,skin|Ƥ +ǽֽ N paper|ֽ,*decorate|װ,#building| +Ǿޱ N FlowerGrass| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ N character|,surname|,human|,ProperName|ר +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +ǿ N human|,undesired|ݬ +ǿ V force|ǿ +ǿ V debate|,manner=fierce| +ǿʶ V debate|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿ N human|,crime|,undesired|ݬ,*rob| +ǿ N human|,enemy|,strong|ǿ +ǿ N attribute|,quality|,strong|ǿ,desired|,&thing| +ǿ V express|ʾ,manner=emphasis|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ N community|,sport|,strong|ǿ +ǿ V attack|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,durable|,desired| +ǿ N place|ط,country|,strong|ǿ +ǿ V surpass|ǿ +ǿ ADJ aValue|ֵ,courage|,brave|,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ V strengthen|ӹ +ǿ N weapon|,aircraft|,military| +ǿ V force|ǿ +ǿ V force|ǿ +ǿ V force|ǿ,patient=human| +ǿ V damage|,purpose=mating|,crime| +ǿ鷸 N human|,*damage|,crime|,lascivious| +ǿ N chemical|ѧ +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ N human|,official|,military| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ǿ V order| +ǿǿ N fact|,commercial|,undesired|ݬ +ǿ V force|ǿ +ǿ V request|Ҫ,manner=force|ǿ +ǿȨ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ǿȨ N affairs|,#country|,politics| +ǿ N human|,able|,desired| +ǿ V force|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ V improve|,patient=physique| +ǿʢ V prosper| +ǿʹ V force|ǿ +ǿ N human|,able|,desired| +ǿ N human|,able|,sport| +ǿ V surpass|ǿ +ǿ N chemical|ѧ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯,sport| +ǿļ N medicine|ҩ,*cure|ҽ,#heart| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce| +ǿ V force|ǿ +ǿջЦ V laugh|Ц,manner=force|ǿ +ǿӲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿӲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿռ V occupy|ռ +ǿ N human|,able|,desired| +ǿֱ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ V force|ǿ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ V refute| +ǿ֮ĩ V decline|˥ + V VieFor| + V cut| + V rob| + V refute| + V rob| + V buy|,manner=endeavour| + N fact|,buy|,#endeavour| +糱 N fact|,buy|,#endeavour| +һ V undergo|,content=sell| + V rob| +ٰ N fact|,#rob|,police| +ٷ N human|,*rob|,crime|,undesired|ݬ + V rescue|,manner=endeavour|,medical|ҽ + V rob| + V gather|ɼ,manner=endeavour|,agricultural|ũ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +ֻ N artifact|˹,able|,$sell| + V VieFor| + V rescue|,StateIni=dangerous|Σ + V repair|,manner=endeavour| + V transport|,manner=endeavour| +ռ V occupy|ռ + V planting|ֲ,manner=endeavour|,agricultural|ũ + N tool|þ,*dig|ھ + V beat| + V cheat|ƭ +ô V beat| +ô V irritate|ŭ +ö V decide| +ù V rob| +ÿ V beat|,result=open| + V recreation| + V beat|,patient=part|,#house| + V MakeSound| +թ V cheat|ƭ +թ V cheat|ƭ +թ N human|,*cheat|ƭ,crime| + V cheat|ƭ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| +Ȼ ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N facilities|ʩ,route|·,#waters|ˮ +Ŷ N part|,%facilities|ʩ,base| +ź N facilities|ʩ,route|·,#waters|ˮ +ſ N part|,%facilities|ʩ + N facilities|ʩ,route|·,#waters|ˮ + N fact|,recreation| +ͷ N part|,%facilities|ʩ +ͷ N facilities|ʩ,space|ռ,military| +ܢ N part|,%route|· + V look| +Ʋ V despise| +Ƽ V perception|֪,means=look| + V look| + ADJ aValue|ֵ,height|߶,tall| + N character|,surname|,human|,ProperName|ר +ľ N tree| +ɴ N material|,?clothing| +Ǩ V TakeAway|ᶯ,patient=family| +ζ N place|ط,capital|,ProperName|ר,(Guyana|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,*function|,#foreign|,#country| +Ȱ N institution|,ProperName|ר,politics|,(China|й) +Ȱ N human|,*function|,#foreign|,#country| +Ⱦ V function|,#foreign|,#country| +Ⱦ N human|,family| + N community|,#human|,#country|,(China|й) + N human|,*function|,#foreign|,#country| + N human|,family| + N affairs|,#human|,#function|,#foreign|,#country| + N place|ط + N fund|ʽ +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ɶ칤 ADJ aValue|ֵ,quality|,refined|,desired| +ɸ V do|,manner=dexterous| +ɺ V fit|ʺ +ɿ N food|ʳƷ +Ŀ V create|,PatientProduct=reason|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +ȡ V rob| + ADJ aValue|ֵ,ability|,able|,desired| + N fact| + N human|,able|,desired| + N fact|,meet| + V meet| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#weapon| +ʳ N part|,%bird|,wing| + V lift| + V CausePartMove| + V FormChange|α,StateFin=curved| + V upmove| +̱ V die| +̳ N human|,able|,desired| + V FormChange|α,StateFin=curved| + V expect| + V CausePartMove|,PatientPartof=head|ͷ + V upmove| +β ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,slope|¶,steep| +Ͱ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +Ͱ ADJ aValue|ֵ,slope|¶,steep| +ͱ N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +λ N artifact|˹,able|,$sell| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ƥ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ƥ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N method|,*succeed|ɹ + N part|,%inanimate|,mouth| + N method| + V BeNear| + V cut| + V fit|ʺ + ADV {modality|} +в AUX {modality|,neg|} +в˰ N tool|þ,@cut|,#cook| +г ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +г V cut|,#cure|ҽ,medical|ҽ +д V research|о +ж V shrink|С,means=cut| +ж V separate|,means=cut| +з֮ʹ N phenomena|,undesired|ݬ,#unfortunate| +и V break|۶ +к V fit|ʺ +л V alter|ı +м V remember|ǵ,manner=modality| +м V evade|ر +н V BeSimilar| +п V split|ƿ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V cut|,#cook| + V diagnose|,medical|ҽ + N food|ʳƷ + N image|ͼ,surfacial| + N part|,%physical|,surfacial| +ĩ V cut|,#cook| +Ī AUX {modality|,neg|} +Ƭ V cut| +Ƭ N part|,%AnimalHuman| + AUX {modality|} + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,content|,accurate|׼,desired| + AUX {modality|,neg|} + N image|ͼ,linear| + V cut|,industrial| + V fit|ʺ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeShort| + COOR {and|} + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| +ӳ V fear|,entertainment| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| + V fear|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + V steal|͵,crime| +Թ V steal|͵,possession=country|,politics|,crime| +Թ V steal|͵,possession=country|,politics|,crime| +˽ V talk|̸,secret| +˽ V talk|̸,secret| +ȡ V steal|͵ +ȡ V steal|͵,crime| +ȡ V steal|͵,politics| + V listen|,manner=secret| +Ц V laugh|Ц,manner=hidden| + N human|,*steal|͵,crime|,undesired|ݬ + V respect| +ղ N human|,#occupation|ְλ,$dispatch|Dz,official|,#royal| + V respect| + V attack|,military| +ַ V damage| +ַ V damage|,crime| +ֺ V damage| +ֻ V attack|,patient=(China|й) + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + V attack|,military| +ս N fact|,*attack|,military| + N human|,*attack|,military| +Ȩ V fact|,disobey|Υ,#law|ɷ,crime| +ȨΪ N fact|,disobey|Υ,#law|ɷ,crime| + V MakeTrouble|,military| + V attack|,military| +ʴ V damage| + V cheat|ƭ + V occupy|ռ + V occupy|ռ,military| +Ϯ V attack| +Ϯ V attack|,military| +ռ V occupy|ռ,military| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,GetMarried| + N human|,family| + N human|,female|Ů +װ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ױ ADJ aValue|ֵ,trueness|α,true| +ױ N character|,true| +ױд ADJ aValue|ֵ,trueness|α,true| +ױ N letter|ż +׺ N attribute|,relatedness|,&chemical|ѧ +׻ʿ N human|,*FondOf|ϲ +׼ N human|,family| +׽ ADJ aValue|ֵ,relatedness|,intimate|,desired| +׾ N human|,family| +׿ ADV aValue|ֵ,behavior|ֹ,self| + V undergo| +侳 V undergo|,content=circumstances| + V arrive| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +޼ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + N human|,family| + N human|,family| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +и N emotion|,like|ϧ,kindhearted|,desired| + V ShowLove|ʾ,means=CausePartMove| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,clan| + N fact|,GetMarried| + ADV aValue|ֵ,behavior|ֹ,self| + N attribute|,relatedness|,&human| + N human|,family| + N human|,royal|,male| + V ShowLove|ʾ,means=CausePartMove| + N human|,friend| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,friend|,family| +Ե N attribute|,relatedness|,&animate| + V manage|,patient=country|,politics| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,family| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +س N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ش N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ػʵ N place|ط,city|,ProperName|ר,(China|й) +ǻ N shows| + N MusicTool| + N MusicTool|,generic|ͳ +ټ N part|,%MusicTool| +ʦ N human|,#occupation|ְλ,*perform|,#music|,entertainment| + N part|,%MusicTool| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| +ڷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڷܺѧ V FondOf|ϲ,target=study|ѧ +ڹѧ V study|ѧ +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڼּ V ProvideFor|,patient=family|,manner=thrifty| +ڼԼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿҿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| + N human|,*fight|,military| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +ѧ V study|ѧ,manner=diligent| +ӹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V engage|,content=politics|,manner=diligent| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +۲ N part|,%vegetable|߲,embryo|,$eat| +۲ N vegetable|߲ + V catch|׽ס + V catch|׽ס,military| +ܻ V catch|׽ס + V catch|׽ס + N bird|,generic|ͳ +ݵ N food|ʳƷ + N animal|,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N room|,@sleep|˯ + V sleep|˯ +޾ N tool|þ,generic|ͳ,*sleep|˯ +ʳ N fact|,alive| + N room|,@sleep|˯ + V soak| +Ƣ ADJ aValue|ֵ,impression|ӡ,good|,desired| + N FlowerGrass|,generic|ͳ + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,color|ɫ,BlueGreen| + ADJ aValue|ֵ,color|ɫ,black| + N crop|ׯ,generic|ͳ + N human|,young|,generic|ͳ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N vegetable|߲,generic|ͳ + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ظԭ N place|ط,ProperName|ר,(China|й) + N FlowerGrass|,green| + V surpass|ǿ +ഺ ADJ aValue|ֵ,age|,adult| +ഺ N time|ʱ,#young| +ഺ껪 N aValue|ֵ,age|,adult| +ഺ ADJ aValue|ֵ,time|ʱ,adult| +ഺ N time|ʱ,young| + N material|,?tool|þ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +ൺ N place|ط,city|,ProperName|ר,(China|й) +ඹ N part|,%vegetable|߲,embryo|,$eat| +ඹ N vegetable|߲ +๤ N human|,young|,industrial| + N disease| + N fruit|ˮ +ຣ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ཷ N part|,%vegetable|߲,embryo|,$eat| +ཷ N vegetable|߲ + N part|,%AnimalHuman|,nerve| + N community|,#young|,ProperName|ר,(China|й) +ɫ ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +÷ N fruit|ˮ +ù N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N crop|ׯ,generic|ͳ + N crop|ׯ,generic|ͳ,young| + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,age|,young| + N human|,young| +깬 N InstitutePlace|,#young|,@recreation| + N community|,religion|ڽ + N time|ʱ,#young| + N human|,young| + N community|,#young|,ProperName|ר,(China|й) +ɴ N crop|ׯ,generic|ͳ +ɽ N land|½,green| +ɽˮ N place|ط,beautiful| + N human|,young|,mass| +그 N fact|,crime|,#young| +˿ N part|,%human|,female|Ů,hair|ë + N tree| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̦ N AlgaeFungi|ֲ +̴ N tree| + N human|,official|,desired| + N sky| + N fact|,undesired|ݬ,queer|,sudden| +ͭ N metal| +ͭ N tool|þ,metal| + N beast| +Ϻ N fish| + N clothing|,black| + N human|,female|Ů,*perform|,entertainment| + N fish| +׳ N human|,young| + N emotion|,like|ϧ,kindhearted|,desired| + N crop|ׯ + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,behavior|ֹ,^stately|ׯ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + ADJ aValue|ֵ,size|ߴ,small|С + ADJ aValue|ֵ,weight|,NotHeavy| + V despise| +ᱡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ᱡ͸ ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| +ᳵ V tour|,manner=thrifty| + V despise|,target=enemy| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +׾ ADJ aValue|ֵ,easiness|,easy|,desired| + N affairs|,industrial| +ḡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ḡŮ N human|,flighty|,undesired|ݬ,female|Ů,young| + V recreation| +Ṥ N affairs|,industrial| +Ṥҵ N affairs|,industrial| +Ṥҵ N institution|,#industrial|,ProperName|ר,politics| +ṤҵƷ N artifact|˹,#industrial| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +赭д ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V despise| +ƮƮ ADJ aValue|ֵ,weight|,NotHeavy| + N LandVehicle| + N army| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ȡ V defeat|սʤ,manner=easy| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V wounded|,degree=insufficiently|Ƿ + ADJ aValue|ֵ,SoundVolume|,weak| + V suicide|ɱ + V despise| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ˮ N chemical|ѧ + ADJ aValue|ֵ,circumstances|,relax|,desired| +΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢ ADJ aValue|ֵ,content|,NotProfound|dz +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + V believe| + ADJ aValue|ֵ,weight|,NotHeavy| +Ӧ N army| +ս N weapon|,ship|,military| + ADJ aValue|ֵ,easiness|,easy|,desired| + N music| +ӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N material|,liquid|Һ,$burn| + N attribute|,behavior|ֹ,event|¼,&human| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,weight|,&physical| +ػ N attribute|,degree|̶,&aValue|ֵ,&event|¼ +װ ADJ aValue|ֵ,weight|,NotHeavy| +װ V tour|,manner=thrifty| +װ V fight| +٬ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +٬Ů N human|,flighty|,undesired|ݬ,female|Ů,adult| + N gas| +ⵯ N weapon| + N gas| + N chemical|ѧ + N chemical|ѧ + V CausePartMove| + V FallDown| + ADJ aValue|ֵ,form|״,slanted| + V dump| + V endeavour| + V end|ս +㵹 V dump| +㸲 V FallDown| +㸲 V reverse|ߵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҵ V lose|ʧȥ,possession=wealth|Ǯ + N image|ͼ,angular| + N RainSnow|ѩ,strong|ǿ + V tell|,manner=free| +̸ V communicate|,manner=ShowEmotion|ʾ + V listen|,manner=PayAttention|ע + V tell|,manner=free| + V FondOf|ϲ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,property|,FondOf|ϲ,&human|,&organization|֯,&event|¼ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,free| + V sell|,cost=cheap|,commercial| +б ADJ aValue|ֵ,form|״,slanted| +б V tilt|б +б N attribute|,slope|¶,&inanimate| +к V flow| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HaveContest| +ע V flow| +ע V put| + N human|,#occupation|ְλ,official|,royal|,past| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V count| + V fulfil|ʵ,commercial| + V remove| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + N account|,@record|¼ + N material|,?drinks|Ʒ + V check| + V reveal|¶ + V check| +峥 V return|,commercial| +峪 V sing|,entertainment| +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峺 ADJ aValue|ֵ,clearness|,clear| +峿 N time|ʱ,morning| + V remove| + N human|,*remove| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| +ǵ V remember|ǵ + ADJ aValue|ֵ,SoundQuality|,good|,desired| +嵥 N account|,@record|¼ +嵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +嵭 ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +嵭 ADJ aValue|ֵ,taste|ζ,desired| + N human|,#exercise| + N human|,#occupation|ְλ,*clean|ʹ,#route|·,employee|Ա + V check|,commercial| + N wind|,weak|,chilly| + ADJ aValue|ֵ,behavior|ֹ,arrogant| + N human|,official|,honest|,desired| + N regulation| +庮 ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +庮 ADJ aValue|ֵ,temperature|¶,cold| +廪 N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +廪ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + N {clearness|} + V destroy| +ͽ N human|,religion|ڽ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V clean|ʹ +๤ N human|,#occupation|ְλ,*clean|ʹ,employee|Ա + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +徲 ADJ aValue|ֵ,occasion|,quiet|,desired| +徻 ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V arrange| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,SocialMode|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƿ V request|Ҫ,ResultEvent=return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#fever| +ɨ V clean|ʹ + ADJ aValue|ֵ,fatness|,bony| +ˬ ADJ aValue|ֵ,circumstances|,relax|,desired| +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˬ V satisfied| +ˮ N water|ˮ,spotless| + V calculate|,commercial| + V reveal|¶,ExpressAgainst|Ǵ + N human|,*remove| +̸ V TalkNonsense|Ϲ˵ + N food|ʳƷ,liquid|Һ + V return| + ADJ aValue|ֵ,content|,pure|,desired| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&image|ͼ + ADJ aValue|ֵ,content|,concise|,desired| +ϴ V discharge| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + V restrain|ֹ,ResultEvent=expect| + V soothe|ο + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V awake| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +һɫ ADJ aValue|ֵ,content|,neat|,desired| + N sound|,#language| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,liquid|Һ,?food|ʳƷ + N time|ʱ,morning| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N knowledge|֪ʶ,religion|ڽ + N facilities|ʩ,religion|ڽ,space|ռ + V cook| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + V cook| + V PropUp|֧ + V lift| + V WeatherFine| + V WeatherFine| + V WeatherFine| + N sky| + V WeatherFine| + V WeatherFine| + N fact|,undesired|ݬ,queer|,sudden| + N tool|þ,*tell|,#WeatherChange| + N chemical|ѧ,poison| + N attribute|,circumstances|,&entity|ʵ + N emotion| + N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,love|,desired| +鰮 N emotion|,love|,desired| +鱨 N information|Ϣ +鱨 N information|Ϣ,military| +鱨Ա N human|,#occupation|ְλ,*analyze| +鱨Ա N human|,#occupation|ְλ,police|,military|,*scout| +鲻Խ V EndureNot| + N emotion| + N human|,enemy|,#love| + N emotion| + N emotion| + N human|,male|,*love|,*mating|,undesired|ݬ +鸾 N human|,female|Ů,*love|,*mating|,undesired|ݬ + N emotion| + N music|,$sing| +黳 N emotion| +鼱 N time|ʱ,urgent| + N part|,%fact|,bone| + N part|,%shows|,bone| +龰 N attribute|,occasion|,&event|¼ +龳 N attribute|,occasion|,&event|¼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ,military| + N reason| + N human|,friend|,*love|,desired| + N emotion| +Ȥ N emotion|,FondOf|ϲ + N human|,friend|,*love|,desired| + N attribute|,rank|ȼ,#emotion|,&human| + N attribute|,circumstances|,&entity|ʵ + N letter|ż,*express|ʾ,#love| +˼ N emotion| +˼ N emotion|,desired| + N emotion| +Ǩ V change| +ͬ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V fit|ʺ + N attribute|,circumstances|,&entity|ʵ + N emotion|,FeelingByBad| + N emotion|,generic|ͳ + N emotion|,desired| + N emotion|,friend| + N emotion|,friend| + N cause|ԭ + N aspiration|Ը,mating| +Ը V willing|Ը + N emotion|,FondOf|ϲ + N emotion| + ADV aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| +̼ ADV aValue|ֵ,duration|,TimeShort| +֮ ADV aValue|ֵ,duration|,TimeShort| + V employ| + V invite| + V request|Ҫ +밲 V SayHello|ʺ + V request|Ҫ,ResultEvent=benefit| + V request|Ҫ,ResultEvent=agree|ͬ + N letter|ż,*invite| +뽵 V surrender| + V request|Ҫ,ResultEvent=teach| + V entertain|д,target=human| + V beg| + V request|Ҫ + N human|,*request|Ҫ +͹ EXPR expression|,*welcome|ӭ + EXPR expression|,*welcome|ӭ +ʾ V ask| + N letter|ż,*invite| + V request|Ҫ,ResultEvent=benefit| + AUX {neg|} +ӧ V request|Ҫ,ResultEvent=do| +Ը V protest| +ս V request|Ҫ,ResultEvent=do| + V apologize|Ǹ + V congratulate|ף + N fact|,congratulate|ף +칦 V congratulate|ף,cause=win|ʤ + V congratulate|ף + V joyful|ϲ +ף V congratulate|ף + N material|,?tool|þ,#decorate|װ,precious| +֬ N material|,?food|ʳƷ,?medicine|ҩ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N human|,poor|,undesired|ݬ + V fight|,military| +⵰ N human|,poor|,undesired|ݬ +ʵ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V melancholy| + N human|,enemy|,*fail|ʧ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N human|,poor|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,ugly|,undesired|ݬ +Ƨ N place|ط,poor| +׼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +׷ V chase|׷ + N character|,surname|,human|,ProperName|ר + N time|ʱ + N time|ʱ,autumn| + N time|ʱ,year| +ﲥ V planting|ֲ,autumn|,agricultural|ũ +ﲨ N part|,%human|,female|Ů,#eye| + N time|ʱ,day|,autumn| + N wind|,#autumn| +ˬ N phenomena|,#WeatherFine|,autumn|,desired| +ﺣ N FlowerGrass| +޷ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N part|,%time|ʱ,autumn|,ending|ĩ +^ N time|ʱ,autumn| + N time|ʱ,autumn| +ǧ N tool|þ,*recreation| + V gather|ɼ,#crop|ׯ,autumn|,agricultural|ũ +ˮ N part|,%human|,female|Ů,#eye| + N time|ʱ,autumn| +ׯ N crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N land|½ + N part|,%AnimalHuman|,head|ͷ + N disease| + N character|,surname|,human|,ProperName|ר + N SportTool|˶,generic|ͳ + N earth| + N earth|,space|ռ + N fact|,exercise| + N shape|,round|Բ + N facilities|ʩ,space|ռ,@compete|,sport| + N community|,compete|,sport| + N part|,%plant|ֲ,embryo| + N knowledge|֪ʶ,#sport| + N part|,%plant|ֲ,body| +򾥸 N part|,%vegetable|߲,embryo|,$eat| +򾥸 N vegetable|߲ + N bacteria|΢ + N fact|,exercise| +˶ N fact|,exercise| + N facilities|ʩ,#compete|,sport| + N facilities|ʩ,#compete|,sport| + N human|,*FondOf|ϲ,#look|,#sport| + N shape| + N SportTool|˶ + N fact|,compete|,sport| + N human|,sport| +̳ N community|,#exercise| + N image|ͼ,cubic|,round|Բ +Ь N SportTool|˶,#clothing|,#foot| + N human|,*compete|,glorious|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N knowledge|֪ʶ,#sport| +Ա N human|,#occupation|ְλ,sport| +״ ADJ aValue|ֵ,form|״,round|Բ + V request|Ҫ + V seek|ıȡ + V ShowLove|ʾ + V request|Ҫ,ResultEvent=succeed|ɹ + V request|Ҫ + V request|Ҫ + V calculate| + V buy|,commercial| + V request|Ҫ,ResultEvent=reconcile|,military| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=meet| + V request|Ҫ,ResultEvent=teach| + V handle| + V request|Ҫ,ResultEvent=help| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=satisfied| +ȫ V request|Ҫ,degree=over| + V surrender| + V request|Ҫ,ResultEvent=help| + N MakeLiving|ı +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ͬ V request|Ҫ,ResultEvent=BeSame|ͬ +ѧ V request|Ҫ,ResultEvent=study|ѧ +ѧ V study|ѧ,education| +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ +Ԯ V request|Ҫ,ResultEvent=help| +ս V request|Ҫ,ResultEvent=fight|,military| +֪ V request|Ҫ,ResultEvent=study|ѧ +֪ N aspiration|Ը,request|Ҫ,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,property|,$request|Ҫ +ְ V seek|ıȡ,possession=occupation|ְλ +ְ N human|,*seek|ıȡ,#occupation|ְλ + V request|Ҫ,ResultEvent=help| + V detain|ס,police| + N human|,crime|,undesired|ݬ,$detain|ס + N LandVehicle|,*transport|,#crime|,police| + N human|,crime|,undesired|ݬ,$detain|ס + V detain|ס,police| +׹ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ͽ N human|,crime|,undesired|ݬ,$detain|ס + N human|,official|,#community| + N human|,official|,#community| + N human|,royal| + V swim| + V cross|Խ,means=swim| + V SelfMove| + V become|Ϊ + V please|ȡ + V please|ȡ + V become|Ϊ,descriptive=safe| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V facing| +׸ V please|ȡ + V become|Ϊ +֮ V seek|ıȡ + N place|ط,#human| + V distinguish|ֱ + N human|,#occupation|ְλ,official| + V distinguish|ֱ + V separate| + ADJ aValue|ֵ,importance|,secondary| +ί N institution|,politics|,(China|й) + N place|ط + ADJ aValue|ֵ,attachment|,place|ط + N place|ط + V ize|̬ + ADJ aValue|ֵ,attachment|,place|ط + N InsectWorm| + ADJ aValue|ֵ,form|״,curved| + N music|,$sing| + N part|,%earth|,angular| + N text|,$sing| + V deceive|ƭ + N fittings| + N tool|þ,*measure| + N attribute|,SoundQuality|,&music| +ߺ͹ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N SportTool|˶ + N fact|,exercise| + V alter|ı,StateIni=true|,StateFin=fake|α + V explain|˵,manner=wrong| + ADJ aValue|ֵ,form|״,curved| + N quantity|,rate|,&distance| + N image|ͼ,curved| +ͻн V escape|,ResultEvent=dangerous|Σ + ADJ aValue|ֵ,form|״,round|Բ + N image|ͼ,linear|,curved| + N shows| +ӭ V please|ȡ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| + N fact|,hardship| + N part|,%implement| + N music|,$sing| + N InsectWorm| + N part|,%human|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + V CausePartMove| + N character|,surname|,human|,ProperName|ר + V defeat|սʤ + N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V surrender| + V surrender| + V surrender| + N attribute|,property|,&part|,eye| + V SelfMove| + V situated| + N phenomena|,disgraced|,#shy|,undesired|ݬ +ϥ V CausePartMove|,PatientPartof=leg| +ָ ADJ qValue|ֵ,amount|,few| + V drive|Ԧ + V expel| + V run| + V dispatch|Dz + V drive|Ԧ + V urge|ʹ + V drive|Ԧ,patient=LandVehicle| + V expel| + V remove| + V CauseToDo|ʹ + V expel| +Dz V dispatch|Dz +Dz V exile| +Dz V expel| +Dz V urge|ʹ +ɢ V expel| +ʹ V dispatch|Dz +ʹ V urge|ʹ + V exile| + V expel| + V expel|,LocationIni=country| + N weapon|,ship|,military| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,#liquid|Һ,linear| + N method|,*communicate| +ȡ V choose|ѡ +ȡ V seek|ıȡ +ȡ V take|ȡ +ȡ V take|ȡ,commercial| +ȡ V use| +ȡ V study|ѧ,content=pros| +ȡ V take|ȡ,commercial| +ȡ V replace| +ȡ PREP {LocationThru} +ȡ V obtain|õ +ȡ V prohibit|ֹ +ȡ֮ V replace| +ȡ V imitate|ģ +ȡ V TakeBack|ȡ +ȡ V choose|ѡ,content=image|ͼ +ȡ V ResultFrom|Ե +ȡ V ResultFrom|Ե +ȡ V WhileAway| +ȡ V tease|ȡ +ȡ V naming| +ȡΪ V naming| +ȡů V WarmUp|,patient=self| +ȡ ADJ aValue|ֵ,content|,neat|,desired| +ȡ V equal| +ȡ V do|,manner=sly| +ȡ V choose|ѡ +ȡʤ V win|ʤ +ȡ V remove| +ȡ N human|,*remove| +ȡЦ V LaughAt|Ц +ȡ V take|ȡ,possession=letter|ż +ȡ V undergo|,content=believe| +ȡ V undergo|,content=believe| +ȡ V check| +ȡ V choose|ѡ,content=example|ʵ +ȡ V please|ȡ +ȡ֤ V gather|ɼ,possession=information|Ϣ +ȡ֮ ADJ qValue|ֵ,amount|,many| +ȡ V obtain|õ +ȡ V TakeAway|ᶯ +Ȣ V MarryFrom|Ȣ +Ȣ V MarryFrom|Ȣ +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȥ N emotion|,FondOf|ϲ +Ȥ N purpose|Ŀ +Ȥ N fact|,interesting|Ȥ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥζ N emotion|,FondOf|ϲ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N text|,interesting|Ȥ +ȥ V RegardAs|,entertainment| +ȥ V from| +ȥ V go|ȥ +ȥ V leave|뿪 +ȥ V remove| +ȥ V send| +ȥ STRU {Vdirection|} +ȥ V remove| +ȥ N location|λ +ȥ N place|ط +ȥ V AlterProperty|,PatientAttribute=property| +ȥȡ V choose|ѡ,content=refined| +ȥ V remove| +ȥ N time|ʱ,spring|,winter| +ȥ ADJ aValue|ֵ,performance|,clean|ʹ +ȥ V SelfMove| +ȥ· N facilities|ʩ,route|·,@GoOut|ȥ +ȥ N time|ʱ,year|,past| +ȥ N sound|,#language| +ȥ V die| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥ V LeaveFor|ǰ,manner=fast| +ȥα V remove|,patient=fake|α +ȥۼ N tool|þ,*remove|,#dirty| +ȥ N direction| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥְ V dismiss|,ResultIsa=occupation|ְλ +Ȧ N community| +Ȧ V detain|ס +Ȧ V detain|ס,agricultural|ũ +Ȧ V detain|ס,police| +Ȧ V draw| +Ȧ N facilities|ʩ,space|ռ,@foster|,#livestock| +Ȧ N image|ͼ,cubic|,round|Բ +Ȧ N shape|,round|Բ +Ȧ V surround|Χ +Ȧ V draw| +Ȧ V ExpressAgreement|ʾͬ +Ȧ N material|,*feed|ι,#crop|ׯ +Ȧ ADJ aValue|ֵ,relatedness|,intimate| +Ȧ N plans|滮,*deceive|ƭ,undesired|ݬ +Ȧ N furniture|Ҿ,space|ռ,@sit| +Ȧ V read| +Ȧ V sign|д,#read| +Ȧ N shape|,round|Բ +ȧ N part|,%AnimalHuman|,bone| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N character|,surname|,human|,ProperName|ר +Ȩ N rights|Ȩ +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ N human|,official|,past| +Ȩ V estimate| +Ȩ V estimate|,content=ProsCons| +Ȩ N human|,*estimate| +Ȩ N rights|Ȩ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ ADJ aValue|ֵ,duration|,TimeShort| +Ȩʱ ADV aValue|ֵ,time|ʱ,TimeShort| +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N human|,#power|,able|,desired| +Ȩʿ N human|,#power| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,range|,&power| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ֮ N method| +Ȩ N rights|Ȩ +Ȩ N rights|Ȩ,duty| +ȩ N chemical|ѧ +Ȫ N waters|ˮ,surfacial| +Ȫˮ N waters|ˮ,surfacial| +Ȫˮ N water|ˮ +Ȫ N part|,%waters|ˮ,mouth| +Ȫ N waters|ˮ,surfacial| +ȪԴ N location|λ,@ExistAppear| +ȪԴ N part|,%waters|ˮ,head|ͷ +ȪԴ N waters|ˮ,surfacial| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +ȫ N character|,surname|,human|,ProperName|ר +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N human|,able|,desired| +ȫ ADJ aValue|ֵ,length|,all|ȫ +ȫ N attribute|,name|,&entity|ʵ +ȫ N process| +ȫ N community|,ProperName|ר,(China|й) +ȫ V equal| +ȫ ADV aValue|ֵ,range|,all|ȫ +ȫλ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N place|ط,country|,complete| +ȫΧ ADJ aValue|ֵ,range|,country| +ȫ˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,attachment|,country| +ȫ N fact|,discuss| +ȫ N publications|鿯 +ȫ N community|,family|,complete| +ȫҸ N food|ʳƷ +ȫҸ N image|ͼ,$TakePicture|,#human|,#family| +ȫ V destroy| +ȫ N attribute|,scene|,complete|,&inanimate| +ȫ N attribute|,circumstances|,&entity|ʵ +ȫ N army| +ȫû V defeated| +ȫ N paper|ֽ,#print|ӡˢ +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫԸ V endeavour| +ȫò N attribute|,appearance|,&entity|ʵ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ N system|ƶ,#rights|Ȩ,#own|,public| +ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫ ADV aValue|ֵ,time|ʱ,year|,complete| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,attachment| +ȫ V ize|̬ +ȫս N plans|滮 +ȫ N place|ط +ȫȨ N attribute|,power|,&human|,&organization|֯ +ȫȨ N duty| +ȫȨ N human|,#duty| +ȫȨ N human|,official| +ȫȻ ADV aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ ADJ aValue|ֵ,duration|,#day| +ȫѧ N human|,*study|ѧ,education| +ȫɫ ADJ aValue|ֵ,color|ɫ +ȫɫä N human|,*disable|м +ȫ N part|,%AnimalHuman|,body| +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫע ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ȫʡ N place|ط,all|ȫ +ȫʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ȫʢ V prosper| +ȫʤ V win|ʤ +ȫʼȫ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ȫ N publications|鿯 +ȫ N quantity|,amount|,&entity|ʵ +ȫ ADJ aValue|ֵ,speed|ٶ,fast| +ȫ N attribute|,speed|ٶ,fast| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N part|,%entity|ʵ,complete| +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N fact|,discuss| +ȫѡ N human|,*select|ѡ,mass| +ȫ N time|ʱ,day| +ȫ ADJ aValue|ֵ,ability|,able|,withstand|ס,#WeatherBad| +ȫ N InstitutePlace|,*TakeCare|,#young|,#human| +ȫ N text| +ȫϢ ADJ aValue|ֵ,ability| +ȫ N facilities|ʩ,route|· +ȫ N place|ط,@fight|,military| +ȫ ADJ aValue|ֵ,newness|¾,new| +ȫȫ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȫ N sound|,#music| +ȫԱ N human|,employee|Ա +ȫ˻ N fact|,sport| +ȫ֪ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫԶ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ȭ V BeRecovered|ԭ,medical|ҽ +Ȭ V BeRecovered|ԭ,medical|ҽ +ȭ N fact|,beat| +ȭ N fact|,exercise| +ȭ N part|,%AnimalHuman|,hand| +ȭ V beat| +ȭ N fact|,sport| +ȭ N fact|,exercise| +ȭ V bend| +ȭȭ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȭ N human|,$choose|ѡ,*compete|,sport| +ȭͷ N part|,%AnimalHuman|,hand| +ȭ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ȯ N livestock| +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%livestock|,*bite|ҧ +Ȯ V BeAcross|ཻ +Ȯ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ȯ ADJ aValue|ֵ,form|״,dissimilar| +ȯ N coupon|Ʊ֤ +Ȱ V mobilize| +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V mediate|,ResultEvent=fight| +Ȱ V persuade|Ȱ˵,ResultEvent=surrender| +Ȱ V mediate| +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵,ResultEvent=drink| +Ȱ V persuade|Ȱ˵ +Ȱ˵ V persuade|Ȱ˵ +Ȱ˵ N human|,*persuade|Ȱ˵ +Ȱο V soothe|ο,means=persuade|Ȱ˵ +Ȱҵ N InstitutePlace|,*sell|,@buy|,commercial| +Ȱ V obstruct|ֹ,means=persuade|Ȱ˵ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V disappear|ʧ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N quantity|,amount|,&lack|ȱ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ȱĬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ȱ N emotion|,regret|Ǹ +ȱ V lack|ȱ,commercial| +ȱ V pay|,quantity=lack|ȱ +ȱ N part|,%place|ط,mouth| +ȱ V cease|ͣ +ȱ V lack|ȱ +ȱʧ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱˮ ADJ aValue|ֵ,dampness|ʪ,dried| +ȱϯ V disappear|ʧ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N disease|,#mouth| +Ȳ N chemical|ѧ +ȳ V disable|м,scope=walk| +ȳ N human|,undesired|ݬ,*disable|м,#walk| +ȴ V GoBackward| +ȴ V reject|ؾ +ȴ V cure|ҽ,content=disease| +ȴ V GoBackward| +ȴ V reject|ؾ +ȵ N bird| +ȵռ V occupy|ռ +ȵ V appear| +ȵ N place|ط,@meet|,#male|,#female|Ů +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V guarantee|֤ +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V decide| +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V establish| +ȷ ADJ aValue|ֵ,content|,substantial|ʵ +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ ADJ aValue|ֵ,content|,accurate|׼,desired| +ȷ V decide| +ȷʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷʵɿ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ȷ V believe| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V diagnose|,medical|ҽ +ȷ֤ N information|Ϣ,*prove|֤ +ȷ֤ V prove|֤ +ȸ N bird| +ȸ N disease| +ȸӥ N bird| +ȸԾ V WhileAway|,means=jump| +ȸԾ V joyful|ϲ +ȹ N clothing|,#leg|,#female|Ů +ȹϵ N attribute|,relatedness|,&human|,undesired|ݬ +ȹ N clothing|,#leg|,#female|Ů +ȹװ N clothing|,#female|Ů +ȹ N clothing|,#leg|,#female|Ů +Ⱥ CLAS NounUnit|,&AnimalHuman| +Ⱥ N entity|ʵ,mass| +ȺȺ V cooperate| +Ⱥ N land|½,mass| +Ⱥ N human|,desired|,beautiful|,female|Ů,mass| +Ⱥ V reside|ס +Ⱥå N human|,mass| +Ⱥ V appear| +Ⱥ N material|,*apply|ͿĨ,*decorate|װ +Ⱥ N emotion| +Ⱥɽ N land|½ +Ⱥ N entity|ʵ,mass| +ȺȺ ADJ aValue|ֵ,courage|,brave|,desired| +Ⱥ N human|,able|,desired|,mass| +Ⱥ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ȺӢ N human|,able|,desired|,mass| +Ⱥ N human|,mass| +Ⱥ˶ N fact| +Ⱥӵ N weapon|,$firing| +Ȼ ADV aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ CONJ {but|} +Ȼ CONJ {but|} +Ȼ CONJ {time|ʱ} +Ȼŵ V agree|ͬ +ȼ V burn| +ȼ V lighting|ȼ +ȼ V shoot| +ȼ N material|,$burn|,*lighting|ȼ +ȼü֮ N affairs|,urgent| +ȼ N material|,gas|,$burn| +ȼֻ N machine| +ȼ V burn| +ȼյ N weapon|,$firing| +ȼ N part|,%implement| +ȼ N material|,liquid|Һ,*burn| +Ƚ ADJ aValue|ֵ,speed|ٶ,slow| +Ƚ N character|,surname|,human|,ProperName|ר +ȽȽ ADJ aValue|ֵ,speed|ٶ,slow| +Ⱦ V AlterColor|ɫ +Ⱦ V SufferFrom| +Ⱦ V influence|Ӱ +Ⱦ V undergo| +Ⱦ V ill|̬ +Ⱦ N material|,*AlterColor|ɫ +Ⱦɫ V AlterColor|ɫ +Ⱦɫ N part|,%animate| +Ⱦ V suffer|,content=CauseAffect|Ⱦ +Ⱦָ V damage| +Ⱦָ V engage| +ȿ N part|,%fruit|ˮ,flesh|,$eat| +ȿ N part|,%physical|,flesh| +ȿ N part|,%fruit|ˮ,flesh| + N place|ط + N stone|ʯ + N stone|ʯ + N character|,surname|,human|,ProperName|ר + V bend| + V reject|ؾ + V resist| + V rob| + V CausePartMove|,PatientPartof=arm| + V remove| + V rob| + V cry| + V cry| + V CauseToDo|ʹ + V invite| + V sell| + V surrender| + PREP {agent} +...ԱŸ V obstruct|ֹ,ResultEvent=GoInto| +ò V surrender| +ö V give| +ø V sell| + V ExpressAgreement|ʾͬ,content=subtract|,#payment| +· V benefit| +λ V cease|ͣ,content=undertake|,politics| +λ V provide|,possession=space|ռ + V sell| + V provide|,possession=space|ռ + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + V give| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,undesired|ݬ + V speak|˵ +ˡ V forgive|ԭ + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ qValue|ֵ,amount|,many| + V MakeTrouble| +Ŷ V uprise| + V MakeTrouble| + ADJ aValue|ֵ,property|,MakeTrouble| + V MakeTrouble| + V GoRound|Χ + V MakeTrouble| + V coil| + V confuse| +Ʋ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ʋ V speak|˵,manner=hidden| +Ƶ V GoRound|Χ +Ȧ V GoRound|Χ +Ȧ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ȧ V circle| + V walk| + ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ + V speak|˵,manner=hidden| + V cross|Խ +Զ V GoRound|Χ + N part|,implement|,#electricity| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V ResultIn| + V attract| + V incur| + V irritate|ŭ + V offend| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +ǻ V ResultIn|,result=damage| +ǻ V MakeTrouble| +ǻ V ResultIn|,result=damage| + V incur| +鷳 V MakeTrouble| + V angry| + V MakeTrouble| + V MakeTrouble| + V WarmUp| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V perception|֪,content=cold| +Ȱ V like|ϧ +ȳ N fact| +ȳ N emotion|,endeavour| +ȳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȴ N component|,space|ռ,%earth| +ȴ N disease| +ȵ ADJ aValue|ֵ,content|,interesting|Ȥ +ȵ N place|ط,$welcome|ӭ +ȵ N problem|,important| +ȵ N electricity| +ȵ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ȵż N fittings|,%tool|þ +ȶ N attribute|,temperature|¶,&physical| +ȶ N attribute|,temperature|¶,fever|,&human| +ȷ V WarmUp|,medical|ҽ +Ⱥ V part|,%physical| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ȼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȼ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + N gas|,hot| + N part|,%AnimalHuman|,liquid|Һ +ӯ V weep| + N attribute|,strength|,hot|,&physical| +ѧ N knowledge|֪ʶ + V love| + N attribute|,heat|,&physical| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N experience|,excited| + N wind|,hot| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +Ż N inanimate|,commercial|,generic|ͳ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,strength|,&heat| + N gas| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,excited| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V exercise| +ˮ N water|ˮ,hot| +ˮ N tool|þ,*WarmUp| +ˮƿ N tool|þ,cubic|,@store|,#liquid|Һ +ˮ N tool|þ,*WarmUp|,#water|ˮ + ADJ aValue|ֵ,temperature|¶,hot| + V expect| + N facilities|ʩ,linear|,@transmit|,#information|Ϣ + N lights| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ѫ N emotion|,faithful|,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N drinks|Ʒ,hot|,generic|ͳ +Դ N location|λ,@ExistAppear|,#hot| +Ƶ ADJ aValue|ֵ,performance|,#hot|,$guide| + V FondOf|ϲ + V expect|,undesired|ݬ + V FondOf|ϲ + V expect|,undesired|ݬ + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N part|,%plant|ֲ,embryo| +ʰ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +־ʿ N human|,desired|,faithful| +御 ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,behavior|ֹ,&human| + N attribute|,physique|,&AnimalHuman| + N attribute|,strength|,&community| + N human| + N human|,ThirdPerson| + N human|,adult| + N human|,all|ȫ + N human|,mass| + ADJ qValue|ֵ,amount|,all|ȫ +˲ N human|,able|,desired| +˲ N human|,able|,desired| +˲ű V appear|,#human|,#able| +˲żü EXPR appear|,#human|,#able| +˲н N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| +˲ EXPR appear|,#human|,#able| +˲ N FlowerGrass|,?medicine|ҩ +˳ N human|,mass| +˳ N attribute|,name|,&thing| +˳ N attribute|,property|,&language| +˴ CLAS unit|λ,&human| +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ί N institution|,politics|,(China|й) +˴ N human|,#institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +˵ N emotion|,kindhearted|,desired| +˵ N knowledge|֪ʶ +˵ N human| +˶ N human|,mass| +˶ N quantity|,amount|,&human|,family| +˷ N human|,crime|,undesired|ݬ +˷ N human|,crime|,undesired|ݬ +˷ V defend|,patient=sky| +˸ V surpass|ǿ,scope=human| +˸ N attribute|,behavior|ֹ,&human| +˹ ADJ aValue|ֵ,source|Դ,artificial| +˹ N fact|,translate|,literature| +˹ V respire|,#rescue|,medical|ҽ +˹ N artifact|˹ +˹ N knowledge|֪ʶ +˺ N human|,mass| +˻ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +˻ ADJ aValue|ֵ,attachment| +˼ N trace|,#human| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʹϵ N attribute|,relatedness|,&human| +˼ N community|,family| +˼ PRON {ThirdPerson|} +˼ N earth| +˽ N human|,able|,desired| +˾ V use|,patient=human| +˾ ADJ qValue|ֵ,rate| +˿ N quantity|,amount|,&human| +˿ N quantity|,amount|,&human|,family| +˿ڳ ADJ aValue|ֵ,density|ܶ,dense|,#human| +˿ڹ N quantity|,amount|,over|,&human| +˿ڹʣ N quantity|,amount|,over|,&human| +˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +˿ղ N fact|,investigate|,#quantity|,#human| +˿ͳ V calculate|,content=human| +˿ͳ N quantity|,amount|,&calculate| +˿ͳѧ N knowledge|֪ʶ +˿ϡ ADJ quantity|,amount|,few|,&human| + V tired|ƣ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N human|,generic|ͳ + N part|,%animate|,#PassOn| +ѧ N knowledge|֪ʶ,#human| + N attribute|,strength|,&human| + N quantity|,amount|,#employee|Ա,&organization|֯ + N LandVehicle| + N human|,mass| + N attribute|,relatedness|,&human| + N army|,generic|ͳ + N human|,mass| +Ϊ ADJ qValue|ֵ,amount|,over|,#employee|Ա + N human|,mass| + N human|,mass| + N money|,(China|й) + N house|,ProperName|ר,(China|й) +ž N army|,ProperName|ר,(China|й) +ձ N publications|鿯,news|,(China|й) + N institution|,politics|,(China|й) + N attribute|,strength|,&human| + CLAS ActUnit|,&act|ж +Ʒ N attribute|,behavior|ֹ,&human| + N attribute|,relatedness|,&human| + N emotion| + N fact|,help| + N attribute|,wisdom|ǻ,&human| +ζ N emotion|,kindhearted|,desired| +ծ N emotion|,grateful|м,desired| +Ȩ N attribute|,rights|Ȩ,&human| +Ⱥ N human|,mass| + PRON {ThirdPerson|,mass|} +ɽ˺ ADJ aValue|ֵ,occasion|,bustling|,desired| + N part|,%human| + N time|ʱ,TimeLong|,#alive| + N standpoint| +ʿ N human| +ʿ N human|,glorious| + N earth| + N earth| + N affairs|,#human| + N affairs|,#human|,#employee|Ա + N fact| + N fact|,#human| +² N institution|,#employee|Ա,ProperName|ר,politics| +´ N part|,%institution|,*manage|,#employee|Ա +¾ N part|,%institution|,*manage|,#employee|Ա + N attribute|,strength|,&community| +ֲ ADJ aValue|ֵ,strength|,weak| +ٱ V guarantee|֤,scope=die|,commercial| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N quantity|,amount|,&human| + N part|,%human|,body| +ͷ N attribute|,relatedness|,&human| +ͷ N quantity|,amount|,&human| +ͷܶ ADJ aValue|ֵ,occasion|,crowded| +Ϊ ADJ aValue|ֵ,source|Դ,artificial| + N knowledge|֪ʶ + N knowledge|֪ʶ + N human| +ﻭ N image|ͼ,$draw| + N image|ͼ,$draw| + N aspiration|Ը,expect| + N emotion| +ĸ V uneasy| +Ļ̻ V uneasy| + N emotion| +е N facilities|ʩ,route|·,@walk| + N attribute|,behavior|ֹ,&human| + N AnimalHuman| +ѡ N human|,$choose|ѡ + N attribute|,occasion|,#human|,&place|ط +Կη ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V defeated|,military| +Ӱ N trace|,#lights|,#human| +Ա N human|,employee|Ա,mass| +Ա ADJ aValue|ֵ,strength|,weak| +Ա ADJ qValue|ֵ,amount|,few| +Ե N attribute|,relatedness|,&human| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V obey|ѭ,content=thinking|˼ +߾ V catch|׽ס,patient=human|,patient=artifact|˹,crime|,#police| + ADJ aValue|ֵ,source|Դ,artificial| + N material|,?clothing|,?furniture|Ҿ,artificial| + N food|ʳƷ,artificial| + N aircraft| +ά N material| +֤ N information|Ϣ,*prove|֤ + N human|,undesired|ݬ,$detain|ס + N attribute|,kind|,&human| + V endure| +̲ס V EndureNot| +̶ N FlowerGrass|,?medicine|ҩ +̿ V laugh|Ц,manner=WithstandNot|ס + N endure| + V endure| + V endure|,content=MakeBad|Ӻ + V forgive|ԭ +踺 V bear|е + V endure| +ʹ V endure|,content=painful|ʹ +޿ V EndureNot| + V endure| + ADJ aValue|ֵ,quality|,durable|,desired| +ʹ N part|,%AnimalHuman| +; N attribute|,will|־,strong|ǿ,&human| + N attribute|,will|־,strong|ǿ,&human| + V CauseToBe|ʹ֮ + N character|,surname|,human|,ProperName|ר + V indulge| + V undertake| +κ ADJ qValue|ֵ,amount|,all|ȫ +ν V engage|,content=teach|,education| +ο V engage|,content=teach|,education| +Թ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V AlterIsa|Ƿ + V CauseToBe|ʹ֮ + N human|,*CauseToBe|ʹ֮ +ƾ V indulge| + N attribute|,duration|,#engage|,&human| + V satisfied| +Ψ V CauseToBe|ʹ֮,AccordingTo=intimate| +Ψ V CauseToBe|ʹ֮,AccordingTo=ability| + N affairs| +۵ N attribute|,behavior|ֹ,flighty|,&human| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N phenomena|,sport| + V CauseToBe|ʹ֮ + V employ| +ְ V undertake|,content=occupation|ְλ +صԶ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V RegardAs| + V admit| + V agree|ͬ + V bear|е + V distinguish|ֱ + V know|֪ +ϴ V admit|,content=wrong| +ϵ V know|֪ +϶ V regard|Ϊ +Ϲ V buy|,commercial| +Ϲ V bear|е,content=buy| +Ϲ N human|,*bear|е,#buy| +Ͻ V pay| +Ͼ V donate| +Ͽ V agree|ͬ + V collect| + V know|֪ +ʶ V know|֪ +ʶ N knowledge|֪ʶ + V surrender| +ͬ V admit| +ͬ N emotion|,admit| +Ϊ V regard|Ϊ + V betray| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +֤ V prove|֤ +֪ ADJ know|֪ +֪ V know|֪ +׼ V regard|Ϊ + V admit|,content=crime| + N part|,%tool|þ,*cut|,heart| + N weapon|,*stab| +о N part|,%machine|,*cut|,heart| +Ѹ N human|,female|Ů,*GiveBirth| + V pregnant|,#medical|ҽ + N time|ʱ,@pregnant| + V fasten|˩ + V fasten|˩ + V abandon| + V throw| + V abandon| + ADV {Vcontinue|} +Ծ ADV {Vcontinue|} +Ȼ ADV {Vcontinue|} + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,time|ʱ,day| + N celestial| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N time|ʱ + N time|ʱ,day|,special| + N time|ʱ,morning| + N unit|λ,&time|ʱ +ձɽ V decline|˥ +ձ N publications|鿯 +ձ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N waters|ˮ,ProperName|ר +ձ N human|,(Japan|ձ) +ղ N quantity|,amount|,&crop|ׯ,&artifact|˹,#day| +ճ ADJ aValue|ֵ,kind|,ordinary| +ճ N affairs|,ordinary| +ճ N plans|滮 +ճ̱ N readings|,#plans|滮 +ճ N time|ʱ,day|,morning| +մ N stationery|ľ,*print|ӡˢ +ոһ ADV aValue|ֵ,duration|,TimeLong| +չ N affairs|,industrial|,#day| +չ N human|,#occupation|ְλ,industrial|,#day| +չ N payment| +չ N lights|,#celestial| +չ N tool|þ,*illuminate| +պ N time|ʱ,future| +ջ V gather|ɼ,manner=TimeLong| +ռ N readings| +ռ N readings| +ռ N time|ʱ,day|,morning| +ռ ADV aValue|ֵ,degree|̶,very| +ս ADV aValue|ֵ,degree|̶,very| +ս˥ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +վ N army|,ProperName|ר,(Japan|ձ) +տ N place|ط,city|,ProperName|ר,(China|й) +տ N army|,ProperName|ר,(Japan|ձ) + V endeavour| + N tool|þ,*show|,#time|ʱ + N time|ʱ,day|,night| + N place|ط,city|,ProperName|ר,(Swiss|ʿ) + N time|ʱ,day| +ǰ N time|ʱ,past| + ADJ aValue|ֵ,speed|ٶ,slow| +ҹҹ ADJ aValue|ֵ,duration|,TimeLong| + N human|,commercial|,(Japan|ձ) +䲡 N disease| +ͷ N celestial| + N InstitutePlace|,*TakeCare|,#young|,#human| + N language|,(Japan|ձ) + V change| +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,night| +Լҹ ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,degree|̶,very| + V BecomeMore| + ADJ aValue|ֵ,property|,$use| +ðٻ N artifact|˹,generic|ͳ,commercial| +Ʒ N artifact|˹ + N language|,#country|,ProperName|ר +Ԫ N money|,(Japan|ձ) +Բ N money|,(Japan|ձ) + N attribute|,circumstances|,&human| + ADJ aValue|ֵ,speed|ٶ,fast| + N lights| + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,#illuminate|,#celestial| + ADV aValue|ֵ,degree|̶,very| +־ N document| + N time|ʱ,afternoon| + N attribute|,circumstances|,&human| + N time|ʱ + N time|ʱ,day| + N lights| + N affairs|,military| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + N human|,past| + N affairs|,military| +װ N clothing|,military| + N part|,%beast|,*feel| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N place|ط,city|,ProperName|ר,(China|й) +س N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V prosper| +ٹ V GoBack| +ٻ N attribute|,reputation|,glorious|,desired|,&human| +ٻ N attribute|,situation|״,rich|,glorious|,desired|,&human| +ٻ V obtain|õ + N attribute|,reputation|,&human|,&organization|֯ +빲 V bear|е,means=together|ͬ + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + N experience|,#reputation| + N human|,military|,*disable|м + V obtain|õ + V StateChange|̬,StateFin=liquid|Һ + V StateChange|̬,StateFin=liquid|Һ,industrial| + N character|,surname|,human|,ProperName|ר + V fit|ʺ +ں V merge|ϲ +ں V merge|ϲ,industrial| +ڻ V StateChange|̬,StateFin=liquid|Һ +ڻ V merge|ϲ +ڻͨ V understand| +ڽ V StateChange|̬,StateFin=liquid|Һ +Ǣ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + V joyful|ϲ +ͨ V circulate|ѭ,commercial| + V provide|,possession=fund|ʽ + V burn|,industrial| +۵ N attribute|,boundary|,&burn| +۶ V break|۶,#electricity| +ۻ V StateChange|̬,StateFin=liquid|Һ +۽ V StateChange|̬,StateFin=liquid|Һ,industrial| + V burn|,industrial| +¯ N facilities|ʩ,space|ռ,@burn|,#metal|,@produce|,#material| + V StateChange|̬,StateFin=liquid|Һ,industrial| + N stone|ʯ + V produce|,means=burn|,industrial| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ܶ N part|,%inanimate|,mouth| +ܻ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܼ N chemical|ѧ +ܽ N inanimate| +ܽ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܽ N quantity|,rate|,StateChange|̬,&inanimate| +ܽ N attribute|,ability|,#liquid|Һ +ʴ V StateChange|̬,StateFin=liquid|Һ,industrial| +Һ N water|ˮ,*contain|,#material| + N chemical|ѧ + V agree|ͬ + N character|,surname|,human|,ProperName|ר + V contain| + V endure| +ݲ V TolerateNot| +ݲ÷ V TolerateNot|,target=disagree|ͬ +ݻ N attribute|,volume|ݻ,&inanimate| + N attribute|,volume|ݻ,&inanimate| +ò N attribute|,appearance|,&AnimalHuman| + V contain| + N tool|þ,@put|,@store|,generic|ͳ + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V endure| + V forgive|ԭ + V reside|ס + ADJ aValue|ֵ,ability|,able|,$agree|ͬ + V agree|ͬ + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + ADJ aValue|ֵ,easiness|,easy|,desired| +׷ V happen|,manner=easy| +׸ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +׽ V accept|,manner=easy| + N material|,?clothing|,?tool|þ + N part|,%AnimalHuman|,hair|ë +޲ N material|,?clothing|,?tool|þ +޻ N tool|þ,*decorate|װ +޿ N clothing|,#leg| +ë N material|,?clothing|,?tool|þ +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë״ ADJ aValue|ֵ,form|״,hair|ë +ͷ N material|,?clothing|,?tool|þ,*weave| +ͷ N tool|þ,*weave| + N material|,*decorate|װ + N material|,?clothing|,?tool|þ,*weave| + N clothing|,#body| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +߳ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N attribute|,necessity|Ҫ,redundant|,&entity|ʵ +Ա N human|,employee|Ա,redundant| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V PlayWith|Ū + V rub|Ħ + V PlayWith|Ū + V rub|Ħ +Ū V PlayWith|Ū + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N fact|,exercise| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + N emotion|,gentle| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| +⻬ ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + N fact|,sport| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N fish| + ADJ aValue|ֵ,behavior|ֹ,passive| + N part|,%AnimalHuman|,flesh| + N part|,%fruit|ˮ,flesh|,$eat| +ⲫ V fight|,military| +ⶡ N food|ʳƷ,#flesh| +ⶹޢ N fruit|ˮ + N tree|,?medicine|ҩ + ADJ aValue|ֵ,fatness|,fat| +⼦ N bird| + N part|,%animate|,flesh| +˰ߴ ADJ aValue|ֵ,behavior|ֹ,passive| + N disease| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĩ N food|ʳƷ,#flesh| +ţ N livestock| + N food|ʳƷ,#flesh| +Ƥ N part|,%human|,skin|Ƥ +Ƥ N part|,%livestock|,skin|Ƥ +Ƭ N food|ʳƷ,#flesh| + N bird| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| + N food|ʳƷ + N food|ʳƷ,$eat|,liquid|Һ + N part|,%AnimalHuman|,body| + N part|,%human|,body| + N food|ʳƷ,#flesh| + N part|,%AnimalHuman|,#eye| +Ʒ N food|ʳƷ,#flesh| +д N human|,enemy| + N livestock| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + V eat| + V crawl| +䶯 V crawl| + V crawl| + N human|,literature| + N human|,literature|,ProperName|ר,past| + N community|,#knowledge|֪ʶ + N human|,literature| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N beast|,*swim| + N human|,young| + N human|,young| +ţ N human|,employee|Ա + V BeSimilar| + CONJ {condition|} + ADV {supplement|ݽ} +糣 ADV aValue|ֵ,frequency|Ƶ,regular| + V joyful|ϲ +һ V BeSame|ͬ + ADJ aValue|ֵ,kind|,special| +˵ȵ COOR {and|} + ADJ aValue|ֵ,kind|,special| + ADV {supplement|ݽ} + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +̺ V ignorant|֪ +編 V imitate|ģ + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + CONJ {condition|} + ADV {manner|ʽ,question|} +绢 ADJ aValue|ֵ,ability|,able| +ݱ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V joyful|ϲ +缢ƿ V worried|ż +罺 ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV time|ʱ,now| +׹ ADJ aValue|ֵ,reputation|,glorious|,desired| +ı ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +γ V understand| +ɢ V flee| +ƽʱһ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,behavior|ֹ,proper|,#time|ʱ,desired| +ǰ ADV {comment|} + V prosper| + CONJ {condition|} +ɥ V sorrowful| + ADV {comment|} + ADV {comment|} +ʵ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʵ N attribute|,size|ߴ,&physical| +ظ V AtEase| + ADJ qValue|ֵ,amount|,all|ȫ +黹 V return|,quantity=all|ȫ + V return|,quantity=all|ȫ +˻ V return|,quantity=all|ȫ +˹ ADJ aValue|ֵ,degree|̶,more| +ͬ V BeSimilar| +һ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV {supplement|ݽ} +ϸ V SeekRefuge|Ͷ + V satisfied| + N tool|þ,*decorate|װ +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ը V fulfil|ʵ,patient=aspiration|Ը +ԸԳ V satisfied| + ADJ qValue|ֵ,amount|,many| + V joyful|ϲ +ձ V uneasy| + V damage| + V slander|̰ + V ExpressAgainst|Ǵ + N human|,*ExpressAgainst|Ǵ +û V slander|̰ + N human|,young| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N shape|,liquid|Һ +鰩 N disease| + ADJ aValue|ֵ,color|ɫ,white| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N part|,%AnimalHuman|,*bite|ҧ +δ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| +鷿 N part|,%AnimalHuman|,body| + N food|ʳƷ + N bird|,?food|ʳƷ +黯 V ize|̬,PatientAttribute=liquid|Һ,industrial| +黯 N chemical|ѧ + N medicine|ҩ,liquid|Һ +齺 N material|,sticky|,*fix|ס,*fasten|˩ + N food|ʳƷ +ĸ N human|,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +Ʒ N edible|ʳ + N chemical|ѧ + N material|,?food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ״ ADJ aValue|ֵ,form|״ +ͻ N disease| + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N material| + N part|,%AnimalHuman|,*bite|ҧ +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N livestock|,young| +״ ADJ aValue|ֵ,form|״ + PRON {SecondPerson|} +۳ N character|,surname|,human|,ProperName|ר + V GoInto| + V fit|ʺ + V include| + N payment| +벻 V lack|ȱ +볡 V GoInto| +볡ȯ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +봺 V start|ʼ,agent=time|ʱ,spring| +뵳 V include|,ResultWhole=community|,politics| +붬 V start|ʼ,agent=time|ʱ,winter| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + V GoInto|,LocationFin=facilities|ʩ + ADJ aValue|ֵ,content|,profound|,desired| + V include|,SourceWhole=community|,commercial| +뻧 V GoInto|,LocationFin=house| +뻭 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V include| + N human|,*include| + V include|,ResultWhole=community| +뾳 V GoInto|,LocationFin=country| + N part|,%building|,mouth| +ڴ N part|,%building|,mouth| + V attack|,military| + V store| + N readings|,NotProfound|dz + V appear| + V sleep|˯ + V sleep|˯ + ADJ FondOf|ϲ + V FondOf|ϲ +ħ V FondOf|ϲ +ľ ADJ aValue|ֵ,content|,profound|,desired| + V attack|,military| + N human|,*attack|,military| + V start|ʼ,agent=time|ʱ,autumn| + V FondOf|ϲ + ADJ aValue|ֵ,kind|,special| + N sound|,#language| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + V start|ʼ +˯ V sleep|˯ + V bury| + V include|,ResultWhole=community|,politics| + V include|,ResultWhole=institution| + V record|¼,content=internet| +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Χ V win|ʤ +ζ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| + V include|,ResultWhole=army|,military| +ϯ V sit| + V start|ʼ,agent=time|ʱ,summer| +ѡ V win|ʤ +ѧ V include|,ResultWhole=education|,education| +ѧ N fact|,exam| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҩ V RegardAs|,ResultIsa=medicine|ҩ +ҹ N time|ʱ,night| + V suffer|,content=detain|ס,crime|,police| +Ժ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V record|¼,LocationFin=account|,commercial| +׸ V MarryTo| + V sit| + V put|,LocationFin=tool|þ + N tool|þ,@LieDown| +촯 N disease| +쵥 N tool|þ,@LieDown|,*cover|ڸ + N tool|þ,*cover|ڸ + N tool|þ,@LieDown| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +װ ADJ aValue|ֵ,property|,soft|,#wrap| + N tool|þ,*record|¼ + N material|,?clothing|,?tool|þ + N wind| + N medicine|ҩ + N part|,%AnimalHuman|,bone| +ͷ N human|,undesired|ݬ,timid| + N tool|þ,linear| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V ize|̬,PatientAttribute=soft| + V win|ʤ + N software| + N software| + V detain|ס,police| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ĥ V MakeTrouble| +ľ N wood|ľ,material| + N tool|þ,*record|¼ +Ƭ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,hardness|Ӳ,soft|,ish| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ʳ N edible|ʳ,generic|ͳ +ˮ N water|ˮ + N food|ʳƷ + N part|,%building|,nerve| +嶯 N AnimalHuman|,generic|ͳ + N part|,%LandVehicle|,@sleep|˯ +ϯ N part|,%LandVehicle|,@sit| +ϯ N part|,%LandVehicle|,@sleep|˯ + N attribute|,content|,interesting|Ȥ,readings| + N drinks|Ʒ,generic|ͳ +Ӳ N part|,%software|,%computer| +½ N fact|,*arrive|,#aircraft| + N part|,%LandVehicle|,@sit| + N part|,%AnimalHuman|,mouth| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sweden|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Sweden|) + N human|,(Sweden|) + N language|,#country|,ProperName|ר + N money|,(Cambodia|կ) +ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swiss|ʿ) +ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʿ N money|,(Liechtenstein|֧ʿ) +ʿ N money|,(Swiss|ʿ) +ʿ N human|,(Swiss|ʿ) +ѩ N RainSnow|ѩ,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| +񲻿ɵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V BecomeLess|,manner=sudden| + N image|ͼ,angular| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&human| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N time|ʱ + N time|ʱ,year| + N time|ʱ,month| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V decorate|װ + V lubricate|,industrial| + V moisten|ʪ + V lubricate|,industrial| +󻬼 N material|,liquid|Һ,*lubricate| + N material|,liquid|Һ,*lubricate| +֬ N material|,liquid|Һ,*lubricate| +ɫ V MakeBetter|Ż +ɫ V decorate|װ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V moisten|ʪ + CONJ {condition|} + N InsectWorm| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V calm| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V inferior| + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + V weaken| + V ill|̬,#eye| + N chemical|ѧ + N attribute|,quality|,weak|,&human|,&organization|֯ +С ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V indulge| + V spray| + V spread| + V throw| + V release|ͷ,patient=LandVehicle| + N humanized|,evil| + V IllBehave| + N place|ط,ProperName|ר +ɳĮ N place|ط,ProperName|ר + V recreation| + V TalkNonsense|Ϲ˵ + V please|ȡ + V release|ͷ + V IllBehave| + V excrete|й,patient=liquid|Һ + V IllBehave| + V ExpressAnger|ʾŭ + V leak|©,content=gas| + V cease|ͣ + V release|ͷ +ֲ V cease|ͣ + V die| +ȥ V die| + N tool|þ,strong|ǿ,desired|,*win|ʤ + V run| +Ⱦ V run| + V throw|,patient=tool|þ,#catch|׽ס,#fish| +Ѽ V run| +Ѿ V run| +Ұ V IllBehave| + V spray| + V spread| + V weep| + V fall| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ˮ V LandVehicle|,spread|,#water|ˮ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + V spray| + N character|,surname|,human|,ProperName|ר +߶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|߶) +߶ N place|ط,country|,ProperName|ר,(South America|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|ά) +ά N place|ط,country|,ProperName|ר,(South America|) +ղ N place|ط,city|,ProperName|ר,(Yugoslavia|˹) + N place|ط,city|,ProperName|ר,(Yugoslavia|˹) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Samoa|Ħ) +Ħ N place|ط,country|,ProperName|ר +Ħ N language|,#country|,ProperName|ר + N food|ʳƷ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,nerve| + N disease| + N part|,%fish|,*respire| + V fill| + N part|,%artifact|˹,generic|ͳ + N place|ط,country|,ProperName|ר,(Senegal|ڼӶ) + N place|ط,important|,military| + N place|ط,(China|й) + N sound|,#language| + V suffer|,content=$BlockUp|,experiencer=LandVehicle| + N language|,#country|,ProperName|ר + N money|,(Ghana|) +ά N place|ط,ProperName|ר,(Yugoslavia|˹) +ά-޵ N language|,#country|,ProperName|ר +ά N human|,(Yugoslavia|˹) +ά N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sierra Leone|) + N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Senegal|ڼӶ) +ڼӶ N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ N human|,(Senegal|ڼӶ) +·˹ N aValue|ֵ,attachment|,#country|,ProperName|ר,(Cyprus|·˹) +·˹ N place|ط,country|,ProperName|ר,(Asia|) +·˹ N money|,(Cyprus|·˹) +·˹ N human|,(Cyprus|·˹) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Seychelles|) + N place|ط,country|,ProperName|ר,(Africa|) +¬ N money|,(Seychelles|) + N human|,(Seychelles|) + N language|,#country|,ProperName|ר + N place|ط,(China|й) +ά N place|ط,ProperName|ר,(Spain|) +ʧ EXPR lucky| + N sound|,#language| + N part|,%artifact|˹,generic|ͳ + N community|,ProperName|ר,(Yugoslavia|˹) + V compete| + N fact|,compete| + V surpass|ǿ + N facilities|ʩ,space|ռ,@compete|,sport| + N SportTool|˶,LandVehicle|,*compete| + N fact|,compete|,#LandVehicle| + N process|,#compete| + V surpass|ǿ + V compete|,sport| + N fact|,compete|,run| + N fact|,compete| +ͧ N ship|,*compete| +ͧ˶ N fact|,compete|,#ship|,sport| + N material|,?tool|þ + N material|,?tool|þ + NUM qValue|ֵ,amount|,cardinal|,mass| +K N community|,(US|) +˸Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +˽ N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +ʮ N attribute|,occupation|ְλ,mass|,&human| +൹ V engage|,content=affairs|,#duty|,#sequence| +̥ N human|,family|,mass| + ADJ qValue|ֵ,amount| + ADJ aValue|ֵ,form|״ + N music| + N fact|,eat| +· N location|λ,%route|· + V die| + N phenomena|,undesired|ݬ,#unfortunate|,#die| + N human|,family| + N time|ʱ,past| +ϵ N time|ʱ,past| + N knowledge|֪ʶ +۷ N knowledge|֪ʶ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,frequency|Ƶ,again| + N time|ʱ,summer|,hot| + N time|ʱ,day|,night| +ҹ N time|ʱ,day|,night| +é® V invite| + N place|ط,#human|,country|,politics|,mass| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ +һ ADJ aValue|ֵ,property|,$merge|ϲ + ADJ part|,implement| + N fact|,exercise|,sport| +Զ N fact|,exercise|,sport| + N crop|ׯ + V KeepSilence|˵ +ż N tool|þ,#TakePicture| + ADJ aValue|ֵ,form|״ + N image|ͼ,angular| + N knowledge|֪ʶ,#image|ͼ +ǰ N tool|þ,*measure| +dz N tool|þ,*measure| +Ƿ N tree| +ǹε N tool|þ,*cut| +Ǻ N symbol|,#quantity|,#DoSum| +ǿ N clothing|,#leg| + N fact|,love| + N material|,metal| + ADJ aValue|ֵ,form|״ + N land|½,surfacial|,#waters|ˮ + ADJ aValue|ֵ,property|,$merge|ϲ + N army| + N army|,generic|ͳ + ADJ aValue|ֵ,form|״ +⾵ N tool|þ,#lights| + V order| + N LandVehicle| +ֳ N LandVehicle| + N knowledge|֪ʶ + N food|ʳƷ + N time|ʱ + ADJ qValue|ֵ,amount|,some|Щ + V lucky| +ʮ V BeGood|̬ +˼ V think|˼,manner=attentive|ϸ +˼ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ͷ ADV aValue|ֵ,frequency|Ƶ,often| +ͨ N tool|þ +ά ADJ aValue|ֵ,form|״,cubic| +λһ ADJ aValue|ֵ,property|,$merge|ϲ +Ⱥ ADJ qValue|ֵ,amount|,some|Щ + N edible|ʳ,#taste|ζ,good| + N MusicTool| +Ķ V hesitate|ԥ + N place|ط,city|,ProperName|ר,(China|й) + N time|ʱ,month| +· N time|ʱ,month| +㶦 V BeOpposite| + NUM qValue|ֵ,amount|,cardinal|,mass| +ɡ N shape| +ɡ N tool|þ,#RainSnow|ѩ,*protect| +ɡ N human|,military| +ɡ N army| +ɡ V fall|,sport|,military| +ɡͶ V drop|Ͷ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ɢ V disperse|ɢ +ɢ V issue|ַ +ɢ N medicine|ҩ +ɢ V release|ͷ +ɢ V spread| +ɢ N human|,military| +ɢ N human|,military|,undesired|ݬ +ɢ V disseminate| +ɢ V disseminate| +ɢ V spread| +ɢ V walk| +ɢ V finish|,entertainment| +ɢ N fact|,sport| +ɢ V issue|ַ +ɢ V spread| +ɢ N disease|,#eye| +ɢ V finish| +ɢ V separate| +ɢ N inanimate|,commercial| +ɢ N medicine|ҩ +ɢ N text| +ɢ V separate| +ɢ V disperse|ɢ +ɢ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɢ V disperse|ɢ +ɢ V fall| +ɢ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɢ V remove|,patient=upset| +ɢ V remove|,patient=heat| +ɢȹ N part|,%tool|þ,*remove|,#heat| +ɢƬ N part|,%tool|þ,*remove|,#heat| +ɢ N tool|þ,*remove|,#heat| +ɢɢ V remove|,patient=upset| +ɢʧ V disappear|ʧ +ɢ̯ V separate| +ɢ N text| +ɢļ N human|,*compile|༭,literature| +ɢʫ N text| +ɢϯ N location|λ,@sit| +ɢ V MakeHappy|ʹϲ,means=WhileAway| +ɢװ ADJ aValue|ֵ,property|,$wrap|,unattached|ɢ +ɢװơ N drinks|Ʒ,$addict|Ⱥ +ɢ N location|λ,@sit| +ɢ V disappear|ʧ +ɢ V disappear|ʧ +ɣ N character|,surname|,human|,ProperName|ר +ɣ N part|,%tree|,embryo| +ɣ N tree| +ɣ N InsectWorm| +ɣ N language|,#country|,ProperName|ר +ɣԡ N fact|,wash|ϴ,#body| +ɣƤֽ N paper|ֽ +ɣ N tree| +ɣҶ N part|,%tree|,hair|ë +ɣĺ N time|ʱ,#aged| +ɣ԰ N facilities|ʩ,space|ռ,*planting|ֲ +ɣ N part|,%tree|,embryo| +ɣ N place|ط,@ComeToWorld| +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤӲ ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +ɤӺ ADJ aValue|ֵ,SoundQuality|,good|,desired| +ɥ N fact|,salute|¾,#die| +ɥ V lose|ʧȥ +ɥ V fear| +ɥ N clothing|,*salute|¾,#die| +ɥ V fear| +ɥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N fact|,uprise|,undesired|ݬ,politics| +ɥ V die| +ɥż V lose|ʧȥ,possession=human| +ɥ V disheartened| +ɥ V unfortunate| +ɥȨ V surrender| +ɥ V die| +ɥʧ V lose|ʧȥ +ɥʧ N human|,*lose|ʧȥ +ɥ N fact|,salute|¾,#die| +ɥIJ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N expenditure|,#salute|¾,#die| +ɥ N sound|,*tell|,#die| +ɦ V scratch|ץ +ɦͷŪ V show|,content=flighty| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɧ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ɧ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ɧ N fact|,uprise|,undesired|ݬ,politics| +ɧȺ N human|,disorder|,undesired|ݬ,mass| +ɧ N human|,female|Ů,flighty|,undesired|ݬ +ɧ N human|,*compile|༭,literature| +ɧ N fact|,uprise| +ɧ ADJ aValue|ֵ,occasion|,bustling| +ɧ V MakeTrouble| +ɧ N human|,*compile|༭,literature| +ɧī N human|,*compile|༭,literature| +ɨ V GoThrough| +ɨ V remove| +ɨ V wipe| +ɨ N tool|þ,*wipe| +ɨ V remove| +ɨ V wipe| +ɨ V destroy|,military| +ɨ V wipe|,patient=part|,#building| +ɨس V expel| +ɨ V remove|,patient=medicine|ҩ,#addict|Ⱥ +ɨ V wipe|,patient=room| +ɨ V condole|° +ɨ V destroy|,patient=crime|,police| +ɨ V destroy|,patient=lascivious|,police| +ɨ׽ N weapon|,ship|,military| +ɨͧ N weapon|,ship|,military| +ɨä V exempt|,ResultEvent=ignorant|֪ +ɨ V look|,industrial| +ɨ N tool|þ,look|,industrial| +ɨ V destroy|,military| +ɨĹ V condole|° +ɨ V shoot| +ɨβ V finish| +ɨ V disappointed|ʧ +ɨ V disappoint| +ɨѩ N LandVehicle|,*remove|,#RainSnow|ѩ +ɨ N tool|þ,*wipe| +ɨ N celestial| +ɨ N human|,undesired|ݬ,*CauseToDo|ʹ,#unfortunate| +ɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɩɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɪ N MusicTool|,(China|й) +ɪɪ V shiver| +ɪɪ ECHO sound| +ɪ V shiver| +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N attribute|,scene|,&inanimate| +ɫ N attribute|,color|ɫ,&physical| +ɫʰ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫͷ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ N attribute|,standard|׼,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N lights|,colored| +ɫ N human|,lascivious|,undesired|ݬ +ɫ N food|ʳƷ +ɫ N material|,?food|ʳƷ +ɫ N human|,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ɫä N disease|,#eye| +ɫä N human|,undesired|ݬ,*disable|м,#look| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ N phenomena|,#color|ɫ,#lights| +ɫ ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ +ɫ N human|,lascivious|,undesired|ݬ +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɫ N part|,%animate|,#color|ɫ +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ֯ N material|,?clothing| +ɫ N tool|þ,*gamble|IJ +ɬ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ɭ ADJ aValue|ֵ,brightness|,dark| +ɭ N tree| +ɭԱ N human|,*remove|,fire| +ɭȻ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| +ɭɭ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭ ADJ aValue|ֵ,behavior|ֹ,strict| +ɮ N human|,religion|ڽ +ɮ V lack|ȱ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,mass|,#religion|ڽ +ɮͽ N human|,religion|ڽ +ɮ٤ N human|,(Singhalese|ɮ٤) +ɮ٤ N language|,#country|,ProperName|ר +ɯ N character|,(China|й) +ɯ N clothing| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰ N material|,?building| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰʯ N stone|ʯ,material| +ɰ N material|,?food|ʳƷ +ɰ N stone|ʯ,material| +ɰ N stone|ʯ,material| +ɰ N part|,%inanimate| +ɰֽ N tool|þ,*grind|ĥ +ɰ N stone|ʯ,material| +ɱ V fight| +ɱ V fight|,military| +ɱ V kill|ɱ +ɱ V weaken| +ɱ N chemical|ѧ,*destroy|,#InsectWorm| +ɱ羰 V discourage|ˮ +ɱ V kill|ɱ +ɱ￴ V frighten|Ż +ɱȡ V WorthNot|ֵ +ɱź V frighten|Ż +ɱ V subtract|,patient=price|۸,commercial| +ɱ ADJ aValue|ֵ,ability|,able|,remove|,#bacteria|΢,medical|ҽ +ɱ V remove|,patient=bacteria|΢,purpose=clean|ʹ,medical|ҽ +ɱ N chemical|ѧ,*destroy|,#bacteria|΢ +ɱ¾ V kill|ɱ +ɱ¾ V kill|ɱ,crime| +ɱ V destroy| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ V fulfil|ʵ,patient=compile|༭,#readings| +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ,#human| +ɱ V kill|ɱ,crime| +ɱ˰ N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| +ɱ˲Ѫ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˲Ѫ V kill|ɱ,crime| +ɱ˲գ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˷ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱԽ V rob| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ V endeavour| +ɱ֮ N phenomena|,undesired|ݬ,#unfortunate| +ɱ V kill|ɱ,patient=AnimalHuman| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ N weapon| +ɱ V kill|ɱ +ɱͷ V kill|ɱ +ɱһӰ V frighten|Ż +ɲ V cease|ͣ +ɲ N facilities|ʩ,space|ռ,religion|ڽ +ɲ V fix|ס +ɲ V TurnOff|ֹ,content=machine| +ɲ V cease|ͣ +ɲ V fix|ס +ɲ ADJ aValue|ֵ,duration|,TimeShort| +ɲǼ ADJ aValue|ֵ,duration|,TimeShort| +ɲʱ ADJ aValue|ֵ,duration|,TimeShort| +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ ADJ aValue|ֵ,form|״,round|Բ +ɳ N character|,surname|,human|,ProperName|ר +ɳ N stone|ʯ,material| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N place|ط,military|,@fight| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N tool|þ,*exercise| +ɳ N land|½ +ɳ N fish| +ɳ N furniture|Ҿ,space|ռ,@sit| +ɳ N tool|þ,cubic|,@cook| +ɳ N land|½,surfacial|,desolate|,undesired|ݬ +ɳ N human|,royal|,(Russia|˹) +ɳ N food|ʳƷ +ɳ N material|,?food|ʳƷ +ɳ N InstitutePlace|,@WhileAway|,commercial| +ɳϾ N bacteria|΢ +ɳĮ N land|½,surfacial|,barren| +ɳĮ V ize|̬,PatientAttribute=barren|,#stone|ʯ +ɳ N tool|þ,military| +ɳ N stone|ʯ,material| +ɳɳ ECHO sound| +ɳʯ N stone|ʯ,material| +ɳ N place|ط,city|,ProperName|ר,(China|й) +ɳ̲ N land|½ +ɳ N money|,(Saudi Arabia|ɳ) +ɳ N place|ط,country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ N place|ط,country|,ProperName|ר,(Asia|) +ɳ N land|½ +ɳ N stone|ʯ +ɳ N thinking|˼ +ɳ ADJ thinking|˼ +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ N disease|,#eye| +ɳ ADJ aValue|ֵ,material|,stone|ʯ +ɳ N land|½ +ɳ N shape| +ɳ N stone|ʯ,material| +ɳ N beast| +ɴ N material|,?clothing| +ɴ N tool|þ +ɴ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ɴ N furniture|Ҿ,cubic|,@store| +ɴ N part|,%building| +ɴ N tool|þ,*illuminate| +ɴ N part|,%machine| +ɴ N clothing| +ɴ N clothing| +ɴ N material|,linear| +ɵ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N human|,foolish|,undesired|ݬ +ɵǺ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N text|,foolish| +ɵ N attribute|,strength|,stiff|,&human| +ɵ V laugh|Ц,manner=foolish| +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵñ N human|,foolish|,undesired|ݬ +ɵ N event|¼,foolish| +ɵͷɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵЦ V laugh|Ц,manner=foolish| +ɵ V stupefied|ľȻ +ɵ N human|,foolish|,undesired|ݬ +ɶ ADJ aValue|ֵ,kind|,question| +ɶ N entity|ʵ,question| +ɷ V cease|ͣ +ɷ V tighten|ս +ɷ V weaken| +ɷ V TurnOff|ֹ,patient=machine| +ɷ V cease|ͣ +ɷ N part|,%vehicle|ͨ,*TurnOff|ֹ +ɷ V tighten|ս +ɷѿ V think|˼,manner=endeavour| +ɷĻ V think|˼,manner=endeavour| +ɷ羰 V discourage|ˮ +ɷβ V finish| +ɷβ N process|,ending|ĩ +ɷн V pretend|װ +ɷס V cease|ͣ +ɸ V filter| +ɸ N tool|þ,*filter| +ɸ V shiver| +ɸѡ V choose|ѡ +ɸ N tool|þ,*filter| +ɹ V dry| +ɹ V illuminate| +ɹ V dry| +ɹ̫ V illuminate| +ɹͼ V print|ӡˢ +ɹ N addictive|Ⱥ +ɺ N character|,(China|й) +ɺ N material|,?tool|þ,#decorate|װ,precious| +ɺ N stone|ʯ,material| +ɻ V cover|ڸ +ɻ N tool|þ,*cover|ڸ +ɼ N tree| +ɼľ N wood|ľ +ɽ N character|,surname|,human|,ProperName|ר +ɽ N land|½ +ɽ N shape| +ɽ N land|½ +ɽ N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ɽ N medicine|ҩ,(China|й) +ɽ N FlowerGrass| +ɽ軨 N FlowerGrass| +ɽ N place|ط,city| +ɽ N land|½ +ɽȹ N FlowerGrass| +ɽ N place|ط,village| +ɽ N FlowerGrass| +ɽ N facilities|ʩ,route|· +ɽ N medicine|ҩ +ɽ N land|½ +ɽ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɽ N part|,%land|½,head|ͷ +ɽ N part|,space|ռ,%land|½,head|ͷ +ɽ N human|,past| +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽ N shows| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,head|ͷ +ɽ N wind| +ɽ N land|½ +ɽˮ ADJ aValue|ֵ,duration|,TimeLong| +ɽˮ N phenomena|,#unfortunate|,undesired|ݬ +ɽˮԶ ADJ aValue|ֵ,distance|,far|Զ +ɽˮԶ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N music|,$sing| +ɽ N part|,%land|½,base| +ɽ N land|½ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽˮɫ N attribute|,scene|,&inanimate| +ɽ N place|ط,#human|,country|,politics| +ɽ N place|ط,ProperName|ר,(China|й) +ɽ N fruit|ˮ +ɽ N place|ط,#country| +ɽ N water|ˮ,strong|ǿ,#land|½ +ɽ N physical| +ɽ N bird| +ɽ N part|,%land|½,body| +ɽ N waters|ˮ,linear| +ɽ N part|,%land|½,base| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,body| +ɽ N tree| +ɽ N part|,%land|½,body| +ɽ´ N part|,%land|½,base| +ɽ· N facilities|ʩ,route|· +ɽ N land|½ +ɽ N land|½ +ɽè N beast| +ɽë N tree| +ɽ N community|,religion|ڽ +ɽ N human|,agricultural|ũ +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽ N part|,%land|½,skin|Ƥ +ɽǽ N part|,%house| +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽˮ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɽ N land|½ +ɽ N place|ط +ɽȪ N waters|ˮ,surfacial| +ɽȸ N bird| +ɽɫ N attribute|,scene|,&inanimate| +ɽɽˮˮ N attribute|,scene|,&inanimate| +ɽˮ N attribute|,scene|,&inanimate| +ɽˮ N image|ͼ,$draw| +ɽˮ N image|ͼ,$draw| +ɽˮ V BeNear| +ɽͷ N community|,undesired|ݬ +ɽͷ N facilities|ʩ,military|,space|ռ,#land|½ +ɽͷ N part|,%land|½,head|ͷ +ɽ N place|ط +ɽ N place|ط +ɽ N land|½ +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽϵ N place|ط +ɽϿ N part|,%land|½,linear|,#water|ˮ +ɽ N place|ط,village| +ɽ N part|,%land|½,skin|Ƥ +ɽ N livestock| +ɽ N part|,%livestock|,hair|ë,?material| +ɽ N part|,%land|½,body| +ɽҩ N part|,%vegetable|߲,embryo|,$eat| +ɽҩ N vegetable|߲ +ɽ¥ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N part|,%vegetable|߲,embryo|,$eat| +ɽ N vegetable|߲ +ɽ N land|½ +ɽկ N place|ط +ɽ亣ζ N food|ʳƷ,generic|ͳ +ɽׯ N house| +ɽ N part|,%earth|,mouth| +ɽ N land|½ +ɽ N fruit|ˮ +ɽ N tree| +ɽ N bird| +ɽ N beast| +ɾ V remove| +ɾ V remove| +ɾ V remove| +ɾͼ V compile|༭,means=subtract| +ɾ V MakeBetter|Ż +ɾ V compile|༭,means=subtract| +ɾ V subtract| +ɾں N symbol|,#text| +ɾȥ V remove| +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ N human|,*persuade|Ȱ˵,undesired|ݬ +ɿ V incite|ָʹ + N clothing|,#body| + V CausePartMove| + V escape| + V illuminate| + V wounded| + V escape| + V wounded| + N thunder| +ʽ ADJ aValue|ֵ,behavior|ֹ,sudden| +ս N fact|,fight|,military| + V illuminate| + V escape| + V illuminate| + N lights| + N tool|þ,#TakePicture|,*illuminate| + N tool|þ,*illuminate|,#information|Ϣ + V attack|,manner=sudden|,military| +ս N fact|,fight|,military| + V escape| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V illuminate| + V illuminate| + V SelfMoveInManner|ʽ + V escape| +ʧ N phenomena|,unfortunate|,undesired|ݬ +˸ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +˸ V illuminate| +˸ V KeepSilence|˵ + V appear|,manner=fast| +ҫ V illuminate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N shows| + V BeAble|ܹ + V do|,manner=self| +ó V BeAble|ܹ +ְ V cease|ͣ,content=undertake|,manner=self| +Ȩ V control|,patient=power|,manner=self| + V do|,manner=self| + V do|,manner=self| + V ProvideFor| + ADJ qValue|ֵ,amount|,many|,desired| + V ProvideFor| + N expenditure|,*ProvideFor| + N food|ʳƷ,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ + N food|ʳƷ,place|ط,@reside|ס + V BeAble|ܹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ưո V do|,manner=willing|Ը +Ʊ N readings|,precious| +Ʊ N human|,*debate| +ƴ V WellTreat|ƴ +ƺ N result| +ƾ N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,religion|ڽ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + V BeAble|ܹ +ս V BeAble|ܹ,content=fight| + N place|ط,city|,ProperName|ר,(China|й) +ͷ N place|ط,city|,ProperName|ר,(China|й) + V incite|ָʹ + V shake|ҡ + N tool|þ,#wind|,*cool| +ȱ N fish| +ȳ N tool|þ,#crop|ׯ,generic|ͳ +ȶ V incite|ָʹ +ȶ V shake|ҡ +ȷ V MakeTrouble| +ȹ N part|,%tool|þ,#wind|,#cool|,bone| +Ȼ V incite|ָʹ + N tool|þ,#wind|,*cool| + N tool|þ,#wind|,*cool| + N shape| + N tool|þ,#wind|,*cool| + V copy|д + V repair| +д V copy|д + N attribute|,dampness|ʪ,&physical| + N attribute|,dampness|ʪ,&physical| + V damage| + N disease|,wounded| + V disgust| + V offend| + V sorrowful| +˰ N trace|,#wounded| +˱ V sorrowful| +˱ N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲Ա N human|,*wounded| +˲Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲ V lose|ʧȥ,possession=wealth|Ǯ +˲ V disable|м +˲ N human|,*disable|м,undesired|ݬ +˷ V fever| +˷ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˸ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +˺ V damage| +˺ V offend| +˺ N disease| +˺ N human|,undesired|ݬ,*wounded| +˺ N trace|,#wounded| +˻ V sorrowful| +˽ N wounded| +˿ N location|λ,#disease|,#wounded| +Խ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N attribute|,circumstances|,&wounded|,#medical|ҽ + V damage|,patient=human| + V offend|,patient=human| + N attribute|,circumstances|,&wounded|,#medical|ҽ +캦 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʹ N disease| + N phenomena|,wounded|,die|,undesired|ݬ +¹ N phenomena|,unfortunate|,wounded|,die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V sorrowful| +IJĿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ + N affairs|,commercial| + V discuss| + N human|,#occupation|ְλ,commercial| + N music| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̱ N mark|־,commercial| +̱귨 N law|ɷ,#mark|־,commercial| +̱Ȩ N rights|Ȩ,#mark|־,commercial| +̲ N place|ط,city|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̳ N community|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̴ N ship|,commercial| +̴ N human|,#occupation|ְλ,official|,#ship| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +̶ V decide|,means=discuss| +̶ V discuss| +̶ N human|,commercial| +̷ N law|ɷ,commercial| +̷ N human|,#occupation|ְλ,*sell|,commercial| +̸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +̺ N InstitutePlace|,*sell|,@buy|,commercial| +̻ N institution|,commercial| +̼ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +̼ N human|,#occupation|ְλ,commercial| +̼ N fact|,*investigate|,#physical| +̼ N institution|,*investigate|,#physical| +̽ N community|,commercial| + V discuss| + N human|,commercial| +ó N affairs|,commercial| +IJ N character|,surname|,human|,ProperName|ר +Ʒ N artifact|˹,commercial|,generic|ͳ +Ʒ N building|,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ʒ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ǣ V discuss| + N attribute|,environment|,&commercial| +ȶ V discuss| +ȶ V think|˼ + N human|,#occupation|ְλ,commercial| + N symbol|,#quantity| +̸ V discuss| + V discuss| + V think|˼ + N affairs|,commercial| + N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +ܹ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| + N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ ADJ aValue|ֵ,attachment|,commercial| +ҵ N affairs|,commercial| +ҵ N place|ط,commercial| + V discuss| + N attribute|,reputation|,&human|,&organization|֯ + V think|˼ + V FondOf|ϲ + V appreciate|޳ + V enjoy| + V grant| + V reward| +ʹ V grant| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͼ V distinguish|ֱ,literature| +Ǯ N payment|,#commercial| +ʶ V FondOf|ϲ + V enjoy| + N fact|,*joyful|ϲ,desired| +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѩ V enjoy|,content=RainSnow|ѩ + V enjoy|,content=celestial| + N time|ʱ + N time|ʱ,afternoon| +η N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + V GoForward|ǰ + V GoUp|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,time|ʱ,past| + V apply|ͿĨ + V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| + V climb|ʵ + V do| + V install|װ + N location|λ + V provide| + NUM qValue|ֵ,sequence|,ordinal| + V submit| + V tighten|ս + V undergo|,content=disseminate| + STRU {Vachieve|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + ADV {range} + STRU {scope} +ϰװ V engage|,content=affairs|,#duty|,#sequence| +ϰ NUM qValue|ֵ,amount|,many| +ϰ V engage|,content=affairs|,#duty| +ϰ N human|,#occupation|ְλ,employee|Ա,*engage|,#affairs|,#duty| +ϰ볡 N fact|,compete|,sport|,InFront|ǰ +ϰ N time|ʱ,year|,half|,InFront|ǰ +ϰ N time|ʱ,morning| +ϰ N location|λ,%human|,body|,half|,upper| +ϰ N part|,%human|,body|,half|,upper| +ϰҹ N time|ʱ,day|,night|,half|,InFront|ǰ +ϰ N time|ʱ,month|,half|,InFront|ǰ +ϱ V tell| +ϱ V undergo|,content=disseminate| +ϱ N human|,clan| +ϱ N part|,%AnimalHuman|,arm| +ϱ N community|,official| +ϱ N part|,%entity|ʵ,aspect| +ϱ V become|Ϊ,descriptive=fat|,#animal| +ϱ N human|,*visit| +ϲ V BeUnable|,content=fulfil|ʵ +ϲȥ V BeUnable|,content=GoUp|ȥ +ϲȥ V BeUnable|,content=fulfil|ʵ +ϲ V provide|,possession=food|ʳƷ +ϲ N humanized| +ϲ V exercise| +ϲ N method|,superior|,desired| +ϲ N part|,%entity|ʵ +ϲ㽨 N system|ƶ +ϲ N organization|֯ +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=perform|,entertainment| +ϳ V control|,patient=power| +ϳ V climb|ʵ,LocationFin=LandVehicle| +ϳ ADJ aValue|ֵ,quality|,superior|,desired| +ϴ V climb|ʵ,LocationFin=ship| +ϴ V sleep|˯ +ϴ N part|,%AnimalHuman|,mouth| +ϴ N human|,past| +ϵ V misunderstand| +ϵƭ V misunderstand| +ϵ V human|,*misunderstand| +ϵ V lighting|ȼ +ϵ V lighting|ȼ,patient=tool|þ +ϵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ϵȱ N human|,military| +ϵ N humanized| +ϵ V suicide|ɱ +ϵ V BecomeMore|,#price|۸ +ϵ V dispatch|Dz,#human| +ϵ V transport|,#artifact|˹,#fund|ʽ +϶ V StateChange|̬,#cool| +Ϸ N aValue|ֵ,direction|,upper| +Ϸ N weapon|,royal|,mark|־ +Ϸ N room| +Ϸ V accuse|ظ +Ϸɻ V climb|ʵ,LocationFin=aircraft| +Ϸ V condole|° +Ϸ V provide|,possession=material|,#crop|ׯ +Ϸ N attribute|,property|,good|,&entity|ʵ +Ϸ N direction| +ϸ V engage|,content=affairs|,#duty| +ϸ V accuse|ظ +ϸ N time|ʱ,week|,past| +ϸ N time|ʱ,month|,past| +Ϲ V engage|,content=affairs|,#duty| +Ϲ V entice|,means=GiveAsGift|,crime| +Ϲ V salute|¾,means=provide| +Ϲ V bite|ҧ,sport| +Ϲ V misunderstand| +Ϲ N time|ʱ,past| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ V brighten|ʹ +Ϲ V prosper| +Ϻ N place|ط,city|,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ϻ N part|,%AnimalHuman|,viscera| +ϺȾ N disease| +ϻ V angry| +ϻ V ill|̬,medical|ҽ +ϻ V enrich|ʵ,material=artifact|˹,commercial| +ϻ V enrich|ʵ,patient=furniture|Ҿ,commercial| +ϼ N community|,official| +ϼ N part|,%army| +ϼ N community|,official| +ϼ쵼 N community|,official| +ϼ˾ N part|,%army| +ϼָӹ N human|,official|,military| +ϼ N method|,superior|,desired| +Ͻ N human|,#occupation|ְλ,official|,military| +Ͻ V apply|ͿĨ,material=liquid|Һ,industrial| +Ͻ V submit| +Ͻ V submit| +Ͻ V LeaveFor|ǰ,LocationFin=facilities|ʩ +Ͻ ADJ aValue|ֵ,sequence|,InFront|ǰ +Ͻ V prosper| +Ͻ N aspiration|Ը,expect|,#MakeBetter|Ż +Ͼ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͽ V study|ѧ,content=affairs|,education| +Ͽ V study|ѧ,education| +Ͽ V teach|,education| +Ͽ ADJ aValue|ֵ,location|λ,upper| +Ͽ ADJ aValue|ֵ,content|,easy|,desired| + V apply|ͿĨ,material=material|,industrial| + V GoUp|ȥ + STRU {Vdirection|,upper|} + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%waters|ˮ + N organization|֯ +¥ V climb|ʵ,LocationFin=part|,#building| +¥ V climb|ʵ,LocationFin=part|,#building| +· V start|ʼ,content=leave|뿪 + V GoUp|ȥ,LocationFin=livestock| + V begin|ʼ + V shut|ر + V visit| + N community|,official| + N part|,%entity|ʵ,aspect| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,past|,year| + ADJ aValue|ֵ,age|,aged| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥ֯ N part|,%AnimalHuman|,skin|Ƥ +Ʒ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +· N attribute|,outlook|ǰ,good|,desired|,&situation|״ +· N facilities|ʩ,route|· + N location|λ,space|ռ + V pant| +ǧ NUM qValue|ֵ,amount|,many| +ǰ V approach|ӽ +ȥ V GoUp|ȥ +ȥ STRU {Vdirection|,upper|} +Ȧ׶ V misunderstand| + V undertake|,content=official| +ɫ V AlterColor|ɫ +ɫ ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,all|ȫ + N clothing|,#body|,generic|ͳ + N part|,%AnimalHuman|,body|,half|,upper| + N sound|,#language| + V BecomeMore| + V rise| +ʿ N human|,#occupation|ְλ,military| + V appear|,location=InstitutePlace|,commercial| + V know|֪ + N location|λ,HighRank|ߵ + V start|ʼ + V tell| + ADJ aValue|ֵ,kind|,special| +˰ V pay|,possession=expenditure|,commercial| +˾ N human|,official| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + V worth|ֵ + ADJ aValue|ֵ,age|,aged| + V fix|ס +̨ V appear|,location=facilities|ʩ,entertainment| +̨ V control|,content=power|,politics| +̨ V obtain|õ,possession=power|,politics| + N part|,%AnimalHuman|,mouth| + V undergo|,content=feed|ι,military| + V misunderstand| + N part|,%AnimalHuman|,body|,half|,upper| + N humanized| + V rise|,LocationFin=celestial| +ͷ N community|,official| +ͷ N part|,%entity|ʵ,aspect| + V engage|,content=affairs|,#duty|,#sequence|,night| +ξ N human|,#occupation|ְλ,official|,military| +ֶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(the Upper Volta|ֶ) +ֶ N place|ط,country|,ProperName|ר + N time|ʱ,morning| + N human|,#age|,mass| + N human|,#clan|,mass| + N human|,#rank|ȼ,mass| +´ V look| + V deceive|ƭ + V do|,content=crime|,crime| + N text| + N attribute|,boundary|,&entity|ʵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +У N human|,#occupation|ְλ,official|,military| + N time|ʱ,week|,past| +ڶ N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| +һ N time|ʱ,day|,#week|,past| + V punish|,police| + ADJ aValue|ֵ,direction|,upper| +Ч V imitate|ģ +ѧ V engage|,content=study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + V perform|,entertainment| + V rise| +ҹ V engage|,content=affairs|,#duty|,#sequence|,night| + N clothing|,#body|,generic|ͳ + V MoveItUp| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) +ӳ V perform|,content=shows|,entertainment| + N aValue|ֵ,location|λ + N location|λ,%waters|ˮ + N part|,%waters|ˮ + N time|ʱ,month|,past| + V engage|,content=affairs|,#duty|,#sequence|,morning| + V BecomeMore|,commercial| + V rise| + V engage| + V engage|,content=fight|,military| +֫ N part|,%human|,limb|֫ + N time|ʱ,week|,past| +װ V MakeUp|ױ,entertainment| +װ N clothing|,#body|,generic|ͳ + N location|λ,space|ռ + N part|,%AnimalHuman|,mouth|,upper| + N part|,%AnimalHuman|,mouth|,upper| + N character|,surname|,human|,ProperName|ר + V respect| + ADV {Vcontinue|} +в ADJ aValue|ֵ,ability|,unable|ӹ,kill|ɱ +д V unfixed|δ +з N weapon|,royal|,mark|־ + ADV {emphasis|ǿ} +δ ADV {neg|,past|} + N clothing|,#leg|,female|Ů + N part|,%inanimate|,head|ͷ + N part|,%plant|ֲ,head|ͷ +ҹ N human|,*drive|Ԧ,#ship| + V transport| +Ӵ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +ӻ V disseminate|,content=information|Ϣ +ӽ V transport| +Ŷ V disseminate|,content=information|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +Ϣ V rest|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ѷһ ADJ inferior|,degree=ish| +ݼ ADJ aValue|ֵ,duration|,TimeShort| + V WarmUp| + V burn| + V cook| + V fever| +ձ N tool|þ,cubic|,@put|,*WarmUp| +ձ N food|ʳƷ +ջ V burn| +ջ V burn|,agricultural|ũ +ջ V destroy| +ջ V lighting|ȼ +ռ N food|ʳƷ +ռ N chemical|ѧ +վ N drinks|Ʒ,$addict|Ⱥ + V produce|,literature| + V wounded| + V burn|,patient=tool|þ +ĵ N weapon|,*lighting|ȼ + V burn| + N character|,(China|й) +ҩ N FlowerGrass| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר +ع N time|ʱ,#young| +ع N time|ʱ,beautiful| +ػ N time|ʱ,#young| +ػ N time|ʱ,beautiful| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,age|,young| + V cease|ͣ + V lack|ȱ + V lose|ʧȥ + ADJ qValue|ֵ,amount|,few| +ٰ EXPR expression|,*soothe|ο +ٰͷ N human|,young| +ٲ ADJ aValue|ֵ,importance|,important| +ٲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ٲ ADJ aValue|ֵ,importance|,important| +ٴ V wait|ȴ,duration=TimeShort| +ٵÿ ADJ qValue|ֵ,amount|,few| +ٶ N human|,young| +ٸ N human|,female|Ů,adult|,#GetMarried| +ٺ V wait|ȴ,duration=TimeShort| +ټ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ٽ N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| + N human|,family|,female|Ů,adult| + N human|,female|Ů,adult| + N human|,young|,male| + N human|,young| +ͯ N human|,young| +그 N human|,crime|,young|,undesired|ݬ +깬 N InstitutePlace|,#young|,@recreation| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ů N human|,female|Ů,young| +ʱ ADV aValue|ֵ,duration|,TimeShort| + ADJ qValue|ֵ,amount|,few| + N community| +ξ N human|,#occupation|ְλ,official|,military| +ȶ N community|,#young| +ȶԱ N human|,%community|,#young| +У N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| +ү N human|,family|,male|,young| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +׳ ADJ aValue|ֵ,age|,adult| + V cry|,#bird| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N sound|,#bird| + N tool|þ,*MakeSound| +ڱ N human|,military|,*look|,*defend| +ڿ N part|,%place|ط,mouth| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N tool|þ,*MakeSound| + N character|,surname|,human|,ProperName|ר + V explain|˵ +˾ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳƷ N physical|,extravagant| +ݻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N aspiration|Ը + V expect|,manner=extravagant| + N aspiration|Ը + V OnCredit| +޹ V buy|,manner=OnCredit| +Ƿ V OnCredit| + V sell|,manner=OnCredit| + N beast| + N FlowerGrass|,?medicine|ҩ +Ы N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,form|״,curved|,linear| + V crawl| + N thing|,redundant| + N part|,%AnimalHuman|,mouth| + N shape| +ִ V HungryThirsty| + N sound|,#language| + N sound|,#language| +̦ N physical| +ͷ N human|,military|,#information|Ϣ,$catch|׽ס +ͷ N part|,%AnimalHuman|,mouth| +ս V debate| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + ADJ aValue|ֵ,kind|,firstPerson| + V abandon| + V donate| + N facilities|ʩ,space|ռ,@foster|,#livestock| + N house| +᱾ĩ V WorthNot|ֵ +᲻ V grudge| + V GrudgeNot| +Ἲ V endeavour| + N human|,*supervise|,#reside|ס +Զ V WorthNot|ֵ + N part|,%human|,bone|,religion|ڽ + V abandon| + N human|,family| + V endeavour| + V endeavour| + N human|,friend|,#reside|ס + V remove|,police| + V remove|,police| + V TakePicture| + V consume|ȡ + V handle| +㻤 N part|,%AnimalHuman|,nerve| +㻤ٷʴ N disease| +㻤 N disease| +¼ V TakePicture| + N tool|þ,*measure| +ȡ V TakePicture| +ȡ V consume|ȡ + V maintain|,patient=BeWell|׳ + ADJ aValue|ֵ,standard|׼,#temperature|¶ +϶ ADJ aValue|ֵ,standard|׼,#temperature|¶ + V TakePicture| + N tool|þ,*TakePicture|,#shows| +Ӱ V record|¼,content=image|ͼ,entertainment| +Ӱ N tool|þ,*TakePicture| +Ӱ N human|,#occupation|ְλ,*TakePicture|,#news| +Ӱ N facilities|ʩ,space|ռ,@TakePicture|,#shows| +Ӱʦ N human|,#occupation|ְλ,*TakePicture| +Ӱ N facilities|ʩ,space|ռ,@TakePicture| +Ӱչ N fact|,display|չʾ,#image|ͼ,#TakePicture| + V control|,content=power|,politics| + V produce|,entertainment| + V firing| + V jet| + V shoot| + N attribute|,distance|,firing|,&weapon| + V firing| + N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| +ָ N part|,%army| +ָ N part|,%army| + V firing|,patient=weapon| +侫 V excrete|й + N inanimate|,generic|ͳ,liquid|Һ + V shoot|,sport| + N human|,*shoot|,sport| +Ƶ N attribute|,frequency|Ƶ,&shoot| + N human|,*firing| + N human|,*shoot|,sport| + N lights| + V fear| + V defeat|սʤ + V surrender| + V relate|й + V undergo| + V walk| +漰 V relate|й + V read| + N bird| + V obtain|õ,possession=experience| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V relate|й,partner=affairs|,diplomatic|⽻ + V relate|й,crime| + V engage| + N community|,generic|ͳ + N institution| + N institution|,generic|ͳ + ADJ aValue|ֵ,attachment|,organization|֯ + N organization|֯ +ᱣ N affairs|,#guarantee|֤,commercial| +ᱣϻ N system|ƶ,#guarantee|֤,commercial| +ᱣƶ N system|ƶ,#guarantee|֤,commercial| +Ƹ N wealth|Ǯ +İ N attribute|,circumstances|,peaceful|,&country| +λ N attribute|,status|,&human| + N attribute|,SocialMode|,&organization|֯ +ḣ N fact|,#organization|֯,help| +Ṥ N affairs|,$undertake| +ϵ N attribute|,relatedness|,&human| +ữ V ize|̬ + N affairs|,$undertake| +ᾭ ADJ aValue|ֵ,attachment|,organization|֯,commercial| +ѧ N knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N human|,desired|,able|,glorious| +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ʹ N human|,desired|,glorious| +Ч N attribute|,effect|Ч,&act|ж +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,organization|֯,politics| +ƶ N system|ƶ,politics| +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +м N human|,desired|,important|,able| + N system|ƶ + N human| +罻 V associate| +罻 N human|,*associate|,desired|,able|,glorious| +罻 N attribute|,performance|,associate|,&organization|֯,&human| +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N text|,estimate| + N place|ط,#community| + N community| +ŷ N community| +Ա N human|,#institution| + N place|ط,#human|,country|,politics| + V establish| + V forming|γ + CONJ {condition|} +豸 N machine|,generic|ͳ +豸ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +趨 V establish| +跨 V try| + V defend|,military| + V hide| + CONJ {condition|} + V forming|γ,PatientProduct=plans|滮 + N plans|滮 + V plan|ƻ +ʦ N human|,#occupation|ְλ,*plan|ƻ +ʦ N human|,*plan|ƻ +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ + N human|,#occupation|ְλ,*plan|ƻ +۶ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V establish| + V hide| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + CONJ {condition|} +ɫ V AlterColor|ɫ + V guess|²,content=circumstances| +ʩ N facilities|ʩ,generic|ͳ +ʹ CONJ {condition|} + V guess|² + N thought|ͷ + V entertain|д + V entertain|д,ResultEvent=eat| +Ӫ V reside|ס,military| +Ӫ N place|ط,@reside|ס,military| + V install|װ + V choose|ѡ,content=place|ط,#entertain|д + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V express|ʾ +걨 V tell| +걨 V tell|,commercial| + V debate| + V debate|,police| + V ExpressAgainst|Ǵ + V express|ʾ + V request|Ҫ + N human|,*request|Ҫ + N document|,*request|Ҫ + N shows| +ʱ N time|ʱ,hour|ʱ + V explain|˵ +˵ V explain|˵ + V accuse|ظ,police| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ,politics| + N character|,surname|,human|,ProperName|ר +л V thank|л +ѩ V amend|,content=wrong| +ԩ V amend|,content=wrong| + V ExpressAgainst|Ǵ + V persuade|Ȱ˵ + N character|,(China|й) + V MakeSound| + V CausePartMove| + V enlarge| +Ԯ V help| +Ԯ V rescue| + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V request|Ҫ,ResultEvent=help| + V CausePartMove| + ADJ aValue|ֵ,ability|,able|,CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V CausePartMove|,PatientPartof=leg| +ѩ V amend|,content=wrong| + V CausePartMove|,PatientPartof=body| +ԩ V amend|,content=wrong| +չ V CausePartMove| +չ V enlarge| +չ V unfold|̯ +չ ADJ aValue|ֵ,ability|,unable|ӹ,$enlarge| + V endorse|ӵ + V endorse|ӵ,content=fair| + CLAS NounUnit|,&clothing| + N attribute|,behavior|ֹ,&human| + N part|,%AnimalHuman|,body| + N part|,%physical|,%organization|֯,body| + PRON {self|} + V unfortunate|,scope=disgraced| + N attribute|,physique|,&AnimalHuman| + N part|,%AnimalHuman|,body| +ɼ V depend| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +ֲ ADJ aValue|ֵ,status|,unfixed|δ + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +֤ N document|,*prove|֤,#status| + N attribute|,height|߶,&human| + V die| + V time|ʱ,#die| + V pregnant| + N attribute|,status|,&human| +Ӹλ N human|,HighRank|ߵ +侳 V undergo|,content=circumstances| + N attribute|,height|߶,&human| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,body| + N location|λ,%human|,body| + N experience| + N phenomena| + N attribute|,ability|,&animate| + V undergo| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| +彡׳ N human|,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V endeavour| +ǰҹƵ N human|,*display|չʾ + N attribute|,physique|,&human| + V die| +޷ ADJ aValue|ֵ,richness|ƶ,poor| +ʿ V guide| + V suffer|,content=detain|ס,#police| + N part|,%AnimalHuman|,body|,mental| +Ӱ N trace|,#body| + V pregnant| + V PutOn| + N attribute|,posture|,&AnimalHuman| + N part|,%AnimalHuman|,body| + N pregnant| +ӹǶ N attribute|,physique|,&human| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,earliness|,late| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,content|,profound|,desired| +ͬ V ShowEmotion|ʾ,content=pity| +ɲ ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,steady| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + N emotion|,hate|,undesired|ݬ + N location|λ,internal|,space|ռ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,content|,&information|Ϣ + N attribute|,depth|,&physical|,#cubic| +ʹ V hate| +ҹ N time|ʱ,day|,night| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + ADJ aValue|ֵ,range|,extensive| + N room|,#female|Ů,@reside|ס + N waters|ˮ,surfacial| + N attribute|,color|ɫ,red|,&physical| +ɫ ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,content|,profound|,desired| + V respire| + V MakeBetter|Ż +ĸ V MakeBetter|Ż,patient=improve| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,NotLight|Ũ + N attribute|,relatedness|,&human| + V investigate|,manner=attentive|ϸ + ADJ aValue|ֵ,content|,profound|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ +ɫ N attribute|,color|ɫ,blue|,&physical| +ıԶ V think|˼,manner=profound| +dz N attribute|,depth|,&physical| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + N emotion|,love|,desired| + N emotion|,friend|,desired| + N emotion|,friend|,desired| + N time|ʱ,autumn|,ending|ĩ + V GoInto| + ADJ aValue|ֵ,range|,all|ȫ +dz ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ɽ N land|½ + ADV aValue|ֵ,degree|̶,very| + V undergo|,content=accept| +ܸж V excited| +ˮ N waters|ˮ,deep| +ˮ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ˮը N weapon| +˼ V think|˼ +˼ V think|˼ +˼ N human|,*think|˼ +ͨʵ N human|,ability|,able|,desired| + V believe|,manner=very| +Ų V believe|,manner=very| +ҹ N time|ʱ,night| + N thinking|˼,profound| +Ԩ N waters|ˮ,deep| +Զ ADJ aValue|ֵ,content|,profound|,desired| + V study|ѧ,education| +տ ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,circumstances|,urgent| + V BeAble|ܹ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,depth|,deep| + N human|,HighRank|ߵ + N tool|þ,linear|,*fasten|˩ +ʿ N human|,HighRank|ߵ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,bearing|̬,&AnimalHuman| + N humanized| + N mental| + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ʹ N fact|,*fit|ʺ +û ADJ appear|,manner=secret| + N human|,religion|ڽ + N human|,religion|ڽ +񹤹 ADJ aValue|ֵ,quality|,refined|,desired| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N text|,humanized| +񻰰 ADJ aValue|ֵ,kind|,queer| + N mental| + N part|,%AnimalHuman|,nerve| +񾭲 N disease|,#mad| +񾭲ר N human|,medical|ҽ,*cure|ҽ +񾭴 N disease|,#mad| +񾭹֢ N disease| +ĩ N part|,%AnimalHuman|,nerve| +ʹ N disease| +Ƥ N disease| +ѧ N human|,medical|ҽ,*cure|ҽ + N disease| + N mental|,uneasy| + V uneasy| + N part|,%AnimalHuman|,nerve| + N attribute|,strength|,strong|ǿ,&human| + N humanized| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,content|,profound| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N humanized| +Ů N humanized|,female|Ů + N human|,*firing|,able| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,bearing|̬,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V show|,content=arrogant| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǹ N human|,*firing|,able| + N attribute|,bearing|̬,&AnimalHuman| + N material|,?medicine|ҩ +ɫ N attribute|,bearing|̬,&AnimalHuman| + N facilities|ʩ,space|ռ,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥַ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +˼ N mental| + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,speed|ٶ,fast| +̬ N attribute|,countenance|,&AnimalHuman| +ͨ N attribute|,ability|,&animate| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͯ N human|,young|,wise|,desired| + V expect| + N attribute|,strength|,&human|,&organization|֯ + N humanized| + N image|ͼ,$draw|,#humanized| +ѧ N knowledge|֪ʶ,religion|ڽ +ѧʿ N human|,religion|ڽ +ҽ N human|,*cure|ҽ,medical|ҽ,able| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,demeanor|,beautiful|,desired|,&human| +ְԱ N human|,#occupation|ְλ,religion|ڽ +־ N mental| + N place|ط,country|,ProperName|ר,(China|й) + N facilities|ʩ,religion|ڽ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + V check| + V interrogate|,police| + V know|֪ + V check| +Ա N human|,*investigate| + V check| + V amend| + V estimate| + V check|,content=readings| + V check| + V check|,commercial| +Ƴ N human|,#occupation|ְλ,official|,*check|,commercial| +Ʒ N law|ɷ +ƾ N part|,%institution|,*check|,commercial| + N part|,%institution|,*check|,commercial| +Ա N human|,#occupation|ְλ,*check|,commercial| + V judge|ö,police| + V understand|,content=beautiful| + N thinking|˼,*understand|,#beautiful| + V judge|ö,police| +г N human|,#occupation|ְλ,official|,*judge|ö,#crime|,police| +д N fact|,judge|ö,#crime|,police| +л N institution|,*judge|ö,#crime|,police| +ǰ ADJ aValue|ֵ,time|ʱ,#police| +Ȩ N rights|Ȩ,*judge|ö,#crime|,police| +ͥ N institution|,*judge|ö,#crime|,police| +Ա N human|,#occupation|ְλ,*judge|ö,#crime|,police| + V check| + V estimate| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʱ V estimate|,manner=correct|ȷ + V look|,manner=attentive|ϸ + V interrogate|,police| +У V amend| +Ѷ V interrogate|,police| + V discuss| + V think|˼ + V check| + N human|,family|,female|Ů + N human|,female|Ů,adult| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,kind|,question| + V surpass|ǿ + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} +ô ADJ aValue|ֵ,kind|,question| +Ϊ ADV aValue|ֵ,degree|̶,extreme| + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| +ʯ N disease| +ʯ N disease|,#viscera| + N part|,%AnimalHuman|,nerve| + N medicine|ҩ +´ N disease| + N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V soak| + N part|,%building| +© V leak|© + V GoInto| + V influence|Ӱ +ˮ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +͸ N fact|,soak| +͸ V influence|Ӱ +͸ V leak|© +͸ N army| +͸ N attribute|,ability|,drain|ų,#liquid|Һ +͸ѹ N attribute|,strength|,&entity|ʵ +͸ N human|,*influence|Ӱ + CLAS NounUnit|,&sound| + N attribute|,SoundVolume|,#AnimalHuman| + N attribute|,SoundVolume|,&sound| + N attribute|,reputation|,&human|,&organization|֯ + N sound| + N sound|,#language| + V debate| + N sound| + V announce| + N part|,%AnimalHuman|,#MakeSound| + N part|,%tool|þ,#shows| + N attribute|,SoundVolume|,&sound| + V MakeMisunderstand|ʹ֪ + ADJ aValue|ֵ,performance|,#sound|,$control| + N music| + V weep| + N part|,%AnimalHuman|,#MakeSound| + V announce| + N attribute|,reputation|,&human|,&organization|֯ +Ǽ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + N method|,#sound|,*scout| +ɱ N human|,military|,#sound| + N attribute|,SoundVolume|,#AnimalHuman| + N information|Ϣ +ɫ N attribute|,countenance|,&human| +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,&event|¼ +ƺƴ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + N attribute|,speed|ٶ,&sound| + V ExpressAgainst|Ǵ + N attribute|,reputation|,&human|,&organization|֯ + N attribute|,reputation|,&human|,&organization|֯ +Ϣ N information|Ϣ +Ϣ N sound| + N sound| +ѧ ADJ aValue|ֵ,attachment| +ѧ N knowledge|֪ʶ,#sound| +ѧ N human|,#knowledge|֪ʶ,#sound| + V announce| + N sound| + N sound|,#AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ +Ԯ V help| +ѧ N knowledge|֪ʶ,#language| + V reveal|¶ + V GiveBirth|,medical|ҽ + V SufferFrom| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,^cook| + ADJ aValue|ֵ,physique|,unripe| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + V alive| + N attribute|,circumstances|,&human| + N attribute|,strength|,&animate|,&organization|֯ + V exist| + N fact|,exist| + V grow|ɳ + V happen| + N human|,*study|ѧ,education| + N human|,male|,*perform|,entertainment| + V lighting|ȼ +Ӳ V imitate|ģ +Ӳ V imitate|ģ,manner=stiff| + V ill|̬,medical|ҽ + V earn|׬,possession=wealth|Ǯ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V GiveBirth|,medical|ҽ + V produce| +λ N part|,%organization|֯,*produce|,*build|,industrial| +ʣ N quantity|,amount|,over|,&inanimate| + N attribute|,ability|,&produce| + N attribute|,ability|,&produce| + N quantity|,amount|,&produce|,industrial| + N human|,*produce| + N inanimate|,generic|ͳ + V grow|ɳ + N location|λ,#grow|ɳ + N medicine|ҩ + N time|ʱ,#grow|ɳ + N medicine|ҩ + N time|ʱ,day|,@ComeToWorld| + ADJ aValue|ֵ,ability|,able|,create| + V create| + V eat|,^cook| + N expression| + V alive| + V exist| + N attribute|,ability|,*MakeLiving|ı,&animate|,&organization|֯ +Ȩ N rights|Ȩ,*alive| + N FlowerGrass|,?medicine|ҩ + N land|½,desolate| +ػ N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V grow|ɳ + V grow|ɳ,experiencer=hair|ë + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ +Һ N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + V catch|׽ס + N human|,family|,male| + V exist| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V alive| + N land|½,desolate| + V alive| + N attribute|,circumstances|,&human| +Ʒ N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N expenditure| + N fact|,#alive| +ˮƽ N attribute|,quality|,&CauseToLive|ʹ +ˮƽ N attribute|,quality|,&CauseToLive|ʹ,#wealth|Ǯ + N artifact|˹,generic|ͳ + V lighting|ȼ,patient=fire| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,circumstances|,&human| + N method|,*earn|׬,*alive| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,source|Դ,original|ԭ +Ӳק ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ӳק V pull|,manner=rash|ç + ADJ aValue|ֵ,duration|,TimeLong| +ϲ N time|ʱ,process|,@alive| + ADJ aValue|ֵ,physique|,^cook| + V farewell| + N attribute|,performance|,&human| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ˮ N liquid|Һ,?medicine|ҩ + N army| + N attribute|,strength|,new|,&physical| + N human|,mass| +Ϳ̿ V unfortunate| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +· N method|,*earn|׬,*alive| +췹 V fixed|Ѷ + N attribute|,strength|,&animate|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N part|,%entity|ʵ,heart| +ĸ N human|,family|,female|Ů + V fear| +ơ N drinks|Ʒ,$addict|Ⱥ +Ƨ ADJ aValue|ֵ,kind|,queer| +ƽ N time|ʱ,process|,@alive| + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + V angry| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ǰ ADV aValue|ֵ,time|ʱ,InFront|ǰ,#alive| + V catch|׽ס +Ȥ N emotion|,joyful|ϲ,desired| + N human| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף +ɫ V MakeBetter|Ż +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɱ ADJ aValue|ֵ,power|,strong|ǿ +ĸ N human|,family| +ʯ N stone|ʯ,?material| +ʯ N stone|ʯ,?material| + N human|,unable|ӹ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ˮ N water|ˮ +˿ N material|,?clothing|,?tool|þ + ADJ aValue|ֵ,importance|,important| + N fact|,alive|,die| + N fact|,alive|,die| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,importance|,important| +̬ N attribute|,circumstances|,&animate| +̬ƽ N attribute|,circumstances|,&animate| +̬ѧ N knowledge|֪ʶ +̬ѧ N human|,#knowledge|֪ʶ + N metal|,material| + N stone|ʯ +̻ V study|ѧ,manner=stiff| + ADJ aValue|ֵ,attachment| + N animate|,generic|ͳ + N fact|,*control|,#animate| +ﻯѧ N knowledge|֪ʶ + N chemical|ѧ +Ĥ N material| +Ȧ N animate|,generic|ͳ + N animate|,generic|ͳ +ѧ N knowledge|֪ʶ,#animate| +ѧ N human|,#knowledge|֪ʶ + N attribute|,speed|ٶ,&animate| +Ϣ V alive| +Ϣ V own|,possession=fund|ʽ +Ф N attribute|,kind|,&human| +Ч V function| + N attribute|,behavior|ֹ,&AnimalHuman| + V OutOfOrder| + N attribute|,occupation|ְλ,&human| + N process|,#alive|,#engage| + V GiveBirth|,medical|ҽ + V doubt| + N affairs|,#buy|,#sell|,commercial| +⾭ N method|,#buy|,#sell|,commercial| + N human|,#occupation|ְλ,commercial| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N material|,?food|ʳƷ + V GiveBirth|,medical|ҽ + V forge|α +ֳ V GiveBirth|,medical|ҽ +ֳ ADJ aValue|ֵ,attachment|,#GiveBirth| +ֳ N part|,%AnimalHuman|,viscera|,*mating| +ֳ N part|,%AnimalHuman|,viscera|,*mating| + N livestock| + N part|,%livestock|,body| + N human|,family|,male| +Ů N human|,family|,female|Ů + N livestock| + N tool|þ,#livestock|,*salute|¾ + N livestock| + N livestock| + V BecomeMore| + V appear| + V lift| + V rise| + CLAS unit|λ,&volume|ݻ + V upgrade| + V rise| + V rise| + V upgrade| + V undergo|,content=upgrade| + V StateChange|̬,StateFin=gas|,industrial| + V prosper| + V refine| + V upgrade| + V rise| + N part|,%aircraft|,*lift| + N machine|,*lift| + V rise|,LocationFin=sky| +ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V lift|,patient=tool|þ +ʽ N fact|,lift|,#tool|þ + V appear| +Ǩ V undergo|,content=upgrade| + V rise| +ѧ V upgrade|,#education| +ѹ V BecomeMore|,scope=voltage|ѹ +ֵ V BecomeMore|,scope=value|ֵ,commercial| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N tool|þ,route|· +֮Է V CauseToDo|ʹ,ResultEvent=$punish|,police| + N tool|þ,linear|,*fasten|˩ +ʡ V check| +ʡ V discharge| +ʡ V economize|ʡ +ʡ V know|֪ +ʡ N place|ط,provincial|ʡ +ʡ N human|,official|,#provincial|ʡ +ʡ N place|ط,city|,#provincial|ʡ +ʡԼ V economize|ʡ +ʡ V escape| +ʡ N place|ط +ʡ N place|ط +ʡ N attribute|,rank|ȼ,&entity|ʵ +ʡ N place|ط +ʡ V economize|ʡ,patient=strength| +ʡ V discharge| +ʡ V SayHello|ʺ +ʡȥ V discharge| +ʡȴ V economize|ʡ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʡ V check| +ʡ V investigate| +ʡ V visit| +ʡί N institution|,politics|,(China|й) +ʡ V know|֪ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʢ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢ N character|,surname|,human|,ProperName|ר +ʢ V contain| +ʢ V exist| +ʢ V load|װ +ʢ ADJ qValue|ֵ,amount|,many|,desired| +ʢ V exist|,manner=many| +ʢ V undergo|,$disseminate|,manner=extensive| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢıʽ N fact|,check|,#army|,military| +ʢ N fact|,congratulate|ף,stately|ׯ +ʢ N clothing|,generic|ͳ +ʢ N fact|,stately|ׯ +ʢһʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ V pregnant| +ʢ N phenomena|,stately|ׯ +ʢǰ N phenomena|,stately|ׯ +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ N tool|þ,cubic|,@put|,generic|ͳ +ʢ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʢ N emotion|,generous|,desired| +ʢ N time|ʱ,autumn| +ʢ N time|ʱ,flourishing|,desired| +ʢ N fact|,stately|ׯ +ʢ N time|ʱ,season|,hot| +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ N time|ʱ,summer| +ʢļ N time|ʱ,summer| +ʢʱ N time|ʱ,summer| +ʢ ADJ aValue|ֵ,circumstances|,flourishing| +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ V praise|佱 +ʢװ ADJ aValue|ֵ,attire|װ,stately|ׯ,desired| +ʢװ N clothing| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ N part|,%physical|,*surplus|ʣ +ʣ V surplus|ʣ +ʣ V surplus|ʣ +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ N thing|,*surplus|ʣ +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʤ V succeed|ɹ +ʤ V surpass|ǿ +ʤ V undertake| +ʤ V win|ʤ +ʤ N attribute|,effect|Ч,&event|¼ +ʤ N place|ط,glorious|,@tour| +ʤ N attribute|,effect|Ч,&event|¼ +ʤ V surpass|ǿ +ʤ N place|ط,beautiful|,desired| +ʤ ADJ aValue|ֵ,circumstances|,good|,desired| +ʤ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʤ N result|,win|ʤ +ʤ V win|ʤ +ʤ N human|,*win|ʤ +ʤȯ N attribute|,ability|,#win|ʤ,&event|¼ +ʤ V BeAble|ܹ +ʤ V undertake|,manner=able| +ʤ V surpass|ǿ +ʤ V surpass|ǿ +ʤ V win|ʤ,scope=fact|,#police| +ʤ V surpass|ǿ +ʤ N result|,win|ʤ +ʤ N human|,*win|ʤ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N human|,desired| +ʥ N human|,royal| +ʥ N place|ط,city|,ProperName|ר,(Brazil|) +ʥ N place|ط,city|,ProperName|ר,(US|) +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N humanized|,*congratulate|ף,#festival|,*GiveAsGift| +ʥ N tree|,*congratulate|ף +ʥҹ N time|ʱ,night|,festival|,@congratulate|ף +ʥ N facilities|ʩ,religion|ڽ +ʥ N place|ط,religion|ڽ +ʥǸ N place|ط,capital|,ProperName|ר,(Chile|) +ʥ N place|ط,capital|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ N place|ط,country|,ProperName|ר,(Africa|) +ʥ N place|ط,capital|,ProperName|ר,(Dominica|) +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N readings|,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N humanized|,religion|ڽ +ʥŵ N place|ط,capital|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʥĸ N humanized|,religion|ڽ +ʥ N place|ط,capital|,ProperName|ר,(Grenada|ɴ) +ʥ N human|,desired| +ʥ N human|,desired|,wise| +ʥ߶ N place|ط,capital|,ProperName|ר,(El Salvador|߶) +ʥͽ N attribute|,status|,&human|,religion|ڽ +ʥͽ N attribute|,status|,religion|ڽ,&human| +ʥ N human|,desired|,wise| +ʥӤ N phenomena|,#WeatherChange| +ʥԼɪ N place|ط,capital|,ProperName|ר,(Costa Rica|˹) +ʥս N fact|,fight| +ʦ N army|,generic|ͳ +ʦ N character|,surname|,human|,ProperName|ר +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ N human|,*teach|,education| +ʦ N human|,able|,desired| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,#occupation|ְλ,official|,military| +ʦ N human|,*teach|,education| +ʦ V study|ѧ +ʦ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ V imitate|ģ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ ADJ aValue|ֵ,attachment| +ʦѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ N human|,*teach| +ʦ N human| +ʦ N human|,religion|ڽ +ʦ N human|,female|Ů,#teach| +ʦ N human|,*study|ѧ,*teach|,mass|,education| +ʦͽ N human|,*study|ѧ,*teach|,mass|,education| +ʦ N part|,%army| +ʦү N human|,#occupation|ְλ,official|,past| +ʦү N human|,friend| +ʦ N human|,*teach|,education|,mass| +ʧ N attribute|,effect|Ч,useless|,undesired|ݬ,&event|¼ +ʧ V disobey|Υ +ʧ V fail|ʧ +ʧ V lose|ʧȥ +ʧ N result|,wrong|,undesired|ݬ +ʧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʧ V defeated| +ʧ V defeated|,military| +ʧ V fail|ʧ +ʧ N human|,*defeated| +ʧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧ V fail|ʧ +ʧ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +ʧ V unfortunate| +ʧ V disappear|ʧ +ʧ V disable|м,scope=listen| +ʧ V flurried| +ʧ N bill|Ʊ +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ N place|ط,#country|,$lose|ʧȥ +ʧ V lose|ʧȥ +ʧ V BeBad|˥ +ʧ V obtain|õ +ʧ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʧ V flurried| +ʧ V unfortunate|,cause=fire|,police| +ʧ V fail|ʧ +ʧ V FallDown| +ʧ V disloyal| +ʧ N disease| +ʧ V BeUnable|,content=control| +ʧ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʧ V disobey|Υ,content=regulation| +ʧ V defeated| +ʧ V lose|ʧȥ,possession=love| +ʧ V BeUnable|,content=control| +ʧ V lose|ʧȥ +ʧ V exposure|¶,experiencer=fact| +ʧ V ill|̬,scope=sleep|˯,medical|ҽ +ʧ V disable|м,scope=look| +ʧ V suffer|,content=steal|͵ +ʧȥ V UndergoNot| +ʧȥ V lose|ʧȥ +ʧȥ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧȥ֪ V dizzy| +ʧȴ V lose|ʧȥ +ʧɢ V disappear|ʧ +ʧɫ V uneasy| +ʧɫ V unfortunate| +ʧ N phenomena|,unfortunate|,undesired|ݬ +ʧ V FeelingByBad| +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V BeUnable|,content=MakeSound| +ʧ V MakeSound|,manner=careless| +ʧʹ V weep| +ʧʱ V lose|ʧȥ,possession=time|ʱ +ʧʵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʧ V unfortunate|,police| +ʧ V lose|ʧȥ,possession=power| +ʧ V fall|,manner=careless| +ʧ V defeated|,military| +ʧˮ V remove|,patient=liquid|Һ +ʧ V OutOfOrder| +ʧ V fail|ʧ +ʧ V disappointed|ʧ +ʧ N artifact|˹,generic|ͳ +ʧ N result|,wrong|,undesired|ݬ +ʧ V suffer|,content=occupy|ռ,military| +ʧЦ V laugh|Ц,manner=WithstandNot|ס +ʧЧ V end|ս +ʧ V disobey|Υ,content=MakeAppointment|Լ +ʧ V OutOfOrder| +ʧѧ V lose|ʧȥ,possession=education| +ʧѪ V bleed|Ѫ +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ ADJ lose|ʧȥ,possession=affairs| +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ N quantity|,rate|,#lose|ʧȥ,#affairs|,&human| +ʧҵ N human|,lose|ʧȥ,#affairs| +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ V disappointed|ʧ +ʧ V unfortunate|,scope=aspiration|Ը +ʧ V disable|м,scope=MakeSound| +ʧԼ V disobey|Υ,content=MakeAppointment|Լ +ʧ V BeBad|˥,scope=accurate|׼ +ʧ֮ V lose|ʧȥ +ʧ֮ V lose|ʧȥ,possession=time|ʱ +ʧְ V disobey|Υ,content=system|ƶ +ʧ V lose|ʧȥ,possession=weight| +ʧ N phenomena|,#lose|ʧȥ,#weight| +ʧ N human|,#lose|ʧȥ +ʧ V disappear|ʧ +ʧ V FallDown| +ʧ V err| +ʨ N beast| +ʨ N beast| +ʨӹ N livestock| +ʨͷ N food|ʳƷ +ʩ N character|,surname|,human|,ProperName|ר +ʩ V conduct|ʵʩ +ʩ V grant| +ʩ V use| +ʩ V damage| +ʩ V shoot| +ʩ V feed|ι,patient=material|,agricultural|ũ +ʩ V build|,industrial| +ʩ N facilities|ʩ,space|ռ,@build| +ʩ N human|,*WellTreat|ƴ +ʩ V conduct|ʵʩ +ʩ V teach| +ʩ V rescue| +ʩ V salute|¾ +ʩ V donate| +ʩ N part|,%language| +ʩ V show|,content=fierce| +ʩ V conduct|ʵʩ +ʩҩ V GiveAsGift|,possession=medicine|ҩ +ʩ V use| +ʩ V use| +ʩ V grant| +ʩչ V conduct|ʵʩ +ʩ V conduct|ʵʩ,content=thinking|˼,politics| +ʩ V cure|ҽ +ʩ N human|,*donate|,#religion|ڽ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ V moisten|ʪ +ʪ N attribute|,dampness|ʪ,&physical| +ʪȼ N tool|þ,*measure|,#dampness|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N gas|,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,hardness|Ӳ,soft| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ͸ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N disease| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʫ N text| +ʫ N text| +ʫ N text| +ʫ N readings| +ʫ N readings| +ʫ N expression| +ʫƪ N fact| +ʫƪ N text| +ʫ黭 N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N human|,*compile|༭,literature| +ʫ N human|,literature| +ʫ N readings| +ʫ̳ N community|,literature| +ʫ N text| +ʫ N emotion| +ʫѡ N readings| +ʫ N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N readings| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,bone| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬλ V slack|͵ +ʬλز V slack|͵ +ʭ N InsectWorm|,undesired|ݬ +ʭ N InsectWorm|,undesired|ݬ +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮߵ N land|½ +ʮ N time|ʱ,winter| +ʮ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮָ N part|,%AnimalHuman|,viscera| +ʮָ N disease| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ V satisfied| +ʮ ADJ aValue|ֵ,ability|,nimble|,desired| +ʮҪ ADJ aValue|ֵ,importance|,important| +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,attachment| +ʮ CLAS unit|λ,&length| +ʮþ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʮ N time|ʱ +ʮ궯 N fact|,ProperName|ר,(China|й) +ʮƽ N fact|,ProperName|ר,(China|й) +ʮŲ ADJ qValue|ֵ,frequency|Ƶ,rarely|ż +ʮȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮȫʮ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮ N place|ط,ProperName|ר,(China|й) +ʮ CLAS unit|λ,&volume|ݻ +ʮҾſ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ʮʫ N text| +ʮʫ N human|,literature| +ʮǧ ADJ aValue|ֵ,distance|,far|Զ +ʮ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʮһ N time|ʱ,month| +ʮһ· N time|ʱ,month| +ʮа˾ ADV aValue|ֵ,possibility|,possible| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮ֮˾ ADV aValue|ֵ,possibility|,possible| +ʮּ N tool|þ,religion|ڽ +ʮֽͷ N facilities|ʩ,route|· +ʮ· N facilities|ʩ,route|· +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,content|,pure|,desired| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʯ N character|,surname|,human|,ProperName|ר +ʯ N image|ͼ,#stone|ʯ +ʯ N stone|ʯ,?material| +ʯ N fish| +ʯ N material|,#stone|ʯ,*build| +ʯ N tool|þ,*print|ӡˢ +ʯ N facilities|ʩ,$carve| +ʯ N PenInk|ī,*write|д +ʯ N part|,%land|½ +ʯ V disappear|ʧ +ʯ N SportTool|˶ +ʯ N image|ͼ,$carve| +ʯ N part|,%vegetable|߲,embryo|,$eat| +ʯ N vegetable|߲ +ʯ CLAS NounUnit|,&stone|ʯ +ʯ N chemical|ѧ +ʯ N tool|þ,medical|ҽ +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N material|,*build| +ʯʯ N material|,*build| +ʯ N material|,*build| +ʯׯ N place|ط,city|,ProperName|ר,(China|й) +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N medicine|ҩ,(Chiina|й) +ʯ N image|ͼ,$carve| +ʯ N building| +ʯ N stone|ʯ +ʯ N material| +ʯ N stone|ʯ +ʯ N fruit|ˮ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯ N material| +ʯĥ N tool|þ,*grind|ĥ +ʯī N stone|ʯ +ʯ N chemical|ѧ +ʯ쾪 ADJ aValue|ֵ,impression|ӡ,good|,desired| +ʯ N tool|þ,generic|ͳ +ʯʱ N time|ʱ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯʨ N place|ط,city|,ProperName|ר,(China|й) +ʯ N SportTool|˶ +ʯͷ N stone|ʯ,?material| +ʯͷӶ N stone|ʯ,?material| +ʯ N livestock| +ʯӡ V print|ӡˢ +ʯӢ N material|,?tool|þ,#decorate|װ,precious| +ʯӢ N tool|þ,*tell|,#time|ʱ +ʯ N material|,liquid|Һ,$burn| +ʯ N material|,gas|,$burn| +ʯ N human|,#occupation|ְλ,commercial| +ʯ֯ N community| +ʯ N stone|ʯ,?material| +ʯӶ N stone|ʯ,?material| +ʰ V gather|ɼ +ʰ V pick|ʰ +ʰ NUM qValue|ֵ,amount|,cardinal|,mass| +ʰ V PutInOrder| +ʰ V punish| +ʰ V repair| +ʰ ADJ aValue|ֵ,behavior|ֹ,public| +ʰ V pick|ʰ +ʰȡ V gather|ɼ +ʰȡ V pick|ʰ +ʰ V imitate|ģ +ʰ촦 V InstitutePlace|,@collect|,#lose|ʧȥ +ʰ V gather|ɼ,possession=$lose|ʧȥ +ʰŲ V recompense| +ʰ N tool|þ,*disseminate| +ʱ ADJ aValue|ֵ,time|ʱ,now| +ʱ N attribute|,time|ʱ,&language| +ʱ N character|,surname|,human|,ProperName|ר +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ N time|ʱ,hour|ʱ,special| +ʱ N time|ʱ,important| +ʱ N time|ʱ,season| +ʱ...ʱ CONJ {accompaniment|} +ʱ N publications|鿯,#news| +ʱ N phenomena|,bad| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱҴ ADJ aValue|ֵ,circumstances|,urgent| +ʱ ADJ aValue|ֵ,value|ֵ,precious| +ʱ N attribute|,different|,&time|ʱ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱʱ ADJ aValue|ֵ,behavior|ֹ,^continuous| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ...ʱ CONJ {accompaniment|} +ʱ N time|ʱ +ʱ CONJ {time|ʱ} +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʱ N time|ʱ +ʱǨ V change| +ʱ N time|ʱ +ʱ N time|ʱ,important| +ʱ N attribute|,price|۸,&inanimate| +ʱ N time|ʱ +ʱ N readings|,#plans|滮 +ʱ N aValue|ֵ,property|,#time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ,season| +ʱ N attribute|,circumstances|,&country|,politics| +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ̱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ +ʱ N time|ʱ,season| +ʱ N time|ʱ +ʱ N human|,now| +ʱ N time|ʱ +ʱ N attribute|,SocialMode|,&entity|ʵ +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ̿ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N fact| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N attribute|,speed|ٶ,&AlterLocation|ռλ +ʱ̬ N attribute|,property|,&language| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N fact| +ʱ N time|ʱ,now| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| +ʱ N attribute|,boundary|,#time|ʱ,&event|¼ +ʱЧ N attribute|,boundary|,&time|ʱ +ʱЧ N attribute|,effect|Ч,&entity|ʵ,&act|ж +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʱ N attribute|,sequence|,&event|¼ +ʱ N attribute|,circumstances|,&thing| +ʱ˲ V unfortunate| +ʱ N part|,%tool|þ,#tell|,#time|ʱ +ʱֵ N time|ʱ +ʱ N time|ʱ,near| +ʱ N tool|þ,*tell|,#time|ʱ +ʱװ N clothing|,#body| +ʱװ N fact|,display|չʾ,#clothing| +ʱװģ N human|,*display|չʾ,#clothing| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,new|,desired| +ʱ V prosper| +ʲ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ʲ NUM qValue|ֵ,amount|,cardinal|,mass| +ʲ N tool|þ,*decorate|װ +ʲ ADJ qValue|ֵ,amount|,many| +ʲô ADJ aValue|ֵ,kind|,question| +ʲô N entity|ʵ,question| +ʲ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʲ N tool|þ,generic|ͳ +ʳ V eat| +ʳ N food|ʳƷ,*feed|ι,#animal|,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ +ʳ V HungryThirsty| +ʳ ADJ aValue|ֵ,performance|,*eat|,#FlowerGrass| +ʳݶ N animal|,*eat|,#FlowerGrass| +ʳ N part|,%AnimalHuman|,viscera| +ʳ N disease| +ʳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ֪ζ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N tool|þ,*feed|ι,*catch|׽ס,#fish| +ʳŲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N part|,%AnimalHuman|,viscera| +ʳܰ N disease| +ʳ N bird| +ʳ N human|,*eat| +ʳ N human|,*help| +ʳ N food|ʳƷ,generic|ͳ +ʳ N material|,?food|ʳƷ,#crop|ׯ +ʳ N attribute|,ability|,&eat| +ʳ N method|,*cure|ҽ +ʳƷ N food|ʳƷ,generic|ͳ +ʳƷ N InstitutePlace|,*sell|,@buy|,commercial| +ʳ N account|,*record|¼,#edible|ʳ +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| +ʳ⶯ N animal|,*eat|,#flesh| +ʳ N fact|,#eat|,#reside|ס +ʳ N InstitutePlace|,space|ռ,@eat| +ʳ N material|,?food|ʳƷ +ʳ N edible|ʳ,generic|ͳ +ʳ N fact|,#eat| +ʳж N disease|,#poison| +ʳ N attribute|,habit|ϰ,#consume|ȡ,&AnimalHuman| +ʳ N material|,?food|ʳƷ +ʳ V disobey|Υ,content=MakeAppointment|Լ +ʳ N beast| +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,performance|,$use|,#consume|ȡ +ʳþ N AlgaeFungi|ֲ +ʳ N material|,liquid|Һ,?food|ʳƷ +ʳ N aspiration|Ը,expect|,#consume|ȡ +ʳָ N part|,%AnimalHuman|,hand| +ʴ V InDebt| +ʴ V bite|ҧ,industrial| +ʴ V InDebt|,possession=fund|ʽ,commercial| +ʴ V affairs|,*InDebt|,commercial| +ʴ V carve|,means=bite|ҧ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact| +ʵ N part|,%plant|ֲ,embryo| +ʵʵ V recompense| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ N expression| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʵ ADJ aValue|ֵ,property|,own|,#weapon| +ʵ V load|װ,patient=weapon| +ʵ ADJ aValue|ֵ,location|λ,special| +ʵ V do|,manner=endeavour| +ʵɼ N human|,*endeavour| +ʵ N text|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ N phenomena|,pros| +ʵ N result|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ N attribute|,price|۸,true|,&physical|,commercial| +ʵ V conduct|ʵʩ +ʵ V fulfil|ʵ +ʵ N attribute|,effect|Ч,&thing| +ʵ N information|Ϣ,*prove|֤ +ʵ N example|ʵ +ʵ N attribute|,strength|,&human|,&organization|֯ +ʵλ N attribute|,strength|,&human|,&organization|֯ +ʵ¼ N text| +ʵ N attribute|,circumstances|,&entity|ʵ +ʵȨ N attribute|,power|,&human|,&organization|֯ +ʵʩ V conduct|ʵʩ +ʵʩ ADJ aValue|ֵ,ability|,able|,desired| +ʵʩ N human|,*conduct|ʵʩ +ʵʱ ADJ aValue|ֵ,duration|,TimeShort| +ʵʱ ADV aValue|ֵ,time|ʱ,alike| +ʵʵ ADV aValue|ֵ,degree|̶,very| +ʵ N fact|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ʵ N entity|ʵ +ʵ N physical|,generic|ͳ +ʵ﹤ N payment| +ʵϰ V drill|ϰ +ʵϰ N human|,study|ѧ,education| +ʵϰҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ʵϰҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ʵ V fulfil|ʵ +ʵЧ N attribute|,effect|Ч,&entity|ʵ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ V conduct|ʵʩ +ʵ V experiment|ʵ +ʵ N InstitutePlace|,@research|о,@experiment|ʵ,#knowledge|֪ʶ +ʵ N human|,*experiment|ʵ +ʵҵ N affairs|,industrial|,commercial| +ʵҵ N human|,#occupation|ְλ,industrial|,commercial| +ʵ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʵ N attribute|,effect|Ч,&thing| +ʵ N thinking|˼,#effect|Ч +ʵ N human| +ʵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADV {comment|} +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵս N fact|,fight| +ʵ֤ N information|Ϣ,*explain|˵ +ʵ N entity|ʵ,generic|ͳ +ʵ N part|,%entity|ʵ,heart| +ʵ ADV aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ qValue|ֵ,amount|,sufficient| +ʶ N knowledge|֪ʶ +ʶ V know|֪ +ʶ V distinguish|ֱ +ʶ V distinguish|ֱ +ʶ V attribute|,ability|,#distinguish|ֱ,&human| +ʶ V know|֪,content=artifact|˹ +ʶ V know|֪ +ʶȤ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʶʱΪ V obey|ѭ +ʶ; N human|,wise|,desired| +ʶ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ʶ V study|ѧ,content=character| +ʷ N character|,surname|,human|,ProperName|ר +ʷ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷ N fact| +ʷ N place|ط,#fact|,#time|ʱ +ʷ N readings| +ʷ N information|Ϣ +ʷǰ ADJ aValue|ֵ,time|ʱ,past| +ʷʫ N text| +ʷʫ ADJ aValue|ֵ,content|,great|ΰ,desired| +ʷʫ N human|,literature| +ʷʵ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷǰ ADJ aValue|ֵ,kind|,special| +ʷѧ N knowledge|֪ʶ +ʸ V swear| +ʸ N text|,$swear| +ʸ N weapon|,$firing| +ʸڷ V deny| +ʸ N symbol|,#quantity| +ʸͼ N image|ͼ +ʸ־ V endeavour| +ʸ־ V endeavour| +ʸ־ V endeavour| +ʹ V CauseToDo|ʹ +ʹ N human|,*transmit|,#letter|ż +ʹ V use| +ʹ... V CauseToDo|ʹ,ResultEvent=^PayAttention|ע +ʹ...ķ V MakeWorried| +ʹ V stabilize|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʹɳ V CauseToGrow|ʹɳ +ʹ V CauseToExist|ʹ +ʹ V CauseToDo|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʹ V CauseToDo|ʹ +ʹ V sharpen|ʹ +ʹ N institution|,diplomatic|⽻ +ʹ V MakeTrouble| +ʹ V dispatch|Dz +ʹ V use| +ʹ V CauseToLive|ʹ +ʹ V KeepOn|ʹ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʹ N attribute|,status|,diplomatic|⽻ +ʹ V endeavour| +ʹ V clean|ʹ +ʹ V brighten|ʹ +ʹ N affairs|,#dispatch|Dz +ʹŮ N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů +ʹȻ V ResultIn| +ʹ˲ ADJ aValue|ֵ,ability|,able|,upset| +ʹ˷ŭ ADJ aValue|ֵ,ability|,able|,angry| +ʹ˷ ADJ aValue|ֵ,ability|,able|,itch| +ʹƣ ADJ aValue|ֵ,ability|,able|,tired|ƣ +ʹŷ ADJ aValue|ֵ,ability|,able|,believe| +ʹ ADJ aValue|ֵ,ability|,able|,joyful|ϲ +ʹܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ʹ˸֪ V MakeOthersKnowledge|ʹ˸֪ +ʹ N community|,diplomatic|⽻ +ʹ֪ V MakeMisunderstand|ʹ֪ +ʹϲ V MakeHappy|ʹϲ +ʹ V MakeEqual|ʹ +ʹʧ V CauseToBeHidden|ʹʧ +ʹ V angry| +ʹɫ V tell|,manner=secret| +ʹ V use| +ʹ÷ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʹüֵ V attribute|,value|ֵ,&thing| +ʹ V attribute|,age|,&artifact|˹ +ʹ V pollute|ʹ +ʹթ V deceive|ƭ +ʹ N human|,$dispatch|Dz,official| +ʹ N human|,*transmit|,#letter|ż +ʹ֮ V CauseNotToBe|ʹ֮ +ʹ֮ V CauseToBe|ʹ֮ +ʺ N stone|ʯ,#AnimalHuman|,waste| +ʺ N InsectWorm| +ʻ V VehicleGo|ʻ +ʼ ADV aValue|ֵ,duration|,TimeShort| +ʼ V begin|ʼ +ʼ V start|ʼ +ʼĩ N process| +ʼҵ V start|ʼ,content=study|ѧ,education| +ʼ ADV aValue|ֵ,duration|,TimeLong| +ʼղи ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼղ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼ N human|,past| +ʼ N bird|,past| +ʼٸ N human|,*start|ʼ +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,kind|,&language| +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N fact| +ʽ N symbol| +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N symbol| +ʾ V express|ʾ +ʾ V order| +ʾ V tell| +ʾ V ShowLove|ʾ +ʾ N tool|þ,*measure| +ʾ N tool|þ,*measure|,#electricity| +ʾ V ExpressDissatisfaction|ʾ +ʾͬ V ExpressDisagreement|ʾͬ +ʾ V show|,content=example|ʵ +ʾ V show|,content=example|ʵ +ʾŭ V ExpressAnger|ʾŭ +ʾ V surrender| +ʾ˼ V commemorate|ʾ˼ +ʾͬ V ExpressAgreement|ʾͬ +ʾ V uprise| +ʾϲ V ShowJoy|ʾϲ +ʾ V express|ʾ +ʾͼ N readings|,express|ʾ +ʿ N human| +ʿ N human|,able| +ʿ N human|,literature| +ʿ N human|,male| +ʿ N human|,military| +ʿ N tool|þ,#recreation| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,literature| +ʿŮ N human|,mass|,young| +ʿ N attribute|,will|־,&human|,&army| +ʿ N human|,HighRank|ߵ +ʿ N human|,#occupation|ְλ,military| + N attribute|,clan|,&physical| + N place|ط + N time|ʱ + N time|ʱ,#alive| + N emotion|,hate|,undesired|ݬ + N human|,undesired|ݬ,enemy| + V PassOn| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ +ഫ V PassOn| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N time|ʱ +ĩ N time|ʱ,ending|ĩ + N community|,family| + N location|λ,%earth| + N attribute|,relatedness|,&human| + N human|,friend| + N place|ط +籭 N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| +ս N fact|,fight|,military| +緶Χ ADJ aValue|ֵ,range|,extensive| + N standpoint| +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ó֯ N InstitutePlace|,ProperName|ר,commercial| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +֯ N part|,%institution|,#medical|ҽ,(institution|=UN|Ϲ) +ݼ N land|½,tall| + N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ѧ N human|,#language| +֪ʶȨ֯ N part|,%institution|,#politics|,(institution|=UN|Ϲ) + N human| +ó N InstitutePlace|,ProperName|ר,commercial| + N attribute|,environment|,earth| + N human|,ordinary| + N location|λ,%earth| + ADJ aValue|ֵ,duration|,TimeLong| + N fact| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Դ N celestial|,#humanized| +Ϯ V PassOn| +Ϯ ADJ aValue|ֵ,source|Դ + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ +ӽ N part|,%vegetable|߲,embryo|,$eat| +ӽ N vegetable|߲ + V TakeCare| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N duty| + V engage| + N fact| + N phenomena|,unfortunate|,undesired|ݬ +°빦 V succeed|ɹ +± V fail|ʧ +±ع ADJ do|,manner=self| +± N fact| +± N phenomena|,sudden|,#unfortunate|,undesired|ݬ +²˳ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +³ ADV {comment|} +¶ N fact|,undesired|ݬ +¹ N phenomena|,unfortunate|,undesired|ݬ +¹ش ADJ aValue|ֵ,importance|,important| +¹Ǩ V change| +º N time|ʱ,future| +¼ N result|,desired| +¼ N time|ʱ,@rest|Ϣ +¼ N fact| +¼ N {EventResult|¼} + N reason| + N example|ʵ +ǰ N time|ʱ,past| + N fact| +Ȩ N duty| +ʵ N fact| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵʤ۱ EXPR aValue|ֵ,trueness|α,true| + N fact| + N attribute|,circumstances|,&entity|ʵ +̬ N attribute|,circumstances|,&entity|ʵ + N entity|ʵ + N affairs| + N institution| + N time|ʱ,past| + N fact| +ҵ N affairs| +ҵ N institution| +ҵλ N institution| +ҵ N expenditure|,*CauseToLive|ʹ,#institution| +ҵ N emotion|,endeavour|,desired| + N affairs| + N cause|ԭ + N part|,%fact| +ԸΥ V FitNot|,contrast=aspiration|Ը + N human|,undesired|ݬ,#crime|,$MakeBad|Ӻ + V remove| + V wipe| +ĿԴ V wait|ȴ + V swear| + N text|,$swear| +IJ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ĵ N text|,$swear| +ʦ V swear| +ʦ V swear|,military| + V swear| + N text|,$swear| +Ը N text|,$swear| +Լ N text|,$swear| + V die| + V disappear|ʧ + V die| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&physical| + N attribute|,outlook|ǰ,&physical| + N attribute|,power|,&AnimalHuman|,&organization|֯ + N attribute|,strength|,&physical| + N mark|־ + N part|,%AnimalHuman|,viscera| +Ʊ ADV aValue|ֵ,possibility|,possible| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ƴﻢ V embarrassed|Ϊ +ƽ ADV aValue|ֵ,possibility|,possible| +ƾ V equal|,scope=strength| + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N attribute|,behavior|ֹ,sly|,undesired|ݬ,&human| + N human|,sly|,undesired|ݬ + N attribute|,power|,&AnimalHuman|,&organization|֯ +Χ N attribute|,range|,#power|,&organization|֯ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +̬ N attribute|,circumstances|,&entity|ʵ +ͷ N attribute|,outlook|ǰ,&physical| +ͷ N attribute|,strength|,&physical| +ڱ V fixed|Ѷ + ADV aValue|ֵ,correctness|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,kind|,special| + V be| +ǵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ƿ N attribute|,correctness|,&event|¼ +Ƿ N fact|,quarrel| +Ƿ CONJ {question|} + V addict|Ⱥ +Ⱥ N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| +Ⱥ N fact|,$FondOf|ϲ,#WhileAway| +Ⱥ N addictive|Ⱥ +ɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ѫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V bite|ҧ +ɾ N part|,%AnimalHuman| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V fit|ʺ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʵ䷴ V fail|ʧ +ʶ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʷ CONJ {time|ʱ} +ʷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ V fit|ʺ +ʿɶֹ V cease|ͣ +ʿ ADJ aValue|ֵ,taste|ζ,good|,desired| + N quantity|,amount|,some|Щ + ADJ aValue|ֵ,age|,proper| +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ V fit|ʺ +Ӧ N attribute|,ability|,#fit|ʺ,&thing| +Ӧ֢ N disease| + ADJ aValue|ֵ,behavior|ֹ,proper| + N attribute|,effect|Ч,&artifact|˹ +ں ADJ aValue|ֵ,ability|,able|,VehicleGo|ʻ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V alive|,condition=fit|ʺ + ADJ aValue|ֵ,standard|׼,average|,desired| + V engage|,politics| +Ů N image|ͼ,#beautiful|,#female|Ů +; N process|,#official|,#engage| + V TakeCare| +̴ N human|,#occupation|ְλ,*TakeCare|,employee|Ա +̷ V TakeCare| +̺ V TakeCare| +Ů N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V explain|˵ + V release|ͷ + V remove| +ͷ V release|ͷ +ͷ N human|,*release|ͷ,police| +Ȼ V AtEase| + V explain|˵ + N information|Ϣ +IJ N human|,ProperName|ר,religion|ڽ + V MakeBetter|Ż + V MakeUp|ױ + V RegardAs| + V RegardAs|,entertainment| + V cover|ڸ + V decorate|װ + N tool|þ,*decorate|װ,generic|ͳ +δ N reason|,fake|α,undesired|ݬ +Ʒ N tool|þ,*decorate|װ,generic|ͳ + N tool|þ,*decorate|װ,generic|ͳ + V RegardAs|,entertainment| + N attribute|,name|,&human| + N human|,family| + N community| + N InstitutePlace|,commercial| + N place|ط,city| +г N InstitutePlace|,*sell|,@buy|,commercial| +г N attribute|,price|۸,&artifact|˹,commercial| +г N human|,#occupation|ְλ,official|,#city| +гְλ N occupation|ְλ,official|,#city| +и N institution|,*manage|,#city| +л N FlowerGrass|,#mark|־,#city| +м N InstitutePlace|,*sell|,@buy|,commercial| +м ADJ aValue|ֵ,attachment|,#city| +м N attribute|,price|۸,&artifact|˹,commercial| +н N part|,%place|ط,surrounding|Χ,#city| +н CLAS unit|λ,&weight| +о N place|ط,commercial| +оС N human|,vulgar|,undesired|ݬ +о֮ͽ N human|,vulgar|,undesired|ݬ +п N human|,commercial| +пϰ N attribute|,behavior|ֹ,vulgar|,undesired|ݬ,&human| + ADJ aValue|ֵ,attachment|,#city| + N attribute|,environment|,&event|¼,commercial| + N human|,#city| + N part|,%place|ط,city|,body| + N attribute|,appearance|,&city| +ί N institution|,politics|,(China|й) + N place|ط,city| + ADJ aValue|ֵ,attachment|,#affairs|,#city| + N affairs|,#city| + N institution|,*manage|,#city| + N part|,%place|ط,city|,heart| + V depend| +ѲŰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǿ V damage|,means=use|,#power| + V damage|,means=use|,#power| + N part|,%organization|֯ + N room| + N location|λ,%room|,internal| + N music| +ֶ N community|,*perform|,#music| +װʦ N human|,#occupation|ְλ,*decorate|װ + N location|λ,%room|,external| + N attribute|,temperature|¶,&room| + V investigate| + V look| + V treat|Դ +Ӳ V investigate| +Ӳ N result|,wrong|,#calculate|,#measure| +Ӵ N software|,#(Microsoft|΢) +Ӷ V ignorant|֪,#look| +ӽ N standpoint| +Ӿ N experience|,#look| + N attribute|,ability|,#look|,&AnimalHuman| +Ƶ N attribute|,frequency|Ƶ,&image|ͼ + V RegardAs| + N part|,%AnimalHuman|,nerve|,#look| + V undertake|,content=official| + ADJ aValue|ֵ,attachment|,#experience| + N experience| +ͬ V RegardAs| +ͬϷ V despise| +ͬ· ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ͼ N image|ͼ +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease| +Ϊ V RegardAs| + N attribute|,scene|,&inanimate| +Ұ N attribute|,range|,*look|,&entity|ʵ + V RegardAs| + N fact|,exam| + V try| +԰ V handle|,manner=try| +Բ V disseminate| +Գ N facilities|ʩ,space|ռ,@exam| +Գ V experiment|ʵ,content=CauseToLive|ʹ +Դ V PutOn|,manner=try| +Ե V experiment|ʵ +Ե N organization|֯,@experiment|ʵ +Ե N tool|þ,*check|,#electricity| +Թ N tool|þ,cubic|,*experiment|ʵ +Ժ V experiment|ʵ +Ի V experiment|ʵ,content=GetMarried| +Լ N chemical|ѧ,*experiment|ʵ +Խʯ N stone|ʯ +Ծ N paper|ֽ,*exam| + N {Vtry|} +Կ V try| +̽ V investigate|,manner=try| + N problem| + N measure|,content=temperature|¶ +ͼ V try| + V ask| + V sell|,manner=try| + V try| + V perform|,manner=try|,entertainment| + V experiment|ʵ,manner=try| +鳡 N facilities|ʩ,@experiment|ʵ + N land|½,@planting|ֲ,agricultural|ũ + V try| +ת V experiment|ʵ,content=CauseToLive|ʹ +ֽ N paper|ֽ,*experiment|ʵ + V produce|,manner=try|,industrial| + V planting|ֲ,agricultural|ũ + V cease|ͣ + V detain|ס + V finish| + V gather|ɼ + V gather|ɼ,agricultural|ũ + V include| + V receive| + V restrain|ֹ +ձ V include|,ResultWhole=army|,military| +ձ V cease|ͣ,content=fight|,military| +ղ V store| +ղ V store|,literature| +ղؼ N human|,*store|,literature| +ճ V finish| +ճ N result|,$obtain|õ,#crop|ׯ,agricultural|ũ +յ V fulfil|ʵ +յ V receive| +շ V transmit| +շ N part|,%account|,commercial|,#human| +շ V levy| +շѵ绰 N facilities|ʩ,*communicate| +ո V TakeBack|ȡ +ո V collect|,agricultural|ũ +ո N LandVehicle|,*collect|,agricultural|ũ +չ V cease|ͣ,content=affairs| +չ V buy|,commercial| +չ N attribute|,price|۸,#buy|,&artifact|˹ +չ۸ N attribute|,price|۸,#buy|,&artifact|˹ +չվ N InstitutePlace|,*buy|,commercial| +չ V TakeBack|ȡ +չ V ize|̬,PatientAttribute=public|,#country| +ջ V TakeBack|ȡ +ջ V remove| +ջ V collect|,agricultural|ũ +ջ N result|,$obtain|õ,desired| +ռ V gather|ɼ +ռ N human|,gather|ɼ +ռ V detain|ס,police| +ռ V suffer|,content=detain|ס,crime|,police| +ս V levy| +ս V tighten|ս +վ N bill|Ʊ,#wealth|Ǯ +տ V look| +տ V BeRecovered|ԭ,medical|ҽ +տ V weave| +տ N tool|þ,*count|,#money| +տ N human|,*collect|,#wealth|Ǯ +տ N human|,*receive|,#money| + V receive|,possession=physical| + N symbol|,#quantity|,#DoSum| + V detain|ס,purpose=TakeCare| +£ V CausePartMove| +¼ V employ| +¼ V include| +¼ V record|¼ +¼ N tool|þ,*record|¼,#sound| + V gather|ɼ + V include| + V buy|,commercial| + V entice|,means=GiveAsGift|,crime| + V finish|,commercial| + V cease|ͣ +ȡ V collect| + V detain|ס,crime|,police| + N InstitutePlace|,@escape|,#unfortunate| + V include| + V take|ȡ + N wealth|Ǯ,$earn|׬ + N wealth|Ǯ,$earn|׬,commercial| +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V detain|ס,purpose=interrogate| +ʰ V PutInOrder| +ʰ V load|װ +ʰ V punish| +ʰ V remove| +ʰ V repair| + V pause|ͣ,commercial| + V look| + V receive| + N human|,*receive| + V control| + V load|װ + V restrain|ֹ +˰ V collect|,possession=expenditure|,commercial| +˰ V collect|,possession=expenditure|,politics| +˰ N human|,#occupation|ְλ,*receive|,#expenditure|,official| + V CausePartMove| + V assemble|ۼ,military| + V shrink|С + V shrink|С,medical|ҽ + V assemble|ۼ,patient=army|,military| +̯ V cease|ͣ,content=affairs| +̯ V cease|ͣ,content=affairs|,commercial| +̯ V finish|,commercial| + N bill|Ʊ,#wealth|Ǯ + V listen| +β V cease|ͣ +Ч V succeed|ɹ + N human|,*receive|,#letter|ż +Ѷ̨ N InstitutePlace|,@receive|,information|Ϣ +Ѻ V detain|ס,crime|,police| + V CauseToLive|ʹ + N wealth|Ǯ,$earn|׬,commercial| + ADJ aValue|ֵ,attachment| + N fact|,gather|ɼ,#sound| + N machine|,*disseminate| + V gather|ɼ,possession=fund|ʽ +֧ N wealth|Ǯ,commercial| +ִ N bill|Ʊ,#wealth|Ǯ + V put| + N human|,employee|Ա + N part|,%human|,hand| +ְ N part|,%human|,hand| +ֱ N part|,%human|,hand| +ֱ N information|Ϣ,#image|ͼ +ֱ N information|Ϣ,#readings| +ֱ N method|,*compile|༭,*draw| +ֱ N part|,%AnimalHuman|,arm| +ֱ N location|λ,surrounding|Χ +ֱ N tool|þ,*tell|,#time|ʱ +ֱ N part|,%implement|,hand| +ֲ; ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ֲ N publications|鿯 +ֳ N publications|鿯,$copy|д +ֳ N LandVehicle| +ֳ V hold| +ִ N stationery|ľ +ֵ N tool|þ,*illuminate|,#electricity| +ֵͲ N tool|þ,*illuminate| +ֶ N method| +ֶ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N method| +ַ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N MusicTool| +ַ N human|,*perform|,entertainment| +ַ N machine|,#crop|ׯ,*transport| +ָ N experience|,#feel| +ָ N readings| +ֹ ADJ aValue|ֵ,source|Դ +ֹ N fact| +ֹҵ N affairs| +ֹ N affairs| +ֹƷ N tool|þ,*decorate|װ +ֹ N MusicTool| +ֻ N tool|þ,*communicate| +ּ N information|Ϣ,#image|ͼ +ּ N information|Ϣ,#readings| +ּۿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| +ּ V record|¼ +ֽ N fact|,#act|ж +ֽ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ֽŲɾ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֽ N tool|þ,*wipe| +ֽ V OwnNot|,possession=money| +ֽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +־ N tool|þ,*break|۶ +־ N tool|þ,*wipe| +ֿ ADJ aValue|ֵ,ability|,able|,desired| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N weapon| + N information|Ϣ + N weapon| +¯ N tool|þ,*WarmUp| +æ V flurried| +ģ N trace| + N tool|þ,*wipe| + N attribute|,circumstances|,&human|,&organization|֯ +ǹ N weapon|,*firing| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +ɲ N part|,%vehicle|ͨ,*fix|ס + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N mark|־ + V write|д + N fact|,cure|ҽ,#split|ƿ,#part|,medical|ҽ + N tool|þ,*cure|ҽ,medical|ҽ + N room|,*cure|ҽ,medical|ҽ +̨ N tool|þ,@cure|ҽ,medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N SportTool|˶,#clothing|,#hand| + N clothing|,#hand| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ʽ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ͷ N attribute|,environment|,#wealth|Ǯ +ͷ N location|λ,surrounding|Χ,space|ռ +Ƴ N LandVehicle| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N part|,%AnimalHuman|,arm| +޴ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +޸֮ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +㵸 V joyful|ϲ + ADJ aValue|ֵ,attachment| + N attribute|,environment|,#wealth|Ǯ,&human| + V forgive|ԭ + N human|,*guess|² +д V write|д + N fact|,control| + N part|,%human|,hand| + N method| + N payment| + N attribute|,ability|,&human| + N fact|,#mating| +ӡ N trace|,#hand| + N readings|,past| + N part|,%human|,hand| + N tool|þ,#disable|м,*walk| +ָ N part|,%AnimalHuman|,hand| +ָͷ N part|,%AnimalHuman|,hand| +ֽ N paper|ֽ,*wipe| + N human|,family|,mass|,male| +޴ V flurried| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,official| + N part|,%AnimalHuman|,head|ͷ + NUM qValue|ֵ,sequence|,ordinal| +׳ N fact|,perform| +׳ NUM qValue|ֵ,sequence|,ordinal| +׳ N human|,#occupation|ְλ,official| +׳ V start|ʼ +״ V start|ʼ +׵ V suffer|,content=attack| +׶ N place|ط,capital|,#country| +׶ N human|,crime|,undesired|ݬ +׸ N place|ط +׺ V VehicleGo|ʻ +׺ V fly| +׼ N part|,%AnimalHuman|,*die|,head|ͷ +׿ V agree|ͬ + N human|,official| + N human|,#occupation|ְλ,official| +һָ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +շ N coupon|Ʊ֤,*post|ʼ,#letter|ż + N tool|þ,*decorate|װ,$PutOn| + V hesitate|ԥ +; V start|ʼ,content=leave|뿪 +β ADV frequency|Ƶ +β N process| +λ N attribute|,rank|ȼ,HighRank|ߵ +ϯ ADJ aValue|ֵ,importance|,important| +ϯ N location|λ,glorious| +ϯ N human|,official| +ϯִй N human|,#occupation|ְλ,official| + ADV aValue|ֵ,sequence|,ordinal| + N human|,#occupation|ְλ,official| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + V uprise| +ӳʽ N fact| +ս V win|ʤ +ս V win|ʤ,sport| + N human|,religion|ڽ + V aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near| + V check| + V defend| + V defend|,military| + V obey|ѭ +ر V defend|,military| +ر N army|,*defend|,military| +زū N human|,greedy|̰,miser|,undesired|ݬ +زū N human|,greedy|̰,undesired|ݬ +س N LandVehicle| +صס ADJ aValue|ֵ,ability|,withstand|ס,desired| +ص N army|,*defend|,military| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ط V obey|ѭ,content=law|ɷ +ط V InstitutePlace|,*obey|ѭ,#law|ɷ +ع V unfortunate|,scope=lose|ʧȥ,family| +غ V keep|,patient=lasting| +غ V check| +غ V expect| +غ V wait|ȴ +ػ V defend| +ػ N humanized|,*defend| +ؽ V obey|ѭ,content=loyal|Т +ؾ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ؾ N human|,stiff|,undesired|ݬ +ؾ N army|,*defend|,military| +ؿƿ V KeepSilence|˵ + V condole|° +Ա N human|,*exercise|,(football|) + V congratulate|ף + V check| + V defend| + V defend|,military| + V obey|ѭ,content=MakeAppointment|Լ +ҵ V maintain|,patient=artifact|˹ +ҹ V check|,time=night| + N regulation| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר +ٲ N tool|þ,cubic|,@store|,#die| +ٳ N time|ʱ,day|,@ComeToWorld| +ٵ N time|ʱ,day|,@ComeToWorld| + N tool|þ,#ComeToWorld|,$GiveAsGift| + N food|ʳƷ,*congratulate|ף,#ComeToWorld| + N attribute|,age|,&animate| + V guarantee|֤,scope=die|,commercial| + N human|,aged| + N human|,aged|,$congratulate|ף + N clothing|,#die| + V die| + V grant| + V teach| +ڷ V disseminate|,purpose=GiveBirth|,agricultural|ũ +ڼ V teach|,content=plans|滮 +ڽ V reward|,possession=tool|þ +ھ V disseminate|,purpose=GiveBirth| +ڿ V teach|,knowledge|֪ʶ,education| + V order| +Ȩ V order| +Ȩ N document|,*order| + V grant| + V reward|,possession=rank|ȼ,military| +ѫ V reward|,possession=tool|þ +ҵ V teach|,knowledge|֪ʶ,education| + V teach|,knowledge|֪ʶ + V incite|ָʹ + V teach| + V grant| + V sell| +ۺ N affairs|,*TakeCare|,commercial| +ۻ V sell|,possession=artifact|˹ +ۻԱ N human|,#occupation|ְλ,employee|Ա,*sell|,commercial| +ۼ N attribute|,price|۸,&artifact|˹,commercial| + V sell| +Ʊ V sell|,possession=coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +ƱԱ N human|,#occupation|ְλ,employee|Ա,*sell|,#coupon|Ʊ֤,#vehicle|ͨ + V disappear|ʧ,#sell|,commercial| + V endure| + V receive| + V suffer| + V undergo| +ܱ N human|,$guarantee|֤ +ܲ V ill|̬,agricultural|ũ +ܲ V ill|̬,medical|ҽ +ܳ V suffer|,content=moisten|ʪ +ܳ V undergo|,content=like|ϧ +ܴ V fail|ʧ +ܵ V suffer| +ܵ V undergo| +ܵ V withstand|ס +ܷ V suffer|,content=punish| +ܷ V pregnant|,agricultural|ũ +ܹ V suffer|,content=punish| +ܺ V suffer|,content=damage| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$damage| +ܺ V fever| +ܻ N tool|þ,*listen| +ܻ V receive|,possession=pros| +ܻݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ܻ V receive|,possession=artifact|˹,crime| +ܼ̤ V suffer|,content=damage| +ܽ V receive|,possession=reward| +ܽ V win|ʤ +ܾ V suffer| +ܾ V suffer|,content=frighten|Ż +ܾ V suffer|,content=frighten|Ż +ܾ V pregnant|,#medical|ҽ +ܾ N part|,%AnimalHuman|,embryo| +ܾ V shy| +ܿ V suffer|,content=unfortunate| + V relate|й + V unfortunate| + V handle|,police| + N receive|,possession=physical| + V fever| + V receive| + V receive|,possession=order| + V suffer|,content=unfortunate| + N human|,$MakeBad|Ӻ,#crime| +ƭ V misunderstand| +ƭ V human|,*misunderstand| +Ƹ V accept|,content=employ| +Ƹ V accept|,content=tool|þ,#GetMarried| + V suffer|,content=damage| + V suffer|,content=poor| +Ȩ V receive|,possession=power| + V undergo|,content=WarmUp| +˰ ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + V wounded| + V suffer|,content=interrogate|,police| + N part|,%language| + V suffer|,content=lose|ʧȥ +̥ V pregnant|,#medical|ҽ + V undergo|,content=entrust|ί + N human|,$entrust|ί +ϴ V undergo|,religion|ڽ + V undergo|,content=delimit| +ѵ V undergo|,content=teach| + V obtain|õ,possession=pros| + N human|,obtain|õ,#pros| + V enjoy| + V obtain|õ,possession=pros| +Ԯ V obtain|õ,possession=help| +Ԯ N place|ط,country|,$help|,#commercial| +Լ N human|,*MakeAppointment|Լ + V pregnant|,#medical|ҽ + V suffer|,content=unfortunate| + V suffer|,content=control| + V suffer|,content=control| + V suffer|,content=obstruct|ֹ + V suffer|,content=unfortunate| + ADJ aValue|ֵ,fatness|,bony| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ +ݳ ADJ aValue|ֵ,height|߶,tall| +ݹ N part|,%plant|ֲ,embryo| +ú N material|,*lighting|ȼ,$burn| + N human|,bony| + N part|,%animate|,flesh|,bony| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony| +С ADJ aValue|ֵ,fatness|,bony| + N human|,bony| + N beast| +޻ N part|,%building|,#mouth| + N LandVehicle| + N beast| +ҽ N human|,#occupation|ְλ,*cure|ҽ,#animal|,medical|ҽ + N vegetable|߲ +߲ N vegetable|߲ +߹ N vegetable|߲ + N part|,%thing|,heart| +Ŧ N part|,%thing|,heart| + V MakeUp|ױ + V PutInOrder| + N tool|þ,*MakeUp|ױ + V MakeUp|ױ + V PutInOrder|,industrial| +ͷ V MakeUp|ױ,patient=hair|ë +ϴ V MakeUp|ױ +ױ V MakeUp|ױ + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ⲻ֪ V ignorant|֪ + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +;ͬ V BeSame|ͬ +ѫ N result|,#succeed|ɹ,superior|,desired| + V express|ʾ +㷢 V express|ʾ + V express|ʾ,content=emotion| +д V describe|д + V defeated| + V donate| + V transport| + V transport|,commercial| + N place|ط,country|,*transport| + V transmit|,patient=electricity|,industrial| + N tool|þ,linear|,@transmit| + V defeated| +侫 N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ѹ N part|,%AnimalHuman|,viscera| +ѹ N disease| + N part|,%AnimalHuman|,viscera| + V GoInto|,commercial| + V transport|,commercial| + V transport| +ʹ N part|,%implement|,*transmit| +Ѫ V give|,possession=liquid|Һ,medical|ҽ +Ѫ V help| +Һ V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ +Ӯ N attribute|,effect|Ч,&event|¼ +͹ N facilities|ʩ,linear|,cubic|,@transmit| +͹ܵ N facilities|ʩ,*transmit| + N human|,*defeated| + N human|,family|,male| + N human|,male| +岮 ADJ aValue|ֵ,clan| +常 N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,male| + N human|,family|,male| +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V unfold|̯ +泩 ADJ aValue|ֵ,circumstances|,happy|,desired| +泩 V joyful|ϲ + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V satisfied| +滺 ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +滺 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +滺 ADJ aValue|ֵ,circumstances|,relax|,desired| + V CausePartMove| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,tranquil|,desired| + V satisfied| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V AtEase| +̹ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V satisfied| + ADJ aValue|ֵ,circumstances|,happy|,desired| +չ V CausePartMove| +չ V unfold|̯ + V CausePartMove|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,female|Ů,kindhearted|,desired| + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V despise| + V dredge|ͨ,agricultural|ũ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V spread| +赼 V dredge|ͨ,agricultural|ũ +赼 V persuade|Ȱ˵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +迣 V dredge|ͨ,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +© N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + N attribute|,density|ܶ,&physical| +ɢ ADJ aValue|ֵ,density|ܶ,sparse| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ +ɢ V disperse|ɢ +ɢ V spread| +ʧ N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ͨ V dredge|ͨ,agricultural|ũ +ͨ V mediate| + V despise| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + N attribute|,form|״,&character| + N attribute|,style|,&character| + N document| + N letter|ż + N publications|鿯 + V write|д + N tool|þ,cubic|,#study|ѧ,@put| +鱨 N publications|鿯 +鱾 N readings| + N furniture|Ҿ,cubic|,@put|,#publications|鿯 + N human|,NotQuick|ګ + N InstitutePlace|,*sell|,@buy|,readings| +鷨 N method|,*write|д +鷨 N human|,*write|д,literature| +鷿 N room|,@study|ѧ + N readings|,#text| + N furniture|Ҿ,@put|,#publications|鿯 +黭 N artifact|˹,#image|ͼ,entertainment| +鼮 N publications|鿯 + N human|,#occupation|ְλ,employee|Ա +Ǵ N part|,%organization|֯ +Ա N human|,#occupation|ְλ,employee|Ա + N furniture|Ҿ,@put|,#publications|鿯 + N InstitutePlace|,publish| + N attribute|,behavior|ֹ,gracious|,&human| +鿯 N publications|鿯 + N room|,@put|,#publications|鿯 + ADJ aValue|ֵ,source|Դ +Ŀ N readings| + N text|,estimate| + N InstitutePlace|,publish| + N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| +̯ N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + N tool|þ,*protect|,#publications|鿯 +ͤ N facilities|ʩ,space|ռ,@sell|,#readings| + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + ADJ aValue|ֵ,attachment| +д V write|д + N letter|ż +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ի N room|,@study|ѧ +չ N fact|,*display|չʾ,#readings| + N furniture|Ҿ,space|ռ,@put| + V amend| + V redeem| +굱 V redeem|,possession=artifact|˹ + V redeem| + V buy|,commercial| + V redeem|,possession=human| + V redeem|,possession=self| + ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,$cook| + ADJ aValue|ֵ,physique|,ripe| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N food|ʳƷ + N FlowerGrass|,?medicine|ҩ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ػ N FlowerGrass|,?medicine|ҩ + N human|,*visit| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,able|,industrial| + N human|,able|,industrial| + N human|,able|,desired| + N material| +· N facilities|ʩ,route|· + N time|ʱ,desired|,#crop|ׯ + N time|ʱ,year|,desired|,#crop|ׯ + N human|,friend| +ʳ N food|ʳƷ +ʶ ADJ aValue|ֵ,relatedness|,intimate|,desired| +޶ V despise|,target=ordinary| +˯ V sleep|˯,manner=very| +˼ V think|˼,manner=attentive|ϸ + N material|,metal| + N stone|ʯ,material| +Ϥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ϥ V know|֪ +ϰ V know|֪ +֪ V know|֪ + V BeAble|ܹ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education| + N time|ʱ,@rest|Ϣ,@WhileAway| + N gas|,#season| + N gas|,hot| + N weather|,#season|,hot| + N time|ʱ,season|,hot| + N time|ʱ,morning| + N lights|,#morning| + V arrange| + N part|,%institution|,politics| + V sign|д + V handle| + N character|,$sign|д + V sign|д,ContentProduct=name| + N place|ط,ProperName|ר,(Sichuan|Ĵ) + N crop|ׯ + N beast| + N human|,undesired|ݬ,vulgar| + N part|,%computer| +Ŀ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N disease| + V BeMember| + V BelongTo| + V be| + N place|ط,#country| + N place|ط,country|,#BeMember| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N attribute|,&entity|ʵ +ֵ N aValue|ֵ + V BeMember| + V BelongTo| +ԫж V exposure|¶ + V BelongTo| + N method| + N part|,%language| + V explain|˵ + N text|,*explain|˵ +˵ V explain|˵ +ְ V tell| + V cultivate| + V endorse|ӵ + V establish| + V put| + N tree| + V praise|佱 + N tree| + N beast| +ɢ V disperse|ɢ + N part|,%tree|,body| + N InsectWorm|,*fly| + N part|,%tree|,body| + N part|,%tree|,base| + N part|,%tree|,head|ͷ + N material| + V establish| + N tree| + N tree|,young| +ľ N tree| +Ƥ N part|,%tree|,skin|Ƥ + N part|,%tree|,head|ͷ + N beast| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +Һ N part|,%tree|,liquid|Һ + N place|ط,chilly| + N place|ط,#tree| +֦ N part|,%plant|ֲ,limb|֫ +֬ N material| + N attribute|,kind|,&tree| + CLAS NounUnit|,&inanimate|,&plant|ֲ + N character|,surname|,human|,ProperName|ר + V restrain|ֹ + V wrap| + V restrain|ֹ + V wrap| +޲ V BeUnable| +֮߸ V delay| + V defend|,military| + V defend|,military| + ADJ aValue|ֵ,posture|,straight|ֱ + N part|,%character| + V put|,manner=straight|ֱ + N facilities|ʩ,#mine|,*dig|ھ + V put|,manner=straight|ֱ + V put|,manner=straight|ֱ + N MusicTool| + N human| + N human|,undesired|ݬ + N human|,young| + N house| + ADJ aValue|ֵ,clan| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,mass| +ĸ N human|,family|,female|Ů + N affairs| + N human|,#occupation|ְλ,employee|Ա,commercial| + N human|,family|,young| + N attribute|,circumstances|,&human|,&organization|֯ + V count| + N quantity|,amount|,&physical| + V quote| + N symbol|,#quantity| + ADJ qValue|ֵ,amount|,many| +ʤ ADJ qValue|ֵ,amount|,many| + N part|,%language| + ADJ aValue|ֵ,importance|,important| + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,season|,cold| + N information|Ϣ +ݿ N software|,@store|,information|Ϣ + ADJ aValue|ֵ,performance|,#quantity|,$control| + N quantity|,amount|,&entity|ʵ + N part|,%language| +ϵ V arithmetic|ϵ +ֵ N qValue|ֵ + V ExpressAgainst|Ǵ + N quantity|,amount|,&entity|ʵ + N symbol|,#quantity| +Ŀ N quantity|,amount|,&entity|ʵ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +԰ټ ADJ qValue|ֵ,amount|,many| +ǧ ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ֵ N symbol|,#quantity| + N quantity|,amount|,&entity|ʵ + N symbol| +ּ N computer| + V wash|ϴ + V wash|ϴ,patient=mouth| +ˡ V forgive|ԭ +ˢ V apply|ͿĨ +ˢ V remove| +ˢ N tool|þ,*wipe| +ˢ V wipe| +ˢ ADJ aValue|ֵ,color|ɫ,white| +ˢϴ V wipe| +ˢ V improve| +ˢ V repair| +ˢ V wash|ϴ +ˢ N tool|þ,*wipe| +ˣ V WhileAway| +ˣ V deceive|ƭ +ˣ V shake|ҡ +ˣ V deceive|ƭ +ˣ V deceive|ƭ +ˣ V slack|͵ +ˣͷ V deceive|ƭ +ˣͷ V slack|͵ +ˣ V IllBehave| +ˣå V IllBehave|,crime| +ˣŪ V IllTreat| +ˣŪ V deceive|ƭ +ˣƶ V TalkNonsense|Ϲ˵ +ˣǮ V gamble|IJ,crime| +ˣ V IllBehave| +ˣ۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ˣƤ V TalkNonsense|Ϲ˵ +ˤ V FallDown| +ˤ V break|۶ +ˤ V fall| +ˤ V throw| +ˤ V beat| +ˤ V study|ѧ +ˤ V FallDown| +ˤͷ V FallDown| +ˤͷ V err| +ˤ V FallDown| +ˤ V exercise|,sport| +ˤ V FallDown| +ˤ N fact|,exercise|,sport| +˥ V decline|˥ +˥ V decline|˥ +˥ V change|,industrial| +˥ V BecomeLess|,industrial| +˥ V decline|˥,medical|ҽ +˥ ADJ aValue|ֵ,age|,aged| +˥ V decline|˥,scope=age| +˥ V decline|˥ +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥ +˥ V perish| +˥΢ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥,scope=age| +˦ V abandon| +˦ V throw| +˦ V wave|ڶ +˦ V abandon| +˦ V throw| +˦ V sell|,cost=cheap|,commercial| +˦ V CausePartMove|,PatientPartof=arm| +˦ V refuse| +˧ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˧ N human|,#occupation|ְλ,official|,military| +˧ N part|,%tool|þ,#recreation| +˨ N part|,%tool|þ +˨ N tool|þ,*BlockUp| +˨ N tool|þ,*fasten|˩ +˨ N medicine|ҩ +˨ N disease| +˩ V fasten|˩ +˩ V wrap| +˩ V wrap| +˩ V fasten|˩ +˪ N RainSnow|ѩ +˪ ADJ aValue|ֵ,color|ɫ,white| +˪ N shape| +˪ N RainSnow|ѩ +˪ N time|ʱ,day| +˪ N time|ʱ +˫ N character|,surname|,human|,ProperName|ר +˫ ADJ qValue|ֵ,amount|,double| +˫̥ N human|,family|,mass| +˫ ADJ aValue|ֵ,attachment| +˫ó N affairs|,#buy|,#sell|,commercial| +˫ N part|,%entity|ʵ +˫ N fact|,compete|,sport| +˫ N human|,mass| +˫ N part|,%entity|ʵ,double|,aspect| +˫ N beast| +˫ N SportTool|˶ +˫ V endeavour| +˫ N facilities|ʩ,route|· +˫ɹ N MusicTool| +˫ɹ N human|,*perform|,entertainment| +˫ N crop|ׯ +˫ ADJ aValue|ֵ,quality|,good|,desired| +˫˫ N tool|þ,#crop|ׯ +˫ N attribute|,name|,&human| +˫ N human|,family|,mass| +˫ N shape|,linear| +˫ȫ ADJ aValue|ֵ,range|,all|ȫ +˫˴ N furniture|Ҿ,space|ռ,@sleep|˯ +˫˷ N room| +˫˼ N room| +˫ N time|ʱ,day| +˫ N human|,female|Ů,#disease| +˫ ADJ aValue|ֵ,source|Դ +˫ N symbol|,#quantity| +˫˫ ADJ qValue|ֵ,amount|,double| +˫ N chemical|ѧ +˫崬 N ship| +˫Ͳ ADJ aValue|ֵ,form|״ +˫͹͸״ ADJ aValue|ֵ,form|״ +˫̬ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +˫ϲ N phenomena|,lucky|,desired| +˫ϲ EXPR phenomena|,lucky|,desired| +˫ ADJ aValue|ֵ,form|״ +˫ ADJ aValue|ֵ,form|״ +˫ N tool|þ,*WhileAway|,*congratulate|ף +˫ ADJ aValue|ֵ,direction|,double| +˫ N celestial| +˫ N attribute|,name|,surname|,&human| +˫Ƥ N part|,%AnimalHuman|,skin|Ƥ +˫ˮ N chemical|ѧ +˫ N aircraft| +˫Ӯ V win|ʤ +˫ N celestial| +˫ ADJ aValue|ֵ,kind|,#language| +˫ ADJ aValue|ֵ,time|ʱ,month|,double| +˫¿ N publications|鿯 +˫ְ N human|,employee|Ա,mass|,family| +˫ ADJ aValue|ֵ,property|,double| +˫ع N attribute|,attachment|,#country|,&human| +˫ؼ N human|,police|,military|,*scout| +˫˸ N attribute|,behavior|ֹ,&human| +˫ ADJ aValue|ֵ,time|ʱ,week|,double| +˫ܿ N publications|鿯 +˫ N celestial| +˫ N material|,?clothing| +ˬ V BeWell|׳ +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +ˬ V satisfied| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ N tool|þ,*MakeUp|ױ +ˬֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˭ PRON human|,question| +˭ ADV aValue|ֵ,behavior|ֹ,sudden| +˭ PRON human|,question| +˭֪ ADV aValue|ֵ,property|,^$predict|Ԥ +ˮ N character|,surname|,human|,ProperName|ר +ˮ N waters|ˮ,generic|ͳ +ˮ N waters|ˮ,linear| +ˮ N water|ˮ,generic|ͳ +ˮ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ˮ N tool|þ,*inhale|,#liquid|Һ +ˮ N PenInk|ī,*write|д +ˮ N land|½,surrounding|Χ,#waters|ˮ +ˮ N tool|þ,*measure|,#water|ˮ +ˮ N human|,military|,#waters|ˮ +ˮ N water|ˮ +ˮ N material|,colored|,*draw| +ˮʻ N image|ͼ +ˮ N FlowerGrass| +ˮ N artifact|˹,generic|ͳ,#fish| +ˮƷ N artifact|˹,generic|ͳ,#fish| +ˮҵ N affairs|,#fish| +ˮ N facilities|ʩ,space|ռ,*produce|,#water|ˮ +ˮ N LandVehicle| +ˮ N tool|þ +ˮ N place|ط,city| +ˮ N waters|ˮ,surfacial| +ˮ N fact|,handle|,#water|ˮ +ˮ V succeed|ɹ +ˮ N crop|ׯ +ˮ N facilities|ʩ,route|·,#waters|ˮ +ˮ N water|ˮ +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ˮ N land|½,#crop|ׯ +ˮ N electricity| +ˮ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ˮ N expenditure|,#water|ˮ,#electricity| +ˮվ N facilities|ʩ,space|ռ,#electricity| +ˮ N disease| +ˮ N expenditure|,#water|ˮ +ˮ N attribute|,dampness|ʪ,&physical| +ˮ N information|Ϣ,$boast|,undesired|ݬ +ˮ N food|ʳƷ +ˮ N tool|þ,*MakeUp|ױ +ˮ N crop|ׯ +ˮ N tool|þ,cubic|,@put| +ˮ N facilities|ʩ,space|ռ,linear|,*drain|ų +ˮ N stone|ʯ,waste| +ˮ N material|,linear| +ˮ N fruit|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,red| +ˮ N tool|þ,cubic|,@put|,#liquid|Һ +ˮ N tool|þ,cubic|,@put|,#liquid|Һ,*irrigate| +ˮ N water|ˮ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N phenomena|,lack|ȱ,#water|ˮ +ˮ ADJ phenomena|,undesired|ݬ,#unfortunate| +ˮ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +ˮ N land|½,#crop|ׯ +ˮ N food|ʳƷ +ˮ V StateChange|̬,StateFin=liquid|Һ,industrial| +ˮ N material|,?tool|þ,#decorate|װ,precious| +ˮ N facilities|ʩ,*obtain|õ,#liquid|Һ +ˮ N drinks|Ʒ,$addict|Ⱥ +ˮ N facilities|ʩ,space|ռ,*store|,#liquid|Һ +ˮ N weapon|,*attack|,#ship| +ˮ N affairs|,*manage|,#water|ˮ +ˮ N institution|,*manage|,#water|ˮ,ProperName|ר,politics| +ˮѧ N human|,#knowledge|֪ʶ +ˮ V produce|,PatientProduct=electricity| +ˮƷ N method|,*cure|ҽ +ˮҽ N human|,medical|ҽ,*cure|ҽ +ˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ˮ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˮ N waters|ˮ,linear| +ˮ N water|ˮ +ˮͷ N part|,%tool|þ,*OpenShut| +ˮ· N facilities|ʩ,route|·,#waters|ˮ +ˮ½ N earth| +ˮ½ ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,green| +ˮ N tool|þ +ˮַ N machine|,*produce|,#electricity| +ˮֻ N machine| +ˮ N part|,%building|,*drain|ų,#liquid|Һ +ˮʯ V exposure|¶ +ˮ͡ N material|,*build| +ˮ N fruit|ˮ +ˮ N attribute|,area|,&waters|ˮ +ˮ N attribute|,surfacial|,&waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮĥ N tool|þ,*grind|ĥ +ˮĥ N tool|þ,@grind|ĥ +ˮĥʯ N material| +ˮī N image|ͼ,$draw| +ˮ N material|,*build| +ˮ೧ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ˮ N tool|þ,*grind|ĥ +ˮţ N livestock| +ˮů N affairs|,*provide|,#warm| +ˮů N human|,#occupation|ְλ,industrial| +ˮ N disease| +ˮ N shape|,liquid|Һ +ˮƽ ADJ aValue|ֵ,posture|,horizontal| +ˮƽ N attribute|,rank|ȼ,&thing| +ˮƽ N shape|,surfacial|,level|ƽ +ˮƽ N shape|,linear|,level|ƽ +ˮ N gas| +ˮ N bird| +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N fact|,sport| +ˮ N tree| +ˮ N facilities|ʩ,#liquid|Һ,linear| +ˮҺ N water|ˮ,*contain|,#material| +ˮ齻 ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮɼ N tree| +ˮ ADJ aValue|ֵ,performance| +ˮϷɻ N aircraft|,*SelfMove|,#waters|ˮ +ˮϻ ADJ aValue|ֵ,performance| +ˮϻԱ N human|,#occupation|ְλ,*check|,police|,#waters|ˮ +ˮϾ N human|,*reside|ס,#waters|ˮ +ˮ N beast| +ˮ N attribute|,depth|,&water|ˮ +ˮ N animal|,#waters|ˮ +ˮֲ N plant|ֲ,#waters|ˮ +ˮʦ N army|,#waters|ˮ +ˮʭ N InsectWorm|,undesired|ݬ +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N human|,#occupation|ְλ,employee|Ա,#ship| +ˮ N facilities|ʩ,*provide|,#water|ˮ +ˮ̡ N beast| +ˮ N waters|ˮ,surfacial| +ˮ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ˮͰ N tool|þ,cubic|,@put|,#liquid|Һ +ˮͷ N water|ˮ +ˮ N attribute|,circumstances|,&entity|ʵ +ˮ N land|½ +ˮ N fact|,*maintain|,#land|½ +ˮʧ N phenomena|,lose|ʧȥ,#stone|ʯ +ˮ ADJ aValue|ֵ,brightness|,bright| +ˮλ N attribute|,height|߶,&waters|ˮ +ˮ N attribute|,temperature|¶,&water|ˮ +ˮ N knowledge|֪ʶ,#waters|ˮ,#liquid|Һ +ˮѧ N human|,#knowledge|֪ʶ +ˮվ N InstitutePlace|,check|,#waters|ˮ,#water|ˮ +ˮȾ N fact|,pollute|ʹ,#water|ˮ +ˮϵ N waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮ N FlowerGrass| +ˮɻ N FlowerGrass| +ˮ N mark|־,#liquid|Һ,#ship| +ˮ N tool|þ,cubic|,@put| +ˮ N place|ط,#waters|ˮ +ˮйͨ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ˮк V StomachTrouble|֢ +ˮ N celestial| +ˮ N attribute|,ability|,#swim|,&human| +ˮѭ N weather| +ˮѹ N attribute|,strength|,&water|ˮ +ˮ N addictive|Ⱥ +ˮ N tree| +ˮ N chemical|ѧ +ˮ N metal| +ˮӡ N mark|־,#money| +ˮ N waters|ˮ +ˮԴ N location|λ,#waters|ˮ +ˮ V transport| +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ V bury| +ˮ N AlgaeFungi|ֲ +ˮ N InsectWorm| +ˮբ N facilities|ʩ,#waters|ˮ +ˮǴ V prosper| +ˮ N gas| +ˮ N attribute|,quality|,&liquid|Һ +ˮ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ˮ N disease|,swollen| +ˮ N water|ˮ +ˮ N water|ˮ +ˮ׼ N attribute|,rank|ȼ,&thing| +ˮԴ N water|ˮ +ˮ N community| +ˮ N fish|,generic|ͳ +ˮ N InstitutePlace|,*display|չʾ,#fish| +ˮ N facilities|ʩ,space|ռ,@reside|ס +ˮ N InsectWorm| +ˮ N InsectWorm| +ˮ N InsectWorm| +˯ V sleep|˯ +˯ N tool|þ,cubic|,@sleep|˯ +˯ V sleep|˯ +˯ N human|,*sleep|˯,lazy| +˯ N FlowerGrass| +˯ñ N clothing|,#head|ͷ,#sleep|˯ +˯ N fact|,sleep|˯ +˯ V sleep|˯ +˯ V awake| +˯ N clothing|,#sleep|˯ +˯ V sleep|˯ +˰ N expenditure| +˰ N quantity|,amount|,&expenditure| +˰ N expenditure| +˰ N affairs|,#expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N quantity|,rate|,&expenditure| +˰Ŀ N part|,%affairs|,#expenditure| +˰ N fund|ʽ,$levy| +˰ N fact|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N institution|,*levy|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N regulation|,#expenditure| +˰ N system|ƶ,#expenditure| +˰ N attribute|,kind|,&expenditure| +˱ V drink| +˱ V drink| +˲ V CausePartMove|,PatientPartof=eye| +˲ ADJ aValue|ֵ,duration|,TimeShort| +˲ʱ ADJ aValue|ֵ,duration|,TimeShort| +˲Ϣ ADJ aValue|ֵ,ability|,able|,change| +˳ V PutInOrder| +˳ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +˳ V lucky| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ N quantity|,amount|,#earn|׬,&commercial| +˳ ADJ aValue|ֵ,circumstances|,free|,desired| +˳ ADJ aValue|ֵ,content|,fluent|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ V surrender| +˳ N place|ط,city|,ProperName|ר,(China|й) +˳ ADJ aValue|ֵ,SoundQuality|,good|,desired| +˳ V visit| +˳ N use| +˳ N wind| +˳Ͷ V please|ȡ +˳ N phenomena|,desired|,#lucky| +˳ ADJ aValue|ֵ,behavior|ֹ,careless| +˳ ADJ aValue|ֵ,content|,easy|,desired| +˳ ADJ aValue|ֵ,taste|ζ,good|,desired| +˳ N text| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,succeed|ɹ,desired| +˳· N location|λ,%route|· +˳ʱ ADJ aValue|ֵ,direction| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ ADV aValue|ֵ,time|ʱ,convenient| +˳ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ǣ V steal|͵ +˳ˮ V use| +˳ V lucky| +˳ V investigate| +˳ ADJ aValue|ֵ,circumstances|,good|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ N attribute|,sequence|,&entity|ʵ +˳ V delay| +˳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˳Ӧ V obey|ѭ +˳ PREP {direction} +˴ N human|,royal|,ProperName|ר,past| +˵ V ExpressAgainst|Ǵ +˵ V explain|˵ +˵ N knowledge|֪ʶ +˵ V mean|ָ +˵ V persuade|Ȱ˵ +˵ V speak|˵ +˵ ADV {comment|} +˵ȥ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +˵ V FitNot| +˵ V ignorant|֪ +˵ V sing|,entertainment| +˵ V speak|˵ +˵ V reveal|¶ +˵ N text|,$speak|˵ +˵ V boast| +˵ ADV {comment|} +˵ V speak|˵ +˵ùȥ ADJ aValue|ֵ,standard|׼,average| +˵ V fit|ʺ +˵ V MakeAppointment|Լ +˵ V explain|˵,content=reason| +˵ N method|,*use|,#expression|,#compile|༭ +˵ N thought|ͷ +˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,unable|ӹ,$persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,persuade|Ȱ˵ +˵ V mediate| +˵ V mediate| +˵ V speak|˵ +˵ V talk|̸ +˵ V deceive|ƭ +˵ N human|,*deceive|ƭ +˵ V explain|˵ +˵ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +˵ V debate| +˵ý V mediate|,ResultEvent=GetMarried| +˵ V explain|˵ +˵ N readings|,*explain|˵ +˵ ADJ aValue|ֵ,ability|,able|,explain|˵ +˵ N human|,*explain|˵ +˵ V mediate|,ResultEvent=GetMarried| +˵ V request|Ҫ,ResultEvent=forgive|ԭ +˵ V TalkNonsense|Ϲ˵ +˵ V perform| +˵ͷ N information|Ϣ +˵ͷ N reason|,undesired|ݬ +˵ V praise|佱 +˵Ц V speak|˵ +˵һ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˵ V boast| +˵ V debate| +˵ V quarrel| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ N result|,desired|,#succeed|ɹ +˶ N physical|,precious| +˶ ADJ qValue|ֵ,amount|,few| +˶ʿ N human|,*study|ѧ,education| +˶ʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +˶ѧ ADJ aValue|ֵ,wise|,desired| +˶ѧ N human|,wise|,desired| +˶ѧͨ N human|,wise|,desired| +˷ ADJ aValue|ֵ,direction|,north| +˷ N celestial|,space|ռ +˷ N time|ʱ,day| +˷ N time|ʱ,day| +˷ N celestial|,space|ռ +˸ ADJ aValue|ֵ,brightness|,bright| +˸ ADJ aValue|ֵ,brightness|,bright| +˸˸ V illuminate| +˹ ADJ aValue|ֵ,kind|,special| +˹ N human|,official|,ProperName|ר,(USSR|) +˹¸Ħ N place|ط,capital|,ProperName|ר,(Sweden|) +˹ά N place|ط,ProperName|ר +˹ά N human|,(Scandinavia|˹ά) +˹ͼ N place|ط,capital|,ProperName|ר,(Brunei|) +˹ N place|ط,country|,ProperName|ר,(Asia|) +˹¬ N money|,(Sri Lanka|˹) +˹工 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovakia|˹工) +˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹工 N language|,#country|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovenia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N language|,#country|,ProperName|ר +˹˹ N place|ط,city|,ProperName|ר,(France|) +˹ͼ N place|ط,city|,ProperName|ר,(Germany|¹) +˹ϣ N language|,#country|,ProperName|ר +˹ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swaziland|˹ʿ) +˹ʿ N place|ط,country|,ProperName|ר,(Africa|) +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V quarrel| +˺ V split|ƿ +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˻ V cry|,#livestock| +˻ V cry| +˻ V cry|,#livestock| +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˼ V ThinkOf|˼ +˼ N thinking|˼ +˼ V think|˼ +˼ N attribute|,outlook|ǰ,&thinking|˼ +˼ V think|˼ +˼ V ThinkOf|˼ +˼ V think|˼ +˼· N thinking|˼ +˼ V think|˼ +˼Ľ V admire|Ľ +˼ V ThinkOf|˼ +˼ V think|˼ +˼Ω N thinking|˼ +˼Ω V think|˼ +˼ά N thinking|˼ +˼ά V think|˼ +˼ V ThinkOf|˼,content=family| +˼粡 N disease| +˼ N thinking|˼ +˼ N thought|ͷ +˼뷽 N method|,*think|˼ +˼ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +˼ N human|,#knowledge|֪ʶ +˼ϵ N thinking|˼ +˼ N problem|,#thinking|˼ +˼ʶ N thinking|˼ +˼ N thinking|˼ +˼ V think|˼ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret| +˽ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +˽ V flee|,cause=GetMarried| +˽ V own|,manner=crime| +˽ N emotion|,hate|,undesired|ݬ +˽ V GoInto|,manner=secret| +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N law|ɷ +˽ ADJ aValue|ֵ,content|,secret| +˽ N wealth|Ǯ +˽Ǯ N wealth|Ǯ +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N wealth|Ǯ,private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ V handle|,manner=private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N human|,private|˽ +˽˷ V visit|,manner=private|˽ +˽˹ϵ V attribute|,relatedness|,private|˽,&human| +˽ V human|,#occupation|ְλ,employee|Ա,private|˽ +˽ҵ V InstitutePlace|,private|˽,commercial| +˽ N human|,#occupation|ְλ,commercial| +˽ N fact|,private|˽ +˽ N human|,family|,young| +˽ N fact|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N thought|ͷ,undesired|ݬ,greedy|̰ +˽Ӫ ADJ aValue|ֵ,attachment|,private|˽ +˽Ӫҵ N InstitutePlace|,commercial|,industrial| +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽л V ize|̬,PatientAttribute=private|˽ +˽ N system|ƶ,#attachment|,private|˽ +˽ V speak|˵,manner=secret| +˽ N aspiration|Ը,expect|,self| +˽ V transport|,manner=secret|,crime|,commercial| +˽ N stationery|ľ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ۡ N house|,private|˽ +˽ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ N human|,undesired|ݬ,female|Ů,crime|,#SeekPleasure|Ѱ,*(be a prostitute|) +˾ N character|,surname|,human|,ProperName|ר +˾ V manage| +˾ N part|,%institution| +˾ ADJ aValue|ֵ,attachment|,#police| +˾ ADJ aValue|ֵ,performance|,*conduct|ʵʩ,#law|ɷ,police| +˾ V conduct|ʵʩ,patient=law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N human|,police|,*judge|ö,#crime| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾Ա N human|,military| +˾ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +˾ N character|,surname|,human|,ProperName|ר +˾ռ ADJ aValue|ֵ,kind|,ordinary| +˾ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N part|,%army|,*order| +˾ N human|,#occupation|ְλ,official|,military| +˾Ա N human|,#occupation|ְλ,official|,military| +˾¯ N human|,#occupation|ְλ,industrial| +˾ N character|,surname|,human|,ProperName|ר +˾ͽ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N human|,*manage| +˿ CLAS NounUnit|,&thing| +˿ N material|,?clothing|,?tool|þ +˿ N shape| +˿ N material|,?clothing|,?tool|þ +˿֮· N place|ط,ProperName|ר,(China|й) +˿ N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| +˿ N food|ʳƷ +˿ N part|,%vegetable|߲,embryo|,$eat| +˿ N vegetable|߲ +˿Ͻ N tool|þ,*wipe| +˿ N lights|,bright| +˿ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +˿ ADJ qValue|ֵ,amount|,few| +˿ N material|,?clothing|,?tool|þ +˿˿ ADJ aValue|ֵ,content|,concise|,desired| +˿ N clothing|,#foot| +˿ N tool|þ +˿ N part|,%MusicTool| +˿ N tool|þ,linear|,*fasten|˩ +˿֯Ʒ N clothing| +˿ N MusicTool| +˿״ N shape| +˿׶ N tool|þ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,die| + V die| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V labour|ٲ + N human|,undesired|ݬ,friend| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,enemy| + N phenomena|,dangerous|Σ + N waters|ˮ,ProperName|ר +ͬ N facilities|ʩ,route|· + N fact|,punish|,#detain|ס,police| +Ҹȼ V BeRecovered|ԭ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ V study|ѧ,manner=stiff| + N location|λ + N shape| + V escape|,ResultEvent=die| + N material|,?food|ʳƷ + V die| +ʿ N human|,*die|,desired| +Ƥ V IllBehave| +Ƥ V shameless|û + V IllBehave| + V aValue|ֵ,behavior|ֹ,passive| + N human|,crime|,undesired|ݬ,$judge|ö,#die| +ȥ V die| +ȥ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N human|,*die| + N phenomena|,wounded|,die| + N humanized|,*kill|ɱ,undesired|ݬ +ʬ N part|,%AnimalHuman|,*die|,body| + V defend|,manner=endeavour|,military| + V obey|ѭ,manner=stiff| +ˮ N water|ˮ +̥ N part|,%AnimalHuman|,embryo| + ADJ aValue|ֵ,physique|,die| + V die| + N quantity|,rate|,die|,&human| + N location|λ,#die| + V abandon|,possession=thought|ͷ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ N human|,stiff|,stubborn|,undesired|ݬ + N information|Ϣ,$tell|,#die| + N letter|ż,unable|ӹ,$post|ʼ + N fact|,punish|,#kill|ɱ,police| +һ ADJ aValue|ֵ,behavior|ֹ,passive| + N cause|ԭ,#die| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +๼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ڷ V die| + N human|,*die| + N human|,die| + N InstitutePlace|,commercial|,*sell| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + NUM qValue|ֵ,amount|,cardinal|,mass| +Ű V damage| +޼ɵ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N facilities|ʩ,religion|ڽ,space|ռ +¹ N facilities|ʩ,space|ռ,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ +Ժ N facilities|ʩ,religion|ڽ,space|ռ + ADV aValue|ֵ,time|ʱ + N human| + N human|,*receive| +ú ADV aValue|ֵ,time|ʱ + NUM qValue|ֵ,amount|,cardinal|,mass| + N symbol|,#music| +ı ADJ aValue|ֵ,form|״ +IJ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +IJ N beast| +Ĵ ADJ aValue|ֵ,range|,all|ȫ +Ĵ N location|λ +Ĵ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ĵ ADJ aValue|ֵ,frequency|Ƶ +ķ ADJ aValue|ֵ,form|״,square| +ķ N direction| +ķ N location|λ +ķ V disperse|ɢ +ĺ N place|ط +ĺ N waters|ˮ,surfacial| +ĺԺ N building| +Ļ N medicine|ҩ +ļ N time|ʱ,season| +ļ N part|,%vegetable|߲,embryo|,$eat| +ļ N vegetable|߲ +Ľ N part|,%place|ط,surrounding|Χ,#city| +Ľ N beast| + N human|,*reside|ס,near| + ADV aValue|ֵ,space|ռ,all|ȫ +˷ N direction| +˷ N location|λ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,space|ռ,all|ȫ +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N human|,mass| + N sound|,#language| +ʱ N time|ʱ,season| +ͨ˴ ADV aValue|ֵ,space|ռ,all|ȫ + V look| +Χ N location|λ + ADV aValue|ֵ,space|ռ,all|ȫ + N location|λ +ԭ N regulation|,ProperName|ר,(China|й) +Ұ N place|ط + N time|ʱ,month| +· N time|ʱ,month| +֫ N part|,%AnimalHuman|,limb|֫ + N location|λ + V TakeCare| + V wait|ȴ +ź V TakeCare| +Ż V wait|ȴ,content=time|ʱ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| +ƺ ADJ aValue|ֵ,behavior|ֹ,hidden| +Ƕ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʶ ADJ aValue|ֵ,relatedness|,intimate| + V foster|,agricultural|ũ +Dz N FlowerGrass|,*feed|ι,#animal| + N food|ʳƷ,*feed|ι,#animal| + V foster|,agricultural|ũ + N InstitutePlace|,@foster|,agricultural|ũ +Ա N human|,#occupation|ְλ,*foster|,agricultural|ũ + N symbol| +ʱ N time|ʱ,hour|ʱ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + V loosen| +ɰ V exempt|,ResultEvent=restrain|ֹ +ɰ V loosen| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɳ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɳ ADJ aValue|ֵ,tightness|ɽ,loose| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɶ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ɶ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɶ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ɹ N part|,%tree|,embryo| +ɹ N part|,%AnimalHuman|,head|ͷ +ɻ N food|ʳƷ +ɻ N food|ʳƷ +ɻ N waters|ˮ,linear|,ProperName|ר,(China|й) +ɼ N bird| +ɽ N attribute|,strength|,&inanimate| +ɽ N attribute|,tightness|ɽ,&inanimate| +ɾ V slack|͵ +ɿ V loosen| +ɿ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɿ V enjoy| + N tree| +ë N InsectWorm| + N material|,*lighting|ȼ +ľ N material|,wood|ľ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,tightness|ɽ,loose| +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V release|ͷ + N beast| + N tree| +ɿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɿ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + N material| + N material|,liquid|Һ +и ADJ aValue|ֵ,circumstances|,relax| +и V weaken| +ī N PenInk|ī,*write|д + N part|,%plant|ֲ,hair|ë +֬ N material| + N part|,%tree|,embryo| +ަ N AlgaeFungi|ֲ,$eat| + ADJ aValue|ֵ,height|߶,tall| + V frighten|Ż + V upmove| +ʼ V CausePartMove|,PatientPartof=arm| + V stand|վ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V incite|ָʹ + V praise|佱 +̸ N text|,*praise|佱 + V praise|佱 + V GiveAsGift| + V farewell| + V follow| + V transmit| +ͱ V farewell| +͸ V GiveAsGift| +ͻ V return| +ͻ V transport|,patient=physical| +ͽ V submit| +ͽ V transmit| +Ϳ V farewell| + V GiveAsGift|,possession=physical| + V die| + V exhale| + V GiveAsGift|,possession=physical| + V help| +ӭ V welcome|ӭ +Ŷ V tell| + N human|,*post|ʼ + V farewell| + V condole|° + V condole|° + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +γ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +δ N text| +δ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N fact|,quarrel| +Ϲ N human|,police|,undesired|ݬ + V recite|ж +ж V recite|ж +о V recite|ж,content=text|,religion|ڽ + V LookFor|Ѱ +Ѳ V catch|׽ס,means=LookFor|Ѱ,police| +Ѳ V LookFor|Ѱ +ѹ V rob| +Ѽ V gather|ɼ,means=LookFor|Ѱ + V gather|ɼ,means=LookFor|Ѱ + V include|,means=LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,location=body| + V LookFor|Ѱ,location=human| + V LookFor|Ѱ +Ѱ V LookFor|Ѱ + CLAS NounUnit|,&ship| + V pant| + N sound| + V awake| + N character|,surname|,human|,ProperName|ר +մ N chemical|ѧ +յ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sudan|յ) +յ N place|ط,country|,ProperName|ר,(Africa|) +յ N money|,(Sudan|յ) +յ N language|,#country|,ProperName|ר +ո N place|ط,ProperName|ר,(UK|Ӣ) +ոǶ N language|,#country|,ProperName|ר +ո N human|,(Scotland|ո) +տ N money|,(Ecuador|϶) +տ N place|ط,capital|,ProperName|ר,(Bolivia|ά) + N place|ط,city|,ProperName|ר,(Switzerland|ʿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Surinam|) + N place|ط,country|,ProperName|ר,(South America|) +϶ N money|,(Surinam|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Soviet Union|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N place|ط,capital|,ProperName|ר,(Fiji|쳼) + V awake| + N tool|þ,*decorate|װ +ʿ˺ N waters|ˮ,linear|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ִ ADJ aValue|ֵ,hardness|Ӳ,crisp| + V paralyse|̱ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N food|ʳƷ +Ͳ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + ADJ attribute|,habit|ϰ,&human|,&organization|֯ +׳ V naming| +׻ N expression| +׻˵ ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + N human|,^religion|ڽ + N human|,vulgar|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N text| + ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ + N food|ʳƷ + N part|,%thing| +زʶ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ز N information|Ϣ,?publications|鿯,#shows|,literature| +ز N food|ʳƷ +ز V eat| +ز N food|ʳƷ +س ADV aValue|ֵ,frequency|Ƶ,regular| +ص ADJ aValue|ֵ,color|ɫ,plain| +ؾ ADJ aValue|ֵ,color|ɫ,plain| +ؾ N drinks|Ʒ,$addict|Ⱥ + ADV aValue|ֵ,frequency|Ƶ,often| +ƽ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ + V draw|,manner=simple| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADV aValue|ֵ,frequency|Ƶ,regular| +ɫ N attribute|,color|ɫ,plain|,&physical| +ʳ V eat| +ʳ N food|ʳƷ +ʳ N human|,*eat|,#vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,rank|ȼ,#mental|,&human| + N material|,?food|ʳƷ + N attribute|,quality|,&human| + N attribute|,quality|,&human|,&organization|֯ + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж +ٳ ADJ aValue|ֵ,speed|ٶ,fast| +ٵ V post|ʼ +ٶ V cool| +ٶ N attribute|,speed|ٶ,&AlterLocation|ռλ +ٶ N attribute|,boundary|,&speed|ٶ +ټ N human|,*record|¼,fast| +ټ V record|¼,manner=fast| +ټԱ N human|,*record|¼ +پ V handle|,manner=fast| + N quantity|,rate|,&speed|ٶ +Ч ADJ aValue|ֵ,effect|Ч +д V draw|,manner=fast| + N crop|ׯ + V produce| +ܽ N material| + N material|,?tool|þ +ϲ N material| +ϴ N tool|þ,cubic|,@put| + N image|ͼ,$carve| + N attribute|,behavior|ֹ,flexible|,&thing| + V produce| + V LookBack| +Դ V LookFor|Ѱ,content=base| + ADJ aValue|ֵ,age|,aged| + N character|,surname|,human|,ProperName|ר + V reside|ס +޸ N part|,%plant|ֲ,base| +޽ N human|,official|,military| + ADJ aValue|ֵ,attachment|,knowledge|֪ʶ + N knowledge|֪ʶ + N human| + N house| +Ӫ V reside|ס,military| +Ը N aspiration|Ը,expect| + N animate| + V accuse|ظ + V explain|˵ + V tell| +߾ V tell|,target=police| +߿ V tell|,content=unfortunate| +˵ V explain|˵ + N fact|,accuse|ظ,police| +ϵ N human|,*accuse|ظ,police| +Ϸ N law|ɷ + N human|,*accuse|ظ,police| +״ N document|,*accuse|ظ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V stand|վ,manner=stately|ׯ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V destroy| + N part|,%army| +Ȼ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| + N food|ʳƷ + V sorrowful| + N quantity|,rate|,#chemical|ѧ,&inanimate| + N quantity|,rate|,#chemical|ѧ,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| +÷ N food|ʳƷ +÷ N fruit|ˮ + N drinks|Ʒ +ţ N drinks|Ʒ + V paralyse|̱ + N phenomena|,undesired|ݬ +ʹ V painful|ʹ +ϴ V produce| + ADJ aValue|ֵ,taste|ζ,sour| + N attribute|,property|,#chemical|ѧ,&inanimate| + N RainSnow|ѩ + N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N food|ʳƷ,#vegetable|߲ +ͷ N vegetable|߲ + V RegardAs| + V calculate| + V contain| + V plan|ƻ + V think|˼ + V RegardAs| +㷨 N method|,#software| + V calculate| + V plan|ƻ + V predict|Ԥ + V think|˼ + V guess|² + N human|,*guess|² + N tool|þ,*calculate| + ADV aValue|ֵ,time|ʱ,ending|ĩ + N method|,*calculate| + V be|,descriptive=true| + V calculate| + V calculate|,content=wealth|Ǯ + V revenge| + CONJ {concession|ò} +Ȼ CONJ {concession|ò} +˵ CONJ {concession|ò} + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V BeSimilar| + V act|ж,manner=free| + V follow| + V obey|ѭ + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V act|ж,manner=free| +沨 V obey|ѭ +沨 ADJ obey|ѭ +泵Я V bring|Я +洦 ADV aValue|ֵ,location|λ,all|ȫ + V follow| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V obey|ѭ,content=mass| + V bring|Я + ADJ aValue|ֵ,range|,all|ȫ +絹 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +溯 V include| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + N attribute|,behavior|ֹ,free|,&event|¼ +Ӧ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +漴 ADV aValue|ֵ,duration|,TimeShort| +浽 EXPR LeaveFor|ǰ + V follow|,partner=army| + ADJ aValue|ֵ,behavior|ֹ,careless| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱı䲻֪ͨ EXPR expression| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| + ADV aValue|ֵ,behavior|ֹ,convenient|,desired| + V obey|ѭ,content=regulation| +ͬ V follow| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V follow| +о V QuantityChange|,commercial| +Ա N human|,*TakeCare| + ADV aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,official|,diplomatic|⽻ + V bury| +֮ PREP {accompaniment} + PREP {accompaniment} + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +羸 V attack| + N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + V AlterForm|״ + ADJ aValue|ֵ,behavior|ֹ,boring|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + V AlterForm|״ +Ƭ N part|,%physical| +ʯ N stone|ʯ +м N shape| + N human|,*FondOf|ϲ,#speak|˵ + N attribute|,age|,&animate| + N time|ʱ,year| +ĩ N part|,%time|ʱ,year|,ending|ĩ +ĺ N time|ʱ,ending|ĩ,year| +ʱ N time|ʱ,season| + N time|ʱ,early|,year| + N attribute|,age|,&animate| + N time|ʱ,year| +β N part|,%time|ʱ,year|,ending|ĩ + N celestial| + N time|ʱ + N part|,%plant|ֲ,hair|ë + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + V fulfil|ʵ + V succeed|ɹ + V satisfied| + V satisfied| + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,family|,mass| +Ů N human|,family|,female|Ů +ɽ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,family|,male| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V exhaust| + V subtract| +𹫷˽ V steal|͵ + V damage| + V offend| + V exhaust| + V damage| + V destroy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V wounded| +ʧ V lose|ʧȥ +ʧ⳥ N expenditure|,$recompense| + N attribute|,effect|Ч,&event|¼ + N document| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N bird| + N clothing|,#RainSnow|ѩ + N part|,%machine| + CLAS NounUnit|,&weapon| + N part|,%machine| + N part|,%weapon| +з N fish| + V incite|ָʹ +ʹ V incite|ָʹ + V CausePartMove| + V shrink|С + V shrink|С,scope=length| + V StateChange|̬,industrial| + V CausePartMove| + V subtract| + N human|,*subtract| + ADJ aValue|ֵ,behavior|ֹ,cautious|,undesired|ݬ +ˮ V FormChange|α,StateFin=shrink|С +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ͷ V evade|ر,content=duty| +ͷ V fear| +΢ V shrink|С +С V shrink|С +С V subtract| +д V compile|༭,means=subtract| +ӡ V print|ӡˢ,means=subtract| +Ӱ N entity|ʵ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + N fact|,trivial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ϸ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + V LookFor|Ѱ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V beg| + N character|,surname|,human|,ProperName|ר + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,route|· +Ȳ N place|ط,capital|,ProperName|ר,(Zimbabwe|ͲΤ) + N place|ط,capital|,ProperName|ר,(Bulgaria|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Somalia|) + N place|ط,country|,ProperName|ר,(Africa|) + N money|,(Somalia|) + N language|,#country|,ProperName|ר + V request|Ҫ,ResultEvent=recompense| +ȡ V request|Ҫ +Ȼ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ȼζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +Ҫ V request|Ҫ + N document|,@record|¼ + V fasten|˩ + V fix|ס + N method|,*fasten|˩ + N tool|þ,*fix|ס,*fasten|˩ + N part|,%AnimalHuman|,bone| + N part|,%machine| + N tool|þ,police|,*fix|ס,#crime| + V *fix|ס,Vachieve| +Կ N part|,%place|ط,important|,mouth| +Կ N tool|þ,*open| +ס V *fix|ס,Vachieve| + N InstitutePlace| + N InstitutePlace|,*research|о + CLAS NounUnit|,&InstitutePlace|,&house| + STRU {DeChinese|} + N attribute|,quality|,strong|ǿ,desired|,&thing| + N human|,#occupation|ְλ,official| +˰ N expenditure| + N information|Ϣ + N place|ط,country|,ProperName|ר +Ⱥ N place|ط,ProperName|ר +Ⱥ N place|ط,ProperName|ר,(Oceania|) +ν ADJ aValue|ֵ,trueness|α,fake|α +ν V be| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǰ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ҵ ADV {comment|} + CONJ {EventResult|¼} +Ȼ N reason| + V own| + ADJ qValue|ֵ,amount|,all|ȫ +е N human|,mass| +и ADJ aValue|ֵ,attachment| +Ȩ N rights|Ȩ,#own| + N human|,*own| + N human|,own| + N system|ƶ,#rights|Ȩ,#own| + N location|λ,space|ռ +ڵ N place|ط +Ϊ N attribute|,behavior|ֹ,&human| + V FallDown| + V FormChange|α,StateFin=dented| + ADJ aValue|ֵ,form|״,dented| + V sink|³ + ADJ aValue|ֵ,form|״,flat| + N fact|,sink|³,#land|½ + V FallDown| +ʵ V AtEase| +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̨ V FallDown| +̨ V end|ս + V sink|³ + ADJ aValue|ֵ,kind|,other| + PRON {ThirdPerson|,male|} +» N language|,#country|,ProperName|ר + EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + N time|ʱ,future| +ɱ N fact|,$kill|ɱ,#police| + N place|ط,other| + V CauseToMove| + PRON {it|} + PRON {ThirdPerson|,mass|} + PRON {it|,mass|} + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,mass|} + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + N implement|,@produce|,#chemical|ѧ + N machine|,*lift| + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) + N place|ط,country|,ProperName|ר +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N money|,(Bangladesh|ϼ) +¥ N house|,tall| +¥ N part|,%house|,head|ͷ + N place|ط,capital|,ProperName|ר,(Madagascar|˹) +ʲ N place|ط,capital|,ProperName|ר,(Uzbekistan|ȱ˹̹) +˹ N institution|,news|,ProperName|ר,(Russia|˹) +̨ N facilities|ʩ,space|ռ,@control|,#aircraft| +̡ N beast| +̢ V beat| +̤ V kick|߲ +̤ N part|,MusicTool| +̤ N part|,implement| +̤ V kick|߲ +̤ V investigate| +̤ V investigate| +̤ V tour| +̤ʵ V AtEase| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̤̤ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̥ N fact|,ComeToWorld| +̥ N material|,*fill| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%LandVehicle|,leg| +̥ N part|,%tool|þ,#produce|,embryo| +̥ N phenomena|,#embryo| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%AnimalHuman|,hair|ë +̥ N trace|,#human|,#ComeToWorld| +̥ N fact|,teach|,#embryo| +̥ë N part|,%AnimalHuman|,hair|ë +̥Ĥ N part|,%AnimalHuman| +̥ N part|,%AnimalHuman| +̥ ADJ aValue|ֵ,attachment| +̥λ N location|λ,#embryo|,@situated| +̥ N part|,%AnimalHuman|,embryo| +̦ N AlgaeFungi|ֲ +̦޺ N AlgaeFungi|ֲ +̧ V hold| +̧ V lift| +̧ V BecomeMore| +̧ V add| +̧ V BecomeMore|,scope=price|۸ +̧ V praise|佱 +̧ V quarrel| +̧ͷ V CausePartMove|,PatientPartof=head|ͷ +̧ͷ N trace|,#head|ͷ +̨ N InstitutePlace|,@disseminate| +̨ CLAS NounUnit|,&implement| +̨ N character|,surname|,human|,ProperName|ר +̨ N facilities|ʩ,@disseminate| +̨ N furniture|Ҿ,space|ռ,@put| +̨ N implement|,*PropUp|֧ +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N shape| +̨ N shape|,space|ռ +̨ N place|ط,city|,ProperName|ר,(China|й) +̨ N tool|þ +̨ N text| +̨ N tool|þ,*illuminate| +̨ N land|½ +̨ N wind| +̨ N facilities|ʩ,mine| +̨ N part|,%building|,nerve| +̨ N time|ʱ,@escape|,#circumstances| +̨ N tool|þ,*show|,#time|ʱ +̨ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +̨ǯ N tool|þ,*hold| +̨ N SportTool|˶ +̨ N fact|,exercise| +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N human|,important|,able|,desired| +̨ N SportTool|˶ +̨ N furniture|Ҿ,space|ռ,@put| +̨ N shape|,space|ռ +̩ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̩ N place|ط,country|,ProperName|ר,(Thailand|̩) +̩ N human|,able|,desired| +̩ N human|,ProperName|ר,literature| +̩ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Thailand|̩) +̩ N place|ط,country|,ProperName|ר,(Asia|) +̩¬ N language|,#country|,ProperName|ר +̩Ȼ V calm| +̩Ȼ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ N human|,family|,male| +̩ɽ N land|½,ProperName|ר,(China|й) +̩ɽ N human|,desired| +̩ɽѹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +̩ N language|,#country|,ProperName|ר +̩ N money|,(Thailand|̩) +̪ N chemical|ѧ +̫ ADV aValue|ֵ,degree|̶,very| +̫ N celestial| +̫ N human|,young|,rash|ç,undesired|ݬ +̫ N human|,family|,male| +̫ N time|ʱ,past| +̫ N human|,royal|,female|Ů +̫ȭ N fact|,exercise|,sport| +̫ N human|,employee|Ա,#royal| +̫ N sky| +̫ N facilities|ʩ,space|ռ,religion|ڽ +̫ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̫ƽ N room|,@put|,#human|,#die|,medical|ҽ +̫ƽ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר +̫ N human|,family|,female|Ů +̫ϻ N human|,official| +̫ϻ N human|,royal| +̫ ADV aValue|ֵ,degree|̶,very| +̫ʦ N furniture|Ҿ,@sit| +̫ N character|,surname|,human|,ProperName|ר +̫ͷ϶ V offend| +̫̫ N human|,female|Ů +̫Ϣ V sigh|̾ +̫ N celestial|,space|ռ +̫ N celestial| +̫ N lights|,#celestial| +̫ N tool|þ,#lights|,#celestial| +̫ N part|,%celestial| +̫ N tool|þ,*protect|,#eye|,#look| +̫ N attribute|,strength|,&celestial| +̫ϵ N system|ƶ,celestial| +̫ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| +̫ N celestial| +̫ԭ N place|ط,city|,ProperName|ר,(China|й) +̫ N human|,royal|,male| +̫Ӹ N place|ط,capital|,ProperName|ר,(Haiti|) +̬ N attribute|,PhysicState|״̬,&physical| +̬ N attribute|,appearance|,&physical| +̬ N attribute|,circumstances|,&physical| +̬ N attribute|,property|,&language| +̬ V StateChange|̬ +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,circumstances|,&physical| +̭ V discharge| +̮ V FallDown| +̮ V FallDown| +̨̮ V end|ս +̨̮ V suffer|,content=disgraced| +̨̮ V unfortunate| +̯ N InstitutePlace|,*sell|,commercial| +̯ CLAS NounUnit|,&liquid|Һ +̯ V bear|е +̯ V cook| +̯ V unfold|̯ +̯ N InstitutePlace|,*sell|,commercial| +̯ N InstitutePlace|,*sell|,commercial| +̯ N human|,#occupation|ְλ,*sell|,commercial| +̯ V issue|ַ +̯ V undergo| +̯ N sell|,commercial| +̯ V sell|,possession=artifact|˹ +̯ N InstitutePlace|,*sell|,commercial| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V need|,manner=greedy|̰ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#drink|,#addictive|Ⱥ,undesired|ݬ +̰ V need|,manner=greedy|̰,content=cheap| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#wealth|Ǯ,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̰ N human|,*cheat|ƭ,official|,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V FondOf|ϲ,manner=greedy|̰ +̰ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +̰ͼ V need|,manner=greedy|̰ +̰ͼ V seek|ıȡ +̰ V cheat|ƭ +̰۸ N cheat|ƭ +̰Сʧ V WorthNot|ֵ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ N aspiration|Ը,expect|,greedy|̰ +̰ V receive|,possession=artifact|˹,crime| +̰ V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̱ V paralyse|̱ +̱ V OutOfOrder| +̱ N disease| +̱ V paralyse|̱ +̱ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +̱ V paralyse|̱ +̲ N land|½,#waters|ˮ +̲Ϳ N land|½ +̳ N community| +̳ N facilities|ʩ,space|ռ +̳ N facilities|ʩ,space|ռ,@planting|ֲ +̳ N fact|,communicate| +̳ N furniture|Ҿ,space|ռ,@put| +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̴ N tree| +̴ N MusicTool| +̴ N tree| +̴ľ N wood|ľ +̴ɽ N place|ط,city|,ProperName|ר,(US|) +̴ N tool|þ,#wind|,*cool| +̵ N part|,%AnimalHuman|,waste|,liquid|Һ +̵Ͱ N tool|þ,cubic|,@put|,#liquid|Һ +̵ N tool|þ,cubic|,@put|,#liquid|Һ +̶ N waters|ˮ,surfacial| +̷ N character|,surname|,human|,ProperName|ר +̸ N character|,surname|,human|,ProperName|ר +̸ V discuss| +̸ V talk|̸ +̸ N text|,$talk|̸ +̸ V FitNot|,scope=associate| +̸ V explain|˵ +̸ V fit|ʺ,scope=associate| +̸ V attribute|,strength|,#talk|̸,&human| +̸ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̸ɫ V fear| +̸ V talk|̸ +̸ N text|,$speak|˵ +̸ V associate|,#male|,#female|Ů,#love| +̸ V explain|˵ +̸ V discuss| +̸д N human|,*discuss| +̸ N furniture|Ҿ,*discuss| +̸ V explain|˵ +̸˵ V associate|,#male|,#female|Ů,#love| +̸̸ V talk|̸ +̸ V talk|̸ +̸˵ V talk|̸ +̸ N attribute|,behavior|ֹ,&human| +̸² N aValue|ֵ,behavior|ֹ,gracious|,desired| +̸Ц V talk|̸ +̸Ц V talk|̸,manner=joyful|ϲ +̸Ц V calm| +̸ V talk|̸,manner=sincere| +̸΢ ADJ aValue|ֵ,content|,profound|,desired| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ V calm| +̹ N place|ط,country|,ProperName|ר,(Tanzania|̹ɣ) +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ V admit| +̹ ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ ADJ aValue|ֵ,tolerance|,generous|,desired| +̹ N weapon|,LandVehicle|,military| +̹˲ N army| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +̹Ȼ V calm| +̹ɣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tanzania|̹ɣ) +̹ɣ N place|ط,country|,ProperName|ר,(Africa|) +̹ɣ N human|,(Tanzania|̹ɣ) +̹ɣ N money|,(Tanzania|̹ɣ) +̹; N facilities|ʩ,route|· +̺ N tool|þ,*cover|ڸ +̺ N tool|þ,*cover|ڸ,#LieDown| +̺ N tool|þ,*cover|ڸ,#LieDown| +̻ V CauseToAppear| +̻ V protect|,manner=biased|ƫ +̻ V protect|,manner=biased|ƫ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼⻯ N chemical|ѧ +̼ˮ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̽ V CausePartMove| +̽ V investigate| +̽ V measure| +̽ V visit| +̽ V investigate| +̽ V measure| +̽ N tool|þ,*LookFor|Ѱ +̽ V check| +̽ V investigate| +̽ V visit| +̽ N human|,*succeed|ɹ,#exam|,past| +̽ V SayHello|ʺ,target=family| +̽ V visit|,target=human|,#police| +̽ V investigate|,industrial| +̽ V research|о +̽ V investigate| +̽ V investigate|,industrial| +̽· V investigate|,content=route|· +̽ V investigate| +̽ȡ ADJ aValue|ֵ,easiness|,easy|,desired| +̽ V SayHello|ʺ,target=family| +̽ V SayHello|ʺ,target=human| +̽׼ N time|ʱ,@SayHello|ʺ,#family| +̽ V seek|ıȡ +̽ V diagnose|,industrial| +̽ V visit| +̽ V investigate| +̽ N human|,*investigate| +̽ V investigate| +̽ V investigate| +̽ N human|,*investigate| +̽ͷ V CausePartMove|,PatientPartof=head|ͷ +̽ͷ̽ V look| +̽ V look| +̽ V visit| +̽ V ask| +̽Ϥ V investigate| +̽Ϥ V know|֪ +̽ V investigate| +̽ѯ V investigate| +̽Ѱ V LookFor|Ѱ +̽յ N tool|þ,*illuminate| +̽ N human|,military|,*scout| +̽ N tool|þ,*inhale| +̾ V praise|佱 +̾ V sigh|̾ +̾ N part|,%language| +̾ V praise|佱 +̾ V sigh|̾ +̾ V praise|佱 +̾ V sigh|̾,cause=repent|û +̾Ϊֹ V praise|佱 +̾Ϣ V sigh|̾ +̾ϧ V sigh|̾,cause=repent|û +̾ V praise|佱 +̿ N material|,*lighting|ȼ,$burn| +̿ N fire| +̿ N disease| +̿ N tool|þ,*WarmUp| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,$eat|,liquid|Һ + N medicine|ҩ,liquid|Һ,(China|й) + N water|ˮ,hot| + N tool|þ,*hold|,#drinks|Ʒ + N tool|þ,@put|,#liquid|Һ,hot| + N medicine|ҩ,liquid|Һ,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tonga|) + N money|,(Tonga|) + N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N food|ʳƷ +ˮ N food|ʳƷ,$eat|,liquid|Һ +ҩ N medicine|ҩ,liquid|Һ,(China|й) +Բ N food|ʳƷ + N facilities|ʩ,#hot|,@wash|ϴ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N waters|ˮ,surfacial| + N facilities|ʩ,#liquid|Һ,space|ռ + N material|,$feed|ι,#crop|ׯ + N facilities|ʩ,#liquid|Һ,space|ռ + V apply|ͿĨ + V evade|ر + V obstruct|ֹ + V slack|͵ +´ N material|,?tool|þ + V slack|͵ + ADJ aValue|ֵ,clan| + N institution|,police|,@judge|ö,#crime|,past| + N room| +ð N reason| +ö֮ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +ö֮ ADJ aValue|ֵ,behavior|ֹ,suitable| +÷ ADJ aValue|ֵ,clan| +ù N MusicTool| +û ADJ aValue|ֵ,scene|,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N room| + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N fruit|ˮ + N tree| + N FlowerGrass| + N tree| + N part|,%AnimalHuman|,body| + N part|,%physical|,viscera| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƻ N FlowerGrass| + N human|,ProperName|ר,(China|й) + N artifact|˹,entertainment| +ɽ N place|ط,city|,ProperName|ר,(China|й) +ʫ N text| +ͻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ +dz N InstitutePlace|,*produce|,#material|,factory|,industrial| +Ǵ N attribute|,taste|ζ,sweet|,sour|,&food|ʳƷ +Ǵ N material|,#food|ʳƷ,$eat| +ǹ N food|ʳƷ,sweet| +Ǻ« N food|ʳƷ +ǻ N chemical|ѧ +ǽ N material|,?edible|ʳ,?medicine|ҩ +Ǿ N material|,?edible|ʳ + N chemical|ѧ +ܲ N crop|ׯ,?material| + N disease| +ζ ADJ aValue|ֵ,taste|ζ,sweet|,desired| + CONJ {condition|} + CONJ {condition|} + V LieDown| + V LieDown| + V LieDown| + N furniture|Ҿ,space|ռ,@LieDown|,@sit| + V fall| + V flow| +ʺ V excrete|й,patient=waste| + CLAS ActUnit|,&AlterLocation|ռλ + CLAS NounUnit|,&LandVehicle| + CLAS NounUnit|,&inanimate| + V MakeUp|ױ + V WarmUp| + ADJ aValue|ֵ,temperature|¶,hot| + V damage| + V press|ѹ +̷ V MakeUp|ױ,patient=hair|ë +̷ V MakeUp|ױ,scope=hair|ë +̽ V apply|ͿĨ,material=metal|,industrial| + N material|,?food|ʳƷ + N disease| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + V PickOut|γ + V dig|ھ + V steal|͵ +ͳ V PickOut|γ +͵ V investigate| + V pay|,possession=wealth|Ǯ + N water|ˮ + V spill| + ADJ qValue|ֵ,amount|,many| +ϲ ADJ aValue|ֵ,behavior|ֹ,fluent| + ADJ aValue|ֵ,degree|̶,extreme| + N tool|þ,linear|,*fasten|˩,*decorate|װ +г N InsectWorm|,#disease| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,linear|,*fasten|˩,*decorate|װ + N fruit|ˮ + N shape| +Һ ADJ aValue|ֵ,color|ɫ,red| +һ N FlowerGrass| +һľ N wood|ľ +һѴ N water|ˮ +һ N fish| + N human|,*study|ѧ,mass| + N food|ʳƷ + N medicine|ҩ +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| +ɫ N fact|,#love|,undesired|ݬ +ɫ N fact|,#love|,undesired|ݬ,#police| +ɫ N news|,#fact|,#love|,undesired|ݬ + N tree|,#fruit|ˮ + N fruit|ˮ + V escape| + V evade|ر + V flee| +ӱ V escape| +ӱʵ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ӱʵ N fact|,escape|,#circumstances|,undesired|ݬ +ӱʵ N human|,*escape| +ӱ N human|,*escape| +ӳ V flee| +Ӵ V flee| +Ӷ V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +ӻ V escape|,cause=phenomena| +ӻ V escape|,cause=GetMarried| + V flee| + V escape|,cause=die| + V escape|,cause=unfortunate| + V hide| + V flee| +ɢ V disperse|ɢ + V escape|,cause=die| +˰ V evade|ر,content=expenditure|,commercial| +˰ N human|,*evade|ر,#expenditure|,commercial| + V flee| + V flee| + N human|,*flee| +ѧ V evade|ر,content=study|ѧ,education| +ѧ N human|,*evade|ر,#study|ѧ,education| + V flee| +ծ V escape|,cause=owe|Ƿ +֮زز V flee| + V flee| + ADJ aValue|ֵ,behavior|ֹ,mischievous| + V dredge|ͨ + V wash|ϴ +Ժ N bird| +Խ V gather|ɼ + N tool|þ,cubic|,@put|,*wash|ϴ + V wash|ϴ,patient=material| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̭ V disappear|ʧ +̭ V discharge| +̭ V perish| +̭ V discharge|,sport| +̭ N fact|,compete| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ + N tool|þ,generic|ͳ +մ N material| +չ N material|,*build| +չ N tool|þ,cubic|,@put| + N tool|þ,generic|ͳ +Ȼ V joyful|ϲ + N material|,mine| +ұ V burn|,industrial| +ұ V cultivate| + N knowledge|֪ʶ + V joyful|ϲ +ٸ N tool|þ + V ExpressAgainst|Ǵ + V MarryFrom|Ȣ + V ResultIn| + V attack|,military| + V beg| + V discuss| +ֱ V seek|ıȡ,possession=pros| +ַ V attack|,military| +ַ V beg|,patient=artifact|˹ +ֺ V please|ȡ +ֻ V seek|ıȡ +ּ V discuss|,content=price|۸,commercial| +ּۻ V discuss|,content=price|۸,commercial| +ֽ V ask| + V discuss| +ۻμ N human|,*discuss| + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ + V do|,manner=sly| + V MarryFrom|Ȣ + V request|Ҫ,ResultEvent=forgive|ԭ + V surrender| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V disgust| + N human|,$disgust| + N human|,*irritate|ŭ +ծ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| + V PutOn| + N clothing| + V cover|ڸ + V fasten|˩ + N material|,$fill| + N part|,%earth| + N tool|þ,cubic|,@put| +װ N tool|þ,*print|ӡˢ +׷ N house| +׹ V buy|,crime| +׻ N information|Ϣ,stiff| +׻ N text|,waste| +׻ N fact|,commercial| +׼ N house| +׼ N room| +׿ N clothing|,#leg| +· N knowledge|֪ʶ +Ь N clothing|,#foot| + N part|,%clothing|,#arm| +ӡ V print|ӡˢ + V use| + V planting|ֲ +װ N clothing| + N information|Ϣ,stiff| + N material|,$fill| + N tool|þ,cubic|,@put| + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,kind|,special| + N human|,#occupation|ְλ,military|,police|,*scout| + N human|,#occupation|ְλ,police|,military|,*scout| +ر ADJ aValue|ֵ,kind|,special| +ر CONJ {emphasis|ǿ} +رȨ N rights|Ȩ,collect|,commercial| +ز N artifact|˹,special|,generic|ͳ +س N attribute|,ability|,special|,&organization|֯,&human| +س ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ش ADV {emphasis|ǿ} +ش ADJ aValue|ֵ,range|,extensive| +ش ADJ aValue|ֵ,size|ߴ,big| +ص ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ص ADJ aValue|ֵ,kind|,special| +ص N attribute|,property|,&entity|ʵ +ض ADJ aValue|ֵ,kind|,special| +ع N affairs|,military|,secret| +عӶ N place|ط,capital|,ProperName|ר,(Honduras|鶼˹) +ػ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ؼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ؼ N fact|,dangerous|Σ,#perform| +ؼ N attribute|,price|۸,cheap|,&inanimate| +ؿ ADJ aValue|ֵ,kind|,special| +ؿ N LandVehicle| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N example|ʵ,special| +Ͷ͸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Trinidadian and Tobagan|Ͷ͸) +Ͷ͸ N place|ط,country|,ProperName|ר,(South America|) +Ͷ͸Ԫ N money|,(Tonga|Ͷ͸) +ľ N plans|滮 +ȫȨʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ + V dispatch|Dz,manner=special| +ɼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ա N human|,#occupation|ְλ,$dispatch|Dz,official| +Dz N part|,%army| + N place|ط +Ȩ N rights|Ȩ +ɫ N attribute|,property|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +ίԱ N institution|,politics|,special| +ʹ N human|,official|,politics|,diplomatic|⽻ + ADJ aValue|ֵ,kind|,special| +ⲡ֢ ADJ aValue|ֵ,kind|,special|,&disease| +⻯ N rights|Ȩ + N attribute|,kind|,special|,&entity|ʵ +Ϊ ADJ aValue|ֵ,kind|,special| +ά N language|,#country|,ProperName|ר +ί N institution|,politics|,special| + N human|,#occupation|ְλ,military|,police|,*scout| +Ч N attribute|,effect|Ч,superior|,&entity|ʵ,&act|ж +Чҩ N medicine|ҩ,superior| +д N text| + N attribute|,property|,&entity|ʵ + V agree|ͬ,manner=special| + V invite|,manner=special| + ADV aValue|ֵ,kind|,special| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special| + N attribute|,kind|,special|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +Լ V invite|,manner=special| +Լ༭ N human|,*compile|༭ + N attribute|,property|,&entity|ʵ +ָ V mean|ָ + V produce|,manner=special| + N attribute|,kind|,special|,&entity|ʵ +ֲ N army| + N tree| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N FlowerGrass| + N weapon|,*defend| + N SportTool|˶ + N fact|,exercise|,sport| + N furniture|Ҿ,space|ռ,@sit| + N tree| + V dump| + V jump| + V rise| +ڳ V dump| +ڷ V fly| +ڷ V grow|ɳ +ڹ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ڿ V dump| +ڿ V rise| +Ų V TakeAway|ᶯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Խ V cross|Խ +Ծ V jump| +Ƽ V dizzy| +Ƽ ADJ fly|,manner=fast| + V like|ϧ + V painful|ʹ +۰ V like|ϧ +ʹ V painful|ʹ + V copy|д +¼ V copy|д + V copy|д +д V copy|д + N part|,%building|,nerve| + N shape| + N tool|þ,@climb|ʵ +ݴζ N shape| +ݶ N attribute|,slope|¶,&inanimate| +ݶ N part|,%army| +ݶ N weapon| +ݼ N part|,%building|,nerve| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,form|״ + N image|ͼ +״ ADJ aValue|ֵ,form|״ + N tool|þ,@climb|ʵ + V clean|ʹ + N part|,%character| + V pick|ʰ + V remove| +޳ V remove| + V kick|߲ + V kick|߲,sport| +߲ V kick|߲ +ߵ V kick|߲ +߽ V kick|߲,sport| + V kick|߲,sport| + N metal| + V MakeEarlier| + V collect|,commercial| + V gather|ɼ + V hold| + V lift| + V mention|ἰ + N part|,%character| + V propose| + V upgrade| +᰸ N text|,$propose|,$discuss|,$debate| + V upgrade| + N tool|þ,cubic|,@put| + V pick|ʰ,patient=PenInk|ī +ᳫ V endorse|ӵ +ᳫ N human|,*improve| + V collect|,commercial| + V propose| + N human|,*propose| +ᴿ V refine|,industrial| +ᵥ N bill|Ʊ,#wealth|Ǯ +ᵽ V mention|ἰ +ᷨ N method|,*express|ʾ + V obstruct|ֹ + N part|,%text|,bone| + V MakeBetter|Ż + V add| + V improve| + V lift| + N language|,#country|,ProperName|ר +ṩ V provide| + V collect|,possession=artifact|˹,commercial| + N bill|Ʊ,#wealth|Ǯ +ἰ V mention|ἰ + V BecomeMore|,scope=price|۸ +ύ V submit| + V collect|,possession=money|,commercial| + N tool|þ,cubic|,@put| + V produce|,industrial| + V refine|,industrial| + V RegardAs| + N human|,*RegardAs| + V lift| + V mention|ἰ + V mobilize| +ǰ V MakeEarlier| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ + N MusicTool| + V request|Ҫ +ȡ V collect| +ȡ V collect|,commercial| +ȡ V collect|,industrial| +ȡ V gather|ɼ +ȡ V gather|ɼ,industrial| +ȡ V obtain|õ + V improve| + V interrogate|,police| + V lift| + V upgrade| +ʾ V persuade|Ȱ˵ +ʾ N symbol| + V ask| + N tool|þ,cubic|,@put| +ĵ V fear| + V write|д + V persuade|Ȱ˵ +ѡ V choose|ѡ +Ҫ N text|,#readings| + V propose| + N text|,$propose|,$discuss|,$debate| + N human|,*propose| + V MakeEarlier| + V gather|ɼ,industrial| + V produce|,industrial| + V guide| + V help| + N part|,%text|,heart| + N part|,%text|,name| + N problem| + V sign|д + N attribute|,content|,&information|Ϣ +ķΧ N attribute|,range|,&content|,#information|Ϣ + V write|д,ContentProduct=text| + N part|,name|,%text| + V sign|д,ContentProduct=name| +Ŀ N part|,%text|,heart| +Ŀ N part|,name|,%text| +Ŀ N problem| +Ϊ V be|,#name| +д V sign|д + V sign|д,ContentProduct=text| + N text|,$sign|д + N part|,%beast|,foot| + N part|,%beast|,foot| + N food|ʳƷ + N part|,%beast|,foot| + V cry|,#bird| + V weep| +伢ź V HungryThirsty| + V weep| +ЦԷ V embarrassed|Ϊ + N attribute|,PhysicState|״̬,&physical| + N attribute|,kind|,&language| + N attribute|,pattern|ʽ,&information|Ϣ + N attribute|,performance|,&language| + N entity|ʵ,generic|ͳ + N part|,%AnimalHuman|,body| + N system|ƶ + N part|,%AnimalHuman|,skin|Ƥ,external| + N attribute|,pattern|ʽ,&information|Ϣ + N fact|,sport| +ٷ N clothing|,*exercise|,sport| +˶Ա N human|,sport| + V understand| +巣 N fact|,punish| + N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N fact|,check|,#physique|,medical|ҽ + V understand| + N attribute|,size|ߴ,&physical| +强 ADJ aValue|ֵ,content|,secret| +强 ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,check|,#physique|,medical|ҽ + N attribute|,pattern|ʽ,&readings| + N attribute|,strength|,&AnimalHuman| +֧ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Ͷ N affairs|,#physique|,engage| + V forgive|ԭ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,location|λ,internal| + N location|λ,%entity|ʵ,body|,internal| + N attribute|,strength|,&AnimalHuman| + N attribute|,physique|,&AnimalHuman| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʽ N attribute|,form|״,&character| +ʽ N attribute|,pattern|ʽ,&information|Ϣ +̬ N attribute|,posture|,&human| +̬ӯ ADJ aValue|ֵ,posture|,gracious|,desired| +̳ N community|,*exercise|,sport| +̳ N community|,sport| + V WellTreat|ƴ +΢ V WellTreat|ƴ,manner=attentive|ϸ +ͳ N attribute|,property|,&human| + ADJ aValue|ֵ,location|λ,external| + N location|λ,%entity|ʵ,body|,external| +ܾ N method|,*cure|ҽ,medical|ҽ +ѭ N method|,*cure|ҽ,medical|ҽ +ζ V enjoy| +λ N location|λ,%body| + N attribute|,temperature|¶,&AnimalHuman| +¼ N tool|þ,*measure|,#temperature|¶ + V fail|ʧ + V wounded| +ϧ V pity| +ϵ N part|,%entity|ʵ,body| + V mean|ָ +У N InstitutePlace|,@teach|,@study|ѧ,#sport|,education| + N attribute|,kind|,&physical| + N attribute|,form|״,&AnimalHuman| + V pity| + V know|֪ +Һ N part|,%AnimalHuman|,liquid|Һ + N affairs|,education|,#physique| + N affairs|,exercise|,sport| + N facilities|ʩ,@exercise|,sport| + N attribute|,behavior|ֹ,#exercise|,#sport|,&human| + N facilities|ʩ,@exercise|,sport| + N affairs|,exercise|,sport| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#sport| + N fact|,exercise|,sport|,education| +Ʒ N tool|þ,*exercise|,sport| +˶ N affairs|,exercise|,sport| + N attribute|,appearance|,medical|ҽ,&AnimalHuman| + N part|,%entity|ʵ,body| +Ƹĸ N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N attribute|,weight|,&AnimalHuman| +ؼ N BecomeLess|,scope=weight| + N BecomeMore|,scope=weight| + V replace| +油 V replace| +油Ա N human|,*replace|,sport| + V replace| +湤 N human|,*replace|,industrial| +滻 V replace| + N entity|ʵ,*replace| + N human|,*replace| + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N part|,%AnimalHuman|,liquid|Һ + V weep| + V weep| + V weep| + V cut| +굶 N tool|þ,*cut|,#hair|ë,*MakeUp|ױ +ͷ V MakeUp|ױ,scope=hair|ë +뵶 N tool|þ,*cut| + N tool|þ,*cut| +֦ N InsectWorm| + N part|,%furniture|Ҿ,cubic|,@put| + N part|,%furniture|Ҿ,cubic|,@put| + ADJ aValue|ֵ,location|λ,upper| + ADJ aValue|ֵ,source|Դ,original|ԭ + N humanized|,desired| + N natural|Ȼ,generic|ͳ + N sky| + N time|ʱ + N time|ʱ,#season| + N time|ʱ,day| + N weather| +찲 N building|,ProperName|ר,(China|й) +찲ų¥ N building|,ProperName|ר,(China|й) +찲Ź㳡 N building|,ProperName|ר,(China|й) + N location|λ,%earth|,edge| + N part|,%earth|,edge| + N place|ط,far|Զ + V WeatherChange| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,ability|,&human| + N human|,able|,desired| +쳤ؾ ADJ aValue|ֵ,duration|,TimeLong| +쳤վ ADJ aValue|ֵ,duration|,TimeLong| +쳵 N machine|,*lift| + N celestial| +촰 N part|,%house| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N natural|Ȼ,enemy| + N attribute|,range|,&event|¼ + N natural|Ȼ,#celestial|,#earth| + N InsectWorm| + N InsectWorm|,*fly| + N bird| + N material|,?clothing|,?tool|þ +췭ظ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +췽ҹ̷ N fact|,wrong| +췽ҹ̷ N readings| +츮֮ N place|ط,rich| +츳 ADJ aValue|ֵ,source|Դ,original|ԭ +ߵغ ADJ attribute|,content|,&event|¼ +һ ADJ aValue|ֵ,distance|,far|Զ +һ V disperse|ɢ +칫 N humanized| +칫 V WeatherBad| +칫ص ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +칬 N facilities|ʩ,space|ռ,humanized| +칵 N part|,%house| + N time|ʱ,day| + N time|ʱ,early|,day| + N celestial|,#humanized|,religion|ڽ +캮ض ADJ aValue|ֵ,temperature|¶,cold| + N celestial| + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,night| + N weather| +컨 N disease| +컨 N part|,%building| +컨 N medicine|ҩ + N human|,royal|,ProperName|ר,(Japan|ձ) +ذ V WeatherBad| +ذ ADJ aValue|ֵ,brightness|,dark| +ذ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ذ V unfortunate| + N fact|,secret| + N part|,%earth|,edge| + N place|ط,city|,ProperName|ר,(China|й) +쾭 ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +쾮 N facilities|ʩ,mine| +쾮 N part|,%building| +쾮 N part|,%house| +쾮 N part|,%house|,space|ռ + N sky| + ADJ aValue|ֵ,color|ɫ,blue| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N part|,%AnimalHuman|,head|ͷ + N attribute|,relatedness|,&human| +֮ N phenomena|,lucky|,desired| + N FlowerGrass| +п ADJ aValue|ֵ,posture|,strong|ǿ,desired| + V WeatherFine| + N aspiration|Ը,#humanized|,#circumstances| + N attribute|,circumstances|,&human|,&organization|֯ +Ļ N sky| +Ļ N tool|þ,#perform| +ϵر ADJ aValue|ֵ,distance|,far|Զ +Ϻ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +Ϻ ADJ aValue|ֵ,distance|,far|Զ + N attribute|,age|,&animate| +ţ N InsectWorm| +ŭԹ V angry| + N house| + N part|,%building| +ƽ N tool|þ,*measure|,#weight| + N weather| +Ԥ N fact|,disseminate|,#weather| +ǵ N waters|ˮ,linear| + N facilities|ʩ,route|· + ADJ aValue|ֵ,color|ɫ,black| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ N material|,gas|,$burn| +Ȼ N natural|Ȼ +֮ ADJ attribute|,similarity|ͬ,different|,&entity|ʵ +ɫ N weather| + N location|λ,%sky| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʦ N human|,religion|ڽ +ʱ N time|ʱ,important| +ʱ N weather| +ʱ˺ N attribute|,ProsCons|,pros|,#time|ʱ,#earth|,#human|,&event|¼ +ʹ N humanized|,desired| + N document|,royal|,past| + N text|,difficult| + N celestial|,#humanized| + N celestial|,generic|ͳ + N time|ʱ,day| +ͥ N part|,%AnimalHuman|,head|ͷ + N humanized| + N human|,able| + N celestial| +ֻ ADJ aValue|ֵ,performance|,strict|,#police| + N knowledge|֪ʶ,#celestial|,#weather| +Ĺ N InstitutePlace|,@look|,#celestial|,#weather| +̨ N InstitutePlace|,*investigate|,#weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#weather| +ѧ N human|,#knowledge|֪ʶ + N attribute|,power|,&entity|ʵ + N place|ط + N place|ط,country|,ProperName|ר,(China|й) +µһ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѻһ V aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѻһ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N humanized|,desired|,female|Ů + N human|,desired|,female|Ů,beautiful| + N place|ط,military| + N tool|þ,linear|,*transmit| + N weather| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V lucky| + N phenomena|,#lucky| + ADJ aValue|ֵ,&behavior|ֹ,original|ԭ + N attribute|,&behavior|ֹ,original|ԭ +ת ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ת V dizzy|,medical|ҽ + N part|,%earth|,edge| +ĺ N part|,%earth|,edge| +޷ ADJ aValue|ֵ,quality|,good|,desired| + N aspiration|Ը,#humanized|,#circumstances| + N sky| +Ԩ ADJ aValue|ֵ,distance|,far|Զ + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +˻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V bury| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +֮ N human|,desired|,*lucky| +ְ N duty| + ADJ knowledge|֪ʶ,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N attribute|,ability|,&human| + N human|,royal| + N celestial| + N sky| + N place|ط,country|,ProperName|ר,(India|ӡ) +ÿ N FlowerGrass| + N beast| + N sound|,#music| + V add| + V enrich|ʵ + V add| +Ӽ N chemical|ѧ + V MakeTrouble| + V enrich|ʵ,commercial| + V obtain|õ,commercial| + V fill| + V write|д + V fill| +...Ŀհ V cover|ڸ + V fill| + V write|д + V fill| + N material|,generic|ͳ,*fill| + V fill| +ƽ V fill| + V fill| + V BlockUp| +д V write|д +Ѽ N bird|,$feed|ι +Ѽ V feed|ι,patient=bird| + N character|,surname|,human|,ProperName|ר + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,circumstances|,&event|¼,hardship|,undesired|ݬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +﹡ N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ +F N beast| + N community|,agricultural|ũ + N land|½,#crop|ׯ,agricultural|ũ + N place|ط,village| +ᄊ N fact|,exercise|,sport| +ᄊ N fact|,exercise|,sport| + V engage|,content=catch|׽ס,#animal|,agricultural|ũ + N fish| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N beast| +Ұ N land|½ +Ұ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +԰ N place|ط,village| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,sweet| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N crop|ׯ,?material| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N fruit|ˮ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +潴 N material|,?food|ʳƷ +Ʒ N food|ʳƷ,sweet| +ʳ N food|ʳƷ,sweet| +ˮ N phenomena|,lucky|,desired| +ˮ N water|ˮ +˿˿ ADJ aValue|ֵ,taste|ζ,sweet|,desired| +˿˿ V joyful|ϲ +ͷ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ͷ N attribute|,taste|ζ,sweet|,&edible|ʳ +ζ N attribute|,taste|ζ,sweet|,&edible|ʳ + N text|,gentle| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V calm| +֪ V shameless|û + ADJ aValue|ֵ,behavior|ֹ,arrogant| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȼ V calm| + V savor| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V CarryOnBack| + V choose|ѡ + V incite|ָʹ + V lift| + N part|,%character| + V pick|ʰ + V touch| + V incite|ָʹ + V separate| + V separate| +̶ V ExpressAgainst|Ǵ + V incite|ָʹ + V entice| + V tease|ȡ +ʼ V choose|ѡ + N human|,#occupation|ְλ,*transport|,employee|Ա + V choose|ѡ + V incite|ָʹ + V choose|ѡ + V incite|ָʹ + V IllTreat| + V incur| +ѡ V choose|ѡ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +ս V incite|ָʹ +ս N human|,*incite|ָʹ + N artifact|˹,commercial| +۶ V IllTreat| + CLAS NounUnit|,&entity|ʵ + N part|,%document| + N part|,%plant|ֲ,limb|֫ + N shape| + N furniture|Ҿ,space|ռ,@put| + V spread|,agricultural|ũ + V analyze| + N mark|־ + N regulation| + N attribute|,circumstances|,&entity|ʵ + N attribute|,standard|׼,&entity|ʵ + N part|,%regulation| + N attribute|,behavior|ֹ,proper|,desired|,&event|¼ + N regulation| + N regulation| +Ŀ N agreement|Լ +Ŀ N expression| + N material|,?clothing|,?tool|þ + N regulation| + N text|,#regulation| + N image|ͼ + N symbol|,#information|Ϣ +Լ N agreement|Լ + N human|,police| + N readings| + N shape| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,distance|,far|Զ + V look| + V look| + V cross|Խ + V discharge| + V jump| + V shiver| + N SportTool|˶ + V alter|ı,patient=affairs| + N InsectWorm| + N recreation|,entertainment| + V shiver| + V recreation| + V exercise|,sport| + V cross|Խ + V discharge| + V CausePartMove|,PatientPartof=foot| + V exercise|,sport| +С N human|,undesired|ݬ +С N human|,undesired|ݬ + V exercise|,sport| + N tool|þ,*recreation| + V exercise|,sport| +ɡ V exercise| +ɡ V exercise|,sport| +ɡ V fall|,sport|,military| + V jump| + V exercise|,sport| +ˮ V exercise|,sport| +̨ N facilities|ʩ,space|ռ + V recreation| + N SportTool|˶ + V alter|ı,patient=affairs| + V discharge| +Զ V exercise|,sport| +Ծ V jump| +Ծ N human|,*jump| + N InsectWorm| + N InsectWorm| + V apply|ͿĨ + V approach|ӽ + N payment| +߶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V provide| + V approach|ӽ + ADJ aValue|ֵ,content|,proper|,desired| + V BeNear|,partner=skin|Ƥ + V follow| + ADJ aValue|ֵ,content|,accurate|׼,desired| +Ϣ V collect|,commercial| + V subtract|,commercial| + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + N metal| + N weapon|,generic|ͳ +ɽ ADJ aValue|ֵ,trueness|α,true|,desired| + N shape|,flat|,surfacial| + N PenInk|ī,*write|д + N tool|þ,*carve| + N SportTool|˶ + N fact|,*exercise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N part|,%building|,eye| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N army|,*build|,#facilities|ʩ + N institution|,transport|,ProperName|ר,politics| + N tool|þ,*fix|ס,metal|,acute| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N affairs|,#earn|׬,#alive|,#occupation|ְλ,safe| +˶ ADJ aValue|ֵ,behavior|ֹ,stubborn| +˶ ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N human|,undesired|ݬ,greedy|̰ + N material|,metal| + N human|,desired|,lasting| +Ͻ N metal| + N tool|þ,*fasten|˩ + N clothing|,*protect|,#body|,#fight| + N material|,*protect|,#body|,#fight| + N human|,#occupation|ְλ,industrial| + N InstitutePlace|,mine| + N stone|ʯ,mine| +ʯ N stone|ʯ,mine| +ľ N wood|ľ,material| + N tool|þ,linear|,*fasten|˩ + N tool|þ,police|,#crime|,#foot|,*detain|ס +· N facilities|ʩ,route|· +·ְ N human|,#occupation|ְλ,industrial| + N part|,%building|,mouth| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ţ N machine|,#crop|ׯ +Ƥ N material|,metal| + N army| + N tool|þ,generic|ͳ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,color|ɫ,BlueGreen|,undesired|ݬ + N tree| + ADJ aValue|ֵ,kind|,special| +ˮ N metal|,liquid|Һ +˿ N tool|þ,linear| +˿ N facilities|ʩ,space|ռ,military|,@defend| +˿ N tool|þ + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,space|ռ +м N metal|,small|С + N phenomena|,OutOfOrder|,#metal| +֤ N information|Ϣ,*prove|֤ +ĥ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N letter|ż + N letter|ż,*invite| + N publications|鿯 + N part|,%organization|֯ + N room| + N human|,#occupation|ְλ,official| + N room| + V listen| + V obey|ѭ + V perception|֪ + N tool|þ,cubic|,@store| + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ + N human|,#occupation|ְλ,employee|Ա,past| + V obey|ѭ + V perception|֪ + V understand| + V ignorant|֪,#listen| + V wait|ȴ + ADJ obey|ѭ + V perception|֪ + V listen|,content=text| + V study|ѧ,education| + N experience|,#listen| + ADJ aValue|ֵ,ability|,able|,listen| + V study|ѧ,education| + N attribute|,ability|,#listen|,&AnimalHuman| + V obey|ѭ +ƾ V indulge| +Ա V indulge| +Ȼ V indulge| + V be| +ȡ V listen| + V indulge| +˵ V perception|֪ + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +Ͳ N tool|þ,*listen| +Ͳ N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V believe| + V wait|ȴ,content=information|Ϣ + N human|,*listen| + V method|,*diagnose|,#listen|,medical|ҽ + N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V control|,patient=power| +֮֮ V indulge| + N human|,*listen| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N chemical|ѧ +͡ N land|½ +͢ N institution|,official|,past| +͢ N place|ط,capital|,ProperName|ר,(Bhutan|) +ͣ V CeaseSelfMove|ֹ +ͣ V TurnOff|ֹ +ͣ V cease|ͣ +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V stay|ͣ +ͣ V end|ս +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ N tool|þ,*tell|,#time|ʱ +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣ V cease|ͣ,content=produce| +ͣ V end|ս,industrial| +ͣ V put| +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,*put|,#LandVehicle| +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣ V finish| +ͣ V TurnOff|ֹ,experiencer=electricity| +ͣ N phenomena|,TurnOff|ֹ,#electricity| +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V cease|ͣ,content=fly| +ͣ V cease|ͣ,content=affairs| +ͣ V cease|ͣ,content=transport| +ͣ V cease|ͣ,content=fight|,military| +ͣƺ N facilities|ʩ,space|ռ,*put|,#aircraft| +ͣ V cease|ͣ,content=build| +ͣ V cease|ͣ,content=publish| +ͣ V stay|ͣ +ͣ V cease|ͣ,content=education|,education| +ͣ V put| +ͣ V stay|ͣ +ͣˮ V TurnOff|ֹ,content=liquid|Һ +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣϢ V end|ս +ͣϢ V stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣЪ V cease|ͣ +ͣЪ V cease|ͣ,content=affairs|,commercial| +ͣЪ V end|ս +ͣЪ V rest|Ϣ +ͣѧ V cease|ͣ,content=study|ѧ,education| +ͣѧ V discharge| +ͣҵ V cease|ͣ,content=affairs|,commercial| +ͣ ADJ aValue|ֵ,content|,neat|,desired| +ͣ ADJ aValue|ֵ,form|״,even|,desired| +ͣ V cease|ͣ,content=transport| +ͣս V cease|ͣ,content=fight|,military| +ְͣ V dismiss| +ֹͣ V CeaseSelfMove|ֹ +ֹͣ V cease|ͣ +ֹͣ V end|ս +ͣ V CeaseSelfMove|ֹ +ͣ V end|ս +ͣͲǰ ADJ aValue|ֵ,ability|,unable|ӹ,prosper| +ͣ V cease|ͣ +ͤ N facilities|ʩ,space|ռ +ͤͤ ADJ aValue|ֵ,posture|,upright| +ͤͤ ADJ aValue|ֵ,posture|,gracious|,desired| +ͤ ADJ aValue|ֵ,content|,neat|,desired| +ͤ N facilities|ʩ +ͤ N facilities|ʩ,space|ռ +ͤӼ N room|,small|С +ͥ N institution|,official|,police| +ͥ N part|,%house|,space|ռ +ͥ N human|,#occupation|ְλ,official|,police| +ͥ԰ N facilities|ʩ,space|ռ,#FlowerGrass| +ͦ V CausePartMove| +ͦ ADV aValue|ֵ,degree|̶,ish| +ͦ ADJ aValue|ֵ,form|״,straight|ֱ +ͦ V endure| +ͦ ADJ aValue|ֵ,posture|,upright|,desired| +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ͦ V GoForward|ǰ +ͦ V exercise|,sport| +ͦ ADJ aValue|ֵ,form|״,level|ƽ +ͦ V stand|վ +ͦ V CausePartMove|,PatientPartof=body| +ͦ V GoOut|ȥ,manner=brave| +ͦ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ֱͦ V CausePartMove| +ֱͦ ADJ aValue|ֵ,posture|,straight|ֱ +ͧ N ship| +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ N character|,surname|,human|,ProperName|ר +ͨ V communicate| +ͨ V connect| +ͨ V dredge|ͨ +ͨ N human|,able|,desired| +ͨ V know|֪ +ͨ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V tell| +ͨ V disseminate| +ͨ V excrete|й,patient=waste| +ͨ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ͨ N human|,able|,desired| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,frequency|Ƶ,regular| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,property|,^$BlockUp| +ͨ V function|,experiencer=LandVehicle| +ͨ V become|Ϊ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨ N facilities|ʩ,route|· +ͨ V betray| +ͨ V function|,experiencer=electricity| +ͨ V tell| +ͨ N place|ط,city| +ͨ V read| +ͨ V DoSum| +ͨ V clean|ʹ,scope=gas| +ͨ籨 V tell|,content=information|Ϣ,manner=secret| +ͨ V machine|,*clean|ʹ,#gas| +ͨ羮 V facilities|ʩ,*clean|ʹ,#gas|,mine| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V announce| +ͨ ADV aValue|ֵ,range|,all|ȫ +ͨ V accept| +ͨ V cross|Խ +ͨ PREP {means} +ͨ V function|,experiencer=vehicle|ͨ +ͨ V associate| +ͨ ADJ aValue|ֵ,color|ɫ,red| +ͨ V talk|̸ +ͨ V GetMarried| +ͨ N money| +ͨ N phenomena|,#money|,BecomeLess|,commercial| +ͨ N phenomena|,#money|,BecomeMore|,commercial| +ͨ V catch|׽ס,police| +ͨ V endeavour| +ͨ V cooperate|,manner=endeavour| +ͨ V associate| +ͨ V relate|й +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ V announce|,content=text| +ͨ N text|,*order| +ͨ· N facilities|ʩ,route|· +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,range|,all|ȫ +ͨ V clean|ʹ,scope=gas| +ͨ V communicate| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V know|֪ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨȨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ͨ N human|,able|,desired| +ͨ V adjust| +ͨ V endorse|ӵ +ͨ V provide| +ͨ V associate|,commercial| +ͨ N part|,%AnimalHuman|,body| +ͨʷ N fact|,#time|ʱ +ͨ˳ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ׻ V AlterProperty|,PatientAttribute=ordinary| +ͨ׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +ͨ N physical| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͨͨ ADV aValue|ֵ,range|,all|ȫ +ͨͬ V collude| +ͨ͸ ADJ aValue|ֵ,content|,detailed|,desired| +ͨ; N facilities|ʩ,route|· +ͨ V LeadTo|ͨ +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨﵩ ADJ aValue|ֵ,duration|,TimeLong| +ͨ V know|֪ +ͨķ N food|ʳƷ +ͨ V communicate|,instrument=letter|ż +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +֤ͨ N document|,*agree|ͬ,#SelfMove| +ͨѶ N affairs|,communicate| +ͨѶ V communicate| +ͨѶ¼ N document| +ͨѶ N institution|,#news| +ͨѶ N facilities|ʩ,#communicate| +ͨѶ N aircraft|,#communicate| +ͨѶԱ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ͨҹ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,property|,$exchange|,#use| +ͨ ADJ aValue|ֵ,property|,$use|,extensive| +ͨ V function|,experiencer=affairs| +ͨ N law|ɷ +֪ͨ V tell| +֪ͨ N document|,*tell| +֪ͨ N document|,*tell| +ͨ N facilities|ʩ,route|· +ͨ N document|,*tell|,#fight| +ͩ N tree| +ͩ N material|,liquid|Һ +ͪ N chemical|ѧ +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͬ V BeSame|ͬ +ͬ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ COOR {and|} +ͬ PREP {coagent} +ͬ PREP {contrast} +ͬ PREP {partner} +ͬ N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,attachment|,alike| +ͬ N human|,*study|ѧ,education|,friend| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,clan| +ͬ N human|,#country| +ͬ ADJ aValue|ֵ,clan|,alike| +ͬ V pity|,target=EachOther|໥ +ͬ ADJ aValue|ֵ,speed|ٶ,alike| +ͬ ADJ aValue|ֵ,time|ʱ,alike| +ͬ N machine| +ͬ N machine| +ͬ V hate|,manner=together|ͬ +ͬ N human|,*study|ѧ,education|,friend| +ͬ V study|ѧ,manner=together|ͬ,education| +ͬ V differ|ͬ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬѧ ADJ aValue|ֵ,status|,alike|,#education| +ͬѧ N attribute|,rank|ȼ,#study|ѧ,alike|,&human| +ͬԼ ADJ aValue|ֵ,power|,alike| +ͬҪ ADJ aValue|ֵ,importance|,alike| +ͬ ADJ aValue|ֵ,clan| +ͬ V mating| +ͬĸ ADJ aValue|ֵ,clan| +ͬʹ V undergo|,manner=together|ͬ,content=circumstances| +ͬ N emotion|,alike| +ͬͬ N payment|,alike| +ͬ V BeSame|ͬ,scope=result| +ͬھ V perish|,manner=together|ͬ +ͬ V engage|,manner=together|ͬ +ͬ V ize|̬,PatientAttribute=alike|,medical|ҽ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ N attribute|,rank|ȼ,BeSame|ͬ,&education| +ͬôѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ͬ V alive|,manner=together|ͬ,#GetMarried| +ͬ V reside|ס,manner=together|ͬ +ͬ ADJ aValue|ֵ,kind|,alike| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,age|,alike| +ͬ V collude| +ͬ· V walk|,manner=together|ͬ +ͬ ADJ aValue|ֵ,relatedness|,intimate| +ͬ˹ N place|ط,country|,*ally|,military| +ͬ˻ N community|,politics|,(China|й) +ͬı V engage|,content=crime|,manner=together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,age|,alike| +ͬ N time|ʱ,year|,alike| +ͬ N time|ʱ +ͬ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͬ V pity| +ͬ N emotion|,pity| +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ N time|ʱ,alike| +ͬʱ CONJ {supplement|ݽ} +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬ V engage|,manner=together|ͬ +ͬ N human|,*engage|,together|ͬ +ͬҲٸ V fight|,#family| +ͬ ADJ aValue|ֵ,age|,alike| +ͬλ N part|,%physical| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ ADJ aValue|ֵ,form|״ +ͬͬ V ally| +ͬЭ V cooperate| +ͬ V SelfMoveInManner|ʽ,manner=together|ͬ +ͬ ADJ aValue|ֵ,occupation|ְλ,alike| +ͬ N human|,#occupation|ְλ,alike| +ͬ N fact|,love| +ͬ N human|,love| +ͬѧ N human|,*study|ѧ,education|,friend| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬҵ N community|,commercial| +ͬһ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬһ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ͬ V agree|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike|,#information|Ϣ +ͬ N expression| +ͬ N attribute|,similarity|ͬ,alike|,&sound| +ͬԴ ADJ aValue|ֵ,source|Դ,alike| +ͬԴ ADJ aValue|ֵ,source|Դ,original|ԭ +ͬ־ N human|,friend|,*engage|,together|ͬ +ͬ۹ V ally| +ͬ N material|,linear|,@transmit| +ͬס N human|,*reside|ס,together|ͬ +ͬ ADJ aValue|ֵ,clan| +ͭ N metal| +ͭ N money| +ͭ N tool|þ,*print|ӡˢ +ֽͭ N paper|ֽ +ͭ N MusicTool| +ͭ© N tool|þ,*tell|,#time|ʱ +ͭ N human|,#occupation|ְλ,industrial| +ͭ N chemical|ѧ +ͭɫ ADJ aValue|ֵ,color|ɫ,green| +ͭģ N tool|þ +ͭ N tool|þ,*reward|,$GiveAsGift|,desired| +ͭ N tool|þ,generic|ͳ +ͭǮ N money| +ͭ˿ N tool|þ,linear| +ͭ N image|ͼ,$carve| +ͮ ADJ aValue|ֵ,color|ɫ,red| +ͮ N CloudMist| +ͯ N character|,surname|,human|,ProperName|ר +ͯ N human|,young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯ N text|,humanized| +ͯ N experience|,#young|,ignorant|֪ +ͯ N time|ʱ,#young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯɽ N land|½ +ͯ N sound|,#music|,#young| +ͯ N emotion|,young| +ͯϱ N human|,family|,female|Ů +ͯװ N clothing|,#young| +ͯ N human|,young| +ͯӼ N bird| +ͯӾ N human|,young|,#military| +ͯ ADJ aValue|ֵ,behavior|ֹ,fair|,desired|,commercial| +Ͱ CLAS NounUnit|,&physical| +Ͱ N tool|þ,cubic|,@put| +Ͱ״ ADJ aValue|ֵ,form|״ +ͱ V reveal|¶ +ͱ V stab| +ͱ¦ V err| +ͱ V err| +Ͳ CLAS NounUnit|,&physical| +Ͳ N part|,%clothing| +Ͳ N part|,%tree|,body| +Ͳ N shape| +Ͳ״ N FlowerGrass| +Ͳ N shape| +ͳ V include| +ͳ V merge|ϲ +ͳ ADJ qValue|ֵ,amount|,all|ȫ +ͳ N room|,%vehicle|ͨ +ͳ N attribute|,name|,generic|ͳ,&entity|ʵ +ͳ V plan|ƻ +ͳ ADJ aValue|ֵ,range|,all|ȫ +ͳ ADJ aValue|ֵ,performance| +ͳ V calculate| +ͳƱ N account| +ͳƾ N institution|,*calculate|,ProperName|ר,politics| +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N quantity|,amount|,&calculate| +ͳѧ N knowledge|֪ʶ,#calculate| +ͳѧ N human|,#knowledge|֪ʶ +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N fact|,exam| +ͳ N human|,military|,official| +ͳ V order| +ͳ V order| +ͳ N location|λ,@LieDown| +ͳ˧ N human|,#occupation|ְλ,official|,military| +ͳ˧ N part|,%army|,*order| +ͳͳ ADV qValue|ֵ,range|,all|ȫ +ͳϽ V manage| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ͳһ V merge|ϲ +ͳһ N entity|ʵ +ͳһ N attribute|,content|,neat|,&entity|ʵ +ͳһս N community|,ally| +ͳһ N human|,*merge|ϲ +ͳս N community|,ally| +ͳս N part|,%community| +ͳ V control| +ͳ V manage| +ͳ N human|,*manage| +ʹ ADJ aValue|ֵ,degree|̶,extreme| +ʹ N emotion|,sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V ExpressAgainst|Ǵ +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N location|λ,#experience|,undesired|ݬ,#unfortunate| +ʹ V beat|,manner=fierce| +ʹˮ V beat|,manner=fierce| +ʹ˼ʹ V LookBack|,content=experience| +ʹ˼ʹ V LookBack|,content=painful|ʹ +ʹ V disgust| +ʹ N disease| +ʹǰ V amend|,content=wrong| +ʹ V perception|֪ +ʹ V disgust| +ʹ V painful|ʹ +ʹ V weep| +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N phenomena|,undesired|ݬ +ʹ V unfortunate| +ʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹ V satisfied| +ʹʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹϧ V sorry|ϧ +ʹ V sorrowful| +ʹļ V repent|û +ʹ N attribute|,importance|,&thing| +ʹ N phenomena|,hardship|,undesired|ݬ +͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵ V steal|͵,crime| +͵ V slack|͵ +͵ V steal|͵,crime| +͵ V cross|Խ,#crime| +͵ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +͵ʴ V WorthNot|ֵ +͵ V look|,manner=secret| +͵ N human|,*look|,secret|,undesired|ݬ +͵ V use|,patient=time|ʱ +͵ V obtain|õ,means=steal|͵,crime| +͵ V slack|͵ +͵ ADJ slack|͵ +͵ V deceive|ƭ +͵ V steal|͵,crime| +͵ V ShowLove|ʾ,manner=secret| +͵ȡ N human|,*steal|͵,undesired|ݬ,crime| +͵ V alive|,manner=disgraced| +͵˰ V evade|ر,content=expenditure|,crime|,commercial| +͵컻 V deceive|ƭ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵Ϯ V attack|,manner=secret|,military| +͵Ϯ V attack|,manner=sudden|,military| +͵ V rest|Ϣ +͵ V slack|͵ +͵ V look|,manner=secret| +͵Ӫ V attack|,manner=sudden|,patient=place|ط,military| +Ͷ V GoInto| +Ͷ V drop|Ͷ +Ͷ V fit|ʺ +Ͷ V illuminate| +Ͷ V post|ʼ +Ͷ V put| +Ͷ V send| +Ͷ V throw| +Ͷ V admit|,content=crime|,police| +Ͷ V admit|,content=crime|,police| +Ͷ V buy|,possession=guarantee|֤ +Ͷ N human|,*buy|,#guarantee|֤ +Ͷ V SeekRefuge|Ͷ +Ͷʴ V include|,ResultWhole=army|,military| +Ͷҵ绰 N facilities|ʩ,*communicate| +Ͷ V propose|,content=price|۸,commercial| +Ͷ V start|ʼ,content=produce|,industrial| +Ͷ V surrender|,military| +Ͷ V drop|Ͷ,patient=weapon| +Ͷ V throw|,patient=weapon| +Ͷ N human|,*throw|,military| +Ͷ V betray|,military| +Ͷ V post|ʼ +ͶԱ N human|,#occupation|ְλ,*post|ʼ +Ͷ V spend| +Ͷ V submit|,possession=readings| +Ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ͷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷѷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,treacherous|,politics| +Ͷȡ V venture|ð,content=seek|ıȡ +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ V surrender| +Ͷ V surrender|,military| +Ͷ V put| +Ͷ V engage|,content=exam| +Ͷ V SeekRefuge|Ͷ +Ͷ V shoot|,sport| +ͶƱ V drop|Ͷ,patient=document|,time=select|ѡ +ͶƱ V drop|Ͷ,patient=document|,purpose=oppose| +ͶƱ N time|ʱ,day|,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N tool|þ,*drop|Ͷ,#document|,#select|ѡ +ͶƱ޳ V drop|Ͷ,patient=document|,purpose=agree|ͬ +ͶƱվ N facilities|ʩ,space|ռ,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N human|,*select|ѡ +Ͷ V fit|ʺ +Ͷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͷ N fund|ʽ,$provide| +Ͷ V provide|,possession=fund|ʽ +Ͷ V put| +Ͷ V illuminate| +Ͷ V throw| +Ͷ V include| +Ͷʦ V study|ѧ +Ͷ N human|,*exercise| +Ͷ V transmit| +Ͷ V reside|ס +Ͷ V accuse|ظ +Ͷұ V associate|,manner=friend| +Ͷ V drop|Ͷ +ͶЧ V endeavour| +ͶӰ N trace|,#lights| +Ͷ V throw| +Ͷע V put| +Ͷ V provide|,possession=fund|ʽ,commercial| +Ͷ N human|,*provide|,#fund|ʽ,commercial| +ͷ ADJ aValue|ֵ,importance|,important| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ͷ N attribute|,pattern|ʽ,&head|ͷ +ͷ N human|,official| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%event|¼,aspect| +ͷ N part|,%physical|,*surplus|ʣ +ͷ N part|,%physical|,edge| +ͷ N part|,%physical|,head|ͷ +ͷ N part|,%physical|,tail|β +ͷ N part|,%time|ʱ,ending|ĩ +ͷ NUM qValue|ֵ,sequence|,ordinal| +ͷ N part|,%publications|鿯 +ͷͷ N part|,%publications|鿯 +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N fund|ʽ +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%human|,hair|ë +ͷ N part|,%AnimalHuman|,head|ͷ +ͷǹ N part|,%AnimalHuman|,head|ͷ +ͷ N result|,#succeed|ɹ,desired| +ͷ N part|,%AnimalHuman|,bone| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ V dizzy| +ͷ N attribute|,ability|,&human| +ͷ N clothing|,#head|ͷ +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%furniture|Ҿ +ͷ N clothing|,#head|ͷ,*protect| +ͷ N location|λ,InFront|ǰ +ͷ N time|ʱ,past| +ͷ­ N part|,%AnimalHuman|,head|ͷ +ͷ N livestock| +ͷ ADJ aValue|ֵ,reputation|,glorious|,desired| +ͷ N tool|þ,*decorate|װ,#female|Ů +ͷ N human|,desired|,important| +ͷĿ N human|,official|,undesired|ݬ,crime| +ͷ N thinking|˼ +ͷԷ V flurried| +ͷԿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷƤ N part|,%AnimalHuman|,skin|Ƥ +ͷƤ N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷƤм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷѪ V unfortunate| +ͷ N phenomena|,sport| +ͷ N human|,official| +ͷ N material|,linear|,*weave| +ͷ N tool|þ,linear|,*fasten|˩ +ͷʭ N InsectWorm|,undesired|ݬ +ͷ N tool|þ,*decorate|װ +ͷ V painful|ʹ +ͷ N time|ʱ,begin|ʼ,day| +ͷ N time|ʱ,past|,day| +ͷʹ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ͷʹ V painful|ʹ +ͷͷǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N attribute|,occupation|ְλ,&human| +ͷ N image|ͼ,$carve| +ͷм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷ N part|,%event|¼,nerve| +ͷ N bird| +ͷ N livestock| +ͷһ NUM qValue|ֵ,sequence|,ordinal| +ͷ N tool|þ,*MakeUp|ױ +ͷ V dizzy| +ͷ N human|,official| +͸ V GoThrough| +͸ ADJ aValue|ֵ,degree|̶,extreme|,desired| +͸ V appear| +͸ V soak| +͸ V stab| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ ADJ aValue|ֵ,content|,deep|,desired| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ V dredge|ͨ +͸ V reveal|¶ +͸ V reveal|¶,patient=event|¼ +͸ V GoThrough| +͸ N tool|þ,*look| +͸״ ADJ aValue|ֵ,form|״ +͸ ADJ aValue|ֵ,brightness|,bright| +͸ V understand| +͸© V reveal|¶ +͸¶ V reveal|¶ +͸ ADJ aValue|ֵ,clearness|,clear| +͸ N attribute|,clearness|,thing| +͸ƽ N machine| +͸ V dredge|ͨ +͸ V respire| +͸ V GoThrough| +͸ V diagnose|,means=look|,medical|ҽ +͸ N RainSnow|ѩ +͸֧ V collect| +͸֧ V collect|,commercial| +͹ V FormChange|α,StateFin=protruding|͹ +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹ N tool|þ,*print|ӡˢ +͹߽ ADJ aValue|ֵ,form|״ +͹ N part|,%implement| +͹ N part|,%machine| +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹澵 N tool|þ,*look|,#enlarge| +͹͸ N tool|þ,*look|,#enlarge| +ͺ ADJ aValue|ֵ,form|״,blunt| +ͺ ADJ aValue|ֵ,fullness|,empty| +ͺ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ͺ ADJ aValue|ֵ,fullness|,empty|,#hair|ë +ͺ N human|,#disease|,#hair|ë +ͺ N bird| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ V run| +ͻ V change|,manner=sudden| +ͻ N fact|,change| +ͻ V FormChange|α,StateFin=protruding|͹ +ͻ V GoOut|ȥ +ͻ ADJ aValue|ֵ,content|,opened| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͻ V express|ʾ +ͻ N part|,%entity|ʵ,important| +ͻΧ V GoOut|ȥ,LocationIni=surround|Χ +ͻͽ V GoForward|ǰ,manner=fast| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ V attack|,manner=sudden|,military| +ͻ V endeavour| +ͻ N part|,%army| +ͻ N human|,*endeavour| +ͻ N human|,able|,desired| +ͻ˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tunisiaͻ˹) +ͻ˹ N place|ط,capital|,ProperName|ר,(Tunisia|ͻ˹) +ͻ˹ N place|ط,country|,ProperName|ר,(Africa|) +ͻ˹ N human|,(Tunisia|ͻ˹) +ͻ V MakeBetter|Ż +ͻ V split|ƿ +ͻƿ N part|,%place|ط,mouth| +ͻ V happen|,manner=sudden| +ͻ V rise| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻ V happen|,manner=sudden| +ͻΧ V split|ƿ,patient=surround|Χ,military| +ͻϮ V attack|,manner=sudden|,military| +ͻأ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ +ͻأ ADJ aValue|ֵ,height|߶,tall| +ͻ N community|,ProperName|ר,(China|й) +ͼ N image|ͼ +ͼ N image|ͼ,#earth|,#country| +ͼ N image|ͼ,$draw| +ͼ N plans|滮 +ͼ V plan|ƻ +ͼ V seek|ıȡ +ͼ N thought|ͷ +ͼ V try| +ͼ N image|ͼ +ͼ N tool|þ,*print|ӡˢ +ͼ N symbol|,#computer| +ͼ ADJ image|ͼ +ͼ N stationery|ľ,*fix|ס +ͼ N money|,(Mongolia|ɹ) +ͼ N image|ͼ,$draw| +ͼ N stationery|ľ +ͼ N publications|鿯,#image|ͼ +ͼ N image|ͼ +ͼ N attribute|,scene|,&inanimate| +ͼ N text|,*explain|˵ +ͼı V plan|ƻ +ͼƬ N image|ͼ +ͼƬ N image|ͼ,$TakePicture| +ͼ N publications|鿯,#image|ͼ +ͼذ V CauseToAppear|,patient=purpose|Ŀ +ͼ N publications|鿯,mass| +ͼ N InstitutePlace|,@read|,@borrow|,#readings| +ͼݹԱ N human|,#occupation|ְλ,*manage| +ͼ N room|,@read| +ͼ N thing| +ͼIJï ADJ aValue|ֵ,GoodBad|û,good|,desired| +ͼ N image|ͼ +ͼ N image|ͼ +ͼ N image|ͼ,*produce| +ͼ N stationery|ľ +ͼֽ N image|ͼ,*build| +ͽ ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ N human| +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ N human|,*study|ѧ +ͽ N human|,*study|ѧ,#religion|ڽ +ͽ ADJ aValue|ֵ,performance|,walk| +ͽ N human|,*study|ѧ +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ޹ V fail|ʧ +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽȻ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ ADJ aValue|ֵ,behavior|ֹ,#fight| +ͽ N fact|,punish|,#detain|ס,police| +ͽͽ N human|,*study|ѧ,mass| +ͽͽ N human|,*study|ѧ,undesired|ݬ,mass| +; N facilities|ʩ,route|· +; N facilities|ʩ,space|ռ,#tour|,@reside|ס +; PREP {LocationThru} +; N method| +; N location|λ,%route|· +Ϳ V apply|ͿĨ +Ϳ V draw| +Ϳ V remove| +Ϳ N part|,%physical|,skin|Ƥ +Ϳ V alter|ı,manner=apply|ͿĨ +Ϳ N material|,*apply|ͿĨ,generic|ͳ +ͿĨ V apply|ͿĨ +ͿĨ V draw| +Ϳ N character|,surname|,human|,ProperName|ר +Ϳ V apply|ͿĨ +Ϳˢ V apply|ͿĨ +Ϳѻ V draw| +Ϳ֬Ĩ V MakeUp|ױ +Ϳ֬Ĩ V beautify| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + N tool|þ,*cut|,*split|ƿ + N human|,*cut|,*split|ƿ,#livestock| + N human|,undesired|ݬ,*kill|ɱ + N human|,#occupation|ְλ,*cut|,*split|ƿ,#livestock| +¾ V kill|ɱ,crime| +ɱ V kill|ɱ,agricultural|ũ +ɱ V kill|ɱ,crime| + V kill|ɱ,agricultural|ũ +׳ N InstitutePlace|,*kill|ɱ,agricultural|ũ +˰ N expenditure|,#kill|ɱ,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N land|½ + N place|ط,country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Turkmenistan|˹̹) + N stone|ʯ + N human|,undesired|ݬ,unable|ӹ + N bird| +߽ V perish| + N InsectWorm| + N beast| + N material|,?clothing| + N InsectWorm| + N artifact|˹,generic|ͳ + N humanized| + N land|½ +ظĸ V improve|,patient=land|½ + N humanized| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,(Turkey|) + N human|,(Turky|) + N language|,#country|,ProperName|ר + N method| + CLAS NounUnit|,&stone|ʯ + N affairs| + N document|,medical|ҽ,#medicine|ҩ + N human|,crime|,undesired|ݬ,*rob| + V improve|,patient=land|½ + ADJ aValue|ֵ,color|ɫ,yellow| +ʵ N human|,undesired|ݬ,fierce|,official| + N artifact|˹,generic|ͳ + N community|,ProperName|ר,(China|й) + V build| + N affairs|,*build| +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹̹ N human|,(Turkmenistan|˹̹) + N language|,#country|,ProperName|ר +ù N medicine|ҩ +ľ N building| +ľ N affairs|,*build| + N material|,*build| + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + N stone|ʯ +ѧ N knowledge|֪ʶ,#stone|ʯ +ѧ N human|,#knowledge|֪ʶ + N human|,#place|ط +ɫ ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʯ N stone|ʯ +ʯ N stone|ʯ,?material| +ʯ CLAS NounUnit|,&stone|ʯ +˾ N human|,official| +ز N artifact|˹,generic|ͳ +زƷ N artifact|˹,generic|ͳ + N celestial| + N sound|,#language| + V bury| + N regulation|,politics| +ֽ N paper|ֽ + ADJ aValue|ֵ,source|Դ,stone|ʯ + N attribute|,property|,stone|ʯ + N human|,#place|ط + N human|,*reside|ס +ר N human|,#knowledge|֪ʶ +״ ADJ aValue|ֵ,form|״ + N community|,ProperName|ר,(China|й) + V return| + V speak|˵ + V vomit|³ +³ V vomit|³ +¹ V improve| +¶ V reveal|¶ +¶ V tell| +ĭ N part|,%AnimalHuman|,liquid|Һ + V pregnant|,agricultural|ũ +к V StomachTrouble|֢ +Ѫ V bleed|Ѫ +緼 N bird| + N livestock| +ô N disease|,#mouth| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V sorrowful| + V flee|,manner=fast| + N livestock| +βͳ ADJ aValue|ֵ,duration|,TimeShort| + N human|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ qValue|ֵ,amount|,many| + N water|ˮ +ļ ADJ aValue|ֵ,speed|ٶ,fast| +ļ ADJ qValue|ֵ,amount|,many| + N water|ˮ + V PlayWith|Ū + ADJ aValue|ֵ,form|״,round|Բ + N community| + N community|,ProperName|ר + N part|,%army| + N shape|,round|Բ +ų N human|,#occupation|ְλ,official|,entertainment| +ų N human|,#occupation|ְλ,official|,military| +ų N human|,official| +ŶӾ N mental|,#coordinate|Э,desired| +ŷ N material|,?food|ʳƷ +Ż N community|,undesired|ݬ +Ž ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ž V ally| +Žһ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Žһ V ally| +ž V meet| + N fish| + N part|,%fish|,body| + N community| + N fact|,sport| + N fact|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N fish| +Ա N human|,#community| +Ա N human|,#organization|֯ +Բ V meet| +Բ N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + V TakeAway|ᶯ + V deduce| + V delay| + V endorse|ӵ + V push| + V refuse| + V select|ѡ + V turn|Ťת + V urge|ʹ +ƱԴ V investigate| +Ʋ V CauseToGrow|ʹɳ +Ʋ ADJ aValue|ֵ,trueness|α,^true| +Ʋ V deduce| +Ʋ V guess|² +Ƴ N human|,*push|,#LandVehicle| +Ƴ³ V improve| +Ƴ V WellTreat|ƴ +Ƴ V delay| +Ƴ V endorse|ӵ +Ƴ V propose| +ƴ V reject|ؾ +Ƶ V deny| +Ƶ V reverse|ߵ +Ƶ V deduce| +ƶ V choose|ѡ +ƶ V deduce| +ƶ V urge|ʹ +ƶ N attribute|,strength|,&physical| +ƶ N human|,*urge|ʹ +ƶ V deduce| +ƶ V guess|² +ƶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ƶ V deduce| +Ʒ V defeat|սʤ +Ʒ V deny| +Ʒ V reverse|ߵ +ƹ V disseminate| +Ƽ V recommend|Ƽ +Ƽ N human|,*recommend|Ƽ +ƽ V GoForward|ǰ +ƽ V GoForward|ǰ,military| +ƽ V mobilize| +ƽ N material|,*mobilize| +ƽ N human|,*urge|ʹ +ƾ V check| +ƾ V research|о +ƾ V select|ѡ + V deduce| + N attribute|,strength|,&entity|ʵ + V deduce| + V cure|ҽ,means=press|ѹ,medical|ҽ + V think|˼ + V investigate| +ȴ V refuse| + V refuse| + V refuse| + N human|,#occupation|ְλ,police|,*judge|ö + V calculate| +ͷ V MakeUp|ױ,patient=hair|ë +ͷ V MakeUp|ױ,scope=hair|ë + N LandVehicle| + V refuse| + V refuse| +ί V refuse| + V guess|² + V sell|,commercial| +Ա N human|,#occupation|ְλ,*sell|,commercial| +ж V refuse| +ø V believe| + V conduct|ʵʩ +ѡ V select|ѡ + V delay| + V disappear|ʧ + V grow|ɳ + N tool|þ,*MakeUp|ױ + V refuse| +õ N human|,*reject|ؾ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V decline|˥ + V disheartened| +ǰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ V disheartened| + V disheartened| + ADJ disheartened| +Ȼ V disheartened| +ɥ V disheartened| + N attribute|,circumstances|,wane|˥,&entity|ʵ + ADJ attribute|,outlook|ǰ,wane|˥,&thing| + V disheartened| + N food|ʳƷ + N part|,%AnimalHuman|,leg| + N part|,%physical|,leg| +ȶ N part|,%AnimalHuman|,leg| +Ƚ N attribute|,ability|,#walk|,&human| + N part|,%AnimalHuman|,leg| + N human|,crime|,undesired|ݬ + V StripOff|ȥ +ɱ V change| +ɻ V StripOff|ȥ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻʷ N human|,extravagant|,crime|,undesired|ݬ + V StripOff|ȥ +ɫ V AppearanceChange|۱,scope=color|ɫ + V GoBackward| + V MoveItBack| + V cease|ͣ + V decline|˥ + V refuse| + V remove| + V return| + V withdraw|˳ +˱ V escape| +˱ V escape| +˱ V GoBackward|,military| +˱ V GoBackward|,patient=army|,military| +˲ V inferior| +˳ V withdraw|˳,SourceWhole=fact| +˳ V decline|˥ +˳ V withdraw|˳ +˵ V withdraw|˳,SourceWhole=organization|֯,politics| +˹ V withdraw|˳,SourceWhole=community|,commercial| +˻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +˻ ADJ aValue|ֵ,standard|׼,bad| +˻ V decline|˥ +˻ V return| +˻ V exchange| +˻ V GoBack| +˻ V return| +˻ V cease|ͣ,content=GetMarried| +˻ V cease|ͣ,content=community| +˻ V withdraw|˳,SourceWhole=community| +˻ N method|,produce| +˻ V return|,possession=physical|,commercial| +˾ N decline|˥ +˾ V withdraw|˳ +˿ V return|,possession=fund|ʽ +· N facilities|ʩ,linear|,route|·,@GoBackward| +· N space|ռ + V recompense| +Ʊ V coupon|Ʊ֤,commercial| +Ʊ V return|,possession=coupon|Ʊ֤,commercial| + V decline|˥ + V cease|ͣ,content=GetMarried| +ȴ V GoBackward| +ȴ V GoBackward|,military| + V surrender| + V remove|,patient=fever| +ɫ V AppearanceChange|۱,scope=color|ɫ + V remove|,patient=fever| +˰ V return|,possession=expenditure|,commercial| + V GoBackward| +λ V cease|ͣ,content=undertake|,politics| + V withdraw|˳,SourceWhole=army|,military| +ϯ V withdraw|˳,SourceWhole=fact| + V cease|ͣ,content=undertake| +ݽ N payment| + N attribute|,age|,&cease|ͣ,#occupation|ְλ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,*cease|ͣ +ѧ V cease|ͣ,content=study|ѧ,education| + V withdraw|˳,SourceWhole=army|,military| + V cease|ͣ,content=undertake|,politics| +ְ V cease|ͣ,content=undertake| + V swallow| + V take|ȡ +̲ V occupy|ռ +̲ V occupy|ռ,military| +û V cheat|ƭ +û V occupy|ռ + V endure| +ʳ V swallow| + V swallow| + V handle| + N quantity|,amount|,#transport|,&physical| + V KeepSilence|˵ + V swallow| + N place|ط,village| + V reside|ס,military| + V store| +Ϳ V engage|,content=affairs|,agricultural|ũ,military| + V engage|,content=affairs|,agricultural|ũ,military| + V reside|ס,military| + N part|,%AnimalHuman|,body| +β N part|,%AnimalHuman|,body| + N part|,%animal|,tail|β + V delay| + V pull| +ϰ N tool|þ,*wipe| +ϳ N LandVehicle|,$pull| +ϴ N ship|,*pull| +ϴ V pull| +Ϻ V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow|,undesired|ݬ + N machine|,#crop|ׯ,*transport| + V obstruct|ֹ + V relate|й + N ship|,*pull| +ˮ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ˮ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ƿ V owe|Ƿ + N tool|þ,*catch|׽ס,#fish| +洬 N ship|,*catch|׽ס,#fish| +Ь N clothing|,#foot| + V delay| + N human|,*delay| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V ServeAsFoil| + V SupportWeight|ס + V depend| + V entrust|ί + V refuse| + N tool|þ,*SupportWeight|ס +б N place|ط,ProperName|ר +д N reason| +ж N human|,friend|,*engage|,#crime| +ж N InstitutePlace|,*TakeCare|,#young|,#human| +и V depend| +и V entrust|ί +й V deceive|ƭ +й V manage| +й» N part|,%institution|,politics|,(institution|=UN|Ϲ) +лҰ N tool|þ,*SupportWeight|ס,#build| +м N tool|þ,*PropUp|֧ +˹ N InstitutePlace|,*sell|,@buy|,#physical|,commercial| + V entrust|ί + N tool|þ,cubic|,@put|,#edible|ʳ + V entrust|ί +Ҷ N part|,%plant|ֲ,hair|ë + V entrust|ί,ResultEvent=transport| +˵ N bill|Ʊ,*entrust|ί,#transport| + N human|,*entrust|ί,#transport| + N physical|,$transport| +ס V SupportWeight|ס + N tool|þ,*SupportWeight|ס + V StripOff|ȥ + V fall| + V leave|뿪 + V remove| +Ѱ V due| +Ѳ V cease|ͣ,content=produce| +ѳ V leave|뿪 +ѷ N disease| +Ѹ V disease| +Ѹ V succeed|ɹ +ѹ V disconnect| +ѹ V separate|,partner=facilities|ʩ +ѻ V BeIndependent|,partner=computer| +ѽ V lose|ʧȥ,possession=material| +ѽ V separate|,patient=material| +ѽ V separate| +Ѿ N disease| +ѿ V separate| +ѿڶ V speak|˵,manner=sudden| + V disconnect| +Ӵ V disconnect| +Σ ADJ aValue|ֵ,circumstances|,safe|,desired| + V separate|,patient=crop|ׯ,agricultural|ũ + N machine|,*separate|,#crop|ׯ,agricultural|ũ + V remove|,patient=material|,industrial| +© V disappear|ʧ + V fall| +ä V study|ѧ,content=character| +ë V lose|ʧȥ,possession=hair|ë +ë V remove|,patient=hair|ë +ë N medicine|ҩ,*remove|,#hair|ë +ë ADJ aValue|ֵ,property|,remove|,#hair|ë +ñ V StripOff|ȥ,patient=clothing| +ƶ V disconnect|,partner=poor| +ƶ¸ V become|Ϊ,isa=rich| + V due| + V remove|,patient=gas|,industrial| +ɫ V AlterColor|ɫ +ɫ V AppearanceChange|۱,scope=color|ɫ + V leave|뿪 + V fall| + V fulfil|ʵ + V sell| +ˮ V disease| +ˮ V remove|,patient=liquid|Һ +ˮ V remove|,patient=liquid|Һ,industrial| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +̥ V forming|γ +̥ V amend| + V flee| +λ N disease| + V escape|,cause=dangerous|Σ + V disappear|ʧ,#sell|,commercial| + V remove|,patient=chemical|ѧ + V remove|,patient=gas|,industrial| +Ǻ N part|,%animate| +ӱ V appear| + V lose|ʧȥ,possession=hair|ë +֬ V remove|,patient=material|,industrial| + N bird|,^fly| + N bird|,^fly| + N regulation|,politics| + N character|,(China|й) + N tool|þ,*recreation| + V CarryOnBack| + N livestock| + N inanimate|,commercial| + N beast| + V disable|м,partof=body| +ձ V disable|м,partof=body| +ձ N human|,undesired|ݬ,*disable|м +շ N part|,%livestock| +¹ N beast| + N material|,?clothing|,?tool|þ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N human|,undesired|ݬ,*disable|м + N character|,(China|й) +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +׵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Э V coordinate|Э + V CauseToGrow|ʹɳ + N character|,surname|,human|,ProperName|ר + V produce| +ذ N character|,surname|,human|,ProperName|ר +ػ V engage|,agricultural|ũ +ػ N human|,*start|ʼ +ؿ V enlarge| + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +չ V enlarge| + N part|,%AnimalHuman|,liquid|Һ + V vomit|³ + V ExpressAgainst|Ǵ +ĭ N part|,%AnimalHuman|,liquid|Һ + V abandon| +Һ N part|,%AnimalHuman|,liquid|Һ + V dig|ھ +ڳ V dig|ھ +ھ V dig|ھ +ھ N machine|,*dig|ھ +ھDZ V use|,patient=strength| +ڿ˼ V think|˼ +ڿ V satirize| +DZ V use|,patient=strength| +ǽ V MakeTrouble| + ECHO sound| + N beast| + N human|,military| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,form|״,dented| +ݵ N land|½ + ADJ aValue|ֵ,form|״,dented| + N human|,young| + N livestock|,young| + N human|,young| + N fish| + N human|,employee|Ա,young| + N human|,young| + N livestock|,young| + N material|,?building| + CLAS unit|λ,&electricity| +ߵ N tool|þ,*build| +߶ N place|ط,capital|,ProperName|ר,(Liechtenstein|֧ʿ) +߷ N house| +߹ N affairs|,#build| +߹ N human|,#occupation|ְλ,*build|,industrial| +߼ӶŹ N place|ط,capital|,ProperName|ר,(the Upper Volta|ֶ) +߽ N human|,#occupation|ְλ,*build|,industrial| +߽ V destroy| +߽ V end|ս +߽ V perish| + N place|ط,capital|,ProperName|ר,(Malta|) +ֽ N material| + N stone|ʯ +¢ N part|,%building|,skin|Ƥ +¢ N fish| +˹ N material|,gas|,*burn| + CLAS unit|λ,&electricity| + N clothing|,#foot| + N tool|þ,linear|,*fasten|˩ + N clothing|,#foot| +Ͳ N part|,%clothing|,#foot| + N clothing|,#foot| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,form|״,slanted| + N attribute|,SocialMode|,bad|,&human|,&organization|֯ +а N attribute|,SocialMode|,bad|,&human|,&organization|֯ + V alter|ı,StateIni=true|,StateFin=fake|α +ŤŤ ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,kind|,other| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| +װ N tool|þ,*wrap| + N money|,foreign| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| + N place|ط + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + N human|,foreign|,*visit| +Ⲻ N place|ط,city|,other| +ⲿ ADJ aValue|ֵ,location|λ,external| +ⲿ N location|λ,external| +ⲿ N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,location|λ,external| + N part|,%entity|ʵ +ռ N celestial| +ⳤ N human|,#occupation|ְλ,official|,diplomatic|⽻ + V GoOut|ȥ +⴫ V disseminate| +⴫ N readings| + N part|,%computer| + N part|,%LandVehicle|,leg| + N human|,enemy|,foreign| + N place|ط,other| + N human| + N news| + V transport| + N part|,%AnimalHuman|,*listen| + N disease| +ⷽ N human|,foreign| + V apply|ͿĨ + N facilities|ʩ,#ship|,*stay|ͣ +⹫ N human|,family|,male| +⹺ V buy|,source=foreign| + N attribute|,appearance|,&physical| +۱ V AppearanceChange|۱ + ADJ aValue|ֵ,attachment|,external|,country| + N place|ط,country| + N human|,foreign| + N language|,foreign| +Ƥ N part|,%plant|ֲ,embryo| + N attribute|,name|,&entity|ʵ +⻼ N phenomena|,undesired|ݬ + N money|,foreign| +㴢 N fund|ʽ +Ƽ N quantity|,rate|,&money|,commercial| + N artifact|˹,commercial|,foreign|,generic|ͳ +⼮ N attribute|,attachment|,foreign|,&human| + V add| + ADJ qValue|ֵ,amount|,many| + N community| + N place|ط + N room|,%house| +⽻ ADJ aValue|ֵ,attachment|,diplomatic|⽻ +⽻ N institution|,diplomatic|⽻,ProperName|ר,politics| +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,official|,diplomatic|⽻ +⽻ N attribute|,behavior|ֹ,&human|,#diplomatic|⽻ +⽻ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ʹ N community|,official|,diplomatic|⽻ + N image|ͼ,angular| +Բ N image|ͼ + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external|,space|ռ + N place|ط +⾭ó N institution|,*cooperate|,#commercial|,ProperName|ר,politics| +⾰ N scene|,#TakePicture| +⾰ N scene|,#perform| +⾰ N scene|,external| + N army|,foreign| +⿯ N publications|鿯,foreign| + N knowledge|֪ʶ,medical|ҽ + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ + N part|,%physical|,skin|Ƥ + N wealth|Ǯ,$earn|׬ + ADJ aValue|ֵ,source|Դ,foreign| + N human| + N attribute|,strength|,&human|,&organization|֯ + N attribute|,strength|,&inanimate| + V GoOut|ȥ,commercial| +¶ V exposure|¶ + N ship|,foreign| +ò N attribute|,appearance|,&human| +ò N attribute|,appearance|,&physical| +ó N affairs|,commercial|,#country| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ƥ N part|,external| + N human|,family|,female|Ů + N human|,family|,#royal| + N InstitutePlace|,commercial|,industrial| +Ǩ V SelfMove| +ǿи ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + N human|,#space|ռ,foreign| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N human|,#space|ռ,foreign| + N human|,*RelateNot|޹ + N disease|,wounded| + N human|,commercial| + N human|,family|,male| +Ů N human|,family|,female|Ů +ʡ N place|ط,other| + N affairs|,diplomatic|⽻ + N location|λ + N human|,family|,male| +Ů N human|,family|,female|Ů +̥ N part|,%LandVehicle|,leg| + V flee|,LocationFin=foreign| + V flee|,LocationFin=other| + N clothing| + N clothing|,$PutOn| + N part|,%AnimalHuman|,*listen| +ͷ ADJ aValue|ֵ,source|Դ,foreign| +ͷ N location|λ,external| +Χ ADJ aValue|ֵ,location|λ,external| +Χ N part|,%inanimate|,%space|ռ,edge| + N language|,foreign| + N affairs| + N affairs|,#country| + N facilities|ʩ,linear| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N place|ط + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,property|,$transport|,#foreign| + V sell| + N aspiration|Ը,expect|,undesired|ݬ + N image|ͼ,dot| + N humanized| + N attribute|,form|״,&physical| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,undesired|ݬ,unable|ӹ + N information|Ϣ + N fire| + N attribute|,appearance|,&physical| + N attribute|,attire|װ,&physical| + N clothing|,#body| + V MoveItOut| + N cause|ԭ + V use| + N language|,foreign| +Ԯ V help|,source=foreign| + ADJ aValue|ֵ,location|λ,external| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,foreign| + N clothing| + N fund|ʽ +ҵ N InstitutePlace|,commercial|,industrial| + N human|,#space|ռ,foreign| +游 N human|,family|,male| +ĸ N human|,family|,female|Ů +㶹 N part|,%vegetable|߲,embryo|,$eat| +㶹 N vegetable|߲ +㶹 N food|ʳƷ + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N place|ط,curved| + N facilities|ʩ,route|·,curved| +· N facilities|ʩ,route|·,curved| +· N method|, wrong| +· N method|,wrong| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + N place|ط,curved| + N part|,%waters|ˮ,curved| + V WhileAway| + V despise| + V enjoy| + V WhileAway| + V despise| + V enjoy| +ת V BeUnable| + V MakeTrouble| + V venture|ð + V end|ս + V despise| +ְ V despise|,target=duty| + V venture|ð +Է V perish| + N tool|þ,*recreation|,generic|ͳ + V WhileAway| + V venture|ð +Ū V SeekPleasure|Ѱ +ż N tool|þ,*recreation| + V enjoy| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ˣ V WhileAway| +ζ V think|˼ + N tool|þ,*recreation|,generic|ͳ +Ц N fact|,tease|ȡ + N entity|ʵ,generic|ͳ + N tool|þ,*recreation|,generic|ͳ + ADJ aValue|ֵ,behavior|ֹ,mischievous| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +繣 ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +̷ N human|,stubborn|,undesired|ݬ + N human|,stubborn|,undesired|ݬ +缲 N disease|,stubborn| +翹 V resist|,manner=stubborn| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯͷ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ͯ N human|,young|,mischievous| +֢ N disease|,stubborn| + N medicine|ҩ + N shape|,round|Բ + N medicine|ҩ +ҩ N medicine|ҩ + N food|ʳƷ + N shape|,round|Բ + N chemical|ѧ + N chemical|ѧ + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V disappear|ʧ + V finish| + V pay| +걸 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V finish| + V fulfil|ʵ +군 V fail|ʧ + V fulfil|ʵ,patient=text| +깤 V fulfil|ʵ,patient=fact| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V GetMarried| + V finish| +꿢 V finish| + V finish| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| +ȱ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȫ ADV aValue|ֵ,degree|̶,extreme| +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +ȫҪ ADJ aValue|ֵ,importance|,secondary| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N human|,desired|,great|ΰ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V finish| +˰ V pay|,possession=expenditure| +ȫȫ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + N attribute|,wholeness|ȱ,&physical| + N tool|þ,cubic|,@put|,#food|ʳƷ + N furniture|Ҿ,cubic|,@put|,#tool|þ + N furniture|Ҿ,cubic|,@put|,#tool|þ +ܹ N furniture|Ҿ,cubic|,@put|,#tool|þ + V coil| + V condole|° + V pull| + N music|,*condole|° + V TakeBack|ȡ + V rescue| + N text|,*condole|° + V detain|ס +ʫ N music|,*condole|° + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + N time|ʱ,day|,night| + EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,night| + N publications|鿯 + ADJ aValue|ֵ,clan| + N human|,clan| + N fact|,eat|,night| + N LandVehicle|,#night| + N crop|ׯ + V due| + N fact|,eat|,night| + N wind|,night| + N fact|,*recreation| + V GetMarried|,manner=late| + N time|ʱ,day|,night| + ADJ aValue|ֵ,age|,aged| + N time|ʱ,#aged| + N human|,family|,female|Ů + ADJ aValue|ֵ,time|ʱ + N time|ʱ,ending|ĩ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,autumn|,ending|ĩ + N time|ʱ,day|,night| + ADJ aValue|ֵ,physique|,ripe|,late|,agricultural|ũ +˪ N RainSnow|ѩ +ϼ N CloudMist| + N FlowerGrass| + N fact|,eat|,entertain|д + V GiveBirth|,late| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sorry|ϧ +ϧ V sorry|ϧ + ADJ aValue|ֵ,form|״,curved| + CONJ {contrast} + PREP {contrast} + CONJ {contrast} + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,tactful| + V refuse|,manner=tactful| + N text|,tactful| + ADJ aValue|ֵ,behavior|ֹ,tactful| +Ȱ V persuade|Ȱ˵,manner=tactful| +л V refuse|,manner=tactful| +л V reject|ؾ,manner=tactful| +Լ ADJ aValue|ֵ,behavior|ֹ,tactful| +ת ADJ aValue|ֵ,SoundQuality|,good|,desired| +ת ADJ aValue|ֵ,behavior|ֹ,tactful| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,many| + V BeUnable| +䲻 ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N location|λ + ADV aValue|ֵ,degree|̶,extreme| +֮һ NUM qValue|ֵ,amount|,few| + ADJ aValue|ֵ,duration|,TimeLong| +ų ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +Ͳ N tool|þ,*recreation| +Ͳ ADJ aValue|ֵ,kind|,many| +ҵƻ N lights| + N human|,unable|ӹ,undesired|ݬ + N medicine|ҩ +ﳤ N facilities|ʩ,ProperName|ר,(China|й) +¡ N place|ط,city|,ProperName|ר,(Indonesia|ӡ) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ ADJ qValue|ֵ,amount|,many| +ȫ ADJ aValue|ֵ,effect|Ч,superior|,desired| +˿ ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + N event|¼,all|ȫ +´ V lucky| +ºͨ V lucky| + V lucky| +ͨ N human|,able| +ͨ N human|,able|,desired| +޽ ADJ aValue|ֵ,duration|,TimeLong| +ˮǧɽ ADJ aValue|ֵ,distance|,far|Զ + N human|,royal| + ADV aValue|ֵ,degree|̶,extreme| + ADV {neg|} +û ADV {neg|} +ά N facilities|ʩ,#software|,@disseminate|,@communicate|,#information|Ϣ +һʧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + N entity|ʵ + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,capital|,ProperName|ר,(Laos|) + V lucky| +һ N attribute|,circumstances|,dangerous|Σ,undesired|ݬ,&situation|״ +һ NUM qValue|ֵ,amount|,few| +һ ADJ qValue|ֵ,amount|,few| +һ CONJ {condition|} +Ӧ鵤 N medicine|ҩ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,height|߶,tall| + N human|,mass| +һ V ally| +ǧ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N part|,%AnimalHuman|,arm| + N attribute|,strength|,&part|,#AnimalHuman|,#arm| + N part|,%AnimalHuman|,arm| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,area|,wide| + N waters|ˮ,surfacial| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,royal| + N fish| + N human|,male|,undesired|ݬ +˵ EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ +˵ N human|,evil|,undesired|ݬ +˵ N human|,undesired|ݬ + N institution|,royal| + N time|ʱ,#royal| + N human|,royal| + N regulation|,*manage|,#country| + N house|,royal| + N human|,royal| + N house|,royal| + N clothing|,#head|ͷ,royal| + N place|ط,country| + N place|ط,country|,royal| + N human|,royal| + N human|,royal|,female|Ů + N food|ʳƷ,*cure|ҽ + N tool|þ,strong|ǿ,desired|,*win|ʤ +Ȩ N attribute|,power|,royal|,&country| + N human|,royal|,family| + N institution|,royal| + N human|,royal| +λ N attribute|,status|,royal|,&country| + N human|,royal|,male| + N human|,royal|,female|Ů + V defeat|սʤ + V die| + V disappear|ʧ + V flee| + V lose|ʧȥ + V perish| + V die| + V perish| +ū N human|,*lose|ʧȥ,#country| + N humanized|,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + V flee| +ͽ N human|,fierce|,crime|,undesired|ݬ + V rescue| + V IllTreat| + ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + V lavish|˷ +Ļ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ȼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V catch|׽ס + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| + N shape| + N tool|þ,*catch|׽ס,#AnimalHuman| + N InstitutePlace|,commercial|,*sell|,@buy| + N tool|þ,cubic|,@put| +һ ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + N tool|þ,cubic|,@put| +· N facilities|ʩ,#disseminate|,#communicate|,#transport| +· N internet| + V include| + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| +ṩ N InstitutePlace|,*provide|,#internet| +ṩ N InstitutePlace|,*provide|,#internet| + N human|,#internet| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,@exercise|,#(tennis|) + N SportTool|˶,#(tennis|) +Ȧ N community|,sport| + N location|λ,%internet| +̳ N community|,sport| + N shape| +״ ADJ aValue|ֵ,form|״ + V LeaveFor|ǰ + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADV aValue|ֵ,frequency|Ƶ,regular|,past| + ADV aValue|ֵ,direction|,external| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| +Ʊ N bill|Ʊ,#wealth|Ǯ,*TakeVehicle|,#aircraft|,ToAndFro| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| + N time|ʱ,future| + V associate| + V ToAndFro| + V associate| + N time|ʱ,past| + N time|ʱ,year|,past| + N time|ʱ,day|,past| + N fact|,past| + ADV aValue|ֵ,frequency|Ƶ,often| + N time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N fire|,strong|ǿ + N time|ʱ,season|,busy|æ,#commercial|,#agricultural|ũ +ʢ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N time|ʱ,month|,busy|æ,#commercial| + N attribute|,reputation|,&human|,&organization|֯ + N celestial| + V expect| + V look| + N time|ʱ,day| + V visit| + N material|,wood|ľ,*build| +Ī V inferior| +ȴ V GoBackward| +η V fear| + V check| + V flee| + V flee| + V perception|֪,means=look| +¥ N facilities|ʩ,@look|,@check| +÷ֹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N engage|,content=affairs|,religion|ڽ +ȥ V look| + N time|ʱ,day| + V look| + V expect| +̾ V BeUnable| +Զ N tool|þ,*look|,#far|Զ + N celestial| +ӳ V expect|,content=succeed|ɹ + V forget| + V forget| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V satisfied| + V forget| + V forget| +꽻 N attribute|,relatedness|,intimate|,&human| +꽻 N human|,friend|,intimate|,desired| + V aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V indulge| +ȴ V forget| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ӳ² V guess|²,manner=rash|ç +ָ V estimate|,manner=rash|ç + N human|,greedy|̰ + N human|,unable|ӹ,undesired|ݬ +ͼ V lavish|˷ + N thought|ͷ,empty|,undesired|ݬ +ԷƱ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce| + N attribute|,strength|,&human|,&organization|֯ + V force|ǿ +ʿ N place|ط,ProperName|ר +ʿ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N attribute|,strength|,&human|,&organization|֯ +˹ N place|ط,city|,ProperName|ר,(Italy|) +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + V frighten|Ż +ʿ N drinks|Ʒ,$addict|Ⱥ +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N attribute|,power|,&human|,&organization|֯,&information|Ϣ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V frighten|Ż +в V frighten|Ż + N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ɨ V unfortunate|,scope=disgraced| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +Ρ ADJ aValue|ֵ,height|߶,tall| +Ρ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ΡȻ V stand|վ,manner=durable| +ΡΡ ADJ aValue|ֵ,height|߶,tall| +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +΢ ADJ aValue|ֵ,quality|,small|С +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ ADJ aValue|ֵ,color|ɫ,white|,light| +΢ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +΢ N shape| +΢¯ N tool|þ,cubic|,@cook| +΢ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N part|,%computer| +΢ N part|,%computer| +΢ N text|,*ExpressDissatisfaction|ʾ +΢һɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| +΢ N computer| +΢ N part|,%physical| +΢ N image|ͼ,$carve| +΢ V adjust| +΢ N knowledge|֪ʶ +΢ N wind|,weak| +΢ ADJ aValue|ֵ,attachment| +΢ N lights| +΢΢ ADJ qValue|ֵ,amount|,few| +΢ N fire|,weak| +΢ N computer| +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +΢ ADJ aValue|ֵ,temperature|¶,chilly| +΢ N fund|ʽ,$earn|׬,commercial| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ N part|,%physical| +΢ N shape|,small|С +΢ ADJ aValue|ֵ,kind| +΢Ԫ N part|,%physical| +΢ã ADJ aValue|ֵ,clearness|,blurred| +΢ N unit|λ,&length| +΢ N unit|λ,&time|ʱ +΢ ADJ aValue|ֵ,content|,refined| +΢ĩ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N InstitutePlace|,#software|,commercial| +΢˾ N InstitutePlace|,#software|,commercial| +΢ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +΢ N character|,surname|,human|,ProperName|ר +΢ N bacteria|΢,generic|ͳ +΢ ADJ aValue|ֵ,taste|ζ,sour|,ish| +΢΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢΢ ADV aValue|ֵ,behavior|ֹ,gentle| +΢ϸ ADJ aValue|ֵ,size|ߴ,small|С +΢С ADJ aValue|ֵ,size|ߴ,small|С +΢Ц V laugh|Ц,manner=gentle| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ͻ N computer| +΢Ѫ N part|,%AnimalHuman|,nerve| +΢Դ ADJ aValue|ֵ,content|,profound|,desired| +Σ N character|,surname|,human|,ProperName|ר +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,capital|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,country|,ProperName|ר,(South America|) +Σ N human|,(Guatemala|Σ) +Σ N building|,dangerous|Σ +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σķ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V damage| +Σ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ +Σ V frighten|Ż +ΣڵϦ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V ill|̬,manner=dangerous|Σ +Σ V ill|̬,dangerous|Σ +Τ N character|,surname|,human|,ProperName|ר +Τ N material|,?clothing|,?tool|þ +Υ V FitNot| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=law|ɷ +ΥҼ V disobey|Υ,content=law|ɷ +ΥΪ N fact|,act|ж,crime|,#police| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ +Υ V disobey|Υ +Υ V err|,sport| +Υ V delay| +Υ V disobey|Υ,content=law|ɷ +Υ V disobey|Υ,content=willing|Ը +ΥԼ V disobey|Υ,content=MakeAppointment|Լ +Υ V disobey|Υ,content=system|ƶ +Υ V disobey|Υ +Φ N part|,%ship| +Φ N tool|þ,#ship|,*illuminate| +Φ N part|,%ship| +Χ V surround|Χ +Χ N clothing|,#head|ͷ +Χ N place|ط,@catch|׽ס,#beast|,agricultural|ũ +Χ V surround|Χ,content=city| +ΧǴԮ V attack|,military| +Χ V attack|,means=surround|Χ,military| +Χ V look| +Χ V protect| +Χ V attack|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ N clothing|,#head|ͷ +Χ V block|ס,means=surround|Χ,military| +Χ N facilities|ʩ,space|ռ,@foster|,#livestock| +Χ£ V ComeTogether| +Χ N furniture|Ҿ,*decorate|װ,*cover|ڸ +Χ N SportTool|˶,*recreation| +Χǽ N part|,%building|,skin|Ƥ +Χȹ N clothing|,#leg|,#cook| +Χ V GoRound|Χ +Χ V surround|Χ +Χ N tool|þ,*catch|׽ס,#fish| +Χκ V help| +Χ N facilities|ʩ,#water|ˮ,space|ռ +Χ V sit| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ V fear| +Ψ² V expect|,content=unfortunate| +Ψͼ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ΨΨŵŵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ΨҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ψ֤ N thinking|˼ +Ψ N thinking|˼ +Ψʷ N knowledge|֪ʶ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψһ ADJ aValue|ֵ,kind|,single| +Ψһ ADJ aValue|ֵ,kind|,special| +Ψ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ω COOR {but|} +Ω ADJ aValue|ֵ,kind|,single| +ΩҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ωһ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ϊ V become|Ϊ +Ϊ V be| +Ϊ V do| +Ϊ V mean|ָ +Ϊ PREP {beneficiary} +Ϊ PREP {cause} +Ϊ PREP {purpose} +Ϊ... V mobilize| +Ϊ... V remove|,patient=bacteria|΢ +Ϊ...ϴ V wash|ϴ,religion|ڽ +Ϊ CONJ {cause|ԭ} +Ϊ V do|,content=crime|,crime| +Ϊ V damage| +Ϊ ADV reason|,question| +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V MakeTrouble| +Ϊ V seek|ıȡ,possession=pros| +Ϊ PREP {purpose} +Ϊ CONJ {purpose} +Ϊ PREP {purpose} +Ϊ V seek|ıȡ,possession=glorious| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ +Ϊ V be|,isa=time|ʱ +ΪڲԶ ADJ aValue|ֵ,duration|,TimeShort| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ˴ N attribute|,behavior|ֹ,&human| +Ϊ V do|,beneficiary=human| +Ϊʦ V worth|ֵ,content=example|ʵ +Ϊ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ϊɶ ADV reason|,question| +Ϊ V MakeLiving|ı +Ϊʱ V be|,isa=time|ʱ +Ϊʱ ADJ aValue|ֵ,earliness|,early|,over| +Ϊʲô ADV {cause|ԭ,question|} +Ϊ V be|,descriptive=official| +Ϊ V AmountTo|ܼ +Ϊ ADJ qValue|ֵ,amount|,few| +Ϊ ADJ qValue|ֵ,amount|,many| +Ϊڶ ADJ qValue|ֵ,amount|,many| +ΪΪ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ϊ V associate| +Ϊ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +Ϊ֮ PP {cause} +Ϊֹ PREP {TimeFin} +Ϋ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ϋ N place|ط,city|,ProperName|ר,(China|й) +ά V connect| +ά V keep| +ά V protect| +ά V keep| +ά N place|ط,capital|,ProperName|ר,(Seychelles|) +ά V endorse|ӵ +ά V protect| +ά N human|,*protect| +ά N material| +άάФ V BeSimilar| +άάФ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +ά N medicine|ҩ,*improve| +άA N medicine|ҩ,*improve| +άB N medicine|ҩ,*improve| +άC N medicine|ҩ,*improve| +άD N medicine|ҩ,*improve| +ά N community|,ProperName|ר,(China|й) +ά N community|,ProperName|ר,(China|й) +άϵ V connect| +άϵ V keep| +ά V improve| +ά V repair| +ά޹ N human|,#occupation|ְλ,*repair| +άҲ N place|ط,capital|,ProperName|ר,(Austria|µ) +έ N FlowerGrass|,?material| +έ N waters|ˮ,#FlowerGrass| +έϯ N tool|þ,@LieDown| +έ N FlowerGrass|,?material| +ή V decline|˥ +ή V decline|˥,agricultural|ũ +ή N disease| +ή V decline|˥,agricultural|ũ +ή V decline|˥ +ή V decline|˥,commercial| +ή V decline|˥,medical|ҽ +ήл V decline|˥ +ήл V decline|˥,agricultural|ũ +ί V CauseToBe|ʹ֮ +ί V TakeAway|ᶯ +ί V entrust|ί +ί V refuse| +ί V tired|ƣ +ί V disheartened| +ί ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Venezuela|ί) +ί N place|ط,country|,ProperName|ר,(South America|) +ί N human|,(Venezuela|ί) +ί V employ| +ί ADJ aValue|ֵ,form|״,curved| +ί N part|,%event|¼ +ίȫ V surrender| +ί V IllTreat| +ί V unsatisfied| +ί V CauseToBe|ʹ֮ +ί N human|,*CauseToBe|ʹ֮ +ίʵ ADV aValue|ֵ,trueness|α,true|,desired| +ί ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ί ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ί V entrust|ί +ίд N human|,*help| +ί N human|,*entrust|ί +ί N document|,*entrust|ί +ί ADJ aValue|ֵ,behavior|ֹ,tactful| +ί V CauseToBe|ʹ֮ +ίԱ N human|,official| +ίԱ N human|,official|,politics| +ίԱ N institution| +ί V IllTreat| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰĴ N affairs|,new|,special|,great|ΰ +ΰ N result|,desired|,#succeed|ɹ +ΰ N attribute|,strength|,strong|ǿ,&entity|ʵ +ΰ N human|,great|ΰ +ΰҵ N affairs|,great|ΰ +ΰҵ N result|,desired|,#succeed|ɹ +α ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α N money|,fake|α +α N money|,undesired|ݬ +α N money|,fake|α +α N army|,undesired|ݬ +α N human|,undesired|ݬ,fake|α +α ADJ aValue|ֵ,quality|,fake|α,undesired|ݬ +α V forge|α +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α V forge|α +αȨ N institution|,undesired|ݬ +α֤ N information|Ϣ,*prove|֤,fake|α,#police| +αװ V cover|ڸ +αװ V cover|ڸ,military| +αװ N method|,&physical|,fake|α,*deceive|ƭ +αװ V pretend|װ +αװ N tool|þ,&physical|,fake|α,*deceive|ƭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical|,*surplus|ʣ +β N part|,%time|ʱ,ending|ĩ +β N human|,*obey|ѭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical| +β N part|,%physical|,tail|β +β N part|,%physical|,tail|β +β N part|,%vehicle|ͨ,*illuminate| +β N InstitutePlace|,mine| +β N gas|,#vehicle|ͨ +β N part|,%event|¼,tail|β +β N part|,music|,ending|ĩ +β N process|,ending|ĩ +β N quantity|,amount|,&inanimate| +β V follow| +β׷ V chase|׷ +β N quantity|,amount|,&inanimate| +β N InsectWorm| +β N part|,%animal|,tail|β +γ N attribute|,distance|,&earth| +γ N attribute|,distance|,&earth| +γ N part|,%clothing|,nerve| +γ N part|,%earth|,nerve| +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,property|,^$provide|,#fund|ʽ +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,property|,^$defeat|սʤ +δ ADJ aValue|ֵ,property|,^$sense|о +δ֪ ADJ aValue|ֵ,property|,^$tell| +δ ADJ aValue|ֵ,property|,^$sense|о +δ ADJ aValue|ֵ,property|,^$block|ס +δ ADJ aValue|ֵ,property|,^$GetKnowledge|֪ +δȾ ADJ aValue|ֵ,property|,^$pollute|ʹ +δ֤ ADJ aValue|ֵ,property|,^$prove|֤ +δ ADV {comment|,neg|} +δ ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +δ֪ V predict|Ԥ +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,age|,young| +δ ADJ aValue|ֵ,physique|,unripe| +δ ADJ aValue|ֵ,property|,^$forming|γ +δ ADJ aValue|ֵ,property|,^$handle| +δ ADJ aValue|ֵ,property|,^$refine| +δû ADJ aValue|ֵ,property|,^$weaken| +δ¼ ADJ aValue|ֵ,property|,^$record|¼ +δȼ ADJ aValue|ֵ,property|,^$lighting|ȼ +δ V unfixed|δ +δ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$publish| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δѡ ADJ aValue|ֵ,property|,^$classify| +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +δͽ ADJ aValue|ֵ,property|,^reconcile| +δ ADJ aValue|ֵ,property|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ N human|,male|,friend|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ ADV aValue|ֵ,earliness|,late| +δ ADJ aValue|ֵ,property|,^$build| +δ¶ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +δ༭ ADJ aValue|ֵ,property|,^$compile|༭ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$request|Ҫ +δ ADJ aValue|ֵ,property|,^$check| +δ˼ ADJ aValue|ֵ,property|,^$think|˼ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$announce| +δҪ ADJ aValue|ֵ,property|,^$request|Ҫ +δ V unfixed|δ +δ V unfixed|δ +δ N human|,crime|,*wait|ȴ,#judge|ö +δ ADJ aValue|ֵ,property|,^$cultivate| +δɺ ADJ aValue|ֵ,standard|׼,average|,desired| +δ ADJ aValue|ֵ,time|ʱ,future| +δ N attribute|,outlook|ǰ,&thing| +δ N time|ʱ,future| +δѧ N knowledge|֪ʶ,#time|ʱ,future| +δ˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +δ ADJ aValue|ֵ,property|,^finish| +δ CONJ {comment|} +δмƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +δĿ¼ ADJ aValue|ֵ,property|,^$classify| +δ ADV aValue|ֵ,degree|̶,ish| +δ׼ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ +δȷ ADJ aValue|ֵ,property|,^$decide| +δȷ֤ ADJ aValue|ֵ,property|,^$decide| +δʱ N time|ʱ,hour|ʱ +δܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +δܾ ADJ aValue|ֵ,property|,^$persuade|Ȱ˵ +δܿ ADJ aValue|ֵ,property|,^$control| +δʶ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^wounded| +δ˵ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$fulfil|ʵ +δ ADJ aValue|ֵ,property|,^finish| +δ ADJ aValue|ֵ,property|,^$consume|ȡ +δ޸ ADJ aValue|ֵ,property|,^$amend| +δڱ ADJ aValue|ֵ,ability|,unable|ӹ,$hide| +δ V prepare|׼ +δԤ ADJ aValue|ֵ,property|,^$predict|Ԥ +δ ADV {neg|,past|} +δ֪ ADJ aValue|ֵ,property|,^$know|֪ +δ֪ N symbol|,#quantity|,^$know|֪ +ε ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ε N character|,surname|,human|,ProperName|ר +ε ADJ aValue|ֵ,color|ɫ,blue| +εȻɷ V prosper| +εΪ V show|,content=exuberant|ï +ζ N attribute|,odor|ζ,&physical| +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion|,FondOf|ϲ +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion| +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N material|,?food|ʳƷ +ζ N experience|,#taste|ζ +η V fear| +η V respect| +η V escape|,ResultEvent=fear| +η V fear| +η N emotion|,fear| +η V fear| +η V fear|,cause=hardship| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ηηβ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V PartSelfMove| +η; N phenomena|,dangerous|Σ,#unfortunate|,undesired|ݬ +η N human|,friend| +η V fear|,cause=crime|,crime| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V fear| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N disease| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N tool|þ,medical|ҽ +θ N aspiration|Ը,expect|,#consume|ȡ +θ N disease| +θ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,nerve| +θ N disease| +θҺ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,viscera| +ι V feed|ι +ι V feed|ι,patient=drinks|Ʒ +ιʳ V feed|ι +ι V feed|ι +ι V foster|,agricultural|ũ +κ N character|,surname|,human|,ProperName|ר +λ CLAS NounUnit|,&human| +λ N attribute|,occupation|ְλ,&human|,royal| +λ N location|λ +λ N mark|־,#arithmetic|ϵ +λ V undertake| +λӰ V succeed|ɹ,scope=compete| +λ V SelfMoveInDirection| +λ V situated| +λ ADJ aValue|ֵ,location|λ,beneath| +λ N location|λ +λ N location|λ +μ N waters|ˮ,linear|,ProperName|ר,(China|й) +ν V naming| +ν V speak|˵ +ν N part|,%language| +ξ N character|,surname|,human|,ProperName|ר +ξ N character|,surname|,human|,ProperName|ר +ξ N human|,#occupation|ְλ,official|,military| +ο V AtEase| +ο V soothe|ο +ο V soothe|ο +ο V soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο ADJ aValue|ֵ,property|,soothe|ο +ο V SayHello|ʺ + N character|,surname|,human|,ProperName|ר + V defend| + N human|,military|,*protect| + N community|,*protect| + V protect|,patient=country| + V defend| + V protect|,patient=status| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,cleanness|ྻ,spotless|,&physical|,&space|ռ,&organization|֯ + N institution|,#medical|ҽ,ProperName|ר,politics| + N room|,@excrete|й + N paper|ֽ,*wipe| + N tool|þ,*obstruct|ֹ,InsectWorm| +Ա N human|,#occupation|ְλ,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ѧ N human|,#knowledge|֪ʶ,medical|ҽ +Ա N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ֽ N paper|ֽ,*wipe| +֯ N part|,%institution|,#medical|ҽ,ProperName|ר,(institution|=UN|Ϲ) +ʿ N human|,*protect| + V defend|,military| + N army| + N place|ط,military|,$defend| + N aircraft| + N celestial| +dz N place|ط,city| + N disease| + N disease| + V WarmUp| + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,temperature|¶,&physical| + N character|,surname|,human|,ProperName|ר + V drill|ϰ +± N attribute|,circumstances|,alive|,&human| +² N attribute|,similarity|ͬ,temperature|¶ +´ N facilities|ʩ,@planting|ֲ +´ N place|ط,@ExistAppear|,@grow|ɳ +´ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +´ N part|,%earth|,warm| +µúͿ N place|ط,capital|,ProperName|ר,(Namibia|ױ) +¶ N attribute|,temperature|¶,&physical| +¶ȱ N tool|þ,*measure|,#temperature|¶ +¶ȼ N tool|þ,*measure|,#temperature|¶ +¸绪 N place|ط,city|,ProperName|ר,(Canada|ô) +º ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +º ADJ aValue|ֵ,temperature|¶,warm| +º ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ȫ N waters|ˮ,surfacial| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N facilities|ʩ,@planting|ֲ +ЧӦ N phenomena|,#weather| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ķ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ϰ V drill|ϰ +Ѫ N AnimalHuman|,generic|ͳ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N place|ط,city|,ProperName|ר,(China|й) +ܰ ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,temperature|¶,warm| + N InsectWorm|,undesired|ݬ,#disease| +ó N InsectWorm|,undesired|ݬ,#disease| + N tool|þ,$burn|,*expel|,#InsectWorm| + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N InsectWorm|,undesired|ݬ,#disease| + ADJ aValue|ֵ,attachment| + N character| + N character|,surname|,human|,ProperName|ר + N language| + N text| +ı N text| +ı N attribute|,style|,&text| +IJ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +IJӵ ADJ aValue|ֵ,quality|,refined|,desired| +IJ N attribute|,ability|,&compile|༭ +IJ N attribute|,ability|,&compile|༭ +ij N human|,undesired|ݬ,*copy|д,*steal|͵ +Ĵ˳ ADJ aValue|ֵ,content|,fluent|,desired| +ĵ N fruit|ˮ +ķ N knowledge|֪ʶ,#language| +ķı N stationery|ľ,generic|ͳ +ķ N attribute|,style|,&text| +ĸ N readings|,#text| +ĸ N text| +ĸ N text|,*announce| +ĸ N text|,*tell| +ĸ N fact|,ProperName|ר,(China|й) +ĸ N fish| +Ĺ N community|,*perform|,entertainment| +Ĺ N human|,#occupation|ְλ,official| +Ĺη V HideTruth| +ĺ N human|,literature|,able|,desired| +Ļ ADJ aValue|ֵ,attachment|,literature| +Ļ N knowledge|֪ʶ +Ļ N mental| +Ļ N institution|,#knowledge|֪ʶ,ProperName|ר,politics| +Ļ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fact|,ProperName|ר,(China|й) +Ļ N InstitutePlace|,@recreation| +Ļ N InstitutePlace|,@recreation| +Ļ N affairs|,literature|,entertainment|,education| +Ļҵ N affairs|,literature|,entertainment|,education| +Ļˮƽ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +Ļ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +ĻŲ N mental| +ĻƷ N stationery|ľ,generic|ͳ +Ļվ N InstitutePlace|,@recreation| +ĻרԱ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fire|,weak|,*cook| +ļ N readings| +ļ N document| +Ľ N affairs|,literature|,entertainment|,education| +ľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ľ N stationery|ľ,generic|ͳ +ľߺ N tool|þ,cubic|,@put|,#PenInk|ī +ľ N human|,#occupation|ְλ,#stationery|ľ,commercial| +Ŀ N knowledge|֪ʶ +Ŀ N readings| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Brunei|) + N place|ط,country|,ProperName|ר,(Asia|) +Ԫ N money|,(Brunei|) + N attribute|,content|,&text| +ä N human|,undesired|ݬ,foolish| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N mental| +Ź N place|ط,#human|,country|,politics| +Ʀ N human|,literature|,undesired|ݬ +ƾ N document|,*prove|֤,#status|,#study|ѧ,education| + N human|,literature| +ī N human|,literature| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʷ N knowledge|֪ʶ + N document| + N human|,#occupation|ְλ,employee|Ա +˼ N thought|ͷ,#text| +̳ N community|,literature| + N attribute|,pattern|ʽ,&text| + N attribute|,style|,&text| + N fact|,#sport|,#literature| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,attachment| + N physical| +ﱣ V protect|,patient=physical| + N readings| +ѡ N readings| +ѧ N affairs|,literature| +ѧ N human|,*compile|༭,literature| +ѧ N community|,literature| +ѧʿ N human|,literature| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N affairs|,literature|,entertainment| +ո N fact|,resume|ָ,#knowledge|֪ʶ +ս N community|,literature|,entertainment| + N human|,friend|,#literature| + N affairs|,entertainment| +Է N community|,literature| +ժ N text| + N text| +ְ N attribute|,occupation|ְλ,&human| +ְԱ N human|,#occupation|ְλ,official| +ʱ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ʱ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N character| + N text| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V perception|֪,#listen| + V smell| +ŷ V perception|֪,content=news| +ŷ V VieFor| +ŷɥ V fear| +Źϲ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N human|,desired|,glorious| +δ ADJ aValue|ֵ,kind|,queer| +Ѷ V perception|֪,content=news| + N trace| + N trace| +· N trace| +˿ ADJ aValue|ֵ,performance| + N metal|,material| + V ShowLove|ʾ,means=CausePartMove| + N fact|,ShowLove|ʾ + N part|,%AnimalHuman|,mouth| +Ǻ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADV {comment|} +Ȳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ȳʤȯ V fixed|Ѷ,content=succeed|ɹ +Ȳʤ V fixed|Ѷ,content=succeed|ɹ +Ȳ N fact|,create|,manner=steady| +Ȳ߲ N fact|,create|,manner=steady| +ȵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ȵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ȶ ADJ aValue|ֵ,circumstances|,safe|,desired| +ȶ V stabilize|ʹ +ȶ N attribute|,behavior|ֹ,steady|,&thing| +ȹ ADJ aValue|ֵ,circumstances|,safe|,desired| +Ȼ V obtain|õ,comment| +Ƚ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ ADJ aValue|ֵ,circumstances|,safe|,desired| +̬ ADJ aValue|ֵ,PhysicState|״̬,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ӯ V defeated|,comment| +Ӯ V win|ʤ,comment| +ȴ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ס V stabilize|ʹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V SayHello|ʺ + V ask| + V interrogate| +ʰ V SayHello|ʺ +ʰ V interrogate|,police| +ʳʶ V ask| +ʵä ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʺů V SayHello|ʺ +ʺ V SayHello|ʺ +ʺ N problem| +ʺ N symbol|,#ask| +ʺ V SayHello|ʺ +ʻ V ask| +ʽ V ask| + V ComeToWorld| + N phenomena|,unfortunate|,undesired|ݬ + N problem| + V FeelNoQualms| + V shy| +ѯ V ask| +Ѷ V ask| + V diagnose|,means=ask|,medical|ҽ + N sound| + N sound| + N character|,surname|,human|,ProperName|ר + N human|,aged|,male| + N human|,intimate|,male| + N tool|þ,cubic|,@put| +֮ N beast|,$catch|׽ס + N InsectWorm| +ϸ N part|,%machine| +Ͼ N house| + N part|,%machine| +ţ N InsectWorm| + N water|ˮ + N water|ˮ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N phenomena|,#weather| + ADJ aValue|ֵ,form|״,curved| + V bend| + V hide| + N house|,#animal|,#alive| + N location|λ + N part|,%human| + N place|ط,crime| +Ѳ V hide| +ѵ N place|ط,crime| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V upset| +ҷ N human|,unable|ӹ,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ͷ N food|ʳƷ +ͷ N food|ʳƷ + N human|,crime|,undesired|ݬ,*hide| + PRON {firstPerson|} +ҷ PRON {firstPerson|,mass|} +ҹ N place|ط,country| +Ҿ N army| + PRON {firstPerson|,mass|} + ADJ aValue|ֵ,behavior|ֹ,lasting| + V rotate|ת + V mediate| + V LieDown| + V sit| +Բ V ill|̬ +Գ N LandVehicle| +Գ N LandVehicle|,@sleep|˯ +Դ V ill|̬ +Դ V ill|̬ +Ե V FallDown| +Ե N human|,#occupation|ְλ,*scout|,police| +Է N room|,@sleep|˯ +Ծ N tool|þ,generic|ͳ,*sleep|˯ + N LandVehicle|,@sleep|˯ +ʽ ADJ aValue|ֵ,posture|,horizontal| + N room|,@sleep|˯ +н V endeavour| + N furniture|Ҿ,@sleep|˯ + V hold| +ձ V farewell| + V ShowLove|ʾ +Ժ V reconcile| +ס V hold|,Vachieve| + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V irrigate|,agricultural|ũ + N language|,#country|,ProperName|ר + N language|,#country|,ProperName|ר + N land|½,#crop|ׯ +Ұ N land|½ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ +ʦ N human|,*deceive|ƭ,undesired|ݬ +ʦ N human|,*deceive|ƭ,~undesired|ݬ + N sound| +غ V die| +غ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +غ V die| +غ V end|ս + V weep| + N metal| + ADJ aValue|ֵ,color|ɫ,black| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Uganda|ڸɴ) + N place|ط,country|,ProperName|ר,(Ukraine|ڿ) + N place|ط,country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(Uzbekistan|α˹̹) +ڶ N language|,#country|,ProperName|ר +ڷ N part|,%human|,hair|ë,black| +ڸɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uganda|ڸɴ) +ڸɴ N place|ط,country|,ProperName|ר,(Africa|) +ڸɴ N human|,(Uganda|ڸɴ) +ڸɴ N money|,(Brunei|ڸɴ) +ڹ N fish| +ڹ N human|,male|,undesired|ݬ +ں֮ N human|,unable|ӹ,mass| +ں ADJ aValue|ֵ,color|ɫ,black| +ڼ N money|,(Mauritania|ë) +ڽ N stone|ʯ,material|,*lighting|ȼ,$burn| +ڿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ukraine|ڿ) +ڿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ڿ N language|,#country|,ProperName|ר + N clothing|,#foot| + N place|ط,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,#country|,(Uruguay|) + N human|,(Uruguay|) + N place|ط,capital|,ProperName|ר,(Mongolia|ɹ) + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N material|,?drinks|Ʒ +³ľ N place|ط,city|,ProperName|ר,(China|й) +÷ N food|ʳƷ +÷ N fruit|ˮ +߰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɴñ N attribute|,occupation|ְλ,&human| +ɴñ N clothing|,#head|ͷ,#official| +а ADJ aValue|ֵ,trueness|α,fake|α +а N place|ط,#humanized| +ѻ N bird| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + N fish| + N CloudMist|,dark|,#WeatherBad| + N fish| +ȱ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹͹ N place|ط,country|,ProperName|ר,(Asia|) +α˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uzbekistan|α˹̹) +α˹̹ N place|ط,country|,ProperName|ר,(Asia|) +α N language|,#country|,ProperName|ר + N tree| + N fish| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V slander|̰ + N stone|ʯ,waste| +۵ N attribute|,quality|,weak|,undesired|ݬ,&thing| +۵ N trace|,viscera| +۹ N stone|ʯ,waste| +ۻ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ۼ N trace|,dirty| + V slander|̰ + N stone|ʯ,viscera| +Ⱦ V pollute|ʹ +Ⱦ N place|ط,$pollute|ʹ +Ⱦ N physical|,*pollute|ʹ +ȾԴ N location|λ,*pollute|ʹ +Ⱦ N human|,*pollute|ʹ + V damage| + V slander|̰ +ˮ N water|ˮ,viscera| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V accuse|ظ,means=forge|α,police| +ܸ V accuse|ظ,means=forge|α,police| +ܺ V slander|̰ + V slander|̰ + V slander|̰ + V damage| + N house|,generic|ͳ + N room| +ݶ N part|,%house|,head|ͷ +ݶ԰ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ + N location|λ,%house| + N location|λ,%room| + N part|,%house| + N house|,generic|ͳ + N human|,*own|,#house| + N room| + N part|,%building|,head|ͷ + V ExistNot| + V OwnNot| +ް ADJ aValue|ֵ,circumstances|,unfixed|δ +ް ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ޱ ADJ aValue|ֵ,kind|,special| +ޱ ADJ aValue|ֵ,range|,extensive| +ޱ޼ ADJ aValue|ֵ,boundary|,wide| +ޱ仯 ADJ aValue|ֵ,property|,^change| +ޱ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į +ޱҶ N part|,%plant|ֲ,hair|ë +޲ V cry| +޲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޲ ADJ aValue|ֵ,range|,all|ȫ +޲ ADJ aValue|ֵ,similarity|ͬ,alike| +޲׼ N community| +޲׼Ļ N fact|,ProperName|ר,(China|й) +޲ N human|,mass| +޳ ADJ aValue|ֵ,ability|,able|,change| +޳ V die| +޳ N humanized| +޳ ADJ aValue|ֵ,price|۸,empty| +޳ ADJ aValue|ֵ,property|,^$pay| +޳ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +޳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޳ ADJ aValue|ֵ,kind|,special| +޴ ADJ aValue|ֵ,quality|,good|,desired| +޴ V BeUnable| +޴ ADJ aValue|ֵ,correctness|,upright|,desired| +޵ ADJ aValue|ֵ,performance| +޵ʿ N human| +޵¹ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵׶ N part|,%inanimate|,mouth| +޵ V shy| +޶ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +޶ ADJ aValue|ֵ,cleanness|ྻ,^poison| +޶ż ADJ qValue|ֵ,amount|,many| +޶ ADJ aValue|ֵ,degree|̶,extreme| +޶ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޶ V IllBehave|,crime| +޷ V BeUnable| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$express|ʾ +޷ش ADJ aValue|ֵ,ability|,unable|ӹ,$reply| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +޷д ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷ƽϢ ADJ aValue|ֵ,ability|,unable|ӹ,$BeRecovered|ԭ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷Ԥ ADJ aValue|ֵ,ability|,unable|ӹ,$predict|Ԥ +޷׷ ADJ aValue|ֵ,time|ʱ,past| +޷ ADV {comment|} +޷IJ N material| +޷ ADV {emphasis|ǿ} +޷ֹ N material|,linear|,metal| +޸ V RelateNot|޹ +޸ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +޹ N human|,desired|,#police| +޹ ADV aValue|ֵ,correctness|,wrong|,undesired|ݬ +޹ CONJ {comment|} +޹ֺ CONJ {comment|} +޹ V RelateNot|޹ +޹ ADJ aValue|ֵ,necessity|Ҫ,redundant| +޹ؽҪ ADJ aValue|ֵ,importance|,secondary| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +޹糵 N LandVehicle| +޹ ADJ aValue|ֵ,attachment|,#country| +޺ ADJ aValue|ֵ,GoodBad|û,good|,desired| +޺ ADJ aValue|ֵ,ProsCons|,pros|,desired| +޻ N fruit|ˮ +޻ N tree| +޻ ADJ aValue|ֵ,content|,simple|,desired| +޻ ADJ aValue|ֵ,kind| +޻ N chemical|ѧ +޻ N chemical|ѧ +޻ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޻̸֮ N text|,fake|α +޼ ADJ qValue|ֵ,amount|,few| +޼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޼ƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +޼ƿʩ V BeUnable| +޼ ADJ aValue|ֵ,behavior|ֹ,secret| +޼ͶƱ N method|,*drop|Ͷ,#document|,#select|ѡ +޼ ADJ aValue|ֵ,range|,extensive| +޼ҿɹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +޼ ADJ aValue|ֵ,value|ֵ,precious|,desired| +޼֮ N physical|,precious| +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +޼ ADJ aValue|ֵ,duration|,TimeLong| +޽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +޽ ADJ aValue|ֵ,degree|̶,extreme| +޾ ADJ aValue|ֵ,behavior|ֹ,lasting| +޾ V FeelingByBad| +޾ V disheartened| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +޿ɰο ADJ aValue|ֵ,ability|,unable|ӹ,$soothe|ο +޿ɱ ADJ aValue|ֵ,kind|,special| +޿ɱ粵 ADJ aValue|ֵ,trueness|α,true|,desired| +޿ɷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɷ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ɺ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɾҩ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ,undesired|ݬ +޿κ V BeUnable| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$resume|ָ +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޿޲ ADJ aValue|ֵ,importance|,secondary| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ָ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ײ V catch|׽ס,patient=time|ʱ +޿ڲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V FeelNoQualms| + V worth|ֵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ȡ V IllBehave| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ͼ ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬ + ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + V tired|ƣ + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ч N attribute|,effect|Ч,useless|,undesired|ݬ,&cure|ҽ,medical|ҽ + CONJ {concession|ò} + CONJ {concession|ò} + ADJ aValue|ֵ,reputation|,Notwellknown| +Ӣ N human|,able|,desired| +Ӣ N human|,military| +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V BeUnable| + CONJ {but|} + V BeUnable| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +ǣ޹ ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| +޾ ADJ aValue|ֵ,range|,extensive| +޾ ADJ qValue|ֵ,amount|,many| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʻ ADJ aValue|ֵ,performance| +˾ס ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N attribute|,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colorless|ɫ +˴ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human| + ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƭ N shows| +ǹ N weapon| +޳ ADJ aValue|ֵ,reputation|,Notwellknown| +Ϣ ADJ aValue|ֵ,reputation|,Notwellknown| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N inanimate| +ʱ޿ ADV aValue|ֵ,frequency|Ƶ,often| +ʵЧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V IllBehave| + V despise| + ADJ qValue|ֵ,amount|,many| +˪ N time|ʱ,#weather| +˫ ADJ aValue|ֵ,kind|,special| +ˮ ADJ aValue|ֵ,dampness|ʪ,waterless| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +˽η ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,ability|,able|,desired| +Ϊ V IllBehave| + ADJ aValue|ֵ,range|,extensive| +֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V flurried| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V slack|͵ +ʴ V ignorant|֪ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν V BeNot| +ν ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ν V despise| +Ϊ V DoNot| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,property| +ʹ ADJ aValue|ֵ,property|,^painful|ʹ +ͷ N fact|,undesired|ݬ,#police| +ͷ N fact|,undesired|ݬ,secret| + ADJ aValue|ֵ,performance| + V succeed|ɹ +ʤ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +֮ N phenomena|,unfortunate|,undesired|ݬ +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ϊ N fact| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +νķ N fact|,secondary|,undesired|ݬ +Ⱦ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,appearance|,^beautiful|,undesired|ݬ + N place|ط,city|,ProperName|ר,(China|й) +Ϣ ADJ aValue|ֵ,property|,^pay| +Ϣ N money|,$lend|,commercial| +϶ɳ ADJ aValue|ֵ,range|,all|ȫ +Ͼ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,extensive|,desired| +޹˾ N InstitutePlace|,commercial| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,performance| +ߵ N tool|þ,*disseminate| +ߵ绰 N tool|þ,*communicate| +ߵ N tool|þ,*look|,#image|ͼ,#shows| +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +иɻ ADJ aValue|ֵ,range|,all|ȫ,desired| +иɻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V unwilling|Ը + ADJ aValue|ֵ,form|״,empty| + ADJ aValue|ֵ,behavior|ֹ,special| +״ ADJ aValue|ֵ,form|״,empty| +ʲ N wealth|Ǯ + ADJ aValue|ֵ,attachment| +ֹ ADJ aValue|ֵ,duration|,TimeLong| + ADV {modality|} + ADV {modality|} + ADJ aValue|ֵ,range|,extensive| +̻ҩ N material|,?weapon| +ú N material|,stone|ʯ,$burn| +Զ V BeUnable|,content=reply| +ҵ V OwnNot|,possession=occupation|ְλ +޿ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,trueness|α,true|,desired| + V unwilling|Ը +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N bird| +Ӱ N tool|þ,*illuminate|,#medical|ҽ +Ӱ ADV aValue|ֵ,property|,disappear|ʧ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ױ ADJ aValue|ֵ,kind|,special| +ԭ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Դ ADJ aValue|ֵ,property|,#electricity| +Ե V OwnNot|,possession=time|ʱ +Ե޹ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ծ ADJ aValue|ֵ,ability|,return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,unable|ӹ,$debate| + N thinking|˼ + N human| + N human|,#thinking|˼ +״̬ N attribute|,circumstances|,disorder|,&country| +֢״ ADJ aValue|ֵ,performance|,#disease| +֤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ N experience|,ignorant|֪ +֪ V ignorant|֪ +ֹ ADJ aValue|ֵ,range|,extensive|,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,performance| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,quality|,negligible| + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,behavior|ֹ,^crime|,#police| + ADJ aValue|ֵ,area|,wide| +覴 ADJ aValue|ֵ,GoodBad|û,good|,desired| + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï + N land|½,#FlowerGrass| +ߺ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + N character|,(China|й) +ͩ N tree| + PRON {firstPerson|,mass|} + PRON {firstPerson|} +٭ PRON {firstPerson|,mass|} + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADV {neg|} + ADV {comment|} +ӹ AUX {modality|,neg|} +ӹ V {modality|,neg|,#KeepSilence|˵} +ӹ V {modality|,neg|,#doubt|} +ӹ׸ V {modality|,neg|,#trivial|} + ADJ aValue|ֵ,courage|,brave|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N fish| + V perform|,sport| +䵱ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +书 N result|,desired|,#succeed|ɹ,military| + N human|,#occupation|ְλ,official|,military|,diplomatic|⽻ +人 N place|ط,city|,ProperName|ר,(China|й) + N fire|,strong|ǿ,*cook| +侯 N human|,#occupation|ְλ,police| + N facilities|ʩ,space|ռ,@store|,#weapon| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fierce|,undesired|ݬ,&organization|֯ + N community|,sport| + N weapon|,generic|ͳ +ר N human|,#knowledge|֪ʶ,#weapon| +װ ADJ aValue|ֵ,standard|׼,useless|,#weapon|,military| +ʿ N human|,past|,military| + N knowledge|֪ʶ,#sport|,(China|й) + N human|,desired| +С˵ N text| + N knowledge|֪ʶ,#sport|,(China|й) +װ N army| +װ V provide|,possession=weapon|,military| +װ N weapon| +װ N army|,generic|ͳ +װͻ V fight|,military| +װ V provide|,possession=weapon|,degree=extreme| +װ V obstruct|ֹ,military| +װ N human|,#occupation|ְλ,police| +װ N army| + NUM qValue|ֵ,amount|,cardinal|,mass| +屶 ADJ qValue|ֵ,amount|,cardinal|,mass| +屶 N FlowerGrass|,?medicine|ҩ,(China|й) + ADJ aValue|ֵ,form|״ +岽 N beast| + ADJ aValue|ֵ,color|ɫ,colored| +ͷ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,hour|ʱ,night| + N crop|ׯ +ȷ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,appearance|,AnimalHuman| + N part|,%human| +ʮɫ ADJ aValue|ֵ,color|ɫ,colored| +ʮɫ ADJ aValue|ֵ,kind|,many| +ĺ N location|λ,%earth| +廨 ADJ aValue|ֵ,kind|,many| +廨 N food|ʳƷ +Ǵ¥ N house|,institution|,#politics|,(US|) + N fittings| + N metal| +𽻵 N fittings| + N fruit|ˮ,$eat| + N attribute|,relatedness|,&human| + N part|,%AnimalHuman|,viscera| +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮЦٲ V BeSimilar| +ζ N attribute|,odor|ζ,&physical| +ζ N FlowerGrass|,?medicine|ҩ,(China|й) + N material|,?food|ʳƷ +ԭ N regulation|,#country|,diplomatic|⽻ +Ǽ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +ɫ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,month| +· N time|ʱ,month| + N part|,%AnimalHuman|,viscera| +ָ N part|,%AnimalHuman|,hand| + N place|ط + N tool|þ,*recreation| + V cover|ڸ + V cover|ڸ,patient=circumstances| + N time|ʱ,afternoon| + N fact|,eat|,afternoon| + N food|ʳƷ +緹 N fact|,eat|,afternoon| +緹 N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + N time|ʱ,afternoon| +ǰ N time|ʱ,early|,day| +ʱ N time|ʱ,hour|ʱ,afternoon| +˯ V sleep|˯ + V rest|Ϣ + N fact|,eat|,#entertain|д +ҹ N time|ʱ,day|,night| + N fact|,recreation|,entertainment| + V recreation|,entertainment| + V shake|ҡ + N shows| + N human|,friend|,*recreation| + N fact|,deceive|ƭ +貽 N attribute|,posture|,perform|,&human| +賡 N InstitutePlace|,@perform|,#shows| + N facilities|ʩ,@perform|,#shows| +赸 N fact|,recreation|,entertainment| +赸 N disease| +赸 N human|,*perform|,entertainment| +赸Ա N human|,#occupation|ְλ,*perform|,entertainment| +趯 V shake|ҡ +趯 V wave|ڶ + N fact|,recreation| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,male|,*recreation| +Ū V shake|ҡ +Ū V wave|ڶ +Ů N human|,#occupation|ְλ,female|Ů,*recreation| + N music| +̨ N facilities|ʩ,space|ռ,@perform|,#shows| + N InstitutePlace|,@perform|,#shows| + N room|,@perform|,#shows| +Ūī V ShowOff|ҫ,content=ability|,literature| +Ūī V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + N attribute|,posture|,#recreation|,&human| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + V damage| + V IllTreat| + V damage| + ADJ aValue|ֵ,property|,IllTreat| + N facilities|ʩ,#city| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ + N symbol| + N CloudMist| + N CloudMist| +״ ADJ aValue|ֵ,form|״,#gas| + V meet| + V meet| +̸ V talk|̸ + N attribute|,content|,&readings|,&information|Ϣ + N entity|ʵ,generic|ͳ + N artifact|˹,generic|ͳ + V die| +ﻯ V die| +ﻻ V change| + N attribute|,price|۸,&thing|,commercial| +۾ N institution|,*manage|,#price|۸,ProperName|ר,politics| + N artifact|˹,generic|ͳ +ᄉ N tool|þ,*look|,#physical| + ADJ aValue|ֵ,content|,substantial|ʵ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N attribute|,strength|,physical|,&organization|֯,&country|,&human| + ADJ aValue|ֵ,price|۸,cheap| +Ʒ N artifact|˹,generic|ͳ +ɫ V LookFor|Ѱ +ɫ V choose|ѡ + N physical|,generic|ͳ + N image|ͼ + N phenomena| + N shape| + N aspiration|Ը,expect| +֤ N information|Ϣ,*prove|֤ + N physical|,generic|ͳ + N mental| + N attribute|,kind|,&animate| + N material|,generic|ͳ + AUX {neg|} + N affairs|,generic|ͳ + V engage| + AUX {modality|} + AUX {modality|} +ũ V engage|,agricultural|ũ +͹ EXPR expression|,*welcome|ӭ + ADV {modality|} +ʵ V handle|,patient=substantial|ʵ +ʹ V CauseToDo|ʹ + V discuss| + V understand| + N attribute|,ability|,#understand|,&human| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V damage| + V lose|ʧȥ + N result|,wrong|,undesired|ݬ + N result|,wrong|,#calculate|,#measure| + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + V due| + V delay|,content=affairs| + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| +; V err| +ɱ V kill|ɱ,manner=careless|,police| + V damage|,manner=careless| + V OutOfOrder| + V delay|,content=affairs| + V misunderstand| +Ϊ V misunderstand| + V diagnose|,wrong|,medical|ҽ + N time|ʱ,past| + N time|ʱ,past| + N time|ʱ,past| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling| + V analyze| + V separate| + V separate| + ADJ aValue|ֵ,source|Դ,foreign| + N direction|,west| + N place|ط,country|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Spain|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Andorra|) + N place|ط,capital|,ProperName|ר,(Trinidad and Tobago|Ͷ͸) + N language|,#country|,ProperName|ר + N part|,%earth|,west| + N direction|,north|,west| + N location|λ,north|,west| + N location|λ,west| + N place|ط,ProperName|ר,(Russia|˹) + N location|λ,west| + N edible|ʳ,foreign| +͹ N InstitutePlace|,@eat|,#foreign|,commercial| + N InstitutePlace|,@eat|,#foreign|,commercial| + N place|ط,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N language|,#country|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N location|λ,ending|ĩ,west| + N FlowerGrass| + N aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,source|Դ,foreign| + N aValue|ֵ,source|Դ,foreign| + N location|λ,west| + N place|ط,ProperName|ר,west|,(Africa|) + N wind| + N clothing|,foreign| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Vietnam|Խ) + N fruit|ˮ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ + V ize|̬,PatientAttribute=foreign| + N part|,%place|ط,surrounding|Χ,#city|,west| + N law|ɷ,#earth| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,#tool|þ,#communicate|,commercial| + N location|λ,west| + N direction|,west|,south| +ϲ N location|λ,west|,south| +Ͻ N location|λ,west|,south| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,west|,(Europe|ŷ) +Ħ N place|ط,country|,ProperName|ר +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ʽ ADJ aValue|ֵ,kind|,foreign| +˹ N language|,#country|,ProperName|ר + N celestial|,#humanized|,religion|ڽ +ͷ N location|λ,west| + N place|ط,ProperName|ר,(Italy|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ N knowledge|֪ʶ +ͼ N place|ط,ProperName|ר,(US|) + N place|ط,ProperName|ר,west|,(Asia|) + ADJ aValue|ֵ,attachment|,foreign| + N FlowerGrass|,?medicine|ҩ +ҩ N medicine|ҩ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N affairs|,medical|ҽ,foreign| +ӡȺ N place|ط,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +װ N clothing|,foreign| +װ ADJ aValue|ֵ,appearance| + N chemical|ѧ + N chemical|ѧ + N disease| + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) + ADJ aValue|ֵ,content|,opened| + ADJ joyful|ϲ + V attract| + V consume|ȡ + V inhale| + N tool|þ,*clean|ʹ,#inhale| + N bacteria|΢ + N tool|þ,*illuminate|,#room| + V addict|Ⱥ,patient=addictive|Ⱥ,crime| + N human|,*addict|Ⱥ,undesired|ݬ + N human|,*addict|Ⱥ,undesired|ݬ + ADJ aValue|ֵ,property|,inhale| + V inhale| + N chemical|ѧ,*clean|ʹ,#inhale| + N tool|þ,#drinks|Ʒ + N attribute|,strength|,&entity|ʵ +īֽ N paper|ֽ,*inhale| + V inhale| +ȡ V GetKnowledge|֪ +ȡ V consume|ȡ +ȡѵ V GetKnowledge|֪,content=experience| + V consume|ȡ,patient=hot| + V inhale| +ʪ V consume|ȡ,patient=wet|ʪ +ʪ ADJ aValue|ֵ,property|,consume|ȡ,#wet|ʪ +ʳ V drink| + V consume|ȡ + V include| +ռ N chemical|ѧ,*clean|ʹ,#inhale| +ϵ N symbol|,#MoveItInto| +˱ V drink| +ʯ N metal| +Ѫ N human|,greedy|̰,undesired|ݬ + V addict|Ⱥ + V room|,@addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ + V attract| + N attribute|,ability|,&attract| + N metal| + N tool|þ,*condole|°,#die| + N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sikkim|) + N place|ط,country|,ProperName|ר,(Asia|) +ֽ N paper|ֽ +ֽ N tool|þ,*condole|°,#die| + V abandon| + V die| + N livestock|,*salute|¾ +Ʒ N entity|ʵ,$abandon| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N food|ʳƷ +ϡ N human|,*visit| +ϡ ADJ aValue|ֵ,hardness|Ӳ,soft| +ϡͿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ϡ ADJ aValue|ֵ,kind|,queer| +ϡȱ ADJ qValue|ֵ,amount|,few| +ϡȱƷ N artifact|˹,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ V dilute|嵭 +ϡͼ V chemical|ѧ,*dilute|嵭 +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,importance|,secondary|,undesired|ݬ +ϡˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N metal| +ϡԪ N part|,%entity|ʵ +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,kind|,queer| +ϡн N metal| +ϡԪ N part|,%entity|ʵ +ϡ N food|ʳƷ +Ϣ V end|ս +Ϣ N fact|,respire| +Ϣ N fund|ʽ +Ϣ V rest|Ϣ +Ϣŭ V calm| +Ϣ N disease| +Ϣ V mediate| +ϢϢ V relate|й +ϣ V expect| +ϣ N place|ط,country|,ProperName|ר,(Greece|ϣ) +ϣ ADJ qValue|ֵ,amount|,few| +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ V like|ϧ +ϣ ADJ qValue|ֵ,amount|,few| +ϣ V expect| +ϣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greece|ϣ) +ϣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ϣ N human|,#country|,ProperName|ר +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ֮ N treasure|䱦 +ϣ N human|,official|,politics|,ProperName|ר,(Germany|¹) +ϣͼ V expect| +ϣ V expect| +Ϥ V know|֪ +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V endeavour| +Ϥ N place|ط,city|,ProperName|ר,(Australia|) +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V do|,manner=attentive|ϸ +ϥ N part|,%AnimalHuman|,leg| +ϥ N part|,%AnimalHuman|,leg| +ϥؽ N part|,%AnimalHuman|,leg| +ϥ ADJ aValue|ֵ,attachment| +ϥ״ ADJ aValue|ֵ,form|״,curved| +Ϧ N time|ʱ,day|,night| +Ϧ N CloudMist| +Ϧ N celestial| +Ϧ V GoDown|ȥ,#celestial| +Ϧ N lights|,#celestial| +Ϧ N lights|,#celestial| +ϧ V grudge| +ϧ V like|ϧ +ϧ V sorry|ϧ +ϧ V farewell| +ϧ V grudge|,content=strength| +Ϩ V destroy| +Ϩ V TurnOff|ֹ,patient=tool|þ +Ϩ V remove|,patient=fire| +Ϩ V disappear|ʧ +ϩ N chemical|ѧ +ϩ N chemical|ѧ +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫˮ N waters|ˮ,linear| +ϫ N water|ˮ +Ϭ N beast| +Ϭ N part|,%AnimalHuman|,*feel| +Ϭ ADJ aValue|ֵ,content|,profound|,desired| +Ϭţ N beast| +ϭ N document|,*call|ٻ,#fight| +ϭ N document|,*ExpressAgainst|Ǵ,#enemy| +ϭ N document|,*call|ٻ,#fight| +Ϯ V attack| +Ϯ V attack|,military| +Ϯ V imitate|ģ +Ϯ V attack|,manner=sudden|,military| +Ϯ N human|,*attack| +Ϯȡ V occupy|ռ,manner=sudden| +Ϯ V attack|,manner=again|,military| +Ϯ V use| +ϯ N character|,surname|,human|,ProperName|ר +ϯ N fact|,eat|,#entertain|д +ϯ N location|λ +ϯ N tool|þ,@LieDown| +ϯϾů ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ϯ ADJ aValue|ֵ,location|λ,place|ط +ϯض ADJ sit|,location=place|ط +ϯ N time|ʱ,#eat|,#entertain|д +ϯ V contain| +ϯ V occupy|ռ +ϯ˼ N tool|þ,@LieDown| +ϯλ N location|λ +ϰ N character|,surname|,human|,ProperName|ר +ϰ V drill|ϰ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ V fit|ʺ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,bad|,&human|,&organization|֯ +ϰȾ V suffer| +ϰȾϰ V suffer|,content=habit|ϰ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N text|,*drill|ϰ +ϰ V drill|ϰ,content=sport| +ϰϰ V WeatherFine| +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰΪ V fit|ʺ +ϰ V study|ѧ,content=symbol| +ϰ V study|ѧ,content=compile|༭ +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,female|Ů,adult| +ϲ V FondOf|ϲ +ϲ N fact|,desired|,$congratulate|ף +ϲ N fact|,pregnant| +ϲ V joyful|ϲ +ϲ V FondOf|ϲ +ϲ N text|,*congratulate|ף,#happy| +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=very| +ϲ V FondOf|ϲ +ϲ V FondOf|ϲ +ϲ V joyful|ϲ +ϲʩ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲָֻ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲ V succeed|ɹ +ϲԵ V GetMarried| +ϲ N drinks|Ʒ,$addict|Ⱥ,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,lucky|,#joyful|ϲ +ϲ N shows|,#joyful|ϲ,entertainment| +ϲԱ N human|,*perform|,entertainment| +ϲɽ N land|½,ProperName|ר,(China|й) +ϲŭ N emotion| +ϲ N attribute|,countenance|,joyful|ϲ,&human| +ϲ N attribute|,environment|,joyful|ϲ,&human| +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V congratulate|ף +ϲ N fact|,desired|,$congratulate|ף +ϲȵ N bird| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲɫ N attribute|,countenance|,joyful|ϲ,&human| +ϲü V joyful|ϲ +ϲ N fact|,$congratulate|ף,desired| +ϲ N fact|,GetMarried|,desired| +ϲ N fact|,desired|,$congratulate|ף +ϲּ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲЦտ V laugh|Ц +ϲ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ϲɫ V joyful|ϲ +ϲɫ V laugh|Ц +ϲѶ N news|,happy| +ϲ V joyful|ϲ +ϲ N RainSnow|ѩ +ϲ V joyful|ϲ +ϲ V joyful|ϲ +ϳ V grind|ĥ,industrial| +ϳ N machine|,*produce| +ϳ N machine|,*cut| +ϳ N fact|,cut| +ϳ N human|,#occupation|ְλ,*cut|,industrial| +ϳ N metal| +ϴ V amend| +ϴ V mix| +ϴ V produce|,#TakePicture| +ϴ V rob| +ϴ V wash|ϴ +ϴ V entertain|д +ϴ V AlterProperty|,PatientAttribute=SoundVolume| +ϴ V wash|ϴ +ϴӼ N tool|þ,*wash|ϴ +ϴ V listen| +ϴ N tool|þ,*wash|ϴ,#hair|ë +ϴ N medicine|ҩ,*wash|ϴ +ϴ V rob| +ϴ V wash|ϴ +ϴ V accept|,religion|ڽ +ϴ N fact|,exam|,important| +ϴ N fact|,religion|ڽ +ϴ V wash|ϴ,patient=skin|Ƥ +ϴȾ V wash|ϴ,AlterColor|ɫ +ϴ V wash|ϴ,patient=hand| +ϴּ V room|,@excrete|й,@wash|ϴ +ϴˢ V amend| +ϴˢ V wash|ϴ +ϴͷ V wash|ϴ,patient=hair|ë +ϴ N tool|þ,*wash|ϴ,#tool|þ +ϴθ V cure|ҽ +ϴĸ V amend|,content=wrong| +ϴѩ V amend| +ϴ V wash|ϴ,patient=clothing| +ϴµ N InstitutePlace|,*wash|ϴ,#clothing|,commercial| +ϴ· N material|,*wash|ϴ,#clothing| +ϴ¹ N human|,#occupation|ְλ,*wash|ϴ,#clothing| +ϴ» N tool|þ,*wash|ϴ,#clothing| +ϴŮ N human|,#occupation|ְλ,*wash|ϴ,#clothing|,female|Ů +ϴӡ V produce| +ϴԡ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ +ϴ V wash|ϴ +ϵ V be| +ϵ V fasten|˩ +ϵ N part|,%InstitutePlace|,education| +ϵ N part|,%entity|ʵ +ϵ N part|,%entity|ʵ,body| +ϵ V relate|й +ϵ V worried|ż +ϵ N part|,%language| +ϵ V wrap| +ϵ CLAS attribute|,amount|,&entity|ʵ +ϵо N shows| +ϵƬ N shows| +ϵ V worried|ż +ϵ N symbol|,#quantity| +ϵͳ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ϵͳ N part|,%entity|ʵ,body| +ϵͳ V analyze|,content=part|,#entity|ʵ,body| +ϵͳ N affairs| +ϵͳ V ize|̬,PatientAttribute=accurate|׼ +ϵͳ N attribute|,correctness|,accurate|׼,&entity|ʵ +ϵָ V mean|ָ +϶ N attribute|,relatedness|,sparse|,&human| +϶ N fact|,oppose| +϶ N part|,%inanimate|,mouth| +϶ N time|ʱ +϶ N time|ʱ,important| +϶ N place|ط +Ϸ V WhileAway| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| +Ϸ N community|,*perform|,entertainment| +Ϸ N shows| +Ϸ N shows| +Ϸ N human|,*compile|༭,#shows|,entertainment| +Ϸ N community|,#compile|༭,#shows|,entertainment| +Ϸ ADJ aValue|ֵ,behavior|ֹ,important| +Ϸ¥ N InstitutePlace|,@perform|,entertainment| +Ϸ N human|,*FondOf|ϲ,#shows| +ϷŪ V tease|ȡ +Ϸ N shows| +Ϸˣ V tease|ȡ +Ϸ̨ N facilities|ʩ,space|ռ,@perform| +Ϸ N text|,tease|ȡ +ϷԺ N InstitutePlace|,@perform|,entertainment| +Ϸװ N clothing|,#perform| +Ϸ V tease|ȡ +ϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,content|,trivial| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸ ADJ aValue|ֵ,size|ߴ,small|С +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸĤ N part|,%animate| +ϸѧ N knowledge|֪ʶ,#animate| +ϸ N part|,%animate| +ϸ N material|,?clothing| +ϸ N part|,%image|ͼ +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ ADJ aValue|ֵ,length|,long| +ϸ N human|,*read| +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ N human|,tall| +ϸ N fact|,secondary| +ϸ N affairs|,attentive|ϸ +ϸ N fact|,secondary|,detailed| +ϸ N bacteria|΢ +ϸ N disease| +ϸѧ N knowledge|֪ʶ,#bacteria|΢ +ϸѧ N human|,#knowledge|֪ʶ,#bacteria|΢ +ϸս N fact|,fight|,#bacteria|΢ +ϸ N material|,?eat|,#crop|ׯ +ϸë N livestock| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,density|ܶ,dense| +ϸĿ N attribute|,content|,&information|Ϣ +ϸĿ N part|,%thing|,kind| +ϸ ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,refined|,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸë ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸɴ N material|,?clothing| +ϸɴ N machine| +ϸϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸˮ ADJ do|,manner=lasting| +ϸˮ ADJ economize|ʡ,purpose=exempt|,#lack|ȱ +ϸ˵ V describe|д +ϸ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ϸ΢ ADJ aValue|ֵ,content|,refined| +ϸϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N material|,?clothing| +ϸС ADJ aValue|ֵ,content|,trivial| +ϸС ADJ aValue|ֵ,size|ߴ,small|С +ϸ N material|,?medicine|ҩ +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N RainSnow|ѩ +ϸ N regulation|,detailed| +ϸ N account| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ֦ĩ N part|,%event|¼,secondary| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N human|,#occupation|ְλ,*scout|,military| +Ϲ ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ϲ ADV aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϲ V disable|м,scope=look| +Ϲ V TalkNonsense|Ϲ˵ +Ϲ V IllBehave| +Ϲ˵ V TalkNonsense|Ϲ˵,manner=fake|α +Ϲָ V guide|,manner=improper| +Ϲ N human|,undesired|ݬ,*disable|м,#look| +Ϻ N fish| +Ϻ N material|,?food|ʳƷ +Ϻ N fish| +Ϻ N food|ʳƷ,#fish| +ϺƤ N food|ʳƷ,#fish| +Ϻ N food|ʳƷ,#fish| +Ϻ N material|,?food|ʳƷ,liquid|Һ +Ϻ N fish| +ϻ N tool|þ,cubic|,@put| +ϻ N tool|þ,cubic|,@put| +ϼ N CloudMist|,colored| +ϼ N lights| +Ͻ V manage| +Ͻ N place|ط,$manage| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| +Ͼ N time|ʱ,idle| +Ͽ N land|½ +Ͽ N land|½ +Ͽ N part|,%land|½,mouth| + N human|,desired| + N human|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,length|,long| +· V meet| +С ADJ aValue|ֵ,width|,narrow|խ + N information|Ϣ + N knowledge|֪ʶ +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,width|,narrow|խ + CLAS ActUnit|,&event|¼ + V GiveBirth| + V GoDown|ȥ + V GoOut|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,sequence|,hind| + V announce| + V cease|ͣ + V dismount|ж + V drop|Ͷ + V fall| + V forming|γ + V leave|뿪 + N location|λ + V occupy|ռ + ADJ qValue|ֵ,amount|,few|,more| + V recreation| + STRU {Vdirection|,beneath|} +° N part|,%AnimalHuman|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° V cease|ͣ,content=affairs|,#duty| +°볡 N fact|,compete|,sport|,hind| +° N time|ʱ,year|,half|,hind| +° V put|,patient=mark|־ +° N time|ʱ,afternoon| +° N location|λ,%human|,body|,half|,beneath| +° N part|,%human|,body|,half|,beneath| +°ҹ N time|ʱ,day|,night|,half|,hind| +° N time|ʱ,month|,half|,hind| +± N human|,clan| +± V write|д +± ADJ aValue|ֵ,sequence|,hind| +± N community|,#rank|ȼ,LowRank|͵,employee|Ա +² V BeUnable|,content=GoDown|ȥ +² V BeUnable|,content=fulfil|ʵ +²̨ V embarrassed|Ϊ +²Ϊ ADV aValue|ֵ,behavior|ֹ,only| +² N part|,%physical|,beneath| +² N method|,useless|,undesired|ݬ +² N attribute|,status|,LowRank|͵,&human| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#compete|,sport| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#perform|,entertainment| +³ N result| +³ V leave|뿪,LocationIni=LandVehicle| +³ V sink|³ +´ N place|ط,@reside|ס +´ V leave|뿪,LocationIni=ship| +´ V leave|뿪,LocationIni=furniture|Ҿ +´ ADJ aValue|ֵ,direction|,beneath| +´ N part|,%AnimalHuman|,mouth| +´ ADJ aValue|ֵ,sequence|,hind| +´ V surplus|ʣ,commercial| +´ V announce| +µ V GiveBirth|,PatientProduct=animal| +µ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +µ V BeRecovered|ԭ,StateIni=disease|,medical|ҽ +µ V LeaveFor|ǰ,LocationFin=land|½,agricultural|ũ +µ V leave|뿪,LocationIni=machine|,#lift| +µ V BecomeLess|,commercial| +µ V fall| +¶ V kill|ɱ +· V MoveItDown|,patient=part|,#ship| +· V arrive| +· ADJ aValue|ֵ,taste|ζ,good|,desired| +· N aValue|ֵ,direction|,beneath| +· V dispatch|Dz +· V entrust|ί +·ɻ V leave|뿪,LocationIni=aircraft| +¸ V pause|ͣ +¸ N time|ʱ,week|,future| +¸ N time|ʱ,month|,future| +¹ V cease|ͣ,content=affairs| +¹ V cease|ͣ,content=affairs|,#duty| +¹ V endeavour| +¹ V eat|,location=InstitutePlace| +¹ V sit| +º V LeaveFor|ǰ,LocationFin=waters|ˮ +º V engage|,content=commercial| +¼ N human|,#rank|ȼ,LowRank|͵,employee|Ա +¼ְԱ N human|,#occupation|ְλ,employee|Ա,LowRank|͵ +¼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +½ V BecomeLess| +½ V GoDown|ȥ +½ V fall| +½ N artifact|˹,waste| +½ N entity|ʵ,generic|ͳ,waste| +½ ADJ aValue|ֵ,sequence|,hind| +¾ ADJ aValue|ֵ,taste|ζ,good|,desired| +¾ V decide| +¿ V cease|ͣ,content=study|ѧ,education| + V GoDown|ȥ + STRU {Vdirection|,beneath|} + N readings| + ADJ aValue|ֵ,kind|,special| + V order| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N part|,%waters|ˮ +¥ V GoDown|ȥ,LocationFin=part|,#building| +¥ V GoDown|ȥ,LocationFin=part|,#building| + N location|λ,#arrive|,#ExistAppear| + V GoDown|ȥ,LocationIni=livestock| + V end|ս + ADJ aValue|ֵ,importance|,secondary| + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ᵽ ADJ aValue|ֵ,kind|,special| +Ʒ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ʒ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +· N facilities|ʩ,route|· +· N phenomena|,wane|˥,undesired|ݬ + N location|λ,#vehicle|ͨ + V recreation|,sport| + N attribute|,circumstances|,&entity|ʵ + N mental| +ȥ V GoDown|ȥ +ȥ V GoOn| +ȥ STRU {Vcontinue|} +ȥ STRU {Vdirection|,beneath|} + N clothing|,#leg| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ʣ V surplus|ʣ +ʿ N human|,#occupation|ְλ,military| + V do| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N human|,friend| + N location|λ + N location|λ + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ˮ V GoInto|,LocationFin=waters|ˮ +ˮ ADJ aValue|ֵ,direction|,beneath| +ˮ V do|,content=crime|,crime| +ˮ N part|,%AnimalHuman|,viscera| +ˮ V start|ʼ,content=VehicleGo|ʻ +ˮ N part|,%building| +̨ V GoDown|ȥ,LocationIni=facilities|ʩ +̨ V lose|ʧȥ,possession=power|,politics| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ͷ N human|,#rank|ȼ,LowRank|͵,employee|Ա + ADJ aValue|ֵ,performance|,#sound|,$control| + N part|,%text| + N result| + N time|ʱ,afternoon| + V FormChange|α + N attribute|,boundary|,&entity|ʵ + V LeaveFor|ǰ,LocationFin=village| + N time|ʱ,week|,future| +ڶ N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| +һ N time|ʱ,day|,#week|,future| + ADJ aValue|ֵ,direction|,beneath| +ѩ V WeatherChange| +ѩ N quantity|,amount|,&WeatherChange|,#RainSnow|ѩ +Ѯ N time|ʱ,TenDays|Ѯ,ending|ĩ +ҩ V produce|,PatientProduct=medicine|ҩ +Ұ V cease|ͣ,content=undertake|,politics| +ҹ V cease|ͣ,content=affairs|,#duty|,#sequence|,night| +һ N method| +һô N do|,question| +һ N human|,future| + V MoveItDown| +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| +ʶ N mental| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) + N location|λ,undesired|ݬ + N part|,%waters|ˮ + V WeatherChange| + N time|ʱ,month|,future| + V record|¼ + V bury| +֫ N part|,%human|,limb|֫ +ũ N human|,#occupation|ְλ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N time|ʱ,week|,future| +װ V StripOff|ȥ,patient=clothing|,entertainment| +׹ V StomachTrouble|֢ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V GiveBirth|,PatientProduct=animal| + V reside|ס + V stay|ͣ + N part|,%AnimalHuman|,mouth|,beneath| + N part|,%human|,skin|Ƥ + N part|,%AnimalHuman|,mouth|,beneath| + N house| + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| +IJ N material|,?clothing| +ij N time|ʱ,summer|,early| +ĺ N character|,surname|,human|,ProperName|ר +ļ N time|ʱ,summer| + N law|ɷ,#time|ʱ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N time|ʱ,summer| + N weather|,#summer| +Ӫ N InstitutePlace|,@exercise|,#summer| + N time|ʱ,summer| + V collect|,#summer|,agricultural|ũ + N time|ʱ,summer| + N human|,female|Ů,%publications|鿯 + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N clothing|,#summer| + N time|ʱ,day|,summer| +װ N clothing|,#summer| + V frighten|Ż +Ż V frighten|Ż + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V StripOff|ȥ +ƶ V StripOff|ȥ +ƶ V start|ʼ +ƿ V StripOff|ȥ +ƿ V reverse|ߵ + V StripOff|ȥ + V start|ʼ + N tool|þ + ADV aValue|ֵ,earliness|,early| + ADV aValue|ֵ,time|ʱ,InFront|ǰ + N human|,past| +ȱ N human|,past| +ȵ N human|,guide| +ȷ V attack|,time=InFront|ǰ +ȷ N human|,guide| +ȷ N human|,guide| +Ⱥ N example|ʵ +Ⱥ N process|,early| +Ⱥ ADJ aValue|ֵ,sequence| +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ˳ N attribute|,sequence|,&entity|ʵ +Ƚ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ⱦ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + N example|ʵ + N human|,*die|,desired| + N time|ʱ,past| +ǰ N time|ʱ,past| +Dz ADJ aValue|ֵ,property|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,guide| + N human|,guide| + N human|,intimate|,male| + N human|,past| + N information|Ϣ,guide| + V attack|,time=InFront|ǰ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + N human|,#occupation|ְλ,*teach|,education| + N human|,male| + N human|,past| + ADJ aValue|ֵ,source|Դ,original|ԭ +첻 N attribute|,quality|,weak|,undesired|ݬ,&human| + ADJ aValue|ֵ,source|Դ,original|ԭ +Լ N disease| +ͷ N time|ʱ,past| +ͷ N part|,%army| +ͷֶ N part|,%army| + N human|,desired| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +й N human|,official| + N human|,past| + N knowledge|֪ʶ + N human| +ն V VieFor| + N information|Ϣ + N human|,desired|,past|,wise| +֪ N human|,desired|,wise| +֪Ⱦ N human|,desired|,wise| + N humanized|,desired| +ɹ N humanized|,desired|,female|Ů +ɹ N humanized|,female|Ů +ɺ N bird| +ɺײ N FlowerGrass|,?medicine|ҩ +ɾ N place|ط,#humanized|,beautiful|,happy| +Ů N humanized|,desired|,female|Ů + N humanized|,desired| + N FlowerGrass| + N humanized|,desired|,female|Ů + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N edible|ʳ,#taste|ζ,good| +ʲ N vegetable|߲,new| +ʵ N food|ʳƷ,new|,#bird| +ʹ N fruit|ˮ,new| +ʺ ADJ aValue|ֵ,color|ɫ,red| +ʻ N FlowerGrass| +ʻ ADJ aValue|ֵ,newness|¾,new|,desired| +ʻ N artifact|˹,commercial|,#fruit|ˮ,#vegetable|߲,new|,generic|ͳ +ʻ N food|ʳƷ,commercial|,generic|ͳ +ʻ N medicine|ҩ,commercial|,generic|ͳ +ʼ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| +ơ N drinks|Ʒ,$addict|Ⱥ +Ϊ֪ ADJ aValue|ֵ,reputation|,Notwellknown| +Ѫ N part|,%AnimalHuman|,liquid|Һ + ADJ aValue|ֵ,color|ɫ,colored| +޶Ŀ ADJ aValue|ֵ,color|ɫ,colored| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,size|ߴ,small|С +˷ N human|,#occupation|ְλ,#ship| +ë N part|,%AnimalHuman|,hair|ë + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ά N material| +ά N material| +άѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ά N chemical|ѧ +ά״ ADJ aValue|ֵ,form|״ +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +С ADJ aValue|ֵ,fineness|ϸ,fine| + ADJ aValue|ֵ,taste|ζ,salty| + N character|,surname|,human|,ProperName|ר +̲ N vegetable|߲,salty| +ˮ N liquid|Һ,salty| +ζ N attribute|,taste|ζ,salty|,&inanimate| + N attribute|,taste|ζ,salty|,&inanimate| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired|,able| +Ͳ N human|,desired|,able| +ʹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʹ N human|,desired|,glorious| +ͻ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired| + V HoldInMouth| + V cherish|Ļ +ν V connect| + V HoldInMouth| +ԩ V unsatisfied| + N part|,%ship|,edge| +ϴ N part|,%ship|,eye| + N tool|þ,#aircraft|,nerve| + N tool|þ,#ship|,nerve| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,idle| +г V talk|̸ +е V roam| +е V walk| +й N time|ʱ,idle| +й V roam| +й V walk| +л V talk|̸ +о V reside|ס +оӼ V reside|ס +п ADJ aValue|ֵ,circumstances|,idle|,desired| +п N time|ʱ,idle| + V talk|̸ +Ǯ N fund|ʽ + N emotion|,#WhileAway| + N emotion|,#WhileAway| + N human|,*RelateNot|޹ + N human|,idle| +ɢ ADJ aValue|ֵ,circumstances|,idle|,desired| + N fact|,#RelateNot|޹ + ADJ aValue|ֵ,circumstances|,idle|,desired| +̸ V talk|̸ +Ͼ N time|ʱ,idle| + N emotion|,#WhileAway| +Ա N human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ + V abandon| + N part|,%AnimalHuman|,liquid|Һ +Ƥ V shameless|û +ˮ N part|,%AnimalHuman|,liquid|Һ + N image|ͼ + N part|,%MusicTool| + N part|,%implement| + N part|,%weapon| + N MusicTool| + N MusicTool| + V disgust| + N emotion|,blame|Թ + N experience|,doubt| + N thought|ͷ,undesired|ݬ +Ӷ V disgust| +ӷ N human|,$doubt|,#crime| + V disgust| +϶ N emotion|,blame|Թ +϶ N thought|ͷ,undesired|ݬ + N experience|,doubt| +ɷ N human|,$doubt|,#crime| +ɷ N human|,$doubt|,#crime| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V display|չʾ +԰ V ShowOff|ҫ +Դ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ե V become|Ϊ +Զ׼ ADJ aValue|ֵ,content|,opened| +Ժ ADJ aValue|ֵ,reputation|,glorious|,desired| +Լ ADJ aValue|ֵ,content|,opened| +¶ V appear| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ȼ ADV aValue|ֵ,content|,opened| +ʾ V display|չʾ +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +΢ N tool|þ,*look|,#enlarge| + V appear| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| +Ч V produce|,PatientProduct=effect|Ч +Ч N result|,opened| + V exposure|¶ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,opened| +Ҫ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ N human|,importance| +Ӱ V produce|,#TakePicture| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,possibility|,almost| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N place|ط,important| +հ N place|ط,important| +ն ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ն ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +շ N part|,%land|½,head|ͷ,dangerous|Σ +չ N place|ط,dangerous|Σ,undesired|ݬ +վ N attribute|,circumstances|,threatening| +վ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N attribute|,circumstances|,threatening|,&entity|ʵ +ʤ V win|ʤ +̲ N waters|ˮ,linear| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Щ ADJ aValue|ֵ,possibility|,almost| +Ҫ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,time|ʱ,immediate| + ADJ aValue|ֵ,time|ʱ,now| + V appear| + N money| +ֳ N place|ط,#fact| +ֳ N place|ط,#fact|,#police| +ֳ V investigate|,purpose=disseminate| +ֳɷ V investigate|,purpose=disseminate| +ֳ N fact|,discuss| +ֳ N fact|,discuss| +ֳ N money| +ֳ ADJ aValue|ֵ,source|Դ,original|ԭ +ֳ V exposure|¶ +ִ ADJ aValue|ֵ,property|,exist|,now| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ ADJ aValue|ֵ,time|ʱ,now| +ִ N time|ʱ,now| +ִ V ize|̬,PatientAttribute=modern| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ N community|,literature|,entertainment| +ִ N human|,new| +ִʷ N fact|,#time|ʱ,now| +ִ N fact|,recreation|,entertainment|,now| +ִϷ N shows| +ֻ N artifact|˹,commercial|,generic|ͳ +ֽ N money| +ֽ N aValue|ֵ,time|ʱ,now| +ֿ N money| + N attribute|,age|,&animate| +Ǯ N money| + V undertake| +˵ V teach| +ʱ N aValue|ֵ,time|ʱ,now| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ N attribute|,environment|,&event|¼ +ʵ N human| + V suffer|,content=disgraced| + N time|ʱ,now| + ADV aValue|ֵ,time|ʱ,now| + N phenomena| + V exposure|¶ + ADJ aValue|ֵ,effect|Ч,superior|,now| + ADJ aValue|ֵ,property|,do|,#crime|,now| +з ADJ human|,crime|,now| + V suffer|,content=disgraced| + ADV {tense|ʱ̬,past|} + N affairs|,engage|,military| +۾ N human|,#occupation|ְλ,military| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +״ N attribute|,circumstances|,&entity|ʵ + V donate| + V show| + V submit| +ױ V submit|,possession=precious| +ױ V teach|,content=thinking|˼,precious| +ײ V teach|,content=thinking|˼ +׳ V perform| +״ N text|,*congratulate|ף +׸ V submit| +׻ V GiveAsGift|,possession=FlowerGrass| +׼ V show|,content=ability| +׼ V teach|,content=thinking|˼ + V GiveAsGift|,possession=artifact|˹ + V please|ȡ + V GiveAsGift|,possession=mark|־ + V die| + V engage| + N human|,*engage| +Ѫ V donate|,possession=liquid|Һ,medical|ҽ +Ѫ N human|,*submit| + V perform| + V please|ȡ + N place|ط +س N human|,#occupation|ְλ,official| +س N place|ط +ظ N institution|,*manage|,#place|ط +ؼ N attribute|,rank|ȼ,politics| + N human|,#occupation|ְλ,official| +ί N institution|,politics|,(China|й) + N institution|,*manage|,#place|ط +־ N publications|鿯 + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N part|,%AnimalHuman|,nerve| +״ ADJ aValue|ֵ,form|״ + N material|,?food|ʳƷ +ڱ N food|ʳƷ +ڶ N material|,?food|ʳƷ +ڶ N food|ʳƷ + V admire|Ľ +Ľ V admire|Ľ + N law|ɷ +ܱ N army| +ܱ N human|,military| +ܱ N army| +ܷ N law|ɷ + N law|ɷ + N system|ƶ,politics| + V damage| + V sink|³ + V suffer|,content=occupy|ռ,military| +ݺ V damage| +ݽ V sink|³ +ݽ V situated| +ݿ N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + V sink|³ + V suffer|,content=occupy|ռ,military| + V cherish|Ļ + V sink|³ + V situated| +뽩 V situated|,location=circumstances|,hardship| + V situated| + V suffer|,content=detain|ס,#police| + V situated| + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N attribute|,boundary|,&entity|ʵ + V delimit| +޶ V delimit| +޶ N attribute|,boundary|,&entity|ʵ +޶ N attribute|,boundary|,#quantity|,&event|¼ +޼ N attribute|,price|۸,$delimit|,&artifact|˹,commercial| +޼ V delimit|,patient=price|۸,commercial| + V delimit|,patient=quantity| + V order| + N attribute|,boundary|,#time|ʱ,&event|¼ + N delimit|,patient=time|ʱ +λ N fact|,delimit| + V undergo|,content=delimit| +ֹ V delimit| + V delimit| + ADJ aValue|ֵ,property|,delimit| + N facilities|ʩ,route|· + N location|λ + N mark|־,linear| + N part|,%phenomena| + N regulation|,politics| + N shape|,linear| + N tool|þ,linear|,*fasten|˩ +߲ N material|,metal|,linear| +߳ N bacteria|΢ +ߴ N material|,?clothing| +߶ N part|,image|ͼ +߹ N tool|þ,*measure| +· N facilities|ʩ,linear|,#electricity| +· N facilities|ʩ,route|· + N material|,?clothing| +Ȧ N part|,implement|,#electricity| + N human|,*help|,#police|,crime| + N part|,%phenomena| +̺ N tool|þ,*cover|ڸ + N shape|,linear| +ͷ N part|,%tool|þ,tail|β + N tool|þ,$burn| + ADJ aValue|ֵ,form|״,linear| +ζ N AnimalHuman|,generic|ͳ + ADJ aValue|ֵ,performance| + N tool|þ,*fasten|˩ +װ ADJ aValue|ֵ,property|,$fasten|˩ +װ ADJ publications|鿯 +״ ADJ aValue|ֵ,form|״,linear| + N character|,surname|,human|,ProperName|ר + V estimate|,means=look| + V help| + V look| + ADV {EachOther|໥} +మ V love|,manner=EachOther|໥ +ల ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V help| + V compare|Ƚ +ȹϵ V comparison|ȹϵ +֮ ADV comparison|ȹϵ + N account|,#TakePicture| + V differ|ͬ + V fit|ʺ + V BeOpposite| +ദ V associate| +ഫ V PassOn| +ഫ V disseminate| +൱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +൱ ADV aValue|ֵ,degree|̶,ish| +൱ V equal| +൱Ҫ ADJ aValue|ֵ,importance|,important| + V fit|ʺ,manner=EachOther|໥ + ADJ aValue|ֵ,similarity|ͬ,alike| + V equal| + V equal| + V FitNot| + N knowledge|֪ʶ +෴ ADJ aValue|ֵ,contrariness|,negative| +෴ ADV aValue|ֵ,contrariness|,negative| + V BeSimilar| + V meet| + V fit|ʺ + V fit|ʺ +ศ V fit|ʺ,manner=EachOther|໥ +ศ V fit|ʺ,manner=EachOther|໥ + V relate|й + V from| + ADJ aValue|ֵ,property|,relate|й + V relate|й + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + N human|,female|Ů,*love|,*mating|,undesired|ݬ + N human|,friend| +໥ ADV {EachOther|໥} +໥ V depend| + V meet| + N tool|þ,*record|¼,*TakePicture| + ADJ aValue|ֵ,sequence| + V from| +ཻ V BeAcross|ཻ +ཻ V associate| + V connect| + V BeSimilar| + ADJ aValue|ֵ,distance|,near| + V from| + V BeNear| + V love|,EachOther|໥ + V BeNear| +ò N attribute|,appearance|,skin|Ƥ,AnimalHuman| + V fit|ʺ +Ƭ N image|ͼ,$TakePicture| + V look| +Ȱ V persuade|Ȱ˵ + V discuss| + N shows| +ʶ V associate| +˼ V ThinkOf|˼ +˼ N part|,%tree|,#love|,embryo| +˼ N part|,%tree|,embryo| +˼ N tree| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| +֮ N attribute|,similarity|ͬ,alike|,&entity|ʵ +Ტ V MakeEqual|ʹ +ͨ V communicate| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +Ͷ V fit|ʺ + V BeSimilar| + ADJ aValue|ֵ,direction| + V facing| + V believe| +μ V inferior| +֮ V comparison|ȹϵ +سϰ V become|Ϊ,isa=habit|ϰ + V depend| +Ϊ V depend| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ ADJ aValue|ֵ,property|,fit|ʺ +ӳ V ServeAsFoil| +ӳȤ V ServeAsFoil| + V associate| + V meet| +Լ V MakeAppointment|Լ +֪ N human|,friend| +ֽ N paper|ֽ,#TakePicture| + V love| +ײ V bump|ײ + V FitNot| + N location|λ + N room| + N room|,%InstitutePlace|,@recreation|,#shows| + N room|,%LandVehicle| +᷿ N room| + V inlay|Ƕ +ⱦʯ ADJ aValue|ֵ,appearance| +Ƕ V inlay|Ƕ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N attribute|,odor|ζ,&physical|,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| +㰸 N furniture|Ҿ,*salute|¾,#humanized| +㲨 N tool|þ,*wash|ϴ,#hair|ë + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +㳦 N food|ʳƷ + N attribute|,GoodBad|û,&thing| +㴻 N part|,%vegetable|߲,embryo|,$eat| +㴻 N vegetable|߲ + N tool|þ,*MakeUp|ױ,fragrant| + N food|ʳƷ + N place|ط,city|,ProperName|ר,(China|й) +ۻع V include|,patient=place|ط +ر N place|ط,city|,ProperName|ר,(China|й) + N place|ط,happy|,#lucky| +㹽 N part|,%vegetable|߲,embryo|,$eat| +㹽 N vegetable|߲ + N fruit|ˮ + N tool|þ,$burn|,*salute|¾,#humanized| +㽶 N fruit|ˮ +㾫 N material|,?edible|ʳ,?tool|þ,fragrant| + N human|,religion|ڽ,*salute|¾ + N material|,?edible|ʳ,fragrant| + N material|,?tool|þ,fragrant| +ϳ N InstitutePlace|,*produce|,#material|,fragrant| + N human|,commercial| +¯ N tool|þ,@burn|,*salute|¾,#humanized| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +Ƭ N material|,?drinks|Ʒ + N FlowerGrass|,?material| + N attribute|,odor|ζ,&physical|,fragrant| +ˮ N tool|þ,*MakeUp|ױ,fragrant| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N attribute|,odor|ζ,&physical|,fragrant| + N CloudMist| + N addictive|Ⱥ + N material|,?food|ʳƷ,liquid|Һ +ɴ N material|,?clothing| + N tool|þ,*wash|ϴ,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| + N fruit|ˮ + N drinks|Ʒ,$addict|Ⱥ +ľ N drinks|Ʒ,$addict|Ⱥ + N tree| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N shape|,cubic| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + V help| + N human|,#occupation|ְλ,official| + V help| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tree| + N tree| + N institution|,#place|ط,politics| + N place|ط,#agricultural|ũ,village| + N place|ط,@ComeToWorld| + N human|,vulgar|,village|,undesired|ݬ +糤 N human|,#occupation|ְλ,official|,village| + N place|ط,#agricultural|ũ,village| + N place|ط,#agricultural|ũ,village| + N human|,#reside|ס,village| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld|,village| + N human|,#reside|ס,village| + N human|,village| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N human|,#place|ط + N human|,#place|ط,village| + N human|,#reside|ס,village| + N human|,village| + N human|,#village| + ADJ aValue|ֵ,source|Դ,original|ԭ + N place|ط,@ComeToWorld| + N place|ط,village| + N human| + N sound|,#language|,original|ԭ +Ը N human|,fake|α,undesired|ݬ + N place|ط,village|,city| + N place|ط,@ComeToWorld| + V fly| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N CloudMist|,desired| + N mark|־,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + V check| + V read| + N text|,detailed| +꾡 ADJ aValue|ֵ,content|,detailed|,desired| + N attribute|,content|,&information|Ϣ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + N information|Ϣ,detailed| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + V express|ʾ +̸ V express|ʾ +ϸ ADJ aValue|ֵ,content|,detailed|,desired| +ע V explain|˵,manner=detailed| +ע N part|,%text|,$explain|˵,detailed| + V ThinkOf|˼ + V regard|Ϊ + V think|˼ + V willing|Ը + ADV {comment|} +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +벻 V upset| +벻 V BeUnable|,content=remember|ǵ +뵱Ȼ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ÿ V AtEase| +뷨 N thought|ͷ +뷨 V try| +뷽跨 V try| + V ThinkOf|˼,content=family| + V deduce| + ADV {comment|} + V ThinkOf|˼ + V remember|ǵ + V remember|ǵ,Vachieve| +Ƿ V guess|² +ͷ N aspiration|Ը,expect| + V expect| + V think|˼ + ADJ aValue|ֵ,ability|,able|,guess|² + V guess|² + N attribute|,ability|,#guess|²,&human| + V MakeSound| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound| +쳹 V MakeSound| +쳹 V MakeSound|,LocationFin=sky| +쵱 ADJ aValue|ֵ,trueness|α,true|,desired| +춯 N sound| + N attribute|,SoundVolume|,&MakeSound|,&physical| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundVolume|,loud| + V MakeSound| + N MusicTool| + N sound| +β N beast| + ADJ aValue|ֵ,SoundVolume|,loud| +Ӧ V respond|Ӧ + V enjoy| + V enjoy|,content=happy| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V enjoy|,content=joyful|ϲ + ADJ thinking|˼,#expect|,#enjoy| + V pass|ȹ + V enjoy| + V enjoy| + V own| +ʢ V own|,possession=glorious| + V own|,possession=glorious| + V own|,possession=glorious|,location=place|ط + CLAS NounUnit|,&event|¼ + N character|,surname|,human|,ProperName|ר + N fund|ʽ + N part|,%AnimalHuman|,head|ͷ + N symbol| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ,$PutOn| +Ŀ N affairs| +Ȧ N tool|þ,*decorate|װ,$PutOn| + N facilities|ʩ,route|· + N facilities|ʩ,mine| + N part|,%facilities|ʩ,route|·,mouth| +β N part|,%facilities|ʩ,route|·,tail|β + N expression| +ս N fact|,fight|,#route|· + N facilities|ʩ,route|· + N tree| + N material|,?tool|þ +Ƥ N material|,?tool|þ +Ƥ N stationery|ľ,*wipe| +ʵ N part|,%tree|,embryo| + N tree| + V BeSimilar| + N attribute|,similarity|ͬ,&entity|ʵ + N image|ͼ + N image|ͼ,#human| + ADJ {comment|} + ADV {comment|} + PREP {contrast} + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ƭ N image|ͼ,$TakePicture| + ADJ aValue|ֵ,standard|׼,average| + N tool|þ,*PutOn| + N character|,surname|,human|,ProperName|ר + N direction| + V endorse|ӵ + V facing| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + PREP {beneficiary} + PREP {direction} + PREP {source} + PREP {target} +... V ExpressAgainst|Ǵ +... V call|ٻ + N human|,*guide| +Ϸ ADJ aValue|ֵ,direction|,east|,south| + ADJ aValue|ֵ,direction|,east| + N attribute|,performance|,&inanimate| + ADV aValue|ֵ,direction|,hind| + ADV aValue|ֵ,frequency|Ƶ,often| + N symbol|,#quantity| + ADV aValue|ֵ,direction|,external| + ADV aValue|ֵ,direction|,internal| +ǰ ADJ aValue|ֵ,direction|,InFront|ǰ +ǰ V look|,direction=future| +տ N crop|ׯ + ADV aValue|ֵ,direction|,upper| +б ADJ aValue|ֵ,form|״,slanted| + V expect| + ADJ aValue|ֵ,direction|,west|,south| + ADV aValue|ֵ,direction|,beneath| +б ADJ aValue|ֵ,form|״,slanted| + N attribute|,strength|,&physical| + V facing|,direction=(sun|̫) + N FlowerGrass| + ADV aValue|ֵ,direction| +ҿ N expression|,*order| + V melancholy| + V melancholy| + V endorse|ӵ + V facing| + ADV aValue|ֵ,direction| + N expression|,*order| + N attribute|,form|״,&physical| + N beast| + N part|,%tool|þ,#recreation| + ADJ aValue|ֵ,correctness|,correct|ȷ + N tool|þ,*recreation| + N part|,%space|ռ + N character| + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,ProperName|ר + N facilities|ʩ,HighRank|ߵ + ADJ aValue|ֵ,standard|׼,average| + V mean|ָ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V obey|ѭ,content=regulation| +ǽ N part|,%building|,skin|Ƥ +ɪ V MakeSound| +ɪ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ɭ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V decline|˥,commercial| + N sound| + N chemical|ѧ + V produce| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N CloudMist|,#weapon|,#fight| + N CloudMist| + N sky| + N sky| + V cut| + V cut|,sport| + V subtract| + N part|,%land|½,skin|Ƥ + V subtract|,scope=price|۸,commercial| + V subtract| + V subtract|,commercial| + V beat|,patient=SportTool|˶ + V weaken| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cry| + N disease| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V StateChange|̬,StateFin=liquid|Һ,industrial| + V remove| + V sell|,commercial| + V spend|,commercial| + V destroy| + V joyful|ϲ + V tell|,content=due| + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + N quantity|,amount|,$sell|,physical|,commercial| +· N attribute|,circumstances|,&sell| +伣 V disappear|ʧ + V sell|,commercial| +۶ N quantity|,amount|,#sell|,&money| + N quantity|,amount|,$sell|,physical|,commercial| +һ V disappear|ʧ,#sell|,commercial| + V handle|,crime| + V remove|,LocationIni=account|,commercial| + N tool|þ,*fix|ס + V WhileAway| + V disappear|ʧ + V pass|ȹ + V remove| + V change| + V disheartened| + V remove| + V AlterProperty|,PatientAttribute=property| + V AlterProperty|,PatientAttribute=spotless|,medical|ҽ + N medicine|ҩ,*AlterProperty|,#spotless| + N affairs|,obstruct|ֹ,#fire| + N fact|,remove|,#fire| + N LandVehicle|,*remove|,#fire| + N institution|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +ͧ N ship|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +վ N institution|,*remove|,#fire| + V exhaust| + V spend|,commercial| +Ʒ N artifact|˹,generic|ͳ + N human|,*spend|,*buy|,commercial| + V exhaust| + V exhaust|,commercial| + V spend|,commercial| + V consume|ȡ + N disease| +֢ N disease| +ϵͳ N part|,%AnimalHuman|,viscera|,*consume|ȡ +˨ N facilities|ʩ,*remove|,#fire| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + V remove| + V destroy| + V disappear|ʧ +ĥ V exhaust| +ĥ V pass|ȹ + V calm| +Dz V WhileAway| +Dz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ɢ V disappear|ʧ + V remove|,ResultEvent=sound| +ʧ V disappear|ʧ +ʳ V consume|ȡ + V disappear|ʧ + V remove| + V endure| + V enjoy| + ADJ aValue|ֵ,fatness|,bony| + V pass|ȹ + V restrain|ֹ,ResultEvent=hot| + V exhaust| + N disappear|ʧ + V perish| +Ϣ N information|Ϣ +Ϣͨ V know|֪,#information|Ϣ,manner=fast| + V pass|ȹ,patient=summer| + V WhileAway| + V cure|ҽ +ҹ N food|ʳƷ,generic|ͳ + V cure|ҽ + V remove|,patient=swollen| + V restrain|ֹ + N time|ʱ,day|,night| + N fact|,restrain|ֹ,night|,police| + V MakeMisunderstand|ʹ֪ + V know|֪ + N time|ʱ,day|,early| + V know|֪ +ʾ V tell| +Դ V tell|,content=correct|ȷ + V tell|,content=ProsCons| + V tell| +С ADJ aValue|ֵ,age|,young| +С ADV aValue|ֵ,duration|,TimeShort| +С ADJ aValue|ֵ,importance|,secondary| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +Сײ N part|,%vegetable|߲,embryo|,$eat| +Сײ N vegetable|߲ +Сٻ N artifact|˹,commercial|,generic|ͳ +С N part|,%InstitutePlace|,education| +С N publications|鿯,#news| +С ADJ aValue|ֵ,clan| +С N human|,clan|,young| +С V excrete|й,patient=liquid|Һ +С N liquid|Һ,#AnimalHuman|,waste|,$excrete|й +С N part|,%AnimalHuman|,male|,*excrete|й,#liquid|Һ +С N part|,%AnimalHuman|,hair|ë +С N part|,%human|,hair|ë +С N result|,wrong|,undesired|ݬ +С N part|,%text|,name| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +С V walk|,military| +С V music| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +С V labour|ٲ +С N part|,%AnimalHuman|,viscera| +С N LandVehicle| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +СԲ N InstitutePlace|,@eat|,commercial| +СԵ N InstitutePlace|,@eat|,commercial| +С N human|,*perform|,entertainment| +С V IllBehave| +С N ship| +С N time|ʱ,month| +С N time|ʱ,season| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N facilities|ʩ,route|· +СϢ N information|Ϣ,$disseminate|,hidden| +С N human|,family|,male| +С PRON {firstPerson|} +С N attribute|,SoundQuality|,&music| +С N music| +С N method|,sly|,undesired|ݬ +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N part|,%AnimalHuman|,body| +С N community| +С N quantity|,amount|,few|,&physical| +СС N phenomena|,desired| +С N human|,intimate|,male|,young| +С N human|,young| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N part|,%InstitutePlace|,*cure|ҽ,#young| +С֢ N disease| +С N human|,#occupation|ְλ,commercial| +С N payment|,#commercial| +Сֶ N part|,%army|,military| +С N part|,%AnimalHuman|,body| +С N shows| +С N human|,#occupation|ְλ,employee|Ա +С N human|,intimate|,female|Ů +С N MusicTool| +С N clothing|,#body| +С N humanized|,young| +С N human|,young| +С N human|,royal|,young| +С N human|,young| +С N time|ʱ,day|,cold| +С N MusicTool| +С N human|,religion|ڽ,male|,young| +С N human|,young|,male| +С N community|,undesired|ݬ +С N FlowerGrass|,?medicine|ҩ +Сұ N human|,female|Ů,beautiful| +С ADJ aValue|ֵ,size|ߴ,small|С +С N time|ʱ,month| +С N human|,brave| +С N part|,%human|,female|Ů,past|,foot| +Сγ N LandVehicle| +С N fact|,secondary| +С N part|,%music| +С V explain|˵ +С N text|,#readings| +С V excrete|й,patient=liquid|Һ +С N human|,female|Ů +С N part|,%clothing|,body| +С N time|ʱ,month| +С N facilities|ʩ,route|· +С N human|,intimate|,male| +С N human|,young|,rich| +С V despise| +С ADJ aValue|ֵ,richness|ƶ,rich|,desired| +С N human|,intimate|,female|Ů +С N human|,intimate|,mass|,family| +С N quantity|,amount|,few|,&physical| +С· N facilities|ʩ,route|· +С N crop|ׯ +С N InstitutePlace|,*sell|,@buy|,commercial| +С N time|ʱ,day| +Сè N beast| +С N human|,family|,female|Ů +С N material|,?food|ʳƷ,#crop|ׯ +СĴָ N part|,%AnimalHuman|,hand| +С N part|,%AnimalHuman|,head|ͷ +С N human|,young| +Сũ N human|,#occupation|ְλ,agricultural|ũ +Сũ N affairs|,produce|,nonextensive| +СŮ N human|,family|,female|Ů +С V run| +С N human|,young| +СƷ N shows| +Сҵ N human|,#occupation|ְλ,commercial| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N human|,miser|,undesired|ݬ +С N LandVehicle| +СǮ N money| +СǮ N payment|,#commercial| +С ADJ aValue|ֵ,quality|,refined|,desired| +С N human|,young| +С N place|ط,@reside|ס,#house| +СȦ N community| +С N human|,secondary| +С N human|,undesired|ݬ,evil| +С N publications|鿯 +С N human|,secondary| +С N phenomena|,family| +С N part|,%AnimalHuman|,mouth| +Сʱ N time|ʱ,hour|ʱ +Сʱ ADJ aValue|ֵ,time|ʱ,#young| +С N fact|,secondary| +С N human| +С V despise| +С N fact|,cure|ҽ +СС ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +СС ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N time|ʱ,day| +С N symbol|,#quantity|,#DoSum| +С N symbol|,#quantity| +С˯ V sleep|˯ +С˵ N publications|鿯 +С˵ N human|,*compile|༭,#readings|,literature| +Сմ N material| +С N MusicTool| +С N human|,*perform|,entertainment| +С N space|ռ,private|˽ +Сͧ N ship| +С͵ N human|,*steal|͵,crime|,undesired|ݬ +С N part|,%AnimalHuman|,leg| +СԳ N LandVehicle| +С׼ V inferior| +С N house| +С N fittings| +СϪ N waters|ˮ +Сд ADJ aValue|ֵ,pattern|ʽ,&character| +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +СĽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +С۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +С ADJ aValue|ֵ,size|ߴ,small|С +С N weapon|,ship|,military| +Сè N beast| +Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +Сѧ N human|,*study|ѧ,education| +СѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Сѩ N time|ʱ,day| +Сѭ N phenomena| +С N time|ʱ,month| +С N artifact|˹,generic|ͳ,#example|ʵ +С N clothing|,#leg| +С˼ N fact|,secondary| +С˼ N tool|þ,generic|ͳ,$GiveAsGift| +С ADJ aValue|ֵ,size|ߴ,small|С,more| +С ADJ qValue|ֵ,amount|,few|,more| +С N RainSnow|ѩ +С N disease|,#GiveBirth| +С N time|ʱ,month| +С N edible|ʳ,generic|ͳ +Сվ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +С N place|ط,city| +Сָ N part|,%AnimalHuman|,hand| +С N human|,young| +С N attribute|,name|,&entity|ʵ +С N character|,small|С +Сֱ ADJ aValue|ֵ,clan| +С N part|,%organization|֯ +С N human|,young| +С N human|,young| +С N human|,young|,female|Ů +С V rest|Ϣ +Т ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N emotion|,condole|° +Т N emotion|,loyal|Т +Т N clothing|,*condole|° +Т V GiveAsGift| +Т V loyal|Т +Т˳ N emotion|,loyal|Т +Т˳ V loyal|Т +Т N emotion|,loyal|Т +Т N human|,*loyal|Т,family|,desired| +Т N human|,desired|,family|,*condole|° +Т N human|,*loyal|Т,family|,desired| +У N InstitutePlace|,@teach|,@study|ѧ,education| +У V check| +У N human|,#occupation|ְλ,official|,education| +У N human|,official|,education| +У V check| +У V check| +УԱ N human|,#occupation|ְλ,*check| +У N institution|,education| +У N attribute|,behavior|ֹ,&InstitutePlace|,education| +У N clothing|,education| +У V amend| +У N human|,#occupation|ְλ,official|,military| +У V check| +У N human|,female|Ů,education| +У N tool|þ,$PutOn|,mark|־,education| +У ADJ aValue|ֵ,attachment| +У V check| +У N part|,%InstitutePlace|,mouth| +У N fact|,congratulate|ף,education| +У N house|,education| +У ADJ aValue|ֵ,attachment|,education| +У N affairs|,education| +У V check| +Уҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,education| +У N human|,friend|,education| +Уѻ N community|,friend|,education| +У԰ N part|,%InstitutePlace|,education| +У V check| +У V amend| +Уַ N location|λ,%InstitutePlace|,education| +У׼ N fact|,check| +Ф V BeSimilar| +Ф N image|ͼ +Ф N image|ͼ +Ф񻭼 N human|,*draw|,literature| +Х V MakeSound| +Х V cry| +Х V MakeSound|,manner=free| +Х V collude| +Х V MakeSound| +Ц V LaughAt|Ц +Ц V laugh|Ц +Ц N information|Ϣ,*LaughAt|Ц +Ц V laugh|Ц +Ц V LaughAt|Ц +Ц N information|Ϣ,*LaughAt|Ц +Цٳ V err| +Цڳ V laugh|Ц,frequency=often| +Цص ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ц N attribute|,countenance|,laugh|Ц,&human| +Ц N information|Ϣ,*LaughAt|Ц +Ц V ExpressAgainst|Ǵ +Ц V laugh|Ц +Ц滢 N human|,fake|α,sly|,undesired|ݬ +Ц V receive| +Ц N gas| +Ц N attribute|,countenance|,laugh|Ц,&human| +Цݿ V laugh|Ц +Ц V laugh|Ц +Ц̸ N information|Ϣ,*LaughAt|Ц +Ц N part|,%AnimalHuman|,skin|Ƥ +Ц V laugh|Ц +ЦЦ V laugh|Ц +Цտ V laugh|Ц +Ц N part|,%human|,skin|Ƥ +Ц N part|,%human|,skin|Ƥ,#laugh|Ц +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V imitate|ģ +Ч V imitate|ģ +Ч N attribute|,effect|Ч,&act|ж +Ч V engage| +Ч V engage| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Чʺܲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч V engage|,manner=endeavour| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +ЧӦ N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V endeavour|,manner=faithful| +Ш V beat| +Ш N part|,%artifact|˹,*fix|ס +Ш N tool|þ,*fix|ס +Щ ADV aValue|ֵ,degree|̶,ish| +Щ΢ ADV aValue|ֵ,degree|̶,ish| +Щ ADJ qValue|ֵ,amount|,some|Щ +Ъ V cease|ͣ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V sleep|˯ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V rest|Ϣ,#SelfMove| +Ъ V enjoy|,content=chilly| +Ъ V sleep|˯,time=afternoon| +Ъ V cease|ͣ +Ъ V reside|ס,time=night| +ЪϢ V rest|Ϣ +ЪϢ V sleep|˯ +ЪЪ V rest|Ϣ +Ъҵ V cease|ͣ,content=affairs|,commercial| +Ы N InsectWorm| +Ы N InsectWorm| +Ы N InsectWorm| +Ь N clothing|,#foot| +Ь N tool|þ,#clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N part|,clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N human|,#occupation|ְλ,#clothing|,#foot|,industrial| +Ьñ N clothing|,#head|ͷ,#foot| +Ьˢ N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Ь N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Э V help| +Э V coordinate|Э +Э N human|,*coordinate|Э,military| +Эһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э V fit|ʺ +Э N community| +Э V help|,scope=manage| +Э V cooperate| +Э V discuss| +Э N human|,*discuss| +Эͬ V cooperate| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э N agreement|Լ +Э V help| +Э N music| +Э V cooperate| +Э N human|,*cooperate| +Ю V hold| +Ю V control|,means=fierce| +Ю V control|,means=fierce| +Я V bring|Я +Я V guide| +Я V bring|Я +Я N human|,*bring|Я +Я ADV aValue|ֵ,behavior|ֹ,together|ͬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,strength|,strong|ǿ,undesired|ݬ +а· N facilities|ʩ,route|·,wrong| +аŶ ADJ aValue|ֵ,kind|,queer| +а N attribute|,SocialMode|,evil|,&entity|ʵ +б ADJ aValue|ֵ,form|״,slanted| +б N attribute|,slope|¶,&inanimate| +б N facilities|ʩ,mine| +б N attribute|,slope|¶,&inanimate| +б N part|,%physical|,surfacial|,slanted| +б N part|,%land|½,skin|Ƥ +б V firing|,manner=slanted|,military| +б V illuminate|,manner=slanted| +б V disease|,#eye| +б V look|,manner=slanted| +б ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| +б N shape|,#clothing| +б N image|ͼ,linear| +б N disease|,#eye| +б N human|,*disable|м,#eye| +б N celestial| +в V force|ǿ +в V force|ǿ +в V hold| +вЦ V please|ȡ +в V force|ǿ +г ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +г N shape| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г N attribute|,similarity|ͬ,alike|,&sound| +г N phenomena|,#sound| +г V LaughAt|Ц +д V compile|༭ +д V describe|д +д V write|д +д N attribute|,style|,&text| +д N method|,*write|д +д V draw|,literature| +дʵ V describe|д +д V write|д,ContentProduct=letter|ż +д ADJ aValue|ֵ,circumstances|,peaceful|,desired| +д V satisfied| +д V describe|д +д N text|,*describe|д +д V describe|д +д V draw| +д V write|д +дּ N room|,#employee|Ա,@engage| +д̨ N furniture|Ҿ,@put| +д V compile|༭ +е N implement|,generic|ͳ +е N tool|þ,police|,*punish|,#crime| +е V fight| +ж V TakeAway|ᶯ +ж V dismount|ж +ж V refuse| +ж V remove| +ж V TakeAway|ᶯ,LocationIni=LandVehicle| +ж V TakeAway|ᶯ,patient=artifact|˹ +жĥɱ¿ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ж V cease|ͣ,content=undertake| +ж V TakeAway|ᶯ +жװ V StripOff|ȥ,patient=clothing|,entertainment| +з N fish| +з N food|ʳƷ +з ADJ aValue|ֵ,color|ɫ,BlueGreen| +и ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +й V release|ͷ +й V reveal|¶ +й V reveal|¶,patient=event|¼ +й V release|ͷ,patient=water|ˮ +й V disheartened| +й© V reveal|¶ +й¶ V reveal|¶ +й V reveal|¶,patient=event|¼ +й V disheartened| +к V StomachTrouble|֢ +к V flow| +к V StomachTrouble|֢ +л V apologize|Ǹ +л N character|,surname|,human|,ProperName|ר +л V decline|˥ +л V thank|л +л V reject|ؾ +л V die| +лл V grateful|м +л N letter|ż,*thank|л +лл V thank|л +л N emotion|,grateful|м +л V apologize|Ǹ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м N shape| +н N material|,wood|ľ,*lighting|ȼ,$burn| +н N payment| +н N payment| +н V PassOn| +нˮ N payment| +нˮ׼ N human|,$employ| +н̿ N tree|,?material| +о N part|,%artifact|˹,heart| +оƬ N part|,%artifact|˹,heart| +о N part|,%tool|þ,$burn|,heart| +о N part|,beast|,mouth| +п N metal| +п N tool|þ,*print|ӡˢ + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ +Ȼ V aValue|ֵ,circumstances|,happy|,desired| +Ȼ ADV aValue|ֵ,circumstances|,happy|,desired| + V FondOf|ϲ + V enjoy| +ο V satisfied| +Ϥ V know|֪,manner=joyful|ϲ +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=extreme| + V admire|Ľ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N character|,surname|,human|,ProperName|ר + N fact|,past|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,taste|ζ,peppery| + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,time|ʱ,now| + N place|ط,country|,ProperName|ר,(Singapore|¼) +± N money|,(Uruguay|) +± N human|,military|,$include| +³ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +³´л V metabolize|л,medical|ҽ +³ɺ N emotion|,hate|,undesired|ݬ +´ N time|ʱ,spring|,early| +´ѽ N time|ʱ,festival|,@congratulate|ף +´½ N place|ط,ProperName|ר +µ N place|ط,capital|,ProperName|ר,(India|ӡ) +· N room|,@reside|ס,#GetMarried| +¸ N human|,female|Ů,*GetMarried| +ºʲ N place|ط,provincial|ʡ,ProperName|ר,(US|) +» N institution|,news|,ProperName|ר,(China|й) +»ͨѶ N institution|,news|,ProperName|ר,(China|й) +» V GetMarried|,now| +» N human|,family|,mass|,*GetMarried| +¼Ԫ N time|ʱ +¼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Singapore|¼) +¼ N place|ط,country|,ProperName|ר,(Asia|) +¼ N human|,#country|,ProperName|ר,(Singapore|¼) +¼Ԫ N money|,(Singapore|¼) +½ V build| +½ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ά N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ N human|,friend|,now| +½ ADV aValue|ֵ,time|ʱ,now| +¾ N {newness|¾} +¾ N house|,new| +¿ N attribute|,pattern|ʽ,new|,&artifact|˹ + N human|,male|,*GetMarried| + N knowledge|֪ʶ +ī N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů,*GetMarried| + N human|,female|Ů,*GetMarried| +ƪ N part|,%readings|,new| + ADJ aValue|ֵ,kind|,queer| + N place|ط,new|,#human| + N human| + N human|,female|Ů,*GetMarried| + ADJ aValue|ֵ,newness|¾,new|,#undertake| + N attribute|,newness|¾,new|,occupation|ְλ + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,*study|ѧ,education| + N human|,*study|ѧ,education|,now| + N phenomena|,desired| + N time|ʱ,past| + N human|,young|,$GiveBirth|,now| +ʫ N text| +ʯʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,unable|ӹ + N publications|鿯,immediate| + N publications|鿯,new| +ľ N army|,ProperName|ר,past| + N money|,(Peru|³) +̨ N money|,(Taiwan|̨) + N news| +ų N institution|,#news| +Ŵ N institution|,#news| +ŷ N human|,announce| +Ÿ N readings|,#news| +Ÿ N text|,news| +Ź N affairs|,#news| +Ź N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ź N readings|,#news| +Ź㲥 N fact|,disseminate|,#news| +ż N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ż V check|,content=news| +Ž N community|,#news| +Žʿ N human|,*gather|ɼ,*compile|༭,#news| +ý N institution|,*disseminate|,#news| +Ƭ N shows|,#news| +Ա N human|,*analyze|,#news| + N human|,#news| +ҵ N affairs|,#news| +ֽ N paper|ֽ +רԱ N human|,#occupation|ְλ,official|,*manage|,news|,diplomatic|⽻ + N system|ƶ,#news|,free| + N place|ط,country|,ProperName|ר,(Oceania|) + N human|,#country|,ProperName|ר,(New Zealand|) +Ԫ N money|,(New Zealand|) + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| +һ N attribute|,clan|,new|,&thing| +ɫл˶ N money|,(Israel|ɫ) + N thinking|˼,new| +ӱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ԫ N money|,(Singapore|¼) + N celestial| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V add| + N regulation|,politics|,new| +װ N clothing|,new| +ߗ N place|ط,@reside|ס,#house| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ + N mental| + N part|,%AnimalHuman|,heart| + N part|,%thing|,heart| +İ V like|ϧ +İ V AtEase| +İ V AtEase| +İ N part|,%AnimalHuman|,heart| +İ N disease| +IJ N fact|,secret| +IJ N fact|,worried|ż +IJ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +IJ N thought|ͷ +ij N thought|ͷ +ij N thought|ͷ +ij V excited| +ij V expect| +Ĵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ĵ N experience| +ĵ N location|λ,%heart| +ĵ N attribute|,behavior|ֹ,&human| +ĵխ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ĵͼ N image|ͼ,#cure|ҽ,medical|ҽ +Ķ V excited| +Ķ V jump| +Ķ N part|,%AnimalHuman|,heart| +ķ V upset| +ķ V upset| +ķ N part|,%AnimalHuman|,heart| +ķڷ V believe| +ĸ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĸ ADJ aValue|ֵ,content|,secret| +ĸ N human|,friend| +ĸ֮ N disease| +ĸ֮ N phenomena|,undesired|ݬ,#unfortunate|,dangerous|Σ +ĸԸ V willing|Ը +ĸ N attribute|,behavior|ֹ,&human| +ĸ N human|,$like|ϧ +Ĺ ADJ aValue|ֵ,fatness|,fat| +ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ļŭ V joyful|ϲ +Ļ V cherish|Ļ +Ļ V flurried| +Ļ V disheartened| +Ļ V disheartened| +Ļ N thinking|˼ +ļ N part|,%AnimalHuman|,heart| +ļ N disease| +ļ N disease| +ļ N thinking|˼ +ļ V worried|ż +ļ V worried|ż +ļ V ill|̬ +ļ V plan|ƻ +Ľ V worried|ż +Ľʹ N disease| +ľս V fear| +ľ V fear| +ľ V calm| +ľ N attribute|,circumstances|,&mental| +Ŀ N thinking|˼ +Ŀ N part|,%AnimalHuman|,heart| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +Ŀ V satisfied| + N mental| + ADJ aValue|ֵ,attachment|,mental| +ѧ N knowledge|֪ʶ,#mental| +ѧ N human|,#knowledge|֪ʶ,#mental| +ս N fact|,fight|,#mental| +ﻰ N experience|,sincere|,desired| + N mental| + N tired|ƣ +˥ N disease| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N mental| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V understand| + V understand| +· N attribute|,tolerance|,&human| +· N attribute|,wisdom|ǻ,&AnimalHuman| +· N purpose|Ŀ + N attribute|,speed|ٶ,&jump| + N quantity|,rate|,&jump| + V uneasy| + V satisfied| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ŀ N thinking|˼ +ƽ V AtEase| + ADJ aValue|ֵ,behavior|ֹ,urgent| + N attribute|,circumstances|,&thinking|˼ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N mental| +絶 V sorrowful| +絶 V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ + N location|λ,%heart| + N human|,$love| + N mental| + N aspiration|Ը,expect| + N thinking|˼ + N part|,%AnimalHuman|,heart| + N thought|ͷ +˼ N mental| +˼ N thought|ͷ + V sorrowful| + V calculate| + V sorrowful| +̬ N attribute|,circumstances|,&thinking|˼ + V like|ϧ + V sorry|ϧ + N mental| + V ill|̬ +ʹ V sorrowful| +ʹ ADJ sorrowful| +ͷ N mental| + N stone|ʯ,?material| +Ѷ N part|,%AnimalHuman|,heart| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N mental| + V think|˼ + V admire|Ľ +ӡ ADJ FondOf|ϲ,manner=EachOther|໥ + N attribute|,behavior|ֹ,&human| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + V GuiltilyConscious| + N attribute|,circumstances|,&thinking|˼ + V FeelingByBad| +Ѫ N mental| +Ѫ N part|,%AnimalHuman|,nerve| +Ѫ V excited| +۶ N attribute|,tolerance|,&human|,&organization|֯ +۶ N attribute|,wisdom|ǻ,&AnimalHuman| +۶ N experience|,doubt| +۶ N purpose|Ŀ +۶ N thinking|˼ + N emotion|,kindhearted|,desired| + N purpose|Ŀ + V BeUnable| + V fear| +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ը N aspiration|Ը,expect| +óϷ V believe| + N part|,%AnimalHuman|,heart| +Ĥ N disease| +ಡ N disease| +ֱڿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N location|λ,%heart| + V ignorant|֪ + V know|֪ + N part|,%physical|,heart| + V joyful|ϲ + N part|,%human|,heart| + V believe| + N experience|,believe| + N information|Ϣ + N information|Ϣ,*prove|֤ + N letter|ż + N part|,%weapon| +Ų V walk| +Ŵ N affairs|,lend|,borrow|,commercial| +ŵ N language|,#country|,ProperName|ר +ŷ V communicate| +ŷ N tool|þ,@put|,#letter|ż +ŷ N wind| +ŷ V believe| +ŷ V believe| +Ÿ N bird|,*post|ʼ +ź N letter|ż +ź N symbol| +ź N symbol|,#hand|,$show| +źŵ N tool|þ +Ż V post|ʼ,instrument=letter|ż +ż N paper|ֽ,@write|д +ż N letter|ż +Ž V include|,religion|ڽ +ſڴƻ V TalkNonsense|Ϲ˵ +ſڿ V TalkNonsense|Ϲ˵ + V believe| + N human|,*believe| + N experience|,believe| +ȿ N letter|ż + V believe| +ͱط ADJ aValue|ֵ,SocialMode|,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʹ N human|,#occupation|ְλ,*post|ʼ +ĵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V obey|ѭ + N thinking|˼ +ͽ N human|,*obey|ѭ +ͽ N human|,religion|ڽ + V entrust|ί +й˾ N InstitutePlace|,commercial| + N artifact|˹,generic|ͳ +Ϣ N information|Ϣ +Ϣḻ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +Ϣ N quantity|,amount|,&information|Ϣ +Ϣ N knowledge|֪ʶ,#information|Ϣ + N tool|þ,cubic|,@put|,#letter|ż + N emotion|,believe| +İٱ V believe| + V believe| + N experience|,believe| +Ϊ V believe| + N experience|,believe| + N attribute|,reputation|,&human|,&organization|֯ +÷ſ N money|,$lend|,commercial| +ÿ N coupon|Ʊ֤,#money| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֤ N letter|ż,#fund|ʽ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N letter|ż +ֽ N paper|ֽ,@write|д,#letter|ż + N celestial| + N human|,*perform|,entertainment| + N mark|־ + N shape| +dz N celestial| +dz N InsectWorm| +Ƕ N celestial| +ǹ N lights| +Ǻ N celestial| +ǻ N celestial| +ǻ N fire| +Ǽ ADJ aValue|ֵ,rank|ȼ +Ǽ ADJ aValue|ֵ,location|λ,#celestial| +ǿ N sky| +岼 ADJ qValue|ֵ,amount|,many| + N time|ʱ,week| +ڶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| + N celestial| +ս N plans|滮,*defend|,#celestial|,military| +ɢ V disperse|ɢ + N celestial| + N celestial| + N mark|־,#country|,(US|) + N celestial| +ϵ N celestial| +ϵ ADJ aValue|ֵ,location|λ,#celestial| + N celestial| + N shape| +ǵ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| +ƶת V SelfMoveInManner|ʽ,#time|ʱ + N celestial| +״ ADJ aValue|ֵ,form|״ + N celestial| + ADJ aValue|ֵ,odor|ζ,stinky| +ȳ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ȷѪ N phenomena|,miserable|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky| +ζ ADJ aValue|ֵ,odor|ζ,stinky| + ADJ aValue|ֵ,odor|ζ,stinky| + N beast| +ɺ ADJ aValue|ֵ,color|ɫ,red| +ɺ N disease| + N beast| +̬ V pretend|װ + N emotion|,FondOf|ϲ + V prosper| + V start|ʼ + V urge|ʹ +˰ V establish| +˳ V excited| +˷ V excited| +˷ ADJ excited| +˷ܲ V excited|,degree=extreme| +˷ܼ N medicine|ҩ,*CauseToDo|ʹ,#excited|,sport|,undesired|ݬ +˷ܼ N InstitutePlace|,*check|,#medicine|ҩ,sport| +˷ V MakeTrouble| +˸߲ V joyful|ϲ +˹ V CauseToGrow|ʹɳ,patient=country| +˻ N thought|ͷ +˽ V build| + V improve| +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ũ V CauseToGrow|ʹɳ,patient=agricultural|ũ + V appear| + V begin|ʼ + V prosper| +Ȥ N emotion|,FondOf|ϲ +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʦ V dispatch|Dz,patient=army| +ʦ V mobilize| +ʦ V attack| +˥ N attribute|,effect|Ч,&human|,&organization|֯ +̾ V sigh|̾ +ͷ N emotion|,excited| +ͷ V excited| + N attribute|,effect|Ч,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| + V prosper| +ζ N emotion|,FondOf|ϲ + V build| + ADV {comment|} +ѧ V establish|,patient=education| + V MakeTrouble| + N emotion|,FondOf|ϲ +² V joyful|ϲ + N fact|,damage| + N fact|,punish|,#police| +̳ N facilities|ʩ,space|ռ,@punish|,#crime|,police| +̷ N fact|,punish| +̷ N law|ɷ,*punish|,#crime| +̾ N human|,#occupation|ְλ,police| +̾ V part|,%institution|,*scout|,#crime|,police| +̾ N tool|þ,police|,*punish|,#crime| + N law|ɷ,*punish|,#crime| +ͷ V undergo|,content=release|ͷ,crime|,#police| + N time|ʱ,@punish|,#crime|,police| + ADJ aValue|ֵ,attachment|,crime| +· N human|,crime|,undesired|ݬ +· N fact|,do|,#crime|,crime| +¾ N human|,#occupation|ְλ,police| + N fact|,accuse|ظ,police| +Ϸ N law|ɷ,*punish|,#crime| + N duty|,crime| + V scout|,content=crime|,police| + V part|,%institution|,*scout|,#crime|,police| +Ѷ V interrogate|,police| +촦 V part|,%institution|,*scout|,#crime|,police| + N attribute|,kind|,&physical| + N tool|þ,*produce| +Ͱ N part|,%machine| +͸ N metal| +ͺ N attribute|,kind|,&artifact|˹ + N attribute|,form|״,&physical| +α V FormChange|α +γ V forming|γ +εӰֻ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ζѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +κ N part|,%AnimalHuman|,body| +κ N part|,%human|,body| +μ N attribute|,bearing|̬,&human| + V describe|д +ݴ N part|,%language| +ʽ N attribute|,form|״,&entity|ʵ +ʽ ADJ aValue|ֵ,range|,extensive|,desired| +ʽ ADJ aValue|ֵ,appearance| +ʽ N thinking|˼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&earth| + V BeSimilar| +ƶʵȫȻͬ ADJ aValue|ֵ,similarity|ͬ,different| +̬ N attribute|,form|״,&physical| +̬ѧ N knowledge|֪ʶ,#language| + N attribute|,form|״,&human| + N attribute|,form|״,&inanimate| +ͬ ADJ aValue|ֵ,performance|,useless|,undesired|ݬ + N image|ͼ +ɫɫ ADJ aValue|ֵ,kind|,many| +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ӱ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +״ N attribute|,form|״,&physical| + N character|,surname|,human|,ProperName|ר +̨ N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N InstitutePlace|,commercial| + CLAS NounUnit|,&physical| + V SelfMove| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,effect|Ч,superior| + N affairs| + N attribute|,behavior|ֹ,&human| + N attribute|,clan|,&human| + V conduct|ʵʩ + V exist| + EXPR expression|,*ExpressAgreement|ʾͬ +вͨ ADJ aValue|ֵ,effect|Ч,useless| +г N human|,#occupation|ְλ,official|,commercial| +г V VehicleGo|ʻ,#LandVehicle| +г N attribute|,distance|,&event|¼ +г N process|,wave|ڶ,#machine| +д V VehicleGo|ʻ,#ship| +д V kill|ɱ,manner=crime|,police| +е N affairs| +еͨ ADJ aValue|ֵ,effect|Ч,superior| +ж V do| +ж N fact|,#act|ж +з N human|,#occupation|ְλ,commercial| +з V mating| +и V benefit| +й N house|,royal| +к V WellTreat|ƴ +л N expression| +л V entice|,means=GiveAsGift|,crime| +м N human|,desired|,able| +м N human|,desired|,able| +н ADV aValue|ֵ,time|ʱ,future| +нľ V decline|˥ +н V rob| +н V GoForward|ǰ +н N community|,#LandVehicle|,*SelfMove| +о V GoThrough| +о V excrete|й,medical|ҽ +о N fact|,act|ж +о N SelfMove|,#army|,military| + V SeekPleasure|Ѱ + N artifact|˹,#tour| + V salute|¾ + N shape|,linear| + V engage|,content=catch|׽ס,agricultural|ũ + N human|,*tour|,*AlterLocation|ռλ + N tool|þ,cubic|,@put| +ƭ V engage|,content=cheat|ƭ + V engage|,content=beg| + V engage|,content=steal|͵ + N attribute|,price|۸,&physical|,commercial| + N human|,*walk| + V calm| +ɫҴ V walk|,manner=busy|æ + V engage|,content=WellTreat|ƴ + N human|,*WellTreat|ƴ + N human|,#occupation|ְλ,commercial| +ʬ N human|,unable|ӹ,undesired|ݬ +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʹ V conduct|ʵʩ +ʻ V VehicleGo|ʻ + V do| + N attribute|,price|۸,&physical|,commercial| + N attribute|,kind|,&character|,&symbol| + N part|,%organization|֯,*manage| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ N fact|,act|ж +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊֱ N human|,fair|,desired| + V announce| + V sell|,commercial| + N celestial| + V kill|ɱ,police| +̶ N part|,%army|,police| + V kill|ɱ,crime| +ҵ N affairs| +ҵ N expression| +ҽ V engage|,content=cure|ҽ,medical|ҽ +ˮ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + N affairs|,manage| +λ N part|,%organization|֯,*manage| + N part|,%organization|֯,*manage| + N affairs|,manage| + N place|ط,%country|,*manage| + N affairs|,manage|,public| +֮Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +ֹ N attribute|,behavior|ֹ,&human| +ֹ N location|λ,@stay|ͣ +װ N tool|þ,cubic|,@put| + N location|λ,@stay|ͣ +ٲ V unfixed|δ,scope=location|λ,#stay|ͣ + V walk| + V BeRecovered|ԭ,scope=mental| + V awake| + V understand| +ѻ ADJ aValue|ֵ,content|,opened|,desired| +Ŀ ADJ aValue|ֵ,content|,opened|,desired| + V understand| + N character|,surname|,human|,ProperName|ר + N phenomena|,lucky|,desired| + ADV {comment|} +Ҵ V alive| +Ҵ N human|,*alive| +Ҷ ADV {comment|} +Ҹ ADJ aValue|ֵ,circumstances|,happy|,desired| +Ҹ N phenomena|,lucky|,desired| +Һ ADV {comment|} +һ V joyful|ϲ,cause=meet| +ҿ ADV {comment|} + V escape| + V escape|,ResultEvent=die| + V lucky|,degree=extreme| + N phenomena|,lucky|,desired| +ϲ ADV {comment|} + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V lucky| + N phenomena|,lucky|,desired| +˶ N human|,*lucky|,desired| +ֻ V joyful|ϲ,cause=unfortunate|,other| + N fruit|ˮ +Ӻ ADJ aValue|ֵ,color|ɫ,red| +ӻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,#sex|Ա,#mating| + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,property|,&entity|ʵ + N attribute|,sex|Ա,&animate| + N attribute|,sex|Ա,&language| +԰ V love| +Ա N attribute|,sex|Ա,&animate| +Բ N disease|,#SeekPleasure|Ѱ +Ը ADJ aValue|ֵ,appearance| +Ը N attribute|,behavior|ֹ,&AnimalHuman| +Լ N medicine|ҩ +Լ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Լ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V mating| +Խ߳ N part|,%event|¼,#mating| +Խ N fact|,education| + N attribute|,strength|,&animate| + N attribute|,performance|,&implement| +ܼ۸ N attribute|,effect|Ч,#price|۸,&artifact|˹,commercial| +Ű N human|,*damage|,crime| + N part|,%AnimalHuman|,viscera|,*mating| + N attribute|,behavior|ֹ,&AnimalHuman| +鼱 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,nerve|,#mating| +Ϊ N fact|,mating| +ѧ N knowledge|֪ʶ + N aspiration|Ը,expect|,#mating| + N attribute|,property|,&entity|ʵ +״ N attribute|,property|,entity|ʵ + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,name|,surname|,&human| + V mean|ָ + N attribute|,name|,&human| + N attribute|,name|,surname|,&human| + N human|,family|,male| + N human|,male| +ֳ N human|,family|,male| +ֵ N human|,family|,male| +ֵ N human|,family|,mass|,male| +ֵ N human|,male| +ֵܰ ADJ aValue|ֵ,relatedness|,intimate| +ֵ N human|,family|,mass|,male| +ֵǽ V fight| + N human|,family|,mass| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| +ױ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ײ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׶༪ V unfortunate| +׶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׷ N human|,*kill|ɱ,undesired|ݬ,crime| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ N information|Ϣ,#die| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N weapon|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ,crime| + N humanized|,evil|,undesired|ݬ +ɷ N humanized|,evil|,undesired|ݬ +ɷ N human|,evil|,undesired|ݬ + N fact|,undesired|ݬ,#unfortunate| + N human|,*kill|ɱ,undesired|ݬ,crime| + V die|,#crime| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N information|Ϣ,#die| + N information|Ϣ,bad| + N mental| + N part|,%AnimalHuman|,body| +ز N part|,%AnimalHuman|,body| +ظ N part|,%AnimalHuman|,body| +ع N part|,%AnimalHuman|,bone| +ػ N mental| +ؽ N mental| +ؿ N part|,%AnimalHuman|,body| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +Χ N attribute|,size|ߴ,body|,&human| +޵ī ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +г V know|֪ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N part|,%animal|,tail|β + N place|ط,country|,ProperName|ר,(Hungary|) +ū N human|,past| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Hungary|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר,(Hungary|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,sex|Ա,male| + N human|,strong|ǿ + N place|ط,#country|,strong|ǿ +۱ N attribute|,ability|,&debate| +۷ N InsectWorm| +۷ N attribute|,bearing|̬,stately|ׯ,desired| +۷ N wind| +۹ N part|,%place|ط,mouth| +ۺ ADJ qValue|ֵ,amount|,many| +ۻ N part|,%FlowerGrass|,male| +ۻ N stone|ʯ,?material| +ۻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ۼ N bird| +۽ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%FlowerGrass|,heart|,male| +ͼ N aspiration|Ը,expect|,desired| +ΰ ADJ aValue|ֵ,scene|,stately|ׯ,desired| + N aspiration|Ը,expect|,desired| +IJ ADJ aValue|ֵ,will|־,strong|ǿ +׳־ N aspiration|Ը,expect|,desired| + ADJ aValue|ֵ,sex|Ա,male| + N InsectWorm| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N attribute|,bearing|̬,brave|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,brave|,desired| + V ExpressAgainst|Ǵ + N beast| + N character|,surname|,human|,ProperName|ר +ܷ N InsectWorm| +è N beast| + ADJ aValue|ֵ,strength|,strong|ǿ + N part|,%beast|,foot| + V cease|ͣ + V rest|Ϣ + V separate| +ݻ V cease|ͣ,content=discuss| +ݼ N time|ʱ,@WhileAway| +ݿ V dizzy|,medical|ҽ + V sleep|˯ + N emotion| + V relate|й,scope=affairs| +빲 V relate|й,scope=affairs| +˹ N place|ط,city|,ProperName|ר,(US|) +Ϣ V rest|Ϣ +Ϣ N room|,@rest|Ϣ + V WhileAway| + AUX {modality|} +ѧ V cease|ͣ,content=study|ѧ,education| + V maintain|,medical|ҽ +Ϣ V rest|Ϣ +Ϣ V resume|ָ +ҵ V cease|ͣ,content=affairs|,commercial| +ҵ V finish| +ս V cease|ͣ,content=fight|,military| + V rest|Ϣ,military| +ֹ V cease|ͣ + V rest|Ϣ + V PutInOrder| + V build| + V compile|༭ + V decorate|װ + V repair| + V study|ѧ +޲ V repair| +޲ V repair|,medical|ҽ +޳ ADJ aValue|ֵ,length|,long| +޴ N expression| +޴ѧ N human|,literature| +޵ V cultivate|,religion|ڽ +޶ V amend| +޶ N human|,*amend| +޸ V repair| +޸ N human|,*repair| +޸ V alter|ı +޸ V amend| +޺ V compile|༭,content=letter|ż +޺ V associate| +޺ V engage|,content=WellTreat|ƴ +޼ V PutInOrder| +޽ V build| +޿ V dredge|ͨ + V repair| + N human|,#occupation|ְλ,*repair| + N human|,*repair| + V exercise| +· V build|,PatientProduct=route|· +· N human|,#occupation|ְλ,*repair|,#route|· + V MakeUp|ױ,patient=skin|Ƥ + ADJ aValue|ֵ,SocialMode|,good|,desired| +Ů N human|,religion|ڽ,female|Ů + V repair| +䳧 N InstitutePlace|,@repair|,factory|,industrial| + V repair| + V cultivate| +ʿ N human|,religion|ڽ,male| + V MakeBetter|Ż + V MakeUp|ױ + V decorate|װ + V improve| + N part|,%language| + V cultivate|,religion|ڽ +޲ V repair| + N attribute|,behavior|ֹ,&human| + N attribute|,rank|ȼ,#mental|,&human| +ҵ V study|ѧ + V build| + V PutInOrder| + V repair| + V adjust| + V amend| + N readings| + N thinking|˼ + V build| + V repair| + V shy| +߲ V shy| +߳ N emotion|,shy| +ߴ V shy| + V shy| + V shy| + V shy| + V damage| + N human|,*damage| +ɬ V shy| + ADJ aValue|ֵ,age|,aged| + V decline|˥ + ADJ aValue|ֵ,age|,aged| + V decline|˥,scope=age| +ľ N human|,unable|ӹ,undesired|ݬ +ľ N wood|ľ,bad|,undesired|ݬ +ľ N human|,unable|ӹ,undesired|ݬ +ľ N inanimate|,waste|,undesired|ݬ + V smell| + N experience|,smell| +̽ N human|,*investigate| + V OutOfOrder| + N phenomena|,OutOfOrder|,#metal| + N trace|,#OutOfOrder| +ʴ ADJ aValue|ֵ,property|,$OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,*succeed|ɹ,#exam|,past| + N human|,literature| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%clothing|,#arm| + N mark|־ + N part|,%clothing|,#arm| + N fittings|,%clothing|,#arm| +Թ V unwilling|Ը,content=help| + N mark|־,#arm| + ADJ aValue|ֵ,size|ߴ,small|С + N part|,%clothing|,#arm| + V fasten|˩ +廨 V decorate|װ +廨ͷ N human|,unable|ӹ,undesired|ݬ +廨ͷ N tool|þ,#sleep|˯ +Ʒ N artifact|˹ + N tool|þ,*decorate|װ + N InstitutePlace|,*sell|,@buy|,commercial| + N symbol| +ʱ N time|ʱ,hour|ʱ + V need| + N physical|,$need| + N aspiration|Ը,need| + N quantity|,amount|,&need| +Ҫ V need| +Ҫ N quantity|,amount|,&need| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N knowledge|֪ʶ +鱨 V TalkNonsense|Ϲ˵ + N part|,%language| + V lavish|˷ +鸡 ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +鸡 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +鹹 V forge|α +黳 ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N attribute|,reputation|,fake|α,&human|,&organization|֯ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N emotion|,ParticularAbout|,#fake|α + N emotion|,ParticularAbout|,#fake|α + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α +ʵ ADJ aValue|ֵ,content| +ʵ N attribute|,circumstances|,&entity|ʵ + N disease| + V dizzy| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +λԴ V wait|ȴ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ʈ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N knowledge|֪ʶ + N image|ͼ,linear| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ӧ V slack|͵ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ί V pretend|װ,content=WellTreat|ƴ + V ExpressDissatisfaction|ʾ + V MakeSound| + V WarmUp| + V damage| + V exhale| + V sigh|̾ +꺮ů V SayHello|ʺ + V weep| + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + N part|,%human|,hair|ë + AUX {comment|} +뷢 N part|,&AnimalHuman|,hair|ë + N part|,%plant|ֲ,base| +ü N human|,male| +ü N part|,%human|,hair|ë +Ҫ AUX {modality|} +֪ N information|Ϣ + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,slow| + N character|,surname|,human|,ProperName|ר +첽 V walk| + ADJ aValue|ֵ,speed|ٶ,slow| + N place|ط,city|,ProperName|ר,(China|й) + V agree|ͬ + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,almost| + N place|ط,city|,ProperName|ר,(China|й) + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,property|,ExpressAgreement|ʾͬ + V agree|ͬ +֤ N document|,*ExpressAgreement|ʾͬ +ŵ V agree|ͬ + V MarryTo| + ADJ qValue|ֵ,amount|,many| +Ը V swear| + V SetAside| + V cherish|Ļ + V keep| + V store| + N part|,%artifact|˹,#electricity| + V SetAside|,patient=water|ˮ + V SetAside| + V store| +ˮ V store|,patient=water|ˮ +ˮ N facilities|ʩ,space|ռ,@store|,#water|ˮ +ˮ N affairs|,#liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V addict|Ⱥ + V explain|˵ + N place|ط,country|,ProperName|ר,(Syria|) + V speak|˵ + V talk|̸ + V farewell| + V talk|̸ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Syria|) + N place|ط,country|,ProperName|ר,(Asia|) +ǰ N money|,(Syria|) + N human|,(Syria|) + V explain|˵ + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + N human|,*speak|˵ +˵ V explain|˵ +̸ V talk|̸ + V employ| + N lights|,#celestial| + N celestial|,*rise| + N attribute|,sequence|,&entity|ʵ + N part|,%text| + N attribute|,sequence| +Ļ N process|,early| + N part|,%music| + N part|,%text| + N part|,%text| + N livestock| + N artifact|˹,generic|ͳ,livestock| +Ʒ N physical|,#livestock| + N material|,*feed|ι,#crop|ׯ + ADJ aValue|ֵ,attachment|,#livestock| + V foster|,patient=livestock| +ҵ N affairs|,*foster|,#livestock| + N livestock| + V foster|,agricultural|ũ + V pity| + V recompense| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V inlay|Ƕ + N shape| + V talk|̸,content=empty| + N text|,content=empty| +߶ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N human|,family|,male| + N affairs| + N part|,%physical|,*surplus|ʣ + N part|,%time|ʱ,head|ͷ + V KeepOn|ʹ + ADJ aValue|ֵ,behavior|ֹ,continuous| + V add| + V buy|,means=MakeAppointment|Լ + N shows| + V KeepOn|ʹ,patient=time|ʱ + V MarryFrom|Ȣ + N human|,family|,female|Ů + N LandVehicle| + ADJ aValue|ֵ,height|߶,tall| + N part|,%building|,mouth| + N room| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,area|,wide| +Ȼ N fact|,undesired|ݬ +ԯ N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V announce| + N character|,surname|,human|,ProperName|ר + V dredge|ͨ + V announce| +ֹͣж״̬ V cease|ͣ,content=attribute|,military| + V announce| + V disseminate| + N part|,%community| + N human|,*disseminate| +Ա N human|,*disseminate| + V recite|ж + V announce| + V announce| + N fact|,disseminate| + V judge|ö,police| +ʾ V announce| + V swear| +ͳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +й V ShowEmotion|ʾ +й V dredge|ͨ + N document|,*announce| + V disseminate| +ս V announce|,content=fight|,military| +ֽ N paper|ֽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,similarity|ͬ,different| + V hang| + V unfixed|δ + V worried|ż + N fact|,^$handle| + N fact|,police|,^$handle| + N part|,%building|,*hang|,arm| + N part|,%machine|,arm| + V hang| +δ V unfixed|δ + V float|Ư,industrial| + V hang| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V hang| + V suicide|ɱ +Ծ V suicide|ɱ +ľ N tree| + N experience|,worried|ż + V worried|ż + V reward| + N attribute|,similarity|ͬ,different|,&entity|ʵ,&aValue|ֵ + N facilities|ʩ,route|· + N part|,%land|½,skin|Ƥ + V cease|ͣ +ͱ N part|,%land|½,skin|Ƥ +Ӻ N part|,%AnimalHuman|,mouth| + V GoBack| + V circle| + V cut| + V cut|,industrial| + N image|ͼ,round|Բ + N part|,%human|,hair|ë + V rotate|ת + N machine|,*produce|,industrial| + N wind| + ADV aValue|ֵ,duration|,TimeShort| + N attribute|,SoundQuality|,&music| +ť N part|,%implement|,*hold|,*OpenShut|,hand| + V circle| + N phenomena|,#liquid|Һ +ת ADJ aValue|ֵ,property|,rotate|ת +ת V rotate|ת +תǬ V alter|ı,patient=natural|Ȼ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black|,NotLight|Ũ + N human|,family|,female|Ů +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N human|,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѡ V choose|ѡ +ѡ N publications|鿯 +ѡ V select|ѡ +ѡ V choose|ѡ +ѡ N fact|,compete|,*choose|ѡ,sport| +ѡ V compile|༭ +ѡ N publications|鿯 +ѡ V choose|ѡ,content=material| +ѡ V choose|ѡ,Vachieve| +ѡ V dispatch|Dz +ѡ V decide| +ѡ V study|ѧ,education| +ѡ V buy|,commercial| +ѡ V choose|ѡ,Vachieve| +ѡ N publications|鿯 +ѡ ADJ aValue|ֵ,property|,select|ѡ +ѡ V select|ѡ +ѡٷ N law|ɷ,#select|ѡ +ѡǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#select|ѡ +ѡȨ N rights|Ȩ,*select|ѡ +ѡ N human|,*select|ѡ +ѡ˶ N fact|,select|ѡ,politics| +ѡ V choose|ѡ,content=mine|,industrial| +ѡ N InstitutePlace|,*choose|ѡ,#mine|,industrial| +ѡ V choose|ѡ,content=human|,female|Ů +ѡ N human|,*select|ѡ +ѡ V dispatch|Dz +ѡƱ N document|,*select|ѡ +ѡƸ V employ| +ѡ N place|ط,#select|ѡ +ѡȡ V choose|ѡ +ѡ V RegardAs| +ѡ N human|,$choose|ѡ,*compete|,sport| +ѡΪ V undergo|,content=RegardAs| +ѡ V study|ѧ,education| +ѡ޿ N affairs|,$choose|ѡ,education| +ѡ V check| +ѡ V use| +ѡ N choose|ѡ,agricultural|ũ +ѡ V choose|ѡ +ѡ N problem| +ѡ ADJ aValue|ֵ,property|,$choose|ѡ +ѡ N human|,*select|ѡ +ѡ V choose|ѡ,Vachieve| +ѡ V choose|ѡ,agricultural|ũ +ѡ ADJ aValue|ֵ,source|Դ,$choose|ѡ +Ѣ N disease| +ѣ V dizzy| +ѣĿ V illuminate|,PartOfTouch=eye| +ѣ V dizzy| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +ѥ N clothing|,#foot| +ѥ N clothing|,#foot| +Ѧ N character|,surname|,human|,ProperName|ר +ѧ N InstitutePlace|,education| +ѧ V imitate|ģ +ѧ N knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ +ѧ V study|ѧ +ѧ N publications|鿯 +ѧ V study|ѧ,content=walk| +ѧ N part|,%institution|,#knowledge|֪ʶ +ѧίԱ N human|,#knowledge|֪ʶ +ѧ N human|,*study|ѧ,education|,friend| +ѧ N fact|,uprise|,education| +ѧ V study|ѧ,Vachieve| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ѧ N human|,#knowledge|֪ʶ,undesired|ݬ +ѧ V FitNot|,relevant=do|,contrast=study|ѧ +ѧ N expenditure|,$pay|,#education| +ѧ N result|,#study|ѧ +ѧ N system|ƶ,#result|,#study|ѧ +ѧ N attribute|,SocialMode|,&education| +ѧ N attribute|,behavior|ֹ,#study|ѧ,&human| +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N attribute|,circumstances|,&study|ѧ +ѧ V study|ѧ,Vachieve| +ѧ V study|ѧ,source=good| +ѧ N community|,#knowledge|֪ʶ +ѧ V study|ѧ,Vachieve| +ѧ N attribute|,status|,#study|ѧ,&human| +ѧ N human|,#knowledge|֪ʶ +ѧ N community|,education| +ѧ N human|,stiff|,undesired|ݬ +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N part|,%knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ,education| +ѧ N attribute|,status|,#education|,&human| +ѧ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N community|,#study|ѧ +ѧ N attribute|,age|,#study|ѧ,&human| +ѧͯ N human|,#age|,#study|ѧ +ѧǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#education| +ѧǰͯ N human|,young|,#age|,#study|ѧ +ѧ N attribute|,name|,formal|ʽ,#education|,&human| +ѧ N attribute|,name|,formal|ʽ,&entity|ʵ +ѧ N time|ʱ,education| +ѧ N community|,#knowledge|֪ʶ +ѧ N community|,knowledge|֪ʶ +ѧ N time|ʱ,education| +ѧǰ N affairs|,education| +ѧ V TalkNonsense|Ϲ˵ +ѧ V imitate|ģ +ѧ V imitate|ģ,content=speak|˵ +ѧ N human|,*study|ѧ +ѧ N human|,*study|ѧ,education| +ѧ N community|,education| +ѧ˶ N fact|,uprise|,education| +ѧʱ N time|ʱ,hour|ʱ,education| +ѧʶ N knowledge|֪ʶ +ѧʶdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ѧʶԨ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧʿ N human|,*study|ѧ,education| +ѧʿ N human|,literature| +ѧʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +ѧ N knowledge|֪ʶ +ѧɾ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#research|о,#study|ѧ +ѧ N community|,knowledge|֪ʶ +ѧ N human|,desired|,able|,glorious| +ѧ N part|,%knowledge|֪ʶ,aspect| +ѧ N text|,#research|о +ѧۻ N fact|,discuss|,#knowledge|֪ʶ +ѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ +ѧֻ N fact|,discuss|,#knowledge|֪ʶ +ѧ˵ N knowledge|֪ʶ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧͽ N human|,#occupation|ְλ,*study|ѧ,industrial| +ѧλ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N knowledge|֪ʶ +ѧϰ V study|ѧ +ѧϰɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧϰ N time|ʱ,@study|ѧ,education| +ѧϰ N human|,*study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education|,friend| +ѧҵ N affairs|,education| +ѧҵɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧ V study|ѧ,purpose=use| +ѧ N knowledge|֪ʶ +ѧ V study|ѧ,content=affairs|,#MakeLiving|ı +ѧר ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ N human|,*study|ѧ,education|,friend| +ѧԱ N human|,*study|ѧ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧ N fact|,uprise|,education| +ѧӷ N expenditure|,$pay|,#education| +ѧ N human|,#knowledge|֪ʶ +ѧ N system|ƶ,education| +ѧ N time|ʱ,@study|ѧ,education| +ѧ N human|,*study|ѧ +Ѩ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ѩ N part|,%AnimalHuman| +Ѩ N part|,%earth|,mouth| +Ѩ V reside|ס +Ѩλ N part|,%AnimalHuman| +ѩ N RainSnow|ѩ +ѩ V remove| +ѩ ADJ aValue|ֵ,color|ɫ,white| +ѩ N beast| +ѩ N phenomena|,unfortunate|,#RainSnow|ѩ +ѩ N drinks|Ʒ +ѩ V amend|,content=wrong| +ѩ N land|½,#RainSnow|ѩ +ѩ N land|½,#RainSnow|ѩ +ѩ N drinks|Ʒ,ice| +ѩ N land|½,#RainSnow|ѩ +ѩ V amend|,content=wrong| +ѩ N RainSnow|ѩ +ѩ N tool|þ,*MakeUp|ױ +ѩޮ N part|,%vegetable|߲,embryo|,$eat| +ѩޮ N vegetable|߲ +ѩ N drinks|Ʒ,$addict|Ⱥ +ѩ N FlowerGrass| +ѩ ADJ aValue|ֵ,brightness|,bright| +ѩ N tree| +ѩä N disease| +ѩä V disease| +ѩƬ N RainSnow|ѩ +ѩ N LandVehicle|,#RainSnow|ѩ +ѩ N addictive|Ⱥ +ѩ ADJ aValue|ֵ,color|ɫ,purple| +ѩ N human| +ѩɽ N land|½,#RainSnow|ѩ +ѩϼ˪ ADJ aValue|ֵ,circumstances|,hardship|,more|,undesired|ݬ +ѩϼ˪ V unfortunate| +ѩˮ N water|ˮ,#RainSnow|ѩ +ѩ N tree| +ѩ N drinks|Ʒ,ice| +ѩԩ V amend|,content=wrong| +ѩԭ N land|½,#RainSnow|ѩ +ѩ̿ V help| +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N disease| +Ѫ N fact|,undesired|ݬ,#kill|ɱ,#die|,crime| +Ѫ N fund|ʽ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N fact|,check|,#liquid|Һ,medical|ҽ +Ѫ N part|,%AnimalHuman|,nerve| +Ѫܲ N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N attribute|,strength|,&human|,&organization|֯ +ѪǮ N payment| +Ѫ ADJ aValue|ֵ,color|ɫ,red| +Ѫ쵰 N part|,%AnimalHuman| +Ѫ N trace|,#AnimalHuman|,#liquid|Һ +Ѫ N trace|,#bleed|Ѫ +Ѫ N part|,%AnimalHuman| +Ѫ V slander|̰ +Ѫ N facilities|ʩ,@store|,#part|,#liquid|Һ,medical|ҽ +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫɺ N part|,%AnimalHuman|,liquid|Һ,many| +Ѫ N attribute|,attachment|,&AnimalHuman| +Ѫ N attribute|,physique|,&AnimalHuman| +ѪŨˮ V aValue|ֵ,relatedness|,intimate| +Ѫ N disease| +Ѫ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,flesh| +Ѫ V phenomena|,miserable| +Ѫģ ADJ phenomena|,miserable| +Ѫ ADJ aValue|ֵ,relatedness|,intimate| +Ѫɫ N attribute|,color|ɫ,&skin|Ƥ +Ѫ˨ N disease| +Ѫˮ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman| +Ѫͳ N attribute|,source|Դ,&human| +Ѫ N bacteria|΢ +Ѫ没 N disease| +ѪС N part|,%AnimalHuman|,liquid|Һ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N attribute|,kind|,&part|,#AnimalHuman|,#liquid|Һ +Ѫ N attribute|,courage|,&human| +Ѫѹ N attribute|,strength|,&AnimalHuman| +Ѫѹ N tool|þ,*measure| +ѪҺ N attribute|,strength|,&human|,&organization|֯ +ѪҺ N part|,%AnimalHuman|,liquid|Һ +ѪҺѧ N knowledge|֪ʶ +Ѫ N clothing| +Ѫӡ N trace|,#liquid|Һ +ѪѲ N disease| +Ѫȷ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ѪԵ N attribute|,attachment|,&AnimalHuman| +Ѫծ N thing|,$owe|Ƿ,#kill|ɱ +ѪծѪ V revenge| +Ѫս V fight|,military| +Ѫ N disease| +Ѫ N trace|,#liquid|Һ +Ѫհ߰ N aValue|ֵ,appearance| +ѫ N result|,desired|,#succeed|ɹ +ѫ N result|,desired|,#succeed|ɹ +ѫ N human|,royal| +ѫ N result|,desired|,#succeed|ɹ +ѫҵ N result|,desired|,#succeed|ɹ +ѫ N tool|þ,*reward|,$GiveAsGift|,desired| +Ѭ V cook| +Ѭ V pollute|ʹ +Ѭ V remove|,instrument=gas| +Ѭ N wind| +ѬȾ V CauseAffect|Ⱦ +Ѭ V cultivate| +Ѭ ADJ aValue|ֵ,temperature|¶,hot| +Ѭ N medicine|ҩ +Ѭ V cook| +ѭ V obey|ѭ +ѭ ADJ aValue|ֵ,property|,circulate|ѭ +ѭ V circulate|ѭ +ѭ N symbol|,#quantity|,#DoSum| +ѭ N fact|,compete|,sport| +ѭ V circulate|ѭ +ѭϵͳ N part|,%AnimalHuman|,viscera|,*circulate|ѭ +ѭС N symbol|,#quantity|,#DoSum| +ѭ򽥽 V prosper|,manner=steady| +ѭѭ V teach| +Ѯ N time|ʱ,TenDays|Ѯ +Ѯ N time|ʱ,year| +ѯ V ask| +ѯ V ask|,content=price|۸,commercial| +ѯ V ask| +ѯ N human|,*ask| +Ѱ V LookFor|Ѱ +Ѱ ADJ aValue|ֵ,kind|,ordinary| +Ѱ ADJ aValue|ֵ,rank|ȼ,average| +Ѱ̼ V suicide|ɱ +Ѱ V LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=place|ط +Ѱ V investigate| +Ѱ V LookFor|Ѱ,means=cry| +Ѱ N tool|þ,*LookFor|Ѱ,#cry| +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V obtain|õ,means=LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=time|ʱ +Ѱ V tease|ȡ +Ѱ V LookFor|Ѱ +Ѱ V seek|ıȡ +Ѱ˼ V think|˼ +Ѱ V suicide|ɱ +Ѱ V MakeTrouble| +Ѱժ V compile|༭ +Ѱ V LookFor|Ѱ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V control| +ѱ V cultivate|,agricultural|ũ +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +Ѳ V check| +Ѳ V check|,police|,military| +ѲԱ N human|,employee|Ա,sport| +Ѳ N human|,#occupation|ְλ,police| +Ѳ N institution|,police|,past| +Ѳ V check| +Ѳ V check| +Ѳ V VehicleGo|ʻ +Ѳ N weapon|,$firing| +Ѳ V circulate|ѭ +Ѳشʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +Ѳ V investigate| +Ѳ N human|,#occupation|ְλ,police| +Ѳ V tour| +Ѳ V check| +Ѳ߳ N LandVehicle|,check|,police| +Ѳ߶ N part|,%institution|,*check|,police| +Ѳͧ N ship|,*check|,police| +Ѳ V investigate| +Ѳ V look| +ѲԱ N human|,*investigate| +Ѳ N human|,*investigate| +Ѳ V investigate|,royal| +Ѳ N weapon|,ship|,military| +Ѳ V cure|ҽ +Ѳ߮ V VehicleGo|ʻ,military| +ѳ V bury| +ѳ V die| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V bury| +ѳְ V die|,time=undertake|,#duty|,desired| +Ѵ N water|ˮ,#unfortunate| +Ѵ N time|ʱ,#water|ˮ,#unfortunate| +Ѵ N attribute|,circumstances|,#water|ˮ,#unfortunate|,&waters|ˮ +ѵ N regulation| +ѵ V teach| +ѵ N text| +ѵ V ExpressAgainst|Ǵ +ѵ N text|,*persuade|Ȱ˵ +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V drill|ϰ +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ +ѵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѵ ADJ aValue|ֵ,property|,$teach|,desired| +ѵ N human|,*drill|ϰ +ѵ N text|,*teach| +ѵ V urge|ʹ +ѵʾ N text|,*teach| +ѵ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ѵ V teach| +ѵ V fact|,teach|,#behavior|ֹ +ѵڬ N fact|,research|о,#language| +ѵڬѧ N knowledge|֪ʶ,#language| +Ѷ V ask| +Ѷ N information|Ϣ +Ѷ N symbol| +Ѷ V ask| +Ѷ V interrogate| +ѶϢ N information|Ϣ +ѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ѷ ADJ inferior| +ѷɫ V inferior| +ѷλ V cease|ͣ,content=undertake|,politics| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADV aValue|ֵ,duration|,TimeShort| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹײڶ ADJ aValue|ֵ,behavior|ֹ,sudden| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +ѹ V approach|ӽ +ѹ N attribute|,strength|,&entity|ʵ +ѹ V delay| +ѹ V frighten|Ż +ѹ V gamble|IJ,crime| +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹ N tool|þ,#young|,*recreation| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$OutOfOrder| +ѹס V BeUnable|,content=restrain|ֹ +ѹ N material|,heavy|,#ship|,#transport| +ѹ ADJ aValue|ֵ,weight|,heavy| +ѹ V surpass|ǿ +ѹס V BeAble|ܹ,content=restrain|ֹ +ѹ V MakeLower| +ѹ V subtract|,patient=price|۸,commercial| +ѹ V defeat|սʤ +ѹ ADV {emphasis|ǿ} +ѹ V subtract|,patient=price|۸,commercial| +ѹ V soothe|ο +ѹ N attribute|,strength|,&entity|ʵ +ѹ N tool|þ,*measure| +ѹ N tool|þ,cubic|,*cook| +ѹ N machine|,*press|ѹ +ѹ N tool|þ,*measure| +ѹ· N machine|,*press|ѹ,#route|· +ѹ V damage| +ѹ N human|,*damage| +ѹǮ N money|,$GiveAsGift|,#young| +ѹ V shrink|С +ѹ V subtract| +ѹ N food|ʳƷ +ѹ N machine|,*shrink|С +ѹ N gas|,$shrink|С +ѹʹ V painful|ʹ +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹե V press|ѹ +ѹե V rob| +ѹ V restrain|ֹ +ѹ ADJ aValue|ֵ,property|,restrain|ֹ +ѹ V produce|,industrial| +Ѻ V detain|ס,police| +Ѻ V pawn|Ѻ +Ѻ V pawn|Ѻ,commercial| +Ѻ V sign|д +Ѻ N symbol|,#name| +Ѻ V transport|,manner=defend|,police| +Ѻ V transport|,patient=artifact|˹,manner=defend| +Ѻ V pawn|Ѻ,commercial| +Ѻ V pawn|Ѻ +Ѻ V transport|,manner=defend|,police| +Ѻ N expenditure|,$pawn|Ѻ +Ѻ V borrow|,possession=fund|ʽ +Ѻ N fund|ʽ,$borrow| +Ѻ V transport|,manner=defend|,police| +Ѻβ V sign|д +Ѻ V transport|,manner=defend| +Ѻ N expenditure| +ѻ N bird| +ѻƬ N medicine|ҩ,?addictive|Ⱥ +ѻƬս N fact|,fight|,ProperName|ר +ѻȸ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ѽ N bird| +Ѽ N part|,%bird|,$eat|,embryo| +Ѽ̽ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ѽ N material|,?clothing| +Ѽñ N clothing|,#head|ͷ +Ѽ N bird| +ѼӶ N food|ʳƷ,#bird| +Ѽ N PenInk|ī,*write|д +ѽ ECHO surprise| +Ѿ N shape| +Ѿͷ N human|,employee|Ա,female|Ů,past| +Ѿͷ N human|,young|,female|Ů +Ѿ N part|,%plant|ֲ,limb|֫ +Ѿ N human|,employee|Ա,female|Ů,past| +ѿ N part|,%plant|ֲ,embryo| +ѿ N material|,?drinks|Ʒ + N material|,?tool|þ,*decorate|װ + N part|,%AnimalHuman|,*bite|ҧ + N shape| + N disease| + N part|,%AnimalHuman|,*bite|ҧ + N furniture|Ҿ,@sleep|˯ + N part|,%AnimalHuman|,*bite|ҧ + N image|ͼ,$carve| + N tool|þ,*wipe| + N location|λ,%part|,#AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N tool|þ,*wipe| + N part|,%AnimalHuman|,#bite|ҧ + N stone|ʯ,waste| + N part|,%AnimalHuman|,#bite|ҧ + N part|,%AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jamaica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Jamaica|) +Ԫ N money|,(Jamaica|) +ǩ N tool|þ,*clean|ʹ +ʯ N stone|ʯ,waste| +ˢ N tool|þ,*wipe| +ʹ V painful|ʹ + N tool|þ,*clean|ʹ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ +ܲ N disease| + N disease| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N part|,%land|½,skin|Ƥ +± N part|,%land|½,skin|Ƥ + N part|,%information|Ϣ,heart| + N institution|,politics|,past|,(China|й) + N institution|,politics|,past|,(China|й) + N human|,past| + N location|λ,surrounding|Χ,space|ռ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ŵ N place|ط,capital|,ProperName|ר,(Greece|ϣ) +Ź ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ź N attribute|,name|,&human| +ź N attribute|,name|,other|,&entity|ʵ +żӴ N place|ط,capital|,ProperName|ר,(Indonesia|ӡ) +³ز N waters|ˮ,linear|,ProperName|ר,(China|й) +ʿ N human|,literature| +׹ ADJ aValue|ֵ,kind|,mass| +µ N place|ط,capital|,ProperName|ר,(Cameroon|¡) + N emotion|,#WhileAway| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N location|λ,#InstitutePlace| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ +ư V KeepSilence|˵ +ư N human|,undesired|ݬ,*disable|м,#speak|˵ +ƾ N shows| +ƿ V KeepSilence|˵ + N SportTool|˶ +Ů N human|,undesired|ݬ,female|Ů,*disable|м,#speak|˵ + N human|,undesired|ݬ,*disable|м,#speak|˵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N place|ط,ProperName|ר +ǵ N human|,male|,%publications|鿯 +ǵǺ N waters|ˮ,linear|,ProperName|ר,(Italy|) +ǵ˹DZ N place|ط,capital|,ProperName|ר,(Ethiopia|) +Ƕ N place|ط,capital|,ProperName|ר,(Yemen|Ҳ) +Ƿ N place|ط,ProperName|ר +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɣ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N chemical|ѧ + N crop|ׯ,?material| + N waters|ˮ,linear|,ProperName|ר,(South America|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Armenia|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +ŷ½ N place|ط,ProperName|ר +ȴ N part|,%earth| +ɭ N place|ط,capital|,ProperName|ר,(Paraguay|) +̫֯ N community|,commercial|,ProperName|ר,(Asia|) + N place|ط,city|,ProperName|ר,(US|) + N chemical|ѧ +ͭ N metal| +ϸ N community|,country|,ProperName|ר,(Asia|) +ϸ N place|ط,ProperName|ר,(Asia|) + N chemical|ѧ +Ƶ ADJ aValue|ֵ,speed|ٶ,#sound| + ADJ aValue|ֵ,speed|ٶ,#sound| + N fact|,compete|,sport|,(Asia|) +˻ N fact|,compete|,sport|,(Asia|) + ADJ aValue|ֵ,attachment|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) + N human|,(Asia|) + V flurried| + STRU {MaChinese|} + N part|,%AnimalHuman|,mouth| + V swallow| +ʺ N part|,%AnimalHuman|,mouth| +ʺ N place|ط,important| +ʺ N disease| + V die| +ͷ N part|,%AnimalHuman|,mouth| + V swallow| + N disease| +˸ V cut|,PartOfTouch=part|,#mating| +˸ N cut|,PartOfTouch=part|,#mating| +˸ V cut|,PartOfTouch=part|,#mating| +˸ V damage| +˸ N human|,*damage| + N CloudMist| + N addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ +̲ N addictive|Ⱥ +̳ N CloudMist|,stone|ʯ,waste| +̴ N part|,%building|,%implement|,*exhale|,#gas| +̴ N tool|þ,*addict|Ⱥ +̴˶ N part|,%tool|þ,#addict|Ⱥ +̴ N part|,%tool|þ,#addict|Ⱥ +̵ N part|,%addictive|Ⱥ,waste|,tail|β +̶ N tool|þ,*addict|Ⱥ +̶˿ N addictive|Ⱥ +̸ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̹ N human|,*addict|Ⱥ,undesired|ݬ +̹ N human|,*addict|Ⱥ,undesired|ݬ,crime| +̹ N part|,%tool|þ,#addict|Ⱥ +̺ N tool|þ,cubic|,@put|,#addictive|Ⱥ +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +̻ N stone|ʯ,waste|,#addictive|Ⱥ +̻Ҹ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̻ N edible|ʳ,generic|ͳ +̻ N fire| +̻ N tool|þ,*WhileAway|,*congratulate|ף +̼ N natural|Ȼ,#addictive|Ⱥ,undesired|ݬ +̾ N addictive|Ⱥ +̾ N tool|þ,*addict|Ⱥ,generic|ͳ +̾ N addictive|Ⱥ +ú N material|,$burn| + N human|,*addict|Ⱥ,undesired|ݬ +Ļ N CloudMist| +ũ N human|,*planting|ֲ,#addictive|Ⱥ,agricultural|ũ +ƨ N part|,%addictive|Ⱥ,waste|,tail|β +˿ N addictive|Ⱥ + N chemical|ѧ +̨ N place|ط,city|,ProperName|ר,(China|й) +Ͳ N part|,%building|,%implement|,*exhale|,#gas| +ͷ N part|,%addictive|Ⱥ,waste|,tail|β + N addictive|Ⱥ + N CloudMist| + ADJ aValue|ֵ,clearness|,blurred| +ɢ V disappear|ʧ +Ҷ N addictive|Ⱥ + N RainSnow|ѩ + N CloudMist| + N CloudMist| + N tool|þ,*addict|Ⱥ + N CloudMist| + N gas| + V sink|³ + V spill| + V sting| +͹ V irrigate|,agricultural|ũ +û V sink|³ +û V spill| + V die|,cause=sink|³ + N material|,?food|ʳƷ,salty| +ΰ N material|,?food|ʳƷ,salty| +γ N InstitutePlace|,@produce| +γ N facilities|ʩ,*produce|,#material|,industrial| +κ N waters|ˮ,surfacial|,salty| +λ N material|,?food|ʳƷ,salty| +μ N land|½,barren| +ξ N InstitutePlace|,@produce| +± N material|,?food|ʳƷ +Ũ N attribute|,concentration|Ũ,&inanimate| +ˮ N drinks|Ʒ +Ȫ N liquid|Һ,?material| +˪ N natural|Ȼ,salty| +ˮ N liquid|Һ,?medicine|ҩ + N chemical|ѧ + N InstitutePlace|,*produce|,#material|,industrial| +ҵ N affairs|,*produce|,#material|,industrial| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,tightness|ɽ,tight| + N character|,surname|,human|,ProperName|ר +ϰ V punish|,police| +ϳ V punish|,police| +ϳͲ V punish| +ϴ V attack|,manner=strong|ǿ,police| +϶ N time|ʱ,winter| +Ϸ V obstruct|ֹ +ϸ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,strict| +ϸ V conduct|ʵʩ,manner=strict| +Ϻ ADJ aValue|ֵ,temperature|¶,cold| +Ͻ ADJ aValue|ֵ,tightness|ɽ,tight| +Ͻ ADJ aValue|ֵ,behavior|ֹ,strict| +Ͻ ADJ aValue|ֵ,content|,concise|,desired| +Ͻ V prohibit|ֹ,manner=strict| +Ͼ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ͽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + V order| + ADJ aValue|ֵ,tightness|ɽ,tight| + ADJ aValue|ֵ,behavior|ֹ,strict| +ʵ ADJ aValue|ֵ,tightness|ɽ,tight| + V obey|ѭ,manner=strict| +˿Ϸ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V conduct|ʵʩ,manner=strict| + N fact|,damage| +ʵʵ ADJ aValue|ֵ,tightness|ɽ,tight| +ɼ V treat|Դ,target=self|,manner=strict| +Դ V wait|ȴ,military| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؼ N disease| + N attribute|,property|,urgent|,&event|¼ + V grind|ĥ + V research|о +ж V study|ѧ,manner=attentive|ϸ +з V produce| +о V discuss| +о V research|о +о V think|˼ +о N human|,*study|ѧ,*research|о,education| +о N part|,%InstitutePlace|,*research|о,#knowledge|֪ʶ +о N InstitutePlace|,@research|о,#knowledge|֪ʶ +о뿪 V produce| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +оԺ N InstitutePlace|,@research|о,#knowledge|֪ʶ +о N human|,*research|о +ĥ V grind|ĥ +ĥ V rub|Ħ +ĥ N material|,*rub|Ħ +ĥ ADJ aValue|ֵ,ability|,able|,rub|Ħ + V discuss| + V think|˼ +ֻ N fact|,discuss|,#knowledge|֪ʶ +ϰ V research|о + V research|о + V produce| + V produce|,industrial| + V produce|,medical|ҽ,(China|й) + N human|,*produce| + N part|,%land|½,skin|Ƥ + N stone|ʯ,?material| +Ҷ N part|,%earth|,mouth| +ҽ N stone|ʯ,liquid|Һ +ʯ N stone|ʯ,?material| + N material|,?food|ʳƷ,salty| + N livestock| + V delay| + V enlarge| +Ӱ N place|ط,city|,ProperName|ר,(China|й) +ӱ N place|ط,ProperName|ר,(China|й) +ӳ V enlarge| +ӳ V delay| +Ӹ V delay| +ӻ V delay| + V MakeBetter|Ż,PatientAttribute=strength| + V MakeBetter|Ż,PatientAttribute=strength| +Ƹ V employ| + V delay| + V employ| + V employ|,commercial| + V FormChange|α,StateFin=enlarge| + V enlarge| + V delay| + V GoOn| + V KeepOn|ʹ + V delay| + N character| + N character|,surname|,human|,ProperName|ר + V speak|˵ + N text|,$speak|˵ +Ա ADJ aValue|ֵ,correctness|,accurate|׼,desired| +Բ ADJ aValue|ֵ,behavior|ֹ,^sincere|,undesired|ݬ +Գ ADJ aValue|ֵ,behavior|ֹ,strict| +Դ V explain|˵ +Դ V teach| +Դ N text|,$speak|˵ +Դ N text|,$speak|˵ +Զ V disobey|Υ,content=MakeAppointment|Լ +Թں V reconcile| +Թʵ V boast| +Ժ V reconcile| +Լ ADJ aValue|ֵ,content|,concise|,desired| + N text|,$speak|˵ + N system|ƶ,#speak|˵,free| +С˵ N text| + V differ|ͬ,scope=thought|ͷ +̸ N text|,$speak|˵ +̸ֹ N attribute|,behavior|ֹ,&human| +ƴ V obey|ѭ +֮ N information|Ϣ + N fact|,#act|ж,#text| + V language|,$speak|˵ + V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N attribute|,color|ɫ,&physical| + N attribute|,countenance|,&AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ + N character|,surname|,human|,ProperName|ר + N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N attribute|,reputation|,&human|,&organization|֯ +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N character|,surname|,human|,ProperName|ר + N human|,religion|ڽ + N humanized|,#die| + N human|,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + N disease| +׵ N human|,official|,ProperName|ר,(China|й) +׻ N human|,official|,ProperName|ר,(China|й) +׻ N human|,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,season|,hot| + N time|ʱ,summer| + ADJ aValue|ֵ,temperature|¶,hot| +֢ N disease| + V obey|ѭ + N part|,%inanimate|,%space|ռ,edge| + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,edge| + V wrap| + PREP {direction} +ذ ADJ aValue|ֵ,location|λ +ذ N part|,%land|½,#waters|ˮ,edge| +ر V wrap| +ر߶ V wrap| +ظ N fact|,prosper| +ظ N process| +غ ADJ aValue|ֵ,location|λ +غ N part|,%land|½,#waters|ˮ,edge| +غ N place|ط,#waters|ˮ +غ N location|λ,%waters|ˮ +ؽ ADJ aValue|ֵ,location|λ +ؽ N location|λ,%route|· +ؽײ N FlowerGrass| +· N location|λ,%route|· +; N location|λ,%route|· +Ϯ V obey|ѭ + ADJ aValue|ֵ,location|λ + V use| + PREP {direction} +һϢ V ill|̬,medical|ҽ + V cover|ڸ + V press|ѹ + V shut|ر +ڱ V cover|ڸ +ڱ V hide| +ڲ V hide| +ڶ V deceive|ƭ +ڸ V HideTruth| +ڸ V cover|ڸ +ڻ V protect| +ڻ V protect|,military| +ڻ N army| + V bury| +˶Ŀ V HideTruth| +˶Ŀ V deceive|ƭ +ɱ V attack|,manner=sudden|,military| + V HideTruth| + N facilities|ʩ,space|ռ,*protect|,military| +Ϯ V attack|,manner=sudden|,military| +ӳ V ServeAsFoil| + N part|,%AnimalHuman|,#eye| + N shape| +۰Ͱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +۰ N part|,%AnimalHuman|,#eye| +۲ N disease|,#eye| +۲ V jealous|ʼ +۵ N location|λ,%eye| +۸ N attribute|,circumstances|,happy|,#look|,&human| +۹ N experience| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +۹Զ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ۺ V jealous|ʼ +ۻ V disable|м,scope=look| +ۻ ADJ aValue|ֵ,content|,disorder| +ۼ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ۼ ADV aValue|ֵ,duration|,TimeShort| +۽ N part|,%AnimalHuman|,#eye| +۽ë N part|,%AnimalHuman|,hair|ë +۽ N experience| +۾ N part|,%AnimalHuman|,#eye| +۾ ADJ aValue|ֵ,form|״,dented| +۾ N tool|þ,*look|,#eye| +۾ N beast| +ۿ ADJ aValue|ֵ,duration|,TimeShort| +ۿ N knowledge|֪ʶ,medical|ҽ +ۿ N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ۿҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ۿ N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,liquid|Һ + N location|λ,%eye| + N attribute|,ability|,#judge|ö,&human| + N attribute|,ability|,#look|,&AnimalHuman| + N part|,%AnimalHuman|,#eye| +ֿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + N part|,%AnimalHuman|,skin|Ƥ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N location|λ +Ƥ N time|ʱ,now| +ǰ N time|ʱ,now| +ǰ N wealth|Ǯ + N part|,%AnimalHuman|,#eye| +Ȧ N part|,%AnimalHuman|,#eye| + V jealous|ʼ +ɫ N attribute|,countenance|,&AnimalHuman| + N attribute|,ability|,#look|,&AnimalHuman| + N attribute|,countenance|,&AnimalHuman| + N experience| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#eye|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N part|,%AnimalHuman|,#eye| + N time|ʱ,now| + N human|,*help|,#police|,crime| + N image|ͼ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,#eye| +ҩ N medicine|ҩ,#eye| +ҩˮ N medicine|ҩ,#eye| +Ӱ N image|ͼ + V BeUnable| + V stupefied|ľȻ +ж N human|,enemy| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N stone|ʯ,#eye|,waste| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ܱ V change| + V illuminate|,industrial| + V grow|ɳ + N chemical|ѧ + N text|,redundant| + V RegardAs|,entertainment| + V change| + V deduce| + V drill|ϰ + V explain|˵ + V perform|,entertainment| +ݱ V change| +ݲ V disseminate|,entertainment| +ݳ V perform|,entertainment| +ݳ V perform|,entertainment| +ݻ V change| +ݼ N attribute|,ability|,perform|,&human| +ݽ V speak|˵ +ݽ N text|,$speak|˵ +ݽ N fact|,prosper| +ݾ V perform|,entertainment| + V drill|ϰ,military| +ʾ V show|,content=example|ʵ +ʾ N fact|,*show|,#example|ʵ +˵ V speak|˵ +˵ N text|,$speak|˵ +˵ N human|,*speak|˵ + V calculate| + V study|ѧ +ϰ V drill|ϰ,military| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| + N knowledge|֪ʶ,#perform|,entertainment| + N text| + V deduce| +Ա N human|,#occupation|ְλ,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + V RegardAs|,ResultIsa=human|,important|,entertainment| + V perform|,entertainment| + N human|,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +޸ N attribute|,circumstances|,happy|,#love|,&human| +޸ N music|,#love| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,content|,#love| +ʫ N text|,#love| +ʷ N fact|,#love| + N weather| + N facilities|ʩ,#liquid|Һ,space|ռ + N bird| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ȸ N bird| +β N clothing|,#body| + N food|ʳƷ + N fish| + N bird| + V disgust| + V disgust| +ᷳ V disgust| + V disgust| + V disgust| + V disgust| +ʳ֢ N disease| + N bacteria|΢ + N stationery|ľ,#write|д,#draw| + N stationery|ľ,#write|д,#draw| +̨ N stationery|ľ,#write|д,#draw| + N bird| + N sound| + N text|,*condole|° + N attribute|,behavior|ֹ,&human| + N fire| + N tool|þ,*WhileAway|,*congratulate|ף + N fact|,eat|,#entertain|д + N fact|,eat|,entertain|д + V entertain|д +ϯ N fact|,eat|,#entertain|д + N expression| + N expression| + V check| + V prove|֤ + N tool|þ,*measure|,#electricity| +鷽 N document|,#medicine|ҩ,#medical|ҽ,(China|й) + V check|,content=artifact|˹,commercial| + V check|,content=ability|,#look| + V check| + V check|,content=artifact|˹,commercial| +鿴 V check| + V check|,content=liquid|Һ,medical|ҽ +ʬ V check|,content=body|,#die|,medical|ҽ,police| +ʬ N human|,#occupation|ְλ,*check|,#body|,#die|,medical|ҽ,police| + V check| + V check| +Ѫ V check|,content=liquid|Һ,medical|ҽ +֤ V prove|֤ +֤ N human|,*prove|֤ + V check|,content=fund|ʽ,commercial| + V damage| + N phenomena|,undesired|ݬ,#unfortunate| +꼰 V damage| + V request|Ҫ + V request|Ҫ + V request|Ҫ + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| + ADJ aValue|ֵ,age|,young| + N animal|,young| + N crop|ׯ,young| + N fish|,young| + N plant|ֲ,young| + N shows| + N bird| + N crop|ׯ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +÷ N fruit|ˮ + N tree| + N fruit|ˮ +֦ N fish| + V disseminate| + V lift| + V spread| + V shake|ҡ,patient=tool|þ +ﳤܶ V show|,content=able| +ﳤ V show|,content=able| +ﳤȥ V leave|뿪 +﷫ V start|ʼ,content=VehicleGo|ʻ +ü V satisfied| + V WellKnown| + V remove| + N MusicTool| + N tool|þ,*disseminate|,#sound| + V frighten|Ż + V satisfied| +Ե V satisfied| + N place|ط,city|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) +ӽ N waters|ˮ,linear|,ProperName|ר,(China|й) + N beast| + V pretend|װ + V attack|,manner=pretend|װ,military| + V deceive|ƭ +װ V pretend|װ + N disease| + N livestock| +С N facilities|ʩ,route|· + N place|ط,city|,ProperName|ר,(China|й) + N FlowerGrass| +ަ N AlgaeFungi|ֲ + N livestock|,young| + N PenInk|ī,*write|д + N part|,%AnimalHuman|,*feel| +ë N part|,%livestock|,hair|ë,?material| +ë N clothing| +ë N human|,#occupation|ְλ,commercial| +ë״ ADJ aValue|ֵ,form|״ +Ĥ N part|,%AnimalHuman| +Ƥ N part|,%livestock|,skin|Ƥ,?material| +Ƥֽ N paper|ֽ + N part|,%livestock|,hair|ë,?material| + N food|ʳƷ,#livestock| + N character|,surname|,human|,ProperName|ר +ˮ N part|,%AnimalHuman|,liquid|Һ + N fruit|ˮ +ʻƤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N human|,#occupation|ְλ,agricultural|ũ,*foster|,*TakeCare|,#livestock| + ADJ aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,time|ʱ,now| + N money| + N waters|ˮ,surfacial| +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N material|,?edible|ʳ + N LandVehicle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ػ N FlowerGrass|,?medicine|ҩ + N house|,foreign| + N clothing|,foreign| + N tool|þ,*beat| + N human|,foreign|,undesired|ݬ + N material|,*build| + N tool|þ,*lighting|ȼ + N artifact|˹,foreign| + ADJ aValue|ֵ,pattern|ʽ,foreign| + N water|ˮ,#waters|ˮ + ADJ aValue|ֵ,pattern|ʽ,foreign| + N MusicTool| + N human|,foreign| +ɤ N sound|,#music| +ʽ ADJ aValue|ֵ,kind|,foreign| + N tool|þ,#young|,*recreation| +Ϊ V use|,patient=foreign| + N InstitutePlace|,past|,commercial| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V satisfied| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ե V satisfied| + V exist| + N material|,liquid|Һ,$burn| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,contrariness|,positive| + ADJ aValue|ֵ,time|ʱ,now| + N celestial| + N time|ʱ,spring| + N electricity| +Υ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N facilities|ʩ,#house| +ص N facilities|ʩ,route|· + N lights|,#celestial| + N part|,%electricity| + N part|,%electricity| + N law|ɷ,#time|ʱ +ƽ N sound|,#language| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɡ N tool|þ,*protect|,#weather| +̨ N part|,%house|,space|ռ + ADJ aValue|ֵ,kind| +١ N character|,surname|,human|,ProperName|ר + N disease| + N gas| + V ize|̬ + N chemical|ѧ + N metal| +þ N metal| + N metal| + N chemical|ѧ + N gas| + V CausePartMove|,direction=upper| + N character|,surname|,human|,ProperName|ר + V depend| + V respect| + V depend| + N place|ط,capital|,ProperName|ר,(Burma|) + N shape|,angular| + V CausePartMove|,direction=upper| +Ľ V respect| +˱Ϣ V depend| + V look|,direction=upper| + V look|,direction=upper| +쳤̾ V sigh|̾ + V look|,direction=upper| + V request|Ҫ + V LieDown| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + V depend| + V itch| + V itch| + V GiveBirth| + V ProvideFor| + ADJ aValue|ֵ,clan| + N character|,surname|,human|,ProperName|ר + V cultivate| + V maintain| + V provide| + V rest|Ϣ + V ProvideFor|,patient=army|,military| + V rest|Ϣ,cause=ill|̬ + V cultivate| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ + N human|,family|,male| +ĸ N human|,family| + V maintain| + V ProvideFor| + N InstitutePlace|,@foster|,#bird| + V maintain| + V MakeLiving|ı + V provide| +Ͻ N payment| +Ժ N InstitutePlace|,@TakeCare|,#aged| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ +· V maintain|,patient=space|ռ +· N expenditure| +ĸ N human|,family|,female|Ů +Ů N human|,family|,female|Ů,young| + V maintain|,patient=mental| + V maintain|,medical|ҽ + V foster|,patient=fish| + N facilities|ʩ,*foster|,#fish| + V ProvideFor| +ֳ V foster|,agricultural|ũ + V foster|,patient=livestock| + N InstitutePlace|,@foster|,#livestock| + N human|,family|,male|,young| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,kind|,&physical| + N example|ʵ +Ϸ N shows| + N readings| + N machine| +Ƭ N shows| +Ʒ N artifact|˹,generic|ͳ,#example|ʵ +ƷԱ N human|,#occupation|ְλ,*check| +ʽ N attribute|,pattern|ʽ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,bearing|̬,&human| + V spill| + V invite| + V request|Ҫ + V please|ȡ + V request|Ҫ,ResultEvent=praise|佱 + V attack|,military| + V assemble|ۼ + ADJ aValue|ֵ,property|,invite| + V invite| + N fact|,*compete|,sport| + N human|,*invite| + N location|λ,middle| + N part|,%AnimalHuman|,body| + N part|,%clothing|,body| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N MusicTool| + N fruit|ˮ + N tree| + N food|ʳƷ + N attribute|,size|ߴ,&AnimalHuman| + N attribute|,size|ߴ,&human| + N part|,%AnimalHuman|,body| +ᱳʹ V painful|ʹ +ʹ N disease| +Χ N attribute|,size|ߴ,body|,&human| +Χ N tool|þ,linear|,*fasten|˩ + N part|,%AnimalHuman|,body| +׵ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,undesired|ݬ,evil| + N humanized|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,female|Ů,evil| + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| +ħ N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N method|,undesired|ݬ,*deceive|ƭ +Ի V deceive|ƭ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ұ ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N treasure|䱦 + N community|,ProperName|ר,(China|й) +ҡ V shake|ҡ +ҡ V hesitate|ԥ +ҡ V wave|ڶ +ҡ N part|,%machine|,arm| +ҡ V VehicleGo|ʻ +ҡ V TalkNonsense|Ϲ˵ +ҡ V wave|ڶ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N music| +ҡ N music| +ҡ V shake|ҡ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N furniture|Ҿ,space|ռ,@sleep|˯ +ҡź V help|,scope=mental| +ҡǮ N place|ط,#wealth|Ǯ +ҡһ V change| +ҡͷ V reject|ؾ +ҡͷβ V satisfied| +ҡͷ V satisfied| +ҡβ V request|Ҫ,ResultEvent=pity| +ҡҡλ V shake|ҡ +ҡҡ׹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ҡҷ V wave|ڶ +ҡ N furniture|Ҿ,@sit| +Ң N human|,royal|,ProperName|ר,past| +Ң˴ N human|,desired|,past| +ң ADJ aValue|ֵ,distance|,far|Զ +ң V measure|,industrial| +ң V perception|֪ +ң V control| +ң V look|,direction=far|Զ +ңӦ V cooperate| +ңң ADJ aValue|ֵ,distance|,far|Զ +ңң V surpass|ǿ +ңң ADJ aValue|ֵ,duration|,TimeLong| +ңԶ ADJ aValue|ֵ,distance|,far|Զ +ңԶ ADJ aValue|ֵ,duration|,TimeLong| +Ҥ N facilities|ʩ,space|ռ,@produce|,#material| +Ҥ N facilities|ʩ,space|ռ,mine| +Ҥ N house| +Ҥ N house| +Ҥ N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ҥ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +ҥ N information|Ϣ,undesired|ݬ,fake|α +ҥ N text|,literature| +ҥ V disseminate| +ҥ N information|Ϣ,undesired|ݬ,fake|α +Ҧ N character|,surname|,human|,ProperName|ר +ҧ V accuse|ظ +ҧ V bite|ҧ +ҧ V cry| +ҧ V hold| +ҧ V speak|˵ +ҧ V sting| +ҧ V judge|ö +ҧ V speak|˵ +ҧ V bite|ҧ,#fish|,patient=InsectWorm| +ҧ V connect| +ҧ V endure| +ҧ N bite|ҧ +ҧ N human|,undesired|ݬ,*disable|м,#speak|˵ +ҧĽ V PayAttention|ע,target=expression| +ҧ V bite|ҧ +ҧг V bite|ҧ +ҧס V bite|ҧ +ҧס V hold| +ҧ۶ V PayAttention|ע,target=expression| +ҧ ADJ aValue|ֵ,easiness|,difficult|,#speak|˵ +Ҩ V TakeOutOfWater| +Ҩ N tool|þ,cubic|,*TakeOutOfWater| +ҩ N chemical|ѧ +ҩ V kill|ɱ,instrument=poison| +ҩ N medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N InstitutePlace|,*produce|,#medicine|ҩ,factory|,industrial| +ҩ N publications|鿯,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N document|,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N expenditure|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ +ҩ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ҩ N tool|þ,cubic|,*produce|,#medicine|ҩ +ҩ N medicine|ҩ +ҩʦ N human|,#occupation|ְλ,#medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N knowledge|֪ʶ,#medicine|ҩ +ҩ N tool|þ,*cure|ҽ +ҩ N medicine|ҩ +ҩũ N human|,#occupation|ְλ,agricultural|ũ +ҩũ N human|,#occupation|ְλ,agricultural|ũ,#medicine|ҩ +ҩƬ N medicine|ҩ +ҩƷ N medicine|ҩ,generic|ͳ +ҩƿ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩ N edible|ʳ,#medicine|ҩ +ҩʯ N medicine|ҩ +ҩˮ N medicine|ҩ,liquid|Һ +ҩ N medicine|ҩ +ҩζ N attribute|,odor|ζ,&medicine|ҩ +ҩζ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,contain|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,generic|ͳ +ҩж N disease| +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩЧ N attribute|,effect|Ч,&medicine|ҩ +ҩ N attribute|,property|,&medicine|ҩ +ҩѧ N knowledge|֪ʶ,#medicine|ҩ +ҩҺ N medicine|ҩ +ҩҺ N medicine|ҩ,*wash|ϴ +ҩ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҩ N tool|þ,*sleep|˯,#medicine|ҩ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADV aValue|ֵ,time|ʱ,future| +Ҫ V beg| +Ҫ V expect| +Ҫ V request|Ҫ +Ҫ V spend| +Ҫ CONJ {condition|} +Ҫ AUX {modality|} +Ҫ N place|ط,route|·,military|,important| +Ҫ N fact|,important|,#police| +Ҫ CONJ {condition|} +Ҫ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ҪȻ CONJ {transition|ת} +Ҫ CONJ {condition|} +Ҫ N place|ط,military|,important| +Ҫ N facilities|ʩ,route|·,important| +Ҫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ҫ N place|ط,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N part|,%entity|ʵ,important| +Ҫ N human|,crime|,undesired|ݬ +Ҫ V beg|,patient=artifact|˹ +Ҫ N human|,poor|,*beg|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N place|ط,military|,important| +Ҫ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ҫ V propose|,content=price|۸,commercial| +Ҫ N document|,important| +Ҫ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ V worried|ż +Ҫ N method|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫô COOR {or|} +Ҫ ADV aValue|ֵ,degree|̶,extreme| +Ҫ N fact|,$disgust|,undesired|ݬ +Ҫ V kill|ɱ +Ҫǿ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ҫ V request|Ҫ +Ҫ N human|,desired|,important| +Ҫ N facilities|ʩ,space|ռ,military| +Ҫ N fact|,important| +Ҫ CONJ {condition|} +Ҫ N part|,%entity|ʵ,heart| +Ҫ N information|Ϣ +Ҫ N information|Ϣ,important| +ҪЮ V force|ǿ +ҪЮ V frighten|Ż +ҪԲ ADJ aValue|ֵ,content|,simple|,desired| +ҪԱ N human|,desired|,important| +Ҫ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| +Ҫְ N affairs|,duty|,important| +Ҫּ N part|,%entity|ʵ,heart| +ҫ V AppearanceChange|۱ +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ V illuminate| +ҫ ADJ aValue|ֵ,brightness|,bright| +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ,$eat| +ҭ V ill|̬ +ҭ V refute| +Ү N character|,(China|й) +Үͻ N human|,religion|ڽ,ProperName|ר +Ү· N place|ط,capital|,ProperName|ר,(Israel|ɫ) +Ү N human|,religion|ڽ,ProperName|ר +Үջ N human|,religion|ڽ,ProperName|ר +ү N humanized| +ү N human|,family|,male| +ү N human|,male|,adult| +ү N human|,male|,mass| +ү N human|,male|,mass| +ү N human|,family|,male| +ү N human|,male| +үү N human|,family|,male| +үү N human|,male|,adult| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұ N place|ط +Ұ N part|,%vegetable|߲,embryo|,$eat| +Ұ N vegetable|߲ +Ұ N fact|,eat| +Ұ N FlowerGrass| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Ұ N place|ط,desolate| +Ұ N fruit|ˮ +Ұ N fire| +Ұ N fire|,#land|½ +Ұ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ұ N bird| +Ұ N human|,undesired|ݬ,female|Ů,#crime|,$SeekPleasure|Ѱ +Ұѧ N InstitutePlace|,@teach|,@study|ѧ,education|,informal|ʽ +Ұ¿ N beast| +Ұ N beast| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ N human|,fierce|,undesired|ݬ +Ұè N beast| +Ұţ N beast| +ҰǾޱ N FlowerGrass| +ҰȤ N emotion| +Ұ N human| +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұﱣ N human|,*protect|,#animate| +Ұ N beast|,generic|ͳ +Ұ N beast| +Ұ N place|ط +Ұζ N food|ʳƷ +Ұ N aspiration|Ը,expect| +ҰIJ ADJ aValue|ֵ,will|־,strong|ǿ +Ұļ N human|,evil|,undesired|ݬ +Ұ N human|,evil|,undesired|ݬ +Ұ N attribute|,behavior|ֹ,fierce|,&AnimalHuman| +ҰӪ V reside|ס +Ұս N fact|,fight|,military| +Ұս N army| +Ұս N army| +Ұսڱ N army| +Ұսڱ N part|,%army| +Ұ N beast| +ұ V burn|,industrial| +ұ ADJ aValue|ֵ,attachment| +ұ V burn|,patient=metal|,industrial| +ұѧ N human|,#knowledge|֪ʶ +ұ V burn|,industrial| +ұ N InstitutePlace|,*burn|,factory|,industrial| +ұ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ҳ ADV also|Ҳ +Ҳ EXPR expression|,*ExpressAgreement|ʾͬ +Ҳ CONJ {and|} +Ҳ CONJ {and|} +Ҳ ADV {comment|} +Ҳ˵ CONJ {supplement|ݽ} +Ҳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yemen|Ҳ) +Ҳ N place|ط,country|,ProperName|ר,(Asia|) +Ҳŵɶ N money|,(Yemen|Ҳ) +ҲǶ N money|,(Yemen|Ҳ) +Ҳ N human|,(Yemen|Ҳ) +Ҳ ADV {comment|} +ҳ N NounUnit|,&paper|ֽ +ҳ CLAS NounUnit|,&paper|ֽ +ҳ N attribute|,number|,&readings| +ҳ N tool|þ,*print|ӡˢ +ҳ N stone|ʯ +Ҵ V HoldWithHand| +Ҵ V help| +Ҵ V insert| +Ҵ V upgrade| +ҵ N affairs| +ҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ҵ N institution| +ҵ N wealth|Ǯ +ҵ N wealth|Ǯ,#earth|,#building| +ҵ N result|,undesired|ݬ,#unfortunate| +ҵ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N result|,desired|,#succeed|ɹ +ҵ ADV time|ʱ +ҵ N affairs| +ҵ N affairs|,commercial| +ҵԱ N human|,#occupation|ְλ,commercial| +ҵ֪ʶ N knowledge|֪ʶ +ҵ ADV time|ʱ +ҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,informal|ʽ +ҵʱ N time|ʱ,idle| +ҵ N human|,rich| +Ҷ CLAS NounUnit|,&paper|ֽ +Ҷ N character|,surname|,human|,ProperName|ר +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N part|,time|ʱ,past| +Ҷ N shape|,surfacial|,thin| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N InsectWorm| +Ҷ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ҷ N part|,%plant|ֲ +Ҷ N part|,%machine| +Ҷ V GoBack|,LocationFin=place|ط,original|ԭ +Ҷ N part|,%plant|ֲ,hair|ë +ҶƬ N part|,%machine| +ҶƬ N part|,%plant|ֲ,hair|ë +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N chemical|ѧ +Ҷ N part|,%plant|ֲ,hair|ë +ҷ V pull| +ҷⵯ N weapon|,*guide| +Ҹ N part|,%AnimalHuman|,arm| +Ҹ N part|,%AnimalHuman|,arm| +Ҹѿ N part|,%plant|ֲ,embryo| +ҹ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹ N time|ʱ,day|,night| +ҹζ V change| +ҹ N LandVehicle|,night| +ҹ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ N InsectWorm| +ҹ N fact|,eat|,night| +ҹ N time|ʱ,day|,night| +ҹ N tool|þ,*tell|,#time|ʱ +ҹ V VehicleGo|ʻ +ҹ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ҹ ADV time|ʱ,day|,night| +ҹ乤 N affairs|,#duty|,#sequence|,night| +ҹ N attribute|,scene|,&inanimate|,&building| +ҹ N sky| +ҹ N FlowerGrass| +ҹ˾ ADJ time|ʱ,day|,night| +ҹԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ҹ N time|ʱ,day|,night| +ҹä֢ N disease| +ҹè N bird| +ҹè N human|,#sleep|˯,late| +ҹĻ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹɫ N lights| +ҹ˾ N time|ʱ,day|,night| +ҹ N fact|,#act|ж,time=night| +ҹ N InstitutePlace|,@sell|,@buy|,night|,commercial| +ҹ N time|ʱ,day|,night| +ҹϮ V attack|,military| +ҹ N edible|ʳ +ҹУ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ V SelfMoveInManner|ʽ +ҹ V VehicleGo|ʻ +ҹҹ N time|ʱ,night| +ҹԼ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N human|,*act|ж,night| +ҹܻ N InstitutePlace|,@WhileAway|,commercial| +ҹݺ N bird| +Һ N drinks|Ʒ +Һ N liquid|Һ,generic|ͳ +Һ V ize|̬,PatientAttribute=liquid|Һ,industrial| +Һ N material|,gas|,$burn| +Һ N natural|Ȼ,generic|ͳ +Һ N part|,%liquid|Һ,skin|Ƥ +Һ̬ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +Һ N liquid|Һ,generic|ͳ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,range|,all|ȫ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ qValue|ֵ,amount|,single| +һ ADJ aValue|ֵ,age|,aged| +һ N human| +һ N human|,able|,desired| +һ N human|,official| +һˮ V defeated| +һͿ V defeated| +һ N part|,%entity|ʵ +һ ADJ aValue|ֵ,kind|,ordinary| +һ ADV aValue|ֵ,similarity|ͬ,alike| +һ˵ ADV {comment|} +һ ADV {comment|} +һ㻯 V ize|̬ +һ˵ ADV {comment|} +һ˵ ADV {comment|} +һ N attribute|,kind|,ordinary|,&physical| +һһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һ NUM qValue|ֵ,amount|,half| +һ V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +һڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +һ۸ V enjoy|,content=look|,#beautiful| +һ۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| +һʮ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +һ ADJ aValue|ֵ,duration|,TimeLong| +һ N time|ʱ,#alive| +һ ADJ aValue|ֵ,behavior|ֹ,strict| +һǿ׳ V collude| +һʹ V remove| +һĨɱ V remove| +һ N part|,%entity|ʵ,aspect| +һ V ill|̬,medical|ҽ +һ ADV aValue|ֵ,property|,$merge|ϲ +һ ADJ aValue|ֵ,circumstances|,hardship| +һδƽһ EXPR happen|,experiencer=fact|,manner=again| +һС ADV aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +һ V prosper| +һһӡ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N part|,&entity|ʵ +һ N location|λ,edge| +һ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +һ V fail|ʧ +һ ADJ aValue|ֵ,duration|,TimeShort| +һһϦ ADJ aValue|ֵ,duration|,TimeShort| +һȾ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һȾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +һɲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һĪչ V BeUnable| +һ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +һ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +һ V decide| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,effect|Ч,^lasting| +һ ADJ aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,age|,aged| +һ ADJ qValue|ֵ,amount|,many| +һ N time|ʱ,morning|,early| +һ N place|ط +һ N time|ʱ,#alive| +һ N time|ʱ,now| +һ N time|ʱ,royal|,past| +һ CONJ {time|ʱ} +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ֮ N result|,desired|,#succeed|ɹ +һ֮ N thought|ͷ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һȹ N result|,desired|,#succeed|ɹ +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ ADV aValue|ֵ,degree|̶,ish| +һ N image|ͼ,dot| +һ N part|,%character| +һ ADJ qValue|ֵ,amount|,few| +һ V tell| +һ N time|ʱ,special| +һ V touch| +һ ADV aValue|ֵ,degree|̶,ish| +һ ADJ qValue|ֵ,amount|,few| +һһ ADV qValue|ֵ,amount|,all|ȫ +һ ADV aValue|ֵ,degree|̶,insufficiently|Ƿ +һ ADJ qValue|ֵ,amount|,few| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +һ ADJ aValue|ֵ,kind|,special| +һ ADV {comment|} +һ N quantity|,amount|,&entity|ʵ +һ֮ N method| +һ֮ N regulation| +һһ ADJ aValue|ֵ,distance|,far|Զ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,frequency|Ƶ,past| +һ N part|,%entity|ʵ,aspect| +һ ADJ qValue|ֵ,amount|,few| +һ ADV aValue|ֵ,degree|̶,more| +һǧ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +һ˳ V lucky| +һ̬ V alter|ı +һ N part|,%entity|ʵ,aspect| +һ紵 V remove| +һ ADV aValue|ֵ,wholeness|ȱ,complete| +һŶ V treat|Դ,manner=alike| +һɶ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ۶ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADV aValue|ֵ,range|,all|ȫ +һ V fulfil|ʵ,manner=fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һӴ V damage| +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N system|ƶ +һɢ V disperse|ɢ +һŵ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һӦ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һһ ADJ aValue|ֵ,content|,concise|,desired| +һ V illuminate| +һ V pass|ȹ +һӶ V fulfil|ʵ,manner=fast| +һ V BeSame|ͬ +һ ADV aValue|ֵ,duration|,TimeShort| +һ N time|ʱ +һ ADJ aValue|ֵ,GoodBad|û,good|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һ֮ N attribute|,ability|,special|,&organization|֯,&human| +һ ADJ aValue|ֵ,relatedness|,intimate| +һ V love| +һ˫ V succeed|ɹ +һ N part|,%fact|,#act|ж +һٳ V WellKnown| +һ V succeed|ɹ +һһ N fact|,#act|ж +һ V HaveContest| +һǧ ADJ aValue|ֵ,value|ֵ,precious|,desired| +һ֮ N thought|ͷ,empty| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һ ADJ aValue|ֵ,range|,all|ȫ +һ N thought|ͷ +һ N document| +һ V look| +һ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ qValue|ֵ,amount|,many| +һ ADJ qValue|ֵ,amount|,many| +һ˰ V finish| +һ۰צ N inanimate|,secondary| +һб V walk| +һ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ· V SelfMoveInManner|ʽ,manner=together|ͬ +һ· ADV process| +һ· N entity|ʵ,alike|,undesired|ݬ +һ·ɫ N entity|ʵ,alike|,undesired|ݬ +һ·ƽ EXPR expression|,*SayHello|ʺ +һ· ADV process| +һ·˳ EXPR expression|,*SayHello|ʺ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ N celestial| +һǧ V decline|˥ +һ V BeSame|ͬ +һ V guide| +һƽ N land|½,smooth|̹ +һ ADJ aValue|ֵ,attachment|,alike| +һ˼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ N part|,%entity|ʵ,aspect| +һ֮ ADJ aValue|ֵ,relatedness|,sparse| +һ V WellKnown| +һ V die| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +һĿȻ ADJ aValue|ֵ,content|,NotProfound|dz +һĿʮ ADJ read|,manner=fast| +һ N time|ʱ,year| +һ굽ͷ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ aValue|ֵ,frequency|Ƶ,year| +һļ ADJ aValue|ֵ,duration|,TimeLong| +һһ ADJ aValue|ֵ,frequency|Ƶ,year| +һŭȥ V leave|뿪,manner=angry| +һŵǧ N text|,*MakeAppointment|Լ,$obey|ѭ +һļ V fit|ʺ,manner=easy| +һƫ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +һƶϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ ADJ aValue|ֵ,time|ʱ,alike| +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADV aValue|ֵ,frequency|Ƶ +һdz ADJ aValue|ֵ,content|,concise|,desired| +һdz V fulfil|ʵ,manner=fast| +һǮֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +һϲͨ V ignorant|֪ +һ N entity|ʵ +һ ADJ qValue|ֵ,amount|,all|ȫ +һ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һ ADJ aValue|ֵ,clearness|,clear| +һ ADJ aValue|ֵ,content|,opened| +һ֮ N human|,alike|,undesired|ݬ +һȥ V disappear|ʧ +һԾɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һǧ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һɨ V CauseToBeHidden|ʹʧ +һɫ ADJ aValue|ֵ,similarity|ͬ,alike| +һɲ ADJ aValue|ֵ,duration|,TimeShort| +һ N human|,single| +һ N part|,%AnimalHuman|,body| +һ ADJ qValue|ֵ,amount|,single|,#clothing| +һ V undertake| +һǵ ADJ aValue|ֵ,courage|,brave|,desired| +һ V KeepSilence|˵ +һ N time|ʱ,process|,@alive| +һһ N time|ʱ,process|,@alive| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ N time|ʱ +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱһ ADJ aValue|ֵ,frequency|Ƶ,often| +һ޳ V DoNot| +һͬ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,single| +һְ V handle|,manner=single| +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һ˲ ADJ aValue|ֵ,duration|,TimeShort| +һ˿ ADJ qValue|ֵ,amount|,few| +һ˿ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +һ˿ V exposure|¶ +һ˿һ ADJ qValue|ֵ,amount|,few| +һͿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һͿ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N entity|ʵ,complete| +һ廯 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ쵽 ADJ aValue|ֵ,duration|,TimeLong| +һ N process| +һ N shape|,linear| +һ ADJ aValue|ֵ,relatedness|,intimate| +һͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һͳ V merge|ϲ +һͷ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +һͷ N part|,%entity|ʵ,aspect| +һͷ N furniture|Ҿ,space|ռ,@put| +һź ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +һ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ V catch|׽ס +һ V like|ϧ +һǰ V GoForward|ǰ +һ޼ ADJ aValue|ֵ,area|,wide| +һζ ADV {emphasis|ǿ} +һIJ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V ignorant|֪ +һѷ ADJ aValue|ֵ,behavior|ֹ,disorder|,undesired|ݬ +һ޿ȡ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һǴ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +һ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V NoKnowledge|֪ +һһʮ ADJ aValue|ֵ,content|,detailed|,desired| +һ V err| +һϢд V alive| +һϯ֮ N place|ط,small|С +һϵ ADJ qValue|ֵ,amount|,many| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADV aValue|ֵ,behavior|ֹ,sudden| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ qValue|ֵ,amount|,few| +һϣ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һ ADV aValue|ֵ,frequency|Ƶ,often| +һС ADJ qValue|ֵ,amount|,few| +һЦ֮ V IllTreat| +һЩ ADV aValue|ֵ,degree|̶,ish| +һЩ ADJ qValue|ֵ,amount|,some|Щ +һкǧ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +һ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,mass|,*tour| +һԲ V KeepSilence|˵ +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һΪ V obey|ѭ +һһ N fact|,#act|ж,#text| +һԱ֮ V speak|˵ +һ̼ N gas| +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һҹ֮ ADJ aValue|ֵ,duration|,TimeShort| +һһ ADJ aValue|ֵ,sequence| +һһӦ V fit|ʺ +һ´ˮ ADJ aValue|ֵ,distance|,near| +һ V RashlyAct| +һӦȫ ADJ aValue|ֵ,range|,all|ȫ +һӵ V LeaveFor|ǰ,manner=fast| +һ V explain|˵ +һƵ V explain|˵ +һ˫ ADJ aValue|ֵ,content|,profound| +һԪ ADJ aValue|ֵ,content|,neat|,desired| +һ N time|ʱ,month| +һ· N time|ʱ,month| +һ ADV aValue|ֵ,frequency|Ƶ,again| +һ ADJ time|ʱ,morning|,early| +һգ N time|ʱ,TimeShort| +һգ۵Ĺ N time|ʱ,TimeShort| +һѪ ADJ aValue|ֵ,content|,accurate|׼,desired| +һ N time|ʱ +һ N wind| +һ N time|ʱ +һ N time|ʱ +һ ADJ aValue|ֵ,range|,all|ȫ +һ֪ V ignorant|֪ +һֱ ADV aValue|ֵ,frequency|Ƶ,often| +һֽ N document|,useless| +һǧ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һ N attribute|,similarity|ͬ,alike|,&entity|ʵ +һר ADJ aValue|ֵ,ability|,able|,desired| +һ겻 V decline|˥ +һ V fulfil|ʵ,manner=fast| +Ҽ NUM qValue|ֵ,amount|,cardinal| +ҽ N affairs|,medical|ҽ +ҽ V cure|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽԱ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽƴѧ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽѧ N human|,*study|ѧ,education|,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ V cure|ҽ +ҽƶ N human|,*cure|ҽ,medical|ҽ +ҽƺվ N InstitutePlace|,@rescue|,military|,medical|ҽ +ҽ¹ N fact|,wrong|,medical|ҽ,#cure|ҽ,undesired|ݬ +ҽվ N InstitutePlace|,@cure|ҽ,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʿ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N publications|鿯,#medical|ҽ +ҽ N method|,#medical|ҽ +ҽ N affairs|,medical|ҽ +ҽ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽѧ N knowledge|֪ʶ,medical|ҽ +ҽѧ N human|,#knowledge|֪ʶ,medical|ҽ +ҽѧʿ N human|,*study|ѧ,education|,medical|ҽ +ҽѧԺ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽҩ N medicine|ҩ +ҽ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽ V cure|ҽ +ҽ N text|,#cure|ҽ,medical|ҽ +ҿ N metal| +ҿ N PenInk|ī,*write|д + V depend| + V obey|ѭ + V surrender| + PREP {AccordingTo} + V depend| + ADJ aValue|ֵ,sequence| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence| + V obey|ѭ + V surrender| + V exist| + N language|,#country|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,proper|,police| + V depend| + V tie| + V tie| + V ChangeNot| + ADV aValue|ֵ,behavior|ֹ,lasting| + N reason| + PREP {AccordingTo} + V depend| + V depend| + N attribute|,property|,depend|,&human| + V grudge| +ƾ V depend| +Ȼ V ChangeNot| +Ȼ ADV aValue|ֵ,behavior|ֹ,lasting| +Ȼ V ChangeNot| +Ȼ V ChangeNot| +ɽˮ ADV aValue|ֵ,location|λ +˳ V fit|ʺ + V depend| +ϡ ADJ aValue|ֵ,clearness|,blurred| +« ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +« V imitate|ģ + V grudge| + V grudge|,content=separate| +ϧ V farewell| + V depend| + PREP {AccordingTo} + V lean|п + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Iraq|) + N place|ط,city|,ProperName|ר,(China|й) +԰ N place|ط,happy|,#lucky| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iraq|) + N place|ط,country|,ProperName|ר,(Asia|) +˵ɶ N money|,(Iraq|) + N human|,(Iraq|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Iran|) +ŵ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ʼ N part|,%time|ʱ,head|ͷ +˹ N place|ط,capital|,ProperName|ר,(Pakistan|ͻ˹̹) +˹ N community|,religion|ڽ +˹ N law|ɷ,#time|ʱ +˹ͽ N human|,religion|ڽ +˹̹ N place|ط,city|,ProperName|ר,(Turkey|) + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + N part|,%AnimalHuman|,embryo| + N part|,%physical|,skin|Ƥ +° N place|ط,provincial|ʡ,ProperName|ר,(US|) +° N part|,%AnimalHuman|,embryo| +³ N furniture|Ҿ,cubic|,@put|,#clothing| +´ N part|,%clothing|,cubic|,@put| +¶ N part|,%clothing|,cubic|,@put| +· N clothing|,generic|ͳ +¹ N clothing| +¹ N human|,evil|,undesired|ݬ +¹ڣ N facilities|ʩ,space|ռ,@bury|,#die| +¹ N furniture|Ҿ,cubic|,@put|,#clothing| +¼ N attribute|,appearance|,&human| +¼ N furniture|Ҿ +½ N part|,%clothing|,body| +½ V GoBack|,time=succeed|ɹ + N material|,?clothing|,generic|ͳ + N part|,%clothing|,#head|ͷ +ñ N room|,@put|,#clothing| + N clothing| + N clothing|,generic|ͳ +ʳס V fact|,MakeLiving|ı +ʳס N fact|,MakeLiving|ı + N clothing|,generic|ͳ + N part|,%clothing|,#arm| + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + V maintain| + N part|,%AnimalHuman|,skin|Ƥ +ú԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,ProperName|ר,(China|й) + V maintain| +ָʹ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,form|״,smooth|̹ + ADJ aValue|ֵ,source|Դ,foreign| + V destroy|,military| + N human|,#space|ռ,past| + N human|,foreign| + N place|ط,foreign|,country| + V destroy| + V PassOn| + N artifact|˹,generic|ͳ,$lose|ʧȥ + V lose|ʧȥ +Ų N wealth|Ǯ,#die|,#police|,$PassOn| +Ų N human|,*receive|,#wealth|Ǯ +Ų˰ N expenditure| +ų ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ų V unfortunate| +Ŵ V give|,#animate| +Ŵ N knowledge|֪ʶ +Ŵ N part|,%animate|,#PassOn| +Ŵѧ N knowledge|֪ʶ +Ŵѧ N human|,#knowledge|֪ʶ +Ŵ V SetAside| +Ŵ N part|,%AnimalHuman|,*die|,body| +ŷ N attribute|,habit|ϰ,&human| +Ÿ N human|,family|,young| +Ź N human|,family|,young| +Ź N part|,%AnimalHuman|,*die|,body| +ź N part|,%AnimalHuman|,*die|,body| +ź V repent|û +ż N part|,%building|,waste|,body| +ż N trace|,#building| +ž V excrete|й,medical|ҽ + N human|,aged|,mass| + N human|,mass|,undesired|ݬ + V PassOn| + V SetAside| +© V discharge| + N human|,mass| + V excrete|й,patient=liquid|Һ,medical|ҽ + V abandon| + N attribute|,appearance|,#die|,&human| + N image|ͼ,#die| + N human|,mass|,young| +ʧ V lose|ʧȥ +ʸ V excrete|й,patient=waste| + N fact|,past| + N letter|ż + N readings| + N readings|,$lose|ʧȥ + N human| + N part|,%AnimalHuman|,*die|,body| + V forget| +֢ N disease| + N tool|þ,generic|ͳ + N image|ͼ,#die| + N text|,#die|,$SetAside| +Ը N aspiration|Ը,expect|,#die|,$SetAside| +ַ N place|ط +־ N aspiration|Ը,expect|,#die|,$SetAside| + N text|,#die|,$SetAside| + N human|,female|Ů + V SelfMoveInManner|ʽ + V TakeAway|ᶯ + V alter|ı + V change| +Ƶ V alter|ı,entertainment| +ƶ V SelfMoveInManner|ʽ +ƶ V TakeAway|ᶯ +ƶ N affairs|,#internet|,commercial| +Ʒ V SelfMoveInManner|ʽ,purpose=defend|,military| +Ʒ V improve|,patient=habit|ϰ +ƻľ V deceive|ƭ +ƽ V entrust|ί +ƽ V submit| +ƽ V transport|,manner=defend|,police| +ƾ V SelfMoveInManner|ʽ,#country| +ƾ ADJ aValue|ֵ,property|,SelfMoveInManner|ʽ,#country| + V planting|ֲ,agricultural|ũ + N human|,#country| + V transport|,manner=defend|,police| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,medical|ҽ + N attribute|,bearing|̬,&human| + N fact| + N tool|þ,$GiveAsGift| + N tool|þ,generic|ͳ +DZ N attribute|,bearing|̬,&human| +DZ N tool|þ,*measure| +DZ N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N tool|þ,generic|ͳ + N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N attribute|,appearance|,&human| +ʽ N fact| +̬ N attribute|,bearing|̬,&human| +̬ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̶ N community| + N part|,%AnimalHuman|,viscera| +ȵ N medicine|ҩ + N part|,%AnimalHuman|,viscera| + N disease| +Һ N part|,%AnimalHuman|,liquid|Һ + N tool|þ,*wash|ϴ + ADJ aValue|ֵ,property|,$doubt| + V doubt| +ɰ N fact|,difficult|,police| +ɰ N problem|,difficult| +ɵ N problem|,difficult| +ɷ N human|,$doubt|,#crime| +ɻ V doubt| +ɾ N experience|,doubt| + V doubt| + N experience|,doubt| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N experience|,doubt| +ɹ V doubt| + N experience|,doubt| +Ŷ EXPR ^doubt| + ADJ aValue|ֵ,property|,ask| + N experience|,doubt| + N problem| +ʾ N part|,%language| + N experience|,doubt| +IJ N experience|,doubt| + EXPR fear|,cause=doubt| + N experience|,doubt| + N experience|,doubt| + N method| + N shape|,military|,*deceive|ƭ,#enemy| + N experience|,doubt| + N waters|ˮ,linear|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + AUX {modality|} +˱ N place|ط,city|,ProperName|ר,(China|й) +˲ N place|ط,city|,ProperName|ר,(China|й) +˴ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,impression|ӡ,good|,desired| + N place|ط,city|,ProperName|ר,(China|й) + V fit|ʺ + ADJ aValue|ֵ,ability|,able|,$defend| + N human|,family|,female|Ů +ֵ̱ N human|,family|,mass|,male| +̶ N human|,family|,female|Ů +̷ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů +̫̫ N human|,family|,female|Ů + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N InsectWorm| +ϲ N InsectWorm| +ȩ N chemical|ѧ + N chemical|ѧ + V depend| + V lean|п +п V lean|п + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V depend| + ADV {tense|ʱ̬,past|} +Ѷ V fixed|Ѷ +ѹ ADJ aValue|ֵ,time|ʱ,#die|,past| +ѻ ADJ aValue|ֵ,property|,GetMarried| +Ѽ ADV aValue|ֵ,degree|̶,extreme| +Ѿ ADV {tense|ʱ̬,past|} +Ѿ N human|,crime|,undesired|ݬ,$detain|ס +Ȼ V fixed|Ѷ + ADV aValue|ֵ,degree|̶,extreme| +ˮ ADJ aValue|ֵ,property|,$shrink|С + ADJ aValue|ֵ,time|ʱ,past| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ N symbol|,quantity|,$know|֪ + NUM qValue|ֵ,sequence|,ordinal| + N symbol| +Ұ N chemical|ѧ +ұ N chemical|ѧ +Ҵ N chemical|ѧ,?medicine|ҩ,liquid|Һ,$burn| +Ҵ N chemical|ѧ,liquid|Һ,$burn|,#medicine|ҩ +ҷ N human|,organization|֯,#associate| +Ҹ N disease| + N chemical|ѧ +ȩ N chemical|ѧ +Ȳ N gas| +Ȳ N gas|,*illuminate|,*fasten|˩,*break|۶,#metal| + N chemical|ѧ + N chemical|ѧ,$burn| +ϩ N chemical|ѧ +ϩ N chemical|ѧ +͸ N disease| + N chemical|ѧ + STRU {MaChinese|} + N place|ط,country|,ProperName|ר,(Israel|ɫ) + PREP {AccordingTo} + PREP {cause} + PREP {means} + PREP {purpose} +...Ϊ V RegardAs| +...Ϊ V RegardAs|,ResultIsa=secondary| +...Ϊ V aValue|ֵ,property|,$guide| +...Ϊ V RegardAs|,ResultIsa=boundary| +...Ϊ V RegardAs|,ResultIsa=cause|ԭ +...Ϊ V PayAttention|ע +...Ϊ V PayAttention|ע +...Ϊ V RegardAs|,ResultIsa=important| +...Ϊ׼ V RegardAs|,ResultIsa=law|ɷ +Ա ADV aValue|ֵ,location|λ,north| +Ա CONJ {purpose} +Գ V WellTreat|ƴ +Դ V deduce| +Դ ADJ aValue|ֵ,sequence| +Դ ADJ aValue|ֵ,sequence|,beneath| +ԴΪ V RegardAs|,patient=main|,ResultIsa=important| +Ե±Թ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Զ ADV aValue|ֵ,location|λ,east| +Զﴫ V disseminate|,content=wrong| +Ժ N aValue|ֵ,time|ʱ,future| +Ժ N time|ʱ,future| +Լ COOR {and|} +Լ V deceive|ƭ +Խ ADJ aValue|ֵ,distance|,near| + STRU {TimeIni} + V persuade|Ȱ˵ + V benefit| +Ϊ V damage| + V escape| + ADV aValue|ֵ,location|λ,south| + ADV aValue|ֵ,location|λ,external| + ADJ qValue|ֵ,amount|,few|,more| +ǰ N time|ʱ,past| + V expect| +Ȩı˽ V seek|ıȡ +ɫ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Israel|ɫ) +ɫ N place|ط,country|,ProperName|ר,(Asia|) +ɫ N human|,(Israel|ɫ) + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +Է V HaveContest|,patient=law|ɷ +ѳְ V die| + V guide| + ADJ aValue|ֵ,location|λ,external| + N time|ʱ,past| +Ϊ V regard|Ϊ +Ϊ V RegardAs|,patient=self|,ResultIsa=important| +֮ ADV {comment|} + V exchange|,patient=artifact|˹,commercial| + ADV aValue|ֵ,location|λ,west| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +ϱʻΪ ADV aValue|ֵ,sequence| +һʮ ADJ aValue|ֵ,ability|,able|,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Թ ADJ aValue|ֵ,behavior|ֹ,evil|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + CONJ {EventResult|¼} + PREP {means} +Ч V persuade|Ȱ˵,instrument=example|ʵ + N knowledge|֪ʶ,entertainment| + N method| +ռ N human|,entertainment|,(Japan|ձ) + N community|,entertainment| + N attribute|,age|,#entertainment|,&human| + N attribute|,name|,&human|,entertainment| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,appearance|,beautiful|,desired| + N knowledge|֪ʶ,entertainment| + N method| + N InstitutePlace|,*display|չʾ,entertainment| + N human|,entertainment| + N community|,entertainment| +Ʒ N inanimate|,entertainment| + N community|,entertainment| + N attribute|,property|,entertainment|,&entity|ʵ +̳ N community|,entertainment| + N readings| + N thing|,#entertainment|,#literature| +Է N community|,entertainment|,literature| + V restrain|ֹ +ֻ CONJ {or|} + V upset| +ֹ V restrain|ֹ + V restrain|ֹ +Ƽ N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V alter|ı + N character|,surname|,human|,ProperName|ר + V exchange|,commercial| +ױ ADJ aValue|ֵ,ability|,able|,FormChange|α +ױ ADJ aValue|ֵ,ability|,able|,$forget| +ױ ADJ aValue|ֵ,ability|,able|,change| +ױ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +׵ V replace|,patient=place|ط +׶ ADJ aValue|ֵ,content|,easy|,desired| +׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +׶ ADJ aValue|ֵ,ability|,able|,$read| +׸ο ADJ aValue|ֵ,ability|,able|,$soothe|ο +׻ V exchange|,patient=artifact|˹,commercial| +׻ó V exchange|,patient=artifact|˹,commercial| +׽ӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +׾ N publications|鿯,ProperName|ר + N tool|þ,cubic|,@put|,#drinks|Ʒ +ŭ ADJ aValue|ֵ,easiness|,easy|,$irritate|ŭ +ȼ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ +ȼ N inanimate|,easy|,#lighting|ȼ +ȼױ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ + V replace|,patient=human|,sport| +練 ADJ aValue|ֵ,easiness|,easy|,desired| +ɢ ADJ aValue|ֵ,ability|,able|,disappear|ʧ +ܹ ADJ aValue|ֵ,ability|,able|,$attack| +ַ ADJ aValue|ֵ,ability|,able|,$damage| +˺ ADJ aValue|ֵ,ability|,able|,$split|ƿ + ADJ aValue|ֵ,ability|,able|,$break|۶ + ADJ aValue|ֵ,easiness|,easy|,$damage| +ѧ ADJ aValue|ֵ,easiness|,easy|,$study|ѧ +ѹ ADJ aValue|ֵ,ability|,able|,$break|۶ + V AptTo| + ADJ aValue|ֵ,ability|,able|,$misunderstand| +⹥ ADJ aValue|ֵ,ability|,able|,$attack| + N place|ط + N place|ط,city| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ +Ȼ ADJ aValue|ֵ,height|߶,tall| + NUM qValue|ֵ,amount|,cardinal|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,rich| +˹ ADJ aValue|ֵ,duration|,TimeLong| + N affairs|,engage| + N affairs|,engage|,military| + N fact|,fight|,military| +ʹ V use|,agricultural|ũ + N livestock| +ܲ V guess|² +ܶ V guess|² + V forge|α + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ + N human|,past| + N fact| + N fact| + V study|ѧ +ҵ V study|ѧ,^finish| + N disease| +߲ N disease| + N medicine|ҩ + N attribute|,circumstances|,#disease|,&place|ط,&organization|֯ + N place|ط,#disease|,@happen| + ADV also|Ҳ +ಽ V imitate|ģ + N human|,future| + N place|ط,far|Զ + N aspiration|Ը,expect| + V express|ʾ + N information|Ϣ + N place|ط,country|,ProperName|ר,(Italy|) + V predict|Ԥ + N thought|ͷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Italy|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + V know|֪ + N thought|ͷ + N thought|ͷ,different|,#oppose| + N readings|,@record|¼,#thought|ͷ + N text|,$propose|,$discuss|,$debate| + N tool|þ,@put|,#text|,#thought|ͷ +⽳ N thought|ͷ +⾳ N attribute|,circumstances|,&entity|ʵ + V predict|Ԥ +֮ ADJ aValue|ֵ,property|,^$predict|Ԥ +֮ ADJ aValue|ֵ,property|,$predict|Ԥ +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N thought|ͷ + N attribute|,behavior|ֹ,&human| + N emotion|,undesired|ݬ + N mental| +緢 V excited| +Ȥ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N emotion|,FondOf|ϲ +ʶ N mental| +ʶ V understand| +ʶ V understand| +ʶ̬ N thinking|˼ +˼ N aspiration|Ը,expect| +˼ N attribute|,interest|Ȥζ,&entity|ʵ +˼ N emotion|,FondOf|ϲ +˼ N emotion|,grateful|м +˼ N information|Ϣ +˼ N thought|ͷ +ͼ N purpose|Ŀ + ADJ aValue|ֵ,property|,^$predict|Ԥ + N phenomena|,unfortunate|,undesired|ݬ +ζ N attribute|,interest|Ȥζ,&entity|ʵ +ζ N information|Ϣ +ζ ADJ attribute|,content|,profound| +ζ V mean|ָ +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +õ ADJ aValue|ֵ,property|,$predict|Ԥ + N purpose|Ŀ + N document|,commercial| + N attribute|,circumstances|,&entity|ʵ + N emotion|,excited| +˼˼ V hesitate|ԥ + N information|Ϣ + V translate| + V willing|Ը +Ը N aspiration|Ը,expect| + N information|Ϣ + ADJ aValue|ֵ,content|,profound| +־ N aspiration|Ը,expect| +־ᶨ N human|,#will|־,strong|ǿ +־ N attribute|,will|־,&human| + N human|,$love|,friend|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,desired|,&human| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ȻȻ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V LookBack| + V LookBack| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,source|Դ,artificial| + N attribute|,behavior|ֹ,fair|,desired|,&human|,&organization|֯ + N attribute|,relatedness|,&human| + N information|Ϣ +岻ݴ V endeavour| + N part|,%human|,fake|α,#medical|ҽ,*bite|ҧ + V angry| + N emotion|,angry|,desired| + V angry|,desired| + N affairs|,great|ΰ +ʵ N publications|鿯,#expression| + N reason| + N fact|,sell| + V sell|,commercial| + N mark|־,military| + N attribute|,behavior|ֹ,faithful|,desired|,&human| +ʿ N human|,fair|,desired| +޷ V GoForward|ǰ,scope=duty| +޷ V GoForward|ǰ,scope=duty| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N duty| + N human|,military| + N affairs|,#education| + N fact|,perform|,entertainment| +¾ N army| + V cure|ҽ + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,more| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N InsectWorm|,desired| +洦 N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +淢 ADV aValue|ֵ,degree|̶,more| +ĸ N FlowerGrass|,?medicine|ҩ,(China|й) + N bird|,desired| + N human|,friend| + ADJ qValue|ֵ,amount|,many| + V spill| + V spill| + V spill| +Ա V express|ʾ + V discuss| +鰸 N text|,$propose|,$discuss|,$debate| +鳤 N human|,#occupation|ְλ,official|,politics| + N plans|滮,#sequence|,&fact| +鶨 V decide|,manner=discuss| +鶨 N document|,$discuss|,$MakeAppointment|Լ +鹺 V buy|,manner=discuss| + V reconcile|,politics| + N institution|,politics|,#country|,*forming|γ,#law|ɷ + N system|ƶ,politics| + N attribute|,price|۸,#discuss|,&artifact|˹,commercial| + V discuss|,commercial| + V decide| + V discuss| + V speak|˵ +۷׷ V {comment|} + V discuss|,content=affairs|,politics| + N problem|,$discuss| +ϯ N location|λ,#institution| +Ա N human|,official|,politics| +Ժ N institution|,#country|,@discuss|,@debate| + V discuss|,content=affairs|,politics| + N attribute|,relatedness|,&human| + V translate| +뱾 N attribute|,kind|,$translate|,&readings| + V translate| +Ա N human|,#occupation|ְλ,*translate| + V translate| + N attribute|,name|,$translate|,&entity|ʵ + N text|,$translate| + N fact|,translate|,#sound| +Ա N human|,#occupation|ְλ,literature|,*translate| + N human|,literature|,*translate| + V translate| + N readings|,$translate| + N readings|,$translate| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,similarity|ͬ,different| + V surprise| +첽 ADJ aValue|ֵ,performance| + N attribute|,brightness|,bright|,&thing| +쳣 ADJ aValue|ֵ,kind|,special| + N place|ط,foreign| + N place|ط,country|,foreign| +Ѱ ADJ aValue|ֵ,kind|,special| +컯 V ize|̬,PatientAttribute=different| +켺 N human|,different| + N community|,religion|ڽ,different| +ͽ N human|,religion|ڽ +ͻ V appear| +ͬ V BeSame|ͬ +ͬ V BeSame|ͬ,scope=result| +ͬ N attribute|,similarity|ͬ,&entity|ʵ +ζ N attribute|,odor|ζ,special|,&physical| +ζ N food|ʳƷ + N humanized| + N inanimate|,foreign| + N place|ط,foreign| +쿪 V think|˼ + N shape|,queer| + V differ|ͬ + N thought|ͷ,different|,#oppose| + ADJ aValue|ֵ,kind|,special| + N thought|ͷ,different|,#oppose| + N place|ط,country|,foreign| + N place|ط,foreign| + N community|,different| + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + N time|ʱ,year|,future| + N time|ʱ,day|,future| + N tool|þ,@LieDown| + N tool|þ,@LieDown| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,temperature|¶,chilly| + V protect| + V cover|ڸ + V hide| + V protect| + ADJ aValue|ֵ,temperature|¶,chilly| + N cause|ԭ + CONJ {cause|ԭ} + PREP {cause} +ʩ ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + N attribute|,circumstances|,&physical| + N process|,#cause|ԭ,#result| +ªͼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ŬƤǿ N language|,#country|,ProperName|ר + V guide| + N symbol|,#quantity| + N part|,%entity|ʵ + N internet| +Ϊ CONJ {cause|ԭ} +Ϊ PREP {cause} +Ϯ V imitate|ģ +Сʧ V WorthNot|ֵ +ѭ V delay| +ѭ V obey|ѭ +ѭؾ ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ҭʳ V cease|ͣ,cause=fear| + N cause|ԭ +֮ CONJ {EventResult|¼} + N symbol|,#quantity| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + N experience| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʵ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N attribute|,SoundVolume|,&music| + N information|Ϣ + N sound| + N attribute|,SoundVolume|,&music| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N symbol|,#music| + N sound|,#language| + N music| +ֻ N fact|,@perform|,@listen|,#music| +ּ N human|,#knowledge|֪ʶ,#music|,entertainment| +ֽ N community|,#music|,entertainment| + N InstitutePlace|,@listen|,#music| + N attribute|,SoundVolume|,&sound| +Ƶ N attribute|,frequency|Ƶ,&sound| +ɫ N attribute|,SoundQuality|,&sound| + N expression| + N attribute|,speed|ٶ,#sound|,&SelfMove| +λ N expression| + N tool|þ,*disseminate| + N sound| + N tool|þ,*listen|,#music| +Ч N attribute|,effect|Ч,#sound|,&artifact|˹ + N shows| + N information|Ϣ,#letter|ż +Ѷ N information|Ϣ,#letter|ż + V translate| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&sound| + V WeatherBad| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,contrariness|,negative| + N celestial| + N character|,surname|,human|,ProperName|ר + N direction| + N part|,%AnimalHuman|,#female|Ů,viscera| + N place|ط,#lights|,dark| + ADJ aValue|ֵ,brightness|,dark| + N part|,bad|,undesired|ݬ,%organization|֯ + N part|,%AnimalHuman|,#female|Ů,viscera| + ADJ aValue|ֵ,brightness|,dark| + N part|,%AnimalHuman|,#female|Ů,viscera| +ʿ N material|,*AlterColor|ɫ + N part|,%AnimalHuman|,#female|Ů,viscera| + N disease| + N electricity| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N wind| + V dry| + N part|,%house| + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%electricity| + N place|ط,humanized|,#die| + N part|,%AnimalHuman|,#male|,viscera| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N part|,%physical| + N law|ɷ,#time|ʱ + ADJ aValue|ֵ,temperature|¶,chilly| + N place|ط,chilly| +ë N part|,%AnimalHuman|,hair|ë + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%physical|,dark| +ı N plans|滮,undesired|ݬ +ı V plan|ƻ,undesired|ݬ +ı N plans|滮,undesired|ݬ +ı N human|,*plan|ƻ,undesired|ݬ + N part|,%AnimalHuman|,#male|,viscera| +ƽ N sound|,#language| +ɭ ADJ aValue|ֵ,brightness|,dark| +ʪ ADJ aValue|ֵ,property|,dark|,wet|ʪ +ʭ N InsectWorm| +˽ N fact|,undesired|ݬ,secret| + N weather|,WeatherBad| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,kind| + N attribute|,property|,&event|¼,entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + N human| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + V sad|dz + N CloudMist| + V WeatherBad| + ADJ aValue|ֵ,relatedness|,#GetMarried| + N attribute|,relatedness|,#GetMarried|,&human| +Ե N attribute|,circumstances|,happy|,#GetMarried|,&human| + N human|,intimate| + V recite|ж + V recite|ж +Ū V sing| +ʫ V recite|ж,content=text| + V recite|ж +ζ V recite|ж +ӽ V recite|ж + ADJ aValue|ֵ,color|ɫ,white| + N metal| + ADJ aValue|ֵ,color|ɫ,white| + N money| + N place|ط,city|,ProperName|ר,(China|й) + N material|,#metal| + N AlgaeFungi|ֲ,?medicine|ҩ + N part|,%human|,hair|ë,white| + N fund|ʽ + N celestial| + N celestial| +ϵ N celestial| + N beast| + ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,color|ɫ,grey| + N tool|þ,*reward|,#sport| + N human|,#occupation|ְλ,industrial| + N metal|,#money| + N money| +¥ N InstitutePlace|,*sell|,@buy|,#treasure|䱦,commercial| +Ļ N tool|þ,#shows| + N tool|þ,*reward|,#sport| + N tool|þ,#metal| +ɫ N attribute|,color|ɫ,white|,&physical| + N beast| + N metal| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +м N human|,#InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ҵ N affairs|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N fruit|ˮ + N money| + N fish| +Ԫ N money| +Բ N money| +ʽ N tool|þ,*reward|,#sport| + ADJ aValue|ֵ,color|ɫ,red| + N metal|,?material| + N fish| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,female|Ů,lascivious|,undesired|ݬ + N human|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ý N human|,#SeekPleasure|Ѱ,undesired|ݬ +ý N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N attribute|,power|,undesired|ݬ,&human| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N knowledge|֪ʶ +î V InDebt| +ʱ N time|ʱ,hour|ʱ +֧î V InDebt| + N drinks|Ʒ + V drink| + V feed|ι + V feed|ι,agricultural|ũ + N medicine|ҩ + V drink|,drinks|Ʒ + V suffer|,content=firing| + V suffer|,content=kill|ɱ,means=firing| + V cherish|Ļ,possession=hate| + V drink|,drinks|Ʒ,#addict|Ⱥ + N drinks|Ʒ,generic|ͳ +Ƭ N medicine|ҩ,(China|й) +Ʒ N drinks|Ʒ + V weep| +ʳ N edible|ʳ,generic|ͳ +ʳҵ N affairs|,#edible|ʳ +ˮ N water|ˮ,$drink| + ADJ aValue|ֵ,ability|,able|,$drink| +ˮ N water|ˮ,$drink| + N medicine|ҩ,(China|й) +ֹ V RashlyAct| + N character|,surname|,human|,ProperName|ר + V guide| + V incur| + V leave|뿪 + V pull| + V quote| + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + N material|,wood|ľ,*lighting|ȼ + V guide|,ResultEvent=GiveBirth| + V ResultIn| + V guide| + V entice| + V tease|ȡ + V catch|׽ס,police| + V ResultIn| + V guide|,ResultEvent=VehicleGo|ʻ + N symbol| + N waters|ˮ,linear| + V ResultIn|,result=damage| + V recommend|Ƽ + V propose| + V recommend|Ƽ + V propose| +ݵ V quote|,content=publications|鿯 + V ExpressAgainst|Ǵ,target=self| +Ը߸ V sing| + V incur| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N attribute|,strength|,#attract|,&physical| + V expect| + V guide| + V cure|ҽ,manner=drain|ų +· V guide| + V ResultIn| +𷴶 ADJ aValue|ֵ,ability|,able|,$oppose| +𷴸 ADJ aValue|ֵ,ability|,able|,$disgust| +𾪻 ADJ aValue|ֵ,ability|,able|,flurried| + N facilities|ʩ,route|· + N part|,%machine|,heart| +ʤ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Ŀ ADJ aValue|ֵ,impression|ӡ,good|,desired| +עĿ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע + V guide|,ResultEvent=GoInto| + V enlarge| + V quote| +ˮ V guide|,ResultEvent=VehicleGo|ʻ +ˮ V guide|,patient=liquid|Һ + V cease|ͣ,content=undertake|,politics| + N part|,%text| + N tool|þ,*fasten|˩ + N part|,%weapon| + N part|,%text| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=glorious| + V quote| + V recommend|Ƽ + V entice| +֤ V quote|,purpose=prove|֤ +֤ N human|,*quote| + V ResultIn| + V recommend|Ƽ,content=embryo|,agricultural|ũ + N medicine|ҩ + N part|,%music| + N part|,%text| + N text|,#entertainment| +Ա N human|,#occupation|ְλ,#shows|,*guide| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V hide| + V hide| + V HideTruth| + V hide| + V mean|ָ + N phenomena|,undesired|ݬ,dangerous|Σ,#unfortunate|,hidden| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V HideTruth| + V reside|ס,manner=hide| + V HideTruth| + V HideTruth| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N fact|,secret| + V hide| + N fact|,secret| + V mean|ָ +ʿ N human| +˽ N fact|,secret| +˽Ȩ N rights|Ȩ,#fact|,secret| +ʹ N experience|,painful|ʹ + V cease|ͣ,content=undertake|,politics| +īˮ N PenInk|ī,liquid|Һ,*write|д + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ +۾ N tool|þ,*look|,#eye| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,content|,hidden| + ADJ aValue|ֵ,clearness|,blurred| +ԼԼ ADJ aValue|ֵ,clearness|,blurred| +ʹ V painful|ʹ + V sad|dz + N expression|,#BeSimilar| +Լ ADJ aValue|ֵ,clearness|,blurred| + N emotion| +ӡ V carve| +ӡ N character|,surname|,human|,ProperName|ר +ӡ V obey|ѭ +ӡ N place|ط,country|,ProperName|ר,(India|ӡ) +ӡ V print|ӡˢ +ӡ N stationery|ľ +ӡ N trace| +ӡ N readings|,$print|ӡˢ +ӡ N language|,#country|,ProperName|ר +ӡڰ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ӡڰ N human| +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(India|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ¬ N money|,(India|ӡ) +ӡ¬ N money|,(Sikkim|) +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N money|,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ N language|,#country|,ProperName|ר +ӡ N human|,(India|ӡ) +ӡ N waters|ˮ,surfacial|,ProperName|ר +ӡ V print|ӡˢ,send| +ӡ N trace| +ӡ ADJ aValue|ֵ,color|ɫ,colored| +ӡ N coupon|Ʊ֤ +ӡ N material|,?clothing| +ӡ˰ N expenditure| +ӡ˰Ʊ N coupon|Ʊ֤ +ӡ N trace| +ӡ N mark|־ +ӡ N mark|־,*check| +ӡ N stationery|ľ +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Indonesia|ӡ) +ӡŷ N language|,#country|,ProperName|ר +ӡȾ V AlterColor|ɫ,industrial| +ӡȾ N InstitutePlace|,*AlterColor|ɫ,factory|,industrial| +ӡ N quantity|,amount|,print|ӡˢ,&readings| +ӡˢ V print|ӡˢ +ӡˢ N InstitutePlace|,*print|ӡˢ,factory| +ӡˢ N tool|þ,*print|ӡˢ +ӡˢƷ N publications|鿯 +ӡˢ N attribute|,style|,#print|ӡˢ,&character| +ӡˢ N attribute|,style|,character| +ӡ̨ N stationery|ľ +ӡֽ N paper|ֽ,#TakePicture| +ӡ N experience| +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ֤ V prove|֤ +ӡ N trace| +Ӣ N FlowerGrass| +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ N place|ط,country|,ProperName|ר,(UK|Ӣ) +Ӣ N unit|λ,&weight| +Ӣ N money|,(UK|Ӣ) +Ӣ CLAS unit|λ,&money|,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ӢʼҺ N army|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,(UK|Ӣ) +Ӣ ADJ language|,#country|,ProperName|ר +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| +Ӣ N human|,able|,desired| +Ӣ ADJ aValue|ֵ,ability|,able|,desired| +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ CLAS unit|λ,&weight| +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N human|,*die|,desired| +Ӣ N mental|,humanized| +Ӣ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӣ N attribute|,name|,&human| +Ӣģ N human|,desired| +ӢĶ CLAS unit|λ,&length| +Ӣ V die| +Ӣ N language|,ProperName|ר,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ N human|,able|,desired| +Ӣ۳ N human|,*salute|¾ +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N language|,#country|,ProperName|ר +Ӣ N regulation|,(UK|Ӣ) +Ӣ N attribute|,bearing|̬,brave|,desired|,&human| +Ӣˬ ADJ aValue|ֵ,courage|,brave|,desired| +ӣ N FlowerGrass| +ӣ N fruit|ˮ +ӣ N FlowerGrass| +ӣ N FlowerGrass| +Ӥ N human|,young| +Ӥ N human|,young| +ӥ N bird| +ӥ N human|,*FondOf|ϲ,#fight|,military| +ӥȮ N human|,undesired|ݬ,evil| +ӥ N bird| +Ӧ V agree|ͬ +Ӧ N character|,surname|,human|,ProperName|ר +Ӧ V obey|ѭ +Ӧ V reply| +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V change|,industrial| +Ӧ V handle|,patient=change| +Ӧ V agree|ͬ +Ӧ V associate| +Ӧ V reply| +Ӧ AUX {modality|} +Ӧ V reply| +Ӧ V handle| +Ӧ V slack|͵ +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V handle|,patient=change| +ӦӲϾ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +Ӧ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +Ӧ N attribute|,strength|,&inanimate| +Ӧ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ӦĻ V include|,ResultWhole=army|,military| +Ӧŵ V agree|ͬ +ӦƸ V accept|,content=employ| +Ӧ V happen| +Ӧ N human|,passive| +Ӧʱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +ӦܷԺ ADJ aValue|ֵ,ability|,able|,$judge|ö +ӦǴ ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ +Ӧ V succeed|ɹ +Ӧ V accept|,content=invite| +Ӧ ADJ aValue|ֵ,property|,$use| +Ӧ V use| +Ӧ N text| +Ӧ V use| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧо V own|,manner=all|ȫ +Ӧͨ ADJ aValue|ֵ,ability|,able|,$tell| +Ӧ V agree|ͬ +Ӧ˶ V appear| +Ӧս V accept|,content=fight| +Ӧս V accept|,content=fight|,military| +Ӧ V cure|ҽ +Ӧ V accept|,content=include|,military| +Ӧ V submit|,possession=text| +Ӧ˰ ADJ aValue|ֵ,performance|,#collect| +ӧ N shape| +ӧ N tool|þ,*decorate|װ +Ө ADJ aValue|ֵ,clearness|,clear| +Ө N stone|ʯ +ө N InsectWorm| +ө N InsectWorm| +өʯ N stone|ʯ,mine|,material| +Ӫ N facilities|ʩ,space|ռ +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ V manage| +Ӫ V manage|,commercial| +Ӫ N part|,%army| +Ӫ V seek|ıȡ +Ӫ N part|,%army|,*order| +Ӫ N human|,#occupation|ְλ,official|,military| +Ӫ N place|ط,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ N fire| +Ӫ V build|,industrial| +Ӫ V rescue| +Ӫ N place|ط,city|,ProperName|ר,(China|й) +Ӫ N facilities|ʩ,space|ռ +Ӫ V seek|ıȡ,possession=wealth|Ǯ +Ӫ V MakeLiving|ı +Ӫ˽ V use|,means=steal|͵,crime| +Ӫ V sell|,commercial| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӫ N physical|,*maintain| +Ӫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ӪƷ N physical|,*maintain| +Ӫ N physical|,*maintain| +Ӫҵ V function|,commercial| +Ӫҵ N human|,#occupation|ְλ,official|,commercial| +Ӫҵʱ N time|ʱ,#employee|Ա,@engage|,commercial| +ӪҵĿ N part|,%affairs|,commercial| +Ӫ V function|,commercial| +Ӫ V build|,industrial| +ӫ ADJ aValue|ֵ,brightness|,bright| +ӫ N lights| +ӫ N tool|þ,*illuminate| +ӫ N material|,#illuminate| +ӫ N part|,%tool|þ,#show| +ӫ V MakeMisunderstand|ʹ֪ +ӫ N part|,%tool|þ,#show| +ӫ N tool|þ,*look|,#image|ͼ,#shows| +Ӭ N InsectWorm|,undesired|ݬ +Ӭ N attribute|,rank|ȼ,#weight|,&compete|,sport| +Ӭ N tool|þ,*kill|ɱ,#InsectWorm| +Ӭͷ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ӭͷ΢ ADJ payment|,few| +ӬͷС ADJ payment|,few| +ӬӪ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ +ӭ V GoForward|ǰ +ӭ V welcome|ӭ +ӭ V welcome|ӭ,target=human| +ӭ N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +ӭ N music|,*welcome|ӭ +ӭ N FlowerGrass| +ӭ V facing|,direction=wind| +ӭ V fit|ʺ,contrast=wind| +ӭ V please|ȡ +ӭ V welcome|ӭ +ӭ V resist|,military| +ӭ V welcome|ӭ +ӭ V welcome|ӭ +ӭ V facing|,direction=human| +ӭ V meet|,partner=female|Ů,#GetMarried| +ӭж ADJ aValue|ֵ,easiness|,easy|,desired| +ӭ V meet| +ӭͷ V facing|,direction=human| +ӭͷ V chase|׷ +ӭ V congratulate|ף,cause=festival| +ӭ V welcome|ӭ +ӭս V resist|,military| +ӭ V welcome|ӭ +Ӯ V defeat|սʤ +Ӯ V obtain|õ +Ӯ V win|ʤ +Ӯ V obtain|õ +Ӯ N human|,*win|ʤ +Ӯ V earn|׬ +Ӯ V surplus|ʣ +ӯ V exist| +ӯ V surplus|ʣ +ӯ N attribute|,effect|Ч,&event|¼ +ӯ V earn|׬ +ӯӯ ADJ aValue|ֵ,bearing|̬,delicate|,desired| +ӯӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӯӯ ADJ aValue|ֵ,clearness|,clear| +ӯӯ V exist| +ӯ V surplus|ʣ +Ӱ N image|ͼ +Ӱ N image|ͼ,$TakePicture| +Ӱ N shows| +Ӱ N trace| +Ӱ N trace|,#lights| +Ӱ N part|,%building|,skin|Ƥ +Ӱ N part|,%house| +Ӱ N tool|þ,#shows| +Ӱ N account|,@gather|ɼ,#image|ͼ +Ӱ N shows| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱ¥ N InstitutePlace|,*TakePicture| +Ӱ N human|,*FondOf|ϲ,#shows| +ӰƬ N shows| +Ӱ N text|,*estimate|,#shows| +Ӱ V mean|ָ +Ӱ N shows| +Ӱӳ N InstitutePlace|,@produce|,#shows| +Ӱ̳ N community|,#shows|,entertainment| +Ӱ V CauseAffect|Ⱦ +Ӱ N attribute|,power|,&AnimalHuman|,&organization|֯ +Ӱ V influence|Ӱ +Ӱ N image|ͼ +Ӱ N human|,*perform|,glorious|,entertainment| +Ӱҵ N affairs|,*produce|,#shows| +Ӱӡ V print|ӡˢ +ӰӰ´ ADJ aValue|ֵ,clearness|,blurred| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱչ N fact|,*display|չʾ,#readings|,#image|ͼ +Ӱչ N fact|,*display|չʾ,#shows| +Ӱ N image|ͼ +Ӱ N trace| +Ӱ N trace|,#lights| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ N part|,%inanimate|,head|ͷ +ӱ N part|,%plant|ֲ,embryo| +ӱ N part|,%plant|ֲ,embryo| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ӳ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,will|־,strong|ǿ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ N money| +Ӳ N part|,%computer|,*store| +Ӳ N attribute|,hardness|Ӳ,&physical| +Ӳͷ N human|,desired|,stubborn| +Ӳͷ N part|,hard|Ӳ,bone| +Ӳ N human|,desired|,stubborn| +Ӳ N human|,desired|,stubborn| +Ӳ V ize|̬,PatientAttribute=hard|Ӳ +Ӳ V ize|̬,PatientAttribute=hard|Ӳ,medical|ҽ +Ӳ N part|,%computer|,*store| +Ӳ N inanimate|,#disease| +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳú N material|,$burn| +Ӳ N material|,?food|ʳƷ +Ӳľ N wood|ľ,material| +Ӳ N part|,%computer|,*store| +Ӳ ADV {emphasis|ǿ} +Ӳˮ N liquid|Һ +Ӳͨ N money| +Ӳ N part|,%LandVehicle|,@sleep|˯ +Ӳϯ N part|,%LandVehicle|,@sit| +Ӳϯ N part|,%LandVehicle|,@sleep|˯ +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ N material|,?tool|þ,#decorate|װ,precious| +Ӳ N fact|,engage|,hardship|,military| +Ӳ N fact|,fight|,hardship|,military| +Ӳָ N quantity|,amount|,&artifact|˹ +Ӳָ N quantity|,amount|,&event|¼ +ӲʺϽ N metal| +ӲͷƤ V endeavour| +Ӳ N part|,%LandVehicle|,@sit| +Ӳ N part|,%AnimalHuman|,mouth| +ӳ V illuminate| +ӳ V ServeAsFoil| +ӳ V illuminate| +ӳɽ N FlowerGrass| +ӳ V illuminate| +ӳ V illuminate| +Ӵ ECHO sound| +ӵ V ComeTogether| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V own| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V endorse|ӵ +ӵ N human|,*endorse|ӵ +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V push| +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V GoInto| +ӵ V BlockUp| +ӵ V own| +ӵ V WellTreat|ƴ,politics| +Ӷ V employ| +Ӷ N human|,#family| +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,#family| +Ӷ N human|,#occupation|ְλ,employee|Ա +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,employee|Ա +ӷ ADJ aValue|ֵ,content|,layered|,undesired|ݬ +ӷ ADJ aValue|ֵ,fatness|,fat| +Ӹ N disease| +ӹ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ӹҽ N human|,fake|α,medical|ҽ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹٮٮ N human|,able| +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ N character|,surname|,human|,ProperName|ר +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ӻݻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӻ V jump| +ӻԾ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ӻԾ V jump| +Ӽ N InsectWorm| +ӽ V recite|ж +ӽ̾ V recite|ж +ӽ V praise|佱 +Ӿ V swim| +Ӿ V part|,%facilities|ʩ,route|·,@swim|,sport| +Ӿ̳ N community|,#swim|,sport| +Ӿװ N clothing|,#body|,*swim| +ӿ V appear| +ӿ V jet| +ӿ V jet| +ӿ V flow| +ӿ V GoInto| +ӿ V flow| +ӿ V jet| +ӿ N GoInto| +ӿ V GoInto| +ӿ V appear| +ӿ V LeaveFor|ǰ + ADV aValue|ֵ,duration|,TimeLong| + V die| + V farewell| + ADV {neg|} + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V die| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +ֹ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| +־ V remember|ǵ + ADJ aValue|ֵ,courage|,brave|,desired| +¸ ADJ aValue|ֵ,courage|,brave|,desired| +¸ҵ N human|,brave|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,courage|,&AnimalHuman| +ʿ N human|,desired|,brave| +ʿ N human|,military| +ֱǰ V GoForward|ǰ + ADJ aValue|ֵ,courage|,brave|,desired| + V dare| + N human|,brave| + N attribute|,effect|Ч,&thing| + V consume|ȡ + N expenditure| + V need| + V use| + PREP {instrument} +ñ V use|,patient=army|,military| +ò V WorthNot|ֵ +ò ADV aValue|ֵ,necessity|Ҫ,redundant| +ò N tree|,commercial| +ò V eat|,patient=edible|ʳ +ó N attribute|,effect|Ч,&thing| +ô N attribute|,effect|Ч,&thing| +÷ N method|,use| +ù V include| +ù ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +û N human|,*use| +þ V exhaust| +þ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +þ N implement|,generic|ͳ + PREP {purpose} + V endeavour| + N quantity|,amount|,exhaust|,&thing| +Ʒ N tool|þ,generic|ͳ + N human|,#occupation|ְλ,employee|Ա + V use|,patient=human| + V function| + V obtain|õ,possession=power|,politics| +ˮ N quantity|,amount|,exhaust|,&water|ˮ +; N attribute|,range|,$use|,&entity|ʵ + V fight|,military| + V show|,content=ability| + N fact|,spend| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N purpose|Ŀ + PREP {purpose} + N purpose|Ŀ + V undergo|,content=use| + N expression| +֮ ADJ qValue|ֵ,amount|,many| + V use| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| + V detain|ס,police| +İ ADJ aValue|ֵ,brightness|,dark| +ı V detain|ס +ı V detain|ס,police| +Ĺ N land|½ +Ļ V meet|,manner=secret| +Ļ N humanized| +ļ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ľ V detain|ס,police| +ľ ADJ aValue|ֵ,occasion|,quiet|,desired| + N humanized| + N part|,%AnimalHuman|,viscera| +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N attribute|,interest|Ȥζ,interesting|Ȥ,&human| +Ĭ N emotion|,interesting|Ȥ +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N human|,interesting|Ȥ +Ȥ N emotion|,#FondOf|ϲ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ V think|˼ +΢ ADJ aValue|ֵ,quality|,weak| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,scene|,gracious|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + V weep| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*perform|,entertainment| +Ŵ V WellTreat|ƴ +Ŵ N fact|,WellTreat|ƴ +ŵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ŵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ŵ N attribute|,quality|,strong|ǿ,desired|,&thing| +Ÿ V WellTreat|ƴ +Ÿ N human|,$WellTreat|ƴ +ź ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ż V ize|̬,PatientAttribute=superior| +Ż ADJ aValue|ֵ,GoodBad|û,good|,desired| +Żݴ N fact|,WellTreat|ƴ +Żݼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ż N regulation|,WellTreat|ƴ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û + N human|,*perform|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ȱ N attribute|,quality|,&event|¼,&thing| + V WellTreat|ƴ +ѧ N knowledge|֪ʶ + V GiveBirth| +ʤ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʤ̭ V alive|,condition=fit|ʺ +ʤ N human|,*win|ʤ + N attribute|,power|,strong|ǿ,&entity|ʵ + V enjoy|,content=sequence| +ȹ N coupon|Ʊ֤,#fund|ʽ +Ȩ N rights|Ȩ,#sequence| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*study|ѧ,education|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V surpass|ǿ +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Խ N emotion|,cherish|Ļ,#superior| +Խ N attribute|,property|,good|,&entity|ʵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + V satisfied| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʲƷ N artifact|˹,good|,desired| +ʷ N affairs|,*TakeCare|,good| +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V wave|ڶ +Ƴ ADJ aValue|ֵ,duration|,TimeLong| +Ƶ V wave|ڶ +ƺ ADJ aValue|ֵ,circumstances|,idle|,desired| +ƾ ADJ aValue|ֵ,duration|,TimeLong| +Ȼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ƺ ADJ slack|͵ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,time|ʱ,past| + N emotion|,worried|ż + V worried|ż +dz V sad|dz +Ƿ V worried|ż +ǻ N phenomena|,hardship|,undesired|ݬ +Ǿ V sad|dz + V worried|ż + V upset| + V sad|dz +˼ N thinking|˼,worried|ż +˼ V worried|ż + N emotion|,worried|ż + V worried|ż + V worried|ż + V sad|dz + V sad|dz +֢ N disease| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| + ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,very| + N cause|ԭ + V depend| + PREP {LocationIni} + PREP {LocationThru} + PREP {StateIni} + PREP {TimeIni} + PREP {agent} + PREP {cause} + PREP {means} +ɱ ADV aValue|ֵ,content| +ɴ ADV source +ɴ˲һк N result| +ɴ˿ ADV source +ɴ˿ɼ CONJ {comment|} +ɴ˿֪ CONJ {comment|} + N cause|ԭ +Ѿ ADJ aValue|ֵ,duration|,TimeLong| +dz ADV aValue|ֵ,content| +˲ ADJ aValue|ֵ,property|,$drive|Ԧ +ͷ N cause|ԭ + PREP cause|ԭ + CONJ {cause|ԭ} + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +֮ N text|,sincere| + V post|ʼ +ʰ N physical|,post|ʼ +ʱ N symbol|,#letter|ż +ʲ N human|,#occupation|ְλ,*post|ʼ +ʳ N LandVehicle|,*post|ʼ +ʴ N ship|,#tour| +ʴ N trace| +ʵ V post|ʼ +ʵԱ N human|,#occupation|ְλ,*post|ʼ +ʵ N affairs|,#post|ʼ +ʵ N InstitutePlace|,@post|ʼ +ʷ N expenditure|,*post|ʼ +ʷѸ ADJ aValue|ֵ,property|,$pay| +ʹ V buy|,instrument=letter|ż +ʻ V post|ʼ +ʼ V post|ʼ +ʼ N physical|,post|ʼ +ʾ N InstitutePlace|,@post|ʼ +· N facilities|ʩ,linear|,@post|ʼ,#letter|ż +Ʊ N coupon|Ʊ֤,*post|ʼ,#letter|ż +ͤ N facilities|ʩ,@post|ʼ,#letter|ż +Ͳ N facilities|ʩ,cubic|,@put|,#letter|ż + N facilities|ʩ,cubic|,@put|,#letter|ż +չ N fact|,display|չʾ + N affairs|,@post|ʼ,#letter|ż + N symbol|,#letter|ż + N InstitutePlace|,@post|ʼ +ֳ N human|,#occupation|ְλ,official|,#post|ʼ + N facilities|ʩ,*post|ʼ + N expenditure|,*post|ʼ + N metal| + V BeSimilar| + ADV {Vcontinue|} +̴ N human|,%publications|鿯,treacherous|,undesired|ݬ + V BeSimilar| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̫ ADJ aValue|ֵ,attachment|,#human| +̫Ů N human|,female|Ů +̫ N knowledge|֪ʶ,religion|ڽ +̫ͽ N human|,religion|ڽ +̫ N community|,(Jew|̫) +̫ N human| + V hesitate|ԥ +ԥ V hesitate|ԥ +ԥ V hesitate|ԥ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V apply|ͿĨ + N material|,$burn| + N material|,?food|ʳƷ +ͱ N tool|þ,*inhale|,#liquid|Һ +ͱ N food|ʳƷ +Ͳ N material|,?tool|þ,#protect| +Ͳ N part|,%vegetable|߲,embryo|,$eat| +Ͳ N vegetable|߲ +Ͳ N part|,%vegetable|߲,embryo|,agricultural|ũ +Ͳ N place|ط,@store|,#material| +Ͳ N part|,%earth|,*store|,#material| +Ͳ N food|ʳƷ +Ͳ N tree| +Ͳ N food|ʳƷ +ʹ N ship|,*transport|,#material| +͵ N tool|þ,*illuminate| +ͷ N InstitutePlace|,@produce|,#material|,factory| +͸ N material| +͹ N tree| +͹ N tool|þ,cubic|,@put| +͹޳ N LandVehicle|,*transport|,#material| +͹ N LandVehicle|,*transport|,#material| +͹ˮ ADJ aValue|ֵ,brightness|,bright| +͹ ADJ aValue|ֵ,brightness|,bright| +ͺ N quantity|,amount|,exhaust|,#material| +ͻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͻ N readings|,#image|ͼ +ͼ N trace| +; N InstitutePlace|,mine| +Ϳ N facilities|ʩ,space|ռ,@put|,@store| + N part|,%plant|ֲ,embryo| + N crop|ׯ,?material| + N ship|,*transport|,#material| + N crop|ׯ + N part|,%LandVehicle|,*SpeedUp|ӿ +ī N stationery|ľ,*print|ӡˢ + N stone|ʯ,waste| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N food|ʳƷ + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ṥ N human|,#occupation|ְλ,*decorate|װ,industrial| + N gas| +ǻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ȼ ADV aValue|ֵ,behavior|ֹ,active|Ը +Ȼ V appear|,manner=active|Ը +ʯ N tool|þ,@rub|Ħ +ˮ N material|,?food|ʳƷ +ˮ N wealth|Ǯ + N tree| + N chemical|ѧ + N InstitutePlace|,@gather|ɼ,#material| + N food|ʳƷ +ͩ N tree|,?material| +Ͱ N tool|þ,cubic|,@put| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N trace|,dirty| + N part|,%vehicle|ͨ,cubic|,@put| + N attribute|,property|,#material| +ѹ N attribute|,strength|,&liquid|Һ + N gas|,waste| +ӡ V print|ӡˢ +ӡ N tool|þ,*print|ӡˢ + N artifact|˹,waste| +ը V cook| +ը N food|ʳƷ +ձ N material| +֬ N material|,?food|ʳƷ +ֽ N paper|ֽ + N human|,undesired|ݬ,sly| + N trace|,dirty| + N tree|,?material| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,sly| +컬 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N fruit|ˮ + V cook| + N character|,surname|,human|,ProperName|ר + V roam| + V swim| + V tour| +ΰ N human|,friend|,*tour| +α N part|,%tool|þ,#measure| +δ N ship|,#tour| +ε V roam| +ζ V SelfMoveInManner|ʽ +ι V tour| +λ V attack|,military| +λ N fact|,fight|,military| +λ N institution|,military| +λԱ N human|,military| +λ N place|ط,military| +λս N fact|,fight|,military| +μ N text| +ν V walk| +ο N human|,*tour| + V tour| + N place|ط,tour| + N part|,%building|,nerve| + V recreation| +ֳ N InstitutePlace|,@recreation| + V RelateNot|޹ + V tour| + N human| + ADJ aValue|ֵ,property|,function|,#SelfMove| + V function|,means=SelfMove| + N community|,*function|,#SelfMove| + N human|,agricultural|ũ,#livestock| + N fact|,function|,#SelfMove| + N bird| + N human|,*tour| + ADJ aValue|ֵ,ability|,able|,desired| +ɽˮ V tour| +ˮ V swim| +˵ V persuade|Ȱ˵ +ͧ N ship|,*WhileAway| + V WhileAway| +Ϸ V WhileAway| +Ϸ V tool|þ,*WhileAway| + V walk| + N human|,*walk| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + V hesitate|ԥ + V recreation|,entertainment| +ջ V tool|þ,*WhileAway| +Ӿ V swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N community|,*swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N clothing|,#leg|,*swim| +Ӿñ N clothing|,#head|ͷ,*swim| +Ӿ N clothing|,#body|,*swim| +԰ V tour| +԰ N fact|,recreation| + N wealth|Ǯ + N human| +߮ V VehicleGo|ʻ + N knowledge|֪ʶ + V cherish|Ļ + V exist| + V own| + ADJ qValue|ֵ,amount|,some|Щ + V undergo| +а V obstruct|ֹ +аհ N aValue|ֵ,prettiness|,ugly|,undesired|ݬ +аɻ ADJ aValue|ֵ,trueness|α,true|,desired| +а ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +б ADV aValue|ֵ,behavior|ֹ,tactful| +б޻ V prepare|׼ +б۶ ADJ aValue|ֵ,content|,detailed|,desired| +в ADJ aValue|ֵ,property|,ill|̬ +в V ill|̬ +в ADV aValue|ֵ,sequence| +вŸ ADJ aValue|ֵ,ability|,able|,desired| +вƲ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +г ADJ aValue|ֵ,property|,$pay| +г ADJ aValue|ֵ,ability|,return|,#owe|Ƿ +гһ ADV aValue|ֵ,time|ʱ,future| +г V succeed|ɹ +д V wait|ȴ +д V wait|ȴ +е ADV {comment|} +е ADJ qValue|ֵ,amount|,some|Щ +еķʸ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +еʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +е ADJ qValue|ֵ,amount|,many| +е V know|֪ +еλ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +е ADV aValue|ֵ,degree|̶,ish| +е㳱ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +е ADV aValue|ֵ,degree|̶,ish| +е ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +е ADJ aValue|ֵ,kind|,queer| +е ADJ aValue|ֵ,taste|ζ,salty|,ish| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +з EXPR obey|ѭ +з ADV aValue|ֵ,ability|,able| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +ио ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,property|,relate|й +й V relate|й +йز N institution| +йط N part|,%entity|ʵ,relate|й +й ADJ aValue|ֵ,brightness|,bright| +й ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +й֮޲ V surpass|ǿ +к ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +кܺùϵ ADJ aValue|ֵ,relatedness|,intimate| +к ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +л ADJ aValue|ֵ,duration|,TimeLong| +л ADJ aValue|ֵ,content|,concise| +л ADJ aValue|ֵ,property|,#chemical|ѧ +л N material|,?tool|þ +л N chemical|ѧ +лѧ N knowledge|֪ʶ,#chemical|ѧ +лɳ ADJ aValue|ֵ,ProsCons|,pros|,desired| +л N chemical|ѧ +л N animate| +л N chemical|ѧ +л N chemical|ѧ +л N physical| +м̳Ȩ ADJ aValue|ֵ,ability|,able|,receive| +м֤ȯ N coupon|Ʊ֤,commercial| +мֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +мڴ ADV cause|ԭ +мʶ ADJ aValue|ֵ,ability|,able|,desired| +н ADJ aValue|ֵ,property|,gamble|IJ +нֵİ N furniture|Ҿ,@sleep|˯ +н ADJ aValue|ֵ,content|,substantial|ʵ,desired| +о N symbol|,#quantity|,#DoSum| +о ADJ aValue|ֵ,strength|,strong|ǿ,desired| +о ADJ aValue|ֵ,taste|ζ,strong|ǿ +о ADJ aValue|ֵ,property|,CauseToDo|ʹ,#surprise| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +пڽԱ V WellKnown| +п ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V depend| + V depend| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,correctness|,upright|,desired| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ò ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ͼ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + V pregnant|,#medical|ҽ + V succeed|ɹ + ADJ qValue|ֵ,amount|,many| +ë V OutOfOrder| +ë V mad| +йϵ V relate|й + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ŀ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ͷ ADJ aValue|ֵ,duration|,TimeLong| +б ADJ aValue|ֵ,ability|,able|,distinguish|ֱ + ADJ aValue|ֵ,duration| +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +Ǯ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Ǯ N human|,rich| + N character|,surname|,human|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + N human|,friend|,*love|,desired| + V own|,possession=human|,#friend|,#love| +Ӧ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,duration|,TimeLong| + PREP {contrast} +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ N metal| +ɫ N community| +˷绯 ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +͸ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +ɫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADV aValue|ֵ,duration|,TimeLong| + N attribute|,strength|,&organization|֯ + ADV aValue|ֵ,duration|,TimeLong| +֮ N part|,%time|ʱ,@alive| +ʧ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʶ֮ʿ N human|,wise|,desired| +ʷ ADV aValue|ֵ,duration|,TimeLong| +ʼ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +޿ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V know|֪ + ADJ qValue|ֵ,amount|,few| +ζ ADJ aValue|ֵ,taste|ζ,sour| + ADV aValue|ֵ,degree|̶,certain|ij +Ϊ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,property| + ADJ aValue|ֵ,content|,neat|,desired| +ͬ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͷ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,ability|,able|,$believe| +Ϊ ADJ aValue|ֵ,ability|,able|,desired| +ζ V OutOfOrder| +ζ ADJ aValue|ֵ,content|,profound|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ļ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,ability|,able|,consume|ȡ +ϲ V pregnant|,#medical|ҽ +Ϸ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,property| + ADJ qValue|ֵ,amount|,few| +޹˾ N InstitutePlace|,commercial| + ADJ aValue|ֵ,property| +ߵ N image|ͼ,shows| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +Ч N time|ʱ,#effect|Ч +Ч N attribute|,boundary|,&time|ʱ +Ч N attribute|,effect|Ч,superior|,&entity|ʵ +Щ ADJ qValue|ֵ,amount|,some|Щ + N human|,gracious| +żֵ¼ N fact|,#news| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V expect| + N human|,attentive|ϸ,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +۶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ lucky| + ADJ aValue|ֵ,content|,neat|,desired| +ѡȨ ADJ aValue|ֵ,ability|,able|,select|ѡ +ѧʵ N human|,#knowledge|֪ʶ +Ѫ ADJ aValue|ֵ,courage|,brave|,desired| +Ѫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ѪԵϵ ADJ aValue|ֵ,source|Դ,family|,#GetMarried| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,active|Ը +˼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| +ͼ ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +潡 ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +ڽ ADJ aValue|ֵ,ProsCons|,pros|,desired| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӱ ADJ aValue|ֵ,ability|,able|,control| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,ability|,able|,tell| +Դ ADJ aValue|ֵ,property|,#electricity| +Ե ADV aValue|ֵ,relatedness|,intimate| +Զ ADJ aValue|ֵ,ability|,able|,predict|Ԥ +¿ѭ EXPR obey|ѭ + ADJ aValue|ֵ,ability|,able|,restrain|ֹ + ADJ aValue|ֵ,property|,$debate| +֪ V HaveKnowledge|֪ +־ EXPR endeavour|,purpose=succeed|ɹ +־ N human|,desired| +־¾ EXPR endeavour|,purpose=succeed|ɹ +־֮ʿ N human|,desired| +ǻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + V benefit| +ڸԪ ADJ aValue|ֵ,ability|,able|,resume|ָ +׬ͷ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +֯ ADJ aValue|ֵ,property|,$forming|γ +֯ ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,property|,crime| + V disobey|Υ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| +Ѱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѱ N place|ط,country|,friend| +Ѻ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѻ N human|,friend| +Ѻó N place|ط,city|,friend| +Ѿ N army|,friend| + N human|,*reside|ס,near| +ڲ N army| + N human|,friend| + N emotion|,friend|,desired| + N human|,friend| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Э N community| + N attribute|,relatedness|,&human| + N fact|,compete|,sport| + N direction| +ұ N direction| +ұ߷ N human|,*exercise|,(football|) +Ҳ N direction| +ҷ N direction| +ҷ N human|,employee|Ա,*exercise| + N direction| + N human|,politics| + N standpoint|,politics| +Ϸ N location|λ +Ͻ N location|λ + N direction| + N part|,%human|,hand| + N direction| +· N location|λ +½ N location|λ + N part|,%ship| + N community|,politics| + N community|,politics| +ת V TurnRound| +ת V TurnRound| + V protect| +ӻ V protect| + V help| + N material|,?tool|þ +ש N material|,?building| + N material|,?tool|þ + N material|,?tool|þ + V entice| + V guide| + N thing|,*entice| +ճ N tool|þ,*illuminate| +յ ADJ aValue|ֵ,ability|,able|,guide| +յ V guide| +ն N thing|,*entice| +շ V ResultIn| +չ V guide|,ResultEvent=admit| +չ V TakeAway|ᶯ,means=cheat|ƭ,crime| +ջ V attract| +ջ V entice| +ռ V entice|,ResultEvent=mating|,crime| +ս V entice|,ResultEvent=surrender|,military| +ƭ V entice| + ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ V entice|,ResultEvent=kill|ɱ +ʹ V entice| + N cause|ԭ + V ResultIn| + ADV aValue|ֵ,frequency|Ƶ,again| + ADV also|Ҳ + COOR {and|} +... COOR {supplement|ݽ} +ֳ V aValue|ֵ,property|,$naming| +ֺר ADJ aValue|ֵ,ability|,able| + V aValue|ֵ,property|,$naming| +һ ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,age|,young| + N human|,young| +׳ N InsectWorm|,young| +׳ N bird|,young| +׶ N human|,young| +׶ N affairs|,#education|,#young| +׶԰ N InstitutePlace|,*TakeCare|,#young|,#human| +׽ N affairs|,#education|,#young| + N tree|,young| + N plant|ֲ,young| + N time|ʱ,#young| +Ů N human|,young|,female|Ů +ʱ N time|ʱ,#young| +ͯ N human|,young| +С ADJ aValue|ֵ,age|,young| +ѿ N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,age|,young| + N attribute|,ability|,unable|ӹ,undesired|ݬ +԰ N InstitutePlace|,*TakeCare|,#young|,#human| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ط N human|,stubborn|,undesired|ݬ +ظ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ػ ADJ aValue|ֵ,speed|ٶ,slow| +ػ V GoRound|Χ,military| +ػ ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V exist|,means=BlockUp| + N stone|ʯ +ٵ N land|½ +ٹ V irrigate|,agricultural|ũ +ٻ V exist|,means=BlockUp| + N stone|ʯ + V exist|,means=BlockUp| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N disease| + V exist|,means=BlockUp| + N character|,surname|,human|,ProperName|ר + PREP {contrast} + PREP {location} + PREP {patient} + PREP {scope} + PREP {source} + PREP {time} +ڽ N time|ʱ,now| + CONJ {EventResult|¼} +Ǻ CONJ {EventResult|¼} + N tool|þ,cubic|,@put| + N tree| + N tree| + N character|,surname|,human|,ProperName|ר + V cheat|ƭ + V deceive|ƭ + V worried|ż + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ޱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޲ɼ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޴ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޹ɽ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V deceive|ƭ,target=human|,politics| + N human|,*ignorant|֪ + N regulation|,*deceive|ƭ,#human|,politics| +Ū V deceive|ƭ + N human|,foolish| + N human|,foolish|,undesired|ݬ +˽ N time|ʱ,day|,festival| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N emotion|,faithful|,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N LandVehicle| + ADJ aValue|ֵ,attachment|,public| + N place|ط + N thought|ͷ,public| +۹ N tool|þ,*disseminate| +ۼල V supervise|,instrument=tool|þ,#disseminate| +۽ N tool|þ,*disseminate| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N time|ʱ,hind| +ನ N result| +ಿ N army|,*surplus|ʣ +൳ N human|,undesired|ݬ,*surplus|ʣ + N space|ռ + N quantity|,amount|,fulfil|ʵ,&organization|֯ + N quantity|,amount|,surplus|ʣ,&money| + N lights|,#night| + N money|,*surplus|ʣ + N attribute|,strength|,surplus|ʣ,&human| + N material|,?food|ʳƷ,#crop|ׯ + N quantity|,amount|,surplus|ʣ,&inanimate| + N attribute|,circumstances|,hind|,&human| +ȱ N phenomena|,surplus|ʣ,lack|ȱ + N attribute|,strength|,surplus|ʣ,&human| + N attribute|,strength|,surplus|ʣ,&implement| + N attribute|,circumstances|,hind|,&human| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ ADJ qValue|ֵ,amount|,redundant| +Ͼ N time|ʱ,idle| + V surplus|ʣ + N emotion|,joyful|ϲ,desired| + N fact|,recreation| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V GoThrough| + V surpass|ǿ + V due| +Խ V GoThrough| +Խ V surpass|ǿ + N character|,surname|,human|,ProperName|ר + N fish| + N part|,%fish|,liquid|Һ,#mating| + N facilities|ʩ,*foster|,#fish| + N food|ʳƷ,#fish| + N food|ʳƷ,*feed|ι,#fish| + N food|ʳƷ +ǰ ADJ aValue|ֵ,color|ɫ,white| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N food|ʳƷ,*feed|ι,#fish| + N medicine|ҩ +㽺 N material| + N weapon| +׿ͧ N weapon|,ship|,military| +ͧ N weapon|,ship|,military| + N fish| + N part|,%fish|,skin|Ƥ + N physical|,good|,bad|,$mix| +֮ N place|ط,rich| + N fish|,young| +Ŀ V pretend|װ,content=RegardAs| +Ƭ N food|ʳƷ,#fish| +Ư N tool|þ,*catch|׽ס,#fish| + V damage| + N part|,%fish|,flesh| +ˮ N attribute|,relatedness|,intimate|,&human| + N food|ʳƷ + N facilities|ʩ,*foster|,#fish| + N tool|þ,*catch|׽ס,#fish| + N food|ʳƷ,#fish|,generic|ͳ +Ȳ N FlowerGrass|,?medicine|ҩ + N fish|,young| + N fish|,young| +ӥ N bird| + N material| +θ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Ծ V jump|,sport| + N fish|,young| + N part|,%fish|,embryo| +ӽ N food|ʳƷ,#fish| + N part|,%fish|,viscera| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N place|ط,city|,ProperName|ר,(Chongqing|) + V affairs|,#catch|׽ס,#fish|,agricultural|ũ + V seek|ıȡ + N artifact|˹,#fish|,generic|ͳ,agricultural|ũ +泡 N place|ط,#fish|,agricultural|ũ +洬 N ship|,*catch|׽ס,#fish|,agricultural|ũ + N place|ط,@catch|׽ס,#fish|,village|,agricultural|ũ + N facilities|ʩ,space|ռ,#fish|,#ship| +湤 N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ + N MusicTool| + N fire| + N community|,*catch|׽ס,#fish|,agricultural|ũ + N tool|þ,*catch|׽ס,#fish|,generic|ͳ,agricultural|ũ + V earn|׬ + N wealth|Ǯ,$earn|׬ + N ship|,*catch|׽ס,#fish|,agricultural|ũ + N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ + N tool|þ,*catch|׽ס,#fish| +ҵ N affairs|,#catch|׽ס,#fish|,agricultural|ũ + N location|λ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V please|ȡ + V recreation|,entertainment| +ֳ V InstitutePlace|,@recreation|,entertainment| +ֻ N fact|,recreation|,entertainment| +Ծ N fact|,compete|,recreation| +ҵ N affairs|,#recreation|,entertainment| + N RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + V WeatherFine| + ADJ qValue|ֵ,amount|,many| +꼾 N time|ʱ,season|,@WeatherBad|,#RainSnow|ѩ + N tool|þ,*obstruct|ֹ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ + N tree| +¶ N RainSnow|ѩ +¶ N emotion|,like|ϧ,kindhearted|,desired| +ñ N clothing|,#head|ͷ,*obstruct|ֹ,#RainSnow|ѩ +ǰ N material|,#drinks|Ʒ +ɡ N tool|þ,*obstruct|ֹ,#RainSnow|ѩ +ˮ N liquid|Һ,#RainSnow|ѩ +ˮ N time|ʱ,day| + N time|ʱ,day|,@WeatherBad|,#RainSnow|ѩ +Ь N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѥ N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѩ N RainSnow|ѩ + N clothing|,#body|,*obstruct|ֹ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + COOR and| + PREP {partner} + PREP {target} +...ûйϸ V RelateNot|޹ +...Ϊ V ally| +ͬʱ ADV aValue|ֵ,time|ʱ + CONJ {question|} +빲 V undergo|,manner=together|ͬ +뻢ıƤ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V engage|,content=discuss| + N place|ط,country|,*engage|,#discuss| + N human|,engage|,#discuss| + CONJ {transition|ת} +˵ CONJ {transition|ת} +վ V BecomeMore| +ͬ V illuminate| + ADJ aValue|ֵ,source|Դ,original|ԭ + V die| + ADJ aValue|ֵ,circumstances|,lonely| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ԭһ ADJ aValue|ֵ,size|ߴ +֮ ADV {partner} +ڲͬ ADJ aValue|ֵ,kind|,special| + N land|½ + N character|,surname|,human|,ProperName|ר + N celestial| + N house| + ADJ aValue|ֵ,property|,fly|,#celestial| + V fly|,location=celestial| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N character|,surname|,human|,ProperName|ר + N celestial| +ɴ N aircraft| +溽 V fly|,location=celestial| +ռ N celestial| + N expression| + N language| + V speak|˵ + N symbol| + N expression| + N sound|,#language| +﷨ N knowledge|֪ʶ,#language| + N expression| + N software| +ᄈ N text| + N expression| + N text| +Ͽ N text| +¼ N text| + N attribute|,behavior|ֹ,speak|˵,&human| + N attribute|,property|,&language| + N part|,%expression| +̬ N attribute|,property|,&language| + N text| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,literature| +״ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ϵ N attribute|,kind|,&language| + N attribute|,property|,&language| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N language| +ѧ N knowledge|֪ʶ,#language| +ѧ N human|,#knowledge|֪ʶ,#language| + N information|Ϣ +ѧ N knowledge|֪ʶ,#information|Ϣ + N sound|,#language| + N language| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N {MaChinese|} + N part|,%bird|,hair|ë + V die| + N attribute|,rank|ȼ,#weight|,&compete|,sport| +ë N part|,%bird|,hair|ë +ë N SportTool|˶ +ë N fact|,exercise|,sport| +ëδ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N material| +޷ N clothing| +ɴ N material|,?clothing| +̳ N community|,sport| + N human|,friend| + N part|,%bird|,wing|,*fly| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N paper|ֽ + V WellTreat|ƴ + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N FlowerGrass| +Ƭ N food|ʳƷ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N crop|ׯ + N part|,%crop|ׯ,embryo| + N material|,?food|ʳƷ + N tool|þ,*decorate|װ,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,BlueGreen| +ʯ N material|,?tool|þ,#decorate|װ,precious| +ʯ V perish| + N crop|ׯ + N celestial| + ADJ aValue|ֵ,property|,#material| + N crop|ׯ + N FlowerGrass| + N tool|þ,*decorate|װ,#head|ͷ + N place|ط + N location|λ,%country|,internal| + N location|λ,%country|,external| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ +ܵ N part|,%vegetable|߲,embryo|,$eat| +ܵ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,surname|,human|,ProperName|ר + V sad|dz + V cherish|Ļ + N medicine|ҩ,(China|й) + N FlowerGrass| + V sad|dz + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| + V request|Ҫ + V sigh|̾ + V request|Ҫ + V request|Ҫ + V meet| + V suffer|,content=kill|ɱ + V meet| + V suffer| + V suffer|,content=kill|ɱ + V meet| + V undergo|,content=rescue| + V die|,police| + V happen| + V suffer|,content=dangerous|Σ,police| + V CompareTo| + N character|,surname|,human|,ProperName|ר + V know|֪ + V tell| + N land|½ + ADJ aValue|ֵ,attachment|,royal| + V drive|Ԧ + V obstruct|ֹ + V obstruct|ֹ,patient=cold| +԰ N facilities|ʩ,@WhileAway|,royal| + V resist|,content=damage|,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| + ADJ aValue|ֵ,property|,$use|,politics| + ADJ aValue|ֵ,property|,$use|,royal| +Է N facilities|ʩ,@WhileAway|,royal| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| +... ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V prosper| + ADV aValue|ֵ,degree|̶,more| + N aspiration|Ը,expect| + V willing|Ը + N aspiration|Ը,expect| + N aspiration|Ը,expect| + N aspiration|Ը,expect| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N fact|,#police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + V GiveBirth| + V cultivate|,education| + V foster| + V cultivate|,patient=human|,education| + V foster|,patient=bird| + V planting|ֲ,patient=tree|,agricultural|ũ + ADJ aValue|ֵ,age|,#GiveBirth| + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V planting|ֲ,patient=crop|ׯ,agricultural|ũ + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V attribute|,reputation|,&human| + V praise|佱 +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| +Ϊ V RegardAs|,means=praise|佱 +ԡ V wash|ϴ +ԡ N facilities|ʩ,@wash|ϴ,@swim| +ԡ N InstitutePlace|,@wash|ϴ,commercial| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,*wipe| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N room|,@wash|ϴ +ԡѪ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ԡѪս V fight|,manner=endeavour| +ԡ N clothing|,#wash|ϴ +Ԣ V contain| +Ԣ N house| +Ԣ V reside|ס +Ԣ N human| +Ԣ N human|,past| +Ԣ V reside|ס +ԢĿ V check| +Ԣ N house| +Ԣ N house| +Ԣ N text| +Ԣ N information|Ϣ +Ԣ ADJ aValue|ֵ,content|,profound| +Ԣ V situated| +ԣ ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Ԥ V tell| +Ԥ ADJ aValue|ֵ,possibility|,possible|,$choose|ѡ +Ԥ ADJ aValue|ֵ,property|,$prepare|׼ +Ԥ V prepare|׼ +Ԥ N part|,%army| +Ԥ N affairs|,engage|,military| +Ԥ V predict|Ԥ +Ԥ V handle| +Ԥ V MakeAppointment|Լ +Ԥ V MakeAppointment|Լ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V obstruct|ֹ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V pay| +Ԥ V pay| +Ԥ N expenditure| +Ԥ N experience| +Ԥ N perception|֪ +Ԥ V announce| +Ԥ V buy|,commercial| +Ԥ V guess|² +Ԥ N result|,predict|Ԥ +Ԥ V estimate| +Ԥ V predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N thought|ͷ +Ԥ N attribute|,ability|,predict|Ԥ,&human| +Ԥ N attribute|,property|,predict|Ԥ +Ԥ V tell|,content=fact|,police| +Ԥ N InstitutePlace|,@teach|,@study|ѧ,education| +Ԥ V predict|Ԥ +Ԥ V SetAside| +Ԥı V plan|ƻ +Ԥ ADJ aValue|ֵ,property|,$predict|Ԥ +Ԥ V expect| +Ԥ V predict|Ԥ +ԤڵЧ V result|,$predict|Ԥ +Ԥ V WarmUp| +Ԥ V compete|,sport| +Ԥ V interrogate|,police| +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥʾ V mean|ָ +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥ V gather|ɼ +Ԥ V sell| +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ N plans|滮,*spend|,#wealth|Ǯ +Ԥ㲦 N fund|ʽ +Ԥ N wealth|Ǯ,$InDebt|,#plans|滮 +Ԥ N wealth|Ǯ,surplus|ʣ,#plans|滮 +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥʽ N fund|ʽ,#plans|滮 +Ԥϰ V study|ѧ,education| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ԤȾ N human|,*persuade|Ȱ˵ +Ԥ V predict|Ԥ +Ԥѡ N fact|,select|ѡ +Ԥ ADJ aValue|ֵ,property|,predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N human|,*predict|Ԥ +Ԥ V perform|,entertainment| +ԤӦ N attribute|,strength|,&inanimate| +ԤԼ V MakeAppointment|Լ +Ԥ N information|Ϣ +Ԥ֪ V know|֪ +Ԥ V produce| +Ԥƹ N component|,%building| +Ԥף V congratulate|ף +ԥ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ԥ N shows| +Ԧ V drive|Ԧ +Ԧ N human|,*drive|Ԧ,#vehicle|ͨ,military| +ԧ N bird| +ԧ N human|,family|,mass| +Ԩ ADJ aValue|ֵ,depth|,deep| +Ԩ N waters|ˮ,surfacial| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +ԨԴ N cause|ԭ +Ԩ޴ N place|ط,crime| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N phenomena|,undesired|ݬ,#unfortunate| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩͷ N human|,*spend|,foolish| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N human|,enemy| +ԩҶͷ N human|,enemy| +ԩ·խ V meet| +ԩٴ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ V IllTreat| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ V IllTreat| +ԩ V WorthNot|ֵ +ԩ N fact|,MakeBad|Ӻ,#police| +Ԫ ADJ aValue|ֵ,importance|,important| +Ԫ N character|,surname|,human|,ProperName|ר +Ԫ N money|,(China|й) +Ԫ N part|,%physical| +Ԫ NUM qValue|ֵ,sequence|,ordinal| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ CLAS unit|λ,&money|,(China|й) +Ԫ N money| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ N time|ʱ,festival|,@congratulate|ף +Ԫ N part|,%implement| +Ԫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N human|,politics| +Ԫ N time|ʱ,year|,#royal| +Ԫ N human|,family|,female|Ů +Ԫ N part|,%implement| +Ԫ N attribute|,strength|,&AnimalHuman| +Ԫ ADJ aValue|ֵ,color|ɫ,black| +Ԫ N human|,#occupation|ְλ,official|,military| +Ԫ N human|,#occupation|ְλ,official| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ԫ N part|,%entity|ʵ +Ԫڱ N document| +Ԫ N food|ʳƷ +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N human|,crime|,undesired|ݬ +Ԫѫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N sound|,#language| +Ԫ N fish| +Ԫ N time|ʱ,month| +ԫ N part|,%building|,skin|Ƥ +Ԭ N character|,surname|,human|,ProperName|ר +ԭ ADJ aValue|ֵ,physique| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N publications|鿯 +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N material|,generic|ͳ +ԭ N symbol|,#quantity| +ԭ V MakeAppointment|Լ +ԭ N attribute|,strength|,&entity|ʵ +ԭԼ N disease| +ԭ ADJ aValue|ֵ,wholeness|ȱ,complete| +ԭⲻ ADV aValue|ֵ,wholeness|ȱ,complete| +ԭ N publications|鿯,original|ԭ +ԭ N human|,*accuse|ظ,police| +ԭ N attribute|,source|Դ,#ComeToWorld|,&human| +ԭ N attribute|,price|۸,original|ԭ,&artifact|˹,commercial| +ԭ N publications|鿯,original|ԭ +ԭ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N regulation| +ԭ N material|,?food|ʳƷ,#crop|ׯ +ԭ V forgive|ԭ +ԭ N material|,generic|ͳ +ԭò N attribute|,appearance|,original|ԭ,&physical| +ԭú N material|,$burn| +ԭ N material| +ԭ N attribute|,name|,true|,&human| +ԭľ N wood|ľ,material| +ԭ N human|,family|,female|Ů +ԭɫ N attribute|,color|ɫ,&physical| +ԭ V judge|ö,police| +ԭ N AnimalHuman|,generic|ͳ +ԭ N physical| +ԭʼ ADJ aValue|ֵ,behavior|ֹ,vulgar| +ԭʼ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭʼ ADJ aValue|ֵ,time|ʱ,past| +ԭʼ V gather|ɼ +ԭʼ¼ N text|,original|ԭ +ԭʼ N human|,past| +ԭʼɭ N tree|,past| +ԭʼ N organization|֯ +ԭί N part|,%event|¼ +ԭ N text| +ԭ N text|,^$translate| +ԭ N inanimate| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N example|ʵ,#artifact|˹ +ԭ N attribute|,form|״,&physical|,original|ԭ +ԭ N material| +ԭ N attribute|,circumstances|,original|ԭ,&physical| +ԭҰ N land|½ +ԭ N aspiration|Ը,expect|,original|ԭ +ԭ N cause|ԭ +ԭ N cause|ԭ +ԭ N material|,liquid|Һ,$burn| +ԭ ADJ aValue|ֵ,property|,exist| +ԭԭ ADJ aValue|ֵ,range|,all|ȫ +ԭ N regulation| +ԭ N attribute|,property|,regulation|,&human| +ԭ֭ԭζ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭַ N location|λ +ԭ N human|,*own| +ԭ N readings| +ԭס N human|,*reside|ס +ԭ״ N attribute|,circumstances|,past|,&entity|ʵ +ԭ N part|,%physical| +ԭӵ N weapon| +ԭӺ N part|,%physical| +ԭ N part|,%physical|,strength| +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ԭ N readings| +ԭ V forgive|ԭ +Ԯ V help| +Ԯ V quote| +Ԯ V rescue| +Ԯ N army|,*rescue| +Ԯ V build|,EventProcess=help| +Ԯ V rescue| +Ԯ N human|,*rescue| +Ԯ N army|,*rescue| +Ԯ N fund|ʽ,*help| +Ԯ N fact|,help| +Ԯ V help|,patient=foreign| +Ԯ V quote| +Ԯ V recommend|Ƽ +Ԯ V quote| +Ԯ V help| +ԯ N livestock|,#LandVehicle| +԰ N InstitutePlace|,@recreation| +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N part|,%entity|ʵ,aspect| +԰ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ +԰ N human|,#occupation|ְλ,*teach|,education| +԰ N facilities|ʩ,#plant|ֲ +԰ N facilities|ʩ,space|ռ,@bury|,#die| +԰ N facilities|ʩ,#plant|ֲ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ѧ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +Ա CLAS NounUnit|,&human|,military| +Ա N human| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N image|ͼ +Բ N money| +Բ N money|,(North Korean|) +Բ N money|,(South Korea|) +Բ CLAS unit|λ,&money|,(China|й) +Բײ N part|,%vegetable|߲,embryo|,$eat| +Բײ N vegetable|߲ +Բ N material|,wood|ľ +Բ V help| +Բ N part|,%building|,head|ͷ +Բ N material|,metal| +Բµ ADJ aValue|ֵ,form|״,round|Բ +Բ N tool|þ,*measure| +Բ N MusicTool| +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N shape| +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ V die| +Բ N tool|þ,*break|۶ +Բ N symbol| +Բ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Բ V fulfil|ʵ,patient=aspiration|Ը +Բ N shape| +Բ N shape| +ԲȦ N shape|,round|Բ +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| +Բ ADJ aValue|ֵ,ability|,able|,desired| +Բͨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ԲͲ N shape| +Բ N music| +Բ N part|,%shape|,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +ԲԲ ADJ aValue|ֵ,form|״,round|Բ +Բ䷽ V FitNot| +Բ N image|ͼ +Բ N PenInk|ī,*write|д +Բ N shape| +Բ N shape| +Բ ADJ aValue|ֵ,form|״ +Բ׶ N shape| +Բ׶ ADJ aValue|ֵ,form|״ +Բ N furniture|Ҿ,space|ռ,@put|,round|Բ +Բ N fact|,discuss|,politics| +Բ N food|ʳƷ +Գ N animal| +Գ N beast| +Գ N beast| +Գ N animal|,#human| +Դ N cause|ԭ +Դ N part|,%waters|ˮ,head|ͷ +Դ N software| +Դ N part|,%event|¼,head|ͷ +Դ N part|,%waters|ˮ,head|ͷ +ԴȪ N cause|ԭ +Դͷ N part|,%waters|ˮ,head|ͷ +Դ V ResultFrom|Ե +Դ V begin|ʼ +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԶ ADJ aValue|ֵ,content|,profound|,desired| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե N part|,%inanimate|,%space|ռ,edge| +Ե PREP {location} +Ե N attribute|,relatedness|,&human| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե ADV {cause|ԭ,question|} +Եľ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ե N cause|ԭ +Ե N cause|ԭ +Ե V ResultFrom|Ե +Զ ADV aValue|ֵ,degree|̶,more| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADV aValue|ֵ,duration|,TimeShort| +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ̺ͽ ADJ aValue|ֵ,distance| +Զ N location|λ,far|Զ +Զ ADJ aValue|ֵ,content|,profound|,desired| +Զ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ N facilities|ʩ,route|·,far|Զ +Զ N place|ط,ProperName|ר,(Asia|) +Զ N place|ط,far|Զ +Զ V from| +Զ ADJ aValue|ֵ,time|ʱ,past| +Զ N time|ʱ,past| +Զ V VehicleGo|ʻ +Զ N thought|ͷ +Զ׿ʶ N thought|ͷ,wise| +Զ N part|,%place|ط,surrounding|Χ,#city| +Զ ADJ aValue|ֵ,distance| +Զ N attribute|,distance|,&space|ռ +Զ ADJ aValue|ֵ,reputation|,glorious|,desired| +Զ N attribute|,outlook|ǰ,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ V leave|뿪 +Զ N thought|ͷ +Զ N place|ط,ProperName|ר,(Asia|) +Զ ADV aValue|ֵ,duration|,TimeLong| +Զ N human|,family| +Զ V SelfMoveInManner|ʽ +Զ N disease|,#eye| +Զ V look| +Զ V look| +Զ V sell| +Զ V SelfMoveInManner|ʽ +Զ V disseminate| +Զ N waters|ˮ,surfacial| +Զ N cause|ԭ +ԶԶ ADV aValue|ֵ,degree|̶,more| +ԶԶ ADJ aValue|ֵ,distance|,far|Զ +Զ N army| +Զ V leave|뿪 +Զ־ N FlowerGrass|,?medicine|ҩ +Զ־ N aspiration|Ը,expect|,desired| +Զ߸߷ V leave|뿪 +Զ V tour| +Զ N human|,past| +Է N community| +Է N facilities|ʩ,#plant|ֲ,#livestock| +Ը N aspiration|Ը,expect| +Ը V willing|Ը +Ը N aspiration|Ը,expect| +Ը V request|Ҫ +Ը V willing|Ը +ԸЭ N human|,*surrender| +Թ V blame|Թ +Թ V emotion|,hate|,undesired|ݬ +Թ N emotion|,hate|,undesired|ݬ +Թ N entity|ʵ,$hate| +Թ N emotion|,hate|,undesired|ݬ +Թ V hate| +Թ V repent|û +Թż N human|,family|,mass|,#unfortunate| +Թ N emotion|,hate|,undesired|ݬ +Թص V protest| +Թ V blame|Թ +Թ N text|,*blame|Թ +Թ N emotion|,hate|,undesired|ݬ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +Ժ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%building|,space|ռ +Ժ N part|,%institution|,official| +Ժ N human|,#occupation|ְλ,official| +Ժ N part|,%building|,space|ռ +Ժ N part|,%house|,space|ռ +Ժǽ N part|,%building|,skin|Ƥ +Ժʿ N human|,able|,#knowledge|֪ʶ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +ԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%house|,space|ռ +Ի V naming| +Ի V speak|˵ +Լ V MakeAppointment|Լ +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| +Լ N agreement|Լ +Լ N fact|,DoSum| +Լ N fact|,MakeAppointment|Լ +Լ V invite| +Լ ADV qValue|ֵ,amount|,almost| +Լ V restrain|ֹ +Լ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jordan|Լ) +Լ N place|ط,country|,ProperName|ר,(Asia|) +Լɶ N money|,(Jordan|Լ) +Լ N human|,(Jordan|Լ) +Լ V MakeAppointment|Լ +Լ׳ V forming|γ +Լ V MakeAppointment|Լ +Լ˹ N place|ط,city|,ProperName|ר,(South Africa|Ϸ) +Լ V meet| +Լ V meet| +Լ V AmountTo|ܼ +Լ V calculate| +Լ³ N language|,#country|,ProperName|ר +Լ ADJ aValue|ֵ,behavior|ֹ,simple| +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV qValue|ֵ,amount|,almost| +ԼĪ ADV qValue|ֵ,amount|,almost| +Լ V invite| +Լ V restrain|ֹ +Լ N attribute|,power|,#restrain|ֹ,&thing| +Լ ADJ attribute|,power|,#restrain|ֹ,&thing| +Խ V BeBeyond|Խ +Խ N character|,surname|,human|,ProperName|ר +Խ V cross|Խ +Խ N place|ط,country|,ProperName|ר,(Vietnam|Խ) +Խ...Խ ADV aValue|ֵ,degree|̶,more| +Խ V pass|ȹ,patient=winter| +Խ N money|,(Vietnam|Խ) +Խ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Խ V cross|Խ +Խ V surpass|ǿ +Խ V cross|Խ +Խ V cross|Խ,LocationThru=country|,crime| +Խ N human| +Խ N shows| +ԽԽ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Vietnam|Խ) +Խ N place|ط,country|,ProperName|ר,(Asia|) +Խ N language|,#country|,ProperName|ר +ԽȨ V BeBeyond|Խ +Խ ADV aValue|ֵ,degree|̶,more| +Խλ V BeBeyond|Խ,sport| +ԽҰ N fact|,cross|Խ +ԽҰ N fact|,compete|,sport| +Խ V flee|,LocationIni=InstitutePlace|,crime| +Խ V human|,*flee|,#InstitutePlace|,crime| +Խ޴ V handle| +Ծ V jump| +Ծ V shiver| +Ծ V GoForward|ǰ +Ծ V jump| +Ծ V become|Ϊ +Ծ V urge|ʹ +ԾȻֽ V appear| +Ծ V become|Ϊ +ԾԾ V willing|Ը +Կ N tool|þ,*open|,*shut|ر +Կ N tool|þ,*open|,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N land|½ + N human|,family|,male| +ĸ N human|,family|,female|Ů +˧ N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N edible|ʳ + N shows| + N language|,#country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,time|ʱ,month| + N celestial| + N time|ʱ,month|,special| + N unit|λ,&time|ʱ +° ADJ aValue|ֵ,color|ɫ,blue|,light| +°׷ N time|ʱ,night|,beautiful| +° N time|ʱ,day| +± N document| +± N publications|鿯 +± N food|ʳƷ +² N quantity|,amount|,&crop|ׯ,&artifact|˹ +² N quantity|,amount|,&crop|ׯ,&artifact|˹,#month| +³ N time|ʱ,early|,month| +µ N time|ʱ,ending|ĩ,month| +¶ ADJ aValue|ֵ,frequency|Ƶ,month| +· N time|ʱ,month| +¹ N celestial| +¹ N lights| +» N lights| +¼ N FlowerGrass| +¼ N FlowerGrass| +¾ N phenomena|,#female|Ů,#medical|ҽ +¾ N disease| +¿ N publications|鿯 + N celestial| +ĩ N time|ʱ,month|,ending|ĩ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ + N MusicTool| + N celestial| +ɫ N lights| +̨ N facilities|ʩ,space|ռ,@TakeVehicle|,#LandVehicle| +Ϣ N fund|ʽ,$earn|׬,commercial| + N humanized| + N humanized|,*guide| + N human|,*guide| +н N payment|,#month| + N celestial| + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| + N time|ʱ,month| + N lights| + N time|ʱ,middle|,month| + N time|ʱ,ending|ĩ,month| + N time|ʱ,ending|ĩ,month| + V joyful|ϲ + V please|ȡ +ö ADJ aValue|ֵ,SoundQuality|,good|,desired| +÷ V admire|Ľ +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V check| + V read| +ı V check|,content=army|,military| +ı N fact|,check|,#army|,military| +ıʽ N fact|,check|,#army|,military| +Ķ V read| +Ķд N attribute|,ability|,read|,compile|༭,&human| +ľ V check|,content=result|,#exam| + V read| + N room|,@read| + N experience| + V undergo| + V remove|,agricultural|ũ +ų N tool|þ,#crop|ׯ + V remove|,location=land|½,agricultural|ũ + N CloudMist| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ N CloudMist| +Ʋ N CloudMist| +ƺ N CloudMist| +ƺ N celestial| +Ƽ V ComeTogether| + N MusicTool| +ĸ N stone|ʯ,material| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N CloudMist| +ȸ N bird| +ɼ N tree| +ɽ ADJ aValue|ֵ,clearness|,blurred| + N part|,%building|,nerve| + N sky| +ͼ N image|ͼ,#CloudMist| + N CloudMist| +ϼ N CloudMist| + N sky| +ɢ V WeatherFine| +ɢ V disappear|ʧ + N CloudMist| + V roam| + N fact|,mating| + N text| + ADJ aValue|ֵ,clearness|,blurred| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,form|״,even| + V economize|ʡ + V separate| +ȳ ADJ aValue|ֵ,form|״,even| +ȶ V economize|ʡ +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱦ ADJ aValue|ֵ,form|״,even| + V MakeUp|ױ + ADJ aValue|ֵ,form|״,even| +ʵ ADJ aValue|ֵ,form|״,even| + N attribute|,speed|ٶ,&event|¼ + ADJ aValue|ֵ,form|״,even| + V fall| + V fall| + V disappear|ʧ + V perish| +ʯ N stone|ʯ,#celestial| + N metal|,#celestial| + N stone|ʯ,#celestial| + V agree|ͬ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ŵ V agree|ͬ + V agree|ͬ + N attribute|,circumstances|,&human| + N fact|,AlterLocation|ռλ + V transport| + V use| +˳ V plan|ƻ +˳ѧ N knowledge|֪ʶ +˳ V plan|ƻ +˶ N fact|,AlterLocation|ռλ +˶ N fact|,exercise|,sport| +˶ N fact|,function|,politics| +˶ N disease| +˶ N clothing| +˶ N fact|,sport| +˶ N SportTool|˶ +˶ѧ N knowledge|֪ʶ,#sport| +˶ N clothing| +˶Ա N human|,sport| +˷ N expenditure|,transport| +˺ N waters|ˮ,linear| +˼ N attribute|,price|۸,&transport| +˾ N attribute|,distance|,#transport| + N attribute|,ability|,&transport| + N quantity|,amount|,#transport|,&physical| + N attribute|,circumstances|,&human| + V transmit|,medical|ҽ + V TakeAway|ᶯ,sport| + V transport| +䳵 N LandVehicle|,@transport|,#inanimate| +乤 N vehicle|ͨ + N aircraft|,*transport| + N aircraft|,*transport|,#inanimate| + N machine|,*transport|,mine| +ҵ N affairs|,*transport| + V transmit| + V transport| + V calculate| + V sell|,commercial| + V SelfMove| + V function| +Ӫ V function| + V use| + V undergo|,content=use| + V transport| +ع N vehicle|ͨ,*transport| +ػ N vehicle|ͨ,*transport| +ת V circle| +ת V function| + V function| + V handle| + V contain| +̲ V contain| +̲ N quantity|,amount|,&store| +̺ V contain| +̺ V contain| + V exist| + V create| + V think|˼ + V dizzy|,medical|ҽ + N fact|,dizzy| +γ N disease| +γ V dizzy|,medical|ҽ +δ N disease| +δ V dizzy|,medical|ҽ +ε V dizzy|,medical|ҽ +λ N disease| +λ V dizzy|,medical|ҽ +ͷת ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷת V dizzy| +κ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V dizzy|,medical|ҽ + N sound|,good| + N attribute|,pattern|ʽ,&text| + N regulation|,#pattern|ʽ,#text| +ɲ N fact|,sport| +ζ N attribute|,demeanor|,beautiful|,desired|,&human| + N fact|,pregnant|,#medical|ҽ + V pregnant|,#medical|ҽ +и N human|,female|Ů,*pregnant| + N time|ʱ,@pregnant|,#medical|ҽ + V pregnant|,agricultural|ũ + V StomachTrouble|֢,cause=pregnant| + N livestock|,female|Ů,pregnant| + V pregnant| + ADJ aValue|ֵ,density|ܶ,dense| + N shape|,round|Բ +ѵ ADJ location|λ,all|ȫ + V beat| + V fail|ʧ +ҷ V CauseToDo|ʹ,ResultEvent=suffer|,#discharge| +ҹ V fail|ʧ +ҹ V abandon|,possession=all|ȫ + V beat| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +Ӳ N FlowerGrass| +Ӳݴ ADJ aValue|ֵ,occasion|,desolate| +ӷ N expenditure| +Ӹ N text|,mixed| +Ӹ N thought|ͷ,disorder| +ӺͲ N food|ʳƷ,mixed| +Ӻ N material|,?food|ʳƷ,#crop|ׯ +ӻ N entity|ʵ,mixed| +ӻ N food|ʳƷ,mixed| +ӻ N artifact|˹,commercial|,generic|ͳ +ӻ N InstitutePlace|,*sell|,@buy|,commercial| +Ӽ N shows| +Ӽ N community|,*perform|,entertainment| +ӼԱ N human|,*perform|,entertainment| +ӽ V mating|,manner=mixed|,medical|ҽ +Ӿ V reside|ס + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + N thought|ͷ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ ADJ aValue|ֵ,color|ɫ,mixed| +ˣ N shows| + N food|ʳƷ + N text| + N inanimate| + N sound| +Ժ N house| +־ N publications|鿯 +־׫ N human|,*compile|༭ + N inanimate|,waste| + N animate|,#kind|,mixed| + N human|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V FallDown| + V insert| + V planting|ֲ + N plant|ֲ +Ե V FallDown| +Ըͷ V FallDown| +Ըͷ V fail|ʧ + V MakeBetter|Ż + V cultivate| + V planting|ֲ,agricultural|ũ + V slander|̰ + V slander|̰ +ֲ V planting|ֲ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N plant|ֲ,young| + STRU {MaChinese|} + N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֺ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather|,#HungryThirsty| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N human|,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N time|ʱ,year|,#unfortunate|,#weather| + N attribute|,circumstances|,miserable|,&unfortunate|,#weather| + N place|ط,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + V manage|,politics| + V request|Ҫ,ResultEvent=pay|,over| +׸ N character|,surname|,human|,ProperName|ר +ɱ V kill|ɱ + N human|,#occupation|ְλ,official|,past| + V control| + V control|,politics| + V load|װ + V record|¼ + N time|ʱ,year| +ز N shape| +ظ V recreation| +غ V load|װ +ػ V transport|,patient=artifact|˹ +ؿ V transport|,patient=human| + V record|¼ + N tool|þ,@load|װ + V transport| + V load|װ +ضλ CLAS unit|λ,&weight| + N quantity|,amount|,#load|װ,&physical| + N LandVehicle|,@transport|,#inanimate| + ADV aValue|ֵ,frequency|Ƶ,again| +ٰ V print|ӡˢ,frequency=again| +ٴ ADV aValue|ֵ,frequency|Ƶ,again| +ٴ ADV aValue|ֵ,sequence|,ordinal| +ٶ ADV aValue|ֵ,frequency|Ƶ,again| +ٷ V dispatch|Dz +ٻ V repeat|ظ,content=GetMarried| +ټ V repeat|ظ,content=MarryTo| +ټ EXPR expression|,*farewell| +ٽ N fact|,education| +ٽ V endeavour| +پ CONJ {supplement|ݽ} + ADV aValue|ֵ,frequency|Ƶ,again| + V repeat|ظ,content=interrogate|,police| + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,property|,$BeRecovered|ԭ + V produce| + N crop|ׯ +ĸ N human|,friend| +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˵ V delay| +˵ CONJ {supplement|ݽ} + V subtract|,commercial| + V appear|,frequency=again| +ѭ V circle|,frequency=again| + V help| + CONJ {supplement|ݽ} + CONJ {supplement|ݽ} + V ResultFrom|Ե + V alive| + V depend| + V exist| + V situated| + PREP {Vgoingon|չ} + PREP {location} + PREP {scope} + PREP {time} +ڰ V record|¼ +ڱ V undergo|,content=release|ͷ +ڳ V exist| +ں V PayAttention|ע +ڼ ADV aValue|ֵ,duration|,TimeShort| +ڼ V situated| +ڽ V undergo|,Vgoingon|չ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V include| +ǰ ADJ aValue|ֵ,time|ʱ,past| +DZ V flee|,Vgoingon|չ +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,distance|,#firing| +֮ ADJ aValue|ֵ,distance|,#firing| + V alive| +ϧ V worth|ֵ + V BeUnable|,content=escape| + V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +֮ N mental| + ADJ aValue|ֵ,attachment|,special| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,ability|,able|,$perception|֪,#look| +λ V undertake|,Vgoingon|չ +λ V undertake|,royal|,Vgoingon|չ + V control| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,performance|,#software| + V PayAttention|ע + V know|֪ +Ѻ V suffer|,content=detain|ס,#police| +Ѻ N human|,crime|,undesired|ݬ,$detain|ס +Ұ ADJ aValue|ֵ,power|,empty|,politics| +Ұ N community|,#power|,empty|,politics| + V PayAttention|ע + V ResultFrom|Ե + V depend| +ְ V undertake| + V exist| + PRON {firstPerson|,mass|} +ۼ N community|,family| + PRON {firstPerson|,double|} + PRON {firstPerson|,mass|} + V SetAside| + V gather|ɼ + V ComeTogether| + ADV aValue|ֵ,duration|,TimeShort| +ݴ V SetAside| +ݶ ADJ aValue|ֵ,duration|,TimeShort| +ݻ V delay| +ݾ V reside|ס + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ͣ V pause|ͣ +ͣ V pause|ͣ,sport| + ADJ aValue|ֵ,duration|,TimeShort| +а취 N regulation| + N regulation| +ס V reside|ס + V help| + V praise|佱 + N text| +ޱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zambia|ޱ) +ޱ N place|ط,country|,ProperName|ר,(Africa|) +ޱ N human|,(Zambia|ޱ) +޲ V praise|佱 +޳ V agree|ͬ +޳Ʊ N bill|Ʊ,#select|ѡ,*agree|ͬ +޳Ʊ N bill|Ʊ,*agree|ͬ,#select|ѡ +޸ N music|,*praise|佱 + V praise|佱 +ʫ V text|,*praise|佱,religion|ڽ + V FondOf|ϲ + V praise|佱 +̾ V praise|佱 +̾ V praise|佱 +ͬ V agree|ͬ + V appreciate|޳ + V praise|佱 + V praise|佱 + N text|,*praise|佱 + V praise|佱 + V help| + N inanimate|,$steal|͵ +߹ N human|,*cheat|ƭ,official|,undesired|ݬ +߿ N money|,$steal|͵ + N inanimate|,$steal|͵ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| +ಡ N disease|,#SeekPleasure|Ѱ +อ N part|,%AnimalHuman|,viscera| +໰ N text|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| + N stone|ʯ,waste| + N expression|,lascivious|,undesired|ݬ + V bury| + N fact|,bury|,salute|¾,#die| + V die| + V destroy| + V suffer| +⵽ V suffer| + V suffer| + N attribute|,circumstances|,&entity|ʵ + V suffer| + V suffer| + V suffer|,content=unfortunate| + N experience| + V suffer| + V suffer|,content=unfortunate|,#weather| + V suffer|,content=unfortunate| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + V lavish|˷ +㿷 N inanimate|,waste| + N stone|ʯ,waste| +̣ V damage| +̣ V lavish|˷ + V upset| + ADJ aValue|ֵ,trueness|α,true|,desired| + V dig|ھ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,*dig|ھ + N AlgaeFungi|ֲ +微 N part|,%house| + N AlgaeFungi|ֲ + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,red| + N material|,?food|ʳƷ + N tree|,#fruit|ˮ +Ҭ N tree| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADJ aValue|ֵ,time|ʱ,early| + ADJ aValue|ֵ,time|ʱ,past| + EXPR expression|,*SayHello|ʺ + N time|ʱ,early|,day| +簲 EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,morning| + N fact|,eat|,early| + N fact|,exercise|,#morning| + V labour|ٲ +糵 N LandVehicle| +糿 N time|ʱ,early|,day| +糿 EXPR expression|,*SayHello|ʺ +紺 N time|ʱ,spring|,early| +絾 N crop|ׯ + N fact|,eat|,early| +緹 N fact|,eat|,early| + V GetMarried| + N time|ʱ,past| + N time|ʱ,early| + V arise|,early| + N time|ʱ,early|,day| + ADJ aValue|ֵ,earliness|,early| + N time|ʱ,early|,day| + V die| + N InstitutePlace|,@sell|,@buy|,morning|,commercial| + ADJ aValue|ֵ,ability|,able|,#young| + ADJ aValue|ֵ,physique|,ripe|,early|,agricultural|ũ + N attribute|,ability|,able|,&young| + V grow|ɳ,manner=MakeEarlier| +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V ill|̬,medical|ҽ + V leave|뿪,manner=MakeEarlier| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ + N time|ʱ,past| +й N disease| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,earliness|,early| + ADV aValue|ֵ,duration|,TimeShort| + V wash|ϴ + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N InstitutePlace|,@wash|ϴ,commercial| + N InstitutePlace|,@wash|ϴ,commercial| + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +궯 V SelfMove| +꼱 ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N disease| + N human|,rash|ç,undesired|ݬ +֢ N disease| + V cry| + N sound|,undesired|ݬ + V create| + V cultivate| + V forge|α + V create| + V forming|γ +촬 N affairs|,*produce|,#repair|,#ship|,industrial| +촬 V produce|,PatientProduct=ship|,industrial| +촬 N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| +촬ҵ N affairs|,*produce|,#repair|,#ship|,industrial| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V begin|ʼ +췴 V uprise| + V visit| +츣 V benefit| +컯 N humanized| + N expenditure|,commercial| + V cultivate| + N result|,desired|,#succeed|ɹ + V planting|ֲ + N attribute|,form|״,&physical| + V create|,PatientProduct=shape| + V produce|,industrial| + N knowledge|֪ʶ +ҥ V forge|α,PatientProduct=text| +ҥ V forge|α,PatientProduct=text|,purpose=deceive|ƭ +ҥ V forge|α,PatientProduct=text|,purpose=slander|̰ + N attribute|,rank|ȼ,#mental|,&human| +Ӱ N method|,cure|ҽ,medical|ҽ + V incite|ָʹ,patient=thought|ͷ,public| +ֽ V produce|,PatientProduct=paper|ֽ,industrial| +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N human|,#occupation|ְλ,*produce|,#paper|ֽ,industrial| +ֽҵ N affairs|,*produce|,#paper|ֽ,industrial| + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black| + N tool|þ,*wash|ϴ + V ize|̬ + N chemical|ѧ + N human|,past| +Ƭ N tool|þ,*wash|ϴ + N chemical|ѧ + N chemical|ѧ + N room|,@cook| + N tool|þ,*burn|,*cook| + N tool|þ,*cook| + N humanized| +ү N humanized| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,temperature|¶,hot| + V ExpressAgainst|Ǵ + V ask| + N duty| + V punish| + V ExpressAgainst|Ǵ + V order| + V punish|,means=beat| + V punish| + V blame|Թ + V order| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + N duty| +θ N emotion|,#duty| + N emotion|,#duty| + N system|ƶ,#duty| + V ask| +Դ V endeavour| + V endeavour| + V choose|ѡ + V select|ѡ + V choose|ѡ,content=friend| +ż V choose|ѡ,content=friend|,purpose=GetMarried| +ƶ V choose|ѡ,content=desired| +ҵ V choose|ѡ,content=occupation|ְλ + V choose|ѡ,content=superior| +¼ V employ|,patient=superior|,means=choose|ѡ + V choose|ѡ,content=friend| + CLAS NounUnit|,&text| + N attribute|,standard|׼,&entity|ʵ + N law|ɷ + CONJ {but|} + CONJ {condition|} + V speak|˵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N waters|ˮ,surfacial| + N place|ط + N place|ط,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,crime|,undesired|ݬ,treacherous| + N human|,undesired|ݬ,*steal|͵,crime| +ü ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ȥ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N human|,undesired|ݬ,*steal|͵,crime| +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N place|ط,undesired|ݬ,#steal|͵,crime| + N aspiration|Ը,expect|,evil|,undesired|ݬ +IJ V refuse|,content=abandon|,#aspiration|Ը,evil|,undesired|ݬ + N celestial| + N inanimate|,$steal|͵ + ADV {manner|ʽ,question|} + ADJ aValue|ֵ,kind|,question| +ô ADV {manner|ʽ,question|} + ADV {emphasis|ǿ} + ADV {manner|ʽ,question|} + V BecomeMore| + V add| + V add|,patient=army| + V add| + V BecomeMore|,scope=produce| + V BecomeMore| + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + V enlarge| + V add| + V BecomeMore| + N attribute|,range|,BecomeMore|,&price|۸,commercial| + V BecomeMore| + V add|,scope=height|߶ + V MakeBetter|Ż + V MakeBetter|Ż + V BecomeMore| + V add| + V QuantityChange|,commercial| + V MakeBetter|Ż + N publications|鿯 + V BecomeMore|,scope=quantity| +ǿ V MakeBetter|Ż +ɫ V beautify| + V ill|̬,medical|ҽ + V add|,patient=wealth|Ǯ +˰ V add|,patient=expenditure| +ܼ N chemical|ѧ + V add| + V add| +Ԯ V MakeBetter|Ż,military| +Ԯ N army| +ֳ V ill|̬,medical|ҽ +ֵ V BecomeMore|,scope=value|ֵ,commercial| +ֵ˰ N expenditure| + V disgust| + V disgust| + V hate| + ADV aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,time|ʱ,past| +׺ ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,male| +Ů N human|,family|,female|Ů + N human|,family|,male| +ĸ N human|,family|,female|Ů + V GiveAsGift| + V GiveAsGift| +Ʒ N tool|þ,$GiveAsGift|,generic|ͳ + V GiveAsGift| + V text|,*persuade|Ȱ˵ + V GiveAsGift| + V GoInto| + V stab| + V wrap| + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +۶ V stab|,PartOfTouch=part| + V grow|ɳ + V decorate|װ + V sink|³ +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zaire|) + N money|,(Zaire|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Zair|) +Ӫ V reside|ס +ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V cure|ҽ + V speak|˵ + N inanimate|,waste| + N material| + N inanimate|,waste| + N letter|ż + N letter|ż,past| + N place|ط,city|,ProperName|ר,(Japanձ) + N text| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V associate| + V check| + V press|ѹ + V press|ѹ,industrial| + V press|ѹ,patient=metal|,industrial| +ֳ N InstitutePlace|,factory|,*press|ѹ,patient=metal|,industrial| + N machine| + V press|ѹ,industrial| +ա V break|۶ +ա N tool|þ,*break|۶,#FlowerGrass| +աݻ N tool|þ,*break|۶,#FlowerGrass| +ա N tool|þ,*break|۶,#FlowerGrass| +բ N facilities|ʩ,#waters|ˮ +բ N part|,%implement|,*start|ʼ,*cease|ͣ +բ N part|,%vehicle|ͨ,*fix|ס +բ N part|,%building|,%implement|,#electricity|,*protect| +բ N facilities|ʩ,#waters|ˮ +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +դ N part|,%building|,*defend| +դ N part|,%building|,*defend| +ե V SqueezeOut| +ե V press|ѹ +ե N food|ʳƷ +եȡ V SqueezeOut| +եȡ V rob| +ե V SqueezeOut|,patient=material|,industrial| +եͻ V machine|,*SqueezeOut|,patient=material|,industrial| +զ ADV {cause|ԭ,question|} +զ ADV {manner|ʽ,question|} +զ V ShowOff|ҫ +զ V cry| +զ V ShowOff|ҫ +զ V cry| +զ V surprise| +է ADV aValue|ֵ,behavior|ֹ,sudden| +է ADV aValue|ֵ,time|ʱ,early| +է ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chad|է) +է N place|ط,country|,ProperName|ר,(Africa|) +էȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ը V ExpressAnger|ʾŭ +ը V FormChange|α,StateFin=OutOfOrder| +ը V cook| +ը V firing| +ը V flee| +ը N weapon| +ը V FormChange|α,StateFin=OutOfOrder| +ը N thunder| +ըҩ N weapon| +թ V deceive|ƭ +թ V pretend|װ +թƭ V cheat|ƭ +թƭ N human|,*cheat|ƭ +թƭ N human|,*cheat|ƭ +ժ V PickOut|γ +ժ V StripOff|ȥ +ժ V choose|ѡ +ժ V compile|༭ +ժ N text| +ժ V copy|д +ժ V cut|,#cure|ҽ,medical|ҽ +ժ V publish| +ժ V publish|,means=choose|ѡ +ժ V StripOff|ȥ +ժ V record|¼ +ժ V borrow| +ժ¼ V copy|д +ժ¼ N human|,*copy|д +ժȡ V PickOut|γ +ժҪ V record|¼ +ժҪ N text|,#readings| +ժ V quote| +ժ V copy|д +ժ V quote| +ի N food|ʳƷ,#religion|ڽ +ի N house| +ի V GiveUp|,religion|ڽ +ի N time|ʱ,month|,#religion|ڽ +լ N house| +լ N place|ط,@build| +լ N place|ط,@build| +լ N part|,%building|,mouth| +լԺ N house| +լ N house| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,richness|ƶ,poor| +խ ADJ aValue|ֵ,width|,narrow|խ +խС ADJ aValue|ֵ,size|ߴ,small|С +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N money|,$lend|,commercial| +ծȨ N rights|Ȩ,$recompense|,#wealth|Ǯ +ծȨ N place|ط,#human|,country|,politics|,$owe|Ƿ +ծȨ N human|,$owe|Ƿ,#wealth|Ǯ +ծȯ N coupon|Ʊ֤,#fund|ʽ +ծȯ N human|,own|,#coupon|Ʊ֤ +ծ̨ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ծ̨ V owe|Ƿ,possession=wealth|Ǯ,commercial| +ծ N wealth|Ǯ,$owe|Ƿ +ծ N place|ط,#human|,country|,politics|,*owe|Ƿ +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N human|,*lend|,#wealth|Ǯ +կ N facilities|ʩ,military|,@defend| +կ N place|ط,military|,@defend| +կ N human|,official|,#facilities|ʩ,military| +կ N place|ط,military|,@defend| +հ V look| +հ V look|,purpose=condole|° +հ V look| +հ V think|˼ +հǰ˺ V hesitate|ԥ +հ V look|,direction=InFront|ǰ +հ V look|,purpose=condole|° +ձ N material| +ձ N house| +ձ N material| +ղ N character|,surname|,human|,ProperName|ר +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N attribute|,stickiness|,&inanimate| +ճ V fasten|˩ +ճ V fasten|˩ +ճϼ N material|,*fasten|˩ +ճ V fasten|˩ +ճ N disease| +ճĤ N part|,%AnimalHuman|,skin|Ƥ +ճ˿ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N stone|ʯ,material| +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ N attribute|,stickiness|,&inanimate| +ճҺ N part|,%AnimalHuman|,liquid|Һ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +մ V exist| +մ V moisten|ʪ +մ V obtain|õ +մ V touch| +մ ADJ aValue|ֵ,standard|׼,average|,desired| +մ V obtain|õ,possession=benefit| +մDz V associate|,partner=female|Ů,manner=lascivious| +մ V exist| +մ״ V relate|й +մȾ V suffer|,content=CauseAffect|Ⱦ +մȾ V place|ط,$CauseAffect|Ⱦ +մ V engage| +մ V pollute|ʹ +մմϲ V satisfied| +յ CLAS NounUnit|,&tool|þ,#illuminate| +յ N tool|þ,cubic|,@put| +ն V break|۶ +ն V kill|ɱ +նݳ V destroy| +ն ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ն V break|۶ +նʯ N material|,?building| +ն V kill|ɱ +ն ADJ aValue|ֵ,newness|¾,new|,desired| +շ N character|,(China|й) +շ V press|ѹ +շת V CausePartMove|,#LieDown|,#sleep|˯ +շת V roam| +շת V CausePartMove|,#LieDown|,#sleep|˯ +ո ADJ aValue|ֵ,GoodBad|û,good|,desired| +ո¶ͷ V display|չʾ,content=ability| +ո¶ͷ V show|,ability| +ո ADJ aValue|ֵ,newness|¾,new|,desired| +չ V delay| +չ N fact|,display|չʾ +չ V unfold|̯ +չ V use| +չ N fact|,disseminate| +չ V fly| +չ V display|չʾ +չ N facilities|ʩ,@display|չʾ +չ V delay| +չ V conduct|ʵʩ +չ V start|ʼ +չ V unfold|̯ +չ V display|չʾ +չ N fact|,display|չʾ +չ N house|,@display|չʾ +չ N fact|,display|չʾ +չƷ N physical|,$display|չʾ,generic|ͳ +չ N room|,@display|չʾ +չ¶ V appear| +չ V sell|,means=display|չʾ,commercial| +չƷ N physical|,$display|չʾ,generic|ͳ +չ V estimate|,means=display|չʾ +չ V delay| +չ N time|ʱ,@display|չʾ +չ N location|λ,@display|չʾ +չʾ V appear| +չʾ N fact|,display|չʾ +չ N room|,@display|չʾ +չ̨ N location|λ,@display|չʾ +չ N room|,@display|չʾ +չ V predict|Ԥ +չ V appear| +չ V enlarge|,PatientAttribute=boundary|,#time|ʱ +չ V sell|,means=display|չʾ,commercial| +չ N fact|,sell|,#display|չʾ,commercial| +չת V CausePartMove|,#LieDown|,#sleep|˯ +չת V roam| +պ V soak| +պ V moisten|ʪ,purpose=strengthen|ӹ,industrial| +պˮֱ N PenInk|ī,*write|д +ջ N facilities|ʩ,space|ռ,#livestock|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ջ N InstitutePlace|,commercial|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ռ V BeMember| +ռ V guess|² +ռ V obtain|õ +ռ V occupy|ռ +ռ V obtain|õ,possession=benefit| +ռ V guess|² +ռ N human|,*guess|² +ռ V own| +ռ N attribute|,area|,&land|½ +ռ V occupy|ռ +ռ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ռ V occupy|ռ +ռ N army|,*occupy|ռ +ռ N place|ط,$occupy|ռ +ռ N human|,*occupy|ռ,military| +ռ V guess|² +ռϷ V surpass|ǿ +ռ V surpass|ǿ +ռ V undergo|,content=use| +ռС V obtain|õ,possession=benefit| +ռ V use| +ռ V own| +ռ N quantity|,rate|,&own| +ռ V guess|² +ս N fact|,fight|,military| +ս V fight| +ս V fight|,military| +ս V defeated|,military| +ս V defeat|սʤ,military| +սܹ N place|ط,country|,*defeated|,military| +ս N document|,official|,#fight|,military| +ս N fact|,*prepare|׼,#fight|,military| +ս N place|ط,@fight|,military| +ս N weapon|,LandVehicle|,military| +ս N weapon| +ս N place|ط,@fight|,military| +սؼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#fight| +ս V shiver| +ս ADJ aValue|ֵ,courage|,brave| +ս V fight|,military| +ս N army| +սλ N part|,%army| +ս N weapon|,aircraft|,military| +ս N part|,%army| +ս N attribute|,strength|,fight|,&army|,military| +ս N human|,*fight|,military| +ս N human|,undesired|ݬ,#fight|,crime| +ս N human|,military|,undesired|ݬ +ս N result|,desired|,#fight|,#succeed|ɹ +ս N MusicTool|,#fight|,#military| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ս N result|,#fight| +ս N facilities|ʩ,space|ռ,military| +ս N time|ʱ,#fight| +ս N fire|,#fight|,#military| +ս׷ ADJ aValue|ֵ,circumstances|,fight| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս N time|ʱ,#fight| +ս N result|,desired|,#fight|,#succeed|ɹ +ս N weapon|,ship|,military| +ս N human|,military| +ս N attribute|,circumstances|,&fight| +ս N attribute|,circumstances|,&fight| +ս V shiver| +սƷ N artifact|˹,$obtain|õ,#fight| +ս N fact|,fight|,military| +սн N weapon|,ship|,military| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս ADJ aValue|ֵ,attachment| +ս N plans|滮 +սԲ N army| +սԲ N plans|滮 +սԺ N weapon| +սԼ N human|,#knowledge|֪ʶ,#fight|,#military| +ս N artifact|˹,*fight| +ս ADJ aValue|ֵ,property|,#fight| +ս N livestock|,#fight| +սĻ N fact|,begin|ʼ,#fight| +սǰ N time|ʱ,#fight| +ս N place|ط,@fight|,military| +սϵͳ N weapon|,*defend| +սʤ V defeat|սʤ +սʤ N place|ط,country|,*defeat|սʤ,military| +սʱ N time|ʱ,#fight|,military| +սʷ N fact|,#time|ʱ,#fight|,military| +սʿ N human|,military| +ս N fact|,fight| +ս ADJ aValue|ֵ,attachment| +ս N weapon| +սվ N army| +սò N army| +ս V die| +ս춷 V fight|,partner=thing| +ս޲ʤ ADJ aValue|ֵ,ability|,able|,defeat|սʤ +ս N place|ط,@fight|,military| +ս N fact|,fight|,military| +ս N human|,friend|,#fight| +սս V fear| +ս N fact|,fight| +ս N human|,undesired|ݬ,*do|,#fight| +ս N aspiration|Ը,expect|,#fight|,undesired|ݬ +ս N human|,undesired|ݬ,*do|,#fight| +ս״̬ N attribute|,circumstances|,&fight| +վ V CeaseSelfMove|ֹ +վ N facilities|ʩ,space|ռ +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ V stand|վ +վ N human|,#occupation|ְλ,official| +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վ V stand|վ,purpose=defend| +վڷ V stand|վ,purpose=defend| +վ̨ V engage|,content=sell|,commercial| +վ V stand|վ +վƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ +վ V stand|վ +վ̨ N facilities|ʩ,space|ռ,@TakeVehicle| +վ V CeaseSelfMove|ֹ +վ V stand|վ +վס V CeaseSelfMove|ֹ +վס V stand|վ +վס V CeaseSelfMove|ֹ +վס V succeed|ɹ +տ ADJ aValue|ֵ,clearness|,clear| +տ ADJ aValue|ֵ,content|,profound|,desired| +տ N place|ط,city|,ProperName|ר,(China|й) +տ ADJ aValue|ֵ,color|ɫ,blue| +տ ADJ aValue|ֵ,content|,profound|,desired| + V FormChange|α,StateFin=OutOfOrder| + V pregnant| + V FormChange|α + V FormChange|α,StateFin=OutOfOrder| + N tree| +ľ N wood|ľ + N material|,*obstruct|ֹ,#InsectWorm| + N tool|þ,*obstruct|ֹ,InsectWorm| + N tool|þ,*obstruct|ֹ,#InsectWorm| + N tree| + N character|,surname|,human|,ProperName|ר + N law|ɷ + N part|,%text| + N stationery|ľ + N tool|þ,$PutOn| +³ N law|ɷ +³ N method| +· N attribute|,behavior|ֹ,&act|ж +· N method|,#text| +½ N part|,%text| + N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V reward|,punish| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + CLAS NounUnit|,&furniture|Ҿ,&paper|ֽ + N character|,surname|,human|,ProperName|ר + V open| + V unfold|̯ +Ű V announce|,content=document| +Ŵ V PlayUp|Ĵ +ŵƽ V decorate|װ +Ź V hang| +Ź ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ż V flurried| +żҸ N place|ط,city|,ProperName|ר,(China|й) +żҿ N place|ط,city|,ProperName|ר,(China|й) +ſ V open| +ſ V CausePartMove|,PatientPartof=mouth| +ſڽ V stupefied|ľȻ +ſ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,#pull|,&physical| + V TakeCare| + V gather|ɼ + V prepare|׼ + N human|,ordinary| + V hang| + V look| + V look|,manner=secret| +צ V frighten|Ż + V announce| + V CausePartMove|,PatientPartof=mouth| + V beg| + V beat| + V hold| + V manage| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,hand| + N part|,%clothing|,#foot| +Ʊ N human|,*drive|Ԧ,#vehicle|ͨ +Ƴ V manage|,patient=cook| +Ƶ V lighting|ȼ +ƶ V drive|Ԧ,patient=ship| +ƹ N information|Ϣ +ƹ V manage| +ƹ N human|,#occupation|ְλ,*sell|,commercial| +Ȩ V obtain|õ,possession=power|,politics| + N human|,family|,young| +׶ V manage|,patient=cook| + N sound|,#beat|,#hand| + V control| + V know|֪ + N attribute|,power|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,hand| +ӡ V manage|,patient=power| +״ ADJ aValue|ֵ,form|״ + N part|,%tool|þ,#livestock|,#foot| + N facilities|ʩ,mine| + V beat|,PartOfTouch=skin|Ƥ + V BecomeMore| + V FormChange|α,StateFin=protruding|͹ +dz V rise| +Ƿ N attribute|,range|,BecomeMore|,&price|۸,commercial| +Ǽ V BecomeMore|,scope=price|۸ + V QuantityChange|,commercial| + N tool|þ + N human|,family|,male| + CLAS unit|λ,&length| +ɷ N human|,family|,male| + V measure| +ĸ N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N wealth|Ǯ,$owe|Ƿ,$return| +ʱ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʵ N bill|Ʊ,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʷ N human|,employee|Ա,#wealth|Ǯ +ʷ N part|,%InstitutePlace|,commercial|,*calculate|,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʺ N attribute|,number|,&account|,commercial| +ʻ N account|,@record|¼,#wealth|Ǯ +ʿ N fund|ʽ +Ļ N tool|þ,*cover|ڸ +Ŀ N account|,@record|¼,#wealth|Ǯ + N tool|þ,*cover|ڸ + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N wealth|Ǯ,$owe|Ƿ,$return| +˻ N account|,@record|¼,#wealth|Ǯ + V depend| + N fact|,fight| + N weapon|,generic|ͳ + V damage|,means=use|,#power| + V endorse|ӵ,content=fair| + V loyal|Т + V donate| +ִ V speak|˵ + V FormChange|α,StateFin=enlarge| + V swollen| + N gas|,undesired|ݬ + N gas|,undesired|ݬ + N facilities|ʩ,*obstruct|ֹ + V obstruct|ֹ +ϰ V obstruct|ֹ +ϰ N phenomena|,#obstruct|ֹ +ϰ N fact|,compete|,sport| +ϰ N facilities|ʩ,*obstruct|ֹ +ϱ V obstruct|ֹ +۷ N method|,*deceive|ƭ + V admit| + V attract| + V call|ٻ + V excite|ж + V include| + V incur| + N method| +а V request|Ҫ,ResultEvent=surrender|,military| +б V invite|,ResultEvent=bear|е +б V include|,patient=human|,military| +б V include|,patient=human| +д V entertain|д +д N expenditure|,*entertain|д +д N fact|,entertain|д +д N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +и V CauseToDo|ʹ,ResultEvent=surrender|,military| +й V include| +й V admit| +й V gather|ɼ,possession=fund|ʽ,commercial| +к V SayHello|ʺ +к V TakeCare| +к V cry| +к V tell| +м V obstruct|ֹ +н V request|Ҫ,ResultEvent=surrender|,military| +н V ally|,military| +п V include|,means=exam|,education| + V attract|,commercial| +ļ V include| +Ů V include|,ResultWhole=family| + N mark|־,#commercial| + V sell| +Ƹ V call|ٻ,ResultEvent=request|Ҫ,#employ| +Ƹ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + V request|Ҫ,ResultEvent=MarryTo| + V incur| + V admit|,#police| + V cooperate|,commercial| + V cooperate|,commercial| + V include|,patient=human|,education| + V include| + V CausePartMove|,PatientPartof=hand|,purpose=call|ٻ + N method| + N readings|,#image|ͼ + N readings|,#image|ͼ +Ц ADJ aValue|ֵ,content|,interesting|Ȥ +ҡ ADJ aValue|ֵ,property|,ShowOff|ҫ,undesired|ݬ +ҡ V ShowOff|ҫ +ҡײƭ V deceive|ƭ + V attract| + V incur| +ǻ V incur|,result=damage| +չ V wave|ڶ + V ResultIn| +² ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +׸ V include|,ResultWhole=family| + V call|ٻ,ResultEvent=borrow| + V attract|,commercial| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,content|,opened| +ʾ V announce| +ѩ V amend| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| + V LookFor|Ѱ + V request|Ҫ,ResultEvent=meet| + V return| +Ҳ V MakeEqual|ʹ +Ҳ V ExpressAgainst|Ǵ +Ҳ V MakeTrouble| +ҳ V LookFor|Ѱ,Vachieve| +ҵ V LookFor|Ѱ,Vachieve| +鷳 V MakeTrouble| + V MakeEqual|ʹ +Ǯ V return|,possession=money| +Ѱ V LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,Vachieve| + N waters|ˮ,surfacial| + N gas|,$burn| + N facilities|ʩ,#gas|,#burn| + N land|½ + N land|½ + N character|,surname|,human|,ProperName|ר + V TakeCare| + V TakePicture| + V comparison|ȹϵ + N document|,*ExpressAgreement|ʾͬ + V illuminate| + N image|ͼ,$TakePicture| + V tell| + PREP {AccordingTo} + PREP {direction} +հ V imitate|ģ +հ V do|,manner=obey|ѭ +ձ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ձ N part|,%building|,skin|Ƥ +ճ ADV aValue|ֵ,frequency|Ƶ,often| +ճ V copy|д +ն N attribute|,brightness|,#illuminate|,&artifact|˹ +շ V send| +շ V TakeCare| +չ V TakeCare| +չ V TakeCare| +պ«ư V imitate|ģ +ջ V TakeCare| +ջ V tell|,politics| +ջ N text|,*tell|,politics| +վ V ChangeNot| +վ ADV aValue|ֵ,behavior|ֹ,lasting| +տ V TakeCare| + ADV aValue|ֵ,behavior|ֹ,proper| + ADV aValue|ֵ,frequency|Ƶ,often| + V illuminate| + V TakeCare| + V illuminate| +è V imitate|ģ + V appear| + V illuminate| + N human|,*illuminate| + V compile|༭,means=TakePicture| +Ż N machine|,*compile|༭ +Ƭ N image|ͼ,$TakePicture| + V illuminate| +˵ ADV aValue|ֵ,frequency|Ƶ,often| + V TakePicture| + N InstitutePlace|,*TakePicture| + N tool|þ,*TakePicture| + ADV aValue|ֵ,behavior|ֹ,lasting| +ҫ V illuminate| +Ӧ V TakeCare| +Ӧ V coordinate|Э + ADV aValue|ֵ,behavior|ֹ,proper| +׼ V agree|ͬ + V cover|ڸ + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*cover|ڸ + N clothing|,*cover|ڸ + N part|,%building|,head|ͷ + N clothing|,*cover|ڸ + N part|,%clothing|,*cover|ڸ,#arm| + N tool|þ,*cover|ڸ + V express|ʾ + N information|Ϣ + NUM qValue|ֵ,amount|,cardinal|,mass| +׺ CLAS unit|λ,&frequency|Ƶ +ŷ CLAS unit|λ,&resistance| +ͷ N information|Ϣ + CLAS unit|λ,&frequency|Ƶ + V begin|ʼ + V create| +ػ V create|,PatientProduct=phenomena|,undesired|ݬ +ʼ V begin|ʼ + V create|,PatientProduct=phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V call|ٻ +ٻ V call|ٻ +ٻ V dismiss| +ٻ V ResultIn|,result=damage| +ټ V assemble|ۼ +ټ V meet| +ٿ V engage| + V cover|ڸ + V obstruct|ֹ +ڱ V cover|ڸ +ڱ V cover|ڸ,military| +ڱ V obstruct|ֹ +ڲ V HideTruth| +ڲ V hide| +ڵ V obstruct|ֹ +ڶ V cover|ڸ,military| +ڸ V HideTruth| +ڸ V cover|ڸ + V obstruct|ֹ + V cover|ڸ,patient=sky| +ǵ V cover|ڸ,patient=earth| + V HideTruth|,content=shy| + V HideTruth| + V cover|ڸ +۷ N method|,*deceive|ƭ + V cover|ڸ,patient=celestial| +ñ N clothing|,#head|ͷ + V cover|ڸ,patient=celestial| +ס V cover|ڸ,Vachieve| + V AmountTo|ܼ,means=CauseToBe|ʹ֮ + V GoBack| + V InDebt| + N account|,@record|¼,#SetAside|,#money| + V bend| + V break|۶ + V dump| + V fold|ߡ + N quantity|,rate|,$subtract|,&sell|,commercial| + V subtract|,commercial| + N tool|þ,*store|,#document| +۰ V BecomeLess|,range=half|,commercial| +۱ V InDebt|,possession=fund|ʽ,commercial| +۳ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +۳ N tool|þ,*measure| +۳ V discuss|,politics| +۳ V win|ʤ,means=discuss|,politics| +۵ V fold|ߡ +۶ V break|۶ +۷ V GoBack| +۷ V believe| +۷ V defeat|սʤ +۷ V respect| +ۺ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +ۻ V GoBack| +ۼ V AmountTo|ܼ,commercial| +۾ V AmountTo|ܼ,#used|,commercial| +ۿ N BecomeLess|,commercial| +ĥ V damage| +ĥ N fact|,MakeBad|Ӻ,undesired|ݬ + V damage| + N tool|þ,#wind|,*cool| + N fact|,illuminate| + ADJ aValue|ֵ,ability|,able|,illuminate| + N attribute|,ability|,able|,#illuminate|,&inanimate| + V CauseToBe|ʹ֮ + V CausePartMove|,#LieDown|,#sleep|˯ + V damage| + V lavish|˷ + V repeat|ظ +ͷ N BecomeLess|,commercial| + V bend| + N shape|,linear| + V CausePartMove|,PatientPartof=body| + V recompense|,possession=wealth|Ǯ + V reconcile| +з N plans|滮,*reconcile| + V reconcile| +Է V plans|滮,*reconcile| + N thinking|˼,#reconcile| + N account|,*record|¼,wealth|Ǯ + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N reason| + N human|,wise|,desired| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ݷ V sleep|˯ +ݾ V reside|ס + N method| + N method|,#music|,#text| + N trace|,#LandVehicle| + V defeated| + SUFFIX human| + PRON {it|} + N metal| + N crop|ׯ,?material| +ũ N human|,#occupation|ְλ,agricultural|ũ + N material|,?food|ʳƷ + N artifact|˹,waste| + ADJ aValue|ֵ,kind|,special| + N time|ʱ + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,degree|̶,more| + N location|λ + ADJ aValue|ֵ,time|ʱ,now| + N location|λ + N time|ʱ,now| + ADJ aValue|ֵ,kind|,special| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,special| +ô ADJ aValue|ֵ,degree|̶,more| +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ʱ ADV aValue|ֵ,time|ʱ,now| +Щ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,degree|̶,more| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +㽭 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + V like|ϧ + N treasure|䱦,generic|ͳ +䰮 V like|ϧ +䱦 N treasure|䱦,generic|ͳ + V store| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ʒ N treasure|䱦,generic|ͳ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N bird|,precious| + V like|ϧ + N artifact|˹,generic|ͳ,precious| + N information|Ϣ +ϡ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ϧ V like|ϧ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + EXPR expression|,*SayHello|ʺ + V like|ϧ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(US|) +鼦 N bird| + N crop|ׯ + N food|ʳƷ,generic|ͳ + V dump| + V think|˼ + ADJ aValue|ֵ,content|,accurate|׼ + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {emphasis|ǿ} +ʵѧ N attribute|,ability|,able|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%plant|ֲ,embryo| +滰 N text|,true| +漣 N artifact|˹,original|ԭ + N attribute|,trueness|α,&entity|ʵ +澭 N publications|鿯 + N AlgaeFungi|ֲ + N space|ռ,empty|,#gas| +ձ N tool|þ,*drain|ų,#gas| + N reason|,true| + N publications|鿯 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ŀ N attribute|,trueness|α,true|,&thing| +ʵ N attribute|,name|,true|,&human| +Ƥ N part|,%AnimalHuman|,flesh| +ƾʵ N information|Ϣ,*prove|֤ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,opened| + N attribute|,circumstances|,true|,&entity|ʵ + N emotion|,sincere| + N fact|,true| +ʵ N emotion|,true| +ȷ ADJ aValue|ֵ,content|,opened| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,able| + N event|¼,true| + N attribute|,property|,true|,good|,beautiful| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N experience|,true| +ʵ N attribute|,property|,trueness|α + STRU {MaChinese|} +˿ N material|,?clothing| + N part|,heart|,%entity|ʵ +α N attribute|,trueness|α,&entity|ʵ + N attribute|,environment|,true|,&entity|ʵ + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| +֪ N knowledge|֪ʶ,true|,desired| +֪Ƽ N thinking|˼,profound|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N emotion|,sincere| + N material|,?tool|þ,#decorate|װ,precious| + N humanized|,religion|ڽ + N part|,heart|,%entity|ʵ + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V select|ѡ + V distinguish|ֱ +ѡ V select|ѡ + N tool|þ,#beat|,#metal| + N tool|þ,*cook| + N tool|þ,#beat|,#metal| + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N attribute|,physique|,#mating|,&female|Ů + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N fact|,cure|ҽ + N medicine|ҩ,liquid|Һ + N shape|,acute| + N tool|þ,*fasten|˩ +Ƕ N part|,tool|þ + V cure|ҽ + V cure|ҽ + V facing| + PREP {AccordingTo} + V disobey|Υ +빿 N tool|þ,*protect| + N medicine|ҩ,liquid|Һ + V cure|ҽ +ͷ N tool|þ,*cure|ҽ +ͷ N tool|þ,*fasten|˩ + N affairs|,*fasten|˩ + N tool|þ,*fasten|˩ +߻ N affairs|,*fasten|˩ + N tool|þ,cubic|,@put| + N disease| + N part|,tool|þ +Ҷ N tree| +֯ V weave| +֯ N InstitutePlace|,@produce|,#artifact|˹,factory|,industrial| +֯Ʒ N artifact|˹ +״ ADJ aValue|ֵ,form|״,acute| + V amend| + V scout|,military|,police| + V scout|,police| + V scout|,military|,police| + N part|,%army| + N aircraft|,*scout| + N aircraft|,*scout| +Ա N human|,#occupation|ְλ,*scout|,police| +켩 V scout|,military|,police| + V reveal|¶,police| +̽ N human|,#occupation|ְλ,*scout|,police| +̽ V scout|,police| + V CausePartMove| + N tool|þ,*sleep|˯ + N tool|þ,*cover|ڸ +ľ N material|,?route|· + N tool|þ,*cover|ڸ +ͷ N tool|þ,*sleep|˯ +ϯ N furniture|Ҿ,@sleep|˯ +ϯ N tool|þ,*cover|ڸ + N tool|þ,*sleep|˯ + N disease|,#skin|Ƥ + V diagnose|,medical|ҽ + V diagnose|,medical|ҽ + ADJ aValue|ֵ,property|,diagnose| + V diagnose|,medical|ҽ + N document|,#diagnose|,medical|ҽ + N tool|þ,*diagnose|,*cure|ҽ,medical|ҽ + V cure|ҽ + V diagnose|,medical|ҽ + N part|,%InstitutePlace|,+diagnose|,+cure|ҽ,medical|ҽ + V diagnose|,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V cure|ҽ + V fear| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + ADJ aValue|ֵ,SoundVolume|,loud| + V shake|ҡ + V shiver| + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,intensity|ǿ,#(earthquake|) + V fear| + V frighten|Ż +ŭ V angry| + V frighten|Ż +Դ N location|λ,base|,#(earthquake|) + N phenomena|,undesired|ݬ,#unfortunate|,#(earthquake|) + N location|λ,base|,#(earthquake|) + N place|ط,#(earthquake|) + V excited| + V shake|ҡ + V CausePartMove|,PatientPartof=arm| + V shiver| + V shiver|,#electricity| + N part|,%machine|,*shiver|,#electricity| + ADJ aValue|ֵ,property|,shiver| + V shiver|,industrial| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,range|,&shiver|,#electricity| + ADJ aValue|ֵ,ability|,able|,teach| + V MakeBetter|Ż +л V MakeBetter|Ż,patient=(China|й) +д V speak|˵,manner=fluent| + V excited| + V excited| + V cool| + V defend|,military| + N facilities|ʩ,military| + N place|ط,city| + V restrain|ֹ + N human|,#occupation|ְλ,official|,politics| + V calm| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,ability|,able|,soothe|ο + V calm| +򾲼 N medicine|ҩ + N tool|þ,*amend|,#electricity| + V defend|,military| +ʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ѹ V kill|ɱ,police| +ѹ V restrain|ֹ,politics| +ѹ N human|,*kill|ɱ,police| +ֽ N stationery|ľ + N attribute|,form|״,&army|,#fight| + N place|ط,military|,@fight| + N time|ʱ + N place|ط,military|,@fight| +ս N fact|,fight| +󷢼Ъ ADJ aValue|ֵ,frequency|Ƶ,#disease| + ADJ aValue|ֵ,frequency|Ƶ,#disease| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&community|,entertainment|,sport| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| +ʹ V painful|ʹ,#labour|ٲ + V die|,military| + N community| +Ӫ N community|,politics| + N RainSnow|ѩ + N time|ʱ + N time|ʱ + V alter|ı,StateFin=gas| + V cook| + N food|ʳƷ + V alter|ı,StateFin=gas| + N tool|þ,cubic|,*cook| + V refine| +ˮ N water|ˮ,$refine| + N tool|þ,cubic|,*cook| + N gas| + N gas| + N machine| + N LandVehicle| + V rise| + ADJ prosper| + V prosper| + ADJ prosper| + V earn|׬ + V escape| + V endeavour| +Ǯ V earn|׬,possession=wealth|Ǯ + V escape| + V endeavour| + V CausePartMove| +۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +Ϲ N human|,unable|ӹ,undesired|ݬ + V attack|,military| + V beg| + V include|,military| + V leave|뿪 + V levy|,commercial| + V include|,military| + N stone|ʯ,waste| + N fact|,tour| + V undergo|,content=CauseToDo|ʹ + V levy|,possession=land|½ + V include|,military| + V levy|,military| + V request|Ҫ,ResultEvent=buy| + V attack|,military| + V defeat|սʤ,military| + N human|,*defeat|սʤ,military| + V beg|,possession=text| + V levy|,means=buy|,commercial| + V include|,military| + V levy|,commercial| +ļ V include|,military| +Ƹ V request|Ҫ,ResultEvent=undergo|,#employ| + V beg| + V levy|,commercial| +˰ V collect|,possession=expenditure|,commercial| + V attack|,military| +; N fact|,tour| + V beg|,possession=text| + N information|Ϣ +ѯ V ask| + V quote| + V levy| +ս V attack|,military| + N information|Ϣ + V include|,military| + V include|,military| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V HaveContest| + V debate| + V HaveContest|,scope=power|,politics| + V debate| + V quarrel| + N human|,*quarrel| + V debate| + V HaveContest|,scope=$FondOf|ϲ + V VieFor|,purpose=fulfil|ʵ + V obtain|õ + V fight| + N fact|,debate| + V HaveContest|,purpose=obtain|õ +ֶ V VieFor| +Դ V HaveContest|,scope=$FondOf|ϲ + V seek|ıȡ,possession=glorious| + V compete| + ADJ aValue|ֵ,property|,debate| + V debate| + N debate| + V debate| + N debate| +۲ V debate| + N human|,*debate| + V debate| +涷 V HaveContest|,scope=beautiful| + V seek|ıȡ,possession=glorious| +ǿö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| + V HaveContest|,purpose=obtain|õ +ȡ V endeavour| +ȡ V seek|ıȡ +Ȩ V HaveContest|,scope=power|,politics| + V VieFor| +ȿֺ V VieFor| + V HaveContest| + V HaveContest|,scope=power|,politics| + V HaveContest|,scope=beautiful| + N debate| +ִ V debate| + V fear| + V fear| + V CauseToDo|ʹ + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,range|,all|ȫ + V amend| + V damage| + V do| + V punish| + ADV qValue|ֵ,amount|,accurate|׼ + V repair| + N part|,%publications|鿯,news|,complete| + V adjust|,military| + V repair|,agricultural|ũ + V adjust| + V amend| + V improve| + N human|,*improve| + N fact|,amend|,patient=behavior|ֹ + V amend|,patient=behavior|ֹ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,appearance|,neat|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V PutInOrder| + N material|,generic|ͳ + V amend|,#electricity| + N tool|þ,*amend|,#electricity| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| +뻮һ ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V MakeUp|ױ + N symbol|,#quantity| + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + N attribute|,wholeness|ȱ,&entity|ʵ + ADJ aValue|ֵ,duration|,TimeLong| + N fact|,cure|ҽ,#beautify|,medical|ҽ + N fact|,cure|ҽ,#beautify|,medical|ҽ + V repair|,industrial| +ѵ V teach|,military| +ҹ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| + V dredge|ͨ,industrial| + V repair| +װ V PutInOrder| + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + V PutInOrder| + V rescue| + V rescue| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADV aValue|ֵ,correctness|,accurate|׼ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,form|״,upright| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,positive| + V adjust| + V amend| + STRU {Vgoingon|չ} + ADV {emphasis|ǿ} + N direction|,north| + N document|,original|ԭ +Դ V improve| + N quantity|,rate|,&quantity| + N account|,*record|¼ + ADJ aValue|ֵ,kind|,ordinary|,desired| + N human|,ordinary| +ֵ N quantity|,amount|,&entity|ʵ + N text| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,standard|׼,passed|ϸ,desired| + CONJ {time|ʱ} + N fact|,defend|,passed|ϸ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N location|λ,middle| + N method|,correct|ȷ + ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| + N electricity| + N room|,important| + N direction|,east| + N shape|,cubic| + V kill|ɱ,police| + ADJ aValue|ֵ,contrariness|,positive|,negative| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N human|,intimate|,female|Ů + N room|,important| + V persuade|Ȱ˵ + ADJ aValue|ֵ,standard|׼,average| +滯 N attribute|,property|,average|,&event|¼ + N army| + N method|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| + N part|,%electricity| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Σ V sit|,manner=strict| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,standard|׼,average| + ADV {emphasis|ǿ} +˰ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N reason| + N part|,%house|,bone| +· N method|,correct|ȷ + N part|,%building|,mouth| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,form|״ + N location|λ,InFront|ǰ + N part|,%physical|,edge| + N direction|,south| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +Ƭ N part|,%tool|þ,#TakePicture| +Ƭ N shows| +Ʒ N physical|,good| + N attribute|,SocialMode|,fair|,&human|,&organization|֯ + N attribute|,strength|,&AnimalHuman| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ȷ ADJ aValue|ֵ,correctness|,upright|,desired| +ȷ N attribute|,property|,correct|ȷ,&event|¼ +˾ N human|,gracious|,desired| + V BeSimilar| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +ʽ ADJ aValue|ֵ,behavior|ֹ,formal|ʽ + N affairs| + V treat|Դ + N room|,%InstitutePlace|,#perform| + N room|,important| +ͳ ADJ aValue|ֵ,standard|׼,average| + N text| + N time|ʱ,afternoon| + N {correctness|} + N direction|,west| + N symbol|,#quantity| + V BeSimilar| + N human|,undesired|ݬ,*kill|ɱ,crime| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +Ҫ ADV {emphasis|ǿ} + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N reason| + N emotion|,fair| + N sound|,#language| + N time|ʱ,month| + STRU {Vgoingon|չ} +ڽ ADJ aValue|ֵ,property|,undergo|,Vgoingon|չ +ڽ V undergo|,Vgoingon|չ +ְ N attribute|,occupation|ְλ,important|,&human| +ֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ֵ N quantity|,amount|,&entity|ʵ + N location|λ,middle| +» V satisfied| + ADJ aValue|ֵ,trueness|α,true|,desired| + N community|,pure| + N affairs|,#country| + N affairs|,#country|,politics| + N affairs|,#organization|֯ + N fact|,uprise|,undesired|ݬ,politics| + N regulation| + N community|,politics| + N human|,enemy| + N affairs|,#country|,politics|,police| + N institution|,#place|ط,politics| + N army| + N affairs|,politics| + N result|,#succeed|ɹ,politics| + N regulation| + N thought|ͷ,politics| + N affairs|,#country|,politics|,religion|ڽ + N community|,#affairs|,#country|,politics| +Ԫ N human|,politics|,HighRank|ߵ + N attribute|,circumstances|,#politics|,&country| + N human|,politics| + N regulation|,#country|,politics| + N text|,*estimate|,#affairs|,#country|,politics| + N affairs|,#country|,politics|,industrial| +󲻷 N fact|,mix|,politics|,industrial| +ֿ N fact|,separate|,politics|,industrial| + N attribute|,circumstances|,#politics|,&country| +Ȩ N attribute|,power|,politics|,&country| + N fact|,check|,#behavior|ֹ,#politics| + N affairs|,#country|,politics| +̳ N community|,#affairs|,#country|,politics| + N attribute|,kind|,politics|,&organization|֯,#country| +ί N human|,#occupation|ְλ,official|,politics| + N affairs|,#country|,politics| +Э N institution|,#country|,politics|,(China|й) + N affairs|,#country|,politics| +β N institution|,politics| +η N human|,crime|,politics|,undesired|ݬ +μ N human|,politics| +ξ N institution|,#country|,politics|,(China|й) +ξ N attribute|,circumstances|,#politics|,&country| +Э̻ N institution|,#country|,politics|,(China|й) + N attribute|,circumstances|,#politics|,&country| +֡ CLAS NounUnit|,&image|ͼ +֡ CLAS NounUnit|,&image|ͼ,#shows| +֢ N disease| +֢ N phenomena|,#disease|,medical|ҽ +֢ N cause|ԭ,important| +֢ N part|,%entity|ʵ,important| +֢״ N phenomena|,#disease|,medical|ҽ +֣ N character|,surname|,human|,ProperName|ר +֣ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ N place|ط,city|,ProperName|ר,(China|й) +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤ +֤ V prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ V prove|֤ +֤ N document|,*prove|֤ +֤ȯ N coupon|Ʊ֤,commercial| +֤ȯ N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ȯг N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ N human|,*prove|֤,#police| +֤ʵ V prove|֤ +֤ N document|,*prove|֤ +֤ N physical|,*prove|֤,#police| +֤ N information|Ϣ,*prove|֤,#police| +֤ V prove|֤ +֤ N mark|־ +֥ N character|,(China|й) +֥Ӹ N place|ط,city|,ProperName|ר,(US|) +֥ N FlowerGrass| +֥ N crop|ׯ,?material| +֥ N material|,?edible|ʳ,#crop|ׯ +֥ N human|,official| +֥齴 N material|,?food|ʳƷ +̶֥ N human|,official| +֥ N material|,?food|ʳƷ,liquid|Һ +֦ CLAS NounUnit|,&plant|ֲ,&PenInk|ī +֦ N part|,%plant|ֲ,limb|֫ +֦Ҷï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +֦ N part|,%plant|ֲ,limb|֫ +֦ V connect|,agricultural|ũ +֦ N part|,%event|¼,secondary|,aspect| +֦ V separate| +֦ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֦ N part|,%plant|ֲ,limb|֫ +֦ͷ N location|λ,space|ռ,%tree| +֦Ҷ N part|,%event|¼,secondary|,aspect| +֦Ҷ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֧ V CausePartMove| +֧ CLAS NounUnit|,&entity|ʵ +֧ V PropUp|֧ +֧ V SupportWeight|ס +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N character|,surname|,human|,ProperName|ר +֧ V collect|,commercial| +֧ V dispatch|Dz +֧ V endure| +֧ N community|,branch|֧,politics| +֧ N human|,official|,politics| +֧ V PropUp|֧ +֧ V ProvideFor| +֧ V endure| +֧ŵ N part|,%entity|ʵ,important| +֧ V PropUp|֧ +֧ V endorse|ӵ +֧ V endure| +֧ N human|,*endorse|ӵ +֧ V pay|,commercial| +֧ N part|,%space|ռ,dot| +֧ N part|,%army|,military| +֧ӳ N human|,official| +֧ V pay|,commercial| +֧ N tool|þ,*PropUp|֧ +֧ V separate| +֧ N InstitutePlace|,branch|֧,@post|ʼ +֧ V dispatch|Dz +֧ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֧ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +֧ N part|,%event|¼,secondary|,aspect| +֧ N waters|ˮ,linear|,secondary| +֧ V control| +֧ V issue|ַ +֧λ N attribute|,power|,strong|ǿ,&entity|ʵ +֧Ʊ N bill|Ʊ,#wealth|Ǯ +֧ N part|,%AnimalHuman|,viscera| +֧ N disease| +֧ N disease| +֧ǰ V help|,patient=army|,military| +֧ N facilities|ʩ,linear|,#liquid|Һ,#crop|ׯ,secondary| +֧ȡ V collect|,commercial| +֧ʹ V dispatch|Dz +֧ N human|,official|,politics| +֧ V HideTruth| +֧ N facilities|ʩ,linear| +֧ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֧Ӧ V TakeCare| +֧Ӧ V handle| +֧Ԯ V help| +֧Ԯ N part|,%army| +֧Ԯ˾ N part|,%army| +֧Ԯϵͳ N software| +֧ N human|,desired|,important|,able| +֧ N part|,%building|,bone| +֧ N tool|þ +֧ N tool|þ,*cook| +֧ V dispatch|Dz +֨ V MakeSound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ V MakeSound| +֨ V speak|˵ +֩ N InsectWorm| +֩ N tool|þ,#InsectWorm| +֪ N knowledge|֪ʶ +֪ V know|֪ +֪ V manage| +֪ V tell| +֪ V know|֪ +֪ V understand| +֪ V know|֪ +֪ V disobey|Υ,content=law|ɷ,time=know|֪,#law|ɷ +֪ N human|,#occupation|ְλ,official|,past| +֪ V tell| +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪֪ V know|֪ +֪ N human|,friend|,intimate| +֪ N mental| +֪֪ V like|ϧ,manner=gentle| +֪ V like|ϧ,manner=gentle| +֪ N InsectWorm| +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ N attribute|,reputation|,&human|,&organization|֯ +֪ʿ N human|,glorious| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoBackward|,time=know|֪,#hardship| +֪ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ V know|֪ +֪ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +֪ N human|,*know|֪,#event|¼ +֪ N human|,*know|֪ +֪Ȥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +֪ʶ N knowledge|֪ʶ +֪ʶȨ N rights|Ȩ,#knowledge|֪ʶ +֪ʶ N human|,#knowledge|֪ʶ +֪ʶ ADJ aValue|ֵ,property|,undergo|,#teach| +֪ʶ N community|,#knowledge|֪ʶ +֪ʶ N affairs| +֪ʶ N software|,#knowledge|֪ʶ +֪ʶ N human|,able| +֪ʶܼ ADJ aValue|ֵ,property|,BaseOn|,#knowledge|֪ʶ +֪ʶ N attribute|,range|,#knowledge|֪ʶ,&human| +֪ʶ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ʶˮ׼ N attribute|,wisdom|ǻ,&human| +֪ʶ N knowledge|֪ʶ +֪ N human|,official|,past| +֪ N software|,#knowledge|֪ʶ +֪Ϥ V know|֪ +֪ N human|,#occupation|ְλ,official|,past| +֪ V know|֪ +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪ V tell| +֪ V satisfied| +֫ N part|,%AnimalHuman|,limb|֫ +֫ V separate| +֫ N part|,%AnimalHuman|,body| +֫ N part|,%AnimalHuman|,limb|֫ +֬ N part|,%AnimalHuman|,flesh| +֬ N tool|þ,*MakeUp|ױ +֬ N part|,%AnimalHuman|,flesh| +֬ N chemical|ѧ +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,fatness|,fat| +֬ N part|,%AnimalHuman|,flesh| +֬ N wealth|Ǯ +֬ N crop|ׯ,?material| +֬ N material|,?edible|ʳ,#crop|ׯ +֬ N material|,?food|ʳƷ +֭ N liquid|Һ +֭ˮ N liquid|Һ +֭Һ N liquid|Һ +֮ STRU {DeChinese|} +֮ PRON {ThirdPerson|,mass|} +֮ PRON {it|,mass|} +֮ PRON {it|} +֮ N aValue|ֵ,time|ʱ,future| +֮ N location|λ,hind| +֮ ADV {supplement|ݽ} +֮ STRU {range} +֮ǰ N location|λ,InFront|ǰ +֮ǰ N time|ʱ,past| +֮ N location|λ,hind| +֮ PREP {besides} +֮ PREP {except} +֮ ADV aValue|ֵ,attachment| +֮ ADV aValue|ֵ,location|λ,beneath| +֮ N attribute|,rank|ȼ,&human| +֮ N location|λ,beneath| +֮ N {condition|} +֮· N facilities|ʩ,route|· +֯ V weave| +֯ V repair| +֯ V weave| +֯ N machine|,*weave|,industrial| +֯ N machine|,*weave|,industrial| +֯ N material|,?clothing| +֯Ů N celestial| +֯Ů N humanized|,female|Ů +֯Ů N human|,*weave|,industrial|,female|Ů +֯Ʒ N material|,$weave| +֯ N material|,$weave| +֯ V weave|,industrial| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N attribute|,rank|ȼ,#occupation|ְλ,&human| +ְ N attribute|,occupation|ְλ,&human| +ְ N human|,#occupation|ְλ,employee|Ա +ְ N attribute|,performance|,&organization|֯,&human| +ְȨ N attribute|,power|,#occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְλ N attribute|,occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +ְҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ N disease| +ְҵȭ N human|,sport| +ְҵȭ N fact|,sport| +ְҵ⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ְԱ N human|,#occupation|ְλ,employee|Ա +ְ N duty|,#occupation|ְλ +ְ V manage| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADV aValue|ֵ,direction|,straight|ֱ +ֱ ADJ aValue|ֵ,form|״,straight|ֱ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ N part|,%character| +ֱ V straighten|ֱ +ֱ V LeaveFor|ǰ +ֱ V disseminate| +ֱ V associate|,means=turn|Ťת,#tool|þ +ֱ N place|ط,ProperName|ר,(Europe|ŷ) +ֱ N part|,%AnimalHuman|,viscera| +ֱ N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ N tool|þ,*measure| +ֱ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֱ ADV aValue|ֵ,duration|,TimeLong| +ֱ V arrive| +ֱ N part|,%plant|ֲ,base| +ֱ N material|,?clothing| +ֱ ADJ aValue|ֵ,property|,sense|о +ֱ V fly| +ֱ N shape|,angular| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ֱ˵ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ֱ N experience|,perception|֪ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ V stand|վ +ֱ N part|,%plant|ֲ,body| +ֱ ADJ aValue|ֵ,behavior|ֹ,#electricity| +ֱ N electricity| +ֱ N electricity| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V win|ʤ,sport| +ֱü V ExpressAnger|ʾŭ +ֱü V stupefied|ľȻ +ֱɻ N aircraft| +ֱ N aircraft| +ֱ V BeMember| +ֱˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱͦͦ ADJ aValue|ֵ,posture|,upright| +ֱͨ ADJ aValue|ֵ,behavior|ֹ,continuous| +ֱͨ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱϵ N human|,family|,intimate| +ֱϽ ADJ aValue|ֵ,attachment| +ֱϽ N place|ط,city| +ֱ N shape|,linear| +ֱ۶ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V speak|˵,manner=forthright|ˬ +ֱԲ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱԲ V speak|˵,manner=forthright|ˬ +ֱ V translate| +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֲ V establish| +ֲ V planting|ֲ,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ V put| +ֲƤ V cure|ҽ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N time|ʱ,festival|,@congratulate|ף +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ걾 ADJ InstitutePlace|,@display|չʾ,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֲ N human| +ֲ N part|,%AnimalHuman|,nerve| +ֲ ADJ aValue|ֵ,property|,#plant|ֲ +ֲѧ N knowledge|֪ʶ,#plant|ֲ +ֲ N material|,liquid|Һ +ֲ԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֳ V GiveBirth| +ֳ V establish|,patient=place|ط,purpose=reside|ס +ֳ N place|ط,$establish|,#reside|ס +ֳع ADJ place|ط,country|,$establish|,#reside|ס +ֳ ADJ human|,#reside|ס +ֳ ADJ place|ط,country|,*establish|,#reside|ס +ֳ N human|,*establish|,#place|ط,#reside|ס +ֳ N system|ƶ,#establish|,#place|ط,politics| +ֳ N human|,*establish|,#place|ط,#reside|ס +ִ V catch|׽ס +ִ V conduct|ʵʩ +ִ V hold| +ִ V keep| +ִ V manage| +ִ V write|д +ִ N human|,*write|д +ִ V engage|,content=teach|,guide|,ResultEvent=perform|,entertainment| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V disobey|Υ,content=law|ɷ,crime| +ִɽ V conduct|ʵʩ,content=law|ɷ,police| +ִ V engage|,content=teach|,education| +ִҵ֤ N human| +ִԲ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V engage|,content=bear|е +ִ N human|,religion|ڽ +ִί N human|,official| +ִί N institution| +ִ V conduct|ʵʩ +ִй N human|,official|,*conduct|ʵʩ +ִ N human|,*conduct|ʵʩ +ִϯ N human|,official| +ִҵ V engage|,content=commercial| +ִ V willing|Ը +ִ N human|,friend|,intimate|,desired| +ִ V manage| +ִ N document|,*ExpressAgreement|ʾͬ +ִ V obtain|õ,possession=power|,politics| +ִ N community|,*obtain|õ,#power| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V condole|° +ֵ N attribute|,value|ֵ,&entity|ʵ +ֵ V bear|е +ֵ N quantity|,amount|,&entity|ʵ +ֵ V undergo| +ֵ V worth|ֵ +ֵ V engage|,content=bear|е +ֵ N room|,@engage|,#bear|е +ֵԱ N human|,*engage|,#bear|е +ֵ V worth|ֵ +ֵó ADJ aValue|ֵ,ability|,able|,$praise|佱 +ֵó ADJ aValue|ֵ,ability|,able|,$respect| +ֵü ADJ aValue|ֵ,ability|,able|,$ThinkOf|˼ +ֵĽ ADJ aValue|ֵ,ability|,able|,$admire|Ľ +ֵע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע +ֵǮ ADJ aValue|ֵ,value|ֵ,precious| +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е,military| +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ֶŮ N human|,family|,female|Ů +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ַ N location|λ +ָ V AimAt| +ָ V depend| +ָ V mean|ָ +ָ N part|,%AnimalHuman|,hand| +ָ N quantity|,amount|,&result|,$expect| +ָ ADV {comment|} +ָ V ExpressAgainst|Ǵ +ָ V express|ʾ +ָ V mean|ָ +ָ V order| +ָԱ N human|,#occupation|ְλ,official|,military| +ָ V teach| +ָԽ V tell|,content=direction| +ָ V CauseToBe|ʹ֮ +ָ ADJ aValue|ֵ,property|,$CauseToBe|ʹ֮ +ָ N human|,*CauseToBe|ʹ֮ +ָ V AimAt| +ָ N tool|þ,*decorate|װ,$PutOn| +ָ N human|,*perform|,entertainment| +ָ N human|,official| +ָ V order| +ָӰ N tool|þ,*order| +ָӲ N part|,%army|,*order| +ָӹ N human|,*order|,military| +ָӽṹ N part|,%army| +ָ N part|,%army| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָԱ N human|,*order|,military| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָ V ExpressAgainst|Ǵ,manner=tactful| +ָ N part|,%AnimalHuman|,hand| +ָ׵ N tool|þ,*MakeUp|ױ +ָ׻ N FlowerGrass| +ָ޼ʦ N human|,#occupation|ְλ,*MakeUp|ױ +ָ N tool|þ,*MakeUp|ױ +ָ N part|,%human|,#hand| +ָ V teach| +ָ V accuse|ظ,police| +ָ V order| +ָ N text|,*order| +ָ N attribute|,property|,order| +ָ· V guide|,ResultEvent=SelfMove| +ָ· N mark|־,#route|· +ָ V teach| +ָ V mention|ἰ +ָ V mention|ἰ +ָ N readings|,*teach| +ָ N tool|þ,*measure|,#direction| +ָ V CauseToBe|ʹ֮ +ָԽ V tell|,content=direction| +ָտɴ ADJ aValue|ֵ,duration|,TimeShort| +ָɣ V ExpressAgainst|Ǵ,manner=tactful| +ָʹ V incite|ָʹ +ָʾ V mean|ָ +ָʾ V order| +ָʾ V teach| +ָʾ N tool|þ,*mean|ָ +ָʾ N tool|þ,*mean|ָ +ָֻ V CausePartMove| +ָֻ V teach| +ָֻ V CausePartMove| +ָֻ V teach| +ָ N symbol|,#quantity| +ָͷ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,hand| +ָ V expect| +ָ N trace| +ָ ADJ aValue|ֵ,property|,facing| +ָҪ N part|,%entity|ʵ,heart| +ָ V guide| +ָӡ N trace| +ָ V ExpressAgainst|Ǵ +ָ N human|,ExpressAgainst|Ǵ +ָժ V ExpressAgainst|Ǵ +ָսԱ N human|,military|,mass| +ָ N part|,%implement| +ָ N regulation| +ָ V estimate| +ֹ V CeaseSelfMove|ֹ +ֹ PREP {TimeFin} +ֹס ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +ֹ V CeaseSelfMove|ֹ +ֹ V TurnOff|ֹ +ֹ N attribute|,boundary|,&entity|ʵ +ֹ V restrain|ֹ,ResultEvent=pant|,medical|ҽ +ֹ V restrain|ֹ,ResultEvent=HungryThirsty| +ֹˮ N water|ˮ +ֹʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ֹϢ V end|ս +ֹѪ V restrain|ֹ,ResultEvent=bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪҩ N medicine|ҩ,*restrain|ֹ,#bleed|Ѫ +ֺ N part|,%AnimalHuman|,foot| +ֺ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ֺ N part|,%AnimalHuman|,foot| +ֻ CLAS NounUnit|,&entity|ʵ +ֻ CLAS NounUnit|,&physical| +ֻ ADV {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻ ADV {modality|} +ֻ AUX {modality|} +ֻ ADV {modality|} +ֻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֻ V manage|,manner=only| +ֻ ADV {modality|} +ֻ ADV {modality|} +ֻ ADV aValue|ֵ,behavior|ֹ,single| +ֻ COOR {but|} +ֻ ADV {emphasis|ǿ} +ֻ COOR {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻҪ CONJ {condition|} +ֻ CONJ {condition|} +ֻϦ V VieFor| +ּ N document|,royal| +ּ N purpose|Ŀ +ּȤ N purpose|Ŀ +ּҪ N part|,%entity|ʵ,heart| +ּ N text|,*order| +ּ ADV {topic} +ֽ CLAS NounUnit|,&document| +ֽ N paper|ֽ,@write|д +ֽ N tool|þ,*print|ӡˢ +ֽס V exposure|¶ +ֽ N money|,material=paper|ֽ +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N tool|þ,@record|¼ +ֽ N tool|þ,cubic|,@put| +ֽ N material|,?paper|ֽ +ֽ N tool|þ,*wipe| +ֽϻ N human|,undesired|ݬ +ֽ N tool|þ,*gamble|IJ,*recreation| +ֽƬ N paper|ֽ,small|С +ֽǮ N tool|þ,#die| +̸ֽ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֽ N paper|ֽ,small|С +ֽ N tool|þ,cubic|,@put| +ֽм N paper|ֽ,small|С +ֽ N tool|þ,*print|ӡˢ +ֽ N addictive|Ⱥ +ֽ N InsectWorm| +ֽ N paper|ֽ,@write|д +ֽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ֽ N tool|þ,*WhileAway| +־ N account| +־ N aspiration|Ը,expect| +־ N mark|־ +־ V condole|° +־ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +־ N aspiration|Ը,expect|,desired| +־Ȥ N emotion|,FondOf|ϲ +־ʿ N human|,desired| +־ʿ N human|,desired|,faithful| +־ͬ V fit|ʺ +־ N aspiration|Ը,expect| +־Ը N aspiration|Ը,expect| +־Ը V willing|Ը +־Ը N human|,*fight|,military| +־Ը N army| +־Ը N human|,willing|Ը +־ڱص V willing|Ը,content=defeat|սʤ +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ V love| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N human|,friend|,intimate|,desired| + V throw| +ǹ N fact|,sport| +Ͳ N weapon| + N fact|,sport| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + N treasure|䱦 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + CONJ {supplement|ݽ} + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ ADJ aValue|ֵ,importance|,important| + N human|,friend|,intimate|,desired| + ADV aValue|ֵ,duration|,TimeLong| + N expression| + N human|,family| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADV aValue|ֵ,range|,nonextensive| + N human|,friend|,intimate|,desired| + PREP {concerning} + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + V CauseAffect|Ⱦ + V ResultIn| + V express|ʾ + V send| + V spend| +° V express|ʾ,content=sorrowful| +° ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ,#disease| +² V ResultIn|,result=ill|̬ +² N bacteria|΢ +² V ResultIn|,result=disable|м +´ V speak|˵ +´ V speak|˵ +µ V send|,patient=information|Ϣ +¸ V become|Ϊ,isa=rich| +¹ N community|,politics|,ProperName|ר,(China|й) +º V write|д +º V congratulate|ף +¾ V salute|¾ + V engage| + V engage| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +Ǹ V apologize|Ǹ +ʹ V ResultIn| + V ResultIn|,result=die| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +л V thank|л + V write|д + V SayHello|ʺ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + V buy|,commercial| + V establish| + V put| +ð V buy|,commercial| +ñ V buy|,commercial| +ñ V debate| +÷ V put| +û V replace| + V IllTreat| + V stay|ͣ + V put| +֮ V IllTreat| +֮ V IllTreat| +֮ V IllTreat| +֮Ժ V IllTreat| + N tool|þ,mark|־ + V stand|վ + V forming|γ + V produce| + V restrain|ֹ + N system|ƶ +ư V print|ӡˢ +Ʊ V produce| +Ʊ V forming|γ,PatientProduct=document| +Ʋ V punish| +Ƴ V produce|,Vachieve| +ƳƷ N artifact|˹ +Ƶ V control| +ƶ V forming|γ +ƶ V forming|γ +ƶ V TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N law|ɷ +ƶ N system|ƶ +ƶȻ N attribute|,property|,system|ƶ +ƶ ADJ aValue|ֵ,attachment| +Ʒ V control| +Ʒ N clothing| +Ʒ V control| +Ƹߵ N location|λ,military| +Ƹ V produce|,PatientProduct=material| +Ƹﳧ V InstitutePlace|,@produce|,#material| +ƺȨ N attribute|,power|,control|,#waters|ˮ,&country|,&army| +ƺ V restrain|ֹ +ƺ N attribute|,strength|,&human|,&organization|֯ +Ƽ N medicine|ҩ +Ƽ N part|,%artifact|˹,#produce|,industrial| +ƿȨ N attribute|,power|,control|,#sky|,&country|,&army| + ADJ aValue|ֵ,property|,cool| + V cool| + N tool|þ,*cool| +Ƭ N human|,produce|,#shows| +Ƭ V produce|,PatientProduct=shows| +Ƭ N InstitutePlace|,@produce|,#shows| +Ʒ N artifact|˹,generic|ͳ +ʤ V defeat|սʤ +ʽ N attribute|,kind|,tool|þ + V produce|,sell| + V refine|,patient=material|,industrial| +ͼ V draw|,industrial| + V MakeAppointment|Լ,content=law|ɷ +ҩ V produce|,PatientProduct=medicine|ҩ +ҩ N InstitutePlace|,@produce|,#medicine|ҩ,factory|,industrial| +Լ V restrain|ֹ + V create| + V produce| +쳧 N InstitutePlace|,@produce|,factory|,industrial| +ҵ N affairs|,*produce|,industrial| + N human|,*produce| +ֹ V obstruct|ֹ +ֹ V restrain|ֹ +ֹΣ N attribute|,ability|,#restrain|ֹ,dangerous|Σ + V produce| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +dz N part|,%AnimalHuman|,*bite|ҧ +Ƕ N human|,wise|,desired| +ǻ N attribute|,wisdom|ǻ,&AnimalHuman| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chile|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Chile|) + N attribute|,wisdom|ǻ,&AnimalHuman| + N human|,able|,wise|,desired| + N human|,able|,wise|,desired| + N community|,able|,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +ܻ V ize|̬,PatientAttribute=wise| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ž ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȡ V seek|ıȡ,manner=dexterous| + N attribute|,rank|ȼ,wisdom|ǻ,&human| +˫ȫ ADJ aValue|ֵ,courage|,brave|,desired| + N affairs|,education|,#wise| + N human|,wise|,desired| + N attribute|,sequence|,&entity|ʵ + N time|ʱ,year| + N attribute|,sequence|,&entity|ʵ +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| + N attribute|,property|,&entity|ʵ + N attribute|,quality|,&entity|ʵ + N entity|ʵ,generic|ͳ + V interrogate| + V pawn|Ѻ +ʱ N fact|,change|,#quality| +ʴμ۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ʵ N attribute|,property|,&physical| +ʵ N attribute|,quality|,&physical| +ʵ N part|,%physical| +ʼ V check|,content=quality| + N attribute|,quality|,&entity|ʵ + N attribute|,standard|׼,&quality| + N material|,?clothing| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| + V interrogate| +ѯ V ask| + V ask| + V ask| +ż ADJ aValue|ֵ,price|۸,cheap|,desired| + N part|,%physical| + V cook| +ֿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N disease| +̴ N disease| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ͺ V detain|ס,patient=water|ˮ +ͺ V inferior| + V suffer|,content=detain|ס +ɽ N expenditure|,$punish|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V control| + V cure|ҽ + V manage| + V punish| + V research|о +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +α V cure|ҽ +α V handle| +α V cure|ҽ +α V handle| +β V cure|ҽ,content=disease|,medical|ҽ +β V cure|ҽ +γ V manage|,patient=factory|,industrial| +ι V manage|,patient=country|,politics| +λ V control|,patient=waters|ˮ +λ V control|,patient=waters|ˮ +ξ V manage|,patient=army| + V control| + V manage|,politics| + ADJ aValue|ֵ,property|,cure|ҽ + V cure|ҽ +ɥ V arrange| +ɳ V control|,patient=stone|ʯ +ɽ V improve|,patient=land|½ + N time|ʱ,flourishing|,desired| +ˮ V control|,patient=waters|ˮ +ѧ V research|о,content=knowledge|֪ʶ + V resume|ָ,medical|ҽ + N quantity|,rate|,#BeRecovered|ԭ,&cure|ҽ +װ V prepare|׼ + V punish|,police| +ϰ V suffer|,content=obstruct|ֹ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ +Ϣ V obstruct|ֹ +Ϣ V pant| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,rank|ȼ,average| + V fulfil|ʵ + N location|λ,middle| + N place|ط,country|,ProperName|ר,(China|й) + V suffer| + N time|ʱ,now| +а N affairs|,#duty|,#sequence| +а N part|,%InstitutePlace|,education| +б V cheat|ƭ +б˽ V cheat|ƭ +б V win|ʤ,commercial| +в N electricity| +в ADJ aValue|ֵ,rank|ȼ,average| +в N part|,%entity|ʵ,middle| +в N edible|ʳ,(China|й) +вҩ N medicine|ҩ +в N plans|滮,ordinary| +в N aValue|ֵ,rank|ȼ,average| +в׼ N community| +г N part|,%facilities|ʩ,space|ռ,@compete|,sport| +г ADJ aValue|ֵ,rank|ȼ,average| +г N fact|,exercise|,sport| +г ADJ aValue|ֵ,duration|,TimeLong| +гҩ N medicine|ҩ,(China|й) +г ADJ aValue|ֵ,distance|,medium| +е V suffer|,content=shoot| +е ADJ aValue|ֵ,rank|ȼ,average| +е N crop|ׯ +е ADJ aValue|ֵ,rank|ȼ,average| +е ADJ aValue|ֵ,size|ߴ,medium| +е N attribute|,height|߶,medium|,&human| +е͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +е N location|λ,dot|,middle| +ж ADJ place|ط,ProperName|ר +ж N disease|,#poison| +ж V ill|̬,#poison| +ж ADJ aValue|ֵ,rank|ȼ,average| +ж N part|,%entity|ʵ,middle| +ж V cease|ͣ +ж N part|,%army| +ж N part|,%institution| +жӳ N human|,official|,military| +ж N part|,%AnimalHuman|,*listen| +ж N disease| +з N institution|,police|,@judge|ö,(China|й) +з N fact|,eat|,afternoon| +з N part|,%entity|ʵ,(China|й) +з N place|ط,country|,ProperName|ר,(Africa|) +зǹ͹ N place|ط,country|,ProperName|ר,(Africa|) +зǽڹͬ巨 N money|,(Togo|) +зǽں N money|,(Cameroon|¡) +зǽں N money|,(Central Africa|з) +зǽں N money|,(Chad|է) +зǽں N money|,(Congo|չ) +зǽں N money|,(Equatorial Guinea|) +зǽں N money|,(Gabon|) +з N attribute|,style|,hair|ë +з V separate| +з N human|,*exercise|,(football|) +з N disease| +з V paralyse|̱ +з N time|ʱ,season|,hot| +и߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +й N community|,politics|,ProperName|ר,(China|й) +й N institution|,politics|,ProperName|ר,(China|й) +йɼίԱ N institution|,ProperName|ר,*check|,#regulation| +й N time|ʱ,past| +й ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +й N place|ط,country|,ProperName|ר,(Asia|) +йƷ׻ N InstitutePlace|,@display|չʾ,commercial| +йũ N army|,ProperName|ר,past|,(China|й) +йѧЭ N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йٽ N community|,politics|,ProperName|ר,(China|й) +йũ N community|,politics|,ProperName|ר,(China|й) +йž N army|,ProperName|ר,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йͬ˻ N community|,politics|,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(China|й) +й¹ N community|,politics|,ProperName|ר,(China|й) +й ADJ aValue|ֵ,property|,$produce|,#(China|й) +йƤ N part|,%plant|ֲ,embryo| +к V damage|,industrial| +кͼ N chemical|ѧ +л N community|,ProperName|ר,(China|й) +л N place|ط,country|,ProperName|ר,(China|й) +л N time|ʱ,ProperName|ר,past| +л N community|,ProperName|ר,(China|й) +лȫܹ N community|,#employee|Ա,main|,(China|й) +л񹲺͹ N place|ط,country|,ProperName|ר,(China|й) +л N InstitutePlace|,publish|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,rank|ȼ,average| +мԺ N institution|,police|,@judge|ö +м V disseminate| +м N tool|þ,linear|,@transmit| +мί N institution|,*check|,#regulation|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,importance|,important| +м N human|,desired|,important|,able| +м N part|,%entity|ʵ,heart| +м N part|,%thing|,heart| +м N part|,%thing|,heart| +м ADJ aValue|ֵ,rank|ȼ,average| +м N location|λ,middle| +м N human|,commercial| +м N human|,commercial| +мϢ N time|ʱ,@rest|Ϣ,#discuss| +м N language| +н N human|,#occupation|ְλ,official|,military| +н V win|ʤ +н N physical|,*connect| +н N human|,commercial| +п ADJ aValue|ֵ,prettiness|,beautiful|,desired| +пԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +п ADJ aValue|ֵ,correctness|,accurate|׼,desired| + ADJ aValue|ֵ,relatedness| +Ȩ N rights|Ȩ,#BeIndependent| + N institution|,*associate|,ProperName|ר,(China|й) + N part|,%waters|ˮ + N human|,desired|,important|,able| +· ADV aValue|ֵ,location|λ,middle| +· ADJ aValue|ֵ,rank|ȼ,average| + V decline|˥ + N place|ط,ProperName|ר +Ϻ N house|,institution|,#politics|,(China|й) + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,age|,#adult| + N time|ʱ,#adult| + N human|,adult| +ũ N human|,#occupation|ְλ,agricultural|ũ +ŷ N place|ط,ProperName|ר,middle|,(Europe|ŷ) +ƪС˵ N readings| +Ƶ N attribute|,frequency|Ƶ + N part|,process|,middle| + N human|,adult| + N institution|,#police|,ProperName|ר,politics|,(US|) + N time|ʱ,autumn| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף + N human|,commercial| +ɽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ɽ N human|,undesired|ݬ,treacherous| +ɽװ N clothing| + V slander|̰ + N time|ʱ,past| +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʽ N attribute|,style|,&entity|ʵ,(China|й) +ʿ N human|,#occupation|ְλ,military| + N time|ʱ,past| + N part|,%thing|,heart| + N part|,%AnimalHuman|,nerve| + N disease| + V fever| + N human|,official|,past| + N MusicTool| + N human|,*perform|,entertainment| + N location|λ,%sky| + N place|ط + ADJ aValue|ֵ,SoundQuality|,good|,desired| +; N location|λ,middle| +;ͣ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ + N place|ط,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,source|Դ + ADJ aValue|ֵ,source|Դ +΢ N part|,%physical| +ξ N human|,#occupation|ְλ,official|,military| + N human|,*exercise|,(football|) + N language|,ProperName|ר,(China|й) + N time|ʱ,afternoon| + ADJ aValue|ֵ,source|Դ + N image|ͼ,linear| + N location|λ,%facilities|ʩ,middle|,linear|,sport| + N time|ʱ,night| +С ADJ aValue|ֵ,size|ߴ,small|С +Сҵ N InstitutePlace|,small|С,commercial| +С ADJ aValue|ֵ,range|,small|С +Сѧ N InstitutePlace|,@teach|,@study|ѧ,education| +У N human|,#occupation|ְλ,official|,military| +У N human|,official|,military| + ADJ aValue|ֵ,importance|,important| + N location|λ,middle| + N part|,%entity|ʵ,heart| +ĵ N location|λ,middle|,dot| +˼ N part|,%information|Ϣ,heart| + N location|λ,middle|,linear| + N InstitutePlace|,ProperName|ר,commercial|,(China|й) + N institution|,commercial|,ProperName|ר,(China|й) + V BeRecovered|ԭ + ADJ aValue|ֵ,size|ߴ,medium| +ҵ N InstitutePlace|,medium|,commercial| + ADJ aValue|ֵ,property|,#chemical|ѧ + ADJ aValue|ֵ,property|,#language| + N institution|,*disseminate|,politics|,ProperName|ר,(China|й) +ѡ V win|ʤ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + N place|ط,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment| + N location|λ,middle| + N part|,%institution|,important| +봦 N part|,%computer|,heart| +뼯Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ί N institution|,military|,ProperName|ר,(China|й) +鱨 N institution|,#police|,ProperName|ר,politics|,(US|) +ίԱ N human|,official|,politics| +о N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| +ҩ N medicine|ҩ,(China|й) +ҩ N material|,?medicine|ҩ,(China|й) +Ҷ N time|ʱ,middle| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽ N knowledge|֪ʶ,medical|ҽ,(China|й) +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V satisfied| +ӹ ADJ aValue|ֵ,rank|ȼ,average| +ӹ N knowledge|֪ʶ +ӹ N readings|,(China|й) + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N part|,%waters|ˮ + N RainSnow|ѩ +Ԫ N time|ʱ,festival|,@congratulate|ף +ԭ N place|ط,(China|й) + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ָ N part|,%AnimalHuman|,hand| +ֹ V cease|ͣ + N place|ط,(China|й) +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ת V alter|ı,patient=vehicle|ͨ +ת N InstitutePlace|,space|ռ,commercial| +װ N clothing|,(China|й) + N part|,%physical| +ӵ N weapon| + V cease|ͣ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ҳ N human|,official|,faithful| +ҳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Ҹ V persuade|Ȱ˵ +Һ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +һ N human|,*die|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N human|,faithful|,desired| + N human|,*die|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,loyal|Т,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N attribute|,behavior|ֹ,loyal|Т,&human| + N attribute|,behavior|ֹ,loyal|Т,&human| +Ĺ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V loyal|Т +ְ V loyal|Т + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,#sound| + N tool|þ,*tell|,#time|ʱ + N tool|þ,cubic|,@put| +Ӱ V like|ϧ +ӱ N tool|þ,*tell|,#time|ʱ +ӱ N InstitutePlace|,@buy|,*sell|,*repair|,tool|þ,#time|ʱ +ӱ N human|,#occupation|ְλ,*repair|,tool|þ,#time|ʱ +ӵ N time|ʱ,hour|ʱ +ӵ㹤 N human|,#occupation|ְλ,employee|Ա + N character|,surname|,human|,ProperName|ר +¥ N facilities|ʩ,space|ռ + V love| +ʯ N stone|ʯ,?material| + N sound| +ͷ N time|ʱ,hour|ʱ + N emotion| +Գ N text|,#emotion| + N emotion| + N emotion| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + V die| + V finish| + N time|ʱ,ending|ĩ + ADV {comment|} +ճ V finish|,entertainment|,sport| +յ N location|λ,ending|ĩ +յ N location|λ,ending|ĩ,sport| +յ N location|λ,ending|ĩ,sport| +յվ N facilities|ʩ,space|ռ,#LandVehicle|,ending|ĩ +ն N part|,computer| +ն˻ N part|,computer| +նû N human|,*use| +չ ADJ aValue|ֵ,duration|,TimeLong| +չ ADV {comment|} +ռ N process|,ending|ĩ +ս AUX {comment|} +ս V finish| +ս N process|,ending|ĩ +վ ADV {comment|} +վ ADV {comment|} +վ N process|,ending|ĩ + V finish| + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + N human|,family| + N fact|,important| + N regulation| + N fact|,judge|ö,police| +Ȩ N rights|Ȩ,*judge|ö,police| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#alive| + ADV aValue|ֵ,time|ʱ,ending|ĩ +ֹ V cease|ͣ +ֹ V finish| +ֹ V CeaseSelfMove|ֹ + N attribute|,kind|,&animate| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,kind|,&human| + V cultivate|,agricultural|ũ + N part|,%plant|ֲ,embryo| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=FlowerGrass| +ֵ V engage|,content=planting|ֲ,agricultural|ũ +ֶ V cure|ҽ +ֻ V cure|ҽ +ֻ V planting|ֲ,patient=FlowerGrass| +ֻ N human|,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N plant|ֲ,young| + V engage|,content=planting|ֲ,agricultural|ũ + N livestock| +ֲ V planting|ֲ,agricultural|ũ +ֲ N human|,*planting|ֲ,agricultural|ũ + ADJ aValue|ֵ,kind|,many| + ADV aValue|ֵ,kind|,many|,desired| + N part|,%plant|ֲ,embryo| + N human|,$choose|ѡ,*compete|,sport| + N part|,%plant|ֲ,embryo| +Ӷ N community|,$choose|ѡ,*compete|,sport| +ѡ N human|,$choose|ѡ,*compete|,sport| + N community| + V separate|,politics|,undesired|ݬ + V destroy|,politics|,undesired|ݬ + V despise|,politics|,undesired|ݬ + N system|ƶ,#despise|,undesired|ݬ + N human|,*despise|,undesired|ݬ + N human|,undesired|ݬ + V swollen| +׿ N disease| + N disease| + ADJ aValue|ֵ,property|,swollen| + V swollen| + V PayAttention|ע + ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,weight|,heavy| + ADJ attribute|,weight|,&physical| + N part|,%entity|ʵ + ADJ qValue|ֵ,amount|,many| + V repeat|ظ +ذ V publish|,manner=again| +ذ V punish|,police| +ر N army|,many| +ز N disease|,strong|ǿ +ز V disseminate|,manner=again| +ز V planting|ֲ,manner=again| +زپҵ V engage|,manner=again| +س V sing|,#perform|,entertainment| +س V sing|,manner=again| +ش V damage|,manner=strong|ǿ +ش V AmountTo|ܼ,scope=weight| +ش ADJ aValue|ֵ,importance|,important| +ص N affairs|,difficult| +ص V repeat|ظ,content=unfortunate| +ص N place|ط,important| +ص ADJ aValue|ֵ,importance|,important| +ص N part|,%entity|ʵ,important| +ص V BeAcross|ཻ +ص ADJ aValue|ֵ,circumstances|,BeAcross|ཻ +ض V MakeSound| +ض N sound|,#language| +ط V punish| +ط V GoBack| +ط N human|,crime|,undesired|ݬ +ط V display|չʾ,manner=again| +ط V meet| +ظ ADJ aValue|ֵ,property|,repeat|ظ +ظ V repeat|ظ +ظ N attribute|,property|,repeat|ظ,&event|¼ +ظ N affairs|,difficult| +عҵ N affairs|,industrial| +ع V estimate| +غ V BeAcross|ཻ +غը N weapon|,aircraft|,military| +ػ V GetMarried|,crime| +ػ N human|,crime|,#GetMarried| +ػ N fact|,crime|,#GetMarried| +ػ N affairs| +ػǹ N weapon|,*firing| +ؽ N fact|,sport| +ؽ V build|,industrial| +ؽ V establish| +ؽ V reward| +ؽ N expenditure|,many| +ؽ N metal| + N attribute|,strength|,&inanimate| +ٶ N attribute|,speed|ٶ,&inanimate| + N attribute|,weight|,&physical| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,important|,desired| + V BeSame|ͬ,scope=name| +Ů V PayAttention|ע,target=male|,despise|,target=female|Ů + V punish| + N weapon|,*firing| + N place|ط,city|,ProperName|ר,(China|й) + N affairs|,important| + N disease|,#wounded| + N human|,*PayAttention|ע,#commercial| + V explain|˵,manner=again| + V interrogate|,police| + V PayAttention|ע +ˮ N chemical|ѧ + N human|,family|,male| +Ů N human|,family|,female|Ů + V propose|,manner=again| + V disable|м,scope=listen| + N fact|,$entrust|ί +Χ N shape|,#surround|Χ,military| + V LookBack| + N weapon| + N inanimate|,heavy| + V appear| + ADV aValue|ֵ,frequency|Ƶ,again| + N part|,%entity|ʵ,important| + ADJ aValue|ֵ,size|ߴ,big| + V repair| +ѹ N attribute|,strength|,&entity|ʵ + V happen|,manner=again| + N waters|ˮ,surfacial| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N attribute|,importance|,&entity|ʵ +Ҫ N attribute|,importance|,&physical| + V translate|,manner=again| + N sound|,#language| + N sound|,#music| +ӡ V print|ӡˢ,manner=again| + V employ| + N material|,liquid|Һ,$burn| + V load|װ + V PayAttention|ע + V resume|ָ + N place|ط,military|,important| + V repeat|ظ,content=assemble|ۼ + V repeat|ظ,content=assemble|ۼ +֢ N disease|,strong|ǿ + ADJ qValue|ֵ,amount|,many| + V recreation|,entertainment| + N fact|,crime|,strong|ǿ,undesired|ݬ + V repeat|ظ + N character|,surname|,human|,ProperName|ר +ٲ V judge|ö +ٲ V human|,*judge|ö +ٲ V document|,*judge|ö +ٲ N human|,*judge|ö +ٴ N time|ʱ,spring| +ٶ N time|ʱ,month|,winter| +ٶ N time|ʱ,winter| +ٽ N physical|,*connect| + N time|ʱ,autumn| + N time|ʱ,month|,autumn| + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| + N human|,mass| + ADJ qValue|ֵ,amount|,many| +ڲԺ N institution|,*manage|,law|ɷ,politics| +ڶ ADJ qValue|ֵ,amount|,many| +ڹ V differ|ͬ +ڿһ V BeSame|ͬ +Ŀ ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + PRON {ThirdPerson|,mass|} + N animate|,mass| +ʸ֮ N entity|ʵ,undesired|ݬ,$ExpressAgainst|Ǵ +˵ N thought|ͷ,different|,many| +˵ N thought|ͷ,different|,many| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ V {comment|} +֪ ADV {comment|} + N aspiration|Ը,expect| + V enjoy|,content=endorse|ӵ +Ա N human|,#occupation|ְλ,official|,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +־ɳ V ally| + N ship| +۳ N ship|,LandVehicle| +۳Ͷ V tired|ƣ,cause=tour| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N human|,*drive|Ԧ,#ship| + N ship|,mass| + ADJ aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N shape|,round|Բ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,week| + CLAS unit|λ,&frequency|Ƶ +ܱ N publications|鿯,#week| +ܱ N attribute|,length|,&round|Բ +ܱ N location|λ,surrounding|Χ,space|ռ +ܱ ADJ aValue|ֵ,range|,all|ȫ +ܳ N attribute|,length|,&round|Բ +ܳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܶʼ V repeat|ظ +ܶ N time|ʱ,day|,#week| +ܼ V help| +ܿ N publications|鿯,#week| + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ĩ N time|ʱ,day|,#week|,@rest|Ϣ +ĩ N publications|鿯,#week| + N time|ʱ,year| + N time|ʱ,regular| + ADJ aValue|ֵ,frequency|Ƶ,regular| + N attribute|,frequency|Ƶ,regular| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N part|,%AnimalHuman|,body| + N time|ʱ,day|,#week| + N attribute|,age|,&animate| +Χ N location|λ,surrounding|Χ +Χ ADJ location|λ,surrounding|Χ +Χ N location|λ,surrounding|Χ + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V GoRound|Χ + V HaveContest| + V associate| +һ N time|ʱ,day|,#week| + N knowledge|֪ʶ + V tour| + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,posture|,upright| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ת V SelfMove|,commercial| +ת V lack|ȱ + N place|ط,provincial|ʡ +ݳ N human|,#occupation|ְλ,official| +ݼ ADJ aValue|ֵ,location|λ,#provincial|ʡ + ADJ aValue|ֵ,attachment|,#provincial|ʡ + N land|½ +޼ ADJ aValue|ֵ,location|λ,#land|½ +޼ʵ N weapon|,$firing| + N food|ʳƷ +ɮ V lack|ȱ + N image|ͼ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N image|ͼ + N image|ͼ + N part|,%machine| +Ĺ N place|ط,country|,*ally|,military|,undesired|ݬ,#(WWII|ս) +Ĺ N place|ط,country|,undesired|ݬ,#(WWII|ս) + N part|,%AnimalHuman|,arm| +ؽ N part|,%AnimalHuman|,arm| + N food|ʳƷ + N part|,%AnimalHuman|,arm| + N tool|þ,*wipe| + V ExpressAgainst|Ǵ + N text|,*ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V FormChange|α,StateFin=wrinkled| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| +ü V CausePartMove|,PatientPartof=eye| +üͷ V CausePartMove|,PatientPartof=eye| +θ N part|,%AnimalHuman|,viscera| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N time|ʱ + N time|ʱ +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,afternoon|,night| + ADJ aValue|ֵ,behavior|ֹ,sudden| + V change|,manner=sudden| +轵 V BecomeLess|,manner=sudden| + V BecomeMore|,manner=sudden| + V happen|,manner=sudden| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N material|,?tool|þ,#decorate|װ,precious| + N shape| +鱦 N tool|þ,*decorate|װ,precious| +鱦 N human|,#occupation|ְλ,#treasure|䱦,commercial| + N land|½,ProperName|ר,(China|й) + N lights| + N material| +麣 N place|ط,city|,ProperName|ר,(China|й) +齭 N waters|ˮ,linear|,ProperName|ר,(China|й) +齭 N place|ط,ProperName|ר,(China|й) + N tree| + N land|½,ProperName|ר,(China|й) + V calculate| +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N shape| + N part|,%plant|ֲ,body| + N part|,%tree|,body| + N plant|ֲ + V relate|й +ʽ N InstitutePlace|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + N InsectWorm| +˿ N trace| + N tool|þ,#InsectWorm| + N InsectWorm| + ADJ aValue|ֵ,color|ɫ,red| + N character|,surname|,human|,ProperName|ר + N PenInk|ī,*write|д + ADJ aValue|ֵ,color|ɫ,red| +ī N PenInk|ī,liquid|Һ,*write|д + N material|,liquid|Һ,*apply|ͿĨ +ȸ N bird| +ɰ N material| + N livestock| + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N disease| + N food|ʳƷ + N food|ʳƷ +Ƥ N part|,%livestock|,skin|Ƥ +Ȧ N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ +ͷ N food|ʳƷ + N material|,?food|ʳƷ +צ N food|ʳƷ + N human|,agricultural|ũ,*foster|,#livestock| + N livestock| + N beast| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,all|ȫ +ֺϳɲ N army| + ADJ qValue|ֵ,amount|,many| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N human|,wise|,desired| + N human|,royal|,past| + PRON {SecondPerson|,mass|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,kind|,special| +λ PRON {SecondPerson|,mass|} + V kill|ɱ,police| + V chase|׷ + V expel| + ADJ aValue|ֵ,sequence|,regular| + V expel| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence|,regular| +¹ V fight|,politics| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,sequence| +һ ADV aValue|ֵ,sequence| + N tree| + N artifact|˹ + N part|,%tree|,body| + N tool|þ,*decorate|װ +ڳ N InsectWorm| +ˮһ V fail|ʧ + N tree|,mass| + N tool|þ,*recreation| + N tool|þ,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ͳ N part|,%tree|,body| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N beast| +Ҷ N drinks|Ʒ,$addict|Ⱥ +ֽ N paper|ֽ,@write|д + N tree| + N tool|þ,*illuminate| + CLAS unit|λ,&electricity| + N lights| +̨ N tool|þ,@put|,#tool|þ,#illuminate| + V illuminate| + V cook| +ȼݽ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V cook| + N human|,#occupation|ְλ,industrial| + V tilt|б + V look| +Ŀ V PayAttention|ע +Ŀ V look| + V expect| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V entrust|ί + ADJ aValue|ֵ,importance|,important| + V decide| + N humanized|,religion|ڽ + N human|,#fact| + N human|,*entertain|д + N human|,*own| + V manage| + V mean|ָ + V handle| + V compile|༭ + V compile|༭ + N human|,#occupation|ְλ,*compile|༭,#readings|,literature| + N human|,$entertain|д +ϯ N location|λ,@sit|,#entertain|д + N facilities|ʩ,sport| + N software| + V endorse|ӵ + V handle| + V manage| + N human|,*handle| + V cook| + N human|,#occupation|ְλ,*cook| + ADJ aValue|ֵ,importance| + N attribute|,importance|,&event|¼ + V cure|ҽ + ADJ aValue|ֵ,importance|,important| + N music|,important| + N text|,important| +˵ N text|,important| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N attribute|,behavior|ֹ,active|Ը + N part|,%AnimalHuman|,nerve| +Ȩ N attribute|,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը + N community|,$choose|ѡ,*exercise|,*compete| + N community|,*invite|,*compete|,sport| + N human| + N human|,*employ|,commercial| + N human|,family|,male| + N human|,male|,friend|,^GetMarried| + N human|,undesired|ݬ,important|,crime| + N part|,space|ռ,%land|½,head|ͷ + N human|,female|Ů,family| + N organization|֯,important| + N part|,plant|ֲ,body| +ɵ N facilities|ʩ,route|·,important| + N part|,%plant|ֲ,base| + V attack|,military| + N human|,$choose|ѡ,*compete|,sport| + N human|,*buy|,commercial| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N attribute|,correctness|,wrong|,undesired|ݬ,&mental| + N human|,official|,important| + V manage| + V handle|,patient=GetMarried| + N machine|,important| + N weapon|,aircraft|,military| + N part|,%computer| + V handle|,patient=condole|° + N thought|ͷ + N human|,military| + V speak|˵ + V teach|,education| + N human|,*perform|,important|,entertainment| + N human|,important|,desired| + N human|,religion|ڽ + N human|,#occupation|ְλ,*teach| + V exam|,education| + N human|,#exam| + N human|,$entertain|д + N human|,*entertain|д,$entertain|д,mass| +͹ ADJ aValue|ֵ,correctness| + N affairs|,important| + N human|,important|,#military|,#exercise| + N human|,important|,#military|,#exercise| + N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ + N part|,%event|¼,important|,aspect| + N waters|ˮ,linear| +¥ N building| +ı N human|,undesired|ݬ,important|,crime| + N human|,official|,important| +Ȩ N rights|Ȩ,#country| + N human|,*entertain|д + N human|,*own| +˹ N human|,#readings| + N human|,#readings| + N human|,own| + N human|,#occupation|ְλ,official| +ʳ N edible|ʳ +ʹ V incite|ָʹ +˧ N human|,military| + N attribute|,content|,&information|Ϣ + N expression|,*LookFor|Ѱ,#information|Ϣ + N music|,#shows| + N part|,%thing|,important|,body| + N part|,%readings|,#police| +ϯ N human|,#occupation|ְλ,official| +ϯ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,*handle| +ϯ̨ N facilities|ʩ,space|ռ,@manage| +ϯ N part|,%community|,head|ͷ +ϯְλ N attribute|,occupation|ְλ,&human| + N part|,%event|¼,nerve| +Ĺ N human|,desired|,important|,able| +Ĺ N thought|ͷ + V repair|,industrial| + V study|ѧ,education| + N attribute|,SoundQuality|,&music| + N thinking|˼,important| + V RegardAs|,entertainment| + V perform|,entertainment| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N human|,important|,desired| +Ҫְҵ N affairs|,#occupation|ְλ,important| + N plans|滮 + N thought|ͷ + N thinking|˼ + N cause|ԭ,important| + N sound|,music|,important| + N part|,%language| + V control| +ս V endorse|ӵ,content=fight| + V regard|Ϊ + N thought|ͷ +Ž N human| +ֵ N symbol|,#quantity| +ּ N part|,%entity|ʵ,heart| + N attribute|,performance|,&medicine|ҩ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N part|,%machine|,important| +ץ V manage| + ADJ aValue|ֵ,kind|,special| + V compile|༭ + N readings| + ADJ aValue|ֵ,reputation|,glorious|,desired| +¼ V record|¼ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V compile|༭,ContentProduct=publications|鿯 +˵ V compile|༭,ContentProduct=publications|鿯 + V compile|༭ + N publications|鿯 + V compile|༭,ContentProduct=text| + V compile|༭ + N human|,*compile|༭ + V compile|༭ + N publications|鿯 +Ȩ N rights|Ȩ,#compile|༭ + N image|ͼ + N part|,%building|,bone| + N shape| +ʯ N human|,desired|,important|,able| +ͷ N part|,%FlowerGrass| +ͷ N part|,%building|,bone| +ͷ N part|,%building|,head|ͷ + N part|,%building|,bone| + V help| + V cure|ҽ,#GiveBirth|,medical|ҽ +ʿ N human|,#occupation|ְλ,*cure|ҽ,#GiveBirth|,medical|ҽ + V incite|ָʹ + N part|,%language| + V attack|,military| + N chemical|ѧ + N human|,#occupation|ְλ,*teach|,education| + ADJ aValue|ֵ,importance|,secondary| + N human|,#occupation|ְλ,employee|Ա +ʦ N human|,#occupation|ְλ,industrial| + N attribute|,strength|,#help|,&human| +ȼ ADJ aValue|ֵ,ability|,able|,help|,#burn| +Ϊ V joyful|ϲ,cause=help| + N human|,*help| + N tool|þ,*listen|,medical|ҽ + V MoveItUp| +ƻ N part|,%aircraft|,*MoveItUp| + N part|,%aircraft|,*MoveItUp| + V help|,scope=mental| + V MakeHappy|ʹϲ +ѧ V help|,scope=education| +ѧ N fund|ʽ,*help|,scope=education| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ս V help|,scope=attack|,military| +ս V help|,scope=mental| + V help|,scope=mental| +ΪŰ V help|,patient=evil| + N InsectWorm| + V bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ,#disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ +ij N InsectWorm| + N part|,%AnimalHuman|,*bite|ҧ,#disease| + V SetAside| + V SetAside| + V SetAside| + V SetAside| + N quantity|,amount|,&store| + V transport| + V produce|,industrial| + N money| + V create| + N material|,metal|,industrial| + N fact|,produce|,#metal|,industrial| + N human|,#occupation|ְλ,industrial| + N material|,metal|,industrial| + N metal|,?material| + V produce|,industrial| + V build| + V build|,PatientProduct=facilities|ʩ,#waters|ˮ +· V build|,PatientProduct=facilities|ʩ,route|· +ס V finish| +ס V reside|ס +ס N human|,religion|ڽ +ס N location|λ,@reside|ס +ס N location|λ,@reside|ס +ס N fact|,reside|ס +סĸ V improve|,patient=reside|ס +ס N community|,family|,*reside|ס +ס N community|,family|,*reside|ס +סҹ N MakeLiving|ı +ס V KeepSilence|˵ +ס V cease|ͣ +ס V reside|ס +ס޷ N expenditure|,*reside|ס +ס N place|ط,@reside|ס +ס V reside|ס +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +סԺ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺڿҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ V human|,*cure|ҽ,medical|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽʦ N human|,medical|ҽ,*cure|ҽ +סլ N house| +סլ V build|,PatientProduct=house| +סլ N place|ط,@reside|ס,#house| +סլС N place|ط,@reside|ס,#house| +סַ N place|ط,#reside|ס +ס V KeepSilence|˵ +ע V PayAttention|ע +ע V explain|˵ +ע N part|,&text| +ע V record|¼ +ע V spray| +ע N wealth|Ǯ,*gamble|IJ +ע V record|¼ +ע ADJ aValue|ֵ,possibility|,possible| +ע N part|,&text| +ע V explain|˵ +ע V explain|˵ +עĿ V look| +ע V spray| +ע V cure|ҽ +ע N tool|þ,*cure|ҽ,medical|ҽ +ע V explain|˵ +ע V look|,manner=attentive|ϸ +ע N human|,*look| +עˮ V spray|,industrial| +ע V produce|,industrial| +ע V remove| +ע V PayAttention|ע +ע V PayAttention|ע +ף N character|,surname|,human|,ProperName|ר +ף V congratulate|ף +ף V expect| +ף N expression|,@congratulate|ף +ף N expression|,@congratulate|ף +ף V congratulate|ף +ף V congratulate|ף +ף V congratulate|ף,cause=win|ʤ +ף V congratulate|ף +ף V congratulate|ף,cause=festival| +ף V congratulate|ף +ףԸ V expect| +פ V reside|ס,military| +פ V stay|ͣ +פ N place|ط,#organization|֯,@exist| +פ N place|ط,@reside|ס,military| +פ V defend|,military| +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ N army| +פ V put|,patient=army| +פ V stay|ͣ +פ V defend|,military| +פ V reside|ס,military| +פ ADJ aValue|ֵ,property|,reside|ס,#foreign| +פ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +פ V keep|,patient=beautiful| +פ V reside|ס,military| +פ V CeaseSelfMove|ֹ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V catch|׽ס,police| +ץ V manage| +ץ V scratch|ץ +ץ V MakeTrouble| +ץ V catch|׽ס,police| +ץ V scratch|ץ +ץ V endeavour| +ץ V catch|׽ס,police| +ץ V please|ȡ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V lift|,sport| +ץ͹ V include|,manner=force|ǿ +ץ V PlayWith|Ū +ץ V fight| +ץ N method| +ץ V scratch|ץ +ץ V TakePicture| +ץ V quarrel| +ץϹ V embarrassed|Ϊ +ץҩ V buy|,possession=medicine|ҩ +ץס V attract|,Vachieve| +ץס V catch|׽ס,Vachieve| +ץס V catch|׽ס,police|,Vachieve| +ץ׳ V include|,manner=force|ǿ +ץܶ V bear|е,content=duty|,important| +ץζ V gamble|IJ +צ N part|,%animal|,foot| +צ N part|,%animal|,foot| +צ N part|,%tool|þ,foot| +צ N food|ʳƷ +צ ADJ aValue|ֵ,attachment|,ProperName|ר,(Java|צ) +צ N place|ط,ProperName|ר,(Indonesia|ӡ) +צ N language|,#country|,ProperName|ר +צ N human|,crime|,undesired|ݬ +צ N part|,%animal|,foot| +ק V pull| +ק V throw| +ר ADJ aValue|ֵ,kind|,special| +ר N fact|,$investigate|,special| +ר N fact|,$investigate|,special|,#police| +ר N publications|鿯,special| +ר N fact|,dispatch|Dz,special| +ר N fact|,perform|,special| +ר N attribute|,ability|,able|,&human| +ר N LandVehicle|,special| +ר N fact|,tour|,special| +ר N text|,special|,#news| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N fact|,visit|,special| +ר V study|ѧ +ר V handle|,manner=special| +ר N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| +ר ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N aircraft|,special| +ר N publications|鿯,special| +ר N publications|鿯,special| +ר N human|,able|,desired| +ר N human|,able|,desired|,mass| +ר N publications|鿯,special| +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N knowledge|֪ʶ,special| +רѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +רҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N fund|ʽ,special| +ר N part|,publications|鿯,special| +ר N human|,*compile|༭,literature| +ר N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +ר N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +ר N institution| +רƷ N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +רȨ N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +רȨĻ N human|,*obtain|õ,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +רȨ N human|,*grant|,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +ר N LandVehicle|,special| +ר V sell|,commercial| +ר N InstitutePlace|,*sell|,@buy|,commercial| +ר ADJ aValue|ֵ,kind|,special| +רСԱ N human| +ר N place|ط +רȨ V control|,patient=power|,manner=self| +ר N human|,$dispatch|Dz,special| +ר V undertake| +ר V RashlyAct| +ר V establish|,manner=special| +רʹ N human|,$dispatch|Dz,special| +ר V engage|,manner=special| +ר N institution|,politics| +ר ADJ aValue|ֵ,attachment|,special| +ר ADJ aValue|ֵ,kind|,special| +ר N facilities|ʩ,linear|,*transmit|,special| +ר N facilities|ʩ,linear|,special| +ר N facilities|ʩ,route|·,special| +ר ADJ aValue|ֵ,kind|,special| +ר V PayAttention|ע +ר־ V PayAttention|ע +ר V study|ѧ +רҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רҵ N affairs|,education| +רҵ N affairs|,industrial| +רҵ N community|,family|,*engage|,#occupation|ְλ +רҵ ADJ aValue|ֵ,kind|,special| +רҵ N affairs|,education| +רҵԱ N human|,*engage|,#occupation|ְλ +רһ ADJ qValue|ֵ,amount|,single| +רӪ ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,attachment| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +רԱ N institution|,politics| +ר N system|ƶ,fierce| +רְ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רְԱ N human|,*engage|,#occupation|ְλ +רֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N institution|,#country|,politics|,fierce| +ר N system|ƶ,#country|,politics|,fierce| +ר N publications|鿯,special| +רע V PayAttention|ע +ש N material|,?build| +ש N material|,?drinks|Ʒ +ש N InstitutePlace|,*produce|,material|,factory|,industrial| +ש N material|,?build| +ש N material|,#build| +שǽ N part|,%building|,skin|Ƥ +שʯ N material|,?build| +שͷ N material|,?build| +שͷ N part|,%material|,#build| +ש N material|,?build| +שҤ N InstitutePlace|,*produce|,material|,factory|,industrial| +ת V alter|ı +ת V rotate|ת +ת V submit| +ת V entrust|ί +ת N human|,commercial| +ת V alter|ı +ת V change| +ת V disseminate| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=TakeVehicle| +ת V tell| +ת V alter|ı,patient=route|· +ת V alter|ı,entertainment| +ת V undergo|,content=alter|ı,#engage| +ת V rotate|ת +ת V change| +ת V issue|ַ +ת V tell| +ת V give| +ת V alter|ı,patient=route|· +ת V alter|ı +ת V alter|ı +ת V alter|ı +ת V GoBack| +ת N time|ʱ,pros| +ת V MarryTo| +ת V give| +ת V submit| +ת N part|,%facilities|ʩ,route|·,angular| +ת V connect| +ת V lend| +ת V GoThrough| +תó N affairs|,#buy|,#sell|,commercial| +ת V CausePartMove|,PatientPartof=head|ͷ +ת ADJ aValue|ֵ,duration|,TimeShort| +ת¯ N machine|,space|ռ,*produce|,#metal| +ת¼ N record|¼ +תǹ N weapon|,*firing| +ת V sell|,commercial| +ת N SportTool|˶ +ת N fact|,perform|,entertainment| +ת N tool|þ +ת V give| +ת V alter|ı +ת V alter|ı,StateFin=BeNormal|̬ +ת V CausePartMove|,PatientPartof=body| +ת V change|,religion|ڽ +ת V change|,religion|ڽ +ת V sell| +ת V submit| +ת V sell| +ת V explain|˵ +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת V GiveAsGift| +ת V submit| +ת N attribute|,speed|ٶ,&rotate|ת +ת̨ N facilities|ʩ,space|ռ,@perform| +ת V CausePartMove|,PatientPartof=body|,sport| +ת V TurnRound| +תĨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +תĨ ADJ aValue|ֵ,form|״,curved| +תΣΪ V BeRecovered|ԭ +תΪ V alter|ı +ת V change|,politics| +ת V ignorant|֪ +ת V rotate|ת +ת N tool|þ +ת V sell| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=affairs| +תѧ V alter|ı,education| +ת ADJ aValue|ֵ,duration|,TimeShort| +תۼ ADJ aValue|ֵ,duration|,TimeShort| +תҵ V alter|ı,StateIni=military| +ת V TakeAway|ᶯ +ת V alter|ı +ת V change| +ת V change|,medical|ҽ +ת ADJ aValue|ֵ,property|,change|,medical|ҽ +ת N furniture|Ҿ,space|ռ,@sit| +ת N information|Ϣ,#language| +ת V rotate|ת +ת V walk| +תԺ V SelfMove|,LocationIni=InstitutePlace|,medical|ҽ +ת V BeRecovered|ԭ,StateFin=lucky| +ת V transport| +תվ N InstitutePlace|,*transport| +ת V print|ӡˢ +ת V GiveAsGift| +תս V fight|,military| +ת V submit| +ת֧Ʊ N coupon|Ʊ֤ +ת N fact|,change| +ת۵ N time|ʱ,@change|,important| +ת V become|Ϊ,isa=passed|ϸ +ת N part|,%machine| +תת V walk| +ת N part|,%machine| +ת V lend|,commercial| +ת N time|ʱ,@change|,important| +׫ V compile|༭ +׫ V compile|༭,ContentProduct=text| +׫ N human|,*compile|༭,literature| +׫ V compile|༭,ContentProduct=text| +׫д V compile|༭ +׫ V compile|༭ +׬ V earn|׬ +׬Ǯ V earn|׬,possession=wealth|Ǯ +׬ȡ V earn|׬ +׬ͷ N attribute|,effect|Ч,#earn|׬,&event|¼,commercial| +׭ N stationery|ľ +׭ V carve| +׮ CLAS NounUnit|,&fact|,&affairs| +׮ N part|,%building|,bone| +׮׮ CLAS NounUnit|,&fact|,&affairs|,mass| +׮ N part|,%building|,bone| +ׯ N InstitutePlace|,commercial| +ׯ N character|,surname|,human|,ProperName|ר +ׯ N human|,*gamble|IJ +ׯ N place|ط +ׯ N place|ط,village| +ׯ N community|,family|,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,*gamble|IJ +ׯ N crop|ׯ,generic|ͳ +ׯں N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| +ׯ԰ N place|ط +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ N place|ط,village| +װ V RegardAs|,entertainment| +װ N attribute|,attire|װ,&human| +װ N clothing| +װ V decorate|װ +װ V include| +װ V install|װ +װ V load|װ +װ V pretend|װ +װ V MakeUp|ױ +װ V pretend|װ +װ N implement|,generic|ͳ +װ V provide| +װ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +װ ADJ aValue|ֵ,GoodBad|û,good|,desired| +װ V load|װ,LocationFin=LandVehicle| +װ V load|װ,LocationFin=ship| +װ V load|װ,LocationFin=tool|þ +װ V decorate|װ +װ V fasten|˩,#publications|鿯 +װ N part|,%InstitutePlace|,factory|,@fasten|˩,#publications|鿯 +װɵ V pretend|װ,content=foolish| +װ V load|װ,patient=physical| +װ N attribute|,ability|,#electricity|,&facilities|ʩ +װ ADJ aValue|ֵ,form|״ +װױ N army| +װ׳ N weapon|,LandVehicle| +װͳ N weapon|,LandVehicle| +װ V pretend|װ +װ V fill| +װ V fill| +װ V pretend|װ,content=ignorant|֪ +װ V fill| +װ V pretend|װ +װģ V pretend|װ +װ V include| +װ N machine| +װǻ V pretend|װ +װǻ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +װ V install|װ +װ ADJ aValue|ֵ,ability|,able|,decorate|װ +װ V decorate|װ +װ N tool|þ,*decorate|װ +װβ N material|,*decorate|װ +װƷ N tool|þ,*decorate|װ +װ N attribute|,attire|װ,&human| +װ˯ V pretend|װ,content=sleep|˯ +װ V pretend|װ,content=die| +װ V pretend|װ,content=ignorant|֪ +װ V feed|ι,military| +װ V pretend|װ +װ V load|װ,LocationFin=tool|þ +װж V include|,dismount|ж +װж N load|װ,TakeAway|ᶯ +װж N human|,#occupation|ְλ,*load|װ,*TakeAway|ᶯ +װ V decorate|װ +װ V pretend|װ +װ V exist| +װ V transport| +װ V load|װ +װ֡ N attribute|,appearance|,&publications|鿯 +װ N implement|,generic|ͳ +װ V install|װ +װ V pretend|װ +װ N attribute|,appearance|,&artifact|˹ +װ V decorate|װ +װ N attribute|,appearance|,&artifact|˹ +װ V put| +װ V decorate|װ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ױ N tool|þ,*decorate|װ,#female|Ů +ױ V decorate|װ +ױ V MakeUp|ױ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ײ V GoForward|ǰ +ײ V bump|ײ +ײ V meet| +ײ V bump|ײ,patient=LandVehicle|,unfortunate|,undesired|ݬ +ײ V differ|ͬ,scope=thinking|˼ +ײ V bump|ײ +ײ V meet| +ײƭ V deceive|ƭ +ײ N tool|þ,*shut|ر +׳ V MakeBetter|Ż +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׳ V BeWell|׳ +׳ V MakeBetter|Ż +׳ V soothe|ο +׳ N human|,adult|,#military|,past| +׳ N music|,great|ΰ +׳ N human|,employee|Ա +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N fact|,great|ΰ +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +׳ ADJ aValue|ֵ,courage|,brave|,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N time|ʱ,#adult|,#age| +׳ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ʿ N human|,brave|,desired| +׳ N aspiration|Ը,expect|,great|ΰ +׳ V farewell| +׳־ N aspiration|Ը,expect|,great|ΰ +׳־δ V fail|ʧ,scope=succeed|ɹ +׳ N community|,ProperName|ר,(China|й) +״ N attribute|,circumstances|,&entity|ʵ +״ N attribute|,form|״,&physical| +״ N document|,$record|¼ +״ N document|,*accuse|ظ +״ N document|,*prove|֤ +״ V explain|˵ +״ V accuse|ظ +״ N attribute|,circumstances|,&entity|ʵ +״ ADJ aValue|ֵ,GoodBad|û,good|,desired| +״̬ N attribute|,circumstances|,&entity|ʵ +״ N part|,%language| +״Ԫ N human|,*succeed|ɹ,#exam|,past| +״Ԫ N human|,able|,desired| +״ N document|,*accuse|ظ +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ͻ N disease| +׵Ѫ V sorrowful| +׶ N shape|,acute| +׶ N tool|þ,*stab| +׶ N image|ͼ +׶ ADJ aValue|ֵ,form|״ +׶ N tool|þ,*stab| +׷ V LookBack| +׷ V chase|׷ +׷ V investigate| +׷ V seek|ıȡ +׷ V chase|׷,military| +׷ V force|ǿ +׷ V interrogate| +׷ V catch|׽ס,police| +׷ V investigate| +׷ V condole|° +׷ N fact|,condole|° +׷ N fact|,feed|ι,#crop|ׯ,agricultural|ũ +׷ V chase|׷ +׷ V investigate| +׷ V collect| +׷ V collect| +׷ V repent|û +׷Ī V repent|û +׷ V attack|,military| +׷ N army| +׷ V record|¼ +׷ V reward| +׷ V add| +׷Ͷ V add|,patient=fund|ʽ +׷֧ V add|,patient=expenditure| +׷ V destroy|,military| +׷ V collect| +׷ V destroy|,military| +׷ V investigate| +׷ V ShowLove|ʾ +׷ V request|Ҫ +׷ V seek|ıȡ +׷ V admit| +׷ V grant| +׷˼ V LookBack| +׷ V situated| +׷ V accuse|ظ +׷ V follow| +׷ V levy| +׷ V ask| +׷ V LookBack| +׷ N human|,*FondOf|ϲ,#music| +׷ V explain|˵ +׷Ѱ V LookFor|Ѱ +׷ V LookBack| +׷ V grant| +׷ծ V collect|,possession=owe|Ƿ +׷ V chase|׷ +׷ V seek|ıȡ +׷ V follow| +׷ N human|,*follow| +׷ V levy| +׸ V MarryTo| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant| +׸ V speak|˵,manner=redundant| +׸ N human|,family|,male| +׹ V fall| +׹ V sink|³ +׹ N tool|þ,heavy| +׹ V ComeToWorld| +׹ V OutOfOrder| +׹ V fall| +׹ N tool|þ,*decorate|װ +׹ N tool|þ,heavy| +׺ V fasten|˩ +׺ V compile|༭ +׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׻ ADJ persuade|Ȱ˵ +׻׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׼ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ ADJ aValue|ֵ,standard|׼,average| +׼ V agree|ͬ +׼ N attribute|,standard|׼,&entity|ʵ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V plan|ƻ +׼ V prepare|׼ +׼ V exercise|,*prepare|׼ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V fixed|Ѷ +׼ N information|Ϣ,accurate|׼ +׼ N human|,#occupation|ְλ,official|,military| +׼ N affairs|,military| +׼׶ V fixed|Ѷ +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ N attribute|,correctness|,accurate|׼,&information|Ϣ +׼ N attribute|,standard|׼,&entity|ʵ +׼ʱ ADJ aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +׼ξ N human|,#occupation|ְλ,official|,military| +׼ N information|Ϣ,accurate|׼ +׼ N part|,%weapon|,#firing| +׼ V agree|ͬ +׼ V agree|ͬ +׼豣 V agree|ͬ,content=release|ͷ +׼ N attribute|,standard|׼,&entity|ʵ +׽ V catch|׽ס +׽ V hold| +׽ V write|д +׽ V human|,*write|д +׽ V catch|׽ס,patient=gamble|IJ,police| +׽ V catch|׽ס,patient=lascivious| +׽ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +׽Բ V deceive|ƭ +׽Բ V recreation| +׽ V investigate| +׽ V catch|׽ס +׽ V catch|׽ס,police| +׽Ū V tease|ȡ +׽ס V catch|׽ס,Vachieve| +׾ ADJ aValue|ֵ,kind|,firstPerson| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N thought|ͷ +׾ N human|,family|,female|Ů +׾ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N text| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ N character|,surname|,human|,ProperName|ר +׿ N thought|ͷ,profound| +׿ ADJ aValue|ֵ,degree|̶,extreme| +׿ ADJ aValue|ֵ,kind|,special| +׿Ȼ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿гЧ V succeed|ɹ +׿Խ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N furniture|Ҿ,space|ռ,@put| + N tool|þ,*illuminate| + N part|,furniture|Ҿ,head|ͷ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N location|λ,%furniture|Ҿ + N furniture|Ҿ +ΰ N furniture|Ҿ + N furniture|Ҿ,space|ռ,@put| + V carve| +ĥ V MakeBetter|Ż +ĥ V carve| +ĥ V think|˼ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V drink| + V dump| + N edible|ʳ,generic|ͳ + V think|˼ +ü V subtract|,condition=think|˼ + V think|˼ + V think|˼ + V eat| +ľ N bird| + V PutOn|,Vgoingon|չ + V StateChange|̬,StateFin=fire|,industrial| + V apply|ͿĨ + V dispatch|Dz + N location|λ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V sleep|˯ + V suffer| + V touch| + STRU {Vachieve|} +ű V write|д +Ż V flurried| +Ż V unfortunate|,cause=fire|,police| +ż V worried|ż + V endeavour| + V fever| +½ V arrive|,#aircraft| + N location|λ + N location|λ,@ExistAppear| +æ V worried|ż + V FondOf|ϲ + STRU {MaChinese|} + V recreation| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɫ V AlterColor|ɫ +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADV {emphasis|ǿ} + V start|ʼ + V PayAttention|ע + V PayAttention|ע +۵ N location|λ,space|ռ,@begin|ʼ +۵ N part|,%thinking|˼ + V endeavour| + V PayAttention|ע + V express|ʾ,manner=emphasis|ǿ +װ V PutOn| +װ V PutOn|,Vgoingon|չ +װ N clothing|,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + V burn| +Ƽ N thought|ͷ,profound| + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼɼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V damage|,cause=burn| +ʹ V painful|ʹ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + N water|ˮ,blurred| + N community|,disorder|,undesired|ݬ + N time|ʱ,disorder|,undesired|ݬ + N sound|,#language| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,now| + N money|,(Poland|) + V ask| + N document|,#country| +ѯ V ask| +ѯ N expenditure| + N attribute|,ability|,&human| + N attribute|,standard|׼,&human| + N expenditure| + V provide| + V provide|,commercial| +ʱ N fund|ʽ +ʱ N human|,#wealth|Ǯ +ʱ V transport|,patient=fund|ʽ +ʱ N system|ƶ +ʲ N wealth|Ǯ +ʲ N fund|ʽ +ʲ N wealth|Ǯ +ʲ׼ N human|,#wealth|Ǯ +ʷ N human|,#wealth|Ǯ +ʸ N attribute|,standard|׼,&human| +ʸ N attribute|,status|,&human| +ʽ N fund|ʽ +ʽ N quantity|,amount|,&fund|ʽ + N attribute|,standard|׼,&human| + N information|Ϣ + N room|,@read| + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,reputation|,&human|,&organization|֯,commercial| +Ѷ N information|Ϣ +Դ N material|,generic|ͳ + N attribute|,standard|׼,&human| + N attribute|,wisdom|ǻ,&AnimalHuman| + V provide| + N attribute|,appearance|,&physical| + N attribute|,posture|,&AnimalHuman| +ɫ N attribute|,bearing|̬,&female|Ů + N attribute|,posture|,&AnimalHuman| +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,posture|,&AnimalHuman| + V GiveBirth| + V grow|ɳ + V jet| +̲ ADJ aValue|ֵ,ability|,maintain|,desired| +̲ V maintain| +̲Ʒ N edible|ʳ,*maintain| +̲Ʒ N material|,*maintain| +̳ V grow|ɳ + V grow|ɳ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + V moisten|ʪ + V GiveBirth| + V ResultIn| + V MakeTrouble| + V human|,MakeTrouble| +ζ N attribute|,taste|ζ,&edible|ʳ +ѿ V pregnant| + V maintain| + N material|,*maintain| +Ʒ N material|,*maintain| +Ͳ N place|ط,city|,ProperName|ר,(China|й) +ʹ N place|ط,city|,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +β ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V seek|ıȡ + V seek|ıȡ,manner=diligent| + ADJ aValue|ֵ,color|ɫ,purple| +ϲ N food|ʳƷ +϶ N FlowerGrass| +Ϻӳ N part|,%AnimalHuman|,embryo| +Ϻ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ N attribute|,color|ɫ,purple|,&physical| +ϻض N FlowerGrass| +Ͼ N FlowerGrass| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +̴ N wood|ľ + N FlowerGrass| +ͭ N metal| + N lights| + N lights| +ҩˮ N medicine|ҩ +Ӣ N FlowerGrass| + N tree| + N FlowerGrass| +ޱ N FlowerGrass| + N disease| + N beast| + N beast|,young| + N human|,family|,male|,young| +м N bird| + ADJ aValue|ֵ,density|ܶ,dense| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N livestock|,young| + N livestock|,young| + N part|,%plant|ֲ,embryo| + N material|,#crop|ׯ + ADJ aValue|ֵ,age|,young| + N character|,surname|,human|,ProperName|ר + N human| + N human|,family|,male|,young| + N human|,official|,royal| + N money| + N part|,%AnimalHuman|,embryo| + N part|,%plant|ֲ,embryo| + N shape|,small|С,hard|Ӳ +ӳ N character|,surname|,human|,ProperName|ר +ӳ N software| +ӵ N weapon|,$firing| +ӵ N human|,young| +ӵܱ N human|,military| +Ӹ N human|,family|,female|Ů +ӹ˾ N InstitutePlace|,commercial|,branch|֧ +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹѪ N disease| +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹ N bird| +Ӻ N symbol|,#quantity|,#DoSum| +Ӽ N bird| +Ӿ N human|,female|Ů,royal| + N part|,%plant|ֲ,embryo| +ĸ N weapon|,$firing| +ĸ۶ N part|,%clothing|,*fasten|˩ +Ŀ¼ N part|,%readings|,content| +Ů N human|,family|,mass|,young| +ʱ N time|ʱ,hour|ʱ +ʵ N part|,%plant|ֲ,embryo| + N human|,family|,male|,young| + N human|,future| + N human|,future| + V own|,possession=human| +î N cause|ԭ + N part|,%earth|,linear| + N tool|þ,*measure| +ϵͳ N software| +Ŀ N affairs| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N livestock|,young| + N human|,family|,male| +Ҷ N part|,%plant|ֲ,hair|ë +ҹ N time|ʱ,day|,night| + N sound|,#language| + ADJ aValue|ֵ,attachment|,self| + ADV aValue|ֵ,possibility|,possible| + PREP {LocationIni} + PREP {TimeIni} + ADV {comment|} + PRON {self|} +԰ V like|ϧ,target=self| +԰ V release|ͷ,patient=self| +԰ V explain|˵ +԰ V create| +Ա V do|,manner=active|Ը +Ա V disappointed|ʧ +Ա ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +Ա V provide|,target=self| +Բ ADJ aValue|ֵ,content|,opened| +Բ V suicide|ɱ +Բλ V shy| +Բ V check| +Բ V check|,content=self| +Բ ADJ aValue|ֵ,property| +Բ V produce| +Գ V naming|,patient=self| +Գһ ADJ aValue|ֵ,kind|,special| +Գ V restrain|ֹ +Գ V gather|ɼ,manner=BeIndependent|,commercial| +Գʽ V gather|ɼ,possession=fund|ʽ,manner=BeIndependent|,commercial| +Դ N text| +Դ V boast| +Դ PREP {TimeIni} +Դ PREP {TimeIni} +Դ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ե V satisfied| +Ե V satisfied| +Զ ADJ aValue|ֵ,ability|,able|,function| +Զ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Զ V ize|̬,ability|,PatientAttribute=able|,#function| +Զ N institution|,#knowledge|֪ʶ +Զ N control| +Է ADJ aValue|ֵ,behavior|ֹ,active|Ը +Է N attribute|,property|,active|Ը,&event|¼ +Է V pay|,possession=expenditure|,manner=self| +Է V RegardAs|,patient=self| +Ը ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V bear|е +Ը N human|,arrogant|,undesired|ݬ +Ըӯ V bear|е +ԸԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V willing|Ը +Ը PRON {self|} +Ը V provide| +Ը V surplus|ʣ +Ը V BeIndependent| +Ըũ N human|,#occupation|ְλ,agricultural|ũ +Թ V admit| +Թ N place|ط,city|,ProperName|ר,(China|й) +Թ ADV aValue|ֵ,duration|,TimeLong| +Թ ADV aValue|ֵ,duration|,TimeLong| +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| +Ժ N experience|,glorious| +Ի V destroy|,patient=self| +Լ ADJ aValue|ֵ,kind| +Լ PRON {self|} +Լ N human|,friend| +Լ PRON {self|} +Լ V recommend|Ƽ,content=self| +Խ V create| +Ծ V suicide|ɱ +Ծ V clean|ʹ,patient=self| +Ծ V rescue|,patient=self| +Ծ V ExpressAgainst|Ǵ,target=self| +Ծ V RegardAs|,patient=self| +ԾĹ V RashlyAct| +ԾĹ N damage|,patient=self| +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ծ V perception|֪ +Ծ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ԾԸ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ N fact|,self|,decide| +ԾȨ N rights|Ȩ,*decide| +Կ V control| +Կ V boast|,target=self| + ADJ aValue|ֵ,source|Դ,original|ԭ + N tool|þ,*lighting|ȼ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ˮ N water|ˮ +ˮ N PenInk|ī,*write|д + V TakeCare|,patient=self| + V provide|,target=self| + V mobilize|,patient=self| + V BeIndependent| + V BeIndependent| + V BeIndependent| + V SetAside| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + V RashlyAct| + V flow| + V restrain|ֹ,patient=self| + V satisfied| + V mobilize|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V satisfied| + N tool|þ,*tell|,#time|ʱ + V naming|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N human|,arrogant|,undesired|ݬ + V disheartened| + V deceive|ƭ +Dz V tease|ȡ,target=self| +ǿ V improve|,patient=self| +ǿϢ V endeavour|,content=improve|,#self| +Լ V IllTreat|,target=self| +ȡ V perish|,cause=RashlyAct| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ȼ N natural|Ȼ +Ȼ ADV {comment|} +Ȼ N place|ط,#natural|Ȼ,$protect| +Ȼ N InstitutePlace|,@display|չʾ,#natural|Ȼ +Ȼ N place|ط,village| +Ȼ N knowledge|֪ʶ,#earth| +ȻȻ ADV aValue|ֵ,behavior|ֹ,active|Ը +ȻȻ ADJ {comment|} +Ȼ N regulation| +Ȼ N attribute|,environment|,&entity|ʵ +Ȼ N natural|Ȼ +Ȼѧ N knowledge|֪ʶ,#natural|Ȼ +Ȼ N human| +Ȼ V die| +ȻԴ N material|,#natural|Ȼ,generic|ͳ +ȼ V burn| + V agree|ͬ + ADJ aValue|ֵ,effect|Ч,superior|,desired| +ɱ V suicide|ɱ +ɱ ADJ aValue|ֵ,property|,suicide|ɱ +϶ ADV aValue|ֵ,property| + PRON {self|} + V ExistAppear| +ʡ V check|,content=self| +ʳ V unfortunate| +ʳ V BeIndependent| +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting| + ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V admit|,content=crime|,#police| + V betray| +ױ V betray| + V explain|˵ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V accuse|ظ,police| +ֿ V ResultIn|,result=damage| +Ͷ V ResultIn|,result=damage| +ο V soothe|ο,target=self| + V defend| + N army| + V ask|,target=self| + PRON {self|} +ұ V ShowOff|ҫ,content=self| +Ҵ V boast|,content=self| +ҽ V cultivate|,patient=self| +˽ V suicide|ɱ + V estimate|,content=self| + V MakeBetter|Ż,patient=self| + V abandon|,possession=self| + V like|ϧ,target=self| + V cultivate|,patient=self| +ϰ V study|ѧ,education| +¶ ADV aValue|ֵ,property| +ɱ V kill|ɱ,patient=EachOther|໥ +ྪ V frighten|Ż,target=EachOther|໥ +ì V FitNot|,contrast=EachOther|໥ +С ADJ aValue|ֵ,time|ʱ,#young| + V believe|,target=self| + N emotion|,believe|,#self| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,single| +г N LandVehicle| +г N facilities|ʩ,@put|,#LandVehicle| +г N part|,%LandVehicle|,body| +г N facilities|ʩ,@put|,#LandVehicle| + V RashlyAct| + V study|ѧ,education| +ѡ ADJ aValue|ֵ,kind|,free| +ѧ V study|ѧ,manner=self| +ѧ V teach|,target=self| +ѧ N human|,*study|ѧ,manner=self| + V speak|˵,target=self| + N human|,*speak|˵ + V SelfMove| +Ϊ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ӫ V manage|,manner=self|,commercial| + ADJ aValue|ֵ,property|,$use|,#self| + ADJ aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,circumstances|,free|,desired| +ɶ N attribute|,performance|,free| +ɷ V indulge| +ɸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ɻ N attribute|,property|,free| +ɻ V ize|̬,PatientAttribute=free| + N human|,free| + N fact|,sport| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,behavior|ֹ,free| + N attribute|,behavior|ֹ,free| + N human| + ADJ aValue|ֵ,circumstances|,free|,desired| + V own|,manner=self| + ADJ aValue|ֵ,time|ʱ,#young| + V recreation|,partner=self| + V recreation|,partner=self| +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը V aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ը V willing|Ը +Թ԰ V blame|Թ + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V ExpressAgainst|Ǵ,target=self| + V suffer| +֪֮ N attribute|,ability|,know|֪,#self| + V control|,patient=self| + V produce|,manner=self| + V restrain|ֹ,patient=self| + ADJ aValue|ֵ,attachment|,self| + N place|ط,manage|,#self|,politics| +Ȩ N attribute|,power|,decide|,#self|,&organization|֯,politics| + N place|ط,manage|,#self|,politics| + N place|ط,manage|,#self|,politics| + V like|ϧ,target=self| + V decide|,manner=self| +Ӫ V manage|,manner=self|,commercial| +Ȩ N attribute|,power|,decide|,#self|,&human|,&organization|֯ + V TakeCare|,patient=self| + V help|,patient=self| +ת V rotate|ת + V satisfied| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V like|ϧ,target=self| + N emotion|,like|ϧ,#self| + V decide|,manner=self| + V suffer| + V suicide|ɱ +ڼ V boast|,content=self| + V suicide|ɱ + V suicide|ɱ + V soak| + N trace|,dirty| + N attribute|,kind|,&character| + N attribute|,name|,&human| + N attribute|,style|,&character| + N bill|Ʊ + N character| + N sound|,#language| +ֳ N attribute|,length|,&character| +ִ V handle|,patient=character| +ֵ N publications|鿯,#expression| +ַ N character|,mass| +ַ N attribute|,kind|,&information|Ϣ +ֺ N InstitutePlace|,*sell|,@buy|,commercial| +ֺ N attribute|,name|,&InstitutePlace| +ֺ N attribute|,size|ߴ,&character| +ֻ N artifact|˹,#image|ͼ,entertainment| +ּ N trace|,#character| +ֽ N unit|λ,&information|Ϣ,computer| +־ N bill|Ʊ,#wealth|Ǯ +־ N expression| +ֿ N software|,@store|,character| +м ADJ aValue|ֵ,content|,&text| + ADJ aValue|ֵ,content|,&text| +ģ N tool|þ,*print|ӡˢ +ĸ N symbol| +ĸ N symbol|,mass| +Ļ N text|,#shows| + N quantity|,amount|,&character| + N attribute|,pattern|ʽ,&character| + N attribute|,style|,&character| + N letter|ż + N attribute|,pattern|ʽ,&character| + N expression| + N attribute|,standard|׼,&character| + N expression| + N sound|,#language| + V choose|ѡ,content=expression| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N tree| + N beast| + N tree| + N trace|,#SelfMove|,#CauseToMove| + N trace|,#SelfMove|,#CauseToMove|,#foot| +ټ N trace|,#SelfMove|,#CauseToMove| +Ӱ N trace|,#SelfMove|,#CauseToMove| + N attribute|,clan|,&human| + N character|,surname|,human|,ProperName|ר + N human|,able|,desired| + N human|,past| + N part|,%community| + N purpose|Ŀ +ڷ N system|ƶ +ڽ N human|,able|,desired| +ڽ N community|,religion|ڽ +ڽ̽ N regulation|,religion|ڽ +ڽ̽ N community|,religion|ڽ +ڽɱ N community|,religion|ڽ +ڽ N community|,religion|ڽ +ڽ N emotion|,believe|,religion|ڽ +ڽʽ N fact|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N thinking|˼,biased|ƫ,undesired|ݬ + N human| + N human| +ʦ N human|,able|,desired| + V respect| + N character|,surname|,human|,ProperName|ר +ּ N purpose|Ŀ + N community| + N facilities|ʩ,space|ռ,@reside|ס + V AmountTo|ܼ +۹ V investigate| +ۺ ADJ aValue|ֵ,range|,all|ȫ +ۺ V include| +ۺϲ֢ N disease| +ۺϴѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ۺ V use|,all|ȫ +ۺ N human|,*include| +ۺ֢ N disease| +ۼ V AmountTo|ܼ + V explain|˵ + ADV {comment|} + V explain|˵ + N shows| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,main| + ADV {comment|} +ܱ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܱ༭ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܲ N part|,%army|,*order| +ܲ N human|,#occupation|ְλ,official|,commercial| +ܲ N human|,#occupation|ְλ,official|,politics| +ܲ N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N human|,#occupation|ְλ,official|,military| +ܲ N quantity|,amount|,all|ȫ,&crop|ׯ,&artifact|˹ +ֵܲ N attribute|,value|ֵ,all|ȫ,&produce|,industrial| +ܳ N attribute|,length|,all|ȫ,&physical| +ܳ N human|,#occupation|ְλ,official|,military| +ܳ N InstitutePlace|,@produce|,factory|,industrial|,main| +ܳ N attribute|,name|,generic|ͳ,&entity|ʵ +ܳ V produce|,industrial| +ܴ N quantity|,amount|,#computer|,&handle| +ܴ N human|,*help| +ܵ AUX {modality|} +ܵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ N InstitutePlace|,main|,commercial| +ܶԱ V mobilize| +ܶ N human|,#occupation|ְλ,official|,country| +ܶ N army| +ܶ N quantity|,amount|,&physical| +֮ܶ CONJ {comment|} +ܹʦ N human|,#occupation|ְλ,industrial| +ܹ N community|,#employee|Ա,main| +ܹ V attack|,military| +ܹ˾ N InstitutePlace|,main|,commercial| +ܹ V AmountTo|ܼ +ܺ ADJ qValue|ֵ,amount|,all|ȫ +ܺ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܺڲ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܻ V ComeTogether| +ܻ N tool|þ,*control|,#communicate| +ܼ V AmountTo|ܼ +ܼ N attribute|,price|۸,all|ȫ,commercial| +ܼ N human|,#occupation|ְλ,*check|,official| +ܽ N time|ʱ,#age|,young| +ܽ V explain|˵ +ܾ N human|,#occupation|ְλ,official|,commercial| +ܾ N institution|,main| + V explain|˵ + V bear|е + N human|,#occupation|ְλ,official|,#country| + N part|,%text| + N estimate| +˵ ADV {comment|} +ʦ N human|,#occupation|ְλ,industrial| + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,#occupation|ְλ,official|,country| + N institution|,main| + N quantity|,amount|,&entity|ʵ +˾ N human|,#occupation|ְλ,official|,military| + ADV aValue|ֵ,time|ʱ,ending|ĩ + ADV {comment|} + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + V plan|ƻ +ͳ N human|,#occupation|ְλ,official|,country| +ͳ N house|,institution|,#politics| +ͳ N human|,friend| +ͳ N system|ƶ,politics| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N part|,%computer| + N InstitutePlace|,main|,commercial| + N regulation|,important| + N account|,@record|¼,#wealth|Ǯ + N institution|,politics|,ProperName|ר,military|,(China|й) +β N institution|,politics|,ProperName|ר,military|,(China|й) +֮ CONJ {comment|} +ֵ N quantity|,amount|,&entity|ʵ +ָ N human|,#occupation|ְλ,official| +ָ N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,direction|,straight|ֱ + V indulge| + V jump| + V release|ͷ + CONJ {concession|ò} +ݲ V jump| +ݲ V walk| +ݶ N part|,%inanimate|,surfacial| +ݶ N army| +ݶ N shape|,linear| +ݸ N part|,%AnimalHuman|,viscera| +ݹ V look| +ݹ V cross|Խ +ݺ ADJ aValue|ֵ,posture| +ݺ۳ V SelfMove| +ݺύ V BeAcross|ཻ +ݻ V lighting|ȼ,crime| +ݾ V addict|Ⱥ,patient=drinks|Ʒ + V look| + V talk|̸,manner=free| +Ŀ V look| + V satisfied| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V indulge| + V jump| + N attribute|,depth|,&physical|,#cubic| +ʹ CONJ {concession|ò} +̸ V speak|˵ + ADJ aValue|ֵ,direction|,straight|ֱ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,flighty|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V SelfMoveInManner|ʽ + V function| + V leak|© + V leave|뿪 + V use| + V visit| + V walk| +߱ V unfortunate| +߱ V roam| +߲ V err|,sport| +ߴ崮 V roam| +ߴ崮կ V roam| +ߵ N facilities|ʩ,route|· +ߵ V walk| +ߵ V decline|˥ +ߵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +߶ V associate| +߶ V walk| +߶ V study|ѧ,education| +߶ N human|,*study|ѧ,education| +߷ V visit| +߷ V exposure|¶ +߸˿ N human|,*perform|,entertainment| +߹ N human|,undesired|ݬ +߹ V slack|͵ +ߺ V WellKnown| +ߺ V lucky| +ߺ V associate|,manner=undesired|ݬ +߻ V boast| +߻ V err|,scope=electricity| +߻ V err|,scope=firing| +߽ V MakeLiving|ı,means=perform| +ִ߽ V roam| +߽ V GoInto| +߽ V approach|ӽ +߿ V leave|뿪 + N part|,%building|,nerve| +© V evade|ر,crime| +© V exposure|¶ +· V leave|뿪 +· V walk| + V drive|Ԧ,patient=livestock| + N tool|þ,*illuminate| +ۻ V look|,manner=careless| + V undertake| +ϴ V roam| + V associate|,manner=undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V visit|,target=human| + V leave|뿪 + V GoInto| +ɫ V AppearanceChange|۱ + V use| +ʧ V disappear|ʧ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N beast|,generic|ͳ +˽ V transport|,manner=secret|,crime| +˽ N human|,*transport|,crime| +˽ V artifact|˹,$transport|,secret|,crime| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +Ͷ· V BeUnable| +· V err| +ζ V AppearanceChange|۱,scope=taste|ζ,StateFin=improper|,undesired|ݬ +· V decline|˥ + V SelfMove| + N attribute|,direction|,&physical| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ +ʽ V slack|͵ +Ѩ V undertake|,content=other|,entertainment| + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ + V differ|ͬ + V lucky| + V wait|ȴ + V walk| + N human|,undesired|ݬ + V fulfil|ʵ + V recreation|,entertainment| + V submit| + V win|ʤ +࿭ V win|ʤ + V perform|,content=music| + N music| +Ч V succeed|ɹ + V beat| + V break|۶ + V borrow|,commercial| + N document|,#borrow|,#lend| + N expenditure|,*borrow| + V lend|,commercial| + N human|,lend| + V lend|,commercial| + N expenditure|,*borrow| + N expenditure|,*borrow| + N place|ط,$occupy|ռ + V borrow|,commercial| + V lend|,commercial| + N human|,*lend| + N expenditure|,*borrow| + N human|,*borrow| + V borrow|,commercial| + V lend|,commercial| + N attribute|,duration|,&lend|,&borrow| + N human|,*borrow|,house| + V borrow|,commercial| +Լ N document|,*ExpressAgreement|ʾͬ,#lend| + ADV aValue|ֵ,degree|̶,more| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,leg| + N part|,%inanimate|,leg| + ADJ qValue|ֵ,amount|,sufficient| +㲿 N part|,%AnimalHuman|,leg| + N quantity|,amount|,accurate|׼,&physical| + N part|,%AnimalHuman|,foot| +㹻 ADJ qValue|ֵ,amount|,sufficient| +㼣 N trace|,#SelfMove|,#CauseToMove| +㼣 N trace|,#SelfMove|,#CauseToMove|,#foot| + V mean|ָ + N metal|,?material|,pure| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,space|ռ,@exercise|,@compete|,sport| + N community|,*exercise|,*compete|,sport| +Ȧ N community|,sport| + N fact|,compete|,sport| +ɫ ADJ aValue|ֵ,content|,pure|,desired| +̳ N community|,sport| + ADV aValue|ֵ,degree|̶,more| + N metal|,?material|,pure| + ADJ aValue|ֵ,physique|,ripe|,desired| +Ƕı ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADV aValue|ֵ,degree|̶,more| + V die| + V end|ս + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| +ҵ V finish|,scope=study|ѧ,education| + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| + N attribute|,clan|,&human| + N attribute|,kind|,&human| + N entity|ʵ +峤 N human|,official| + N human| + N character|,surname|,human|,ProperName|ר + N human|,intimate|,male| + N human|,past| +汲 N human|,past| + N wealth|Ǯ +洫 V PassOn| +洫 ADJ aValue|ֵ,property|,$PassOn| +洫ط N document|,medical|ҽ,#medicine|ҩ + N facilities|ʩ,space|ռ,@bury|,#die| +游 N human|,family|,male| +游ĸ N human|,family| + N place|ط,country| +漮 N place|ط +³ N language|,#country|,ProperName|ר +ĸ N human|,family|,male| +ĸ N material|,?tool|þ,#decorate|װ,precious| + N human|,past| +ʦ N human|,*establish| +ʦү N human|,*establish| + N human|,family| + N human|,family| + N human|,past| +ҵ N wealth|Ǯ + N human|,past| +汲 ADJ aValue|ֵ,duration|,TimeLong| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,property|,ExpressAgainst|Ǵ + V obstruct|ֹ +谭 V obstruct|ֹ +赲 V obstruct|ֹ + V obstruct|ֹ + V obstruct|ֹ + V separate| + V attack|,military| + V obstruct|ֹ,military| +ս N fact|,obstruct|ֹ,military| + V obstruct|ֹ +迹 V obstruct|ֹ,#electricity| + V obstruct|ֹ + N attribute|,strength|,obstruct|ֹ,&thing| + V obstruct|ֹ + V BlockUp| +Ԯ V obstruct|ֹ,content=rescue|,military| +ֹ V obstruct|ֹ + V obstruct|ֹ + CLAS NounUnit|,&inanimate| + V establish| + N part|,%organization|֯ +鳤 N human|,official| + V establish| + V establish|,PatientProduct=community|,sport| + N part|,%entity|ʵ,bone| + V call|ٻ,ResultEvent=compile|༭ + V establish|,patient=organization|֯,politics| + ADJ aValue|ֵ,property|,$merge|ϲ + N entity|ʵ,$merge|ϲ + V establish| +ʽ ADJ aValue|ֵ,property|,$merge|ϲ + N tool|þ,*listen|,#music| + N part|,implement| +齨 V establish| + V establish|,PatientProduct=community|,sport| +ί N part|,%organization|֯,*handle| +Ա N human|,#organization|֯ +֯ V establish| +֯ N organization|֯ +֯ N part|,%animate|,bone| +֯ N part|,%entity|ʵ,bone| +֯ N chemical|ѧ +֯ N part|,%community| +֯ʵ N attribute|,strength|,&organization|֯ +֯ N human|,*establish| +װ V merge|ϲ + V GoInto| + N material|,?tool|þ,#decorate|װ,precious| + V research|о + V stab| + N tool|þ,*stab| + V GoOut|ȥ + V stab| +괲 N machine|,*stab| + V GoThrough| + N machine|,*dig|ھ + N tool|þ,#decorate|װ,precious| + V GoInto| +꾮 V stab|,industrial| +꾮 N community|,*stab|,industrial| + V use|,patient=pros| +ı V seek|ıȡ +ţǼ V research|о +ʯ N material|,?tool|þ,#decorate|װ,precious| +̽ V investigate|,industrial| +ͷ N part|,%machine|,head|ͷ,*stab| +ij N InsectWorm| + V research|о +Ӫ V seek|ıȡ + V compile|༭ + N part|,%human|,hair|ë + V compile|༭ + N part|,%AnimalHuman|,mouth| + N shape| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + V FondOf|ϲ,target=edible|ʳ +촽 N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ + N location|λ,%mouth| +Ƥ N attribute|,ability|,&human|,#speak|˵ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V FondOf|ϲ + V dizzy|,cause=addict|Ⱥ + ADV aValue|ֵ,degree|̶,most| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Լ N symbol|,#quantity|,#DoSum| +޶ ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,nonextensive| +ͼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ N fact|,discuss|,HighRank|ߵ +޼ N attribute|,price|۸,expensive|,&artifact|˹,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +ͨ N document|,*tell|,#fight| + ADJ aValue|ֵ,GoodBad|û,bad|,most|,undesired|ݬ +ݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ݹ N fact|,WellTreat|ƴ,#commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ӽ ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near|,most| + N aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,newness|¾,new|,desired| + N aValue|ֵ,time|ʱ,near| + ADJ aValue|ֵ,time|ʱ,near| + N aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +϶ ADJ aValue|ֵ,direction|,south| +ڲ ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,range|,nonextensive| +Ϊ ADV aValue|ֵ,degree|̶,extreme| +С ADJ aValue|ֵ,size|ߴ,small|С +С N symbol|,#quantity|,#DoSum| +С޶ ADJ aValue|ֵ,range|,nonextensive| + ADJ aValue|ֵ,newness|¾,new| + ADJ aValue|ֵ,time|ʱ,now| +ȿǵ N attribute|,sequence|,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,distance|,far|Զ,most| + N aValue|ֵ,time|ʱ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N fact|,crime|,undesired|ݬ + N result|,#unfortunate|,undesired|ݬ +ﰸ N fact|,#police| +ﲻ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ﷸ N human|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N result|,crime|,undesired|ݬ + N result|,undesired|ݬ + N human|,crime|,undesired|ݬ + N human|,crime| + N fact|,crime|,$accuse|ظ + N result|,crime|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ + N fact|,crime|,undesired|ݬ + N duty|,#crime| +֤ N information|Ϣ,#crime| +״ N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V respect| + N human|,family|,aged| + N attribute|,name|,$respect|,&human| + V respect| + V salute|¾ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,property|,respect| + V respect| +ϰ V respect|,target=human| +ʦ V respect|,target=human| +ʦؽ V respect|,target=human| + N attribute|,behavior|ֹ,stately|ׯ,&human| + V PayAttention|ע + V respect| + V obey|ѭ + V obey|ѭ +ط V obey|ѭ,content=regulation| + V obey|ѭ,content=order| + V obey|ѭ + V obey|ѭ +ѭ V obey|ѭ + N place|ط,city|,ProperName|ר,(China|й) + V obey|ѭ + N time|ʱ,past| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day|,night| +ҹ N time|ʱ,past|,day|,night| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N character|,surname|,human|,ProperName|ר + N community| + N location|λ + N location|λ +߷ N human|,*exercise|,(football|) + N location|λ + N human|,#exercise| + V look| + N location|λ,surrounding|Χ + N human|,*reside|ס,near| + N weapon|,*firing| +ǹ N weapon|,*firing| + N location|λ + N human|,politics| +Ʋ N human| +Ǩ V degrade| + N character|,surname|,human|,ProperName|ר +Ϸ N location|λ +Ͻ N location|λ + N location|λ + N part| + N location|λ +̻ V protect| +· N location|λ +½ N location|λ + N location|λ + V control| + N human|,*TakeCare| + N location|λ + ADV qValue|ֵ,amount|,almost| +ҿ V attack| + N human|,friend| +̻ V protect| +Ϊ V embarrassed|Ϊ +֤ N information|Ϣ,*prove|֤ +֧ V BeUnable|,content=handle| +֧ V BeUnable|,content=pay| +ת V TurnRound| +ת V TurnRound| + V help| + V eat| + N material|,?edible|ʳ +֤ N information|Ϣ,*prove|֤ + N tree| +˿ N material|,?clothing| + V RegardAs| + V be| + V compile|༭ + V cook| + V create| + V engage| +B V fact|,diagnose|,medical|ҽ + V mating| + V dream| + V follow| + V BeUnable|,content=decide| + V fulfil|ʵ +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + V bear|е + N method| + V cook|,PatientProduct=edible|ʳ + N attribute|,performance|,#produce|,&artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V engage|,content=affairs| + V undertake|,content=official|,politics| + V disseminate|,commercial| +µ N human|,do|,desired| + V engage|,content=affairs| + V become|Ϊ + V engage|,content=affairs|,religion|ڽ + V engage|,content=fact|,religion|ڽ + V congratulate|ף,cause=festival| +ý V mediate|,ResultEvent=GetMarried| + V dream| + V associate| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V ActGeneral| + V MakeSound| + V congratulate|ף,cause=festival|,#ComeToWorld| + V engage|,content=affairs|,commercial| + V engage|,content=affairs| +ֽ V deceive|ƭ + V cure|ҽ,means=split|ƿ,#part| + V undergo|,content=cure|ҽ,#split|ƿ,#part|,medical|ҽ + V congratulate|ף,cause=festival|,#ComeToWorld| +ͷ V MakeUp|ױ,scope=hair|ë,#female|Ů + V MakeTrouble| + V compile|༭,ContentProduct=text| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| +ѧ V engage|,content=research|о +ѧ V research|о,content=knowledge|֪ʶ + V ShowOff|ҫ +һײһ V slack|͵ + V GuiltilyConscious| + V decide| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V RegardAs| + V compile|༭ + V do| + V happen| + V pretend|װ + N text| + V do|,content=crime| + V cease|ͣ + V follow| + V guarantee|֤ + V deceive|ƭ +Ϲ N look| + V farewell| + V help| + V do| +ŵԵ N human|,*MakeAppointment|Լ,#bear|е + V compile|༭,ContentProduct=text|,#music|,entertainment| + V oppose| + V do|,content=evil| + V do|,content=evil| + N method| +Ա V suffer|,content=restrain|ֹ + N InstitutePlace|,@produce|,factory|,industrial| + V end|ս + N attribute|,behavior|ֹ,&human| + V MakeTrouble| + V obstruct|ֹ + V die| + V MakeTrouble| + V ShowEmotion|ʾ + V draw|,ContentProduct=image|ͼ + N human|,#occupation|ְλ,literature| +Э N community|,literature| + V deceive|ƭ + V pretend|װ + V estimate|,commercial| +鷸 V do|,content=crime| +Ը V suffer|,content=restrain|ֹ + V damage| + V lavish|˷ + V reside|ס + V perform|,content=music| + V tease|ȡ +׼ V prepare|׼ + N material|,?edible|ʳ + V MakeTrouble| + V embarrassed|Ϊ +ɢ V flee| + V do|,content=evil| +Ū V IllTreat| +Ż V ill|̬,#vomit|³ + N attribute|,behavior|ֹ,&human| + V follow| +Ʒ N readings|,literature|,entertainment| + V compile|༭,ContentProduct=music|,entertainment| + N human|,#occupation|ְλ,*compile|༭,#music| + N human|,#occupation|ְλ,*compile|༭,#music|,entertainment| + V ActGeneral| +ɫ V angry| +ʫ V compile|༭,ContentProduct=text| + V fit|ʺ + V suicide|ɱ + V MakeTrouble| +ʹ V painful|ʹ +ͼ V draw|,ContentProduct=image|ͼ +Ϊ V RegardAs| +Ϊ V conduct|ʵʩ +Ϊ V fulfil|ʵ +ΪDz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +α V forge|α +α֤ V prove|֤,content=information|Ϣ,fake|α,#police| +α֤ N human|,*forge|α,undesired|ݬ,#police| + V compile|༭,ContentProduct=text| + V MakeTrouble| + V compile|༭,ContentProduct=text| + N crop|ׯ,generic|ͳ +Ϣ V engage|,rest|Ϣ + V MakeSound| +Э N community|,literature| +ѧ V research|о,content=knowledge|֪ʶ +ҵ N fact| +ҵ N fact|,#education| + N attribute|,effect|Ч,&entity|ʵ,&act|ж + N fact|,function| + V influence|Ӱ + N purpose|Ŀ +ս ADJ aValue|ֵ,property|,fight| +ս V fight|,military| + N human|,*compile|༭,literature| +֤ V prove|֤ + V GoBackward| + V TakeVehicle| + V facing| + V put| + V sink|³ + V sit| + V obey|ѭ,content=time|ʱ + N image|ͼ + N attribute|,sequence|,&sit| + V wait|ȴ + V wait|ȴ + N tool|þ,@sit| + V sit| + N part|,%AnimalHuman|,nerve| +ʹ N disease| + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=detain|ס,cause=crime|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N tool|þ,@sit|,generic|ͳ + V suffer|,content=restrain|ֹ + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=IllTreat| + V uneasy| + V situated| + N livestock|,@sit| +ɽ N bird| +ɽۻ V refuse| + N human|,#occupation|ְλ,commercial| + V sit| +ʧ V lose|ʧȥ,possession=time|ʱ + V refuse| + V obtain|õ +̽ N human|,military|,*scout| +λ N location|λ,@sit| +Բ V uneasy| + V sit| + V obtain|õ +ҩ N medicine|ҩ +Դ V wait|ȴ,content=die| + V labour|ٲ + V manage| + N attribute|,posture|,#sit|,&human| + V labour|ٲ + N celestial| + N location|λ + N part|,%artifact|˹,base| + N part|,%aircraft| + N part|,%weapon| + N attribute|,sequence|,&sit| + N tool|þ,@sit| + N attribute|,number|,&location|λ,#sit| + N aircraft| + V situated| +ϱ N human|,$WellTreat|ƴ +Ͽ N human|,$WellTreat|ƴ +̸ V discuss| +̸ N fact|,discuss| +λ N location|λ,@sit| +ϯ EXPR aValue|ֵ,fullness|,full| +ϯ N location|λ,@sit| + N furniture|Ҿ,@sit| + N expression|,$obey|ѭ + N tool|þ,*tell|,#time|ʱ + N part|,%LandVehicle| + N part|,%artifact|˹,base| +أ ADJ aValue|ֵ,height|߶,tall| +أ V stand|վ +ؤ N human|,poor|,*beg|,undesired|ݬ +إ NUM qValue|ֵ,amount|,cardinal|,mass| +ئ NUM qValue|ֵ,amount|,cardinal|,mass| +ا ADJ aValue|ֵ,quality|,great|ΰ,desired| +ب ADJ aValue|ֵ,duration|,TimeLong| +ة N human|,*help|,#official|,past|,(China|й) +ة N human|,#occupation|ְλ,official|,past|,(China|й) +ث ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ث ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ث N human|,timid|,undesired|ݬ +ج ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ج N information|Ϣ,#die| +ج N thought|ͷ,#dream|,undesired|ݬ +ذ N weapon| +ز V die| +ز V die| +ز V die| +ط N human|,future| +ع V GiveBirth| +ع N character|,surname|,human|,ProperName|ר +ع V foster| +غ N part|,%AnimalHuman|,viscera|,#mating| +غ N part|,%AnimalHuman|,viscera|,#mating| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADV aValue|ֵ,frequency|Ƶ,again| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؾ N tool|þ,cubic|,@put| +ؿ N character|,surname|,human|,ProperName|ר +ؿб V look|,manner=slanted| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,surname|,human|,ProperName|ר + V put| +Ȼн ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V dizzy|,medical|ҽ + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {it|} + N human|,male|,employee|Ա,past| + N human|,undesired|ݬ +ɱ V fight| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ʒ N artifact|˹,fake|α,generic|ͳ + N tool|þ,cubic|,@put| + V lack|ȱ +ѷ V lack|ȱ + N tool|þ,$sign|д,*decorate|װ + N tool|þ,cubic|,@put| +Ҷ N tool|þ,$sign|д,*decorate|װ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,refined| + N symbol|,*guess|² + V break|۶ + V cut| + V dig|ھ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V cut| + N character|,(China|й) + V dig|ھ +ⲹ ADJ WorthNot|ֵ +ⲹ V WorthNot|ֵ + N character|,surname|,human|,ProperName|ר +⺷ ADJ aValue|ֵ,behavior|ֹ,fierce| +⺷ ADJ aValue|ֵ,courage|,brave|,desired| + V steal|͵ + N human|,steal|͵ + V split|ƿ +忪 V split|ƿ + V punish| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +붽 N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + N community|,ProperName|ר,(China|й) + V CausePartMove| + V separate| + N human|,young| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٳ N human|,family|,mass| + V stand|վ + V wait|ȴ + V stand|վ + V influence|Ӱ + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ +Ͳ N disease| +١ N character|,surname|,human|,ProperName|ר +٤ CLAS unit|λ +٤ N lights| +٧ V urge|ʹ +٨ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +٨ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +٩ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +٩ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +٩٩̸ V speak|˵ +٪ ADJ aValue|ֵ,height|߶,low| +٪ N human|,low| +٪޼ N time|ʱ,past| +٪ N human|,low| +٭ N human| +ٮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٮٮ ADJ aValue|ֵ,degree|̶,extreme| +ٮٮ N human|,able|,desired| +ٯ N character|,surname|,human|,ProperName|ר +ٯ PRON {SecondPerson|} +ٲ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +ٲȻ ADJ aValue|ֵ,content|,neat|,desired| +ٲȻ ADV {contrast} +ٳ N human|,family|,mass| +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٸ N tool|þ,#die|,$bury| +ٹ N character|,surname|,human|,ProperName|ר +ٹ V wait|ȴ +ٺ N payment| +ٺ» N payment|,past| +ٻ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٻӰ N image|ͼ,beautiful| +ټ ADJ aValue|ֵ,kind|,special| +ټ ADJ aValue|ֵ,size|ߴ,big| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N human|,crime|,undesired|ݬ,past|,*rob|,#waters|ˮ + CONJ {purpose} + N character|,(China|й) + N human|,#occupation|ְλ,*foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V MoveItDown| + V cease|ͣ +Ϣ V cease|ͣ + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ P {partner} + V lean|п +˱ V HoldInArm|§ + V lean|п + N human|,#GetMarried| + V remove| + N place|ط,ProperName|ר,(China|й) + V BeSame|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + V aValue|ֵ,similarity|ͬ,alike| + COOR {and|} + PREP {coagent} + PREP {contrast} + PREP {partner} + V cook| + V float|Ư + N character|,surname|,human|,ProperName|ר +٦ N character|,surname|,human|,ProperName|ר + N tool|þ,*cook|,past| + N tool|þ,*salute|¾,past| + N human|,undesired|ݬ,$MakeBad|Ӻ + V cook| + N tool|þ,cubic|,*cook| + ECHO {comment|} + N character|,surname|,human|,ProperName|ר + V LieDown| + V crawl| + N bird| + ADJ aValue|ֵ,age|,aged| +ҹ V endeavour| +Ը N aspiration|Ը,expect| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V despise| + V slander|̰ + V receive| + V tell| + N attribute|,ability|,&human| + V tell| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר +ڝ V slide| +ڝ V slide| +ڝŽ V stand|վ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| +ڤ ADJ aValue|ֵ,brightness|,dark| +ڤ ADJ aValue|ֵ,content|,profound| +ڤ N tool|þ,#bury|,#die| +ڤ˼ V think|˼,manner=endeavour| +ڤ N celestial| +ڤ V think|˼ +ڨ V LaughAt|Ц +ڨЦ V LaughAt|Ц +ک V sing| +ک V praise|佱 +ګ ADJ aValue|ֵ,speed|ٶ,slow|,&speak|˵ +ڭ V ExpressAgainst|Ǵ +ڭ N fruit|ˮ +ڮ V slander|̰ +ڮ V slander|̰ +گ N document|,royal|,past| +گ V order|,politics|,royal| +گ N document|,royal|,past| +ڱ V GiveAsGift| +ڱ V PassOn| +ڲ V deceive|ƭ +ڲƭ V deceive|ƭ +ڵ V ask| +ڶг ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ڶг N attribute|,content|,interesting|Ȥ,desired| +ڸ V ExpressAgainst|Ǵ +ڹ V explain|˵ +ڹ V explain|˵ +ڹע V explain|˵ +ں V persuade|Ȱ˵ +ں N human|,friend| +ڼ V boast| +ھ N document|,royal|,past| + V please|ȡ + V know|֪ + V please|ȡ + V please|ȡ + N human|,please|ȡ + V damage| +Ц V laugh|Ц,manner=please|ȡ + V please|ȡ + N character|,surname|,human|,ProperName|ר + V persuade|Ȱ˵ + V tease|ȡ + V salute|¾ + V visit| +˼ V visit| + V order|,politics|,royal| + V tell| + V know|֪ + ADJ aValue|ֵ,ability|,able|,desired| + V BeAble|ܹ + N information|Ϣ + V ask| + N plans|滮 + V arise| + V ExpressAgainst|Ǵ + V degrade| + V exile| + N character|,(China|й) +¥ N facilities|ʩ,space|ռ,@look| + N character|,surname|,human|,ProperName|ר +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V mad| + N text| + N facilities|ʩ,space|ռ,linear|,route|·,#land|½ +İ N facilities|ʩ,space|ռ,linear|,route|·,#land|½ + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N part|,%land|½,skin|Ƥ + N land|½,surrounding|Χ,#waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,skin|Ƥ + N waters|ˮ,surfacial| + N part|,%place|ط,mouth| + N location|λ,angular| + N part|,%land|½,base| + N part|,%country|,edge| + N part|,%earth|,angular| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) +ۡ N house|,#official| +ۣ N character|,surname|,human|,ProperName|ר +ۤ ADV aValue|ֵ,degree|̶,extreme| +ۤ N character|,surname|,human|,ProperName|ר +۪ N character|,surname|,human|,ProperName|ר +۫ N place|ط,ProperName|ר,(China|й) +۬ N character|,surname|,human|,ProperName|ר +ۭ N character|,surname|,human|,ProperName|ר +۰ N place|ط,ProperName|ר,(China|й) +۲ N place|ط,ProperName|ר,(China|й) +۳ N character|,surname|,human|,ProperName|ר +۴ N place|ط,ProperName|ר,(China|й) +۶ N waters|ˮ,ProperName|ר,(China|й) +۷ N place|ط,ProperName|ר,(China|й) +ۺ N character|,surname|,human|,ProperName|ר +ۻ N human|,agricultural|ũ +ۻ N human|,vulgar|,village|,undesired|ݬ +۾ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ۿ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ۿ V mobilize| + ADJ aValue|ֵ,courage|,brave|,desired| + V mediate| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +λ N tool|þ,cubic|,@put| +λ N tool|þ,cubic|,@put|,*clean|ʹ + N chemical|ѧ + N stone|ʯ + V BlockUp| + V pile|ѷ + V BlockUp| + N part|,%land|½,linear|,#water|ˮ + N waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +׳ N InstitutePlace|,*sell|,@buy|,commercial| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N character|,(China|й) + N facilities|ʩ,space|ռ,linear|,*drain|ų + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%country|,edge| + N part|,%land|½,slope|¶ + N part|,%land|½,agricultural|ũ + V FormChange|α,StateFin=OutOfOrder| + V fasten|˩ + N shape| + N shape| + N part|,%land|½ + N part|,%place|ط,mouth| + N attribute|,boundary|,&entity|ʵ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N InstitutePlace|,*sell|,@buy|,commercial| + CLAS NounUnit|,&RainSnow|ѩ + CLAS NounUnit|,&disease|,medical|ҽ + CLAS NounUnit|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,entertainment|,@perform| + N part|,%shows|,entertainment| + N place|ط + N space|ռ + N part|,%land|½ +ܭ N facilities|ʩ,#city|,skin|Ƥ +ܯ N part|,%building|,nerve| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܲ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ܸܸ N FlowerGrass| +ܽ N character|,(China|й) +ܽ N FlowerGrass| +ܽޡ N FlowerGrass| +ܾ N part|,%vegetable|߲,embryo|,$eat| +ܾ N vegetable|߲ +ܾ N tree| +ܾݴ N part|,%vegetable|߲,embryo|,$eat| +ܾݴ N vegetable|߲ +ܿ N FlowerGrass| +ܿ N part|,%vegetable|߲,embryo|,$eat| +ܿ N vegetable|߲ +ܿ N FlowerGrass| +ܿܿ N animate|,mass| +ܿ޷ N part|,%vegetable|߲,embryo|,$eat| +ܿ޷ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ȳ N part|,%vegetable|߲,embryo|,$eat| +Ȳ N vegetable|߲ + N character|,(China|й) + N FlowerGrass| + N FlowerGrass|,?medicine|ҩ,(China|й) + N FlowerGrass|,?material| + N crop|ׯ +ͷ N material|,?food|ʳƷ +ʵ N material|,#edible|ʳ + N character|,(China|й) + V break|۶,agricultural|ũ + V remove| +ϳ V remove|,agricultural|ũ + N chemical|ѧ + N FlowerGrass| + N material|,%FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N character|,(China|й) +״ ADJ aValue|ֵ,color|ɫ,green| +״ ADJ aValue|ֵ,scene|,exuberant|ï +ޣ N FlowerGrass| + N crop|ׯ,?material| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N part|,%vegetable|߲,embryo|,$eat| + N tree|,?medicine|ҩ + N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,red| + N FlowerGrass| + N FlowerGrass| + N place|ط,ProperName|ר,(China|й) + N material|,?food|ʳƷ + N tree| + N part|,%plant|ֲ,body| + N character|,(China|й) + N crop|ׯ + N AlgaeFungi|ֲ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N crop|ׯ + V disappear|ʧ + N FlowerGrass| + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N drinks|Ʒ + N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N character|,(China|й) +ݡ N disease| +ݥ N FlowerGrass| +ݩ N fruit|ˮ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݬ N FlowerGrass| +ݬ N human|,undesired|ݬ +ݭ N character|,(China|й) +ݯ N crop|ׯ +ݰ V arrive| +ݰ V arrive| +ݱ N FlowerGrass| +ݶ N FlowerGrass| +ݷ N character|,(China|й) +ݷ N character|,surname|,human|,ProperName|ר +ݷݷ ADJ qValue|ֵ,amount|,many| +ݷݷѧ N human|,*study|ѧ,education|,mass| +ݸ N character|,(China|й) +ݸ V laugh|Ц +ݸһЦ V laugh|Ц +ݹ N character|,(China|й) +ݹ N material|,?clothing| +ݹ N FlowerGrass| +ݺ N bird| +ݺ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݼ N part|,%entity|ʵ,heart| +ݼ N part|,%entity|ʵ,heart| +ݼݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݽ N part|,%plant|ֲ,body| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| + N chemical|ѧ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) +˿ N FlowerGrass|,?medicine|ҩ,(China|й) + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N human|,$ComeTogether| + N thing|,$ComeTogether| +ȡ V gather|ɼ + N character|,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + V coil| +ӻ V circle| + V circle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V foster| + V keep| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N part|,%FlowerGrass|,embryo| +ݳ N part|,%FlowerGrass|,embryo| +ݳ֮ N human|,family| + ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N character|,(China|й) + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N FlowerGrass| + N FlowerGrass| +޼ N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) + N part|,%plant|ֲ,embryo| + N character|,surname|,human|,ProperName|ר +ޤ N FlowerGrass|,?material| +ޥ N FlowerGrass| +ަ N AlgaeFungi|ֲ +ާ N FlowerGrass| +ެ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ެ V GiveBirth| +ޮ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ޮ N part|,%plant|ֲ,body| +ް V die| +ޱ N character|,(China|й) +޲ N character|,(China|й) +޲ N material|,?edible|ʳ,#crop|ׯ +޶ V PickOut|γ +޷ N FlowerGrass| +޷ N part|,%plant|ֲ,body| +޹ N FlowerGrass| +޹ N attribute|,odor|ζ,fragrant|,&physical| +޹ V cook| +޼ N FlowerGrass| +޽ N part|,%plant|ֲ,hair|ë +޽ N medicine|ҩ + V recreation| + ADJ aValue|ֵ,form|״ + V fall| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + V satirize| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,embarrassed|Ϊ + V check|,content=self| + V pull| + V cook| + N food|ʳƷ + V beat| + V beat| + V endeavour| + V merge|ϲ +ղ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ +ֿ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N character|,(China|й) +׾ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V force|ǿ + V press|ѹ +ָ V punish| + V rub|Ħ + V LaughAt|Ц + V BeNear| + V approach|ӽ + N part|,%character| + V lift| + V ExpressAgainst|Ǵ + V CarryOnBack| + N human|,#occupation|ְλ,commercial| + V throw| + V PickOut|γ + V fail|ʧ + V press|ѹ + V praise|佱 + V abandon| + V remove| + V PutInOrder| + V abandon| + V guess|² + V estimate| + V guess|² + V press|ѹ + N stationery|ľ,*fix|ס +۶ N part|,%clothing|,*fasten|˩ + V wipe| + N tool|þ,*wipe| + V push| + V pile|ѷ +ߗ N place|ط,@reside|ס,#house| +ߡ V fold|ߡ +ߢ V gather|ɼ +ߤ V economize|ʡ +ߤ V economize|ʡ +ߤ V subtract| +ߥ V VieFor| +ߥ V angry| +ߥ V throw| +ߥ V incite|ָʹ +ߦ V press|ѹ +ߦ N tool|þ,#cook| +ߨ V split|ƿ +ߩ V excrete|й +ߩ V excrete|й,patient=waste| +ߪ V PickOut|γ +ߪ V upgrade| +ߪ ADJ qValue|ֵ,amount|,many| +ߪ V upgrade| +ߪ V upgrade| +߫ V dump| +߬ V hold| +߭ V stab| +߭ N weapon|,*stab| +߮ N weapon|,*firing| +߰ N chemical|ѧ +߲ N character|,(China|й) +߳ V ExpressAgainst|Ǵ +߳ V cry| +߳ V ExpressAgainst|Ǵ +߳ V ExpressAgainst|Ǵ +߳ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ߴ ECHO sound| +ߴ V speak|˵ +ߵ V beat| +ߵ V salute|¾ +ߵ V beat| +ߵ N human|,*beat| +ߵͷ V salute|¾ +ߵͷ N InsectWorm| +ߵ V ask| +ߵ V diagnose|,means=beat|,medical|ҽ +߶ V speak|˵ +߷ N place|ط,country|,ProperName|ר,(Singapore|¼) +ߺ V cry| +ߺ V cry|,content=sell|,commercial| +ߺ V guide|,means=cry| +߻ N chemical|ѧ + V ill|̬,#respire| + V ill|̬,#respire| + N character|,(China|й) + N chemical|ѧ + STRU {MaChinese|} + V drink| + V savor| + V MakeSound| + ECHO sound| +ߴ N material|,?clothing| + ECHO sound| + V drink| +ɽ ADJ aValue|ֵ,GoodBad|û,good|,desired| +׹ V ComeToWorld| + V MakeSound| +ર N MusicTool| +ર N clothing|,#foot| + N character|,(China|й) + ECHO sound| +ͱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +͹ N fact|,queer| +β V speak|˵ + V laugh|Ц + ECHO sound| + V CausePartMove| + ECHO sound| +ز V speak|˵ +ߴ N material|,?clothing| + V ExpressAgainst|Ǵ + N character|,(China|й) + ECHO sound| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V talk|̸ +߶ V speak|˵ + V pant| + V weep| + ECHO sound| + N MusicTool| + V sigh|̾ + V weep| + N character|,(China|й) + V jet| +Ͳ N tool|þ,*inhale|,#gas|,#liquid|Һ + ECHO sound| + N character|,(China|й) + V cry|,#bird| + V vomit|³ + V eat| + V entice| + N character|,(China|й) + V cry| + ECHO sound| + V drink| + V weep| + V weep| +ੲ V speak|˵ + ECHO sound| + ECHO sound| + N character|,(China|й) + V speak|˵ +Ȼ̾ V sigh|̾ +̾ V sigh|̾ + ECHO sound| + ADJ aValue|ֵ,occasion|,quiet|,desired| + STRU {MaChinese|} + N human|,crime|,undesired|ݬ + N part|,%animal|,mouth| + N character|,(China|й) +໴ V HungryThirsty| +໴ ADJ HungryThirsty| + N part|,%AnimalHuman|,viscera| + V CausePartMove| + ECHO sound| + ECHO sound| + V MakeSound| + V speak|˵ + V bite|ҧ + ECHO sound| + V angry| + V blame|Թ + N phenomena|,#StomachTrouble|֢ + N phenomena|,#ill|̬,#respire| + ECHO sound| + V cry|,#beast| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V StomachTrouble|֢ + ECHO sound| +Ц V LaughAt|Ц + N part|,LandVehicle| +ͷ N part|,LandVehicle| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + N chemical|ѧ + ECHO sound| +ʹ V incite|ָʹ + N character|,(China|й) +ֹ V ExpressAgainst|Ǵ +ֹ V speak|˵ +ֹ V think|˼ + N chemical|ѧ + ECHO sound| + ADJ aValue|ֵ,SoundVolume|,loud| + V drink| + ECHO sound| + V HoldInMouth| + V KeepSilence|˵,cause=fear| + V laugh|Ц +ͷ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ͷ N method|,interesting|Ȥ +ͷ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N character|,(China|й) + N character|,(China|й) +ž ECHO sound| + ECHO sound| + V speak|˵ + N human|,young| + N human|,young| + ADJ aValue|ֵ,range|,all|ȫ + V study|ѧ,result=ignorant|֪ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + V delimit| + N facilities|ʩ,@foster|,#livestock| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N clothing|,#body|,female|Ů + N fund|ʽ,#country| + N clothing|,#head|ͷ,past| + N character|,(China|й) + N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,military| + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧲ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧿Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N land|½,protruding|͹,desolate| + ADJ aValue|ֵ,similarity|ͬ,different| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,branch|֧ + N character|,(China|й) + N land|½ + N character|,surname|,human|,ProperName|ר + N land|½ + N CloudMist| + N land|½ + N land|½,#waters|ˮ +ᵽ N land|½,#waters|ˮ + N land|½ + N part|,%earth|,mouth| + N character|,(China|й) + N land|½ + N character|,(China|й) + N land|½,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,special| + N character|,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + V appear| + V appear|,politics| + N character|,(China|й) + V wounded| + N animal|,young| + N human|,family|,male|,young| + N animal|,young| + N human|,undesired|ݬ + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) +϶ ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,height|߶,tall| +ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + N part|,%land|½,head|ͷ +۷ N part|,%entity|ʵ,head|ͷ +ء V walk|,manner=slow| + V hesitate|ԥ + V obey|ѭ + V surrender| + V do|,manner=biased|ƫ + V do|,manner=biased|ƫ,undesired|ݬ +˽ V do|,manner=biased|ƫ,undesired|ݬ +˽ N fact|,deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N human|,future| + V SelfMove| + V walk| + N attribute|,property|,&entity|ʵ + V include|,military| + N information|Ϣ,*prove|֤ + V levy| + V request|Ҫ + N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N beast| + N beast| + N beast| + V engage|,content=catch|׽ס,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sudden| +⧶ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N fact|,die|,#medical|ҽ +⨺ N beast| +⨺ N fruit|ˮ + N beast| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +⫱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +⫼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ damage| + N beast| + N beast| + N beast| +ͷĿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N beast| + N part|,%AnimalHuman|,*bite|ҧ + N beast| + ADJ qValue|ֵ,amount|,many| +Ե V please|ȡ,purpose=$upgrade| + V ize|̬,PatientAttribute=soft| + N material|,sweet|,?edible|ʳ + V tired|ƣ + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + N food|ʳƷ + N payment| + N food|ʳƷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N food|ʳƷ + V cook| + V OutOfOrder|,#edible|ʳ + N food|ʳƷ + ADJ aValue|ֵ,taste|ζ,good|,desired| + V eat| + N human|,#occupation|ְλ,*cook| + N room|,@cook| +ҳ N room|,@cook| + V protect| + N attribute|,length|,&human| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,religion|ڽ + N house| + V GoOn| + V bear|е + N part|,%AnimalHuman|,body| + V receive| +ѡ V win|ʤ + V guess|² + V think|˼ + V guess|² + V guess|² + V think|˼ + V repent|û + V admit|,religion|ڽ + V repent|û + V angry| + V irritate|ŭ + V angry| + V sad|dz + V disobey|Υ + V disobey|Υ + V sorry|ϧ + V melancholy| + V joyful|ϲ + V shy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V fear| + ECHO sound| + V sorrowful| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,happy|,desired| +ȻԵ V satisfied| + V sorrowful| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADV aValue|ֵ,behavior|ֹ,cautious|,desired| + V obey|ѭ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V disobey|Υ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V flee| + V respect|,target=human| + V satisfied| + V satisfied| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ȼ V melancholy| + V melancholy| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V fear| +Ȼ V fear| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V stupefied|ľȻ + V stupefied|ľȻ +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ס V stupefied|ľȻ +㷲 V uneasy| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + V tired|ƣ + V understand| + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + V expect| +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +¶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V shy| + V fasten|˩ + N tool|þ,*fasten|˩ + N character|,surname|,human|,ProperName|ר +Ʒ N character|,surname|,human|,ProperName|ר + N InstitutePlace|,@exam|,past| + N part|,%building|,royal|,mouth| + N character|,surname|,human|,ProperName|ר + V pity| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sad|dz + N part|,building|,mouth| + N part|,%place|ط,mouth| + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|· + N place|ط,ProperName|ר,(China|й) + N part|,%building|,mouth| + N character|,(China|й) + N part|,%building|,mouth| + V supervise|,content=mouth| + N human|,#occupation|ְλ,*defend|,#building| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,range|,all|ȫ +ؼ N community|,family|,all|ȫ + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N house|,royal| + V lack|ȱ + N result|,wrong|,undesired|ݬ + V lack|ȱ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&land|½ + N wood|ľ + V kill|ɱ + V damage| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V wash|ϴ,patient=hair|ë +ԡ V exist| +ԡ V wash|ϴ + N waters|ˮ,ProperName|ר,(China|й) + ECHO sound| + ECHO sound| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N CloudMist| +һ V collude| +һ V fit|ʺ +ˮ N water|ˮ,liquid|Һ,waste|,#livestock| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,#human|,country|,politics|,great|ΰ + N part|,%AnimalHuman|,waste|,liquid|Һ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + V StateChange|̬ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial| + N material|,?drinks|Ʒ + CLAS NounUnit|,&waters|ˮ + ADJ aValue|ֵ,depth|,deep| + V disappear|ʧ +û V disappear|ʧ + V disappear|ʧ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,clearness|,clear| + V soak| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,clearness|,clear| + V look| + V read| + N land|½,surrounding|Χ,#waters|ˮ + N land|½,surrounding|Χ,#waters|ˮ + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,small|С,linear| +丰 ADJ qValue|ֵ,amount|,few| + V flow| + N waters|ˮ,linear| + V wash|ϴ + N land|½ + N waters|ˮ,ProperName|ר,(China|й) + V wash|ϴ,patient=material| + N waters|ˮ,ProperName|ר,(China|й) + V despise| + N facilities|ʩ,#liquid|Һ,linear| +ְ V disobey|Υ,content=duty| +ְ N fact|,disobey|Υ,content=duty| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N character|,(China|й) + N sound|,#water|ˮ + V cook| + V wash|ϴ + V cook| + V food|ʳƷ + V BlockUp| + V disappear|ʧ + V sink|³ +û V destroy| +û V disappear|ʧ + V destroy| + V disappear|ʧ + ADJ aValue|ֵ,form|״,dented| +а ADJ aValue|ֵ,width|,narrow|խ + N waters|ˮ,ProperName|ר,(China|й) +Ⱦ V AlterColor|ɫ +Ⱦ V PlayUp|Ĵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +̫ N place|ط,capital|,ProperName|ר,(Canada|ô) + N part|,%land|½,#waters|ˮ,edge| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,kind|,ordinary| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N phenomena|,disorder|,undesired|ݬ + N room|,@excrete|й + ADJ aValue|ֵ,clearness|,blurred| + N chemical|ѧ + ADJ aValue|ֵ,stickiness|,sticky| + N stone|ʯ,#AnimalHuman|,waste| + ADJ qValue|ֵ,amount|,many| + N waters|ˮ + N waters|ˮ,surfacial| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,weak| + V transport| + V transport| + N waters|ˮ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V ComeTogether| + N waters|ˮ,surfacial| + N water|ˮ + V filter| + V soak| + N water|ˮ + N water|ˮ + N RainSnow|ѩ,good| + V disappear|ʧ +Ȼ N weep| + N edible|ʳ,*feed|ι,#animal| + N place|ط,ProperName|ר,(China|й) + V flow| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| +̨ N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + V moisten|ʪ + V soak| +Ⱦ V soak| +Ⱦ V teach| +ʪ V moisten|ʪ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,#waters|ˮ,*protect| + V wash|ϴ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,area|,wide| +嫺 N land|½,surfacial|,barren| + N waters|ˮ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| + V delay| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + N attribute|,occupation|ְλ,&human|,royal| + N house| + N house|,royal| + N human|,royal| + V awake| + N house| + N place|ط,broad| + N earth| + ADJ aValue|ֵ,behavior|ֹ,unfortunate| + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*disable|м,#leg| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N disease|,scope=speak|˵ + V welcome|ӭ + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ V aValue|ֵ,similarity|ͬ,different| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| + ADJ aValue|ֵ,similarity|ͬ,different| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,distance|,near| + N character|,(China|й) + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ + N facilities|ʩ,route|· + N method| + N character|,surname|,human|,ProperName|ר +ң ADJ aValue|ֵ,behavior|ֹ,free| +ң V escape|,cause=$punish|,#police| + N facilities|ʩ,route|· + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +پ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,duration|,TimeLong| + V dream| + V walk| + V SelfMove| + V read|,#internet| + V fill| + V walk| + V walk| + N character|,(China|й) +ѡ V select|ѡ + ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + V meet| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,attire|װ,careless|,undesired|ݬ + N tool|þ,*wipe| + N celestial| + N livestock| + N part|,%AnimalHuman|,base| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ͷ N human|,timid|,undesired|ݬ + N clothing|,#foot| + N weapon|,*firing| + N weapon|,*firing| + V remove| + V help| + V sell| + N human|,royal|,female|Ů +ɫ ADJ aValue|ֵ,color|ɫ,red| + N human|,royal|,female|Ů + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N character|,(China|й) + ADJ aValue|ֵ,earliness|,late| + N human|,family|,female|Ů + PRON {firstPerson|,female|Ů} + PRON {firstPerson|,female|Ů} + N character|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V GetMarried|,undesired|ݬ +氷 N human|,male|,*love|,*mating|,undesired|ݬ +永 N human|,female|Ů,*love|,*mating|,undesired|ݬ +氾 V GetMarried|,undesired|ݬ +ͷ N human|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̺ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| +浾 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N human|,family|,female|Ů + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N character|,(China|й) + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潸 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潼 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N human|,#occupation|ְλ,employee|Ա,female|Ů +Ů N human|,#occupation|ְλ,employee|Ա,female|Ů + N character|,(China|й) +濲 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V GetMarried| + V MakeAppointment|Լ +ź V reconcile| + N character|,(China|й) + V equal| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̺ ADJ aValue|ֵ,color|ɫ,red| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +μ V SeekPleasure|Ѱ,#mating|,undesired|ݬ +ο N human|,*SeekPleasure|Ѱ,#mating|,undesired|ݬ + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +϶ N humanized| + N character|,(China|й) + V WhileAway| +Ƥʿ N human|,male|,flighty|,undesired|ݬ +ƤЦ V laugh|Ц +Ϸ V WhileAway| +Ц V laugh|Ц +ӱ V change| + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,female|Ů +׸ N human|,female|Ů +׾ N human|,female|Ů +׾ V lose|ʧȥ,possession=family| + N character|,(China|й) + V urge|ʹ,ResultEvent=believe| + V GiveBirth| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N InsectWorm| + N character|,(China|й) + N AlgaeFungi|ֲ + N livestock|,strong|ǿ + N livestock| + N livestock|,mass| + N InstitutePlace|,@reside|ס,official| + N facilities|ʩ,route|· +վ N facilities|ʩ,space|ռ,#LandVehicle|,past| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + N livestock|,weak| + ADJ aValue|ֵ,courage|,brave|,desired| +罫 N human|,military|,brave| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock|,red| + ADJ qValue|ֵ,amount|,double| + N text| +֦ ADJ aValue|ֵ,necessity|Ҫ,redundant| + N livestock|,black| + N livestock|,female|Ů + V seek|ıȡ + N livestock|,strong|ǿ + N livestock|,red| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock| + N livestock|,strong|ǿ + V SelfMove|,manner=fast| + V stand|վ + N material|,?clothing| + N tool|þ,#wind|,*cool| + ADJ qValue|ֵ,amount|,many| + V FormChange|α,StateFin=spread| + V weaken| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N image|ͼ + N tool|þ,linear|,*fasten|˩ + N material|,?clothing| +秲 N material|,?clothing| +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + V inferior| + V fasten|˩ + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N material|,?clothing| + N material|,?clothing| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,color|ɫ,red| +糺 ADJ aValue|ֵ,color|ɫ,red| + V fasten|˩ + V wrap| +統 N fittings|,%clothing|,*decorate|װ +統 V wrap|,instrument=fittings|,#clothing|,#decorate|װ + N tool|þ,linear|,*fasten|˩ +練 N tool|þ,*decorate|װ +練 N bird| + V twine| + ADJ aValue|ֵ,color|ɫ,black| +˿ N tool|þ,*decorate|װ +ÿ N character|,surname|,human|,ProperName|ר + N material|,?clothing| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N material|,?clothing| + N clothing|,*salute|¾,#die| + N material|,?clothing| +ͷ ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +˿ V produce|,industrial| +˿ N InstitutePlace|,@produce|,factory|,industrial| + V fasten|˩ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V circle| + N tool|þ,linear|,*guide|,#livestock| + N tool|þ,linear|,*guide|,#livestock| + V fasten|˩ + NUM qValue|ֵ,amount|,cardinal| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +С N human|,undesired|ݬ + N chemical|ѧ + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ +ް N tool|þ,*print|ӡˢ + V slander|̰ + V pollute|ʹ + V slander|̰ + N fish| + N character|,(China|й) + N stone|ʯ + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ +ͩ N tree| + N place|ط,ProperName|ר,(China|й) + N tool|þ + N character|,(China|й) + N stationery|ľ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,kind|,special|,desired| + N character|,(China|й) + N stone|ʯ,treasure|䱦 + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| +b N sound|,#water|ˮ + N material|,?tool|þ,#decorate|װ,precious| + N treasure|䱦 + N character|,surname|,human|,ProperName|ר + N tool|þ,#decorate|װ,precious| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ,treasure|䱦 + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ +覲 ADJ aValue|ֵ,standard|׼,average|,desired| +覴 N attribute|,quality|,weak|,undesired|ݬ,&thing| +覴 N result|,undesired|ݬ +褻 ADJ aValue|ֵ,rank|ȼ,average| + N place|ط,country|,ProperName|ר,(Nauru|³) +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +³ N place|ط,capital|,ProperName|ר,(Nauru|³) +³ N language|,#country|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,brightness|,bright| +貶Ŀ ADJ aValue|ֵ,brightness|,bright| + N stone|ʯ + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼ ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,*decorate|װ +赻 V reject|ؾ +赻 V return| +л V reject|ؾ + N trace|,#OutOfOrder| + V contain| + N method|,*fight|,military| + N tool|þ,cubic|,@put| + N method|,*fight|,military| + N character|,surname|,human|,ProperName|ר + V fear|,cause=wrong| + N part|,%plant|ֲ,limb|֫ + N tool|þ,*pick|ʰ + N tool|þ,*pick|ʰ,agricultural|ũ + N part|,%plant|ֲ,limb|֫ + N fruit|ˮ + N tree| + N part|,%plant|ֲ,limb|֫ + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,distance|,far|Զ +ƺ V disappear|ʧ + V disappear|ʧ + V stab| + N tree| + ADJ aValue|ֵ,courage|,brave| + N bird| +ɽ N human|,military|,brave| + N part|,%MusicTool| + N part|,%machine| + N fruit|ˮ + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N tree| + N facilities|ʩ,space|ռ,#livestock| + N part|,%house|,#eye| + N tool|þ,cubic|,#die|,@store| +ѳ N LandVehicle|,*transport|,#human|,#die| + N tool|þ,*recreation| + ADJ aValue|ֵ,fullness|,empty| +ոӹ V endeavour| + N fruit|ˮ + N fruit|ˮ + N tree| + N tool|þ,past| + N part|,%ship| + N tree| + N tree| + N chemical|ѧ + N tree| +ེ N material| + N tool|þ,cubic|,@put| + N part|,%plant|ֲ,limb|֫ + N part|,%ship| + N tool|þ,police|,#crime|,*detain|ס + N tool|þ,police|,#crime|,*detain|ס + N tree| + N human|,desired|,important|,able| + N human|,important|,desired| + N tree| + N tree| + N part|,%building|,bone| + N part|,%building|,bone| + N tree| +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| + N crop|ׯ,?material| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N entity|ʵ,#religion|ڽ + N place|ط,country|,ProperName|ר,(India|ӡ) +ٸ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + N tool|þ,police|,#crime|,*detain|ס + N tool|þ + N place|ط + N place|ط,@ComeToWorld| + N paper|ֽ + N tree| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N tool|þ,cubic|,@put| + N part|,%ship| + V beat| + N tool|þ,*beat| + N tool|þ,cubic|,#die|,*store| + N human|,family|,male| + N tree| + N character|,(China|й) + N tool|þ,#beat|,#metal| + N tree| +ľ N tree| + N tree| + N fruit|ˮ + N tree| + N tool|þ,*beat| + N tool|þ,cubic|,*store|,#die| + N ship| + V fill| + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N part|,%building|,mouth| + N part|,%house|,bone| + N text| + N tree| + N fruit|ˮ + N tree| + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ,$eat| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%artifact|˹,*fasten|˩,#wood|ľ +ͷ N part|,%artifact|˹,*fasten|˩,#wood|ľ + N part|,%artifact|˹,*fasten|˩,#wood|ľ + N facilities|ʩ,space|ռ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ľ V disheartened| + N fruit|ˮ + N tree| + N fruit|ˮ + N tree| + N place|ط,city|,ProperName|ר,(China|й) + N tree| + N tree| + N part|,%ship| + N tree| + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,green| + N SportTool|˶ + N fact|,sport| + N tool|þ,cubic|,@put| + N material|,$burn| +Է N human|,#occupation|ְλ,agricultural|ũ + N part|,%ship| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N fruit|ˮ +ٺ ADJ aValue|ֵ,color|ɫ,red| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + N part|,%building|,head|ͷ + N part|,%inanimate|,%space|ռ,edge| + N part|,%inanimate|,edge| +ܹ N part|,%building| + N part|,%building|,head|ͷ + N part|,%building|,bone| + N plans|滮 + N beast| + V die| + V die| +л V die| + V die| + V die| + V die| + V die| + V put| +龫 V think|˼ + V put|,patient=tool|þ + V transport|,patient=tool|þ +복 N LandVehicle|,#die| +ǹ N InstitutePlace|,@salute|¾,@burn|,#die| + N fact|,salute|¾,#die| + V put| + N part|,%LandVehicle|,leg| + N character|,(China|й) + V lose|ʧȥ + V surpass|ǿ + N fact| + N part|,%LandVehicle| + N part|,%LandVehicle|,past| + V sorrowful| + N LandVehicle|,past| + V cease|ͣ + V end|ս +ꡱ V cease|ͣ,content=compile|༭ +ѧ V cease|ͣ,content=study|ѧ + N part|,%machine| + V PropUp|֧ + V beat| + ADJ aValue|ֵ,kind|,special| + N weapon|,stab| + V hide| + V restrain|ֹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N character|,surname|,human|,ProperName|ר +갷 V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N location|λ,space|ռ,angular| + N part|,%earth|,angular| +깶 N location|λ,angular| + ADJ aValue|ֵ,area|,wide| + N sky| +꼻һ V exist|,manner=TimeShort| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + V illuminate| + N lights|,#celestial| + ADJ aValue|ֵ,circumstances|,free|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,age|,aged| + N human|,aged|,desired| + N human|,aged|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,earliness|,late| + N character|,surname|,human|,ProperName|ר + N lights|,#celestial| +ӳ V illuminate| + ADJ aValue|ֵ,hardness|Ӳ,soft| + V farewell| +Υ V farewell| + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N lights|,#celestial| + N time|ʱ,night| + N lights|,#celestial| + N lights|,#celestial| + ADJ aValue|ֵ,source|Դ,original|ԭ + V beautify| + N character|,surname|,human|,ProperName|ר + V arrive| + V GiveAsGift| + V PassOn| +ݱ N fish| + V damage| +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N tool|þ,$GiveAsGift| + V estimate| + ADJ aValue|ֵ,fullness|,full| + V help| + V help| + V help|,patient=human| + V grant| + N tool|þ,$GiveAsGift| + V investigate| + V look| + V need|,manner=greedy|̰ + V meet| + V meet| + V meet|,royal| + V CausePartMove| + V look| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,sex|Ա,female|Ů +ţ N beast| +ţ N beast| + N location|λ,angular| + N part|,%AnimalHuman|,*feel| +ţ N livestock| +ţ N livestock| + V reward| + V reward| + V bring|Я + V lift| + V pick|ʰ + V split|ƿ + N part|,%AnimalHuman|,hand| +뢻 V arrange| + ADJ aValue|ֵ,age|,aged| +֮ N time|ʱ,#age|,aged| + N part|,%animal|,hair|ë + N part|,%bird|,hair|ë + N SportTool|˶ + N material|,?clothing| + N gas| + N gas| + N gas| + N gas| + ADJ aValue|ֵ,density|ܶ,dense| + N document|,royal| + N part|,%house|,#eye| + V punish| + N chemical|ѧ + N chemical|ѧ + N part|,%AnimalHuman|,arm| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%AnimalHuman|,viscera| + N edible|ʳ + N edible|ʳ + N character|,(China|й) +ͳ V explain|˵ + V quote| +ι N part|,%AnimalHuman|,bone| + N clothing|,#head|ͷ + N human|,future| + N chemical|ѧ + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,leg| +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,color|ɫ,red| +˿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N livestock| + N beast| + N part|,%AnimalHuman|,viscera| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ + N material|,?clothing| + V cook| + V cook| + V cook| + N part|,%AnimalHuman|,leg| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,flesh| + V shy| + N beast| + N part|,%AnimalHuman|,mouth| + N disease| + N part|,%AnimalHuman| +Ĥ N part|,%AnimalHuman| + N human|,desired|,important|,able| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V shy| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V respect| + V inhale| +쫷 N wind| + N wind| + N wind| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,content|,opened| +쳼 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +쳼 N place|ط,country|,ProperName|ר +쳼 N human|,(Fiji|쳼) +쳼 N language|,#country|,ProperName|ר +Ȼ ADJ aValue|ֵ,content|,opened| +촷 N shape| + N character|,surname|,human|,ProperName|ר + PREP {location} + ECHO {modality|} + PREP {time} + N tool|þ,mark|־ + N mark|־ + N tool|þ,mark|־ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V cook| + V cook| + N part|,%tool|þ,#illuminate|,important| +ʾ V ShowOff|ҫ +ҫ V ShowOff|ҫ + ADJ aValue|ֵ,brightness|,bright| + N lights|,#celestial| + N lights|,#fire| + V StateChange|̬,StateFin=liquid|Һ,industrial| + V WarmUp| + V cook| + V damage| + N fire| + V StateChange|̬,StateFin=dry| + V illuminate| + V cook| + V burn| + V produce|,industrial| + V burn| + V cook| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V StripOff|ȥ + V cook| + N symbol|,#quantity| + V press|ѹ +ٶ N tool|þ,*AlterForm|״,#level|ƽ + V AlterForm|״,PatientAttribute=level|ƽ +¹ N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N human|,#occupation|ְλ,*cook| + N tool|þ,*cook| + V cover|ڸ + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,brightness|,&inanimate| + N lights|,#morning| +΢ ADJ aValue|ֵ,brightness|,dark| + V inhale| +涷 N tool|þ,cubic|,@put| + N tool|þ,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N part|,building|,mouth| +ҳ N part|,%publications|鿯 + V salute|¾ + N phenomena|,#lucky|,happy|,desired| + V remove| + V remove| + N phenomena|,#lucky|,happy|,desired| + N attribute|,occupation|ְλ,&human|,royal| + N phenomena|,lucky|,desired| + N facilities|ʩ,space|ռ,@salute|¾ + N facilities|ʩ,space|ռ,@salute|¾ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V thing|,religion|ڽ + V think|˼,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + V PassOn|,possession=power| +ʦ N human|,religion|ڽ + N attribute|,kind|,&religion|ڽ + N phenomena|,lucky|,desired| + V remove| + V uneasy| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V despise| + ADJ aValue|ֵ,kind|,special| + N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,style|,free|,desired| +޼ V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N result|,wrong|,undesired|ݬ + V delay| + V due| + V rest|Ϣ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CONJ {EventResult|¼} + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,area|,wide| + N stone|ʯ + N stone|ʯ +ʯ N stone|ʯ + N stone|ʯ + N place|ط,ProperName|ר,(China|й) + V break|۶ + N chemical|ѧ + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ +ÿ N part|,%crop|ׯ,skin|Ƥ + N shape| + N material|,@building| + N tool|þ,*rub|Ħ + V drill|ϰ + V mobilize| + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ,#crop|ׯ +ͱ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + V touch| + N land|½ + N land|½,surfacial|,barren|,undesired|ݬ + N tool|þ,*grind|ĥ,#crop|ׯ + N facilities|ʩ,*carve|,*salute|¾ + N fact|,punish|,past| + N part|,%character| + V punish| + V press|ѹ + N tool|þ,*grind|ĥ,#crop|ׯ + N tool|þ,*grind|ĥ,#crop|ׯ + N MusicTool| + N MusicTool|,religion|ڽ + ADJ aValue|ֵ,form|״,dented| + V sleep|˯ + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,skin|Ƥ + V look| + N emotion|,hate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V look| +˯ V sleep|˯ +Ŀ V AtEase| + V look| +Ŀ V look| +Ŀ V stupefied|ľȻ + V look| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,size|ߴ,surfacial|,&land|½ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N place|ط,#country| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + CLAS unit|λ,&area| + N place|ط,village| + N beast| +ബ N ship| + V suffer| + V SufferFrom| + V die|,police| + V delay| + V detain|ס,police| + V restrain|ֹ + V stay|ͣ + V restrain|ֹ + V stay|ͣ + V stay|ͣ,police| +Ѻ V detain|ס,police| + N tool|þ,*catch|׽ס,#fish| + V wash|ϴ + V wash|ϴ,patient=skin|Ƥ +ϴ V wash|ϴ + V mobilize| + N metal| + N tool|þ,*fasten|˩ + N metal| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N metal| + N metal| +Ѱ N chemical|ѧ +ѺϽ N material|,metal| + ADJ aValue|ֵ,size|ߴ,big| + ADJ qValue|ֵ,amount|,many| + N material|,metal|,surfacial| +Լ N stationery|ľ,past| + N character|,surname|,human|,ProperName|ר + N metal| + N treasure|䱦,precious| + N metal| + N MusicTool| + N metal| + N metal| + V StateChange|̬,StateFin=liquid|Һ + V exhaust| + V weaken| + N tool|þ + N metal| + N metal| + N metal| + N tool|þ,#sound| + V catch|׽ס,police| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*hold| + N MusicTool| + N tool|þ,cubic|,*cook| + N money|,(Thailand|̩) + V gather|ɼ,manner=slow| +Ϥ V equal| + V venture|ð + N tool|þ,#crop|ׯ,agricultural|ũ + V choose|ѡ + V measure|,#weight| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V order| + V order| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N sound| + N metal| + N MusicTool| + N metal| +Ȼ ADJ aValue|ֵ,SoundVolume|,loud| + N sound| + ADJ aValue|ֵ,SmoothFinish|,polished| +ﭹ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N metal| + N metal| + N tool|þ,*rub|Ħ +ﱵ N tool|þ,*rub|Ħ + N tool|þ,*fasten|˩ + V suffer|,content=detain|ס,#police| + V carve| + N chemical|ѧ + V cut| + N tool|þ,*cut| + N tool|þ,*cut| + N wealth|Ǯ + V BlockUp| + V detain|ס,police|,crime| + N phenomena|,bad| + N disease|,TimeLong| + N metal| + ADJ aValue|ֵ,form|״,sharp| + N weapon|,stab| + CLAS unit|λ,&weight| + N fact|,secondary| + N money|,few| +ؽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| +ƶ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N metal| + N metal| + N part|,%tool|þ,*cut|,heart| + N tool|þ + V carve| + CLAS unit|λ,&weight| + N metal| + V carve| +ι V remember|ǵ +λ V carve| +ο V carve| +ο V carve| + N sound| + N metal| + N metal| + N character|,(China|й) + N attribute|,name|,&weapon|,ProperName|ר,past|,(China|й) + N metal| + V carve| +Կ V carve| + V carve| + N metal| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ֽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + N tool|þ,*decorate|װ,$PutOn| + CLAS unit|λ,&weight| + N metal| + N character|,(China|й) + N metal| + N weapon|,hidden| +ھ N InstitutePlace|,*protect| +ڿ N human|,#occupation|ְλ,*protect| +ʦ N human|,#occupation|ְλ,*protect| +ͷ N human|,#occupation|ְλ,*protect| + V cut|,industrial| +۴ N machine|,*produce| +ۿ N part|,%inanimate|,mouth|,industrial| + N tool|þ + N MusicTool| + N part|,weapon|,*firing| + V cut| + V cut|,industrial| + N metal| + N part|,%weapon|,head|ͷ,$firing| + N character|,surname|,human|,ProperName|ר + N tool|þ,*dig|ھ +ͷ N tool|þ,*dig|ھ + N metal| + N metal| + V press|ѹ,industrial| + N metal| + N metal| + V split|ƿ + N tool|þ,*split|ƿ + N tool|þ,*split|ƿ + N money| +ˮ N chemical|ѧ + N part|,%tool|þ,#livestock| + N part|,%AnimalHuman|,*listen| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N MusicTool| + N part|,%tool|þ,#livestock|,#head|ͷ + N weapon|,hidden| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,cubic|,@put| + CONJ {supplement|ݽ} + ADJ aValue|ֵ,height|߶,low| + N human|,low| + N bird| +ܦ N part|,%building|,skin|Ƥ + ADJ aValue|ֵ,fullness|,empty| + N part|,%plant|ֲ,embryo| + N part|,%crop|ׯ,skin|Ƥ + N part|,%plant|ֲ,embryo| + NUM qValue|ֵ,amount|,cardinal|,mass| + N place|ط,ProperName|ר,(China|й) + N edible|ʳ,*feed|ι,#animal|,generic|ͳ + V feed|ι + V prepare|׼,content=fight|,military| + N crop|ׯ + N part|,%plant|ֲ,body| + N material|,?edible|ʳ,#crop|ׯ + V planting|ֲ,target=self| + N character|,surname|,human|,ProperName|ר + N material|,?edible|ʳ,#crop|ׯ + N FlowerGrass|,undesired|ݬ +ݬ N human|,undesired|ݬ + N character|,(China|й) + N crop|ׯ + V know|֪ + N time|ʱ,year| + V know|֪ + N human|,friend| +֪ V know|֪ + N character|,(China|й) + N crop|ׯ + N humanized| + N character|,(China|й) + ADJ aValue|ֵ,stickiness|,sticky| + N InsectWorm| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + N attribute|,stickiness|,&inanimate| + N {stickiness|} +𤸽 V fasten|˩ + V fasten|˩ +ϼ N material|,*fasten|˩ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,stickiness|,sticky| +𤽺 N material|,?clothing| +𤽺ά N material| + V fasten|˩ + N material|,?food|ʳƷ,#crop|ׯ +Ĥ N part|,%AnimalHuman| +Ĥ N disease| + N stone|ʯ + N attribute|,stickiness|,&inanimate| +Һ N part|,%AnimalHuman|,liquid|Һ + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%fruit|ˮ,flesh| + N part|,%physical|,flesh| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,(China|й) + V obey|ѭ,religion|ڽ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N celestial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,color|ɫ,white| + N part|,%human|,white|,*bite|ҧ +𩷯 N chemical|ѧ + N part|,%human|,head|ͷ,white| + V endeavour| + N celestial| +µ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white|,&human| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,size|ߴ,big| + N plant|ֲ + N character|,(China|й) + N plant|ֲ,$eat| + N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,route|· + N part|,%building|,nerve| + N bird| + V ComeTogether| + V assemble|ۼ +𯼯 V ComeTogether| +𯼯 V assemble|ۼ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + N bird| + N tool|þ,*WhileAway| +β N FlowerGrass| + N bird| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ +ĸ N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird|,poison| + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + V kill|ɱ,instrument=poison| +𲶾 N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| +β N artifact|˹,*decorate|װ + N artifact|˹,*decorate|װ + N attribute|,kind|,&bird| + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +𺺷 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + N human|,family|,mass| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +O N human|,$ComeTogether| + N character|,(China|й) + N bird| + N bird| + N character|,(China|й) + N bird| + N tool|þ,$firing| + N part|,%tool|þ,heart|,#weapon|,#AimAt|,#firing| + N purpose|Ŀ + N tool|þ,#weapon|,$AimAt|,$firing| + V wait|ȴ + V stand|վ + V expect| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N bird| + N bird| + N clothing| +°ٽ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| + N bird| +ӥ N bird| + N bird| + N tool|þ,*WhileAway| +ӷ V roll| + N bird| + N character|,(China|й) +и N bird| +и ADJ aValue|ֵ,color|ɫ,green| + N bird| + N fish| + N disease|,#fever| +ѧ V imitate|ģ + N character|,(China|й) + N bird| + N FlowerGrass|,?medicine|ҩ + N bird| + N character|,(China|й) +Ӹ N bird| + N character|,(China|й) +ݺ N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N disease| +۴ N disease| + N disease| + N disease| + N disease| + N disease| +޴ N tool|þ,*cure|ҽ,*wrap|,medical|ҽ + N disease| + N character|,(China|й) + N disease| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N disease| + N disease| + N character|,(China|й) + N character|,(China|й) + N disease| + N disease|,#skin|Ƥ + N disease|,#skin|Ƥ + N character|,(China|й) + N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ + N disease|,#wounded| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N disease| +첡 N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N character|,(China|й) + N disease|,#skin|Ƥ + N disease| + N disease| + N disease| + N character|,(China|й) + N disease| +ӷ N medicine|ҩ + ADJ aValue|ֵ,kind| + N phenomena|,bad| + N disease|,TimeLong| + N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| + N disease| + N character|,(China|й) + V die|,police| + V die|,police| + N disease| +Ѫ N disease| + N disease| + V hate| + N disease| + N character|,(China|й) + N disease| +ͷ N human|,#disease| + V bury| + N character|,(China|й) + N disease| + V BeRecovered|ԭ,medical|ҽ + N disease| + N disease| + N disease| + N disease|,#skin|Ƥ + V itch| + N character|,(China|й) + N character|,(China|й) + N trace|,#disease| + N trace|,#disease| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +񤱡 ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + N character|,(China|й) +񥲡 N disease| + N character|,(China|й) + N disease| + N character|,(China|й) + N disease| + N disease| + N disease|,#plant|ֲ + N disease| + N attribute|,physique|,weak|,undesired|ݬ,&human| + N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ +ͷ N aspiration|Ը,expect|,#addict|Ⱥ + V BeRecovered|ԭ,medical|ҽ + V damage| + N disease| + N disease| + N beast| + N disease| +Ƥ N human|,undesired|ݬ +Ƥ N livestock|,undesired|ݬ + N disease| + N human|,#disease| + N human|,*SufferFrom|,undesired|ݬ + N character|,(China|й) +񯲡 N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + V mad| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V mad| + N human|,*mad|,undesired|ݬ + N disease| + ADJ aValue|ֵ,fatness|,bony| + V help| + V help| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,height|߶,tall| + V fear| + V frighten|Ż + V upmove| + N character|,(China|й) + N part|,%building|,head|ͷ + N sky| + N celestial| +񷶥 N part|,%building|,head|ͷ +¡ N part|,%building|,head|ͷ +® N tool|þ,*cover|ڸ + ADJ aValue|ֵ,form|״,protruding|͹,curved| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V bury| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,mouth| + N part|,%inanimate|,mouth| + N house|,#animal|,@alive| + N regulation|,ordinary| + V climb|ʵ + N CauseAffect|Ⱦ + N room| +񿾮 N facilities|ʩ + N attribute|,richness|ƶ,poor|,&human|,&organization|֯ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + N part|,%clothing|,#body| + N clothing|,religion|ڽ + N part|,%clothing|,body| + N tool|þ,@LieDown|,@sit| +ϯ N tool|þ,@LieDown|,@sit| + N human|,family|,male| + N part|,%clothing|,body| + N tool|þ,linear|,*fasten|˩ + N part|,%clothing|,#arm| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%AnimalHuman|,#leg| + N part|,%clothing|,#leg| + N character|,(China|й) + N clothing| + N character|,(China|й) + N material| + N character|,(China|й) + N clothing|,#body| + V exposure|¶ + N character|,(China|й) + V salute|¾ + N trace|,#clothing| + V decorate|װ +Ѻ V decorate|װ +Ѻ N human|,#occupation|ְλ,industrial| + V decorate|װ +װ V decorate|װ + V decorate|װ + N character|,surname|,human|,ProperName|ר + V StripOff|ȥ + N clothing|,#young| + ADJ aValue|ֵ,importance|,secondary| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +Խ N human|,official|,military|,past| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N part|,%clothing|,#body| + N clothing|,#body| + V repair| + N character|,(China|й) +װ N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,cubic|,@put| + N clothing|,#body| + N tool|þ,cubic|,@put| + V fasten|˩ + N material| + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,width|,narrow|խ +ۼ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,(China|й) + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V StripOff|ȥ + V rob| +ݶ V rob| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N trace|,#skin|Ƥ,#AnimalHuman| + N trace|,#clothing| + N trace|,#skin|Ƥ,#AnimalHuman| + N character|,(China|й) + N clothing|,#young| + N clothing|,#body| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%clothing|,*fasten|˩ + CLAS NounUnit|,&material| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official|,past| + ADJ qValue|ֵ,amount|,all|ȫ + N human|,#occupation|ְλ,official|,past| + V FormChange|α,StateFin=split|ƿ,medical|ҽ + V FormChange|α,StateFin=wrinkled| + V draw|,literature| +巨 N method|,*draw| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pity| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N part|,%tool|þ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V pile|ѷ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V remove|,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + V engage|,agricultural|ũ + ADJ qValue|ֵ,amount|,double| + V engage|,agricultural|ũ + V tie| + N tool|þ,#crop|ׯ,agricultural|ũ +ﲥ V spread|,agricultural|ũ + V spread|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,age|,aged| + N human|,aged| + N character|,(China|й) + N stone|ʯ,#AnimalHuman|,#listen|,waste| + N character|,(China|й) + V listen| + V listen| +ȡ V listen| + V listen| + N character|,(China|й) + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V disable|м,scope=listen| + N character|,(China|й) + ADJ aValue|ֵ,degree|̶,very| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + V fly| + V HaveContest| + N part|,%AnimalHuman|,mouth| + N waters|ˮ,ProperName|ר,(China|й) + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N text| + V CausePartMove|,PatientPartof=head|ͷ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N part|,%human|,bone|,#head|ͷ + N part|,%human|,#head|ͷ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,color|ɫ,white| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +򯾴 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,sincere|,desired| + V believe| + N beast|,humanized| + N beast|,humanized| + N part|,%human|,hair|ë +֦ N part|,%plant|ֲ,limb|֫ + N part|,%human|,hair|ë + N part|,%InsectWorm|,embryo| + N InsectWorm| + N beast|,poison| + ECHO sound| + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N InsectWorm| + N fish| + N fish| + N material|,?food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fish| + N fish| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +Ѳ N FlowerGrass|,?medicine|ҩ + N character|,(China|й) + N beast| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| +ɸ N part|,%fish|,flesh| + N facilities|ʩ,*foster|,#fish| + N fish| + N InsectWorm|,young| + N InsectWorm| + N character|,(China|й) +̵ N InsectWorm|,undesired|ݬ + N character|,(China|й) +ͳ N InsectWorm|,#disease| +ͳ没 N disease|,#InsectWorm| + N InsectWorm| +ʯ N stone|ʯ + N character|,(China|й) + N character|,(China|й) +ж N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N beast| + N humanized| + N beast| + N InsectWorm| + N character|,(China|й) + N fish| +׾ N phenomena|,#weather|,fake|α + N part|,%animal|,hair|ë,*stab| + V sting| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N attribute|,kind|,&InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| +ѵˮ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N character|,(China|й) + N beast| + N beast| + N humanized|,undesired|ݬ + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| + V deceive|ƭ + V WellKnown| + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N InsectWorm| + V CausePartMove| + V CausePartMove| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + V CausePartMove| + N character|,(China|й) + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N beast|,*fly| + N character|,(China|й) + N beast|,undesired|ݬ + N beast|,young| + N character| + N character|,(China|й) + N beast|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N fish| + N character|,(China|й) + N beast|,*fly| + N clothing|,#body|,generic|ͳ + N InsectWorm| + N part|,%animal|,hand| + N bacteria|΢ + N beast| + N clothing|,#body| + N beast| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N beast|,humanized| + N InsectWorm| + N character|,(China|й) +з N fish| + V sting| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N part|,%InsectWorm|,embryo| + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) +˹ N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N human|,undesired|ݬ + N character|,(China|й) + N fish| + N character|,(China|й) + N InsectWorm| + V coil| + N beast| + ADJ aValue|ֵ,form|״,curved| + N fruit|ˮ + N fruit|ˮ,humanized| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N beast| + N humanized| +󸹬 N celestial| +󸹬۹ V win|ʤ + N medicine|ҩ + N beast| + N celestial| + N humanized| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N part|,%fish|,skin|Ƥ + N tool|þ,cubic|,*TakeOutOfWater| + V estimate| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N MusicTool| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N FlowerGrass|,?addictive|Ⱥ + V exhaust| + V disappear|ʧ + ADJ qValue|ֵ,amount|,many| + N part|,%inanimate|,mouth| +϶ N part|,%inanimate|,mouth| + V savor| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N tool|þ,cubic|,#study|ѧ,@put| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,calm|,desired| +ƶ ADJ aValue|ֵ,trueness|α,true|,desired| +ƺ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + V obey|ѭ + V believe| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +־ V engage| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N facilities|ʩ,space|ռ,linear|,@transmit| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,@LieDown|,@sit| + N tool|þ,#royal| + N tree| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N character|,surname|,human|,ProperName|ר + N MusicTool| +ϸ N music| + N character|,surname|,human|,ProperName|ר + N tool|þ,*catch|׽ס,#fish| + N clothing|,#head|ͷ + N tool|þ,cubic|,@put| + N tool|þ,*wipe| + N tool|þ,*wipe| + N MusicTool| + N tool|þ,cubic|,@put| + V beat| + N fact|,punish| + N part|,%machine| + N fittings|,%building| +· V endure|,content=hardship| + N MusicTool| + N tool|þ,*wipe| + N fact|,eat|,entertain|д +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д + N tool|þ,*catch|׽ס,#fish| + N MusicTool|,(China|й) + N part|,%tree|,skin|Ƥ + N tree| + V guess|² + N character|,(China|й) + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,cubic|,@put|,*clean|ʹ + N tree| + N tree|,mass| + N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,*eat| + N tree| +ñ N clothing|,#head|ͷ,#RainSnow|ѩ + N tree| + N tool|þ,*hold| + N part|,%vegetable|߲,embryo| + N part|,%implement|,viscera| + N tool|þ,cubic|,@put| +ʳ N food|ʳƷ +ʳư V unfortunate| + N MusicTool| + N MusicTool| + N character|,(China|й) + N MusicTool| + N attribute|,kind|,#persuade|Ȱ˵,&text| + V persuade|Ȱ˵ + N text|,*persuade|Ȱ˵ + N tool|þ,cubic|,@put| + N tree| + N tool|þ,space|ռ,@detain|ס,#animal| + N fire| + N tool|þ,cubic|,@put| + N character|,(China|й) + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N MusicTool| + ECHO sound| + ECHO sound| + N material|,#tree| + N part|,%plant|ֲ,skin|Ƥ + N human|,#occupation|ְλ,industrial| + N tree| + N human|,#occupation|ְλ,industrial| +Ƭ N human|,*please|ȡ +Ƭ N material|,#tree| + N tree| + N material|,#tree| +ϯ N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N facilities|ʩ,#liquid|Һ,space|ռ + N tool|þ,cubic|,@put|,#food|ʳƷ + N tool|þ,@sleep|˯ + V insert| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů +ӧ N human|,#occupation|ְλ,official| + N clothing|,#head|ͷ + V filter| + V roll| + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N tool|þ,cubic|,@put| + V filter| + N MusicTool| + N sound| + V recite|ж + N attribute|,pattern|ʽ,&character| + N character|,(China|й) + V transport| + V beat| + V grind|ĥ + N character|,surname|,human|,ProperName|ר + N clothing|,#foot| + N land|½,barren| +± N land|½,barren| + N attribute|,standard|׼,&entity|ʵ + N tool|þ,#weapon|,$AimAt|,$firing| + N tool|þ,*measure|,#mark|־ + V defeated| + V ill|̬ + N ship| + N character|,(China|й) + N ship| + N ship| + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%ship| + N character|,(China|й) + N ship| + N ship| + N part|,%ship|,head|ͷ + N part|,%ship|,tail|β + N ship|,mass| + N character|,(China|й) + N ship| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,tail|β + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N part|,%ship|,tail|β + N character|,(China|й) + N part|,%ship|,head|ͷ + N ship| + N character|,(China|й) + N character|,(China|й) + N weapon|,ship|,military| + N tool|þ,*cover|ڸ,#sleep|˯ + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V circle| + V wave|ڶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N character|,(China|й) + N clothing|,religion|ڽ + N character|,surname|,human|,ProperName|ר + N clothing| + N character|,(China|й) + N part|,%AnimalHuman|,viscera| + N trace|,#clothing| + N livestock| + N part|,%chemical|ѧ +ǻ N part|,%chemical|ѧ + N part|,%chemical|ѧ +Ȼ N part|,%chemical|ѧ + N chemical|ѧ + N human|,past| + N livestock| +ɹ N MusicTool| + N livestock| + N human|,past| + N part|,%chemical|ѧ +ʻ N part|,%chemical|ѧ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) +̵ N crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + V soothe|ο +ƽ V restrain|ֹ,politics| + N food|ʳƷ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + V sell| + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,brightness|,bright| +ȻһЦ V laugh|Ц + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,clearness|,clear| + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + V mix| +ۺ V mix| + V mix| + N food|ʳƷ + ADJ aValue|ֵ,concentration|Ũ,concentrated| +ݺ N tool|þ,sticky|,*fix|ס,*fasten|˩ + N tool|þ,sticky|,*fix|ס,*fasten|˩ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,taste|ζ,tough|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + PREP {LocationFin} + PREP {TimeFin} + CONJ {and|} + N character|,surname|,human|,ProperName|ר + N part|,%bird|,hair|ë +ë N part|,%bird|,hair|ë + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + V shut|ر +⶯ V shiver| +Ȼ ADJ aValue|ֵ,similarity|ͬ,alike| + V fly| + N bird| + N bird| + N material|,?tool|þ,#decorate|װ + V break|۶ + N character|,surname|,human|,ProperName|ר + N tool|þ,*break|۶ + V destroy| + V fly|,fast| + V walk| +Ȼ ADJ aValue|ֵ,posture|,gracious|,desired| +Ȼ V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + ADJ aValue|ֵ,posture|,gracious|,desired| + V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V recreation| + N part|,%bird|,hair|ë + N part|,%bird|,wing| + N disease|,#eye| + V detain|ס,police| + V fasten|˩ + N tool|þ,linear|,*guide|,#livestock| + ADV aValue|ֵ,degree|̶,extreme| + N part|,%AnimalHuman|,bone| + N part|,%entity|ʵ,heart| + N affairs|,engage| + N information|Ϣ,wrong|,undesired|ݬ + N shows| + N mark|־,military|,past| + N material|,?edible|ʳ,#crop|ׯ +Ƥ N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + N character|,surname|,human|,ProperName|ר + N music|,$sing| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,form|״,slanted| + N character|,(China|й) + V walk| + N character|,(China|й) + V walk| +ǰ V walk| + V SelfMoveInManner|ʽ + V SelfMoveInManner|ʽ + V shy| +Ȼ V shy| + V shy| + ADJ aValue|ֵ,color|ɫ,RedBrown| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| +ʯ N stone|ʯ,mine| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N medicine|ҩ,liquid|Һ + N medicine|ҩ,liquid|Һ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ + N medicine|ҩ + V buy|,commercial| + N drinks|Ʒ,$addict|Ⱥ + V sell|,commercial| + N material|,?edible|ʳ + N FlowerGrass| + V AppearanceChange|۱,scope=color|ɫ + N attribute|,appearance|,red|,&human| + N chemical|ѧ + N chemical|ѧ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N chemical|ѧ + V ize|̬ + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ + V dredge|ͨ,agricultural|ũ + V filter| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V salute|¾ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N character|,(China|й) + N character|,(China|й) + N material|,?food|ʳƷ +ඥ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N medicine|ҩ + N medicine|ҩ + V cut| + N material|,?food|ʳƷ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ + N drinks|Ʒ,$addict|Ⱥ + N food|ʳƷ + N bacteria|΢ + N fact|,*salute|¾,religion|ڽ + N material|,?edible|ʳ + V gather|ɼ,possession=fund|ʽ,commercial| + N drinks|Ʒ,$addict|Ⱥ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N livestock| + ADJ aValue|ֵ,taste|ζ,salty| + N material|,?food|ʳƷ,salty| + V sell|,commercial| + N ship| + V sell|,commercial| + V sell|,commercial| + V sell|,commercial| + ECHO sound| +Ȼ ECHO sound| + V ToAndFro| + V LookFor|Ѱ + ADJ aValue|ֵ,width|,narrow|խ +ü V CausePartMove|,PatientPartof=eye| + V wounded| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V jump| + V kick|߲ + V PutOn| + V PutOn| + N clothing|,#foot| + N clothing|,#foot| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,foot| + V sit| + V walk| + V walk| + V kick|߲ + N part|,%AnimalHuman|,#foot| + N part|,%AnimalHuman|,foot| +Ź N part|,%AnimalHuman|,bone|,#foot| + N part|,%AnimalHuman|,foot| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,foot| + N character|,(China|й) + V walk| + N character|,(China|й) + V sit| + V sit| + V disable|м,scope=walk| +˽ V disable|м,scope=walk| + V disable|м,scope=walk| + N human|,undesired|ݬ,*disable|м,#walk| + V disable|м,scope=walk| + N character|,(China|й) +ȭ N fact|,exercise| + N attribute|,distance|,&walk| + V upmove| +ΰ N tool|þ,*recreation| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V clean|ʹ,patient=facilities|ʩ,#royal| + V exposure|¶,#foot| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V rise| + V rise| + V FallDown| + N character|,(China|й) + V walk| + V walk| + V sit| + V jump| + V surpass|ǿ + V excited| + N part|,%AnimalHuman|,foot| +׹ N part|,%AnimalHuman|,bone| + V hesitate|ԥ +س V hesitate|ԥ + V hesitate|ԥ +鲻ǰ V hesitate|ԥ + V FallDown| + V fail|ʧ + V upmove| +ڽ V CausePartMove|,PatientPartof=foot| + V FallDown| + V GoRound|Χ + V walk| + V GoRound|Χ + V walk| + V CausePartMove|,PatientPartof=foot| + V roam| + V walk| + V kick|߲ + V follow| + N part|,%AnimalHuman|,foot| + V KeepOn|ʹ + V imitate|ģ + ADV aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V walk| + N character|,(China|й) + V FallDown| + N result|,wrong|,undesired|ݬ + V lavish|˷,patient=time|ʱ + V slack|͵ + V damage| + V damage| + V follow| + V kick|߲ + V walk| + V walk| + V engage| + V walk| + V walk| + V walk| + N facilities|ʩ,space|ռ,linear|,route|· +辶 N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,kind|,queer| + V hesitate|ԥ + V FallDown| + N attribute|,posture|,&livestock|,#kick|߲ + V fail|ʧ + N attribute|,posture|,&livestock|,#kick|߲ + N part|,%animal|,#skin|Ƥ,#limb|֫ + N part|,%beast|,foot| + V kick|߲ + V kick|߲ + N trace|,#SelfMove|,#CauseToMove|,#foot| + V damage| + V damage| + V surpass|ǿ + V surpass|ǿ + V jump| + V run| + N InsectWorm| + N beast| +Ƥ N part|,%beast|,skin|Ƥ,?clothing| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N tool|þ,*measure| + V unsatisfied| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N part|,%inanimate|,edge| + N stationery|ľ,@write|д + N tool|þ,cubic|,@put|,#drinks|Ʒ + N tool|þ,cubic|,@put|,#drinks|Ʒ +サ ADJ aValue|ֵ,circumstances|,happy|,desired| + V shiver| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N character|,surname|,human|,ProperName|ר + V slander|̰ + V ExpressAgainst|Ǵ + V slander|̰ + V pant| + V talk|̸ + V MakeUp|ױ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ů N human|,female|Ů,beautiful| +ױ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N human|,male|,beautiful| + N thunder| + N CloudMist| + N thunder| + V WeatherFine| + V calm| +ɫ V calm| +¹ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N RainSnow|ѩ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + N RainSnow|ѩ,many| + N RainSnow|ѩ,many| + N CloudMist| + N RainSnow|ѩ + N weapon|,$firing| + V replace|,patient=part| + N time|ʱ,#young| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ + V replace|,patient=part| + N time|ʱ,#young| + N human|,young| + N time|ʱ,#young| + ADJ aValue|ֵ,fullness|,empty| + V CausePartMove|,PatientPartof=mouth| + ADJ CausePartMove|,PatientPartof=mouth| + V aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V endeavour| + V endeavour| + V endeavour| + N fish| + N beast| + N bird| + N bird| + N attribute|,ability|,able|,&human| + ADJ aValue|ֵ,content|,profound|,desired| + N character|,(China|й) + N bird| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V check| + N emotion|,undesired|ݬ,#hate| + N human|,enemy| + N tool|þ,#sound| + N tool|þ,*MakeSound| + V apply|ͿĨ,industrial| + N metal|,material| + V carve| + N tool|þ,*carve| +ɵ N tool|þ,*carve| + N tool|þ,*carve| + N clothing|,#head|ͷ,*protect| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,*cook| + N metal| + V sharpen|ʹ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + V BeRecovered|ԭ,StateIni=alive| + N fish| + N fish| +׳ N InsectWorm| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N food|ʳƷ,#fish| + N food|ʳƷ,#fish| + N fish| + N fish| + V situated| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,surname|,human|,ProperName|ר + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N fish| + N fish| + N fish| + N fish| + N bird| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N beast| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N part|,%animal|,tail|β + N fish| +Ŀ N fish| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N human| +ѹ¶ N human| + V reside|ס,lonely| + N fish| + N fish| + N fish| + N material| + N part|,%fish|,viscera| + N material| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,(China|й) + N place|ط,country|,ProperName|ר + N place|ط,country|,ProperName|ר +˹̹ N place|ط,ProperName|ר +˹̹ N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר + N tool|þ,@sit|,#livestock| + V interrogate|,police| + V interrogate|,police| +Ѷ V interrogate|,police| + V produce|,industrial| + N material| + N chemical|ѧ + N character|,(China|й) + N part|,%machine| + V prepare|׼,content=livestock| + N part|,%AnimalHuman|,bone| + N tool|þ,*gamble|IJ + N tool|þ,*gamble|IJ + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N bird| + N character|,(China|й) + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,leg| +⸴ ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,(China|й) +Ĺ N part|,%AnimalHuman|,bone| + N character|,(China|й) +Ź N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + V punish| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N humanized|,undesired|ݬ,evil| +Ȼ V attract| +Ȼ V entice| + N attribute|,ability|,&attract| + ADJ aValue|ֵ,ability|,&attract| + N humanized|,#waterless|,undesired|ݬ,evil| + V dream|,undesired|ݬ + N beast| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N humanized|,undesired|ݬ,evil| + V entertain|д +Ͽ V entertain|д,patient=human| + V BeFull|Ա + V fulfil|ʵ + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰ + N humanized|,undesired|ݬ + N human|,*expect|,#eat| + N human|,undesired|ݬ,evil|,fierce| + N fact|,eat|,early| + N food|ʳƷ + N fact|,eat| + V MakeUp|ױ,scope=hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë +׿ N tool|þ,*perform|,#shows| + N part|,%human|,hair|ë + N time|ʱ,#young| + N time|ʱ,#young| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë + V apply|ͿĨ + ADJ aValue|ֵ,form|״,curved| + V FormChange|α,StateFin=curved| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,skin|Ƥ +޷ N part|,%human|,hair|ë +޽ N part|,%human|,hair|ë +޽ N part|,%human|,skin|Ƥ + N part|,%human|,hair|ë + N part|,%beast|,hair|ë +๷ N beast| + N character|,(China|й) + N mark|־,military| + V order| + N human|,military| + N human|,official|,military| + V fasten|˩ + N beast| +Ƥ N material|,?clothing| + N beast| + V ComeTogether| + N beast| +弯 V ComeTogether| + N beast| +¹ N beast| + N beast|,happy|,desired|,(China|й) + N beast|,happy|,desired|,(China|й) + V fight|,military| + V fight|,military| +鶷 V fight|,military| +ս V fight|,military| + N beast| +ţ N beast| + N beast| + N medicine|ҩ + N beast|,happy|,desired|,(China|й) + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +ɫ ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ + V dismiss| + V dismiss|,politics| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V slander|̰ + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N image|ͼ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| +Ȼ ADJ aValue|ֵ,brightness|,dark| +Ȼ V disheartened| +Ȼʧɫ V AppearanceChange|۱,scope=color|ɫ,StateFin=dark| +Ȼʧɫ V BeBad|˥ +Ȼ V sorrowful| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + V ill|̬ + N sound|,#sleep|˯ + N sound|,#sleep|˯ +˯ V sleep|˯ diff --git a/java/WordSimilarity/dict/semdict.dat b/java/WordSimilarity/dict/semdict.dat new file mode 100644 index 0000000..e3242ee --- /dev/null +++ b/java/WordSimilarity/dict/semdict.dat @@ -0,0 +1,224 @@ + 75 [desired|] + 76 [undesired|ݬ] + 81 [desired|] + 101 [undesired|ݬ] + 104 [undesired|ݬ,#medical|ҽ] + 105 [disease|,undesired|ݬ,#medical|ҽ] + 106 [disease|,undesired|ݬ,#medical|ҽ] + 107 [disease|,undesired|ݬ,#medical|ҽ] + 108 [disease|,undesired|ݬ,#medical|ҽ] + 109 [disease|,undesired|ݬ,#medical|ҽ] + 110 [disease|,undesired|ݬ,#medical|ҽ] + 111 [disease|,undesired|ݬ,#medical|ҽ] + 112 [disease|,undesired|ݬ,#medical|ҽ] + 113 [disease|,undesired|ݬ,#medical|ҽ] + 114 [disease|,undesired|ݬ,#medical|ҽ] + 115 [disease|,undesired|ݬ,#medical|ҽ] + 116 [disease|,undesired|ݬ,#medical|ҽ] + 117 [disease|,undesired|ݬ,#medical|ҽ] + 118 [disease|,undesired|ݬ,#medical|ҽ] + 119 [disease|,undesired|ݬ,#medical|ҽ] + 121 [undesired|ݬ] + 122 [undesired|ݬ] + 123 [undesired|ݬ] + 124 [undesired|ݬ] + 125 [undesired|ݬ] + 126 [undesired|ݬ] + 127 [undesired|ݬ] + 128 [undesired|ݬ] + 129 [undesired|ݬ] + 131 [undesired|ݬ] + 135 [undesired|ݬ] + 142 [desired|] + 149 [undesired|ݬ] + 168 [desired|] + 262 [crime|] + 263 [crime|] + 264 [crime|] + 266 [commercial|] + 272 [#GetMarried|] + 274 [commercial|] + 284 [commercial|] + 286 [commercial|] + 289 [#GetMarried|] + 292 [commercial|] + 337 [instrument=leg|,instrument=foot|] + 338 [instrument=leg|,instrument=foot|] + 339 [instrument=leg|,instrument=foot|] + 340 [instrument=leg|,instrument=foot|,instrument=hand|] + 343 [location=#liquid|Һ] + 344 [#liquid|Һ] + 345 [location=sky|] + 492 [undesired|ݬ] + 511 [sport|] + 512 [SelfMove|] + 514 [undesired|ݬ] + 515 [undesired|ݬ] + 533 [medical|ҽ] + 545 [#wealth|Ǯ] + 735 [military|,police|] + 736 [medical|ҽ] + 814 [#time|ʱ,#space|ռ] + 815 [!appearance|] + 816 [*alive|,!age|,*die|,*metabolize|л] + 817 [!sex|Ա,*AlterLocation|ռλ,*StateMental|״̬] + 818 [!name|,!wisdom|ǻ,!ability|,!occupation|ְλ,*act|ж] + 819 [fake|α] + 820 [^*GetKnowledge|֪] + 821 [^*GetKnowledge|֪] + 822 [$foster|,~$consume|ȡ,~?edible|ʳ] + 823 [*fly|,~$consume|ȡ,~?edible|ʳ] + 824 [~undesired|ݬ] + 825 [*swim|,#waters|ˮ,~$consume|ȡ,~?edible|ʳ] + 826 [^*SelfMove|,^*StateMental|״̬] + 827 [$planting|ֲ,?material|,#edible|ʳ] + 828 [#wood|ľ,?material|] + 829 [~$planting|ֲ,~odor|ζ,~color|ɫ,~prettiness|,~*decorate|װ] + 830 [$planting|ֲ,?edible|ʳ,$consume|ȡ] + 831 [$planting|ֲ,$consume|ȡ,?edible|ʳ,#tree|] + 832 [~?edible|ʳ] + 833 [~*CauseToDo|ʹ,#disease|,#medical|ҽ,~undesired|ݬ] + 834 [^*alive|,^*die|,^*metabolize|л] + 836 [space|ռ,#lights|,#WeatherChange|] + 837 [space|ռ,#animate|,+event|¼] + 838 [#LandVehicle|,+VehicleGo|ʻ] + 839 [space|ռ,liquid|Һ,#water|ˮ,#ship|,+VehicleGo|ʻ,#fish|,+swim|] + 840 [space|ռ,gas|,#weather|,#aircraft|,#bird|,+fly|] + 841 [space|ռ] + 842 [*flow|,#waters|ˮ] + 844 [cold|,#liquid|Һ,StateChange|̬] + 845 [material|,~heavy|] + 846 [material|,#tree|,?building|,?furniture|Ҿ,$burn|,$lighting|ȼ] + 847 [*lighting|ȼ,*burn|,hot|] + 848 [~?material|] + 849 [#WeatherChange|,#celestial|] + 850 [liquid|Һ,#WeatherBad|] + 851 [gas|,#WeatherBad|] + 852 [gas|] + 853 [#electricity|] + 854 [!odor|ζ,#smell|,gas|] + 855 [#listen|,$transmit|] + 856 [?material|,$transmit|] + 857 [!color|ɫ,$transmit|,#illuminate|,#celestial|,#electricity|,#look|] + 858 [#lights|] + 859 [$create|,^$GiveBirth|!quality|,!price|۸,#material|,#instrument|,#commercial|] + 860 [!pattern|ʽ,!color|ɫ,#sex|Ա,$PutOn|,$StripOff|ȥ] + 861 [!taste|ζ,#livestock|,#fish|,#bird|,#vegetable|߲,#fruit|ˮ,$consume|ȡ,*feed|ι] + 862 [$cook|,$eat|] + 863 [$drink|,liquid|Һ] + 864 [medical|ҽ,*cure|ҽ,#disease|,#animate|] + 865 [material|] + 866 [expensive|,undesired|ݬ,$addict|Ⱥ,~#crime,|,~#police|] + 867 [$build|] + 868 [space|ռ,+reside|ס] + 869 [%house|] + 871 [$use|] + 872 [~*produce|] + 873 [*calculate|,#information|Ϣ,#software|] + 874 [space|ռ,#route|·,$TakeVehicle|,$drive|Ԧ,*transport|,*AlterLocation|ռλ] + 875 [#land|½,*VehicleGo|ʻ] + 876 [#waters|ˮ,*VehicleGo|ʻ] + 877 [#sky|,*fly|] + 878 [#family|,$decorate|װ] + 880 [!color|ɫ,!thickness|,#PenInk|ī,~*write|д,~*wrap|] + 881 [#paper|ֽ,*write|д,*copy|д] + 882 [*recreation|,*perform|,#music|,#entertainment|] + 883 [*exercise|,#compete|,#physique|,#sport|] + 884 [$use|] + 885 [#military|,#police|,#country|,*attack|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 886 [#computer|,#information|Ϣ,$compile|༭] + 887 [*produce|,*build|,*forge|α,#artifact|˹] + 888 [#value|ֵ,#commercial|] + 889 [$spend|,#money|,commercial|] + 890 [$spend|,#money|] + 891 [$earn|׬,$give|,$obtain|õ,#money|] + 892 [$earn|׬,*buy|,#sell|,$SetAside|] + 893 [*buy|] + 894 [precious|,expensive|,$SetAside|] + 895 [$read|,$compile|༭,$write|д,#information|Ϣ] + 896 [$compile|༭,$publish|,$read|,#time|ʱ,*disseminate|,#information|Ϣ] + 897 [+record|¼,+write|д,$read|] + 898 [#commercial|,#buy|,#sell|,#money|,wealth|Ǯ,#price|۸] + 899 [+record|¼,+write|д,#wealth|Ǯ] + 900 [$post|ʼ,~#friend|,~#family|] + 901 [*express|ʾ,#information|Ϣ] + 902 [!form|״] + 903 [#StateMental|״̬] + 904 [$cherish|Ļ,#feeling|,#AlterEmotion|,abstract|] + 905 [$undergo|,$MakeOwnKnowledge|ʹҸ֪,abstract|] + 906 [#volition|,abstract|] + 907 [$think|˼,abstract|] + 909 [$use|,#act|ж,#purpose|Ŀ] + 910 [*act|ж] + 911 [#act|ж] + 914 [#information|Ϣ] + 915 [#knowledge|֪ʶ,#recognition|֪״̬,!content|,#AlterKnowledge|֪,abstract|] + 916 [$read|,*express|ʾ,*teach|,*communicate|,#thinking|˼] + 919 [%language|] + 920 [%language|] + 921 [$read|,$write|д,$compile|༭,*express|ʾ] + 922 [text|] + 923 [$listen|,$perform|,$compile|༭,$entertainment|] + 924 [$look|,$draw|] + 925 [$perform|,$compile|༭,~entertainment|] + 927 [*control|] + 929 [$obey|ѭ,$disobey|Υ,police|] + 930 [$discuss|,$debate|,$decide|,$conduct|ʵʩ,~#associate|] + 931 [$have|,*use|,abstract|] + 932 [$bear|е,abstract|] + 933 [abstract|] + 935 [$engage|] + 940 [abstract|] + 941 [medical|ҽ,$cure|ҽ,#medicine|ҩ,undesired|ݬ,~#die|,~#bacteria|΢] + 942 [#human|,*ExistAppear|,*perish|,$establish|,*ActGeneral|,*AlterGeneral|,^*SelfMove|,^*metabolize|л,space|ռ] + 943 [#official|] + 944 [military|,#weapon|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 945 [*engage|,#affairs|] + 946 [*engage|,#affairs|] + 947 [#computer|,+read|,+communicate|,+post|ʼ,#information|Ϣ,commercial|] + 948 [+event|¼] + 949 [+event|¼] + 950 [abstract|] + 951 [abstract|] + 953 [necessary|Ҫ] + 1445 [#organization|֯,#employee|Ա] + 1446 [$employ|] + 1447 [#produce|,#repair|] + 1448 [#dig|ھ,#produce|,industrial|] + 1449 [#organization|֯,#employee|Ա,+produce|,+repair|,industrial|] + 1450 [#plant|ֲ,#planting|ֲ] + 1451 [#money|,#buy|,#sell|] + 1452 [#teach|,#study|ѧ] + 1453 [#cure|ҽ,#disease|] + 1454 [#compile|༭,#translate|] + 1455 [#perform|,#draw|,#carve|,#TakePicture|] + 1456 [#exercise|,~#SportTool|˶,~#compete|] + 1458 [~#manage|,~#country|] + 1459 [#politics|] + 1460 [#crime|] + 1461 [~#attack|,#fight|,#defend|] + 1463 [+alive|,~$ProvideFor|] + 1464 [~$FondOf|ϲ,~$loyal|Т] + 1465 [~$hate|] + 1466 [#police|] + 1474 [place|ط,#human|,#politics|] + 1475 [#country|,#organization|֯] + 1478 [#agricultural|ũ] + 1479 [space|ռ,linear|] + 1480 [character|] + 1492 [*crawl|,*swim|] + 1493 [*HoldInArm|§] + 1494 [*pick|ʰ,*HoldWithHand|,*crawl|,*catch|׽ס] + 1495 [*walk|,*run|,*jump|,*swim|,*kick|߲,*stand|վ] + 1496 [*walk|,*run|,*jump|,*crawl|,*swim|,*kick|߲,*stand|վ] + 1497 [*fly|] + 1498 [linear|] + 1499 [*HoldInMouth|,+consume|ȡ,+GoInto|,+GoOut|ȥ,+GoThrough|] + 1500 [*look|] + 1504 [$GiveBirth|] + 1506 [$consume|ȡ] + 1508 [abstract|] + 1517 [season|,warm|,~beautiful|,#weather|,#planting|ֲ] + 1518 [season|,hot|,#weather|,#RainSnow|ѩ] + 1519 [season|,chilly|,~beautiful|,#weather|,gather|ɼ,#crop|ׯ] + 1520 [season|,cold|,#weather|,#RainSnow|ѩ] diff --git a/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Primitive.java b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Primitive.java new file mode 100644 index 0000000..62a2108 --- /dev/null +++ b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Primitive.java @@ -0,0 +1,165 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +import java.io.BufferedReader; +import java.io.FileReader; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * ԭ + * + * @author Yingqiang Wu + * @version 1.0 + */ +public class Primitive { + /** + * DOCUMENT ME! + */ + public static Map ALLPRIMITIVES = new HashMap(); + + /** + * DOCUMENT ME! + */ + public static Map PRIMITIVESID = new HashMap(); + /** + * ԭļ + */ + /* ľ̬һαõʱִУִֻһ飬ʼһЩֵжȫֹ*/ + static { + String line = null; + + try { + BufferedReader reader = new BufferedReader(new FileReader( + "dict/WHOLE.DAT")); + line = reader.readLine(); + + while (line != null) { + line = line.trim().replaceAll("\\s+", " "); + + String[] strs = line.split(" "); + int id = Integer.parseInt(strs[0]); + String[] words = strs[1].split("\\|"); + String english = words[0]; + String chinaese = strs[1].split("\\|")[1]; + int parentId = Integer.parseInt(strs[2]); + ALLPRIMITIVES.put(id, new Primitive(id, chinaese, parentId)); + //ALLPRIMITIVES.put(id, new Primitive(id, english, parentId)); + PRIMITIVESID.put(chinaese, id); + PRIMITIVESID.put(english, id); + // System.out.println("add: " + primitive + " " + id + " " + parentId); + line = reader.readLine(); + } + } catch (Exception e) { + // TODO Auto-generated catch block + System.out.println(line); + e.printStackTrace(); + } + } + + private String primitive; + + /** + * id number + */ + private int id; + private int parentId; + + /** + * Creates a new Primitive object. + * + * @param id + * DOCUMENT ME! + * @param primitive + * DOCUMENT ME! + * @param parentId + * DOCUMENT ME! + */ + public Primitive(int id, String primitive, int parentId) { + this.id = id; + this.parentId = parentId; + this.primitive = primitive; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getPrimitive() { + return primitive; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public int getId() { + return id; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public int getParentId() { + return parentId; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public boolean isTop() { + return id == parentId; + } + + /** + * һԭиԭֱλá + * + * @param primitive + * @return ҵԭûвҵ򷵻һlist + */ + public static List getParents(String primitive) { + List list = new ArrayList(); + + // get the id of this primitive + Integer id = PRIMITIVESID.get(primitive); + + if (id != null) { + Primitive parent = ALLPRIMITIVES.get(id); + list.add(id); + while (!parent.isTop()) { + list.add(parent.getParentId()); + parent = ALLPRIMITIVES.get(parent.getParentId()); + } + } + + return list; + } + /** + * + * @param primitive + * @return + */ + public static boolean isPrimitive(String primitive){ + return PRIMITIVESID.containsKey(primitive); + } + + /** + * DOCUMENT ME! + * + * @param args + * DOCUMENT ME! + */ + public static void main(String[] args) { + } +} diff --git a/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Word.java b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Word.java new file mode 100644 index 0000000..29c7363 --- /dev/null +++ b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/Word.java @@ -0,0 +1,203 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + + +/** + * һ + * + * @author Yingqiang Wu + * @version 1.0 + */ +public class Word { + private String word; + private String type; + + /** + * һԭ + */ + private String firstPrimitive; + + /** + * ԭ + */ + private List otherPrimitives = new ArrayList(); + + /** + * listǿգôһʡ бŵǸʵһԭʽ + */ + private List structuralWords = new ArrayList(); + + /** + * ôʵĹϵԭkey: ϵԭ value ԭ|()һб + */ + private Map> relationalPrimitives = new HashMap>(); + + /** + * ôʵĹϵԭKey: ϵš value: ڸùϵŵһԭ|() + */ + private Map> relationSymbolPrimitives = new HashMap>(); + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getWord() { + return word; + } + /** + * ǷΪ + * @return + */ + public boolean isStructruralWord(){ + return !structuralWords.isEmpty(); + } + + /** + * DOCUMENT ME! + * + * @param word + * DOCUMENT ME! + */ + public void setWord(String word) { + this.word = word; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getType() { + return type; + } + + /** + * DOCUMENT ME! + * + * @param type + * DOCUMENT ME! + */ + public void setType(String type) { + this.type = type; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getFirstPrimitive() { + return firstPrimitive; + } + + /** + * DOCUMENT ME! + * + * @param firstPrimitive + * DOCUMENT ME! + */ + public void setFirstPrimitive(String firstPrimitive) { + this.firstPrimitive = firstPrimitive; + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public List getOtherPrimitives() { + return otherPrimitives; + } + + /** + * DOCUMENT ME! + * + * @param otherPrimitives + * DOCUMENT ME! + */ + public void setOtherPrimitives(List otherPrimitives) { + this.otherPrimitives = otherPrimitives; + } + + /** + * DOCUMENT ME! + * + * @param otherPrimitive + * DOCUMENT ME! + */ + public void addOtherPrimitive(String otherPrimitive) { + this.otherPrimitives.add(otherPrimitive); + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public List getStructruralWords() { + return structuralWords; + } + + /** + * DOCUMENT ME! + * + * @param structuralWords + * DOCUMENT ME! + */ + public void setStructruralWords(List structuralWords) { + this.structuralWords = structuralWords; + } + + /** + * DOCUMENT ME! + * + * @param structruralWord + * DOCUMENT ME! + */ + public void addStructruralWord(String structruralWord) { + this.structuralWords.add(structruralWord); + } + + /** + * DOCUMENT ME! + * + * @param key DOCUMENT ME! + * @param value DOCUMENT ME! + */ + public void addRelationalPrimitive(String key, String value) { + List list = relationalPrimitives.get(key); + + if (list == null) { + list = new ArrayList(); + list.add(value); + relationalPrimitives.put(key, list); + } else { + list.add(value); + } + } + public void addRelationSimbolPrimitive(String key,String value){ + List list = relationSymbolPrimitives.get(key); + + if (list == null) { + list = new ArrayList(); + list.add(value); + relationSymbolPrimitives.put(key, list); + } else { + list.add(value); + } + } + public Map> getRelationalPrimitives() { + return relationalPrimitives; + } + public Map> getRelationSimbolPrimitives() { + return relationSymbolPrimitives; + } +} diff --git a/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordSimilarity.java b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordSimilarity.java new file mode 100644 index 0000000..363ee78 --- /dev/null +++ b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordSimilarity.java @@ -0,0 +1,467 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + * ΪĿҪļṩƶȵһЩʽΪ̬ + * ̰߳ȫԶ̵߳á + * 㷨οģ ڣ֪Ĵʻƶȼ㡷.pdf + * @author Yingqiang Wu + * @version 1.0 + */ +public class WordSimilarity { + // ʿеľʣԭ + private static Map> ALLWORDS = new HashMap>(); + /** + * sim(p1,p2) = alpha/(d+alpha) + */ + private static double alpha = 1.6; + /** + * ʵʵƶȣԭȨ + */ + private static double beta1 = 0.5; + /** + * ʵʵƶȣԭȨ + */ + private static double beta2 = 0.2; + /** + * ʵʵƶȣϵԭȨ + */ + private static double beta3 = 0.17; + /** + * ʵʵƶȣϵԭȨ + */ + private static double beta4 = 0.13; + /** + * ԭƶһɴΪһȽСij. ʺ;ʵƶȣͬΪ1Ϊ0. + */ + private static double gamma = 0.2; + /** + * һǿֵֵƶȶΪһȽСij + */ + private static double delta = 0.2; + /** + * ޹ԭ֮ĬϾ + */ + private static int DEFAULT_PRIMITIVE_DIS = 20; + /** + * ֪е߼ + */ + private static String LOGICAL_SYMBOL = ",~^"; + /** + * ֪еĹϵ + */ + private static String RELATIONAL_SYMBOL = "#%$*+&@?!"; + /** + * ֪еţʣ + */ + private static String SPECIAL_SYMBOL = "{"; + /** + * Ĭϼļ + */ + static { + loadGlossary(); + } + + /** + * glossay.dat ļ + */ + public static void loadGlossary() { + String line = null; + BufferedReader reader = null; + try { + reader = new BufferedReader(new FileReader("dict/glossary.dat")); + line = reader.readLine(); + while (line != null) { + // parse the line + // the line format is like this: + // N place|ط,capital|,ProperName|ר,(the United Arab Emirates|) + line = line.trim().replaceAll("\\s+", " "); + String[] strs = line.split(" "); + String word = strs[0]; + String type = strs[1]; + // Ϊǰո񻮷֣һֵļӻȥ + String related = strs[2]; + for (int i = 3; i < strs.length; i++) { + related += (" " + strs[i]); + } + // Create a new word + Word w = new Word(); + w.setWord(word); + w.setType(type); + parseDetail(related, w); + // save this word. + addWord(w); + // read the next line + line = reader.readLine(); + } + } catch (Exception e) { + System.out.println("Error line: " + line); + // TODO Auto-generated catch block + e.printStackTrace(); + } finally { + try { + reader.close(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + } + + /** + * ֣ĽWord word. + * + * @param related + */ + public static void parseDetail(String related, Word word) { + // spilt by "," + String[] parts = related.split(","); + boolean isFirst = true; + boolean isRelational = false; + boolean isSimbol = false; + String chinese = null; + String relationalPrimitiveKey = null; + String simbolKey = null; + for (int i = 0; i < parts.length; i++) { + // Ǿʣſʼͽβ: (Bahrain|) + if (parts[i].startsWith("(")) { + parts[i] = parts[i].substring(1, parts[i].length() - 1); + // parts[i] = parts[i].replaceAll("\\s+", ""); + } + // ϵԭ֮Ķǹϵԭ + if (parts[i].contains("=")) { + isRelational = true; + // format: content=fact| + String[] strs = parts[i].split("="); + relationalPrimitiveKey = strs[0]; + String value = strs[1].split("\\|")[1]; // ֱȡΪֵ + word.addRelationalPrimitive(relationalPrimitiveKey, value); + + continue; + } + // ǹϵԭ + String[] strs = parts[i].split("\\|"); + // ʼĵһַȷǷΪԭϵ + int type = getPrimitiveType(strs[0]); + // IJֵĴ,ûĽ + if (strs.length > 1) { + chinese = strs[1]; + } + if (chinese != null + && (chinese.endsWith(")") || chinese.endsWith("}"))) { + chinese = chinese.substring(0, chinese.length() - 1); + } + // ԭ + if (type == 0) { + // ֮ǰһϵԭ + if (isRelational) { + word.addRelationalPrimitive(relationalPrimitiveKey, + chinese); + continue; + } + // ֮ǰһǷԭ + if (isSimbol) { + word.addRelationSimbolPrimitive(simbolKey, chinese); + continue; + } + if (isFirst) { + word.setFirstPrimitive(chinese); + isFirst = false; + continue; + } else { + word.addOtherPrimitive(chinese); + continue; + } + } + // ϵű + if (type == 1) { + isSimbol = true; + isRelational = false; + simbolKey = Character.toString(strs[0].charAt(0)); + word.addRelationSimbolPrimitive(simbolKey, chinese); + continue; + } + if (type == 2) { + // + if (strs[0].startsWith("{")) { + // ȥʼһַ "{" + String english = strs[0].substring(1); + // ȥа벿 "}" + if (chinese != null) { + word.addStructruralWord(chinese); + continue; + } else { + // ûIJ֣ʹӢĴ + word.addStructruralWord(english); + continue; + } + } + } + } + } + + /** + *

+ * ӢIJȷԭ + *

+ *

+ * 0-----Primitive
1-----Relational
2-----Special + *

+ * + * @param english + * @return һֵΪ123 + */ + public static int getPrimitiveType(String str) { + String first = Character.toString(str.charAt(0)); + if (RELATIONAL_SYMBOL.contains(first)) { + return 1; + } + if (SPECIAL_SYMBOL.contains(first)) { + return 2; + } + return 0; + } + + /** + * ƶ + */ + public static double simWord(String word1, String word2) { + if (ALLWORDS.containsKey(word1) && ALLWORDS.containsKey(word2)) { + List list1 = ALLWORDS.get(word1); + List list2 = ALLWORDS.get(word2); + double max = 0; + for (Word w1 : list1) { + for (Word w2 : list2) { + double sim = simWord(w1, w2); + max = (sim > max) ? sim : max; + } + } + return max; + } + System.out.println("дûб¼"); + return 0.0; + } + + /** + * ƶ + * @param w1 + * @param w2 + * @return + */ + public static double simWord(Word w1, Word w2) { + // ʺʵʵƶΪ + if (w1.isStructruralWord() != w2.isStructruralWord()) { + return 0; + } + // + if (w1.isStructruralWord() && w2.isStructruralWord()) { + List list1 = w1.getStructruralWords(); + List list2 = w2.getStructruralWords(); + return simList(list1, list2); + } + // ʵ + if (!w1.isStructruralWord() && !w2.isStructruralWord()) { + // ʵʵƶȷΪ4 + // ԭƶ + String firstPrimitive1 = w1.getFirstPrimitive(); + String firstPrimitive2 = w2.getFirstPrimitive(); + double sim1 = simPrimitive(firstPrimitive1, firstPrimitive2); + // ԭƶ + List list1 = w1.getOtherPrimitives(); + List list2 = w2.getOtherPrimitives(); + double sim2 = simList(list1, list2); + // ϵԭƶ + Map> map1 = w1.getRelationalPrimitives(); + Map> map2 = w2.getRelationalPrimitives(); + double sim3 = simMap(map1, map2); + // ϵƶ + map1 = w1.getRelationSimbolPrimitives(); + map2 = w2.getRelationSimbolPrimitives(); + double sim4 = simMap(map1, map2); + double product = sim1; + double sum = beta1 * product; + product *= sim2; + sum += beta2 * product; + product *= sim3; + sum += beta3 * product; + product *= sim4; + sum += beta4 * product; + return sum; + } + return 0.0; + } + + /** + * mapƶȡ + * + * @param map1 + * @param map2 + * @return + */ + public static double simMap(Map> map1, + Map> map2) { + if (map1.isEmpty() && map2.isEmpty()) { + return 1; + } + int total =map1.size() + map2.size(); + double sim = 0; + int count = 0; + for (String key : map1.keySet()) { + if (map2.containsKey(key)) { + List list1 = map1.get(key); + List list2 = map2.get(key); + sim += simList(list1, list2); + count++; + } + } + return (sim + delta * (total-2*count)) + / (total-count); + } + + /** + * Ƚϵƶ + * + * @param list1 + * @param list2 + * @return + */ + public static double simList(List list1, List list2) { + if (list1.isEmpty() && list2.isEmpty()) + return 1; + int m = list1.size(); + int n = list2.size(); + int big = m > n ? m : n; + int N = (m < n) ? m : n; + int count = 0; + int index1 = 0, index2 = 0; + double sum = 0; + double max = 0; + while (count < N) { + max = 0; + for (int i = 0; i < list1.size(); i++) { + for (int j = 0; j < list2.size(); j++) { + double sim = innerSimWord(list1.get(i), list2.get(j)); + if (sim > max) { + index1 = i; + index2 = j; + max = sim; + } + } + } + sum += max; + list1.remove(index1); + list2.remove(index2); + count++; + } + return (sum + delta * (big - N)) / big; + } + + /** + * ڲȽʣΪʣҲԭ + * + * @param word1 + * @param word2 + * @return + */ + private static double innerSimWord(String word1, String word2) { + boolean isPrimitive1 = Primitive.isPrimitive(word1); + boolean isPrimitive2 = Primitive.isPrimitive(word2); + // ԭ + if (isPrimitive1 && isPrimitive2) + return simPrimitive(word1, word2); + // + if (!isPrimitive1 && !isPrimitive2) { + if (word1.equals(word2)) + return 1; + else + return 0; + } + // ԭ;ʵƶ, ĬΪgamma=0.2 + return gamma; + } + + /** + * @param primitive1 + * @param primitive2 + * @return + */ + public static double simPrimitive(String primitive1, String primitive2) { + int dis = disPrimitive(primitive1, primitive2); + return alpha / (dis + alpha); + } + + /** + * ԭ֮ľ룬ԭûйͬڵ㣬ǵľΪ20 + * + * @param primitive1 + * @param primitive2 + * @return + */ + public static int disPrimitive(String primitive1, String primitive2) { + List list1 = Primitive.getParents(primitive1); + List list2 = Primitive.getParents(primitive2); + for (int i = 0; i < list1.size(); i++) { + int id1 = list1.get(i); + if (list2.contains(id1)) { + int index = list2.indexOf(id1); + return index + i; + } + } + return DEFAULT_PRIMITIVE_DIS; + } + + /** + * һ + * + * @param word + */ + public static void addWord(Word word) { + List list = ALLWORDS.get(word.getWord()); + + if (list == null) { + list = new ArrayList(); + list.add(word); + ALLWORDS.put(word.getWord(), list); + } else { + list.add(word); + } + } + + /** + * @param args + */ + public static void main(String[] args) throws Exception { + // TODO Auto-generated method stub + BufferedReader reader = new BufferedReader(new FileReader( + "dict/glossary.dat")); + Set set = new HashSet(); + String line = reader.readLine(); + while (line != null) { + // System.out.println(line); + line = line.replaceAll("\\s+", " "); + String[] strs = line.split(" "); + for (int i = 0; i < strs.length; i++) { + System.out.print(" " + strs[i]); + } + System.out.println(); + set.add(strs[1]); + line = reader.readLine(); + } + System.out.println(set.size()); + for (String name : set) { + System.out.println(name); + } + } +} diff --git a/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordType.java b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordType.java new file mode 100644 index 0000000..b9c9cda --- /dev/null +++ b/java/WordSimilarity/src/main/edu/buaa/edu/wordsimilarity/WordType.java @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +public enum WordType {PREFIX, + PREP, + ECHO, + EXPR, + SUFFIX, + PUNC, + N, + ADV, + CLAS, + COOR, + CONJ, + V, + STRU, + PP, + P, + ADJ, + PRON, + AUX, + NUM; +} diff --git a/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/PrimitiveTests.java b/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/PrimitiveTests.java new file mode 100644 index 0000000..e187e68 --- /dev/null +++ b/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/PrimitiveTests.java @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +import java.util.List; + +import junit.framework.TestCase; + + +/** + * DOCUMENT ME! + * + * @author Yingqiang Wu + * @version 1.0 + */ +public class PrimitiveTests extends TestCase { + /** + * test the method {@link Primitive#getParents(String)}. + * @note:Ѱԭе· + */ + public void test_getParents(){ + String primitive = ""; + List list = Primitive.getParents(primitive); + for(Integer i : list){ + System.out.println(i); + } + } +} diff --git a/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/WordSimilarityTests.java b/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/WordSimilarityTests.java new file mode 100644 index 0000000..590cae3 --- /dev/null +++ b/java/WordSimilarity/src/tests/edu/buaa/edu/wordsimilarity/WordSimilarityTests.java @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2008 SKLSDE(State Key Laboratory of Software Development and Environment, Beihang University)., All Rights Reserved. + */ +package edu.buaa.edu.wordsimilarity; + +import junit.framework.TestCase; + + +/** + * DOCUMENT ME! + * + * @author Yingqiang Wu + * @version 1.0 + */ +public class WordSimilarityTests extends TestCase { + public void test_loadGlossary(){ + WordSimilarity.loadGlossary(); + } + /** + * test the method {@link WordSimilarity#disPrimitive(String, String)}. + */ + /* ľ */ + public void test_disPrimitive(){ + // ƶȺеĴƶһǼƶȡ + int dis = WordSimilarity.disPrimitive("", ""); + System.out.println(" and dis : "+ dis); + } + + /* ƶȡٶ̫ˣҪĽ */ + public void test_simPrimitive(){ + double simP = WordSimilarity.simPrimitive("", ""); + System.out.println(" and sim : "+ simP); + } + + /* */ + public void test_simWord(){ + String word1 = ""; + String word2 = ""; + System.out.println("ƶ"); + double sim = WordSimilarity.simWord(word2, word1); + System.out.println(sim); + } + +} diff --git "a/java/WordSimilarity/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" "b/java/WordSimilarity/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\302\333\316\304.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..b5d9ed5fb4cb3b2ffd9aebd49a794e6ddbfa1a87 GIT binary patch literal 368769 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%0A9b18>-QXwhwOLZF^`1VKwRL$5lH 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 z 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%0DKNH**@j*S}d3%H(?;h;Z6x*L0_^YH$Xa&jWea z^E2-uMNzsHFrNpp5Ta|uLd3j`TDIb$L|B`i5`XXS+4g{C*z}ZG2#;&q12! z+g}UoF+C+6BBqm6iP3og6FsF&s`vt0vd#mT=qa^;#TTdrtn&aSdK!LqB&N@>P@M-b z@o7v;J=S6Q56l&x4z5{^OQ1)5zF6GEr$ZQH%r9B3bgN+I(s|$%j_F#)?*jOHwmpy? zFa8!v>iB!MJs@s~o&xK!4%;4ZS&L6om)PsTD6RDdD{^$-GD6j~-e90qJJm$RBuEgX z+Ns_M?QDC%k|F*^bdLA}FrNqY7&R{WI5C|h_0Z>m;^TJqRTAav^FZMBxb{`z?e=+4 zp4H>pSBduF^T4I?~N;re~0%a0>9vnza$N7aS@ddmFJ`e1` z9@oA~%1arqFs*xB`znK}+3R&&8rrYd;rvjd;2oDn8kOlOVu|RL>r3%H)j9|jOwAV{ z#ab`%5i#E)O5c2e&~xoG`KF$qeU)TL7_TtPYg|GH^*vaH#-;F^+u2vik^4Nj9v)Zq zn^0;Au88RnMW;Nj>Z;LKxn#if`_lntdP@BWjZ0A-jf)-F?VQJgH^6v>NndoF(s%xz z-2WscIKB}PUP6rmHJ-~*nJ%D5z zMzPL#+#Yemq{`@ikU{P<>S04BiXyK25i-e?V**S#1XU9bh4PNtQ_@pnUIB)S4q?)g z&jxm`Tq7*L#w%>Y!UNo#+It*?Zl~Xd!F8;9GDy_+0U>4k+$agC^&+onTzu++aixU^ zt^*lX7S~(>W_^a}M32iB=zfrLp>v~9oAAC=u09E}wvmO>nlY~++CqGb8qShILS1L! zy?;9iE5BtLEdR)q4(`SwyL}yM}PMr}6 z^6|d(sJTpZyLF*ZUpXEFm~aivS^7+=P!C!AN1bEs3lPb%h^M;0L1c~P zH8RdbbI@v)8-(XrGA81#WHU^|@{IxO@jb`kQ4d+?2IZ8D1Wb1;)I*N%8`Xw=zD!wr zkC9vZ5)8``uOOpUcn?f^9^$>v4MSl}!yrw;PHq|0^e}O3<8)t|NyYc52Q5Z}6_4kZ%TJ7ZMtMp-YR@8-*j7L|zxEV1t^8Uz zt?-^~1MLg!T=$$BtCH737*xD39Ix&m(zEV#__@V+|Df!`Q!3*MC$UmXKPNLy_XwD1 zY{>5SAex4~$=Z(f8!vryW6FQM(Y29`_{zH_qWDDp&r65c(10I55Sggm92p-T6an9KsnYKNv9m-W@RMAHZa92d0>OU_JJL zTCow2BCJI=0AQ*MOIQnqCF8YmxnkVKa~I1I;TII*dqnt)?5x00%;GUfMG;raHm_rn!XJvUps2PUnN;>jqb?9$7bg=HZ7A95*()rhz)k zF*HtY44k}X%{Y(Y=7h(ktKKrgV^t3vxA2U^s|EGZ^@4@X1B@yqKlE3}zHaXFfBe+J%jV6SJ#+o|;JWdR>qbUr&t%Rd R7R{b{zyU{}c+BjX{{chjMbiKP literal 0 HcmV?d00001 diff --git a/software/WHOLE.DAT b/software/WHOLE.DAT new file mode 100644 index 0000000..ac2da06 --- /dev/null +++ b/software/WHOLE.DAT @@ -0,0 +1,1618 @@ + 0 event|¼ 0 + 1 static|̬ 0 + 2 relation|ϵ 1 + 3 isa|Ƿǹϵ 2 + 4 be| 3 + 5 become|Ϊ 4 + 6 mean|ָ 4 + 7 BeNot| 3 + 8 possession|ϵ 2 + 9 own| 8 + 10 obtain|õ 9 + 11 receive| 9 + 12 BelongTo| 8 + 13 OwnNot| 8 + 14 lose|ʧȥ 13 + 15 InDebt| 14 + 16 owe|Ƿ 8 + 17 comparison|ȹϵ 2 + 18 BeSame|ͬ 17 + 19 equal| 18 + 20 BeSimilar| 18 + 21 differ|ͬ 17 + 22 worth|ֵ 17 + 23 WorthNot|ֵ 17 + 24 suit|ʹϵ 2 + 25 fit|ʺ 24 + 26 ServeAsFoil| 24 + 27 FitNot| 24 + 28 inclusive|̺ϵ 2 + 29 contain| 28 + 30 BeMember| 28 + 31 connective|ϵ 2 + 32 relate|й 31 + 33 depend| 32 + 34 RelateNot|޹ 31 + 35 BeIndependent| 34 + 36 BeOpposite| 34 + 37 CauseResult|ϵ 2 + 38 ResultIn| 37 + 39 ResultFrom|Ե 37 + 40 BaseOn| 37 + 41 influence|Ӱ 37 + 42 TimeOrSpace|ʱչϵ 2 + 43 situated| 42 + 44 facing| 42 + 45 LeadTo|ͨ 42 + 46 from| 42 + 47 BeNear| 46 + 48 BeAcross|ཻ 46 + 49 BeBeyond|Խ 46 + 50 arithmetic|ϵ 2 + 51 DoSum| 50 + 52 AmountTo|ܼ 50 + 53 state|״̬ 1 + 54 StatePhysical|״̬ 53 + 55 ExistAppear| 54 + 56 exist| 55 + 57 ExistNot| 55 + 58 appear| 55 + 59 exposure|¶ 58 + 60 happen| 55 + 61 begin|ʼ 54 + 62 BeNormal|̬ 54 + 63 certainty|δ̬ 62 + 64 fixed|Ѷ 63 + 65 unfixed|δ 63 + 66 ComeToWorld| 62 + 67 alive| 62 + 68 function| 67 + 69 grow|ɳ 62 + 70 pregnant| 62 + 71 GoOn| 62 + 72 withstand|ס 71 + 73 WithstandNot|ס 71 + 74 undergo| 62 + 75 enjoy| 74 + 76 suffer| 74 + 77 AptTo| 74 + 78 endure| 74 + 79 EndureNot| 74 + 80 UndergoNot| 62 + 81 BeGood|̬ 54 + 82 BeFull|Ա 81 + 83 BeWell|׳ 81 + 84 lucky| 81 + 85 prosper| 81 + 86 succeed|ɹ 81 + 87 win|ʤ 81 + 88 surpass|ǿ 81 + 89 WellKnown| 81 + 90 BeRecovered|ԭ 54 + 91 awake| 90 + 92 change| 54 + 93 AppearanceChange|۱ 92 + 94 StateChange|̬ 93 + 95 FormChange|α 93 + 96 QuantityChange| 92 + 97 BecomeMore| 96 + 98 surplus|ʣ 96 + 99 lack|ȱ 96 + 100 BecomeLess| 96 + 101 BeBad|˥ 92 + 102 tired|ƣ 101 + 103 HungryThirsty| 101 + 104 SufferFrom| 101 + 105 ill|̬ 104 + 106 wounded| 105 + 107 disable|м 105 + 108 labour|ٲ 105 + 109 mad| 105 + 110 paralyse|̱ 105 + 111 painful|ʹ 105 + 112 dizzy| 105 + 113 twitch|鴤 105 + 114 bleed|Ѫ 105 + 115 swollen| 105 + 116 fever| 105 + 117 StomachTrouble|֢ 105 + 118 pant| 105 + 119 inflamed| 105 + 120 itch| 105 + 121 OutOfOrder| 101 + 122 decline|˥ 101 + 123 unfortunate| 101 + 124 fail|ʧ 101 + 125 err| 124 + 126 defeated| 124 + 127 inferior| 101 + 128 end|ս 92 + 129 die| 128 + 130 finish| 128 + 131 perish| 128 + 132 due| 128 + 133 WeatherChange| 92 + 134 WeatherFine| 133 + 135 WeatherBad| 133 + 136 ChangeNot| 54 + 137 disappear|ʧ 54 + 138 StateMental|״̬ 53 + 139 feeling| 138 + 140 cherish|Ļ 139 + 141 excited| 139 + 142 FeelingByGood| 139 + 143 AtEase| 142 + 144 calm| 143 + 145 joyful|ϲ 142 + 146 satisfied| 142 + 147 FeelNoQualms| 142 + 148 shameless|û 142 + 149 FeelingByBad| 139 + 150 uneasy| 149 + 151 GuiltilyConscious| 149 + 152 unsatisfied| 149 + 153 melancholy| 149 + 154 upset| 149 + 155 sad|dz 149 + 156 sorrowful| 149 + 157 fear| 149 + 158 surprise| 149 + 159 flurried| 149 + 160 worried|ż 149 + 161 angry| 149 + 162 disheartened| 149 + 163 repent|û 149 + 164 shy| 149 + 165 embarrassed|Ϊ 149 + 166 disappointed|ʧ 149 + 167 Attitude|̬ 138 + 168 AttitudeByGood|̬ 167 + 169 FondOf|ϲ 168 + 170 like|ϧ 169 + 171 love| 169 + 172 PayAttention|ע 168 + 173 ParticularAbout| 172 + 174 respect| 168 + 175 loyal|Т 168 + 176 admire|Ľ 168 + 177 jealous|ʼ 176 + 178 grateful|м 168 + 179 agree|ͬ 168 + 180 ThinkOf|˼ 168 + 181 AttitudeByBad|̬ 167 + 182 sorry|ϧ 181 + 183 pity| 181 + 184 disgust| 181 + 185 stupefied|ľȻ 181 + 186 blame|Թ 181 + 187 hate| 181 + 188 forgive|ԭ 181 + 189 TolerateNot| 181 + 190 regret|Ǹ 181 + 191 despise| 181 + 192 disloyal| 181 + 193 disagree|ͬ 181 + 194 doubt| 181 + 195 volition| 138 + 196 expect| 195 + 197 need| 195 + 198 willing|Ը 195 + 199 unwilling|Ը 195 + 200 GrudgeNot| 195 + 201 grudge| 195 + 202 dare| 195 + 203 hesitate|ԥ 195 + 204 recognition|֪״̬ 138 + 205 HaveKnowledge|֪ 204 + 206 perception|֪ 205 + 207 know|֪ 205 + 208 understand| 207 + 209 regard|Ϊ 205 + 210 believe| 205 + 211 remember|ǵ 205 + 212 BeAble|ܹ 205 + 213 dream| 205 + 214 NoKnowledge|֪ 204 + 215 ignorant|֪ 214 + 216 forget| 214 + 217 misunderstand| 204 + 218 confuse| 217 + 219 BeUnable| 204 + 220 act|ж 0 + 221 ActGeneral| 220 + 222 start|ʼ 221 + 223 do| 221 + 224 try| 223 + 225 endeavour| 223 + 226 VieFor| 223 + 227 RashlyAct| 223 + 228 venture|ð 227 + 229 cooperate| 223 + 230 repeat|ظ 223 + 231 pretend|װ 223 + 232 engage| 223 + 233 bear|е 232 + 234 undertake| 233 + 235 conduct|ʵʩ 223 + 236 prepare|׼ 223 + 237 respond|Ӧ 223 + 238 DoNot| 221 + 239 refuse| 238 + 240 evade|ر 239 + 241 slack|͵ 238 + 242 cease|ͣ 221 + 243 GiveUp| 242 + 244 pause|ͣ 242 + 245 rest|Ϣ 242 + 246 sleep|˯ 245 + 247 wait|ȴ 221 + 248 ActSpecific|ʵ 220 + 249 AlterGeneral| 248 + 250 alter|ı 249 + 251 control| 249 + 252 manage| 251 + 253 handle| 251 + 254 arrange| 251 + 255 stabilize|ʹ 249 + 256 AlterSpecific|ʵ 248 + 257 AlterRelation|ϵ 256 + 258 AlterPossession| 257 + 259 take|ȡ 258 + 260 seek|ıȡ 259 + 261 beg| 260 + 262 steal|͵ 259 + 263 rob| 259 + 264 cheat|ƭ 259 + 265 earn|׬ 259 + 266 buy| 259 + 267 collect| 259 + 268 levy| 267 + 269 borrow| 259 + 270 gather|ɼ 259 + 271 occupy|ռ 259 + 272 MarryFrom|Ȣ 259 + 273 TakeBack|ȡ 259 + 274 redeem| 273 + 275 give| 258 + 276 provide| 275 + 277 GiveAsGift| 275 + 278 grant| 277 + 279 donate| 277 + 280 submit| 275 + 281 return| 275 + 282 recompense| 281 + 283 issue|ַ 275 + 284 sell| 275 + 285 lend| 275 + 286 pawn|Ѻ 275 + 287 PassOn| 275 + 288 pay| 275 + 289 MarryTo| 275 + 290 abandon| 275 + 291 exchange| 258 + 292 OnCredit| 258 + 293 AlterIsa|Ƿ 257 + 294 CauseToBe|ʹ֮ 293 + 295 RegardAs| 294 + 296 naming| 294 + 297 replace| 294 + 298 CauseNotToBe|ʹ֮ 293 + 299 dismiss| 298 + 300 AlterComparison| 257 + 301 CompareTo| 300 + 302 MakeEqual|ʹ 300 + 303 AlterFitness| 257 + 304 obey|ѭ 303 + 305 surrender| 304 + 306 coordinate|Э 303 + 307 disobey|Υ 303 + 308 AlterInclusion| 257 + 309 include| 308 + 310 discharge| 308 + 311 withdraw|˳ 308 + 312 classify| 308 + 313 AlterConnection| 257 + 314 tie| 313 + 315 connect| 314 + 316 fasten|˩ 315 + 317 mix| 314 + 318 merge|ϲ 314 + 319 associate| 314 + 320 ally| 319 + 321 collude| 319 + 322 reconcile| 319 + 323 SeekRefuge|Ͷ 319 + 324 meet| 319 + 325 GetMarried|] 319 + 326 mating| 319 + 327 separate| 313 + 328 disconnect| 327 + 329 farewell| 327 + 330 AlterCauseResult| 257 + 331 CauseAffect|Ⱦ 330 + 332 incur| 330 + 333 AlterLocation|ռλ 257 + 334 SelfMove| 333 + 335 SelfMoveInManner|ʽ 334 + 336 roam| 335 + 337 walk| 335 + 338 run| 335 + 339 jump| 335 + 340 crawl| 335 + 341 slide| 335 + 342 roll| 335 + 343 swim| 335 + 344 flow| 335 + 345 fly| 335 + 346 float|Ư 335 + 347 VehicleGo|ʻ 335 + 348 circulate|ѭ 335 + 349 SelfMoveInDirection| 334 + 350 ToAndFro| 349 + 351 come| 350 + 352 go|ȥ 350 + 353 LeaveFor|ǰ 350 + 354 GoUp|ȥ 349 + 355 rise| 354 + 356 climb|ʵ 354 + 357 GoDown|ȥ 349 + 358 fall| 357 + 359 sink|³ 357 + 360 GoForward|ǰ 349 + 361 GoBackward| 349 + 362 GoInto| 349 + 363 GoOut|ȥ 349 + 364 leak|© 363 + 365 jet| 363 + 366 spill| 363 + 367 leave|뿪 349 + 368 flee| 367 + 369 escape| 367 + 370 approach|ӽ 349 + 371 chase|׷ 370 + 372 follow| 371 + 373 disperse|ɢ 349 + 374 ComeTogether| 349 + 375 GoThrough| 349 + 376 cross|Խ 375 + 377 GoBack| 349 + 378 GoRound|Χ 349 + 379 TurnRound| 378 + 380 circle| 378 + 381 MoveInFixedPosition|λ 334 + 382 wave|ڶ 381 + 383 shiver| 381 + 384 rotate|ת 381 + 385 twine| 381 + 386 PartSelfMove| 381 + 387 stand|վ 386 + 388 arise| 386 + 389 sit| 386 + 390 LieDown| 386 + 391 FallDown| 386 + 392 kick|߲ 386 + 393 tilt|б 386 + 394 lean|п 393 + 395 upmove| 386 + 396 CeaseSelfMove|ֹ 334 + 397 stay|ͣ 396 + 398 arrive| 396 + 399 reside|ס 396 + 400 CauseToMove| 333 + 401 CauseToMoveInManner|ʽ 400 + 402 release|ͷ 401 + 403 TakeAway|ᶯ 401 + 404 put| 401 + 405 pile|ѷ 404 + 406 store| 401 + 407 SetAside| 406 + 408 install|װ 401 + 409 dismount|ж 401 + 410 load|װ 401 + 411 drive|Ԧ 401 + 412 CauseToMoveInDirection| 400 + 413 pull| 412 + 414 push| 412 + 415 MoveItUp| 412 + 416 lift| 415 + 417 hang| 415 + 418 MoveItDown| 412 + 419 spray| 418 + 420 swallow| 418 + 421 drop|Ͷ 418 + 422 MoveItBack| 412 + 423 MoveItInto| 412 + 424 inhale| 423 + 425 insert| 423 + 426 soak| 423 + 427 inlay|Ƕ 423 + 428 fill| 423 + 429 bury| 423 + 430 MoveItOut| 412 + 431 drain|ų 430 + 432 vomit|³ 430 + 433 exhale| 430 + 434 dump| 430 + 435 PickOut|γ 430 + 436 SqueezeOut| 430 + 437 MoveItAway|Զ 412 + 438 throw| 437 + 439 send| 437 + 440 shoot| 439 + 441 transmit| 439 + 442 transport| 439 + 443 post|ʼ 439 + 444 expel| 439 + 445 exile| 444 + 446 spread| 412 + 447 assemble|ۼ 412 + 448 CauseToMoveInFixedPosition|λ 400 + 449 shake|ҡ 448 + 450 reverse|ߵ 448 + 451 turn|Ťת 448 + 452 coil| 448 + 453 surround|Χ 452 + 454 CausePartMove| 448 + 455 OpenShut| 400 + 456 open| 455 + 457 shut|ر 455 + 458 CeaseCauseTOMove|ֹ 333 + 459 hold| 458 + 460 pick|ʰ 459 + 461 HoldWithHand| 459 + 462 PropUp|֧ 459 + 463 bring|Я 459 + 464 HoldInMouth| 459 + 465 HoldInArm|§ 459 + 466 CarryOnBack| 459 + 467 TakeOutOfWater| 459 + 468 catch|׽ס 458 + 469 detain|ס 458 + 470 block|ס 458 + 471 fix|ס 458 + 472 SupportWeight|ס 458 + 473 AimAt| 333 + 474 AlterTimePosition|ʱλ 257 + 475 pass|ȹ 474 + 476 AlterQuantity| 257 + 477 add| 476 + 478 subtract| 476 + 479 exhaust| 476 + 480 economize|ʡ 476 + 481 AlterState|״̬ 256 + 482 AlterPhysical|䱾 481 + 483 CauseToExist|ʹ 482 + 484 create| 483 + 485 GiveBirth| 484 + 486 produce| 484 + 487 cook| 486 + 488 compile|༭ 486 + 489 build| 484 + 490 forming|γ 484 + 491 establish| 484 + 492 forge|α 484 + 493 CauseToAppear| 483 + 494 reveal|¶ 493 + 495 StripOff|ȥ 493 + 496 AlterStateNormal|䳣̬ 482 + 497 CauseToLive|ʹ 496 + 498 MakeLiving|ı 497 + 499 ProvideFor| 497 + 500 foster| 499 + 501 planting|ֲ 499 + 502 CauseToGrow|ʹɳ 496 + 503 metabolize|л 502 + 504 consume|ȡ 503 + 505 eat| 504 + 506 drink| 504 + 507 feed|ι 504 + 508 excrete|й 503 + 509 respire| 503 + 510 WhileAway| 502 + 511 exercise| 510 + 512 tour| 510 + 513 recreation| 510 + 514 addict|Ⱥ 510 + 515 SeekPleasure|Ѱ 510 + 516 keep| 502 + 517 maintain| 516 + 518 protect| 502 + 519 TakeCare| 502 + 520 cultivate| 502 + 521 help| 502 + 522 rescue| 521 + 523 KeepOn|ʹ 502 + 524 AlterStateGood|̬ 482 + 525 benefit| 524 + 526 MakeBetter|Ż 524 + 527 adjust| 526 + 528 PutInOrder| 526 + 529 improve| 526 + 530 enrich|ʵ 529 + 531 fulfil|ʵ 526 + 532 resume|ָ 524 + 533 cure|ҽ 532 + 534 repair| 532 + 535 amend| 532 + 536 AlterStateBad|ݬ̬ 482 + 537 MakeBad|Ӻ 536 + 538 MakeTrouble| 537 + 539 damage| 537 + 540 attack| 537 + 541 punish| 537 + 542 revenge| 537 + 543 HaveContest| 537 + 544 compete| 543 + 545 gamble|IJ 544 + 546 fight| 543 + 547 uprise| 546 + 548 resist| 546 + 549 defend| 543 + 550 defeat|սʤ 543 + 551 kill|ɱ 537 + 552 suicide|ɱ 551 + 553 remove| 537 + 554 destroy| 553 + 555 CauseToBeHidden|ʹʧ 482 + 556 hide| 555 + 557 cover|ڸ 555 + 558 PutOn| 557 + 559 wrap| 557 + 560 AlterAttribute| 482 + 561 MakeHigher| 560 + 562 MakeLower| 560 + 563 AlterAppearance| 560 + 564 AlterForm|״ 563 + 565 touch| 564 + 566 stroke| 564 + 567 stab| 564 + 568 sting| 564 + 569 beat| 564 + 570 bump|ײ 564 + 571 firing| 564 + 572 break|۶ 564 + 573 rub|Ħ 564 + 574 scratch|ץ 564 + 575 press|ѹ 564 + 576 unfold|̯ 564 + 577 grind|ĥ 564 + 578 split|ƿ 564 + 579 cut| 564 + 580 bite|ҧ 564 + 581 masticate|׽ 564 + 582 fold|ߡ 564 + 583 PlayWith|Ū 564 + 584 weave| 564 + 585 dig|ھ 564 + 586 clean|ʹ 563 + 587 wash|ϴ 586 + 588 wipe| 586 + 589 pollute|ʹ 563 + 590 apply|ͿĨ 563 + 591 beautify| 563 + 592 decorate|װ 591 + 593 MakeUp|ױ 591 + 594 uglify| 563 + 595 illuminate| 563 + 596 AlterColor|ɫ 563 + 597 brighten|ʹ 563 + 598 straighten|ֱ 563 + 599 bend| 563 + 600 sharpen|ʹ 563 + 601 filter| 563 + 602 lubricate| 563 + 603 AlterMeasurement| 560 + 604 WarmUp| 603 + 605 lighting|ȼ 604 + 606 burn| 604 + 607 cool| 603 + 608 moisten|ʪ 603 + 609 irrigate| 608 + 610 dry| 603 + 611 enlarge| 603 + 612 shrink|С 603 + 613 tighten|ս 603 + 614 loosen| 603 + 615 SpeedUp|ӿ 603 + 616 SlowDown| 603 + 617 MakeHeavier| 603 + 618 deepen| 603 + 619 MakeEarlier| 603 + 620 delay| 603 + 621 thicken|Ũ 603 + 622 dilute|嵭 603 + 623 AlterProperty| 560 + 624 strengthen|ӹ 623 + 625 weaken| 623 + 626 dredge|ͨ 623 + 627 BlockUp| 623 + 628 AlterGrade|伶 623 + 629 upgrade| 628 + 630 degrade| 628 + 631 PlayUp|Ĵ 623 + 632 PlayDown| 623 + 633 slander|̰ 632 + 634 delimit| 623 + 635 refine| 623 + 636 ize|̬ 560 + 637 MakeAct|ʹ֮ 481 + 638 CauseToDo|ʹ 637 + 639 request|Ҫ 638 + 640 call|ٻ 638 + 641 invite| 638 + 642 dispatch|Dz 638 + 643 order| 638 + 644 entrust|ί 638 + 645 urge|ʹ 638 + 646 force|ǿ 638 + 647 guide| 638 + 648 persuade|Ȱ˵ 638 + 649 mediate| 648 + 650 mobilize| 638 + 651 incite|ָʹ 638 + 652 entice| 638 + 653 indulge| 638 + 654 TurnOn| 638 + 655 CauseNotToDo|趯 637 + 656 restrain|ֹ 655 + 657 obstruct|ֹ 655 + 658 prohibit|ֹ 655 + 659 TurnOff|ֹ 655 + 660 exempt| 655 + 661 use| 637 + 662 TakeVehicle| 661 + 663 employ| 661 + 664 spend| 661 + 665 lavish|˷ 664 + 666 AlterMental|侫 481 + 667 AlterEmotion| 666 + 668 soothe|ο 667 + 669 excite|ж 667 + 670 MakeHappy|ʹϲ 669 + 671 please|ȡ 670 + 672 tease|ȡ 670 + 673 irritate|ŭ 669 + 674 frighten|Ż 669 + 675 discourage|ˮ 669 + 676 offend| 669 + 677 disappoint| 669 + 678 MakeWorried| 669 + 679 attract| 669 + 680 ShowEmotion|ʾ 666 + 681 treat|Դ 680 + 682 ShowGoodEmotion|ʾ 681 + 683 ShowInterest| 682 + 684 ShowJoy|ʾϲ 682 + 685 laugh|Ц 684 + 686 ShowLove|ʾ 682 + 687 praise|佱 682 + 688 reward| 687 + 689 congratulate|ף 682 + 690 thank|л 682 + 691 apologize|Ǹ 682 + 692 SayHello|ʺ 682 + 693 visit| 692 + 694 welcome|ӭ 682 + 695 salute|¾ 682 + 696 ExpressAgreement|ʾͬ 682 + 697 accept| 696 + 698 appreciate|޳ 696 + 699 endorse|ӵ 682 + 700 guarantee|֤ 682 + 701 WellTreat|ƴ 682 + 702 entertain|д 701 + 703 commemorate|ʾ˼ 682 + 704 ShowBadEmotion|ʾ 681 + 705 IllBehave| 704 + 706 sigh|̾ 704 + 707 condole|° 681 + 708 weep| 707 + 709 ExpressDissatisfaction|ʾ 707 + 710 protest| 709 + 711 ExpressAgainst|Ǵ 709 + 712 satirize| 709 + 713 LaughAt|Ц 709 + 714 IllTreat| 709 + 715 ExpressDisagreement|ʾͬ 707 + 716 oppose| 715 + 717 reject|ؾ 715 + 718 betray| 707 + 719 ExpressAnger|ʾŭ 707 + 720 AlterKnowledge|֪ 666 + 721 MakeOwnKnowledge|ʹҸ֪ 720 + 722 sense|о 721 + 723 look| 722 + 724 listen| 722 + 725 smell| 722 + 726 feel| 722 + 727 savor| 722 + 728 GetKnowledge|֪ 721 + 729 TryToKnow|Ū 728 + 730 read| 729 + 731 ask| 729 + 732 interrogate| 731 + 733 LookFor|Ѱ 729 + 734 check| 729 + 735 scout| 734 + 736 diagnose| 734 + 737 supervise| 734 + 738 investigate| 734 + 739 exam| 734 + 740 calculate| 729 + 741 count| 740 + 742 measure| 740 + 743 distinguish|ֱ 729 + 744 think|˼ 729 + 745 deduce| 744 + 746 guess|² 745 + 747 predict|Ԥ 745 + 748 LookBack| 744 + 749 study|ѧ 729 + 750 drill|ϰ 749 + 751 imitate|ģ 749 + 752 research|о 729 + 753 compare|Ƚ 729 + 754 analyze| 729 + 755 experiment|ʵ 729 + 756 prove|֤ 721 + 757 decide| 721 + 758 judge|ö 757 + 759 MakeAppointment|Լ 757 + 760 estimate| 721 + 761 plan|ƻ 721 + 762 choose|ѡ 721 + 763 select|ѡ 762 + 764 MakeOthersKnowledge|ʹ˸֪ 720 + 765 express|ʾ 764 + 766 mention|ἰ 765 + 767 MakeSound| 765 + 768 cry| 765 + 769 speak|˵ 765 + 770 boast| 765 + 771 swear| 765 + 772 sing| 765 + 773 recite|ж 765 + 774 propose| 765 + 775 quote| 765 + 776 explain|˵ 765 + 777 tell| 765 + 778 describe|д 765 + 779 announce| 765 + 780 disseminate| 765 + 781 accuse|ظ 765 + 782 recommend|Ƽ 765 + 783 reply| 765 + 784 refute| 783 + 785 admit| 765 + 786 deny| 765 + 787 write|д 765 + 788 copy|д 787 + 789 sign|д 787 + 790 translate| 765 + 791 record|¼ 765 + 792 TakePicture| 791 + 793 draw| 765 + 794 carve| 765 + 795 print|ӡˢ 765 + 796 publish| 795 + 797 show| 765 + 798 perform| 797 + 799 display|չʾ 797 + 800 ShowOff|ҫ 797 + 801 teach| 764 + 802 communicate| 764 + 803 talk|̸ 802 + 804 discuss| 802 + 805 debate| 802 + 806 quarrel| 802 + 807 MakeNoKnowledge|ʹ֪ 720 + 808 HideTruth| 807 + 809 KeepSilence|˵ 807 + 810 MakeMisunderstand|ʹ֪ 720 + 811 TalkNonsense|Ϲ˵ 810 + 812 deceive|ƭ 810 + 813 entity|ʵ 813 + 814 thing| 813 + 815 physical| 814 + 816 animate| 815 + 817 AnimalHuman| 816 + 818 human| 817 + 819 humanized| 818 + 820 animal| 817 + 821 beast| 820 + 822 livestock| 820 + 823 bird| 820 + 824 InsectWorm| 820 + 825 fish| 820 + 826 plant|ֲ 816 + 827 crop|ׯ 826 + 828 tree| 826 + 829 FlowerGrass| 826 + 830 vegetable|߲ 826 + 831 fruit|ˮ 826 + 832 AlgaeFungi|ֲ 826 + 833 bacteria|΢ 816 + 834 inanimate| 815 + 835 natural|Ȼ 834 + 836 celestial| 835 + 837 earth| 835 + 838 land|½ 837 + 839 waters|ˮ 837 + 840 sky| 837 + 841 place|ط 837 + 842 liquid|Һ 835 + 843 water|ˮ 842 + 844 ice| 835 + 845 metal| 835 + 846 wood|ľ 835 + 847 fire| 835 + 848 stone|ʯ 835 + 849 weather| 835 + 850 RainSnow|ѩ 849 + 851 wind| 849 + 852 CloudMist| 849 + 853 thunder| 849 + 854 gas| 835 + 855 sound| 835 + 856 electricity| 835 + 857 lights| 835 + 858 trace| 835 + 859 artifact|˹ 834 + 860 clothing| 859 + 861 edible|ʳ 859 + 862 food|ʳƷ 861 + 863 drinks|Ʒ 861 + 864 medicine|ҩ 859 + 865 chemical|ѧ 859 + 866 addictive|Ⱥ 859 + 867 building| 859 + 868 house| 867 + 869 room| 868 + 870 facilities|ʩ 867 + 871 implement| 859 + 872 machine| 871 + 873 computer| 871 + 874 vehicle|ͨ 871 + 875 LandVehicle| 874 + 876 ship| 874 + 877 aircraft| 874 + 878 furniture|Ҿ 871 + 879 stationery|ľ 871 + 880 paper|ֽ 879 + 881 PenInk|ī 879 + 882 MusicTool| 871 + 883 SportTool|˶ 871 + 884 tool|þ 871 + 885 weapon| 871 + 886 software| 871 + 887 material| 859 + 888 wealth|Ǯ 859 + 889 fund|ʽ 888 + 890 expenditure| 888 + 891 payment| 888 + 892 money| 888 + 893 coupon|Ʊ֤ 888 + 894 treasure|䱦 888 + 895 readings| 859 + 896 publications|鿯 895 + 897 document| 895 + 898 bill|Ʊ 895 + 899 account| 895 + 900 letter|ż 895 + 901 mark|־ 895 + 902 shape| 815 + 903 mental| 814 + 904 emotion| 903 + 905 experience| 903 + 906 aspiration|Ը 903 + 907 thinking|˼ 903 + 908 thought|ͷ 907 + 909 method| 907 + 910 plans|滮 909 + 911 purpose|Ŀ 907 + 912 reason| 907 + 913 standpoint| 907 + 914 knowledge|֪ʶ 907 + 915 information|Ϣ 903 + 916 language| 915 + 917 symbol| 916 + 918 punc| 917 + 919 character| 916 + 920 expression| 916 + 921 text| 916 + 922 news| 921 + 923 music| 915 + 924 image|ͼ 915 + 925 shows| 915 + 926 example|ʵ 915 + 927 regulation| 903 + 928 system|ƶ 927 + 929 law|ɷ 927 + 930 agreement|Լ 927 + 931 rights|Ȩ 903 + 932 duty| 903 + 933 event|¼ 814 + 934 fact| 933 + 935 affairs| 934 + 936 problem| 934 + 937 cause|ԭ 934 + 938 process| 934 + 939 result| 934 + 940 phenomena| 933 + 941 disease| 940 + 942 organization|֯ 814 + 943 institution| 942 + 944 army| 942 + 945 InstitutePlace| 942 + 946 community| 942 + 947 internet| 814 + 948 time|ʱ 813 + 949 space|ռ 813 + 950 direction| 949 + 951 location|λ 949 + 952 component| 813 + 953 part| 952 + 954 fittings| 952 + 955 attribute| 955 + 956 aValue|ֵ 956 + 957 AttributeValue|Ժֵ 957 + 958 appearance| 957 + 959 form|״ 958 + 960 flat| 959 + 961 straight|ֱ 959 + 962 curved| 959 + 963 level|ƽ 959 + 964 upright| 959 + 965 slanted| 959 + 966 even| 959 + 967 dissimilar| 959 + 968 protruding|͹ 959 + 969 dented| 959 + 970 smooth|̹ 959 + 971 rugged| 959 + 972 square| 959 + 973 round|Բ 959 + 974 queer| 959 + 975 horizontal| 959 + 976 blunt| 959 + 977 acute| 959 + 978 sharp| 959 + 979 wrinkled| 959 + 980 dot| 959 + 981 linear| 959 + 982 surfacial| 959 + 983 cubic| 959 + 984 angular| 959 + 985 brightness| 958 + 986 bright| 985 + 987 dark| 985 + 988 clearness| 958 + 989 clear| 988 + 990 blurred| 988 + 991 prettiness| 958 + 992 beautiful| 991 + 993 ugly| 991 + 994 pattern|ʽ 958 + 995 modern| 994 + 996 old| 994 + 997 SmoothFinish| 958 + 998 delicate| 997 + 999 coarse| 997 + 1000 polished| 997 + 1001 color|ɫ 958 + 1002 colored| 1001 + 1003 plain| 1001 + 1004 red| 1001 + 1005 yellow| 1001 + 1006 blue| 1001 + 1007 green| 1001 + 1008 purple| 1001 + 1009 brown| 1001 + 1010 white| 1001 + 1011 black| 1001 + 1012 grey| 1001 + 1013 RedBrown| 1001 + 1014 BlueGreen| 1001 + 1015 colorless|ɫ 1001 + 1016 hue|Ũ 958 + 1017 NotLight|Ũ 1016 + 1018 light| 1016 + 1019 odor|ζ 958 + 1020 fragrant| 1019 + 1021 stinky| 1019 + 1022 taste|ζ 958 + 1023 sour| 1022 + 1024 sweet| 1022 + 1025 bitter| 1022 + 1026 peppery| 1022 + 1027 salty| 1022 + 1028 posture| 958 + 1029 scene| 958 + 1030 exuberant|ï 1029 + 1031 desolate| 1029 + 1032 threatening| 1029 + 1033 stately|ׯ 1029 + 1034 cleanness|ྻ 958 + 1035 spotless| 1034 + 1036 dirty| 1034 + 1037 fatness| 958 + 1038 fat| 1037 + 1039 bony| 1037 + 1040 bearing|̬ 958 + 1041 thrifty| 1040 + 1042 gracious| 1040 + 1043 extravagant| 1040 + 1044 PhysicState|״̬ 958 + 1045 attire|װ 958 + 1046 style| 958 + 1047 demeanor| 958 + 1048 countenance| 958 + 1049 measurement| 957 + 1050 length| 1049 + 1051 long| 1050 + 1052 short| 1050 + 1053 height|߶ 1049 + 1054 tall| 1053 + 1055 low| 1053 + 1056 area| 1049 + 1057 big| 1056 + 1058 medium| 1056 + 1059 small|С 1056 + 1060 broad| 1056 + 1061 size|ߴ 1049 + 1062 big| 1061 + 1063 medium| 1061 + 1064 small|С 1061 + 1065 broad| 1061 + 1066 width| 1049 + 1067 wide| 1066 + 1068 narrow|խ 1066 + 1069 depth| 1049 + 1070 deep| 1069 + 1071 shallow|dz 1069 + 1072 thickness| 1049 + 1073 thick| 1072 + 1074 thin| 1072 + 1075 fineness|ϸ 1049 + 1076 fine| 1075 + 1077 widediameter| 1075 + 1078 slope|¶ 1049 + 1079 steep| 1078 + 1080 density|ܶ 1049 + 1081 dense| 1080 + 1082 sparse| 1080 + 1083 tightness|ɽ 1049 + 1084 loose| 1083 + 1085 tight| 1083 + 1086 hardness|Ӳ 1049 + 1087 hard|Ӳ 1086 + 1088 soft| 1086 + 1089 crisp| 1086 + 1090 tender| 1086 + 1091 tough| 1086 + 1092 concentration|Ũ 1049 + 1093 watery|ϡ 1092 + 1094 concentrated| 1092 + 1095 weight| 1049 + 1096 heavy| 1095 + 1097 NotHeavy| 1095 + 1098 SoundVolume| 1049 + 1099 loud| 1098 + 1100 distance| 1049 + 1101 far|Զ 1100 + 1102 near| 1100 + 1103 earliness| 1049 + 1104 early| 1103 + 1105 late| 1103 + 1106 speed|ٶ 1049 + 1107 fast| 1106 + 1108 slow| 1106 + 1109 duration| 1049 + 1110 TimeLong| 1109 + 1111 TimeShort| 1109 + 1112 dampness|ʪ 1049 + 1113 dried| 1112 + 1114 wet|ʪ 1112 + 1115 waterless| 1112 + 1116 waterlogging| 1112 + 1117 temperature|¶ 1049 + 1118 cold| 1117 + 1119 hot| 1117 + 1120 chilly| 1117 + 1121 warm| 1117 + 1122 price|۸ 1049 + 1123 cheap| 1122 + 1124 expensive| 1122 + 1125 stickiness| 1049 + 1126 sticky| 1125 + 1127 angle|Ƕ 1049 + 1128 property| 957 + 1129 newness|¾ 1128 + 1130 new| 1129 + 1131 used| 1129 + 1132 age| 1128 + 1133 aged| 1132 + 1134 adult| 1132 + 1135 young| 1132 + 1136 trueness|α 1128 + 1137 true| 1136 + 1138 fake|α 1136 + 1139 GoodBad|û 1128 + 1140 good| 1139 + 1141 bad| 1139 + 1142 quality| 1128 + 1143 fertile| 1142 + 1144 barren| 1142 + 1145 refined| 1142 + 1146 crude|ª 1142 + 1147 average| 1142 + 1148 great|ΰ 1142 + 1149 negligible| 1142 + 1150 durable| 1142 + 1151 intensity|ǿ 1128 + 1152 strong|ǿ 1151 + 1153 weak| 1151 + 1154 easiness| 1128 + 1155 easy| 1154 + 1156 difficult| 1154 + 1157 SoundQuality| 1128 + 1158 content| 1128 + 1159 substantial|ʵ 1158 + 1160 empty| 1158 + 1161 profound| 1158 + 1162 NotProfound|dz 1158 + 1163 interesting|Ȥ 1158 + 1164 boring| 1158 + 1165 detailed| 1158 + 1166 simple| 1158 + 1167 pure| 1158 + 1168 mixed| 1158 + 1169 accurate|׼ 1158 + 1170 neat| 1158 + 1171 disorder| 1158 + 1172 concise| 1158 + 1173 unattached|ɢ 1158 + 1174 trivial| 1158 + 1175 complicated| 1158 + 1176 layered| 1158 + 1177 correctness| 1128 + 1178 correct|ȷ 1177 + 1179 wrong| 1177 + 1180 degree|̶ 1128 + 1181 extreme| 1180 + 1182 insufficiently|Ƿ 1180 + 1183 very| 1180 + 1184 ish| 1180 + 1185 more| 1180 + 1186 most| 1180 + 1187 over| 1180 + 1188 reputation| 1128 + 1189 glorious| 1188 + 1190 Notwellknown| 1188 + 1191 disgraced| 1188 + 1192 behavior|ֹ 1128 + 1193 formal|ʽ 1192 + 1194 informal|ʽ 1192 + 1195 dexterous| 1192 + 1196 flexible| 1192 + 1197 stiff| 1192 + 1198 lasting| 1192 + 1199 secret| 1192 + 1200 opened| 1192 + 1201 hidden| 1192 + 1202 forthright|ˬ 1192 + 1203 tactful| 1192 + 1204 gentle| 1192 + 1205 suitable| 1192 + 1206 proper| 1192 + 1207 BadTemper|Ƣ 1192 + 1208 convenient| 1192 + 1209 inconvenient| 1192 + 1210 improper| 1192 + 1211 vulgar| 1192 + 1212 hasty| 1192 + 1213 sudden| 1192 + 1214 fluent| 1192 + 1215 nimble| 1192 + 1216 strict| 1192 + 1217 lenient| 1192 + 1218 fierce| 1192 + 1219 free| 1192 + 1220 restrained| 1192 + 1221 diligent| 1192 + 1222 lazy| 1192 + 1223 biased|ƫ 1192 + 1224 kindhearted| 1192 + 1225 sly| 1192 + 1226 stubborn| 1192 + 1227 active|Ը 1192 + 1228 passive| 1192 + 1229 modest|ǫ 1192 + 1230 arrogant| 1192 + 1231 attentive|ϸ 1192 + 1232 careless| 1192 + 1233 cautious| 1192 + 1234 flighty| 1192 + 1235 sincere| 1192 + 1236 rash|ç 1192 + 1237 indifferent|Į 1192 + 1238 steady| 1192 + 1239 lascivious| 1192 + 1240 honest| 1192 + 1241 fair| 1192 + 1242 greedy|̰ 1192 + 1243 eccentric|Ƨ 1192 + 1244 optimistic|ֹ 1192 + 1245 pessimistic| 1192 + 1246 evil| 1192 + 1247 faithful| 1192 + 1248 treacherous| 1192 + 1249 mischievous| 1192 + 1250 continuous| 1192 + 1251 together|ͬ 1192 + 1252 SocialMode| 1128 + 1253 value|ֵ 1128 + 1254 precious| 1253 + 1255 impression|ӡ 1128 + 1256 effect|Ч 1128 + 1257 useless| 1256 + 1258 superior| 1256 + 1259 will|־ 1128 + 1260 courage| 1128 + 1261 brave| 1260 + 1262 timid| 1260 + 1263 wisdom|ǻ 1128 + 1264 wise| 1263 + 1265 foolish| 1263 + 1266 clever| 1263 + 1267 NotQuick|ګ 1263 + 1268 ability| 1128 + 1269 able| 1268 + 1270 unable|ӹ 1268 + 1271 tolerance| 1128 + 1272 generous| 1271 + 1273 miser| 1271 + 1274 habit|ϰ 1128 + 1275 importance| 1128 + 1276 important| 1275 + 1277 secondary| 1275 + 1278 main| 1275 + 1279 branch|֧ 1275 + 1280 necessity|Ҫ 1128 + 1281 necessary|Ҫ 1280 + 1282 redundant| 1280 + 1283 rank|ȼ 1128 + 1284 HighRank|ߵ 1283 + 1285 LowRank|͵ 1283 + 1286 elementary| 1283 + 1287 standard|׼ 1128 + 1288 passed|ϸ 1287 + 1289 status| 1128 + 1290 occupation|ְλ 1128 + 1291 range| 1128 + 1292 extensive| 1291 + 1293 nonextensive| 1291 + 1294 all|ȫ 1291 + 1295 pieced|Ƭ 1291 + 1296 frequency|Ƶ 1128 + 1297 often| 1296 + 1298 rarely|ż 1296 + 1299 again| 1296 + 1300 regular| 1296 + 1301 power| 1128 + 1302 strength| 1128 + 1303 ProsCons| 1128 + 1304 pros| 1303 + 1305 cons| 1303 + 1306 relatedness| 1128 + 1307 intimate| 1306 + 1308 unfamiliar|϶ 1306 + 1309 opposed| 1306 + 1310 sex|Ա 1128 + 1311 male| 1310 + 1312 female|Ů 1310 + 1313 origin| 1128 + 1314 name| 1128 + 1315 number| 1128 + 1316 performance| 1128 + 1317 interest|Ȥζ 1128 + 1318 outlook|ǰ 1128 + 1319 relationship|ϵ 957 + 1320 attachment| 1319 + 1321 public| 1320 + 1322 private|˽ 1320 + 1323 kind| 1319 + 1324 certain|ij 1323 + 1325 other| 1323 + 1326 special| 1323 + 1327 ordinary| 1323 + 1328 source|Դ 1319 + 1329 original|ԭ 1328 + 1330 foreign| 1328 + 1331 artificial| 1328 + 1332 location|λ 1319 + 1333 internal| 1332 + 1334 external| 1332 + 1335 direction| 1319 + 1336 east| 1335 + 1337 west| 1335 + 1338 south| 1335 + 1339 north| 1335 + 1340 clan| 1319 + 1341 divergence| 1319 + 1342 boundary| 1319 + 1343 sequence| 1319 + 1344 InSequence| 1343 + 1345 OutOfOrder| 1343 + 1346 contrariness| 1319 + 1347 positive| 1346 + 1348 negative| 1346 + 1349 situation|״ 957 + 1350 circumstances| 1349 + 1351 urgent| 1350 + 1352 peaceful| 1350 + 1353 relax| 1350 + 1354 lonely| 1350 + 1355 flourishing| 1350 + 1356 wane|˥ 1350 + 1357 tranquil| 1350 + 1358 hardship| 1350 + 1359 safe| 1350 + 1360 dangerous|Σ 1350 + 1361 happy| 1350 + 1362 miserable| 1350 + 1363 busy|æ 1350 + 1364 idle| 1350 + 1365 richness|ƶ 1349 + 1366 rich| 1365 + 1367 poor| 1365 + 1368 similarity|ͬ 1349 + 1369 alike| 1368 + 1370 different| 1368 + 1371 occasion| 1349 + 1372 bustling| 1371 + 1373 crowded| 1371 + 1374 quiet| 1371 + 1375 stuffy| 1371 + 1376 cosy| 1371 + 1377 physique| 1349 + 1378 unripe| 1377 + 1379 ripe| 1377 + 1380 wholeness|ȱ 1349 + 1381 complete| 1380 + 1382 incomplete|ȱ 1380 + 1383 fullness| 1349 + 1384 full| 1383 + 1385 possibility| 1349 + 1386 possible| 1385 + 1387 impossible| 1385 + 1388 almost| 1385 + 1389 environment| 1349 + 1390 syntax|﷨ 1390 + 1391 adverbial|״ 1390 + 1392 manner|ʽ 1391 + 1393 accompaniment| 1391 + 1394 comment| 1391 + 1395 modality| 1391 + 1396 neg| 1391 + 1397 emphasis|ǿ 1391 + 1398 tense|ʱ̬ 1391 + 1399 conjunction| 1390 + 1400 and| 1399 + 1401 or| 1399 + 1402 but| 1399 + 1403 whword| 1390 + 1404 concession|ò 1403 + 1405 supplement|ݽ 1403 + 1406 condition| 1403 + 1407 cause|ԭ 1403 + 1408 EventResult|¼ 1403 + 1409 transition|ת 1403 + 1410 result| 1403 + 1411 particle| 1390 + 1412 DeChinese| 1411 + 1413 LeChinese| 1411 + 1414 Vdirection| 1413 + 1415 Vprocess| 1413 + 1416 Vsuppose|ٶ 1415 + 1417 Vstart| 1415 + 1418 Vgoingon|չ 1415 + 1419 Vcontinue| 1415 + 1420 Vend| 1415 + 1421 Vresult| 1413 + 1422 Vachieve| 1421 + 1423 Vable| 1421 + 1424 Vpossible| 1421 + 1425 Vtry| 1421 + 1426 MaChinese| 1411 + 1427 classifier|λ 1390 + 1428 unit|λ 1427 + 1429 NounUnit| 1427 + 1430 ActUnit| 1427 + 1431 qValue|ֵ 1431 + 1432 amount| 1431 + 1433 many| 1432 + 1434 few| 1432 + 1435 single| 1432 + 1436 double| 1432 + 1437 fragment| 1432 + 1438 some|Щ 1432 + 1439 sufficient| 1432 + 1440 half| 1432 + 1441 only| 1432 + 1442 over| 1432 + 1443 rate| 1431 + 1444 SecondaryFeature| 1444 + 1445 ProperName|ר 1444 + 1446 mass| 1444 + 1447 official| 1444 + 1448 employee|Ա 1444 + 1449 industrial| 1444 + 1450 mine| 1444 + 1451 factory| 1444 + 1452 agricultural|ũ 1444 + 1453 commercial| 1444 + 1454 education| 1444 + 1455 medical|ҽ 1444 + 1456 literature| 1444 + 1457 entertainment| 1444 + 1458 sport| 1444 + 1459 religion|ڽ 1444 + 1460 politics| 1444 + 1461 diplomatic|⽻ 1444 + 1462 police| 1444 + 1463 military| 1444 + 1464 royal| 1444 + 1465 family| 1444 + 1466 friend| 1444 + 1467 enemy| 1444 + 1468 crime| 1444 + 1469 waste| 1444 + 1470 poison| 1444 + 1471 desired| 1444 + 1472 undesired|ݬ 1444 + 1473 abstract| 1444 + 1474 generic|ͳ 1444 + 1475 question| 1444 + 1476 country| 1444 + 1477 capital| 1444 + 1478 provincial|ʡ 1444 + 1479 city| 1444 + 1480 village| 1444 + 1481 route|· 1444 + 1482 surname| 1444 + 1483 firstPerson| 1444 + 1484 SecondPerson| 1444 + 1485 ThirdPerson| 1444 + 1486 it| 1444 + 1487 self| 1444 + 1488 EachOther|໥ 1444 + 1489 head|ͷ 1444 + 1490 heart| 1444 + 1491 body| 1444 + 1492 bone| 1444 + 1493 base| 1444 + 1494 limb|֫ 1444 + 1495 arm| 1444 + 1496 hand| 1444 + 1497 leg| 1444 + 1498 foot| 1444 + 1499 wing| 1444 + 1500 edge| 1444 + 1501 mouth| 1444 + 1502 eye| 1444 + 1503 viscera| 1444 + 1504 nerve| 1444 + 1505 tail|β 1444 + 1506 embryo| 1444 + 1507 skin|Ƥ 1444 + 1508 flesh| 1444 + 1509 hair|ë 1444 + 1510 aspect| 1444 + 1511 upper| 1444 + 1512 beneath| 1444 + 1513 InFront|ǰ 1444 + 1514 hind| 1444 + 1515 surrounding|Χ 1444 + 1516 festival| 1444 + 1517 year| 1444 + 1518 season| 1444 + 1519 spring| 1444 + 1520 summer| 1444 + 1521 autumn| 1444 + 1522 winter| 1444 + 1523 month| 1444 + 1524 TenDays|Ѯ 1444 + 1525 week| 1444 + 1526 day| 1444 + 1527 hour|ʱ 1444 + 1528 minute| 1444 + 1529 morning| 1444 + 1530 afternoon| 1444 + 1531 night| 1444 + 1532 middle| 1444 + 1533 ending|ĩ 1444 + 1534 now| 1444 + 1535 past| 1444 + 1536 future| 1444 + 1537 immediate| 1444 + 1538 finally| 1444 + 1539 already| 1444 + 1540 also|Ҳ 1444 + 1541 ordinal| 1444 + 1542 cardinal| 1444 + 1543 approximate| 1444 + 1544 EventRoleAndFeatures|̬ɫ 1544 + 1545 EventRole|̬ɫ 1544 + 1546 relevant|ϵ 1545 + 1547 existent| 1545 + 1548 experiencer| 1545 + 1549 agent|ʩ 1545 + 1550 coagent|ʩ 1545 + 1551 possession|ռ 1545 + 1552 patient| 1545 + 1553 PatientPartof| 1545 + 1554 PatientProduct|Ʒ 1545 + 1555 PatientAttribute| 1545 + 1556 PartOfTouch| 1545 + 1557 content| 1545 + 1558 ContentProduct|ݳƷ 1545 + 1559 ResultContent| 1545 + 1560 isa|ָ 1545 + 1561 partof| 1545 + 1562 whole| 1545 + 1563 descriptive|д 1545 + 1564 result| 1545 + 1565 ResultEvent|¼ 1545 + 1566 ResultIsa|ָ 1545 + 1567 ResultWhole| 1545 + 1568 cause|ԭ 1545 + 1569 partner| 1545 + 1570 contrast| 1545 + 1571 ContentCompare|Ƚ 1545 + 1572 source|Դ 1545 + 1573 SourceWhole|Դ 1545 + 1574 target|Ŀ 1545 + 1575 cost| 1545 + 1576 beneficiary| 1545 + 1577 StateIni|ԭ״̬ 1545 + 1578 StateFin|״̬ 1545 + 1579 location| 1545 + 1580 LocationIni|ԭ 1545 + 1581 LocationFin|մ 1545 + 1582 LocationThru|ͨ 1545 + 1583 direction| 1545 + 1584 time|ʱ 1545 + 1585 TimeIni|ʼʱ 1545 + 1586 TimeFin|ֹʱ 1545 + 1587 duration|ʱ 1545 + 1588 DurationAfterEvent|ʱ 1545 + 1589 EventProcess|¼ 1545 + 1590 means|ֶ 1545 + 1591 instrument| 1545 + 1592 material| 1545 + 1593 degree|̶ 1545 + 1594 range| 1545 + 1595 manner|ʽ 1545 + 1596 TimeRange|ʱ 1545 + 1597 frequency|Ƶ 1545 + 1598 times| 1545 + 1599 purpose|Ŀ 1545 + 1600 scope|Χ 1545 + 1601 AccordingTo| 1545 + 1602 condition| 1545 + 1603 concession|ò 1545 + 1604 comment| 1545 + 1605 succeeding| 1545 + 1606 besides|ݽ 1545 + 1607 except| 1545 + 1608 accompaniment| 1545 + 1609 modifier| 1545 + 1610 restrictive|޶ 1545 + 1611 quantity| 1545 + 1612 QuantityCompare|Ƚ 1545 + 1613 possessor| 1545 + 1614 concerning| 1545 + 1615 EventFeatures|̬ 1544 + 1616 topic| 1615 + 1617 focus| 1615 diff --git a/software/WordSimilarity.exe b/software/WordSimilarity.exe new file mode 100644 index 0000000000000000000000000000000000000000..e0f45d6f1bb4c612ec815b5617c2604e2d951288 GIT binary patch literal 110592 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 jm + V leave|뿪 + ADJ lend|,commercial| + V lend|,commercial| +⳵ N LandVehicle|,$lend|,commercial| +⳵˾ N human|,*drive|Ԧ,#LandVehicle| + N LandVehicle|,$lend|,commercial| + N human|,*lend|,commercial| + V sell|,commercial| + N furniture|Ҿ,cubic|,@put| + N part|,%house|,eye|,#display|չʾ + N part|,%house|,eye|,@display|չʾ + N furniture|Ҿ,cubic|,@put| + N room|,@cook| + N room|,@cook| +þ N tool|þ,*cook| + N tool|þ,*cook| +ʦ N human|,#occupation|ְλ,*cook| + N human|,#occupation|ְλ,*cook| + N character|,(China|й) + V remove| + V remove|,agricultural|ũ + N tool|þ,*remove|,#FlowerGrass| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=treacherous| +ǿ V remove|,patient=fierce|,help| +ͷ N tool|þ,*remove|,#FlowerGrass| + ADJ aValue|ֵ,age|,young|,#animal| + N bird|,young| + N human|,unable|ӹ + N bird|,young| + N part|,%thing|,embryo| + N entity|ʵ + N part|,%thing|,embryo| +ӥ N bird|,young| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V DoSum| + V remove| + PREP {besides} + PREP {except} + V remove|,patient=fierce|,help| + V remove|,#FlowerGrass|,agricultural|ũ + V remove|,patient=FlowerGrass|,agricultural|ũ +ݻ N machine|,*remove|,#FlowerGrass|,agricultural|ũ +ݼ N medicine|ҩ,*remove|,#FlowerGrass|,agricultural|ũ + N human|,*remove|,#FlowerGrass| + V remove|,patient=waste| + N machine|,*remove|,#waste| + N medicine|ҩ,*remove|,#InsectWorm| + ADJ aValue|ֵ,property|,remove|,#stinky| + V remove|,patient=stinky| + PREP {except} +˶ ADV {except} + ADV {except} +֮ ADV {except} + V remove|,patient=evil| + N method|,*DoSum| + CONJ {condition|} + V cure|ҽ + V remove| + N symbol|,*DoSum| + V DoSum| +ɲ V improve| +ɸ V improve| + PREP {besides} + PREP {except} + PREP {besides} + PREP {except} + V discharge| +ȥ V remove| +ȥ PREP {except} +ȴ PREP {except} + N symbol|,#quantity| +˪ V remove|,patient=ice| + PREP {except} +Ϧ N time|ʱ,day|,night| +Ϧ N fact|,*recreation| + V DoSum| + N character|,surname|,human|,ProperName|ר + N fact|,unfortunate| + ADJ aValue|ֵ,attire|װ,neat|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N publications|鿯,ProperName|ר,(China|й) + N shows| + N part|,%thing|,base| + V character|,surname|,human|,ProperName|ר + V store| + V store| + N fund|ʽ + N edible|ʳ + V store| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V store| + V store| + N human|,SetAside|,#wealth|Ǯ,#commercial| + N human|,royal|,male| + N quantity|,amount|,$store|,&natural|Ȼ,mine| + V SetAside|,commercial| + N money|,$SetAside| + V InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| + N material|,liquid|Һ,$burn| +͹ N tool|þ,*store|,#material|,liquid|Һ + V store|,transport| + V stand|վ,manner=upright| + V stand|վ,manner=upright| + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V twitch|鴤 + V excite|ж + V touch| + V unfortunate|,means=touch|,cause=electricity| + V excite|ж + V touch| + V TurnOn| + N part|,%implement|,*TurnOn| + V disobey|Υ + V touch| + V unfortunate|,cause=bump|ײ,#stone|ʯ,#waters|ˮ + N part|,%animal|,*feel| + V excited| + N experience|,feel| + N part|,%animal|,*feel| +ͨ V know|֪,means=deduce| +ùͷ V unfortunate| +ý N chemical|ѧ + V feel| +Ŀ V perception|֪ +Ŀ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ŭ V irritate|ŭ + N part|,%animal|,*feel| +ʹ N fact|,painful|ʹ +ʹ V touch|,result=painful|ʹ + V err|,sport| + N part|,%animal|,*feel| + N cure|ҽ,means=touch| + V associate| + V handle| + N location|λ + N part|,%organization|֯ + N place|ط + V punish| + V reside|ס + V situated| + N human|,#occupation|ְλ,official|,*manage| + ADV aValue|ֵ,location|λ,all|ȫ + ADV aValue|ֵ,range|,all|ȫ + V punish| + N document|,#medicine|ҩ,medical|ҽ + V write|д,ContentProduct=document|,#medicine|ҩ,medical|ҽ + V handle| + V punish| +Ȩ N rights|Ȩ,*handle| + N attribute|,circumstances|,&entity|ʵ + V kill|ɱ,police| + V handle| + V remove| + V sell|,commercial| +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + N machine| +۸ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ʒ N artifact|˹,$sell|,cheap|,commercial| + N machine| +Ʒ N artifact|˹,$sell|,cheap|,commercial| +Ʒ V sell|,possession=artifact|˹,commercial| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N human|,female|Ů,^mating| +Ů N land|½,new| +ŮĤ N part|,%human|,#female|Ů,#mating| +Ů ADJ aValue|ֵ,newness|¾,new| +Ů N readings| + V handle|,patient=self| + N handle|,patient=affairs| + N time|ʱ,day| + V kill|ɱ,police| + N place|ط +Ļ ADJ aValue|ֵ,behavior|ֹ,active|Ը + V punish|,police| + V punish|,means=<>,police| + V situated|,location=<> + V situated|,location=<> +̩֮Ȼ V calm| + V handle| + V punish| + V remove| + V punish| + V guess|² + V put| + V guess|² + V estimate| +Ħ V think|˼ +ֶ V CausePartMove|,PatientPartof=hand| + N land|½ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,linear| + N FlowerGrass|,?medicine|ҩ + N edible|ʳ + N place|ط,ProperName|ר,(China|й) + N shows| +Ϣ ADV qValue|ֵ,amount|,many| +ܺ N FlowerGrass|,?medicine|ҩ + V PutOn| + V cross|Խ + V stab| +ȥ V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + V aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ +ס V BeUnable|,content=PutOn| + V GoInto| + V attack|,means=GoInto|,military| + V insert| + V replace| + N text| + V stab|,medical|ҽ + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| + V GoThrough| + V cross|Խ +׵ N weapon|,$firing| + N ill|̬,medical|ҽ + N split|ƿ,StateFin=mouth| +Ա N human|,#occupation|ְλ,*stab| +ɽ N beast| +ɽ N medicine|ҩ + V PutOn|,Vgoingon|չ + V ToAndFro| +͸ V stab| +СЬ V damage|,means=power| +Т V PutOn|,instrument=clothing|,purpose=condole|° + V cross|Խ +¾ N tool|þ,*MakeUp|ױ,#look| +Խ V cross|Խ + V fasten|˩ + V mediate| + V PutOn|,Vgoingon|չ + N attribute|,attire|װ,&human| +Ŵ N attribute|,attire|װ,&human| + N human|,*PutOn| + N part|,%building|,bone| + N part|,%building|,bone| + N part|,%building|,bone| + V CauseAffect|Ⱦ,medical|ҽ + V PassOn| + V call|ٻ + V disseminate| + V express|ʾ + V teach| + N text|,@record|¼ + V transmit| + ADV {comment|} + V disseminate| + V disseminate| + N human|,*disseminate| + V disseminate| + V undergo|,content=transmit|,content=sing| + N part|,%AnimalHuman|,nerve| + V tell| + N part|,%building|,#mouth| + N readings| + V transmit| + N attribute|,performance|,&transmit|,#electricity| + V disseminate|,content=religion|ڽ,religion|ڽ + V transmit| + N transmit| +ϵͳ N machine| + N part|,%machine| + V sense|о + N part|,%implement|,*sense|о + V transmit| + V tell|,content=information|Ϣ + N tool|þ,*LookFor|Ѱ,#cry| + V tell|,content=information|Ϣ + V call|ٻ,police| + N text|,@record|¼ +ұ N artifact|˹,precious| + V disseminate|,content=religion|ڽ,religion|ڽ +ʿ N human|,*disseminate|,religion|ڽ + V undergo|,content=disseminate| + V disseminate| + V order| +ý N method|,*disseminate| +Ʊ N document|,*call|ٻ,police| + ADJ aValue|ֵ,kind|,special| + N text|,@record|¼ + V express|ʾ,content=emotion| + V transmit|,sport| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ N disease| +ȾԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ⱦ ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ + V transmit|,content=hot| + V CauseAffect|Ⱦ,medical|ҽ + V call|ٻ,patient=human| + N human|,*PassOn| + V teach| + N part|,%AnimalHuman|,nerve| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N tool|þ,*disseminate| +Ͳ N human|,*disseminate|,undesired|ݬ +Ͳ N tool|þ,*disseminate| + V undergo|,content=PassOn| +䱦 N treasure|䱦,*undergo|,#PassOn| + V teach| + V transmit| +˵ N text|,@record|¼ +˵ ADV {comment|} + V enjoy|,content=praise|佱 + V transmit| +ʹ N part|,%implement|,*transmit| + V disseminate| +ͳ ADJ aValue|ֵ,property|,$PassOn| +ͳ N regulation|,$PassOn| +Ϊѻ V undergo|,content=disseminate|,#praise|佱 +Ϊ̸ V undergo|,content=disseminate|,#praise|佱 + N information|Ϣ,$disseminate| + ADV {comment|} +Ѷ V call|ٻ,police| + N information|Ϣ,$disseminate| + V tell|,content=information|Ϣ + V disseminate| + V transmit|,purpose=read| + N image|ͼ,$post|ʼ + N letter|ż + V post|ʼ + N machine|,*post|ʼ + N ship| + N part|,%ship|,body| + N ship|,mass| + N ship|,mass| + N place|ط,@stay|ͣ,#ship| + N room|,%ship| + N human|,#occupation|ְλ,official|,#ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N attribute|,number|,&ship| + N human|,*own|,#ship| + N ship|,mass| + N InstitutePlace|,ship|,commercial| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N music| + N music| + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N human|,#ship| + N human|,#ship| + N human|,*drive|Ԧ,#ship| + N part|,%ship|,body| +ϴ N human|,*drive|Ԧ,#ship| + N attribute|,age|,&ship| + N human|,#ship| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#ship| + N time|ʱ,#ship|,@VehicleGo|ʻ +ڱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ + N part|,%ship|,body| + N part|,%ship|,head|ͷ +̨ N facilities|ʩ,space|ռ,@produce|,#ship| + N part|,%ship|,body| +ͷ N part|,%ship|,head|ͷ +β N part|,%ship|,tail|β +λ N location|λ,#ship| +λ N room|,%ship| + N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| + N part|,%ship|,edge| +Ա N human|,#occupation|ְλ,#ship| + V transport|,instrument=ship| +բ N facilities|ʩ,space|ռ,#waters|ˮ,#ship|,@VehicleGo|ʻ +ֻ N ship|,mass| +ֻ N quantity|,amount|,&ship| + N human|,*own|,#ship| + N human|,official|,#ship| + V pant| + V pant| + V pant| + V rest|Ϣ +Ϣ V pant| + CLAS NounUnit|,&(grape|),&(key|Կ) + V RegardAs|,entertainment| + V collude| + V connect| + V mix| + V roam| + V collude|,scope=admit|,#police| + V exchange| + V teach| + V connect| + V visit|,target=family| + V visit|,target=family| +ͨ V collude| +ͨһ V collude| +ζ ADJ aValue|ֵ,odor|ζ,mixed|,undesired|ݬ + ADV aValue|ֵ,sequence| + V RegardAs|,entertainment| + ADJ aValue|ֵ,kind|,mixed| + N tool|þ,*decorate|װ,$PutOn| + N disease| + N disease|,#wounded| + N trace|,#disease| + N trace|,#disease| + N trace|,#disease| + N disease| +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ + N part|,%house|,eye| + N part|,%building| + N part|,%house|,#eye| + N part|,%house|,eye| + N tool|þ,*decorate|װ,#house|,#eye| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N part|,%entity|ʵ,eye| + N part|,%house|,eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɴ N tool|þ,*cover|ڸ,*decorate|װ,#eye| +̨ N part|,%house|,#eye| +γ N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N tool|þ,*cover|ڸ,*decorate|װ,#eye| + N part|,%house|,#eye| + N part|,%house|,#eye| + CLAS NounUnit|,&house| + CLAS NounUnit|,&house|,mass| + V wave|ڶ + CLAS NounUnit|,&tool|þ,#cover|ڸ,#sleep|˯ + N furniture|Ҿ,space|ռ,@sleep|˯ + N shape|,space|ռ + N tool|þ,*cover|ڸ,#sleep|˯ +֮ N text|,secret| + N part|,%furniture|Ҿ,#sleep|˯,body| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%machine|,industrial|,#cut|,#produce| +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N part|,%furniture|Ҿ,head|ͷ +ͷ N tool|þ,*illuminate|,#furniture|Ҿ,#sleep|˯ +ͷ N furniture|Ҿ,cubic|,@store| +λ N location|λ,space|ռ,#sleep|˯ + N tool|þ,*cover|ڸ,#sleep|˯ + N machine|,industrial|,*cut|,*produce| + N furniture|Ҿ,space|ռ,@sleep|˯ + V GoForward|ǰ + V create| + V endeavour| +һ· V create|,PatientProduct=route|· + V MakeLiving|ı + V MakeLiving|ı + V err| + N human|,brave| + V MakeLiving|ı + V GoInto| + N attribute|,behavior|ֹ,brave|,&human| + V drill|ϰ +· V create|,PatientProduct=route|· +߱ V roam| + V GoInto| + V create| + N disease|,#wounded| + V start|ʼ + V establish| + V compile|༭ + V fulfil|ʵ + N trace|,#disease| + V earn|׬,possession=money|,source=foreign| +¼ V create|,PatientProduct=result|,#exercise|,sport| + N thought|ͷ,new|,special| + V establish| + N affairs|,new|,special| + V start|ʼ,content=publish| + N publications|鿯,#begin|ʼ + N location|λ,#disease|,#wounded| + V earn|׬ + V establish| + N part|,%AnimalHuman|,#wounded| + N disease|,#wounded| + N emotion|,#wounded| + V establish| +ʼ V begin|ʼ +ʼ N part|,%publications|鿯,religion|ڽ +ʼ N human|,*start|ʼ + V earn|׬ + V MakeBetter|Ż +ҵ V start|ʼ,content=affairs| + N thought|ͷ,new|,special| + V propose| + N text|,$propose|,$discuss|,$debate| + V create|,PatientProduct=good| + V create| + N attribute|,ability|,able|,#create|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ + V create| + V compile|༭ + N information|Ϣ + V boast| + V exhale| + V fail|ʧ + V recreation|,#MusicTool|,entertainment| + V recreation|,instrument=MusicTool|,entertainment| + V please|ȡ + V attack|,#weather| + V recreation|,instrument=MusicTool|,entertainment| + V recreation|,#MusicTool|,entertainment| + V MakeUp|ױ,means=dry| + V ill|̬,medical|ҽ + V tell| + N tool|þ,*MakeUp|ױ,#dry| + N tool|þ,*exhale| + V shake|ҡ + V MakeUp|ױ,means=dry| + N human|,#occupation|ְλ,entertainment| + N human|,*boast|,undesired|ݬ + V boast| +ӵ V ExpressAnger|ʾŭ + V MakeSound| + V recreation|,#MusicTool|,entertainment| + V discourage|ˮ +ë V ExpressAgainst|Ǵ +ţ V boast| +ţƤ V boast| + V please|ȡ + V ExpressAgainst|Ǵ + V inhale| +˫ɹ N human|,*perform| + V boast| + V recreation|,#MusicTool|,entertainment| + N music| + V cook| + N tool|þ,generic|ͳ,*cook| + N affairs|,cook| +° N part|,%army|,*cook| +þ N tool|þ,generic|ͳ,*cook| +Ա N human|,#occupation|ְλ,*cook| + N CloudMist|,#cook| + N tool|þ,*wipe| + V beat| + V beat| +ض V ShowBadEmotion|ʾ + V beat| + N tool|þ,*beat| + V beat| + V cultivate| + N tool|þ,*beat| + V CausePartMove| + V PassOn| + V FondOf|ϲ + V succeed|ɹ + V catch|׽ס,patient=fish| + V fall| + V manage|,patient=country|,politics| + N tree| + V fall| +ĺ N time|ʱ,night| +ĺ֮ N time|ʱ,#age|,aged| + V PayAttention|ע +ֿɵ ADJ aValue|ֵ,easiness|,easy|,$take|ȡ + V BeBad|˥ + V endeavour| + N part|,%AnimalHuman| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷɥ V disheartened| +Σ V ill|̬,#die|,medical|ҽ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ + V need|,manner=greedy|̰ +ѯ V ask|,manner=gentle| +ֱ ADJ aValue|ֵ,posture|,straight|ֱ + N time|ʱ,#young| + N attribute|,strength|,&AnimalHuman| + N emotion|,love|,desired| + N time|ʱ,spring| + N food|ʳƷ + V affairs|,#planting|ֲ,#spring|,agricultural|ũ + N InsectWorm|,agricultural|ũ + N drinks|Ʒ,#spring| + N water|ˮ,#waters|ˮ,#spring| + N time|ʱ,day|,spring| + N wind|,#spring| + V satisfied| +绯 V enjoy|,content=teach| + ADJ aValue|ֵ,temperature|¶,chilly|,#spring|,undesired|ݬ + V joyful|ϲ + N affairs|,#planting|ֲ,#spring|,agricultural|ũ + N image|ͼ,lascivious| + N part|,%house|,#female|Ů,royal| + N image|ͼ,lascivious| + V irrigate|,#spring|,agricultural|ũ + N attribute|,scene|,&inanimate|,#spring| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N phenomena|,chilly|,spring| + N phenomena|,undesired|ݬ,waterless|,#weather|,spring| + N image|ͼ,lascivious| + V ize|̬,agricultural|ũ + N time|ʱ,spring| + N time|ʱ,#spring|,@rest|Ϣ,*WhileAway| + N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + N FlowerGrass| + N FlowerGrass| + N thunder|,#spring| + N text|,festival| + N time|ʱ,spring| + N thought|ͷ,fake|α +ů N phenomena|,warm|,beautiful|,spring|,desired| + N fact|,#time|ʱ + N time|ʱ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,spring|,autumn| + N time|ʱ,year| +ﶦʢ ADJ aValue|ֵ,age|,desired| + N clothing|,#spring|,autumn| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,age|,desired| + N celestial|,#time|ʱ,#spring| + N time|ʱ,season|,spring| +ɫ N phenomena|,#spring| +ɫ԰ ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,spring| + N text|,festival| +С N crop|ׯ + N emotion|,love|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather|,#spring| +Ѵ N time|ʱ,season|,spring| +ҩ N medicine|ҩ,#mating| + N phenomena|,#spring| +ⰻȻ N phenomena|,warm|,beautiful|,spring|,desired| + ADJ aValue|ֵ,scene|,beautiful|,#spring|,desired| + V tour|,spring| + N RainSnow|ѩ,spring| + V transport|,#spring| + N emotion|,like|ϧ,desired| + N lights|,#celestial| + N tree| + N InsectWorm| + N human|,family|,mass| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,taste|ζ,pure|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + V ize|̬,industrial| + V refine|,industrial| + V ize|̬,industrial| + N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N drinks|Ʒ,$addict|Ⱥ + N part|,%AnimalHuman|,mouth| + V relate|й,manner=intimate| + N sound|,#language| + N tool|þ,*MakeUp|ױ + V HungryThirsty| + N disease|,#mouth| +ǹལ V debate| +ǹս V debate| + N text| +ݺ V relate|й,manner=intimate| + N sound|,#language| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,content|,pure| + ADV {emphasis|ǿ} + N attribute|,degree|̶,#pure|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V refine| + N attribute|,behavior|ֹ,&human| + N metal|,pure| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N wealth|Ǯ,desired|,$earn|׬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,true| +ɫ ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,ability|,able|,desired| + V be|,manner=emphasis|ǿ +һ ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,content|,pure|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,kind|,pure| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V try| + V MakeTrouble| + V crawl| + N human|,unable|ӹ,undesired|ݬ +¿ N human|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N event|¼,foolish| +ͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + V fix|ס + V stab| + V stand|վ + V wounded| +ڽ V ExpressAgainst|Ǵ + V reveal|¶ + V stab| + N stationery|ľ,*print|ӡˢ + V ExpressAgainst|Ǵ + N stationery|ľ,*print|ӡˢ + V reveal|¶ + V split|ƿ,means=stab| + N stationery|ľ,*print|ӡˢ + ADJ aValue|ֵ,area|,wide| + V pick|ʰ + ADJ qValue|ֵ,amount|,sufficient| +´ ADJ qValue|ֵ,amount|,sufficient| +º N attribute|,name|,other|,&entity|ʵ +ԣ ADJ qValue|ֵ,amount|,sufficient| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Լ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,quality|,weak|,undesired|ݬ,&thing| +õ N attribute|,quality|,weak|,undesired|ݬ,&thing| +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ +ĸ N human| + N vegetable|߲ + N attribute|,performance|,attract|,#metal| + N material|,?tool|þ +ų N space|ռ +Ŵ N tool|þ,*record|¼ +ŵ N material|,#route|· +Ź N phenomena|,#shiver| +Ż N ize|̬,#attract|,#metal| +ż N part|,%metal|,*attract| + N attribute|,strength|,&physical| + N method|,*cure|ҽ + N tool|þ,*record|¼ +ʯ N metal|,material| + N metal|,material| + N metal|,material| +ͷ N part|,machine|,#record|¼ + ADJ aValue|ֵ,performance| +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,sex|Ա,female|Ů +ƻ N FlowerGrass| +ϻ N beast|,female|Ů +ϻ N human|,female|Ů,fierce| +ϻ N human|,female|Ů,undesired|ݬ,fierce| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,sex|Ա,female|Ů + N attribute|,sex|Ա,&animate| +ͬ N animate| +ͬ N animate| + N animate| + N animate| + N InsectWorm|,female|Ů + V discharge| + V evade|ر + N expression| + V farewell| + V reject|ؾ + N text|,past| +DZ V farewell| +dz N document|,#cease|ͣ +ǵ N publications|鿯,#expression| +ǹ V cease|ͣ,content=undertake| +ǹ V discharge|,patient=employee|Ա +ǻ V cease|ͣ,content=undertake| +Ǿӭ V congratulate|ף,cause=festival| + N expression| +ȥ V cease|ͣ,content=undertake| +ȴ V cease|ͣ,content=undertake| + V reject|ؾ + V die| + N publications|鿯,#expression| + V congratulate|ף,cause=festival| + V discharge| +л V reject|ؾ + V farewell| + N expression| +ְ V cease|ͣ,content=undertake| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȱ N emotion|,like|ϧ,desired| +ȱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ȸ N human|,family|,male| +ȹ N vegetable|߲ +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ƽ N human|,kindhearted| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,royal|,female|Ů + N material|,?tool|þ + N material|,liquid|Һ,*decorate|װ + N tool|þ,generic|ͳ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + N stone|ʯ,material| +ש N material|,*build| + N expression| + N text| + N text|,past| +ʵ N publications|鿯,#expression| +ʵ༭ N human|,*compile|༭,literature| +ʶ N expression| +ʷ N knowledge|֪ʶ,#regulation|,#language| +ʸ N part|,%expression|,body| +ʸ N part|,%expression|,body| +ʻ N expression|,mass| +ʾ N expression|,mass| + N attribute|,kind|,&expression| + N information|Ϣ,#music| + N part|,%expression| + N expression| +ͷ N part|,%expression|,head|ͷ +β N part|,%expression|,tail|β + N attribute|,kind|,&expression| + N attribute|,property|,&language| + N information|Ϣ,#expression| + N expression| +Դ N knowledge|֪ʶ,#expression| +׺ N part|,%expression|,head|ͷ,tail|β + N expression| + ADJ aValue|ֵ,kind|,special| +˵ V exposure|¶ +˺ ADV aValue|ֵ,time|ʱ,future| +˼ ADJ aValue|ֵ,kind|,special| +˼ ADV location|λ,special| +˿ N time|ʱ,now| +˷ V happen|,manner=many| +˾ N attribute|,scene|,special|,&physical| +ʱ N time|ʱ,now| +ʱ˿ N time|ʱ,now| + CONJ {supplement|ݽ} + V salute|¾ +¾ V salute|¾ + ADV location|λ + V irritate|ŭ + V kill|ɱ,manner=hidden|,crime| + V mobilize| + N shape|,acute| + V stab| +̴̲ V speak|˵ +̵ N weapon|,*stab| +̶ ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ +̹ ADJ aValue|ֵ,temperature|¶,cold| +̻ N tree| +̼ V irritate|ŭ +̼ V mobilize| +̼ ADJ aValue|ֵ,performance|,#irritate|ŭ +̿ N human|,*kill|ɱ,crime| + V itch| + V exile|,police| +ɱ V kill|ɱ,manner=hidden|,crime| + V stab|,Vresult|,result=wounded| +̽ V scout| + N tool|þ,*decorate|װ,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V itch| + N human|,*stab| + N beast| + V grant| + N tool|þ,generic|ͳ,$GiveAsGift| +͸ V protect| +ͽ V teach| + V grant| + CLAS ActUnit|,&event|¼ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N attribute|,sequence|,&entity|ʵ + NUM qValue|ֵ,sequence|,ordinal| +γ N human|,occupation|ְλ,official|,*manage| +δ½ N earth| +ε ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ε ADV aValue|ֵ,sequence| +ε N attribute|,sequence|,&entity|ʵ +λ N artifact|˹,commercial|,useless|,generic|ͳ +μ ADJ aValue|ֵ,importance|,secondary| +μȦ N part|,%implement|,#electricity| +Ů N human|,family|,female|Ů +Ʒ N artifact|˹,commercial|,useless|,generic|ͳ + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N time|ʱ,day|,future| + N sound| + N sound| + ADJ aValue|ֵ,importance|,secondary| + N stone|ʯ,mine| + N tree| + N attribute|,frequency|Ƶ,&event|¼ + N attribute|,sequence|,&entity|ʵ +Ҫ ADJ aValue|ֵ,importance|,secondary| + V inferior| +֮ V inferior| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,family|,male| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N attribute|,ability|,#listen|,&AnimalHuman| + N attribute|,ability|,able|,#listen|,&AnimalHuman| +ϻ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,wise|,&human| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ,Ϳһʱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ӱ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,color|ɫ,green| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +а ADJ aValue|ֵ,color|ɫ,blue|,light| +а׶ N part|,%vegetable|߲,body| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,color|ɫ,green| +л N part|,%vegetable|߲,body| + ADJ aValue|ֵ,color|ɫ,green| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| +Ҵææ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +æ ADJ aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,importance|,secondary| + V conduct|ʵʩ + V engage| + V include| + V obey|ѭ + PREP {LocationIni} + PREP {TimeIni} + PREP {source} +Ӳ ADV {neg|} +ӳ V discuss|,manner=cautious| +Ӵ ADV aValue|ֵ,time|ʱ,now| +ӴԺ ADV aValue|ֵ,time|ʱ,future| +Ӷ ADJ aValue|ֵ,behavior|ֹ,passive| +Ӷ CONJ {supplement|ݽ} +ӷ N human|,crime|,undesired|ݬ +Ӹйʶ ADJ aValue|ֵ,ability|,able|,$sense|о +ӹŵ ADV aValue|ֵ,duration|,TimeLong| +ӹ ADV aValue|ֵ,duration|,TimeLong| +Ӽ˰ N expenditure| +Ӽ V obey|ѭ,content=simple| +ӽ V engage|,content=teach|,education| +ӽԺ ADV aValue|ֵ,time|ʱ,future| +Ӿ N expression| +Ӿ V include|,ResultWhole=army|,military| +ӿ ADV aValue|ֵ,behavior|ֹ,lenient| + ADV aValue|ֵ,frequency|Ƶ,often| + V cease|ͣ,content=(prostitution|) +˰ N expenditure| +㿪ʼ V start|ʼ + V disappear|ʧ + V obey|ѭ,content=aspiration|Ը +ǰ ADJ time|ʱ,past| +ǰ N time|ʱ,past| + ADV aValue|ֵ,behavior|ֹ,lenient| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V include|,ResultWhole=army|,military| + ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ݲ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V obey|ѭ,content=persuade|Ȱ˵ +ʦ V engage|,content=study|ѧ + V engage| + V handle| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| + V BeMember|,whole=<> + ADV aValue|ֵ,earliness|,early| + V happen| +ͷ ADV aValue|ֵ,frequency|Ƶ,again| +ͷ ADV aValue|ֵ,time|ʱ,head|ͷ +ͷ V start|ʼ +δ ADV {neg|} +޵ ADV aValue|ֵ,behavior|ֹ +С ADV aValue|ֵ,time|ʱ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,behavior|ֹ,strict| +ҵ V obtain|õ,possession=occupation|ְλ +ҵԱ N human|,#occupation|ְλ,employee|Ա +һ ADJ aValue|ֵ,behavior|ֹ,faithful| +ҽ V engage|,content=cure|ҽ,medical|ҽ + V engage|,content=entertainment|,entertainment| +Ӱ V engage|,content=entertainment|,entertainment| + ADV aValue|ֵ,behavior|ֹ,WellTreat|ƴ +絽 ADV aValue|ֵ,duration|,TimeLong| + V engage|,content=politics|,politics| + PREP {source} + ADV aValue|ֵ,behavior|ֹ,strict| + V obey|ѭ,content=persuade|Ȱ˵ + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N physical|,mass| + N tree|,mass| +Լ V ComeTogether| + N tree| + V grow|ɳ,manner=exuberant|ï + V happen| + N publications|鿯,mass| + ADJ aValue|ֵ,color|ɫ,colored| + V approach|ӽ + V gather|ɼ +շ V MakeTrouble| +շ V gather|ɼ,possession=money| +պ V ComeTogether| +պ ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ +պ V create|,manner=careless| +ռ V ComeTogether| +ռ V gather|ɼ +Ǯ V gather|ɼ,possession=money| + ADV {comment|} +Ȥ V please|ȡ + V MakeTrouble| + V WhileAway| + V benefit| + V add| + V add| + V gather|ɼ + V gather|ɼ,result=sufficient| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| +ֱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ֱ ADJ aValue|ֵ,performance|,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ֱ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ֲ N material|,?clothing|,coarse| +ֲ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ֲ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ֲ赭 N edible|ʳ,thrifty| +ִ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ִ ADJ aValue|ֵ,SoundVolume|,loud| +ִ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ַ N material|,#clothing| +ַ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ַ ADJ aValue|ֵ,quality|,crude|ª,agricultural|ũ +ַ ADJ aValue|ֵ,style|,free| +ֹ V estimate|,manner=simple| +ֺ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֻ N material|,?clothing| +ֻ N text|,vulgar|,undesired|ݬ +ֻ N fact|,do|,engage|,crude|ª +ּӹ V produce|,simple|,industrial| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +³ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,simple| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,rash|ç + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ attribute|,behavior|ֹ,vulgar|,undesired|ݬ +׵ N human|,evil|,undesired|ݬ + V calculate|,manner=simple| +ͨ V know|֪,manner=simple| +ϸ N attribute|,fineness|ϸ,&physical| +ϸ N attribute|,quality|,&act|ж + ADJ aValue|ֵ,behavior|ֹ,simple| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ĵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +֦Ҷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,useless|,generic|ͳ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,size|ߴ,big| +׳ ADJ aValue|ֵ,SoundVolume|,loud| +׳ ADJ aValue|ֵ,fineness|ϸ,widediameter| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N emotion|,#love|,jealous|ʼ + N material|,#food|ʳƷ,$eat|,sour| +׹ N human|,*love|,*jealous|ʼ +׾ N emotion|,#love|,jealous|ʼ + N fruit|ˮ + N chemical|ѧ +̳ N human|,*love|,*jealous|ʼ + N emotion|,#love|,jealous|ʼ + V ComeTogether| + CLAS NounUnit|,&inanimate|,&plant|ֲ + ADJ aValue|ֵ,newness|¾,new|,desired| +ӵ V ComeTogether| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + V urge|ʹ +ٳ V benefit| +ٷ V urge|ʹ +ٽ V urge|ʹ +ٽ N institution|,*urge|ʹ + V urge|ʹ +ʹ V urge|ʹ +ϥ V sit|,manner=BeNear| +ϥ̸ V talk|̸,manner=sincere| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + V sell|,means=disseminate|,commercial| +֯ N InsectWorm| + V jump| + V rob| + V rob|,royal| +۶ V rob| +۶ V rob|,royal| +۶ N human|,*rob|,royal| +۸ V alter|ı,StateIni=true|,StateFin=fake|α +λ V rob|,possession=power|,royal| + V alter|ı + V expel| + V flee| +ܷ V attack| + V flee| + V destroy| +ݲ V damage| +ݻ V destroy| +ݿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N character|,surname|,human|,ProperName|ר +Ρ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + V SpeedUp|ӿ + V urge|ʹ +߰ V urge|ʹ +߱ V urge|ʹ +߲ V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ +ߴ V urge|ʹ +߷ V SpeedUp|ӿ,scope=fat|,agricultural|ũ +߻ V SpeedUp|ӿ,industrial| +߻ N chemical|ѧ,*SpeedUp|ӿ,industrial| +߻ѻ V SpeedUp|ӿ,industrial| +߻ N result|,*SpeedUp|ӿ,industrial| +߿ V urge|ʹ,ResultEvent=return|,#money|,commercial| +ᵯ N weapon|,$firing|,*expel|,#uprise|,#police| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#sleep|˯ + N music|,*CauseToDo|ʹ,#sleep|˯ + N method|,*CauseToDo|ʹ,#sleep|˯ +ҩ N medicine|ҩ,*CauseToDo|ʹ,#sleep|˯ + V urge|ʹ,manner=endeavour| + N human|,*urge|ʹ,#endeavour| + V CauseToDo|ʹ,ResultEvent=drain|ų,medical|ҽ + V urge|ʹ + V SpeedUp|ӿ,scope=GiveBirth|,agricultural|ũ +˷ܽ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| + ADJ aValue|ֵ,performance|,*CauseToDo|ʹ,#weep| + V SpeedUp|ӿ,scope=GiveBirth|,medical|ҽ + V SpeedUp|ӿ,scope=ripe|,agricultural|ũ + V urge|ʹ,ResultEvent=return|,commercial| +¼ N medicine|ҩ,*CauseToDo|ʹ,#vomit|³ +ծ V urge|ʹ,ResultEvent=return|,#money|,commercial| + V urge|ʹ,ResultEvent=return|,#money|,commercial| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,taste|ζ,crisp|,desired| + ADJ aValue|ֵ,taste|ζ,tender|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N attribute|,hardness|Ӳ,crisp| + N fruit|ˮ + V tired|ƣ + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V moisten|ʪ,purpose=strengthen|ӹ,industrial| + V drill|ϰ + ADJ aValue|ֵ,color|ɫ,green| + N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +΢ N land|½ + N place|ط,village| +峤 N human|,#occupation|ְλ,official|,#village| + N regulation|,village| + N location|λ,%village|,#mouth| + N place|ط,village| + N human|,*reside|ס,*function|,#village| + N house| +ͷ N location|λ,%village|,#mouth| +կ N place|ط,village| + N place|ط,village| +ׯ N place|ط,village| + N place|ط,village| + V AmountTo|ܼ + V ComeTogether| + V SetAside| + V SetAside|,commercial| + V alive| + V cherish|Ļ + V exist| + V keep| + V store| +永 V record|¼ + V store|,purpose=check| +泵 N facilities|ʩ,@store|,#LandVehicle| +洢 V store| +洢 N quantity|,amount|,$store|,&natural|Ȼ,mine| +洢 N part|,%computer| +浥 N bill|Ʊ,#wealth|Ǯ +浵 V store| + V ^discuss| + V SetAside| + N bill|Ʊ,#wealth|Ǯ + V alive| + N quantity|,rate|,alive|,&animate| + N artifact|˹,commercial|,generic|ͳ + V SetAside|,patient=money|,commercial| + N money|,$SetAside| + N quantity|,amount|,&livestock| + V stay|ͣ +ȡ V store|,#computer| + V SetAside|,commercial| + V reside|ס +ʳ V StomachTrouble|֢ + V alive| + V ExistAppear| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V cherish|Ļ + V cherish|Ļ + V exist| + N document|,@record|¼,#SetAside|,#money| +ִ N bill|Ʊ,#wealth|Ǯ + V SetAside| + N part|,%computer| +ߡ N document|,@record|¼,#SetAside|,#money| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| +粽 V follow| +粽 V refuse|,content=surrender| +粽 V BeUnable| +ݲ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + N space|ռ,small|С + N emotion| + N time|ʱ,TimeShort| + N emotion| + V discuss| +ĥ V discuss| + V discuss| + V discuss| + V assemble|ۼ + V compile|༭ + V pick|ʰ + V mediate| +Ū V incite|ָʹ +Ū V tease|ȡ +Ҫ V compile|༭ +Ҫ N text| + V rub|Ħ + N tool|þ,*wash|ϴ +ĥ V rub|Ħ + V PlayWith|Ū +ϴ V wash|ϴ + V wash|ϴ + V arrange| + N method|,*use|,#expression|,#compile|༭ +ʩ N method| +ֲ V suffer|,manner=sudden| + V handle| +ò V handle|,manner=improper| +õõ V handle|,manner=proper| +ʧ V handle|,manner=improper| +ԣ V handle|,manner=suitable| + V MakeLower| + V defeat|սʤ + V defeat|սʤ + V discourage|ˮ + V wounded| + N phenomena|,undesired|ݬ,#unfortunate| + V BeAcross|ཻ + ADJ aValue|ֵ,content|,mixed| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V grind|ĥ + N result|,wrong|,undesired|ݬ + N emotion|,FondOf|ϲ + N fact|,police|,wrong| + N character|,wrong| + V turn|Ťת,patient=LandVehicle| + N result|,wrong|,undesired|ݬ + V IllTreat| + V blame|Թ,manner=improper| + V lose|ʧȥ + N text|,wrong| + V inlay|Ƕ,material=metal| + N experience|,wrong| + V escape| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V mad| + V exist|,manner=disperse|ɢ + ADJ aValue|ֵ,scene|,beautiful| +ʧ V lose|ʧȥ +λ N disease| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ +ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V inlay|Ƕ,material=metal| + ADJ aValue|ֵ,content|,mixed| + N character|,wrong| + ADJ aValue|ֵ,content|,mixed| +۸ ADJ aValue|ֵ,content|,mixed| + V TakeVehicle| + V add| + V build| + V connect| + V lift| + V establish|,PatientProduct=community|,entertainment| + V establish|,PatientProduct=part|,#institution| + V associate| + V associate| + V speak|˵ + V TakeVehicle|,patient=LandVehicle| + V build| + V TakeVehicle| +⳵ V TakeVehicle|,patient=LandVehicle| + V TakeVehicle|,patient=ship| + V TakeVehicle|,#vehicle|ͨ,manner=wrong| + V TakeVehicle|,patient=LandVehicle|,manner=wrong| + V cooperate| + N human|,friend| + V TakeVehicle|,patient=LandVehicle| +糵 V TakeVehicle|,patient=LandVehicle| +ɻ V TakeVehicle|,patient=aircraft| + V build| + V TakeVehicle|,patient=LandVehicle| + V speak|˵ + V associate| + V include|,ResultWhole=community|,#eat| + V TakeVehicle|,patient=LandVehicle| +Ƴ̳ V TakeVehicle|,patient=LandVehicle| + V build|,PatientProduct=bone| + V show|,content=arrogant| + V help|,purpose=CarryOnBack| + V stand|վ,location=part| + V build| + V establish| + V connect| + V BeNear| + V relate|й + V rescue| + V human|,*TakeVehicle| + V transport|,patient=human| + V fall| + V reply| + V mix| +ǻ V reply| +ǻ V talk|̸ + V build|,PatientProduct=facilities|ʩ + V recommend|Ƽ,purpose=GetMarried| + V build| + V help| + V sell| + V transport| + V TakeVehicle| +] V speak|˵ +ڨ V speak|˵ + V AmountTo|ܼ + V LeadTo|ͨ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V arrive| + V express|ʾ + V fulfil|ʵ + V fulfil|ʵ,patient=standard|׼ + V fulfil|ʵ +ɽ V fulfil|ʵ,patient=commercial| +Э V fulfil|ʵ,patient=ExpressAgreement|ʾͬ +ﵩ ADV aValue|ֵ,duration|,TimeLong| +ﵽ V fulfil|ʵ + N place|ط,ProperName|ר,(Australia|Ĵ) + N knowledge|֪ʶ,#animate| +ٹ N human|,official|,HighRank|ߵ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,ProperName|ר + N human|,(Dahoma|) +₩ N place|ط,capital|,ProperName|ר,(Senegal|ڼӶ) +│ N place|ط,capital|,ProperName|ר,(Bangladesh|ϼ) +˹ N place|ط,city|,ProperName|ר,(US|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) + N human|,official|,religion|ڽ,ProperName|ר,(Tibet|) +˹ķ N place|ط,capital|,ProperName|ר,(Tanzania|̹ɣ) +ķ N weapon|,$firing| + V express|ʾ,content=thought|ͷ + N unit|λ,&strength| + V recompense| + V reply| + N result| + V reply| + V speak|˵ + V reply| + N text|,$reply| + V reply| + V reply|,content=wrong| + V reply| + V reply| + N readings|,$reply|,#exam| + V reply|,time=exam| + V reply| + V reply|,time=exam| + V attribute|,kind|,#reply|,#ask|,&text| + V reply|,content=$ask| +л V thank|л + V reply|,time=exam| +Ӧ V agree|ͬ +Ӧ V reply| + CLAS NounUnit|,&inanimate| + V TakeOutOfWater| + V associate| + V beat| + V build| + V buy|,commercial| + V calculate| + V catch|׽ס,agricultural|ũ + V compile|༭ + V damage| + V dig|ھ + V draw| + V engage| + V exercise|,sport| + V fight| + V gather|ɼ + V lift| + V mix| + V produce| + V remove| + V send| + V spray| + V use| + V weave| + V wrap| + V write|д + PREP {LocationIni} + PREP {TimeIni} + V subtract|,patient=price|۸,commercial|,(range=20%) + V drill|ϰ,content=firing| +г N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| + V issue|ַ,possession=coupon|Ʊ֤ + V ill|̬ + V defeated| + V defeat|սʤ + V beat| + V MakeUp|ױ + V grow|ɳ,#crop|ׯ + V dump| + V wrap| +Ʊ V guarantee|֤ +Ʊ V guarantee|֤ +򱧲ƽ V help|,scope=unfortunate| +ȷ V quote|,patient=example|ʵ +򲹶 N repair| +򲹶 N repair| +򲻿 ADJ aValue|ֵ,possibility|,impossible|,$defeat|սʤ + V gather|ɼ,possession=FlowerGrass|,means=break|۶ +ݸ V compile|༭,PatientProduct=text| +ݾ V RashlyAct|,result=exposure|¶ + V cease|ͣ + V shiver| + V beat|,patient=crop|ׯ,purpose=gather|ɼ,agricultural|ũ + V forming|γ,PatientProduct=place|ط,purpose=perform|,entertainment| +һƬ V merge|ϲ +ಲ V exposure|¶,#body| + V exposure|¶,#foot| + V attack|,military| + V guide| + V seek|ıȡ + PREP {LocationThru} + PREP {TimeIni} + V plan|ƻ,manner=wrong| + V plan|ƻ,manner=wrong| + V recreation| + V defeat|սʤ,politics| +ظ V GoBack| +û ADJ aValue|ֵ,relatedness|,intimate|,desired| + V guess|²,purpose=recreation| + V AtEase| + V eat| + V compile|༭,PatientProduct=text| + V do|,content=elementary| + V PutInOrder| + V entice|,means=GiveAsGift|,crime| + V manage| + V MakeSound|,content=time|ʱ +籨 V transmit|,patient=letter|ż +绰 V associate|,instrument=tool|þ + V destroy| + V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ + V excite|ж + V fight| + V compete| +̶ V engage|,content=affairs| +̹ V engage|,content=affairs| + V break|۶ + V cease|ͣ + V subtract|,patient=price|۸,commercial|,(range=50%) + V shiver| + V beat|,#skin|Ƥ + V discharge| + V dispatch|Dz + V pass|ȹ + N method| + V defeat|սʤ + V reverse|ߵ + V alter|ı,StateIni=fail|ʧ,StateFin=succeed|ɹ + V draw|,ContentProduct=shape|,square| + V draw|,ContentProduct=shape|,square| + V associate|,instrument=tool|þ + V defend| + V engage| +Ҿ V salute|¾,means=CausePartMove| + V recreation|,patient=MusicTool|,entertainment| + V uneasy| +Ȼ N machine|,*separate|,#crop|ׯ,agricultural|ũ +ǻ V speak|˵,manner=arrogant| +˾ V accuse|ظ,police| + V disseminate|,commercial| + V roll| + V tease|ȡ +Ƿ V respire| + V beat| +Ƿ V respire| +Ƿ N human|,*respire| + V destroy|,patient=crime|,police| + V MakeTrouble| + V MakeSound|,#sleep|˯,#ill|̬ + V MakeSound|,#sleep|˯,#ill|̬ + V slide| + V damage| +ζ V walk|,manner=wave|ڶ +Ʊ V MoveItBack| + V lighting|ȼ + N tool|þ,*lighting|ȼ + V attack| + V beat| + N MusicTool| + V do|,content=elementary| +ҽ V rob|,source=family| + V fight| + V eat| +ɽ V fight|,take|ȡ,#country| +򽻵 V associate| + V MakeTrouble| + V rob| + V twine| + V GoInto| + V subtract|,patient=price|۸,commercial|,(range=10%) + V rescue| + V TurnOn| + V open| +촰˵ ADV {comment|} + V stab| + V MakeSound| + V defeat|սʤ + V associate| + V transmit| + V SelfMove| + V TakeOutOfWater| +Ա N human|,#occupation|ְλ,*TakeOutOfWater| + V WeatherBad| + V compete| +̨ V compete| +ǹ V attack|,manner=secret| +ǹ V firing| +ǹ V firing|,manner=secret| + V manage| + V guess|² + V look| + V engage|,content=catch|׽ס,agricultural|ũ +㹤 V engage|,content=affairs| + V engage|,content=affairs| + V MakeSound| + V MakeTrouble| +ˮ V damage| + V HideTruth| + V IllTreat|,#beat|,#ExpressAgainst|Ǵ + V HideTruth| + V hide| + V cry| +ĥ V brighten|ʹ + V recreation| + V recreation|,instrument=tool|þ + V swollen| + V exhale| +ƨ V swollen| + V bump|ײ,StateFin=OutOfOrder| + V remove| +Ƴ V disobey|Υ,content=regulation| +ɳʵ V ask|,manner=attentive|ϸ + V subtract|,patient=price|۸,commercial|,(range=25%) + V subtract|,patient=price|۸,commercial|,(range=30%) + V feed|ι,patient=gas| + V mobilize| +Ͳ N tool|þ,*feed|ι,#gas| +ǰʧ V FallDown| +ǰվ V LeaveFor|ǰ +ǹ V firing|,instrument=weapon| + V SeekPleasure|Ѱ + V seek|ıȡ + V exercise|,instrument=tool|þ +Ȥ V tease|ȡ +Ȧ V circle| +Ⱥ V fight|,partner=mass| + V MakeTrouble| + V beat| + V include|,manner=secret| +乬 V despise| +ʮ˲ V ExpressAgainst|Ǵ +ɢ V separate| +ɢ V spread| +ɨ V remove| +ɨ V wipe| +ɨ V wipe|,patient=room| +ɨ V remove|,patient=room| +ɨս V wipe|,patient=place|ط,#fight|,military| +ɱ N fact|,fight| + V WeatherBad| + V beat|,result=wounded| + V write|д +ʤ V win|ʤ + N human|,crime|,undesired|ݬ + V express|ʾ,instrument=hand| +ˮ V gather|ɼ,possession=liquid|Һ + V plan|ƻ + V calculate|,instrument=tool|þ + V plan|ƻ + V bump|ײ,StateFin=OutOfOrder| +̥ V cease|ͣ,content=pregnant|,#medical|ҽ +̽ V ask| + V rob|,possession=country|,politics| + V win|ʤ + V ask| +ͨ V fulfil|ʵ +ͨ V endeavour| +ͷ V beat|,PartOfTouch=head|ͷ +ͷ V guide| +ͷ V guide| +ͷ V guide| + V defeat|սʤ +ù V refuse| + V ask| +ȷ V guide| + V start|ʼ,content=firing| + V succeed|ɹ + V remove| +С V tell| +С V plan|ƻ,manner=sly| + PP aValue|ֵ,behavior|ֹ,sincere| + V eat|,patient=good| +ڻ V protect| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V stab| + V draw| + V experiment|ʵ +ҩ V spray|,patient=chemical|ѧ +ҹ V endeavour| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡֽ N paper|ֽ,*print|ӡˢ +Ӯ V win|ʤ +Ӳ V endeavour| +ʫ N text| +λ V fight| +λ V roam| + V catch|׽ס,agricultural|ũ +Ԯ V attack|,military| +Բ V mediate| +Ӷ V engage|,content=secondary| + V produce|,industrial| +ս V shiver| + V fight|,military| +к V SayHello|ʺ +к V persuade|Ȱ˵ +к V tell| + V BecomeLess|,commercial| +ۿ V BecomeLess|,commercial| +ۿ V FitNot| + V cure|ҽ + V fulfil|ʵ + V ShowOff|ҫ + V plan|ƻ + V seek|ıȡ +ס V cease|ͣ +ת V rotate|ת +׮ V bury| + V write|д +ָ V text| +ֻ N tool|þ,*print|ӡˢ +Ա N human|,#occupation|ְλ,*write|д + V beat|,PartOfTouch=skin|Ƥ + V sit|,religion|ڽ +ö V StomachTrouble|֢ +ö V ill|̬,#respire| + V end|ս + V sleep|˯ +˯ V sleep|˯ + V MakeSound|,#sleep|˯,#ill|̬ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,clan| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,age|,&animate| + N attribute|,size|ߴ,&physical| + N fact|,important|,#police| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V exposure|¶ +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N time|ʱ,morning| + V exposure|¶ + V defeated| + V defeat|սʤ + N part|,%InstitutePlace|,education| + ADJ qValue|ֵ,amount|,many| +뱲 N time|ʱ,#alive|,TimeLong|,half| + V handle| + N system|ƶ +󱥶 V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +󱥿ڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +۸ V enjoy|,content=look|,#beautiful| +۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| + N attribute|,status|,education|,&human| +Ӫ N facilities|ʩ,space|ռ,@reside|ס +Ӫ N part|,%institution|,*order|,main|,military| + N PenInk|ī,*write|д + ADJ qValue|ֵ,amount|,many| + N text|,$write|д + V excrete|й,patient=waste| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N human|,military| + N army| + N food|ʳƷ + N human|,family|,male| + V aValue|ֵ,ability|,maintain|,desired| + ADV aValue|ֵ,degree|̶,more| +е N place|ط,country|,ProperName|ר,(Europe|ŷ) +е߼ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,distance|,far|Զ,#walk| + N attribute|,distance|,far|Զ,&walk| + ADJ aValue|ֵ,distance|,far|Զ,#walk| + ADJ qValue|ֵ,amount|,many| +󲿷 ADJ qValue|ֵ,amount|,many| +ͷ ADJ aValue|ֵ,size|ߴ,big| +С V lavish|˷ + N edible|ʳ,foreign| + N food|ʳƷ,important| + N edible|ʳ,foreign| +ٴ V engage| + N part|,%AnimalHuman|,viscera| +󳦸˾ N bacteria|΢ + N attribute|,outlook|ǰ,&event|¼ + N water|ˮ,#waters|ˮ + N LandVehicle| + N human|,#occupation|ְλ,*drive|Ԧ,#ship|,#machine| + N human|,#occupation|ְλ,royal| + N place|ط,city|,important| +Դ V consume|ȡ,manner=extravagant| +һ V surprise| + N beast| +Ѫ V bleed|Ѫ +󴵴 V ShowOff|ҫ +С ADJ aValue|ֵ,standard|׼,average|,desired| +ȴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V fight|,manner=fierce| + ADV aValue|ֵ,degree|̶,very| +󷽷 ADJ aValue|ֵ,demeanor|,gracious|,desired| +СС ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N beast| + ADJ aValue|ֵ,courage|,brave|,desired| + N tool|þ,*cut|,*split|ƿ,*stab| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N method|,fair| + N reason| + N reason|,important| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N human|,enemy|,strong|ǿ + ADV {comment|} + N place|ط + N fact|,great|ΰ + N law|ɷ,religion|ڽ + N room|,%facilities|ʩ + N room|,%facilities|ʩ,religion|ڽ +󶯸ɸ V fight| +󶯸λ V angry| + N facilities|ʩ,route|·,important| + N part|,%AnimalHuman|,nerve| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADV aValue|ֵ,possibility|,almost| +󶼻 N place|ط,city|,important| + N place|ط,city|,important| + N human|,fat|,#eat| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N institution| + N part|,%army|,military| + ADJ qValue|ֵ,amount|,many| + ADV {comment|} + ADJ qValue|ֵ,amount|,many| + N qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,many|,&physical| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +޵ ADJ aValue|ֵ,size|ߴ,big|,undesired|ݬ + V ExpressAnger|ʾŭ + N law|ɷ + ADV {comment|} + ADJ aValue|ֵ,appearance|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| +ʴ V TalkNonsense|Ϲ˵ + N part|,%physical| + N stone|ʯ,#AnimalHuman|,waste|,$excrete|й + N wind|,strong|ǿ,#WeatherBad| + N phenomena|,unfortunate|,hardship| + N wind|,strong|ǿ,#waters|ˮ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,#occupation|ְλ,official|,past| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,#ship| +󸹱 ADJ aValue|ֵ,fatness|,fat| +󸹼 N human|,rich|,desired| +Ƥ N FlowerGrass|,?medicine|ҩ,$eat| + N human|,rich| + ADJ aValue|ֵ,content|,simple| + N part|,%information|Ϣ,heart| + ADV {comment|} + V endeavour| + N part|,%information|Ϣ,bone| + N human|,family|,male| + N human|,male| + N human|,strong|ǿ,male| + N tool|þ,*communicate| + N result|,#succeed|ɹ,desired| +󹦸 V succeed|ɹ + ADJ aValue|ֵ,strength|,strong|ǿ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human|,royal| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N human|,family|,female|Ů + N MusicTool| + N shows| + N clothing|,#body| + N attribute|,rank|ȼ,&thing| + N part|,%building|,mouth|,important| + N attribute|,scene|,great|ΰ,&inanimate| +ģ ADJ aValue|ֵ,range|,extensive| +ģ ADJ aValue|ֵ,range|,extensive|,desired| +ģ ADJ weapon|,*destroy| + N food|ʳƷ,generic|ͳ + N waters|ˮ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N time|ʱ,day|,cold| +󺰴 V cry|,manner=loud| +󺰴 V disseminate| + N phenomena|,undesired|ݬ,waterless|,#weather| + V expect|,content=lucky| + N human|,big| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʱ N time|ʱ,important| + N MusicTool| + ADJ aValue|ֵ,size|ߴ,big| + N attribute|,name|,&human| + N human|,#power|,strong|ǿ,desired| + V disseminate| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,desired|,$like|ϧ + N place|ط,military| + N time|ʱ,future|,year| + N time|ʱ,future|,day| + V cry| + N human|,rich|,desired| + N text|,$boast| + N FlowerGrass|,?medicine|ҩ,$eat| + N fact|,discuss| + N fact|,discuss|,regular| + N room| + N human|,mass| + N human|,mass| + N fire| +󲻽 V ignorant|֪ + ADJ aValue|ֵ,circumstances|,happy|,desired| +󼪴 ADJ aValue|ֵ,circumstances|,happy|,desired| + N FlowerGrass|,?medicine|ҩ,$eat| + N plan|ƻ,important| + N community|,family|,glorious| + N human|,able|,desired| + PRON {ThirdPerson|,mass|} + V subtract|,range=extensive| + ADJ aValue|ֵ,size|ߴ,big| + N human|,#occupation|ְλ,official|,military| + N human|,official| + N waters|ˮ + N tool|þ,*reward|,$GiveAsGift|,desired| + N fact|,compete|,sport| + V cry| + N facilities|ʩ,route|· +С N facilities|ʩ,route|· + N result|,win|ʤ + V excrete|й,patient=waste| + N human|,family|,female|Ů + N human|,strong|ǿ,female|Ů + N part|,%clothing|,body| +С V flurried| + N human|,family|,male| + N attribute|,circumstances|,main|,&entity|ʵ + ADV aValue|ֵ,range|,extensive| + N army|,important|,#military| + N human|,mass| + CLAS unit|λ,&heat| + V exam|,education| +ͳ N LandVehicle| + V fulfil|ʵ,patient=aspiration|Ը,scope=eat| + V satisfied| + N human|,rich|,desired| + N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ +ϴ N human|,foolish|,undesired|ݬ +ʯ N stone|ʯ + N room| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N humanized|,ProperName|ר +ʿ N human|,strong|ǿ + N place|ط,city|,ProperName|ר,(China|й) + N part|,%house|,bone| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N material|,?food|ʳƷ,$eat| + ADJ aValue|ֵ,age|,over| +в N disease| +¥ N house| +· N facilities|ʩ,route|· +· N artifact|˹,commercial|,ordinary|,generic|ͳ +½ ADJ aValue|ֵ,property| +½ N earth| +½ N part|,%country|,ProperName|ר,(China|й) +½ N earth| + ADV aValue|ֵ,range|,ish| + N part|,%information|Ϣ,heart| + N thinking|˼,substantial|ʵ + N human|,family|,female|Ů + N human|,female|Ů + N crop|ׯ,?material|,#addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ + N fish| + N fish| +ʿ N place|ط,capital|,ProperName|ר,(Syria|) + N crop|ׯ +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +è N beast| + N part|,%building|,mouth| + N material|,?food|ʳƷ,#crop|ׯ + N part|,%entity|ʵ,skin|Ƥ + ADV aValue|ֵ,degree|̶,ish| + N InsectWorm|,undesired|ݬ + V announce| + N attribute|,name|,&human| + ADJ aValue|ֵ,reputation|,glorious|,desired| +Ȼ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren| +Ĵָ N part|,%AnimalHuman|,hand| +ľ N tool|þ,*beat| + N phenomena|,undesired|ݬ,#unfortunate| + N part|,%AnimalHuman|,head|ͷ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| + N time|ʱ,year| + N time|ʱ,year|,desired|,#crop|ׯ +һ N time|ʱ,festival|,@congratulate|ף +ҹ N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů + N human|,female|Ů,family| + N human|,*boast| + N weapon|,*firing| +Ա N human|,#occupation|ְλ,*judge|ö,police| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N LandVehicle| + ADJ qValue|ֵ,amount|,many| + N attribute|,effect|Ч,&human|,&organization|֯ +ҵ N human|,#occupation|ְλ,commercial| + N fact|,respire| + N gas|,#weather| + N sky| +ѹ N attribute|,strength|,&gas| +ǧ N inanimate| +Ǯ N money|,many| +ǰ N time|ʱ,past|,year| +ǰ N time|ʱ,past|,day| + N facilities|ʩ,route|·,#waters|ˮ + N place|ط,ProperName|ר,(China|й) + N time|ʱ,day|,#congratulate|ף + N time|ʱ,day|,*congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N crop|ׯ,$collect|,#autumn| + N fact|,collect|,#crop|ׯ,#autumn| + N time|ʱ,season|,#collect|,#autumn| + N drinks|Ʒ,$addict|Ⱥ + N material|,?drinks|Ʒ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + N human|,adult| + N human|,royal| + N human|,desired|,important| + N fact|,compete| +ɨ V clean|ʹ +ɩ N human|,family|,female|Ů +ɩ N human|,female|Ů +ү N human|,#wealth|Ǯ,desired| +ͷ N human|,undesired|ݬ + V cease|ͣ,content=punish|,police| + N human|,family|,female|Ů + ADJ aValue|ֵ,SoundVolume|,loud| + V announce| +к N human|,*cry| +ʦ N human|,able|,desired| +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*cook| +ʧ V disappointed|ʧ +ʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +ʹ N human|,female|Ů +ʹ N institution|,diplomatic|⽻ +ʹ N attribute|,rank|ȼ,diplomatic|⽻,&institution| + ADV aValue|ֵ,range|,extensive| + N affairs|,important| + N attribute|,circumstances|,important|,&organization|֯ +¼ N account|,@record|¼,#time|ʱ + N attribute|,outlook|ǰ,&event|¼ + N attribute|,outlook|ǰ,&event|¼ +ִ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N fact|,cure|ҽ + N attribute|,age|,&animate| + N human|,family|,male| + N human|,male| + N time|ʱ,day|,hot| + N quantity|,amount|,many|,&physical| +ˮ N phenomena|,unfortunate|,#water|ˮ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +մ N chemical|ѧ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̤ N attribute|,distance|,&walk| + N room| + N MusicTool| + N human|,#occupation|ְλ,*perform|,entertainment| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + N reason|,important| + ADV aValue|ֵ,range|,ish| + ADJ aValue|ֵ,range|,ish| + ADV aValue|ֵ,range|,ish| + ADV {comment|} +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N time|ʱ,afternoon| + N land|½,#crop|ׯ + N room| +ͬ N phenomena|,intimate|,desired| +ͬС V BeSame|ͬ +ͷ N human|,extravagant|,undesired|ݬ +ͷ N part|,%thing|,important|,body| +ͷ N tool|þ,*cover|ڸ +ͷ N tool|þ,*fasten|˩ + N part|,%AnimalHuman|,leg| + N drinks|Ʒ + N human|,*perform|,glorious|,entertainment| + N human|,able|,desired| + N human|,able|,desired| + N human|,official|,royal| +Ϊ ADJ aValue|ֵ,degree|̶,very| +ξ N human|,#occupation|ְλ,official|,military| +η ADJ aValue|ֵ,courage|,brave|,desired| + N place|ط,(China|й) + N place|ط,(China|й) + N waters|ˮ,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר +ϲ N fact|,desired|,#congratulate|ף +ϲ V joyful|ϲ +Ϸ N shows| +Ϻ N fish| + N house| + V display|չʾ,content=able|,means=endeavour| +ͨ V display|չʾ,content=able|,means=endeavour| +ྶͥ V differ|ͬ + N beast| +С ADJ aValue|ֵ,size|ߴ,big|,small|С +С N attribute|,rank|ȼ,&human|,&organization|֯ +С N attribute|,size|ߴ,&physical| +С N human|,adult|,young| +С N excrete|й,patient=waste| +С V excrete|й,patient=waste| +С N stone|ʯ,#AnimalHuman|,waste|,$excrete|й +У N human|,#occupation|ְλ,official|,military| +Ц V laugh|Ц +д ADJ aValue|ֵ,pattern|ʽ,&character| + N beast| + V mobilize| +ľ V build| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| +ͻ N computer| +۱ N building|,precious| +è N beast| + V repair| +ѡ N fact|,select|ѡ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ̶ N attribute|,status|,education|,&human| +ѧѧ N fund|ʽ,*reward|,#study|ѧ,education| +ѧʦ N human|,#occupation|ְλ,education|,*teach| +ѧ N human|,*study|ѧ,education| +ѩ N RainSnow|ѩ +ѩ N time|ʱ,day| +ѩ׷ V WeatherBad|,#RainSnow|ѩ + N part|,%AnimalHuman|,*bite|ҧ +֮ N attribute|,appearance|,gracious|,&human| + N medicine|ҩ,?addictive|Ⱥ + N material|,#food|ʳƷ,$eat| +Բ V boast| + N bird| + N money|,past| + N waters|ˮ,surfacial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Oceania|) + N place|ط,ProperName|ר,(Oceania|) + N human|,(Oceania|) +ҡ V walk| +ү N human|,family|,male| +ҵ N affairs|,great|ΰ +ҶԷ N disease| + N clothing|,#body| + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N part|,%information|Ϣ,heart| + N reason|,important| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + V abandon|,possession=family|,cause=loyal|Т +ӡ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ӡ N stationery|ľ,*print|ӡˢ + N material|,#food|ʳƷ,$eat| + V exist| +пΪ V worth|ֵ + V exist|,experiencer=human| + ADJ aValue|ֵ,content|,profound| +ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| +Ϊ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#prosper| + ADJ aValue|ֵ,size|ߴ,big|,more| + ADJ qValue|ֵ,amount|,many|,more| + N RainSnow|ѩ + V WeatherBad| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ա N human|,official| +Ժ N part|,%house|,space|ռ +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV {comment|} + N time|ʱ,month| +Ժ N house| +Ժ N house| + N time|ʱ,morning| + V incite|ָʹ,patient=thought|ͷ,public| + N food|ʳƷ,ordinary| +ս N fact|,fight| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle|,important| + ADV aValue|ֵ,range|,extensive| +ɷ N human|,desired|,brave| +ָ N part|,%AnimalHuman|,hand| +־ N aspiration|Ը,expect|,desired| + ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + N human|,mass|,ordinary| +ڴý N tool|þ,*disseminate| +ڻ ADJ aValue|ֵ,kind|,ordinary| + N land|½ + N human|,#occupation|ְλ,religion|ڽ +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N human|,*study|ѧ,education| +רԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ȼ N natural|Ȼ +ֱ N readings| + ADJ qValue|ֵ,amount|,many| + V happen| + N text| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N crop|ׯ,?material|,#food|ʳƷ + N clothing|,#body| + N fish| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + V stay|ͣ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ľ V stupefied|ľȻ + N fund|ʽ,^$return| + V BeUnable|,commercial| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,fierce|,crime|,undesired|ݬ +ͽ N human|,fierce|,crime|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N aspiration|Ը,evil|,undesired|ݬ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V PutOn| + V PutOn|,Vgoingon|չ + N character|,surname|,human|,ProperName|ר + V respect| +ñ V unfortunate| +ʤ N bird| +Т V condole|°,means=PutOn| + V apologize|Ǹ,cause=crime|,means=endeavour| + V TakeCare| + V bring|Я + V do| + V guide| + V own| + N part|,%LandVehicle|,leg| + N place|ط + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + PREP {partof} + V guide|,patient=army|,military| + V ill|̬ + V guide|,ResultEvent=SelfMove| + ADJ aValue|ֵ,property|,own|,#electricity| + V guide| + V guide|,patient=human| + N symbol|,#quantity|,#DoSum| + N metal| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V own|,possession=bacteria|΢,#disease| + N human|,*bring|Я,#bacteria|΢,#medical|ҽ + V bring|Я + V relate|й + V guide| +· V guide|,ResultEvent=SelfMove| +ͷ V guide| +ͷ N human|,*guide| +ͽ V teach|,target=human| + N medicine|ҩ +Т V condole|°,means=PutOn| +޴ɫ ADJ aValue|ֵ,content|,beautiful|,desired| +о V teach|,target=human|,education| + V own| +е ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N tool|þ,@record|¼ + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,possibility|,almost| + V disappear|ʧ + ADJ aValue|ֵ,property|,replace| + N attribute|,clan|,&thing| + V replace| + N time|ʱ + V do|,means=replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ +촦 N part|,%institution|,diplomatic|⽻ + V write|д,means=replace| + N human|,$select|ѡ + V mean|ָ + V replace| + N part|,%InstitutePlace| + N fact|,discuss| + N human|,important| + N community| +ųԱ N human|,#organization|֯ + N text| + V TakeVehicle| + N part|,%language| +ഫ ADJ aValue|ֵ,property|,$PassOn| + N attribute|,similarity|ͬ,different|,&human|,#aged|,#young| + V buy|,means=replace|,commercial| + V manage|,manner=replace| + N symbol| + V replace| + N expenditure| + ADJ aValue|ֵ,property|,replace|,#commercial| + V replace|,scope=teach| + V do|,means=replace| + V do|,means=replace| + N human|,*help| + N human|,*replace| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,*help| + N human|,*help|,#police| + N human|,*help|,police| + N human|,*replace| + N human|,commercial| + N symbol| + N part|,%language| + V teach| +ʡ N human|,#occupation|ְλ,official|,place|ط +г N human|,#occupation|ְλ,official|,#city| + N collect| + V sell| + V write|д + N knowledge|֪ʶ,#quantity|,#calculate| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + V replace| +Ϊ ADJ aValue|ֵ,property|,replace| + V sell|,means=replace|,commercial| +л V exchange| +л V metabolize|л,medical|ҽ + V do|,means=replace| + N human|,*help|,#MakeOthersKnowledge|ʹ˸֪ + N human|,*replace| + V replace| +Ʒ N physical|,*replace| +֮ V undergo|,content=replace| + N human|,#occupation|ְλ,official|,#country| + V do|,means=replace| + V borrow|,commercial| + V evade|ر + V forgive|ԭ + V lend|,commercial| + V lend| + N part|,%account|,commercial|,#human| + V lend| + V lend|,possession=money|,commercial| + N money|,commercial|,$lend| + CLAS NounUnit|,&physical| + N tool|þ,cubic|,@put| +ݲ N material|,?drinks|Ʒ + N beast| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V entertain|д + V request|Ҫ + V stay|ͣ + V treat|Դ + V wait|ȴ + V request|Ҫ,ResultEvent=measure| + V request|Ҫ,ResultEvent=check| + V stay|ͣ,TimeFin=<> + CONJ {time|ʱ} + V wait|ȴ,content=leave|뿪 + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ + V aValue|ֵ,duration|,TimeShort| + V wait|ȴ,content=time|ʱ +۶ V wait|ȴ,content=price|۸,purpose=sell|,commercial| + V request|Ҫ,ResultEvent=check| + V entertain|д,patient=human| + V wait|ȴ,content=text| + V associate| +˴ V associate| +˽ V associate| + V sell| + ADJ aValue|ֵ,property|,$KeepOn|ʹ +ҵ ADJ aValue|ֵ,property|,lose|ʧȥ,#occupation|ְλ +ҵԱ N human|,*lose|ʧȥ,#occupation|ְλ + ADJ aValue|ֵ,property|,$use| + N fact|,treat|Դ + N payment| + V catch|׽ס + V catch|׽ס,police| + V slack|͵ + ADJ slack|͵ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + V IllTreat| + V delay| + V indulge|,patient=self| + V delay| + V stay|ͣ + V delay| + V CarryOnBack| + N artifact|˹,commercial| + V bear|е + N duty| + CLAS unit|λ,&weight| + V guarantee|֤ + N human|,*guarantee|֤ + V undertake| + V bear|е,content=dangerous|Σ + V bear|е + N tool|þ,space|ռ,*transport|,#medical|ҽ,#rescue| + V fear| + V undertake| +ˮ V transport|,patient=liquid|Һ + V worried|ż + V worried|ż + N artifact|˹,commercial| + N duty| + ADJ aValue|ֵ,color|ɫ,red| + N medicine|ҩ,(China|й) + N bird| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Denmark|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Denmark|) + N money|,(Greenland|) + N human|,(Denmark|) + N language|,#country|,ProperName|ר +Ƥ N medicine|ҩ,(China|й) + N material|,*draw| + N part|,%human|,body| + N emotion|,loyal|Т,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N bill|Ʊ,#wealth|Ǯ + N character|,surname|,human|,ProperName|ר + N document| + ADJ qValue|ֵ,amount|,single| + ADV {emphasis|ǿ} + N computer|,simple| + N human|,commercial| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,thickness|,thin| + ADJ aValue|ֵ,range|,pieced|Ƭ + N quantity|,amount|,&crop|ׯ,&vegetable|߲ + N LandVehicle| + N process|,single| + ADJ aValue|ֵ,content|,pure| + ADJ aValue|ֵ,content|,pure|,desired| + ADV {emphasis|ǿ} + N attribute|,content|,pure|,&entity|ʵ + N expression| + N fact|,compete|,sport| +һ V PayAttention|ע + ADV {emphasis|ǿ} + V fight|,manner=single| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,behavior|ֹ,single| + N document|,medical|ҽ,@record|¼,#medicine|ҩ + ADJ aValue|ֵ,range|,pieced|Ƭ + N beast| + V do|,manner=self| + V do|,manner=self|,agricultural|ũ + N SportTool|˶ + N fact|,exercise| + ADJ aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + N facilities|ʩ,route|· +ɹ N MusicTool| + N crop|ׯ + N aValue|ֵ,property|,#chemical|ѧ + N attribute|,price|۸,&thing|,commercial| + N room| + N chemical|ѧ + N inanimate|,generic|ͳ + N bill|Ʊ,#wealth|Ǯ + N expression| +¡ ADJ aValue|ֵ,property|,#GiveBirth| + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N attribute|,name|,&human| +ť ADJ aValue|ֵ,form|״ +Ƭ۾ N tool|þ,*look|,#eye| +ǹƥ ADJ aValue|ֵ,behavior|ֹ,single| +׼ͥ N community|,family| +˴ N furniture|Ҿ,space|ռ,*sleep|˯ +˷ N room| +˼ N room| + N fact|,recreation|,entertainment| + N time|ʱ,day| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,single| + ADJ aValue|ֵ,property|,^GetMarried| + N human|,single|,male|,^GetMarried| + N human|,single|,^GetMarried| + N FlowerGrass| + N symbol|,#quantity| + N chemical|ѧ + N chemical|ѧ +λ N attribute|,amount|,&entity|ʵ +λ N part|,%organization|֯,generic|ͳ +λڲ N location|λ,%organization|֯,internal| + N facilities|ʩ,route|· +˼ N emotion|,love|,desired| + ADJ qValue|ֵ,amount|,single| + ADJ aValue|ֵ,direction|,single| + ADJ aValue|ֵ,form|״ +б N readings| + N regulation| + N attribute|,name|,surname|,&human| + N part|,%animal|,#eye| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +һ ADJ aValue|ֵ,content|,pure| +һ N quantity|,amount|,single|,&entity|ʵ + N clothing|,#body| + N character|,surname|,human|,ProperName|ר + N human|,official|,past| +Ԫ CLAS NounUnit|,&entity|ʵ + N document| + N tool|þ,*cover|ڸ,#sleep|˯ + N character| + V wipe|,manner=gentle| + N tool|þ,*wipe| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N tool|þ,cubic|,@put| +ľ V fear| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,brave| +Ϊ ADJ aValue|ֵ,behavior|ֹ,fierce| + V dare| +̴ N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,viscera| + V fear| + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,liquid|Һ +ʯ N disease| + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ʶ N attribute|,courage|,&AnimalHuman|,&organization|֯ +С ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +С N human|,timid| +֭ N part|,%AnimalHuman|,liquid|Һ + N attribute|,courage|,&AnimalHuman|,&organization|֯ + N human|,female|Ů,*perform|,entertainment| + N time|ʱ,morning| +Ƕ N human|,female|Ů,*perform|,entertainment| +Ϧ N time|ʱ,TimeShort| +Ϧ֮ ADJ aValue|ֵ,duration|,TimeShort| + N gas| + N material|,*feed|ι,#crop|ׯ + V ize|̬ + N gas| + COOR {but|} + COOR {but|} +Ը ADV {modality|} + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,weak| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,desired| + N fish| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,concentration|Ũ,watery|ϡ + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,red|,light| + V ize|̬ + ADJ aValue|ֵ,color|ɫ,yellow|,light| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| + N time|ʱ,season|,idle| + ADJ aValue|ֵ,color|ɫ,green|,light| +ɫ ADJ aValue|ֵ,color|ɫ,green|,light| +׶ N language|,#country|,ProperName|ר +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +Į֢ N disease| + ADJ aValue|ֵ,color|ɫ,BlueGreen| +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,light| +ˮ N water|ˮ,$drink| +ˮ N waters|ˮ,space|ռ +ˮ N fish| + V forget| + ADJ aValue|ֵ,pattern|ʽ,gracious|,desired| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,purple|,light| + V ComeToWorld| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + V ComeToWorld| + N place|ط,@ComeToWorld| + V accuse|ظ + V jump| + V loosen| + V recreation|,entertainment| + N shape|,round|Բ + V shoot| + N weapon|,$firing| + V perform|,#recreation|,#sing| + V shoot| + ADJ aValue|ֵ,performance| + N facilities|ʩ,route|· + N weapon|,$firing| + V congratulate|ף + N part|,%implement| +ɳ N tool|þ,*measure|,#weight| + N attribute|,strength|,&inanimate| +Ƭ N part|,%weapon| + V recreation|,entertainment| + V shoot| + V jump| +ͷ N weapon|,$firing| + N weapon|,$firing| +֮ N space|ռ,small|С + ADJ aValue|ֵ,behavior|ֹ,flexible| + ADJ aValue|ֵ,performance|,#FormChange|α + N attribute|,behavior|ֹ,flexible|,&event|¼ + N attribute|,performance|,#FormChange|α,&inanimate| +ѹ V restrain|ֹ,politics| +ҩ N weapon|,$firing|,mass| +ҩЯ N quantity|,amount|,&load|װ,#weapon| +ָ V PartSelfMove| +ָ֮ ADV aValue|ֵ,duration|,TimeShort| +ŵ N location|λ,&touch|,military| + N tool|þ,*recreation| + V recreation|,entertainment| + V accuse|ظ + N food|ʳƷ,#bird| + N part|,%bird|,embryo|,?food|ʳƷ + N shape| + N part|,%AnimalHuman|,embryo| +ø N physical|,%AnimalHuman|,#metabolize|л + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й,#disease| + N physical|,#animate| + N food|ʳƷ + N part|,%AnimalHuman|,embryo| + N bird|,*GiveBirth| + N part|,%AnimalHuman|,#embryo|,skin|Ƥ + N part|,%AnimalHuman|,embryo| + V RegardAs| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,kind|,special| + V bear|е + V equal| + V manage| + V pawn|Ѻ + V regard|Ϊ + V undertake| + PREP {condition} + AUX {modality|} + CONJ {time|ʱ} + V bear|е + V engage|,content=military|,military| + ADV aValue|ֵ,location|λ,special| + V suffer|,content=disgraced| + V RegardAs| + ADJ aValue|ֵ,source|Դ,original|ԭ + N time|ʱ,past| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +Ҫ N human|,desired|,important| + V obtain|õ,possession=power|,politics| + ADJ aValue|ֵ,location|λ,special| + N human|,original|ԭ +ʱ N time|ʱ,special| + CONJ {time|ʱ} + V undertake|,content=official| + N FlowerGrass|,?medicine|ҩ + V decide| + ADV aValue|ֵ,duration|,TimeShort| + V manage|,patient=family| +ҵ N human|,*manage|,family| +ҵ N human|,family|,male| + V manage|,patient=self| + N time|ʱ,now| + N institution|,official| +ڶ CONJ {time|ʱ} + N quantity| + ADJ aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,behavior|ֹ,opened| + N time|ʱ,now|,year| + N time|ʱ,past| + N time|ʱ,year| +Ʊ N bill|Ʊ,#wealth|Ǯ,#pawn|Ѻ + N InstitutePlace|,@pawn|Ѻ,*sell|,@buy|,commercial| +ϰ N human|,commercial| + N publications|鿯 +ǰ ADJ aValue|ֵ,time|ʱ,now| +ǰ N time|ʱ,now| +Ȩ V obtain|õ,possession=power|,politics| +Ȩ N human|,#power|,#rights|Ȩ,*control| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ ADV {comment|} +ʲ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N time|ʱ,day| +ʱ N time|ʱ,past| + N part|,%language| + N human|,*relate|й + N time|ʱ,day| +ͥ ADV aValue|ֵ,location|λ,special|,police| +ͷ ADV aValue|ֵ,location|λ +ͷ N artifact|˹,generic|ͳ,#pawn|Ѻ +ͷ V enjoy|,content=sequence| +ͷ V happen| +ͷ V persuade|Ȱ˵,manner=strict| + N time|ʱ,night| +֮ N affairs|,urgent| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ V win|ʤ,scope=select|ѡ +ҹ N time|ʱ,night| + N time|ʱ,month| + V PayAttention|ע + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {comment|} + ADJ {comment|} + V obtain|õ,possession=power|,politics| +֮ V FeelNoQualms| + N location|λ,middle| + N time|ʱ,now| + STRU {range} + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + PREP {condition} + V RegardAs| + V RegardAs| + V block|ס + V obstruct|ֹ + N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ + N part|,%implement|,*control|,#gas|,#liquid|Һ + V block|ס,patient=wind| +粣 N part|,%LandVehicle| + V obstruct|ֹ,ResultEvent=visit| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect|,*defend| +ס V block|ס + N character|,surname|,human|,ProperName|ר + N community| + N community|,ProperName|ר,(China|й) + N community|,undesired|ݬ + N publications|鿯,#community| + N FlowerGrass|,?medicine|ҩ + N human|,$select|ѡ,#community| + N fact|,discuss|,#community| + N expenditure| + N attribute|,behavior|ֹ,&community| + N regulation| + N attribute|,attachment|,#community|,&human| + N regulation|,#community| +͹ N regulation|,#community|,#country| + N publications|鿯,#community|,(China|й) + N affairs|,education|,#community|,(China|й) + N human|,official|,undesired|ݬ + N attribute|,age|,#community|,&human|,(China|й) + N community| + N mark|־ +Ⱥ N community| +Ⱥϵ N attribute|,relatedness|,&community|,(China|й) + N human|,#community| +ʷ N fact|,#time|ʱ,#community|,(China|й) +ͬ V remove|,patient=opposed|,politics| +ͽ N human|,#community|,undesired|ݬ + N community|,(China|й) +Ա N human|,#community| +ί N institution|,#community| +ί N fact|,discuss|,#community| + N affairs|,#community| +С N part|,%community| +У N InstitutePlace|,education|,#community| + N attribute|,property|,&community| + N human|,#community|,undesired|ݬ +Ա N human|,#community| +Ա N human|,politics|,#community|,(China|й) + N law|ɷ,#community| + N institution|,community|,#country|,politics| + N institution|,community|,army|,#country|,politics| +֧ N part|,%community| + N institution|,#country|,politics| +֧ N part|,%community| + N part|,%community| +֯ N part|,%community| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V remove| + V walk| + V wash|ϴ + V wave|ڶ + V wash|ϴ +Ȼ޴ V disappear|ʧ + V wave|ڶ + N attribute|,rank|ȼ,&artifact|˹ + N document| + N tool|þ + N tool|þ,@put|,generic|ͳ + N document| + N InstitutePlace|,@store|,#document| + N attribute|,rank|ȼ,&artifact|˹ + CLAS NounUnit|,&paper|ֽ + N shape| + N tool|þ,*cut|,*split|ƿ,*stab| + N part|,%tool|þ,*cut| + N fact|,fight| + N weapon|,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N attribute|,ability|,cut|,&human| + N part|,%tool|þ,*cut|,heart| + V planting|ֲ,manner=simple|,agricultural|ũ + N attribute|,ability|,cut|,&human| +⽣Ӱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%machine|,*cut|,heart| + N location|λ,#disease|,#wounded| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +Ƭ N part|,%tool|þ,*cut|,heart| +Ƭ N tool|þ,*MakeUp|ױ,*cut| +ǹ N weapon|,generic|ͳ + N tool|þ,@put| + N location|λ,important| + N part|,%tool|þ,*cut|,heart| +ɽ N phenomena|,dangerous|Σ,undesired|ݬ + N disease|,wounded|,#stab| + N fish| + N tool|þ,*cut|,*split|ƿ,*stab| + N human|,*damage| + V MakeTrouble| + V beat| + V MakeTrouble| + V destroy| + V MakeTrouble| + V beat| + V jump| + V walk| +Ϯ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ϯ V imitate|ģ + V FallDown| + V MoveItBack| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V alter|ı + V dump| + V end|ս,commercial| + V exchange| + V fail|ʧ + V reverse|ߵ + V venture|ð,commercial| + V replace|,patient=affairs| + V end|ս,commercial| + CONJ {comment|} +˵ CONJ {comment|} + V MoveItBack|,patient=LandVehicle| + V dump| + N part|,%AnimalHuman|,flesh| +һ V accuse|ظ + V FallDown| + V betray|,politics|,military| + V hang|,manner=treacherous| + V reverse|ߵ,patient=sequence| + V flow| + V irrigate|,agricultural|ũ + V replace| +ʱ V count| + V stand|վ,manner=reverse|ߵ + V flow| + V sell| + V sell| +ù V unfortunate| +ɤ V disable|м,scope=MakeSound| + ADV {supplement|ݽ} + V count| +ڶ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +һ NUM qValue|ֵ,sequence|,ordinal| + V resume|ָ,patient=wealth|Ǯ + V FallDown| +̨ V end|ս,politics| + V InDebt|,commercial| + V recompense| + V BeRecovered|ԭ,StateIni=bad| + V GoBackward| +θ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +θ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + V FallDown| +ʩ V RashlyAct| +ʩ N fact|,RashlyAct| + V CausePartMove|,PatientPartof=foot| +ү N human|,*venture|ð,commercial| +Ӱ N trace|,#lights| +ӳ V appear| + V unfortunate| +Դ V FallDown| + V reverse|ߵ +ת V reverse|ߵ + N land|½,#waters|ˮ + N place|ط,country|,#waters|ˮ + N human|,*reside|ס,#land|½,#waters|ˮ + N land|½,#waters|ˮ + V beg| + V recite|ж,religion|ڽ + V recite|ж,religion|ڽ + V guide| + N human|,#occupation|ְλ,*guide|,entertainment| + V teach| + V transmit| + V transmit| + N weapon|,$firing| +ͧ N weapon|,ship|,military| + V transmit|,patient=electricity|,industrial| + V guide|,ResultEvent=buy| + N human|,#occupation|ְλ,*guide|,#buy| + N part|,%AnimalHuman|,nerve| + N part|,%implement|,nerve| + N part|,%machine|,route|· + V guide|,ResultEvent=VehicleGo|ʻ + N tool|þ,*transmit|,#fire| + N cause|ԭ + N tool|þ,*transmit|,#fire| + V guide|,ResultEvent=flow| + V cure|ҽ,content=excrete|й,medical|ҽ + V transmit|,patient=temperature|¶,industrial| + V transmit| +ʦ N human|,*guide|,desired| +ʦ N human|,*teach|,education| + N physical|,*transmit|,#electricity|,generic|ͳ + N tool|þ,*transmit|,#electricity| + V ResultIn| + N attribute|,direction|,&guide| + V guide| + V guide|,ResultEvent=perform|,entertainment| + N human|,#occupation|ְλ,*guide|,entertainment| + V guide| + V guide|,ResultEvent=tour| +Դ V situated| + V ResultIn| + V LeaveFor|ǰ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V arrive| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + STRU {Vachieve|} + V appear| + ADV aValue|ֵ,location|λ,all|ȫ + V arrive| + ADV aValue|ֵ,time|ʱ,ending|ĩ + V due| + V arrive|,LocationFin=extreme| + V arrive|,LocationFin=family| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V arrive| +˶ ADV aValue|ֵ,time|ʱ,ending|ĩ +ĿǰΪֹ ADV aValue|ֵ,time|ʱ,now| + V due| + V undertake|,content=occupation|ְλ + V obtain|õ +ͥ V appear|,location=institution|,#police| +ͷ ADV aValue|ֵ,degree|̶,extreme| +ͷ ADV aValue|ֵ,location|λ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +ͷ ADV aValue|ֵ,time|ʱ,ending|ĩ +λ V finish| +ְ V undertake|,content=occupation|ְλ + N crop|ׯ + N part|,%crop|ׯ,?material| + N tool|þ,*frighten|Ż + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%crop|ׯ,embryo| + N crop|ׯ + V condole|° + N text|,*condole|° + V condole|° + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&information|Ϣ + N community|,undesired|ݬ,religion|ڽ + N facilities|ʩ,route|· + N method| + V regard|Ϊ + N regulation| + V speak|˵ + V farewell| +ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| + N fact|,religion|ڽ + N place|ط,religion|ڽ + V speak|˵ + N method| + N attribute|,behavior|ֹ,&human| +°ܻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +¹淶 N attribute|,behavior|ֹ,&human| + N attribute|,behavior|ֹ,&human| + N human|,religion|ڽ,female|Ů + V congratulate|ף + N community|,#knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N tool|þ,*perform|,#shows|,generic|ͳ + N location|λ,%route|· + N reason| +ֽ N paper|ֽ,@write|д +· N facilities|ʩ,route|· + N community|,religion|ڽ +ľ N material|,#route|· +Ǹ V apologize|Ǹ + N human|,religion|ڽ + N location|λ,%route|· +ʿ N human|,religion|ڽ +;˵ N information|Ϣ,wrong|,undesired|ݬ +ϲ V congratulate|ף,cause=lucky| +л V thank|л + N attribute|,behavior|ֹ,&human| + N human|,crime|,undesired|ݬ,*rob| + N human|,crime|,undesired|ݬ,*steal|͵ + V rob| + V steal|͵ + N fact|,#steal|͵,police| + N readings|,#steal|͵ + V steal|͵ + V gather|ɼ,means=break|۶,agricultural|ũ,#police|,crime| + N human|,crime|,undesired|ݬ,*rob| + V excrete|й,patient=waste|,time=night| + V rob| + V sell|,crime| +Ĺ V steal|͵,source=facilities|ʩ,crime| + V steal|͵,crime| +԰ N fact|,#steal|͵,police| +Է N human|,*steal|͵,undesired|ݬ,crime| + N fact|,steal|͵,undesired|ݬ,crime| +ȡ V steal|͵,crime| + V steal|͵,crime| + N human|,crime|,undesired|ݬ,*rob| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) + N attribute|,behavior|ֹ,&human| + N emotion|,like|ϧ,kindhearted|,desired| + N mental| + N place|ط,country|,ProperName|ר,(Germany|¹) +² N attribute|,ability|,&human| +²ż汸 ADJ aValue|ֵ,ability|,able|,desired| +¸ ADJ aValue|ֵ,reputation|,glorious|,desired| +¹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Germany|¹) +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¹ N human|,(Germany|¹) +º N place|ط,capital|,ProperName|ר,(Iran|) + N money|,(Greece|ϣ) +ά N language|,#country|,ProperName|ר +ͨ N institution|,news|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר,(Germany|¹) + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N attribute|,behavior|ֹ,&human| +־ N place|ط,country|,ProperName|ר,(Germany|¹) + N language|,#country|,ProperName|ר + N affairs|,education|,#behavior|ֹ + N attribute|,behavior|ֹ,wisdom|ǻ,physique|,&human| + N place|ط,city|,ProperName|ר,(China|й) + V AmountTo|ܼ + N attribute|,effect|Ч,superior|,desired|,&event|¼ + V obtain|õ + V request|Ҫ + STRU {Vachieve|} + STRU {Vpossible|} + STRU {Vresult|} + AUX {modality|} +ò V ill|̬ +òʧ V WorthNot|ֵ +ò V BeUnable|,content=obtain|õ +ó V succeed|ɹ +ó V enjoy|,content=WellTreat|ƴ +ó V obtain|õ +ó V decide| +ô ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +õ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +õ V obtain|õ +õ V undergo| +õ V {Vable|} +õ ADJ aValue|ֵ,property|,$use| +÷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +÷ N quantity|,amount|,&result|,#compete|,sport| +ùҹ V slack|͵ +ü V succeed|ɹ +ý V enjoy|,content=reward| +ý N human|,$reward| +þ V BeWell|׳ +þ V undergo|,content=rescue| +ÿ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V obtain|õ,possession=pros| + ADJ aValue|ֵ,ability|,able|,desired| +¤ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V obtain|õ,possession=name| + STRU {Vable|} + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ +ʤ V win|ʤ +ʧ N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V succeed|ɹ + N result| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADV aValue|ֵ,ability|,able|,desired| +Ϥ V know|֪ +Ӧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V BeAble|ܹ + V satisfied| + V satisfied| + V obtain|õ,content=pros| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +֪ V know|֪ +־ V succeed|ɹ + N human|,*win|ʤ + V offend| + N location|λ,$firing| + STRU {DeChinese|} +Ļ CONJ {condition|} +貨 N place|ط,capital|,ProperName|ר,(Libya|) +ȷ ADV {comment|} +ȷ N material|,?clothing| +ʿ N LandVehicle|,$lend|,commercial| + V kick|߲ +̤ V kick|߲ + V CausePartMove| + V die| + N tool|þ + N tool|þ,*illuminate| +ƹ N lights| +ƹ N lights|,entertainment|,#perform|,#shows| +ƺ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ƻ N fire| +ƻ N fact|,congratulate|ף,festival| +ƻ N tool|þ,*illuminate| +ƻԻ ADJ aValue|ֵ,brightness|,bright| +ƻͨ ADJ aValue|ֵ,brightness|,bright| +ƽ N time|ʱ,festival|,@congratulate|ף +ƾ N tool|þ,*illuminate|,generic|ͳ + N tool|þ,*illuminate| + N clothing|,#leg| + N problem|,#guess|²,#recreation| + N part|,%tool|þ,#illuminate|,heart| +˿ N part|,%tool|þ,#illuminate|,heart| + N facilities|ʩ,*illuminate|,#vehicle|ͨ,#AlterLocation|ռλ +̨ N part|,%tool|þ,#illuminate|,heart| +о N material|,?clothing|,?tool|þ + N part|,%tool|þ,#illuminate|,heart| + N material|,liquid|Һ,$burn|,#illuminate| + N part|,%tool|þ,*cover|ڸ,#illuminate| + V climb|ʵ + V kick|߲ + V publish| + V record|¼ +DZ V publish|,LocationFin=publications|鿯 +dz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +dz V start|ʼ,content=leave|뿪 +dz V publish| +Ƿ켫 ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ǹ V climb|ʵ,LocationFin=tall| +ǻ V become|Ϊ,isa=official|,royal| +ǻ V climb|ʵ,LocationFin=aircraft| +ǻ N document|,*climb|ʵ,#aircraft| +Ǽ V record|¼ + V climb|ʵ + V tour| +¼ V record|¼ +½ V arrive| +½Dz N army| +½ͧ N weapon|,ship|,military| + V visit| +ɽ N fact|,sport| +ɽ N community|,sport| +Ϸɻ V climb|ʵ,LocationFin=aircraft| +̨ V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +̨ V show| + V GoInto| + V arrive|,LocationFin=celestial| + V publish| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,rank|ȼ,&entity|ʵ + V equal| + V wait|ȴ + COOR {and|} +ȴ V wait|ȴ +ȵ CONJ {time|ʱ} +ȵ V wait|ȴ +ȵ CONJ {and|} +ȶ N qValue|ֵ,amount|,equal| +ȶ֮ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +ȷ V separate| +ȷ N part|,%physical|,BeSame|ͬ +Ⱥ N symbol|,#DoSum| +Ⱥ V wait|ȴ +ȼ N attribute|,rank|ȼ,&entity|ʵ +ȼ ADJ aValue|ֵ,similarity|ͬ,alike| +Ⱦ ADJ aValue|ֵ,similarity|ͬ,alike|,#distance| +Ⱦ N attribute|,distance|,&physical| + N part|,%physical| + V MakeEqual|ʹ +ͬ V BeSame|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| +֮ V despise| +Ч ADJ aValue|ֵ,effect|Ч,equal| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V equal| +ֵ ADJ aValue|ֵ,value|ֵ,equal| + V wait|ȴ + V CausePartMove|,PatientPartof=eye| + V look| +ɴ۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| + V ExpressAnger|ʾŭ + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N character|,surname|,human|,ProperName|ר +Сƽ N human|,official|,politics|,ProperName|ר,(China|й) + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̰ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +̷ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +Χ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V CausePartMove| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,height|߶,low| +Ͱ ADJ aValue|ֵ,height|߶,low| +Ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$create| +ͳ N water|ˮ +ͳ ADJ FeelingByBad| +ͳ ADJ aValue|ֵ,SoundVolume|,weak| +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +͵ N land|½ +͵ N location|λ +͵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ +ͷֱ N attribute|,performance|,weak|,&distinguish|ֱ +͹ V estimate|,manner=insufficiently|Ƿ +͹ N attribute|,circumstances|,wane|˥,extreme|,&event|¼ +ͺ V exhaust|,quantity=few| +ͼ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,elementary| +ͼ N attribute|,price|۸,cheap|,&thing|,commercial| +ͼ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ͼ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +Ϳ ADJ aValue|ֵ,location|λ,low|,#sky| +Ϳ N sky| + ADJ aValue|ֵ,effect|Ч,useless|,commercial| + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V FeelingByBad| + N decline|˥,commercial| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ +꼶 N human|,*study|ѧ,education| +Ƶ N aValue|ֵ,frequency|Ƶ,rarely|ż + N disease|,#fever| +һ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + N disease|,#fever| + ADJ aValue|ֵ,SoundVolume|,weak| + N aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| +ٶ ADJ aValue|ֵ,speed|ٶ,slow| +ٶ N attribute|,speed|ٶ,slow|,&AlterLocation|ռλ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V surrender| + ADJ aValue|ֵ,form|״,dented| +΢ ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,temperature|¶,cold| + N attribute|,temperature|¶,cold|,&physical| +Ϣ ADJ aValue|ֵ,effect|Ч,useless|,commercial| +Ϣ N money|,commercial|,$lend| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ѫѹ N disease| +ѹ N attribute|,strength|,&physical| + ADJ aValue|ֵ,SoundQuality| + N MusicTool| + ADJ aValue|ֵ,height|߶,low|,more| + ADJ aValue|ֵ,price|۸,cheap|,more| + ADJ aValue|ֵ,standard|׼,useless| + N CloudMist| +ֲ N AlgaeFungi|ֲ +ֵ ADJ aValue|ֵ,value|ֵ,^precious| +ֵ׺Ʒ N artifact|˹,generic|ͳ,*AptTo|,#OutOfOrder| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + V fall| +γ N bacteria|΢ +δ V MakeSound| +δ V fall| +ε N chemical|ѧ,*remove|,#InsectWorm| +ζ N method|,*measure| +ι V irrigate|,agricultural|ũ +ˮ N liquid|Һ +ˮɱ ADJ aValue|ֵ,temperature|¶,cold| +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ע V fall| + V teach| +ķ N money|,(the United Arab Emirates|) +˹ N recreation|,entertainment| +˹ N InstitutePlace|,@recreation|,(US|) + V equal| + V fight| + N human|,enemy| +еη N chemical|ѧ,poison|,agricultural|ũ +ж ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +з N army|,enemy| +й N place|ط,country|,enemy| +к N place|ط,enemy|,military| +о N army|,enemy|,military| + N attribute|,circumstances|,&army|,#enemy|,military| + N army|,enemy| + N human|,enemy| + V hate| + N human|,enemy| +̽ N human|,military|,enemy|,*scout| + N human|,military|,enemy|,*scout| +α N human|,enemy| + N human|,friend|,enemy|,military| +˫ N human|,friend|,enemy|,military| + N emotion|,opposed|,undesired|ݬ +ռ ADJ aValue|ֵ,attachment|,$occupy|ռ,#enemy|,undesired|ݬ +ռ N place|ط,$occupy|ռ,#enemy|,undesired|ݬ + N MusicTool| + N tool|þ,*MakeSound| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N community|,#space|ռ,past| + V wash|ϴ +ӳ V remove| +ӵ V wash|ϴ + N material|,?clothing| + N material|,?clothing| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,relatedness|,intimate| +մ V PassOn| + V PropUp|֧ + V arrive| + V equal| + V pawn|Ѻ + V recompense| + V resist| + V withstand|ס +ֲ V arrive| +ֳ V recompense| +ִ V FitNot| +ִ V arrive| +ֵ V obstruct|ֹ +ֻ V replace| +ֿ V resist| +ֿס ADJ aValue|ֵ,ability|,able|,$resist| +ֿ N human|,*resist| + V deny| + V return|,possession=strength| + V weaken| +Ѻ V pawn|Ѻ + V resist| + V withstand|ס +ծ V recompense|,possession=wealth|Ǯ + V refuse| + V withstand|ס +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$refuse| + N attribute|,scene|,&physical| + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,time|ʱ,ending|ĩ + N text| +װ N part|,%tool|þ,#TakePicture| +ײ N part|,%inanimate|,base| +ײ N attribute|,status|,LowRank|͵,&human| +ײ N part|,%building|,base| +׷ N material|,*feed|ι,#crop|ׯ +׸ N text| +׼ N attribute|,price|۸,&thing|,commercial| + N part|,%artifact|˹,base| +Ƭ N part|,%tool|þ,#TakePicture| + N material|,liquid|Һ,*decorate|װ + N attribute|,strength|,&human| +ɫ N attribute|,color|ɫ,original|ԭ,&image|ͼ + N standpoint| + N symbol|,#quantity| + N place|ط,city|,ProperName|ר,(US|) +ͼ N image|ͼ +ϸ N part|,%event|¼ + ADJ aValue|ֵ,sequence|,hind| + N location|λ,beneath| + N human|,*scout| + N mark|־,linear|,sport| + N part|,%fact|,bone| +ֹ N process|,ending|ĩ + N part|,%physical|,*surplus|ʣ + N part|,%artifact|˹,base| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&physical| + N earth|,#weather| + N land|½ + N land|½,#crop|ׯ + N location|λ + N place|ط +ذ N material|,?building| +ذ N part|,%building|,base| +ر N facilities|ʩ,space|ռ,military|,@defend| +ر N part|,%earth|,skin|Ƥ,external| +ز N attribute|,circumstances|,&event|¼ +ز N InsectWorm| +ز N part|,%earth| +زѧ N human|,#knowledge|֪ʶ +ز N wealth|Ǯ,#earth|,#building| +س N tool|þ,*measure| +ش V situated| +شﲩ N attribute|,area|,wide|,&country| +ش N place|ط +ص ADJ aValue|ֵ,GoodBad|û,good|,desired| +ص ADJ aValue|ֵ,content|,pure|,desired| +ص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N facilities|ʩ,route|· +صս N fact|,fight|,#land|½,military| +صص ADJ aValue|ֵ,trueness|α,true|,desired| +ص N location|λ +ض N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ض N part|,%earth|,mouth| +ض N part|,%place|ط +ضԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԵص N weapon|,*firing|,#land|½ +ضԿ ADJ aValue|ֵ,performance|,#firing|,#direction| +ضԿյ N weapon|,*firing|,#aircraft| +ط N aValue|ֵ,attachment|,branch|֧ +ط N part|,%entity|ʵ,aspect| +ط N part|,%organization|֯ +ط N place|ط +ط N space|ռ +ط N disease| +ط N human|,official| +ط N human|,*reside|ס +طɫ N attribute|,style|,&edible|ʳ,&building| +ط N FlowerGrass|,?medicine|ҩ +ع N facilities|ʩ,space|ռ,religion|ڽ +ع N facilities|ʩ,space|ռ,royal| +ع N facilities|ʩ,#liquid|Һ,linear| +ع N part|,%vegetable|߲,embryo|,$eat| +ع N vegetable|߲ +عϡ N place|ط,broad| +ػ N part|,%building|,base| +ؼ N attribute|,price|۸,&land|½,commercial| +ؽ˨ N part|,%machine|,*fix|ס +ؽ N facilities|ʩ,@store|,@put| +ؽ N place|ط,boundary| +ؿ V investigate|,content=earth| +ؿ N part|,%earth|,skin|Ƥ +ؿյ N weapon|,*firing|,#aircraft| +ؿ N part|,%earth| + N place|ط,capital|,ProperName|ר,(Albania|) +ϻ N InsectWorm| + N weapon| + N attribute|,property|,&earth| + N knowledge|֪ʶ,#earth|,#country|,#weather| +ѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ +սѧ N knowledge|֪ʶ +սѧ N human|,#knowledge|֪ʶ + N attribute|,ProsCons|,pros|,#earth|,&event|¼ +˺ N attribute|,ProsCons|,pros|,#earth|,#human|,&event|¼ + N material|,*build|,route|· + N attribute|,ability|,#grow|ɳ +ò N knowledge|֪ʶ,#earth|,#country|,#weather| +òѧ N human|,#knowledge|֪ʶ + N land|½ + N part|,%building|,base| + N part|,%earth|,skin|Ƥ + N place|ط +沿 N army| +ս N army| + N attribute|,name|,&place|ط +ѧ N knowledge|֪ʶ,#name|,#place|ط +Ĥ N tool|þ,#planting|ֲ + N place|ط +Ƥ N place|ط +Ƥ N place|ط,@build| +Ʀ N human|,*MakeBad|Ӻ,undesired|ݬ +ƽ N part|,%earth| + N location|λ + N earth| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#earth| + N knowledge|֪ʶ,#earth| +ѧ N human|,#knowledge|֪ʶ + N place|ط + ADJ aValue|ֵ,attachment|,physical| + N location|λ,%earth| + N attribute|,form|״,&land|½ +˰ N expenditure|,#land|½ +̯ N InstitutePlace|,*sell|,commercial| +̺ N tool|þ,*cover|ڸ,#building| + N facilities|ʩ,LandVehicle| +ͷ N location|λ,#paper|ֽ +ͷ N part|,%land|½,edge| +ͷ N place|ط +ͷ N human|,*MakeBad|Ӻ,undesired|ݬ +ͼ N image|ͼ,#earth|,#country| +ͼ N publications|鿯,#image|ͼ,#earth|,#country| +ί N institution|,#community|,#place|ط +λ N attribute|,status|,&human| +λ N location|λ +λ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ͽ N land|½ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,location|λ,beneath| + N location|λ,beneath| +µ N community|,secret| + N room| +ˮ N water|ˮ + N tool|þ,linear|,*transmit| + N attribute|,form|״,&land|½ + N AlgaeFungi|ֲ + N place|ط + N place|ط,#humanized|,#die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +й N humanized| +Եѧ N knowledge|֪ʶ +Եѧ N human|,#knowledge|֪ʶ + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ַ N location|λ,#reside|ס + N part|,%land|½ +ʹѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#land|½ +ѧ N human|,#knowledge|֪ʶ +к N waters|ˮ,surfacial|,ProperName|ר + N human|,#wealth|Ǯ,rich| + N human|,*entertain|д + N payment|,#land|½ + N part|,%earth| + N part|,%plant|ֲ,base| + PREFIX aValue|ֵ,sequence|,ordinal| +ڰ NUM qValue|ֵ,sequence|,ordinal| +ڶ NUM qValue|ֵ,sequence|,ordinal| +ڶս N fact|,fight|,military| +ڶ ADJ aValue|ֵ,rank|ȼ,elementary| +ڶ N sound|,#language| +ڶʮ NUM qValue|ֵ,sequence|,ordinal| +ڶ ADJ aValue|ֵ,importance|,secondary| +ھ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| +ɶ N money|,(Croatia|޵) +ɶ N money|,(Kuwait|) +ɶ N money|,(Slovenia|˹) +ɶ N money|,(Tunisia|ͻ˹) +ɶ N money|,(Yugoslavia|˹) + NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + N human|,organization|֯,aspect| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮ NUM qValue|ֵ,sequence|,ordinal| +ʮһ NUM qValue|ֵ,sequence|,ordinal| + NUM qValue|ֵ,sequence|,ordinal| + N sound|,#language| + NUM qValue|ֵ,sequence|,ordinal| +һ ADJ aValue|ֵ,importance|,important| +һ NUM qValue|ֵ,sequence|,ordinal| +һ N human|,official|,important| +һս N fact|,fight|,military| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ N sound|,#language| +һ ADJ aValue|ֵ,source|Դ,original|ԭ +һ ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,royal| + N human|,royal| +۹ N place|ط,country| +۹ ADJ aValue|ֵ,behavior|ֹ,fierce|,#country|,undesired|ݬ +۹ N system|ƶ,#country|,fierce|,undesired|ݬ +۹ N human|,fierce|,#country|,undesired|ݬ + N human|,#occupation|ְλ,royal| + N human|,family|,male| +ܵ N human|,family|,male| +ܸ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,male| + N human|,*study|ѧ + V submit| +ݲ V add| +ݹ ADJ aValue|ֵ,frequency|Ƶ,again| +ݼ V BecomeMore| +ݼ V BecomeLess| +ݽ V submit| +ݽ V BecomeMore| +ݽ V GoForward|ǰ + V post|ʼ + N human|,*post|ʼ + V BecomeMore| + V MakeAppointment|Լ + V forming|γ +޽ V forming|γ,PatientProduct=relatedness|,friend| +޽ V forming|γ,PatientProduct=relatedness|,friend|,politics| +޽ V MakeAppointment|Լ +޽ V forming|γ + V ally| + V ally|,means=GetMarried| +Լ V MakeAppointment|Լ,content=agreement|Լ +Լ N organization|֯,*MakeAppointment|Լ +Լ N place|ط,country|,*MakeAppointment|Լ + V establish| + V FallDown| + V fall| + V leave|뿪 + N part|,%physical|,head|ͷ + V run| + V shiver| +ߵ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ߵ V reverse|ߵ +ߵǷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߸ V destroy| +߸ ADJ aValue|ֵ,ability|,able|,uprise|,undesired|ݬ +߸ N human|,*destroy| +ȥ V repeat|ظ + V roam|,unfortunate| +˲ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V shiver| + V measure| +ﲥ V calculate|,manner=miser| + V calculate|,manner=miser| + V measure| + V think|˼ + V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N chemical|ѧ + N chemical|ѧ +⻯ N chemical|ѧ + N medicine|ҩ + N medicine|ҩ + N attribute|,property|,&entity|ʵ + V check| + V choose|ѡ + V drop|Ͷ,agricultural|ũ + V fall| + N image|ͼ,dot| + V lighting|ȼ + N part|,%character| + N part|,%entity|ʵ,aspect| + ADJ qValue|ֵ,amount|,some|Щ + N shape| + N symbol| + V tell| + N time|ʱ,hour|ʱ + N time|ʱ,hour|ʱ,special| + V touch| + N trace|,round|Բ,small|С,dot| + V write|д +㲥 V drop|Ͷ,agricultural|ũ +㲥 V request|Ҫ,ResultEvent=disseminate|,#shows| +㲦 V teach| +㲹 V eat| + V buy|,possession=food|ʳƷ + V TurnOn|,patient=tool|þ,ResultEvent=illuminate| + ADJ qValue|ֵ,amount|,few| + V request|Ҫ,ResultEvent=sing| +㺸 V fasten|˩,industrial| +㻭 V tell| +㻯 V teach|,religion|ڽ + V lighting|ȼ + V touch|,#computer| +㼢 V eat| +㽫 V CauseToBe|ʹ֮ +î V count| + V tell| + V count| + V mention|ἰ + V estimate| + V reveal|¶ + N fact|,punish|,#exercise| +ȼ V lighting|ȼ +Ⱦ V draw| + V shoot|,military| + V check| + V count| + N quantity|,amount|,&event|¼ + V express|ʾ +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V agree|ͬ + N food|ʳƷ +Ѩ V beat|,PartOfTouch=nerve| + V check| + N image|ͼ + N time|ʱ,hour|ʱ,special| +׺ V decorate|װ +׺ V use|,ResultEvent=display|չʾ + N part|,%entity|ʵ,heart| + N shape|,liquid|Һ + N thought|ͷ + N trace|,round|Բ,small|С,dot| + N artifact|˹,$pawn|Ѻ + N fact| + N law|ɷ + V manage| + V pawn|Ѻ + N publications|鿯 + N text| + N human|,*pawn|Ѻ +䵱 V pawn|Ѻ +䵱ҵ N affairs|,pawn|Ѻ +䷶ N human|,desired|,$imitate|ģ + N text| +伮 N readings| + N fact| + ADJ aValue|ֵ,trueness|α,true|,desired| +Ѻ V pawn|Ѻ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,color|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ,blue| + V fill| + V pay| + N tool|þ,*inlay|Ƕ +油 V eat| +׶ V eat| +׶ V establish|,patient=base| +׶ V put| +渶 V pay| + N tool|þ,*inlay|Ƕ +ʯ N human|,undesired|ݬ + N money|,$pay| +Ƭ N part|,%implement| +Ȧ N part|,%implement| +֧ V pay| + N tool|þ,*inlay|Ƕ + V damage|,means=electricity| + N electricity| + N letter|ż + N tool|þ,*illuminate|,#electricity| +籨 N letter|ż +籨Һ N information|Ϣ,#location|λ,#letter|ż +籨 N institution|,#information|Ϣ + N tool|þ,*measure|,#electricity| + N tool|þ,*cool| +粨 N electricity| + N machine|,*dig|ھ +糡 N space|ռ,#electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +糪 N machine|,*disseminate| +糪ͷ N part|,%machine|,#disseminate|,head|ͷ +糵 N LandVehicle|,#electricity| + N part|,%artifact|˹ +紫 N image|ͼ,$post|ʼ +紫 N machine|,*post|ʼ +紵 N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,performance| +Ų N electricity| +ų N space|ռ,#electricity| + N metal|,material| + N InstitutePlace|,@teach|,@study|ѧ,education| +絼 N quantity|,volume|ݻ,&electricity| + N tool|þ,*illuminate| +綯 ADJ aValue|ֵ,performance| +綯 N machine|,#electricity| +綯 N part|,%physical|,strength|,#electricity| + V apply|ͿĨ,industrial| +ȱ N tool|þ,*measure|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| +緹 N tool|þ,cubic|,@cook|,#electricity| + N expenditure|,#electricity| + N tool|þ,#wind|,*cool|,#electricity| + N tool|þ,#electricity|,arm| + N tool|þ,#electricity| + V tell|,instrument=tool|þ,#electricity| +繤 N fact|,#electricity| +繤 N human|,#occupation|ְλ,#electricity| + N information|Ϣ,#location|λ,#letter|ż +ܾ N institution|,#electricity|,ProperName|ר,politics| + N lights|,#electricity| +纸 V fasten|˩,industrial| +纸 N human|,#occupation|ְλ,*fasten|˩,#electricity| +纸 N machine|,*fasten|˩,#electricity| + N part|,%electricity| + V congratulate|ף +绡 N lights|,#electricity| +绡¯ N facilities|ʩ,space|ռ,industrial|,produce|,#metal| +绯 V teach|,education| +绯ѧ N knowledge|֪ʶ,#electricity| +绰 N fact|,communicate| +绰 N tool|þ,*communicate| +绰 N account|,#symbol|,#facilities|ʩ,#communicate| +绰벾 N account|,#symbol|,#facilities|ʩ,#communicate| +绰 N tool|þ,*communicate| + V post|ʼ + N fire|,#electricity| + N disease| + N machine|,#electricity| +缫 N attribute|,kind|,&electricity| + N part|,%tool|þ + V teach|,education| + N separate| + N chemical|ѧ + N tool|þ,*break|۶,#electricity| +翾 N tool|þ,cubic|,@cook|,#electricity| + N material|,linear|,@transmit| + N part|,%physical|,#electricity| + ADJ aValue|ֵ,performance| + N electricity| + N institution|,#electricity|,ProperName|ר,politics| + N institution|,#electricity|,ProperName|ר,politics| + N quantity|,amount|,&electricity| + N method|,#cure|ҽ,#disease|,#electricity| + N tool|þ,#electricity|,#material| + N tool|þ,*MakeSound|,#sound| + N electricity| + N tool|þ,*measure|,#electricity| + N quantity|,amount|,&electricity| +¯ N facilities|ʩ,space|ռ,industrial|,*produce|,#metal| +¯ N tool|þ,*WarmUp|,*cook| +· N part|,linear|,#electricity| +·ͼ N image|ͼ,#electricity| + N part|,%artifact|˹,#electricity|,*control| +ľ N material|,?tool|þ + N computer| + N part|,%physical|,electricity|,strength| +ť N part|,%artifact|˹,*control| +ƿ N part|,%tool|þ,#electricity| + N tool|þ,generic|ͳ,#electricity| + ADJ aValue|ֵ,performance| + V ize|̬,PatientAttribute=electricity|,industrial| + V WarmUp|,means=electricity| + ADJ aValue|ֵ,property|,WarmUp| + N attribute|,ability|,electricity|,&implement| + N part|,implement|,electricity| + N tool|þ,#wind|,*cool|,#electricity| + V refine|,means=electricity| +ʯ N chemical|ѧ + N image|ͼ,shows| + N tool|þ,*look|,#image|ͼ,#shows| +Ӵѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ӹ N human|,*look|,#perform| +ӹ㲥 V disseminate|,#image|ͼ,#shows| +ӻ N tool|þ,*look|,#image|ͼ,#shows| +Ӿ N shows| +Ƭ N shows| + N facilities|ʩ,*disseminate| +̨ N institution|,*disseminate| + N facilities|ʩ,*disseminate| +ת V disseminate|,#image|ͼ,#shows| +ת N facilities|ʩ,*disseminate| + N tool|þ,#electricity| +ˢ N tool|þ,#electricity| +̨ N institution|,*disseminate| +̨ N tool|þ,*disseminate| + V MakeUp|ױ + N machine|,*lift|,#electricity| +Ͳ N tool|þ,*illuminate|,#electricity| + N facilities|ʩ,*transmit|,#electricity| +λ N attribute|,strength|,#electricity| + N readings| + N tool|þ,linear|,@transmit| + N affairs|,*disseminate|,#information|Ϣ +ź N information|Ϣ +ž N institution|,#disseminate|,#information|Ϣ + V damage|,means=electricity| + V punish|,kill|ɱ,means=electricity| +ѧ N knowledge|֪ʶ,#electricity| +Ѷ N affairs|,*disseminate|,#information|Ϣ +ѹ N attribute|,amount|,&electricity| + N tool|þ,police|,*punish|,#crime| +Ӱ N shows| +Ӱ N readings|,#shows| +Ӱ N human|,entertainment| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӿ N phenomena|,#electricity| +Դ N location|λ,@ExistAppear|,#electricity| + N tool|þ,*WarmUp|,*cook| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + ADJ aValue|ֵ,performance| +Ӳ N part|,physical| +ӹ N part|,%implement|,#electricity| + N MusicTool| + N affairs|,commercial|,#software|,#computer| +ʼ N facilities|ʩ,software|,@communicate|,information|Ϣ,#computer| + ADJ aValue|ֵ,performance| + N attribute|,strength|,obstruct|ֹ,electricity|,&physical| + V borrow| +軧 N human|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ + N place|ط + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,*sell|,commercial| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| +̰ N human|,*steal|͵,undesired|ݬ,crime| + N part|,%InstitutePlace|,*sell|,@buy|,commercial| +Ա N human|,#occupation|ְλ,employee|Ա,commercial|,*sell| + N human|,#occupation|ְλ,*sell|,commercial| + V ThinkOf|˼ + V ThinkOf|˼ + V ThinkOf|˼ + V establish| + V salute|¾,means=provide| +춨 V establish| +춼 V establish|,patient=capital|,politics| + V establish|,patient=base| + N human|,*establish| + N tool|þ,generic|ͳ + N waters|ˮ,surfacial| + N material|,#food|ʳƷ + N facilities|ʩ,space|ռ,religion|ڽ + N house|,royal| + N room| + V situated|,location=ending|ĩ + N army| + N human|,desired|,*win|ʤ,#compete| + N house|,religion|ڽ + N house|,royal| + N room| + N human|,royal| +ﱤ N facilities|ʩ,space|ռ,military|,@defend| +¥ N facilities|ʩ,space|ռ,military|,@look|,@defend| + V HoldInMouth| + N bird| + V carve| + V carve|,ContentProduct=image|ͼ + V carve| + N image|ͼ,$carve| +̼ N human|,*carve|,entertainment| + N part|,%building|,bone|,*decorate|װ + V write|д,manner=refined| + V carve| + N image|ͼ,$carve| + N image|ͼ,$carve| + V carve| + V write|д,manner=refined| + V decline|˥ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + V decline|˥ + V decline|˥ +ή V decline|˥ +л V decline|˥ +л V die| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V MakeTrouble| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V BecomeLess| + V exchange| + V fall| + V inferior| + V lose|ʧȥ + V turn|Ťת + V replace| + V WeatherBad| + V inferior| + V exchange| + V fall| +ɫ V AppearanceChange|۱,scope=color|ɫ +ͷ V TurnRound| + V fall| + V despise| +ת V turn|Ťת + V condole|° + V hang| + V install|װ + V remove| + N machine|,*lift| + N tool|þ,*illuminate| + N part|,%building| +ɵ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N SportTool|˶ +¥ N house| + N facilities|ʩ,route|·,#waters|ˮ +ɤ V drill|ϰ,content=sing| +ɥ V condole|°,means=visit| + N tool|þ,#wind|,*cool| + V kill|ɱ + V suicide|ɱ +Ͱ N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,*fasten|˩,#foot| + V remove| + V condole|° + V lift| +װ V install|װ + V catch|׽ס + V seek|ıȡ,manner=sly| + N tool|þ,$eat|,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*catch|׽ס,#fish|,generic|ͳ + V catch|׽ס,patient=fish| + V TakeAway|ᶯ + V adjust| + N attribute|,SoundQuality|,&music| + N attribute|,SoundQuality|,&speak|˵ + N attribute|,kind|,&music| + V mediate| + V mix| +Dz V dispatch|Dz,patient=army|,military| + V issue|ַ + V investigate| + N human|,*investigate| + V mediate| + V TakeAway|ᶯ + V TakeAway|ᶯ + V assemble|ۼ + V mobilize| + V dispatch|Dz + V manage| + V cease|ͣ,content=defend|,military| + N attribute|,width|,$adjust|,&physical| + N tool|þ,*eat| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V coordinate|Э + V mediate| + V maintain| + V exchange| + V dismiss| + V assemble|ۼ + V adjust| + V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V adjust|,patient=price|۸ + V adjust| + V adjust| + V coordinate|Э + V mediate| + N human|,*mediate| + N human|,*mediate| + V cure|ҽ,content=bleed|Ѫ,#female|Ů + V adjust| + N undergo|,content=$dispatch|Dz + V TakeCare| + V maintain|,medical|ҽ + N material|,#food|ʳƷ,$eat|,generic|ͳ + N information|Ϣ,#dispatch|Dz +Ŷ N attribute|,SoundVolume|,&speak|˵ +Ŷ N standpoint| +Ŷ ADJ aValue|ֵ,SoundVolume|,loud| +Ū V adjust| +Ū V incite|ָʹ +Ū V tease|ȡ + V dispatch|Dz + V dispatch|Dz + V produce|,means=mix| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƶ N attribute|,frequency|Ƶ,$adjust|,&physical| +Dz V dispatch|Dz + V ShowLove|ʾ + V undertake| +ɫ V adjust|,patient=color|ɫ + V adjust| + V incite|ָʹ +ͣ V mediate| +ͷ N attribute|,SoundQuality|,&music| +ͷ N attribute|,SoundVolume|,&speak|˵ +ͷ V turn|Ťת +ζ V adjust|,patient=taste|ζ +ζƷ N material|,#food|ʳƷ,$eat|,generic|ͳ +Ϸ V damage|,crime| + N attribute|,electricity|,$adjust|,&physical| +Ц V tease|ȡ +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V investigate| + V perform| + V maintain|,medical|ҽ + V adjust|,patient=SoundQuality| + V use| + V mix| + V transport| + V adjust| + N human|,*adjust| +ְ V undergo|,content=$dispatch|Dz + V adjust| +ƽ N tool|þ,#computer| + V cure|ҽ +ת V turn|Ťת +ת V undergo|,content=$dispatch|Dz +ת V undergo|,content=$dispatch|Dz + V adjust|,patient=payment| + N attribute|,SoundQuality|,&music| +٩ V LaughAt|Ц + V BecomeLess| + V FallDown| + V fall| + V FallDown| +ײײ V walk|,manner=wave|ڶ + N attribute|,range|,BecomeLess|,&price|۸,commercial| + V BecomeLess|,scope=price|۸ + V FallDown| + V fail|ʧ + V fall| + V BecomeLess| + N attribute|,outlook|ǰ,BecomeLess|,&price|۸,commercial| + ADJ aValue|ֵ,content|,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,family|,male| + N human|,family|,male| + N tool|þ,cubic|,*put|,#food|ʳƷ + N tool|þ,cubic|,*put|,#food|ʳƷ + N InsectWorm|,*fly| + N part|,%AnimalHuman|,bone| +λ N FlowerGrass| +Ӿ V exercise|,#swim|,sport| + V replace| + V happen|,frequency=often| + N information|Ϣ,military| +Ա N human|,#occupation|ְλ,police|,military|,*scout| + V fold|ߡ + V pile|ѷ + V repeat|ظ,manner=improper| + N character|,surname|,human|,ProperName|ר + N human| + N human|,adult|,male| + NUM qValue|ֵ,sequence|,ordinal| + N shape| + N facilities|ʩ,#waters|ˮ,*protect| + N material| + ADJ qValue|ֵ,amount|,few| +ϩ N chemical|ѧ + V persuade|Ȱ˵ +Ƕ,îî ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ϩ N chemical|ѧ + N FlowerGrass| +ֳ N stationery|ľ,*draw| + V look| + V follow| +ס V PayAttention|ע + V look| + V sting| + ECHO sound| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V fasten|˩ + V fasten|˩,means=beat| + V follow| + N tool|þ,*fix|ס,metal|,acute| + V urge|ʹ + N tool|þ,#crop|ׯ + N tool|þ,*beat| + N fish| + V follow| +Ь N SportTool|˶,#clothing|,#foot| + N human|,*damage| + N tool|þ,*fix|ס,metal|,acute| + V PropUp|֧ + V bump|ײ + V equal| + V hold|,instrument=head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%entity|ʵ,head|ͷ + V refute| + V reject|ؾ + V replace| + V withstand|ס + N part|,%building| + N part|,%entity|ʵ,head|ͷ +ס V withstand|ס + N part|,%vehicle|ͨ,*illuminate| + N location|λ,angular|,dot| + N part|,%entity|ʵ,head|ͷ + N part|,%entity|ʵ,head|ͷ + ADV aValue|ֵ,range|,extensive| + N part|,%entity|ʵ,head|ͷ + N part|,space|ռ,%land|½,head|ͷ + V bump|ײ,patient=wind| + N wind| + N part|,%implement| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%inanimate|,head|ͷ + N image|ͼ,angular| +Ĥ V salute|¾ + N human|,desired|,important|,able| +ţ V quarrel| + N part|,%building| + V replace| + ADJ aValue|ֵ,courage|,brave|,desired| +ѿ N part|,%plant|ֲ,embryo| + N tool|þ,*protect| +ס V withstand|ס +ײ V offend| + V refute| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V BeOpposite| + N attribute|,strength|,strong|ǿ,&human| +ʢ V prosper| +ʢʱ N time|ʱ,@prosper| + N part|,%machine| + N shape| + N part|,%machine| + V AtEase| + V MakeAppointment|Լ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,property|,fixed|Ѷ + V buy|,means=MakeAppointment|Լ + V decide| + ADV {comment|} + V decide| + N result|,decide| + V delimit|,patient=organization|֯ + V decide|,content=amount| + N bill|Ʊ,#wealth|Ǯ,*MakeAppointment|Լ + N location|λ,dot| + V establish|,patient=capital| + V decide| + N quantity|,amount|,$delimit|,&entity|ʵ + V delimit|,patient=affairs| + V fulfil|ʵ,patient=compile|༭,#readings| + V buy|,means=MakeAppointment|Լ + V decide| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V decide|,content=rank|ȼ + V decide|,content=price|۸,commercial| + N thought|ͷ + N expenditure|,#MakeAppointment|Լ + V look| + V reside|ס +ӵ N place|ط,@reside|ס + V fixed|Ѷ + N law|ɷ + N regulation|,ordinary| + ADJ aValue|ֵ,kind|,#quantity| + V decide|,content=quantity| + N quantity|,amount|,$delimit|,&entity|ʵ + N system|ƶ,#provide| + N regulation|,#knowledge|֪ʶ + N result|,#decide| + V naming| + ADJ aValue|ֵ,frequency|Ƶ,regular| + V MakeAppointment|Լ,content=GetMarried| +ʱ V delimit|,patient=time|ʱ +ʱ N tool|þ,*delimit|,#time|ʱ +ʱը N weapon| +λ V decide|,content=location|λ + V decide|,Vachieve| + V decide|,Vachieve| + V adjust|,patient=MusicTool| + ADJ aValue|ֵ,direction|,#facing| + V decide|,commercial| + N entity|ʵ,*AtEase| + V decide|,content=plans|滮 + V decide|,content=pattern|ʽ,industrial| + ADJ aValue|ֵ,kind|,#attribute| + V decide|,content=attribute| + V decide|,content=attribute|,police| + N information|Ϣ + N MusicTool| + N part|,%language| +Ա V decide|,content=amount| + ADJ aValue|ֵ,property|,$produce| + V produce| +ס V fix|ס + N part|,%machine| + V decide|,content=crime|,police| + ADJ aValue|ֵ,property|,$produce| + V produce| + V MakeAppointment|Լ + V amend| + V buy|,means=MakeAppointment|Լ + V fasten|˩ + N document|,*buy|,commercial| + V buy|,means=MakeAppointment|Լ +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + N human|,*buy|,#commercial| + V MakeAppointment|Լ,content=GetMarried| + V MakeAppointment|Լ,content=buy|,commercial| + V MakeAppointment|Լ +Ʊ V buy|,possession=coupon|Ʊ֤,means=MakeAppointment|Լ + N quantity|,amount|,&MakeAppointment|Լ +Լ V MakeAppointment|Լ + V buy|,means=MakeAppointment|Լ + V amend| + V produce| + V abandon| + V lose|ʧȥ + V throw| + V suffer|,content=disgraced| + V abandon| + V lose|ʧȥ +ж V defeated| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V suffer|,content=disgraced| + V suffer|,content=disgraced| + V abandon| + V suffer|,content=disgraced| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V lose|ʧȥ +ɫ V show| + N character|,surname|,human|,ProperName|ר + N direction|,east| + N human|,*entertain|д + N human|,*own| + N part|,%earth|,east| + N direction|,east|,north| + N place|ط,ProperName|ר,#direction|,(China|й) + N location|λ,east|,north| + V run|,manner=endeavour| + N location|λ,east| + N part|,%place|ط,#east|,#country| + N location|λ,east| + N place|ط,country|,*entertain|д + N human|,*entertain|д + N location|λ,ending|ĩ,east| + ADJ aValue|ֵ,source|Դ,(Asia|) + N character|,surname|,human|,ProperName|ר + ADJ direction|,east| + N direction|,east| + N human|,#source|Դ,(Asia|) + N place|ط,ProperName|ר,east|,(Africa|) + N phenomena|,strong|ǿ,desired| + N wind|,#direction|,east| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,rich| +ձԪ N money|,(Grenada|ɴ) + N part|,%place|ط,surrounding|Χ,#city|,east| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(Japan|ձ) + N attribute|,distance|,&earth|,east| + V TalkNonsense|Ϲ˵ +צ ADJ inanimate|,secondary| + N character|,surname|,human|,ProperName|ר + N community|,country|,ProperName|ר,(Asia|) + N location|λ,east| + N direction|,east|,south| +ϲ N location|λ,east|,south| +Ͻ N location|λ,east|,south| + N direction|,east|,south|,west|,north| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) +ǹ N community|,country|,ProperName|ר,(Asia|) +ŷ N place|ط,ProperName|ר,east|,(Europe|ŷ) +ƴ V merge|ϲ +ʡ N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ɽ V BeRecovered|ԭ +ʩЧ V imitate|ģ + N attribute|,distance|,east|,west|,&earth| + N direction|,east|,west| + N entity|ʵ,generic|ͳ + N location|λ,east| + N place|ط,ProperName|ר,east|,(Asia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + V look| +֥ N InstitutePlace|,ProperName|ר,*produce|,(Japan|ձ) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ݸ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + N place|ط,country|,ProperName|ר,(Japan|ձ) + N sound| + N time|ʱ,winter| + N MusicTool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +IJ N medicine|ҩ,(China|й) + N AlgaeFungi|ֲ,$eat| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V irrigate|,#winter|,agricultural|ũ + N time|ʱ,winter| + N time|ʱ,winter| +Ӫ N InstitutePlace|,@exercise|,#winter| + N crop|ׯ,#winter| + V sleep|˯,#winter| + N tree| + N celestial|,#winter| + N time|ʱ,winter| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N time|ʱ,winter| + N time|ʱ,#winter| +С N crop|ׯ,#winter| + V build|,#winter| +ѵ V drill|ϰ,#winter| +ҹ N time|ʱ,winter|,night| + N clothing|,#winter| +Ӿ N fact|,#swim|,#winter| +˻ N fact|,compete|,sport|,#winter| + N time|ʱ,day|,winter| +װ N clothing|,#winter| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*manage| +³ N human|,#occupation|ְλ,*manage|,commercial| +» N institution|,*manage|,commercial| + N human|,ProperName|ר + V know|֪ + V know|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V know|֪,content=affairs| + V SelfMoveInManner|ʽ + V alter|ı + V consume|ȡ + V excite|ж + V function| + V use| + V start|ʼ,content=write|д + V start|ʼ,content=fight|,military| + ADV aValue|ֵ,frequency|Ƶ,often| + N physical|,#wealth|Ǯ + N part|,%language| + V SelfMoveInManner|ʽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V uprise|,politics| + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N experience|,#AlterLocation|ռλ + V start|ʼ,content=build| + N {Vresult|} + N shows| +Ƭ N shows| + V angry| + N thought|ͷ + N fact|,generic|ͳ + N sound| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&event|¼ + N part|,%vehicle|ͨ,heart| +ѧ N knowledge|֪ʶ,#strength| + N attribute|,strength|,&physical| + N fact|,uprise|,undesired|ݬ,politics| + N part|,%AnimalHuman|,nerve| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ӳ N disease| +Խ V think|˼ + N attribute|,strength|,&physical| +ŭ V angry| +ƽ N attribute|,behavior|ֹ,even| + V angry| + V excited| + N {Vdirection|} + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V excited|,result=AppearanceChange|۱ + V start|ʼ,content=leave|뿪 + V start|ʼ,content=beat| + V start|ʼ,content=do| +ֶ V damage| + V cure|ҽ + V undergo|,content=cure|ҽ,medical|ҽ +̬ N attribute|,outlook|ǰ,&event|¼ +̬ ADJ attribute|,property|,function| +̬ƽ N attribute|,behavior|ֹ,even| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V start|ʼ,content=build| + V start|ʼ,content=fight| + N AnimalHuman| +ﰮ N human|,*like|ϧ,#animal| +ﱣ N human|,*like|ϧ,#animal| +ѧ N human|,#knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#animal| +ѧ N human|,#knowledge|֪ʶ +԰ N InstitutePlace|,*display|չʾ,#animate| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V excited| + V punish| +ҡ V hesitate|ԥ +ҡ V weaken| +ҡ N weaken|,patient=behavior|ֹ,military| + N text|,$propose|,$discuss|,$debate| + V use| +Ա V mobilize| +Ա N information|Ϣ,#order|,*mobilize| + V do|,manner=true| +ֲ N animate|,generic|ͳ + N {LeChinese|} + V do| + N fact|,do| +ٶ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| + N NounUnit|,&building| + N part|,%house|,bone| + N human|,desired|,important|,able| +֮ N human|,desired|,important|,able| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + V fear| + V frighten|Ż + V cool| + V perception|֪,content=cold| + V StateChange|̬,StateFin=ice| + N disease| + N phenomena|,unfortunate|,#cold|,undesired|ݬ + V paralyse|̱,cause=cold| + V cool| + V restrain|ֹ + N material|,?edible|ʳ,$cool|,#flesh| + N disease| + V die|,cause=cold| + N land|½,#cold| + N RainSnow|ѩ,#cold| + N part|,%inanimate|,mouth| + NUM qValue|ֵ,amount|,cardinal| + V know|֪,manner=profound| + N attribute|,ability|,able|,perception|֪ + N room|,@reside|ס,#GetMarried| + N location|λ + N part|,%inanimate|,mouth| +Ϥ V know|֪,manner=profound| + V know|֪,manner=profound| +Ѩ N part|,%earth|,mouth| + N MusicTool| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е + V circle| + N part|,%clothing|,cubic|,@put| + N tool|þ,cubic|,@put| + V wrap| + V block|ס + V reveal|¶ + N clothing|,#leg| + N clothing|,#body| + V attract|,commercial| + V attract|,politics|,commercial| + V bear|е +Ȧ V circle| +Ȧ V speak|˵,manner=hidden| + V sell|,commercial| + N tool|þ,cubic|,@put| + N clothing|,#head|ͷ,*protect| + V excite|ж + V satisfied| + V shake|ҡ + V shiver| + V shake|ҡ + V shiver| +§ V lavish|˷ +§ V reveal|¶ +§ V shake|ҡ,purpose=MoveItOut| + V excited| + V ExpressAgainst|Ǵ + N celestial| + V compete| + V fight| + N image|ͼ,#hand|,#trace| + V incite|ָʹ,ResultEvent=compete| + V merge|ϲ + CLAS unit|λ,&volume|ݻ + N LandVehicle|,#mine| + ADJ aValue|ֵ,courage|,brave| + N image|ͼ,#hand|,#trace| + N compete|,#bird| +ţ N compete|,#livestock| +ţʿ N human|,*compete|,#livestock| +Ź V fight| + N clothing|,#body| +ʿ N human|,*fight| + N room|,small|С +˿ N addictive|Ⱥ + N part|,%AnimalHuman|,#eye| + V accuse|ظ + V endeavour| + V fight| +־ N mental|,#fight| + V fight|,#wisdom|ǻ +ת V change| + N clothing|,#head|ͷ,#RainSnow|ѩ + ADJ aValue|ֵ,slope|¶,steep| + V stand|վ + N part|,%land|½,skin|Ƥ,steep| + ADJ aValue|ֵ,slope|¶,steep| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +꽴 N material|,?food|ʳƷ + N material|,#crop|ׯ + N food|ʳƷ + N food|ʳƷ +Ƥ N food|ʳƷ + N part|,%plant|ֲ,embryo| + N drinks|Ʒ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ƕ N part|,%vegetable|߲,embryo|,$eat| +Ƕ N vegetable|߲ + N attribute|,attachment|,&plant|ֲ + N fruit|ˮ,?medicine|ҩ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N material|,?food|ʳƷ +ɳ N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ѿ N food|ʳƷ +ѿ N food|ʳƷ + N material|,?food|ʳƷ + N artifact|˹,generic|ͳ,waste| +֭ N drinks|Ʒ +Ʒ N food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ޢ N FlowerGrass|,?medicine|ҩ + N material|,?food|ʳƷ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| + V stay|ͣ + V tease|ȡ + N symbol| + N symbol| +ֶ V please|ȡ + V stay|ͣ +Ū V tease|ȡ +Ȥ V please|ȡ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V entice| +Ц V please|ȡ + V tease|ȡ + V quarrel| + N disease| + N medicine|ҩ + ADV aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,capital|,ProperName|ר,(Ireland|) + N place|ط,#country|,capital| + N place|ط,city|,important| + N place|ط,city| + N attribute|,circumstances|,city|,&human| +ѧר N human|,#knowledge|֪ʶ + V supervise| + V supervise| + V supervise| + V urge|ʹ + V supervise| +ѧ N human|,#occupation|ְλ,*supervise| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,poison| + V kill|ɱ,instrument=poison| + N medicine|ҩ,$addict|Ⱥ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + V beat| + N InsectWorm| + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + V damage| + V damage| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N disease| +Ʒ N medicine|ҩ,?addictive|Ⱥ + N gas|,poison|,*kill|ɱ,undesired|ݬ + N facilities|ʩ,#gas|,poison|,@kill|ɱ,undesired|ݬ +ɱ V kill|ɱ,instrument=poison| + N beast|,poison| + V kill|ɱ,instrument=poison| + N physical|,poison|,*kill|ɱ,undesired|ݬ +˹ N gas|,poison|,*kill|ɱ,undesired|ݬ + N physical|,poison|,*kill|ɱ,undesired|ݬ + N part|,poison|,%AnimalHuman|,nerve| + N attribute|,poison|,&physical| +ҩ N chemical|ѧ,poison|,*kill|ɱ,undesired|ݬ,generic|ͳ + N human|,*transport|,#addictive|Ⱥ,*sell|,crime|,commercial| + N aspiration|Ը,addict|Ⱥ,undesired|ݬ + N livestock|,young| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ qValue|ֵ,amount|,single| + V manage| + V speak|˵,target=self| +辶 V establish|,patient=route|· + V surpass|ǿ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,royal| + V sing| + V establish| + N attribute|,kind|,original|ԭ,&thing| +һ V manage| + ADJ aValue|ֵ,kind|,special| +֮ N attribute|,kind|,special|,&thing| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +϶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,undesired|ݬ,official| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V reside|ס,lonely| +߻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +߽ ADJ aValue|ֵ,kind|,special|,desired| +ɫ ADJ aValue|ֵ,kind|,special|,desired| + V control| + V BeIndependent| + ADJ aValue|ֵ,attachment|,BeIndependent| + N fact|,BeIndependent| + ADJ qValue|ֵ,amount|,single| + V BeIndependent| + N place|ط,country|,ProperName|ר +ɧ V surpass|ǿ +ֳ N LandVehicle| +ľ֧ V BeUnable|,content=help| +ľ N attribute|,circumstances|,&event|¼,hardship| +ľ N facilities|ʩ,route|·,#waters|ˮ + N attribute|,circumstances|,^GetMarried|,&human| + N human|,family|,young| +Ů N human|,family|,single|,young| +һ V establish|,patient=knowledge|֪ʶ + ADJ aValue|ֵ,kind|,special| + V take|ȡ,manner=self| + V recreation|,single| + N human|,undesired|ݬ,#disease| +һ޶ ADJ aValue|ֵ,kind|,special| + V own|,manner=self| +ռ V own|,manner=self| +ռͷ V surpass|ǿ + V drink|,manner=single| + N fund|ʽ,commercial| +ʹ˾ N InstitutePlace|,commercial| +ʾӪ V manage| + ADV aValue|ֵ,behavior|ֹ,single| + ADJ aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V recreation| + N human|,*perform|,entertainment| + V engage|,content=study|ѧ,education| + V read| + V recite|ж + N readings| + V read| +ȡ V take|ȡ,#computer| + V engage|,content=study|ѧ,education| + V read| + V study|ѧ + N quantity|,amount|,&measurement| + N readings| +д V read|,write|д + N attribute|,SoundQuality|,&speak|˵ + N human|,*read| + V BlockUp| + N character|,surname|,human|,ProperName|ר + N part|,%building|,skin|Ƥ + V upset| +³ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +½ V block|ס +© V BlockUp| + V BlockUp| + V BlockUp| +ס V BlockUp| + V obstruct|ֹ,ResultEvent=speak|˵ + V perception|֪,means=look| +˼ V ThinkOf|˼ + V gamble|IJ +IJ V gamble|IJ +ij N InstitutePlace|,@gamble|IJ,undesired|ݬ +Ĺ N human|,undesired|ݬ,*gamble|IJ +Ĺ N human|,undesired|ݬ,*gamble|IJ +ľ N tool|þ,*gamble|IJ +Ŀ N human|,undesired|ݬ,*gamble|IJ +Ŀ N InstitutePlace|,@gamble|IJ,crime|,undesired|ݬ + V angry| +Ǯ V gamble|IJ +ͽ N human|,*gamble|IJ,undesired|ݬ,crime| + V swear| +ע N wealth|Ǯ,#gamble|IJ + N character|,surname|,human|,ProperName|ר + V obstruct|ֹ + N tree| +ž N FlowerGrass| +ž N bird| +ž V obstruct|ֹ + N fruit|ˮ +³ N human|,official|,politics|,ProperName|ר,(US|) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Russia|˹) + N FlowerGrass|,?medicine|ҩ +׫ V forge|α + V apply|ͿĨ,industrial| +ƽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ƽ V apply|ͿĨ,material=metal|,industrial| +ƽ V study|ѧ,purpose=MakeBetter|Ż +ƽ N human|,#occupation|ְλ,industrial| +п V apply|ͿĨ,material=metal|,industrial| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + V apply|ͿĨ,material=metal|,industrial| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| +Ǵ N tool|þ,linear|,*fasten|˩,#livestock| +Ƥ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + CLAS ActUnit|,&event|¼ + N attribute|,degree|̶,&event|¼,&aValue|ֵ + N attribute|,tolerance|,&human|,&organization|֯ + V guess|² + V pass|ȹ + CLAS unit|λ,&angular| + CLAS unit|λ,&temperature|¶ +ȹ V pass|ȹ +Ȼ V pass|ȹ,patient=hardship| +ȼ V pass|ȹ,patient=festival| +ȼٴ N place|ط,@rest|Ϣ +ȼ N human|,*WhileAway| + N attribute|,tolerance|,&human|,&organization|֯ + V MakeLiving|ı,manner=hardship| + V alive| + N quantity|,amount|,&measurement| + V cross|Խ +ɴ N ship| +ɿ N part|,%place|ط,mouth|,#waters|ˮ + N ship| + V jealous|ʼ +ʼ V jealous|ʼ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,posture|,upright| + N cause|ԭ + V hold| + N information|Ϣ + N part|,%entity|ʵ,head|ͷ + N part|,%event|¼,head|ͷ +˵ N part|,%entity|ʵ,head|ͷ + V look| +ľ N character|,surname|,human|,ProperName|ר + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + V look| + N part|,%event|¼ + N time|ʱ,festival|,@congratulate|ף + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,posture|,upright| + V amend| +ׯ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + V sit|,manner=upright| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,length|,short| + V lack|ȱ +̱ V fight|,military| +̲ N electricity| +̳ ADJ aValue|ֵ,distance|,short| +̴ N attribute|,quality|,weak|,undesired|ݬ,&thing| +̴ ADJ aValue|ֵ,duration|,TimeShort| +̴ N clothing|,#perform| +̴ V fight| +̵ N MusicTool| +̹ N human|,#occupation|ְλ,employee|Ա +̺ N MusicTool| +̼ N thought|ͷ,NotProfound|dz,undesired|ݬ +̾ N shows| +̿ N clothing|,#leg| +· V OutOfOrder|,#electricity| + V run|,sport| +ƪС˵ N readings| +Ƭ N shows| + N text|,*estimate| + N human|,*compile|༭,literature| + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,TimeShort| +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +ǹ N weapon|,*firing| +ȱ V lack|ȱ +ȹ N clothing|,#leg|,female|Ů + ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +; ADJ aValue|ֵ,distance|,short| + N text| + ADJ qValue|ֵ,amount|,few| +߲Ʒ N artifact|˹,$produce|,few|,generic|ͳ +С ADJ aValue|ֵ,height|߶,low| +С ADJ aValue|ֵ,size|ߴ,small|С +ѵ N fact|,study|ѧ,education| +Ѷ N news|,simple| + N expression| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| +ͣ V stay|ͣ,duration=TimeShort| +װ N clothing| + V produce|,industrial| +͹ N human|,#occupation|ְλ,industrial|,#metal| +ͼ N artifact|˹,$produce|,#metal|,industrial| + V cultivate| + V cultivate| + V exercise|,sport| + N metal|,material| +ѹ V produce|,industrial| + V produce|,industrial| + N attribute|,rank|ȼ,&human|,#exercise|,sport| + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ + N part|,%text| +θ N character|,surname|,human|,ProperName|ר + N part|,%text| +λ N attribute|,rank|ȼ,&human|,#exercise|,sport| + V GiveUp| + V break|۶ + V cease|ͣ + V decide| + V judge|ö +ϲ N part|,%earth| +ϲ N part|,%earth| +ϳ V sorrowful| +ϵ V disappear|ʧ,#sell|,commercial| +ϵ V cease|ͣ,content=provide|,#electricity| +϶ V judge|ö +϶ ADJ aValue|ֵ,behavior|ֹ,^continuous| +Ϻ V OwnNot|,possession=young| +Ϻ V help|,military| +Ϻ V situated|,location=ending|ĩ +Ͻ V separate|,partner=country|,politics| +Ͻ V separate|,partner=friend| +Ͼ V separate| +Ͽ V break|۶,Vachieve| +Ͽ V separate| +Ͽ N location|λ,#OutOfOrder| + V FormChange|α,#split|ƿ + N part|,%earth| +Ѵ N part|,%earth| + V cease|ͣ,content=provide|,#electricity| + N tool|þ,*cease|ͣ,#provide|,#electricity| +· N part|,linear|,#electricity| + N part|,%inanimate|,surfacial| + V restrain|ֹ,ResultEvent=drink| + V cease|ͣ,content=provide|,#gas| + V die| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ +Ȼ ADV {emphasis|ǿ} +ˮ V cease|ͣ,content=provide|,#water|ˮ + V lose|ʧȥ + V disconnect| + V tool|þ,linear|,$break|۶ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V speak|˵ +ԫб N part|,%building|,incomplete|ȱ,desolate| +Ӿ V OwnNot|,possession=young| + N material|,?clothing| +д N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| + N material|,?clothing| + CLAS NounUnit|,&human|,mass| + CLAS NounUnit|,&inanimate|,mass| + V pile|ѷ + N shape| +Ѵ V store| +ѷ V pile|ѷ +ѷ N material|,*feed|ι,#crop|ׯ +ѻ V BecomeMore| +ѻ V pile|ѷ +ѻɽ ADJ qValue|ֵ,amount|,many| + V build| + V write|д +ջ N facilities|ʩ,space|ռ,@put|,@store| + V add| + V exchange|,commercial| +Ҹ V exchange|,commercial| +һ V exchange|,commercial| +һ N quantity|,rate|,&exchange|,commercial| +һȯ N coupon|Ʊ֤ +ˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ˮ V add|,patient=water|ˮ + V exchange|,commercial| + V fulfil|ʵ + N community| + N human|,mass| + N shape|,linear| +ӳ N human|,#occupation|ְλ,official| + N shape| + N mark|־ + N army|,generic|ͳ + N human|,mass| + N shape| + N human|,friend|,*exercise|,sport| +Ա N human| + CLAS NounUnit|,double|,&human| + CLAS NounUnit|,double|,&physical| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V add| + V adjust| + V check| + V facing| + V fit|ʺ + V reply| + PREP {concerning} + PREP {partner} + PREP {target} + ... ˵ PREP {scope} +԰ N part|,%land|½,#waters|ˮ,edge| +԰ N text|,$speak|˵ +Ա V compare|Ƚ +Աȶ N attribute|,similarity|ͬ,&brightness|,&color|ɫ +Բ V IllTreat| +Բ EXPR expression|,*apologize|Ǹ +Բ V suffer|,content=$accuse|ظ,police| +Բ V suffer|,content=$accuse|ظ,police| +Բ N method| +Գ V sing|,entertainment| +Գ ADJ aValue|ֵ,property|,BeSimilar| +Գ N attribute|,property|,BeSimilar|,&entity|ʵ +Դ N attribute|,correctness|,&event|¼ +Դ V reply| +Դ V fight| +Դ V treat|Դ +Ե V WellTreat|ƴ +Եס V WellTreat|ƴ +Ե V equal| +Ե V exchange| +Զ N image|ͼ,angular| +Է N human|,organization|֯,other| +Ը V handle| +Ը V succeed|ɹ +Ը V sing|,entertainment| +Թ V attack| +Թ V adjust|,patient=tool|þ,purpose=TakePicture| +Ժ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ի V talk|̸ +Ի N human|,*talk|̸ +Խ N tool|þ,*communicate| +Խ N image|ͼ,linear| +Խ V connect| +Խ N part|,%clothing|,body| +Ծ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ծ V fit|ʺ +Ծ V recreation| +Կ V VehicleGo|ʻ +Կ V fight| +Կ V resist| +Կ N fact|,compete| +Կ N attribute|,property|,fight|,&entity|ʵ +Կ V fit|ʺ +Կ V sing|,entertainment| + V BeOpposite| + V BeOpposite| + ADJ aValue|ֵ,contrariness|,negative| + N part|,%entity|ʵ,aspect| +ͳһ V merge|ϲ + N readings| + V flow| +· V fit|ʺ + N location|λ + ADJ aValue|ֵ,direction| + ADJ aValue|ֵ,kind| + V equal| + N human|,*HaveContest| + N human|,*equal|,#HaveContest| + N symbol| + N symbol| +ͷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N human|,enemy| + ADJ aValue|ֵ,attachment|,foreign| +ϵ N attribute|,relatedness|,&country|,diplomatic|⽻ +⿪ N regulation|,#country| +⿪ N regulation|,#country| +ó N affairs|,commercial|,#country| + N regulation|,#country|,diplomatic|⽻ +Ϻ N fish| + N entity|ʵ + N human|,friend|,desired| + V disable|м,partof=eye| +Ӧ ADJ aValue|ֵ,kind| +Ӧ V fit|ʺ + PREP {concerning} + V check|,content=account|,commercial| + V fit|ʺ + V compare|Ƚ + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + V HaveContest| +֢ V fit|ʺ,contrast=disease| +֢ҩ V obey|ѭ,content=disease| +֤ V check| + V BeOpposite| + V BeOpposite|,police| +׼ V AimAt| + N readings| + V recreation|,sport| + CLAS NounUnit|,&inanimate| + N land|½,small|С + N stone|ʯ + N wood|ľ +ղ N tool|þ,*wipe| + N shape|,low| + CLAS unit|λ,&weight| +ֹ CLAS unit|λ,&weight| +ּ N unit|λ,weight|,&ship| +λ CLAS unit|λ,&weight| + V sit| + V stay|ͣ +׵ V stay|ͣ,location=institution| + ADJ sit| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ش V urge|ʹ +ش N human|,*urge|ʹ +غ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ػ N place|ط,ProperName|ר,(China|й) + V CausePartMove| + V pause|ͣ +ٿé V know|֪ + V doubt| +ʱ ADV aValue|ֵ,behavior|ֹ,sudden| + V understand| + V SetAside| +ڻ V SetAside|,commercial| +ڻ V SetAside|,commercial| +ڻ N human|,*SetAside|,commercial| + ADJ aValue|ֵ,form|״,blunt| + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +۽ N image|ͼ,angular| + N weapon|,*protect| + N reason|,fake|α,undesired|ݬ + N weapon|,*protect| + V flee| + V shiver| + ADJ aValue|ֵ,degree|̶,over| + ADV aValue|ֵ,degree|̶,question| + ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| +ౣ EXPR expression|,*SayHello|ʺ + ADJ aValue|ֵ,form|״ + ADJ aValue|ֵ,form|״ + N image|ͼ,cubic| + V change| +ಡ ADJ aValue|ֵ,physique|,weak|,ill|̬,undesired|ݬ +಼ N money|,(Sao tome and Principe|ʥ) +ಿ ADJ aValue|ֵ,kind| +Ŷ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,ability|,able|,create| +Ƹ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +Ƹ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +һ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + ADV aValue|ֵ,frequency|Ƶ,often| +൳ N system|ƶ,politics| +Զ ADJ aValue|ֵ,rate| +һ ADJ aValue|ֵ,rate| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,ish| + ADV {comment|} +෢ N disease| +෽ ADJ aValue|ֵ,range|,all|ȫ +෽ ADJ aValue|ֵ,range|,all|ȫ + N phenomena|,wind| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Togolese|) + N place|ط,country|,ProperName|ר + N human|,(Togolese|) + N quantity|,amount|,&entity|ʵ + N place|ط,capital|,ProperName|ר,(Qatar|) +༫ N attribute|,kind|,many| +༶ N tool|þ,*transport| +ྦྷ N inanimate|,generic|ͳ + ADV time|ʱ,question| +ʡ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADV lucky| +Ͷ ADJ aValue|ֵ,behavior|ֹ,fair| +׶ N place|ط,city|,ProperName|ר,(Canada|ô) +ô ADV aValue|ֵ,degree|̶,question| +ô ADV aValue|ֵ,degree|̶,very| +ý N tool|þ,#sound|,#music|,image|ͼ,#shows| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Dominica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Dominica|) + N human|,able| + N place|ط,country|,politics|,#community|,#human| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| +ǰ ADV aValue|ֵ,duration|,TimeLong|,past| + ADJ aValue|ֵ,kind| + V BecomeMore| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ţë ADJ qValue|ֵ,amount|,many| +ɫ ADJ aValue|ֵ,color|ɫ,colored| + ADJ qValue|ֵ,amount|,many|,question| +ʱ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ qValue|ֵ,amount|,fragment| +Ʊ N document|,*select|ѡ + N human| +ٲ V recompense| + V doubt| +ѩ ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,kind|,many| + V ize|̬,PatientAttribute=different| + N attribute|,kind|,many| +; ADJ aValue|ֵ,effect|Ч,many| +΢ V ExpressDissatisfaction|ʾ + ADJ qValue|ֵ,amount|,many|,more| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ +Ԫ ADJ qValue|ֵ,amount|,many| +Ԫ N attribute|,kind|,many| + ADJ aValue|ֵ,property|,WeatherChange|,#CloudMist| +֭ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +֭ ADJ aValue|ֵ,property|,contain|,#liquid|Һ + ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,kind|,many| +ֶ ADJ aValue|ֵ,behavior|ֹ,many| +ʽ ADJ aValue|ֵ,manner|ʽ,many| + ADJ aValue|ֵ,kind|,many|,language| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˶ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +㶯 N animal|,generic|ͳ + V speak|˵ +觺 N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + V rob| + V seek|ıȡ + V win|ʤ + V win|ʤ,commercial| + V seek|ıȡ + V win|ʤ + V TakeBack|ȡ + V weep| + V win|ʤ +Ŀ ADJ aValue|ֵ,brightness|,bright| +ȡ V occupy|ռ,military| +ȡ V rob| +ȡ V seek|ıȡ +ȥ V take|ȡ +ȥ V kill|ɱ + V take|ȡ + N facilities|ʩ + N facilities|ʩ,military| + V pile|ѷ + N shape| + V escape| + V hide| + V escape| + V hide| +ܲ ADJ aValue|ֵ,possibility|,impossible|,$escape| + V hide| + V escape| + V hide| +㿪 V escape| + V evade|ر + V escape| + CLAS NounUnit|,&CloudMist|,&FlowerGrass| + N FlowerGrass| + V kick|߲ + V CausePartMove|,PatientPartof=foot| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,*drive|Ԧ + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + V break|۶ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N attribute|,behavior|ֹ,stiff|,&entity|ʵ + V OutOfOrder| + N OutOfOrder| +̥ V cease|ͣ,content=pregnant| + N InsectWorm| + ADJ aValue|ֵ,height|߶,tall| +üɽ N land|½,ProperName|ר,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + N bird| + ADJ aValue|ֵ,color|ɫ,yellow| +ڴ N disease| +ʯ N stone|ʯ,material| +ë N part|,%bird|,hair|ë + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) +˹ N humanized|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) + N place|ط,country|,ProperName|ר,(Russia|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ո N place|ط,provincial|ʡ,ProperName|ר,(US|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Russia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,duration|,TimeShort| + N language|,#country|,ProperName|ר,(Russia|˹) + N language|,#country|,ProperName|ר + N part|,%AnimalHuman|,head|ͷ + N quantity|,amount|,&physical| + ADJ qValue|ֵ,rate| +ֵ N quantity|,rate|,&event|¼ + N quantity|,amount|,&event|¼ + N part|,%AnimalHuman|,head|ͷ +ֳ V ShowJoy|ʾϲ +ͷ N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| +Ĺ N fact|,do| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cheat|ƭ +թ V cheat|ƭ + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,performance|,kill|ɱ,undesired|ݬ,#disease| + V disgust| + N event|¼,undesired|ݬ,evil|,crime| + N human|,undesired|ݬ,evil| + V ill|̬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ӯ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ,evil| + N result|,undesired|ݬ +ݺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V damage| + V decline|˥ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N thought|ͷ,#dream|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N human|,crime|,undesired|ݬ,evil| + N attribute|,power|,undesired|ݬ,&organization|֯ +ϰ N attribute|,habit|ϰ,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,kill|ɱ +˺ N disease| +ͨ N phenomena|,#money|,BecomeMore|,commercial| + N disease| + N aspiration|Ը,undesired|ݬ + N human|,*slander|̰ + V slander|̰ +ս N fact|,#fight|,fierce| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V IllTreat| + N location|λ,important| + N phenomena|,unfortunate|,undesired|ݬ +ŵ N phenomena|,#WeatherChange| +϶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ecuador|϶) +϶ N place|ط,country|,ProperName|ר,(South America|) +϶ N human|,(Ecuador|϶) + N place|ط,city|,ProperName|ר,(Ethiopia|) + N phenomena|,unfortunate|,undesired|ݬ + V control| + V defend| + V hold| +ɱ V destroy| +ɱ V kill|ɱ +ɱ N human|,*kill|ɱ + V defend| + V disappointed|ʧ +Ҫ ADJ aValue|ֵ,content|,accurate|׼,desired| + V restrain|ֹ + V obstruct|ֹ +ֹ V obstruct|ֹ + V obstruct|ֹ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +״ N community|,ProperName|ר,(China|й) +¿ N community|,ProperName|ר,(China|й) + V HungryThirsty| + V HungryThirsty| +ʳ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V CauseToDo|ʹ,ResultEvent=HungryThirsty|,degree=extreme| + V HungryThirsty|,degree=extreme| + V die|,cause=HungryThirsty| + V kill|ɱ,means=HungryThirsty| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V grant| + N emotion|,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +÷ N place|ط,capital|,ProperName|ר,(Chad|է) + V revenge| + N emotion|,like|ϧ,kindhearted|,desired| + N human|,friend|,kindhearted|,desired| +ͬ N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +Թ N emotion|,grateful|м,blame|Թ +Թ N emotion|,hate|,undesired|ݬ + N emotion|,like|ϧ,kindhearted|,desired| +ɽ N emotion|,like|ϧ,kindhearted|,desired| +׼ V agree|ͬ,manner=kindhearted| + CONJ {EventResult|¼} + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + COOR {and|} + CONJ {but|} + ADV aValue|ֵ,time|ʱ,hind| + N time|ʱ,now| +֮ N time|ʱ,#age|,adult| + PREP {concerning} + CONJ {supplement|ݽ} + CONJ {but|} + CONJ {supplement|ݽ} + PREP {concerning} + ADV {comment|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,family|,young| + N music|,$sing|,#young| +ʵ N human|,undesired|ݬ,royal|,$control| + N part|,%InstitutePlace|,#young|,medical|ҽ +ѧ N knowledge|֪ʶ,#young|,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ů N human|,family|,mass|,young| +Ů N human|,mass| +ʱ N time|ʱ,#young| + N human|,future| +ͯ N human|,young| +ͯѩ N clothing| +ͯ N part|,%institution|,politics|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +ͯ N time|ʱ,day|,festival|,#young|,@congratulate|ף +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +Ϸ N fact|,secondary| + N human|,family|,male|,young| + N part|,%AnimalHuman|,*listen| + N shape| + V ill|̬,scope=listen|,medical|ҽ + V ill|̬,scope=listen|,medical|ҽ + N part|,%AnimalHuman|,#listen| +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N part|,%AnimalHuman|,*listen| + N stone|ʯ,#AnimalHuman|,waste| + N fact|,beat|,#skin|Ƥ + N fact|,beat|,#skin|Ƥ + N tool|þ,*decorate|װ + N tool|þ,*listen| + N part|,%AnimalHuman|,#listen| + N part|,%AnimalHuman|,#listen| + ADJ disable|м,scope=listen| + N disease| +Ŀ N human|,military|,*scout| +Ŀ N knowledge|֪ʶ +Ŀһ V prosper| + N tool|þ,*protect| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#AnimalHuman|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V teach| + V perception|֪ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ѩ N part|,%AnimalHuman|,dot| +ʹ N part|,%AnimalHuman| + N disease| + V speak|˵,manner=weak| + N human|,*speak|˵ +׹ N part|,%AnimalHuman| +ĿȾ V undergo|,content=CauseAffect|Ⱦ + ADJ aValue|ֵ,kind|,special| + PRON {SecondPerson|} + ADJ aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V entice| + N food|ʳƷ + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N character|,(China|й) + NUM qValue|ֵ,amount|,cardinal|,mass| +ѵ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N human|,sport| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N human|,rich| +Ӣ N chemical|ѧ + N human|,intimate|,female|Ů + N human|,*own|,#house| + N human|,#occupation|ְλ,official|,#ship| +ͷ N drinks|Ʒ,$addict|Ⱥ +һ ADJ aValue|ֵ,property|,$merge|ϲ + N MusicTool| + N InsectWorm|,undesired|ݬ +˵ ADV aValue|ֵ,behavior|ֹ,active|Ը +û˵ ADV aValue|ֵ,behavior|ֹ,active|Ը + N part|,%implement| +ױ N chemical|ѧ + ADJ aValue|ֵ,attachment|,#DoSum| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,rank|ȼ,elementary| + N human|,lazy|,undesired|ݬ + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +Ĵָ N part|,%AnimalHuman|,hand| + N human|,intimate|,female|Ů +꼶ѧ N human|,*study|ѧ,education| + N army|,military|,ProperName|ר,(China|й) + ADJ aValue|ֵ,newness|¾,used| +߽ N tool|þ,*WhileAway|,*congratulate|ף +ǧﳤ N fact|,military|,past| +ά ADJ aValue|ֵ,form|״,surfacial| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ʽ ADJ expression|,#quantity|,#symbol|,#DoSum|,#calculate| + N chemical|ѧ + N chemical|ѧ +̼ N gas| + N time|ʱ,month| +· N time|ʱ,month| +ս N fact|,fight|,military| + N attribute|,property|,double|,&entity|ʵ + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,undesired|ݬ,treacherous|,official| + CLAS NounUnit|,&weapon| + V announce| + V become|Ϊ + V express|ʾ + V firing| + V happen| + V issue|ַ + N part|,%AnimalHuman|,hair|ë + V produce| + V reveal|¶ + V send| + V shoot| + V shoot|,sport| + V speak|˵ + V happen|,experiencer=fact|,police| + V become|Ϊ,descriptive=white| + V announce|,content=result|,education| + V issue|ַ,possession=MakeAppointment|Լ + N human|,issue|ַ,#MakeAppointment|Լ + V post|ʼ,patient=information|Ϣ + N human|,*post|ʼ + V publish| + V ill|̬,medical|ҽ + V announce| + N fact|,@announce| + V prosper| + N AlgaeFungi|ֲ,?food|ʳƷ + V change|,StateFin=wet|ʪ + V start|ʼ,content=leave|뿪 + V worried|ż + V announce| + V issue|ַ + V send| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,country|,*prosper| + V stupefied|ľȻ + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,*produce|,#electricity| + N machine|,*produce|,#electricity| +רҵԱ N human|,industrial| +վ N facilities|ʩ,space|ռ,*produce|,#electricity| + V TurnOn| + V mobilize| + V start|ʼ + N part|,%vehicle|ͨ,heart| + V shiver| + V begin|ʼ + V issue|ַ + N material|,?food|ʳƷ + V endeavour| +ͼǿ V endeavour| + V endeavour| +ͼǿ V endeavour| + V mad| + N food|ʳƷ + V send|,patient=news| + V issue|ַ + V AppearanceChange|۱,StateFin=bright| + V aValue|ֵ,property|,illuminate| + V fever| + V CauseToDo|ʹ,ResultEvent=excrete|й +ʩ V order| + V become|Ϊ,descriptive=black| + V angry| + V endeavour| + V become|Ϊ,descriptive=red| + V ill|̬,scope=look|,medical|ҽ + V order| + V speak|˵,manner=angry| + V return| + V flurried| + V CauseToDo|ʹ + V express|ʾ + V AppearanceChange|۱,StateFin=fire| + V angry| + V lighting|ȼ + V send|,patient=artifact|˹,commercial| + V lucky|,scope=status| + V worried|ż + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + V prosper| +¸ V prosper| + V reward| + V StateChange|̬ + V dig|ھ + V investigate| + V perception|֪ + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + V tired|ƣ + N InstitutePlace|,@MakeUp|ױ,commercial| +ɧ V protest| + V AppearanceChange|۱,StateFin=bright| +ǹ N tool|þ,*MakeSound|,*order|,#exercise| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + V paralyse|̱ +ë V angry| +ë V flurried| +ù V StateChange|̬,StateFin=OutOfOrder| + V ignorant|֪ + V teach|,content=elementary| + N material|,?food|ʳƷ + V produce| + N human|,*create| + N human|,*produce| + V uprise| +ŭ V angry| + V submit|,possession=readings| + V AppearanceChange|۱,StateFin=fat| +ݼ N chemical|ѧ,*experiment|ʵ +Ƣ V angry| +Ʊ N bill|Ʊ,#wealth|Ǯ + V start|ʼ + N human|,*start|ʼ + V need|,content=mating| + V shoot|,patient=SportTool|˶,sport| + V AppearanceChange|۱,StateFin=hot| + V fever| + V flurried| + V produce|,PatientProduct=hot| +ʡ ADJ aValue|ֵ,content|,profound|,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| + V become|Ϊ,descriptive=soft| +ɢ V cure|ҽ,means=cool|,medical|ҽ +ɢ V disperse|ɢ + V fever| + N human|,*FondOf|ϲ,#WhileAway| + V firing| + V shoot| + V transmit| +䳡 N place|ط,@shoot| + N machine|,*shoot| + V MakeSound| + V happen| + V produce| + N chemical|ѧ,*produce| + V swear| + V sell|,commercial| +ˢ N tool|þ,*wipe|,#MakeUp|ױ +ˮ V unfortunate| + V send| + V transmit| + V StateChange|̬,StateFin=sour| + V painful|ʹ + N part|,%implement| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N document|,official| + V ask| + V perception|֪ + N human|,*perception|֪ + N place|ط,#event|¼,@ExistAppear| +Ц V laugh|Ц +й V release|ͷ +н V issue|ַ,possession=payment| + V post|ʼ,patient=letter|ż + N human|,*post|ʼ + N attribute|,pattern|ʽ,&hair|ë + N attribute|,pattern|ʽ,&hair|ë,#female|Ů + V publish| + V sell| + V sell|,commercial| +֤ N human|,official|,*issue|ַ,#document| +ѿ V pregnant| + V speak|˵ + N human|,*speak|˵ + V inflamed| + V CauseToGrow|ʹɳ + V use| + V CauseToGrow|ʹɳ + V itch| + V speak|˵ + V grow|ɳ +ȫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Դ V begin|ʼ +Դ N place|ط,#event|¼,@ExistAppear| +Դ V ResultFrom|Ե + V send| + V dizzy| +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V include| +չй N place|ط,country|,*grow|ɳ + V FormChange|α,StateFin=protruding|͹ + V perception|֪,content=swollen| +֤ V issue|ַ,possession=document| + V ResultFrom|Ե + ADJ aValue|ֵ,source|Դ + V angry| + V happen| + V show|,content=lascivious| + V issue|ַ,possession=payment| + V fever| + ADJ aValue|ֵ,ability|,able|,teach| + V punish| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| + V punish|,ResultContent=drink| + N expenditure|,$punish|,#police| + V punish|,ResultContent=money|,police| +û V levy| + V punish|,sport| + N ship| + N ship| + V attack| + V break|۶ +ľ V break|۶,patient=wood|ľ,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ +ľ N human|,*break|۶,#tree|,agricultural|ũ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V lack|ȱ + V tired|ƣ + N human|,unable|ӹ,undesired|ݬ + V tired|ƣ + V lack|ȱ,scope=human| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + N human|,#power|,strong|ǿ + N part|,%implement| + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N knowledge|֪ʶ,religion|ڽ + N law|ɷ + N method| + N place|ط,country|,ProperName|ר,(France|) + N document|,#law|ɷ + V punish|,police| + N thing|,able| + N tool|þ,religion|ڽ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| + N place|ط,police|,@kill|ɱ,#crime| + N document|,#law|ɷ + ADJ aValue|ֵ,standard|׼,average|,desired| + N human|,*handle| +̳ N human|,*receive| + N quantity|,amount|,&human|,#select|ѡ + N human|,#occupation|ְλ,police|,*judge|ö,#crime| +ٺʦ N human|,police| + N law|ɷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר + N money|,(Andorra|) +ͩ N tree| + N attribute|,name|,religion|ڽ,&human| + N law|ɷ + N human|,#occupation|ְλ,police|,#crime| +˸ N place|ط,city|,ProperName|ר,(Germany|¹) + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(France|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(France|) + N money|,(Monaco|Ħɸ) + N human|,royal|,ProperName|ר,(Egypt|) + N knowledge|֪ʶ,#law|ɷ +ѧ N human|,#knowledge|֪ʶ + N law|ɷ + ADJ aValue|ֵ,attachment|,#police| + N aValue|ֵ,attachment|,law|ɷ + N law|ɷ,politics|,generic|ͳ +ɳ N process|,#law|ɷ +ɹ N human|,police| + N fact|,accuse|ظ,police| +ж N fact|,#law|ɷ,police| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N fish| + N language|,#country|,ProperName|ר + N method| + N attribute|,name|,religion|ڽ,&human| + N MusicTool|,religion|ڽ + N human|,#police|,#InstitutePlace| +ʦ N human|,religion|ڽ + N method| +ͥ N institution|,police|,*judge|ö + N law|ɷ + N language|,#country|,ProperName|ר +˹ N human|,undesired|ݬ +˹ N system|ƶ,undesired|ݬ +˹ N human|,evil| +˹ N system|ƶ,undesired|ݬ + N image|ͼ,linear| + N institution|,news|,ProperName|ר,(France|) +ѧ N knowledge|֪ʶ,#law|ɷ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,#law|ɷ,education| +ҽ N human|,#occupation|ְλ,police|,*check|,#crime|,medical|ҽ +ҽѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ + N clothing|,#body|,religion|ڽ + N language|,#country|,ProperName|ר +Ժ N institution|,police|,@judge|ö + N law|ɷ + N system|ƶ,#law|ɷ + V manage|,AccordingTo=law|ɷ + N method| + N fittings|,%building| + N part|,%ship|,*drive|Ԧ + N ship| + N material|,?clothing| + N ship| + CLAS NounUnit|,&text|,&event|¼ + N quantity|,amount| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N symbol|,#army|,military| +ľ N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +خ N place|ط,city|,ProperName|ר,(China|й) + V LookFor|Ѱ + V add| + V cross|Խ + V quarrel| + V reverse|ߵ + V translate| + V deny|,police| + N artifact|˹,#copy|д + V engage|,agricultural|ũ + V roll| + V roll| + V roll| + V add| + V fly| + V wave|ڶ + V repair|,industrial| +ͷ V roll| + V deny|,police| + V roll| + V deny| + V build| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + V open| + V quarrel| +ɹɲ V dry|,patient=FlowerGrass|,agricultural|ũ +ɽԽ V cross|Խ + V roll| + V uprise| + V exercise|,sport| + V roll| + V turn|Ťת + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V uprise| +츲 ADJ aValue|ֵ,ability|,frighten|Ż + V repair| + V repair| + N human|,#occupation|ְλ,literature|,*translate| + V translate| +ӡ V print|ӡˢ +Խ V cross|Խ + V read| +Ƹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת V roll| + N character|,surname|,human|,ProperName|ר + N fittings|,%building| + N attribute|,boundary|,&event|¼ + N facilities|ʩ,#building|,*defend| + N fittings|,%building| + N attribute|,circumstances|,&event|¼,#restrain|ֹ,undesired|ݬ + N tool|þ,*detain|ס,#bird| + N chemical|ѧ + N material| + N chemical|ѧ + V GiveBirth| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N FlowerGrass|,mass| +ƽ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,complicated|,simple|,&content| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æIJ N fact|,busy|æ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| +ٲʢ V prosper| +ٸǿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N character|,old|,(China|й) + N character|,old|,(China|й) +Ƚ N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,property|,WeatherFine| + V GiveBirth| + V GiveBirth| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ qValue|ֵ,amount|,many| +ֳ V GiveBirth| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + N place|ط,ordinary|,#human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,kind|,special| + N human|,unable|ӹ,undesired|ݬ + N human|,ordinary| +ʿ N material|,liquid|Һ,*lubricate| + N event|¼,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ +ӹ ADJ aValue|ֵ,kind|,ordinary| + V MakeTrouble| + V MakeWorried| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V disgust| + V upset| + V MakeTrouble| + V upset| + V upset| + V MakeTrouble| + V MakeWorried| + V upset| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V upset| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + N human|,undesired|ݬ,#uprise| + V oppose| + V resist| + V roll| + V uprise|,politics| +Ϊʤ V change|,StateIni=defeated|,StateFin=win|ʤ + N quantity|,rate|,&quantity| + V refute| + N human|,*refute| + V loyal|Т + N attribute|,similarity|ͬ,&entity|ʵ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V ServeAsFoil| + V attack|,military| +༥ V satirize| + V jump| + N weapon|,$firing| + V oppose|,target=community|,#politics| + ADV {supplement|ݽ} + ADV {supplement|ݽ} + V oppose|,target=system|ƶ,#politics| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,*uprise| + N human|,undesired|ݬ,#uprise|,#politics| + V oppose| + V resist| +Գ V differ|ͬ +Ե N community|,*oppose|,#politics| +Ե N human|,*oppose|,politics| + N community|,*oppose|,#politics| +Ʊ N bill|Ʊ,*oppose|,#select|ѡ + N human|,*oppose| + ADV {supplement|ݽ} +˹ V oppose|,target=system|ƶ,#politics| + V BeRecovered|ԭ,StateIni=bad| + N fact| + N fact|,repeat|ظ +޳ V change|,manner=often| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +һ V attack| +һ V oppose| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N human|,undesired|ݬ,*uprise| + V attack|,military| + V check|,content=self| + V oppose|,target=system|ƶ,#politics| + V LookBack| + V illuminate| + N lights| + ADV aValue|ֵ,behavior|ֹ + V deny| + V attack| + N army|,attack| + V resist| + N human|,*resist| + N information|Ϣ,$respond|Ӧ +¢Ϸ N law|ɷ + N part|,%entity|ʵ,aspect| + N part|,%inanimate|,edge| + N human|,entertainment| + N human|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| + V uprise|,politics| + V attack|,military| + V fall|,manner=also|Ҳ +֮ V do|,treacherous| +DZ V defend|,patient=ship|,military| +DZͧ ADJ aValue|ֵ,ability|,able|,attack| + N law|ɷ +Ǻ N symbol|,#quantity|,#DoSum| + V illuminate| + V respond|Ӧ +迹 V obstruct|ֹ,#electricity| + ADJ aValue|ֵ,behavior|ֹ,treacherous| + N human|,*uprise| +ʡ V check|,content=self| + ADV aValue|ֵ,behavior|ֹ +ˮ V betray| +˼ V think|˼ + V accuse|ظ +̹ ADJ aValue|ֵ,ability|,able|,attack| + ADJ aValue|ֵ,ability|,able|,attack| + V ask| + N expression|,question| + N information|Ϣ,$respond|Ӧ + ADJ aValue|ֵ,direction| +ҧһ V accuse|ظ,content=fake|α +Ӧ V respond|Ӧ +Ӧ N physical|,*ize|̬ +ӳ V mean|ָ +ӳ V tell| +ս ADJ aValue|ֵ,behavior|ֹ,#oppose|,#fight| + V illuminate| + V surrender| +֤ N information|Ϣ,#prove|֤ +֤ N method| +֮ CONJ {transition|ת} +֮Ȼ ADV {comment|} +֮ CONJ {transition|ת} +ת V reverse|ߵ + ADJ aValue|ֵ,performance| + N attribute|,strength|,negative|,&physical| +ڵ V ask| +ۻ V masticate|׽ + V GoBack| + V GoBack|,LocationFin=city| + N process|,#GoBack|,#route|· + V GoBack|,purpose=defend|,military| + V repeat|ظ,manner=also|Ҳ + V GoBack| + V return| + V GoBack| + V grow|ɳ + V GoBack|,LocationFin=place|ط + V sell| +У V GoBack|,LocationFin=InstitutePlace|,education| + V repair|,again| + N quantity|,rate|,#repair|,&artifact|˹ +豹 V resume|ָ,StateFin=pure| + N attribute|,pattern|ʽ,&thing| + N attribute|,range|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + N entity|ʵ,example|ʵ + N attribute|,range|,&entity|ʵ + N example|ʵ +Χ N attribute|,range|,&entity|ʵ + N text|,example|ʵ + V buy|,commercial| + V transport|,patient=addictive|Ⱥ,purpose=sell|,crime|,commercial| + V sell|,commercial| + V transport|,patient=weapon|,purpose=sell|,crime|,commercial| +˿ V transport|,patient=human|,purpose=sell|,crime|,commercial| + V transport|,patient=physical|,purpose=sell|,crime|,commercial| +˽ V transport|,patient=physical|,purpose=sell|,crime|,commercial| + V transport|,purpose=sell|,commercial| + N human|,#occupation|ְλ,commercial| + V ExpressAgainst|Ǵ + V SufferFrom|,medical|ҽ + V attack| + V disobey|Υ + V disobey|Υ,crime| + V do| + V exposure|¶,scope=crime|,police| + V ill|̬,medical|ҽ + V WorthNot|ֵ + V WorthNot|ֵ + V worried|ż + V err| + V worth|ֵ + V worth|ֵ + V disobey|Υ,content=law|ɷ,crime| + V err|,sport| + V damage|,#mating|,crime| + V disobey|Υ,content=regulation| + V ill|̬,medical|ҽ + V disobey|Υ,content=regulation| +ë V err| + V embarrassed|Ϊ + N human|,crime|,undesired|ݬ,$detain|ס + V offend|,target=HighRank|ߵ +IJ V doubt| + ADJ aValue|ֵ,behavior|ֹ,evil|,crime|,undesired|ݬ + V do|,content=crime| + N human|,crime|,undesired|ݬ + N quantity|,rate|,#crime|,&organization|֯,&place|ط + N human|,$doubt|,#crime| + N fact|,eat| + N food|ʳƷ,generic|ͳ + N food|ʳƷ + N food|ʳƷ,generic|ͳ + N InstitutePlace|,@eat|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@eat|,commercial| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put|,#edible|ʳ + N attribute|,ability|,&eat| + N InstitutePlace|,@eat|,commercial| +ʳ N food|ʳƷ,generic|ͳ + N room|,@eat| +Ͱ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ͱ N human|,#eat|,undesired|ݬ +Ͱ N human|,unable|ӹ,undesired|ݬ +Ͱ N tool|þ,cubic|,@put|,#food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N method|,*earn|׬,*alive| + N tool|þ,cubic|,@put|,#food|ʳƷ +ׯ N InstitutePlace|,@eat|,commercial| + N furniture|Ҿ,@put|,#edible|ʳ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| + V float|Ư + V spill| + V undergo|,content=soak| + V ActGeneral| + V read|,range=extensive| + ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,attachment| + V spill| + V surplus|ʣ +ij V appear|,quantity=many| + ADJ aValue|ֵ,attachment| + V appear| + N sound| +ָ V mean|ָ,ordinary| + V float|Ư + N InstitutePlace|,space|ռ,industrial|,*produce| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N FlowerGrass|,fragrant| + N FlowerGrass|,fragrant| + N human|,#reside|ס,near| + N attribute|,age|,&female|Ů + N attribute|,name|,&female|Ů + N chemical|ѧ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N chemical|ѧ,fragrant| + N emotion|,love|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,upright| + N character|,surname|,human|,ProperName|ר + N direction| + N document|,medical|ҽ,#medicine|ҩ + N method| + N part|,%entity|ʵ,aspect| + N place|ط + CLAS unit|λ,&bulk| + CLAS unit|λ,&size|ߴ,&area| + ADV {EventResult|¼} + N plans|滮 + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V benefit| + V excrete|й + N food|ʳƷ +֮ N attribute|,behavior|ֹ,convenient|,desired| + N material|,wood|ľ + ADV time|ʱ,past| + ADV {emphasis|ǿ} + N symbol| +ʽ N symbol| +ʽ N LandVehicle|,*compete|,sport| + N thought|ͷ + N method| + N knowledge|֪ʶ,#method| + ADJ aValue|ֵ,range|,all|ȫ + N shape|,square| + N document|,#medicine|ҩ,#medical|ҽ + N shape|,square| + N symbol| + N plans|滮 + N part|,%entity|ʵ,aspect| + N army|,military| + AUX BeAble|ܹ +ʽ N attribute|,behavior|ֹ,manner|ʽ,&event|¼ +ʽ V SelfMoveInManner|ʽ +ʿ N human|,religion|ڽ + N material|,?food|ʳƷ +λ ADJ aValue|ֵ,location|λ +λ N location|λ + N direction| + N part|,%LandVehicle|,*drive|Ԧ,hand| + ADJ aValue|ֵ,direction| +δ V prosper| + ADJ aValue|ֵ,form|״,square| + N language| +Բ N location|λ +Բ N place|ط,#reside|ס + N human|,religion|ڽ + N regulation|,politics| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,upright| + N ship| + N ship|,religion|ڽ,ProperName|ר + N document|,#medicine|ҩ,#medical|ҽ + N material|,wood|ľ +Բ V FitNot| + N character|,surname|,human|,ProperName|ר + N house|,generic|ͳ + N human|,mass|,#family| + N room| + N shape|,#house| + N room|,%ship| + N wealth|Ǯ,#house| +ز N wealth|Ǯ,#house| +زҵ N wealth|Ǯ,#earth|,#building| + N part|,%house|,head|ͷ + N human|,*own|,#house| + V improve|,patient=reside|ס + N part|,%building|,base| + N room| + N human|,*borrow|,*reside|ס,#house| + N part|,%building|,mouth| + N house|,generic|ͳ + N fact|,mating| + N room| + N house|,generic|ͳ + N human|,*own|,#house| + N house|,generic|ͳ + N expenditure|,*borrow|,#house| + N part|,%building|,head|ͷ + V defend| + N facilities|ʩ,*protect|,space|ռ + V obstruct|ֹ + V withstand|ס + V obstruct|ֹ,patient=uprise|,police| + N human|,#occupation|ְλ,police| + ADJ aValue|ֵ,ability|,able|,exempt| + V obstruct|ֹ + V obstruct|ֹ,patient=disease| +ʤ ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#wet|ʪ + ADJ aValue|ֵ,ability|,able|,withstand|ס + V remove| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=steal|͵ + N place|ط,military|,$defend| + V obstruct|ֹ,patient=cool| + V obstruct|ֹ,patient=poison| + N tool|þ,*obstruct|ֹ,#poison| + V defend| + V escape|,cause=wind| + N tree|,*protect| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס + N chemical|ѧ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| + V obstruct|ֹ,patient=waterless| + V obstruct|ֹ,patient=waterlogging| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + V protect| + N tree| + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ +δȻ V obstruct|ֹ,patient=unfortunate| +δȻ V obstruct|ֹ,patient=unfortunate| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,patient=fire| + V defend|,patient=sky| +ն N facilities|ʩ,@escape| +ն N location|λ,@hide|,#crime|,undesired|ݬ +ն N place|ط,@hide|,#crime|,undesired|ݬ + V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=ice| +© ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,exempt|,#leak|© + V defend| +زס ADJ aValue|ֵ,possibility|,impossible|,$defend| + V obstruct|ֹ,patient=hot| + V obstruct|ֹ,patient=hot| +ˮ ADJ aValue|ֵ,ability|,able|,withstand|ס,#liquid|Һ + ADJ aValue|ֵ,ability|,able|,withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shrink|С +΢Ž V restrain|ֹ,time=early| +α V obstruct|ֹ,ResultEvent=forge|α + V defend| + N affairs|,#defend|,#country| + N place|ط,military|,$defend| + ADJ aValue|ֵ,ability|,able|,withstand|ס +Ѵ V obstruct|ֹ,patient=waterlogging| + V obstruct|ֹ,patient=disease|,medical|ҽ + ADJ aValue|ֵ,ability|,able|,withstand|ס +겼 N material|,?clothing| + V defend|,military| + N defend|,military| + N human|,*defend|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס + V obstruct|ֹ,ResultEvent=shiver| +ֹ V obstruct|ֹ + V cure|ҽ + V obstruct|ֹ + V obstruct|ֹ + V damage| + V BeSimilar| + V imitate|ģ +· V BeSimilar| +¹ V imitate|ģ,content=artifact|˹ +ð V imitate|ģ +Ч V imitate|ģ + V produce|,means=imitate|ģ + V imitate|ģ + N imitate|ģ + V produce|,means=imitate|ģ + V ask| + V visit| +ƶʿ V visit|,target=poor| +̸ N fact|,talk|̸ + V investigate| + V visit| + V visit|,target=friend| + N material|,?clothing| +ij N material|,?clothing| +Ķ N part|,%machine| +Ļ N machine|,industrial| +ɴ V produce|,PatientProduct=material|,industrial| +˿ V produce|,PatientProduct=material|,industrial| +֯ V produce| +֯ N InstitutePlace|,factory|,@produce|,industrial| +֯ N machine|,industrial| +֯ N InsectWorm| +֯Ʒ N material|,?clothing| +֯ҵ N affairs|,industrial|,#material| + V abandon| + V add| + V adjust| + V display|չʾ + V enlarge| + V exile| + V expel|,agricultural|ũ + V grow|ɳ + V indulge| + V lend|,commercial| + V put| + V release|ͷ + V shoot| +ų V shoot| +Ŵ V enlarge| +Ŵ N tool|þ,*enlarge|,#look| +Ŵ N attribute|,performance|,&enlarge| +Ŵ N machine|,*enlarge|,#electricity| +Ŵ V lend| +ŵ V willing|Ը +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ŵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ŵ V shoot|,#electricity| +ŵ V IllBehave| +ŵ V MakeTrouble| +Ŷ V disseminate|,content=bad| +Ŷ V put|,patient=poison|,purpose=kill|ɱ +ŷ V CauseToDo|ʹ,ResultEvent=fly| +ŷ V MoveItInto|,patient=gas|,purpose=clean|ʹ +ŷ V defend| +ŷ V disseminate|,content=information|Ϣ +ŷ V release|ͷ,patient=crime|,purpose=exercise|,police| +Ź V cease|ͣ +Ź V forgive|ԭ +Ź V release|ͷ +Ż V delay| +Ż V CauseToDo|ʹ,ResultEvent=alive| +Ż V MakeTrouble| +Ż V lighting|ȼ,crime| +ż V enjoy|,content=cease|ͣ +ż V enjoy|,content=festival| +ſ V do|,manner=free| +ſ V SelfMoveInManner|ʽ,result=empty| +ſ V boast| +ſ V disseminate|,content=information|Ϣ +ſ ADJ aValue|ֵ,circumstances|,relax|,desired| +ſ V weaken| +ſ V lend|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V satisfied| + V SlowDown| + V TakeCare|,#livestock|,agricultural|ũ +ţ N human|,agricultural|ũ,young| + V TalkNonsense|Ϲ˵ + V firing|,instrument=weapon| +ƨ V excrete|й,patient=waste| + V abandon| + V cease|ͣ + N human|,*abandon| + V WeatherFine| +Ȩ V abandon|,possession=power|,politics| + V shoot|,patient=hot| + V indulge| + V indulge| +ɢ V disperse|ɢ + V defend| + V shoot| +䲡 N disease| + N lights|,*diagnose|,medical|ҽ + ADJ aValue|ֵ,SoundVolume|,loud| + V release|ͷ,patient=AnimalHuman| + V release|ͷ,patient=AnimalHuman|,religion|ڽ + V endeavour| + V release|ͷ +ˮ V TurnOn|,patient=water|ˮ +ˮ V drain|ų,patient=liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V loosen| + V weaken| + V disseminate| + V MoveItDown| + N tool|þ,*display|չʾ,#shows| + V AtEase| +IJ V worried|ż + V release|ͷ +ѧ V enjoy|,content=festival|,education| +ѧ V finish|,education| +Ѫ V MakeBad|Ӻ +Ѫ V cure|ҽ + V look|,manner=wide| + V look|,content=place|ط + V foster|,agricultural|ũ + N image|ͼ,#vehicle|ͨ +ӳ V display|չʾ,shows| +ӳ N community|,*display|չʾ,#shows| +ӳ N tool|þ,*display|չʾ,#shows| + V ThinkOf|˼ +֮ĺ׼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V put| + V store| + V exile| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N inanimate| + N place|ط,country|,ProperName|ר,(Philippines|ɱ) +Ʊ V PlayDown| +Ʊ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +Ʊ V despise| +Ʒ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +Ʒ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Philippines|ɱ) +ɱ N place|ط,country|,ProperName|ר + V BeNot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N place|ط,ProperName|ר + N result|,undesired|ݬ,wrong| + ... Ī V be|,manner=comment| +DZ ADJ aValue|ֵ,content|,opened| +DZ ADJ aValue|ֵ,behavior|ֹ,^fierce| +DZ ADJ aValue|ֵ,importance|,secondary| +DZ׼ ADJ aValue|ֵ,standard|׼,useless| +dz ADV aValue|ֵ,degree|̶,extreme| +dz ADV aValue|ֵ,degree|̶,very| +dz ADJ aValue|ֵ,kind|,special| +dz V sorrowful| +dz; ADJ aValue|ֵ,quality|,durable|,desired| +dz ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ǵ ADJ aValue|ֵ,kind|,special| +ǵ ADV {supplement|ݽ} +ǵ AUX {modality|} +ǵ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +Ƿ N fact|,publish|,crime|,undesired|ݬ +Ƿ N publications|鿯,crime|,undesired|ݬ +Ƿõ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǷӪ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ N fact|,commercial|,crime|,undesired|ݬ +Ƿ N wealth|Ǯ,$earn|׬,crime|,undesired|ݬ +Ƿ ADJ aValue|ֵ,kind|,special| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ǹ ADJ aValue|ֵ,behavior|ֹ,passive| +ǹ˰ N method|,commercial| +ǹٷ ADJ aValue|ֵ,attachment|,private|˽ +ǽ ADJ aValue|ֵ,quality|,^metal| +Ǿ ADJ aValue|ֵ,importance|,secondary| +Ǿ ADJ aValue|ֵ,attachment|,^military| + V IllBehave|,crime| + V damage| +¿ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +˹ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ ADJ aValue|ֵ,attachment|,^commercial| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +ͬС ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,form|״ + V ExpressAgainst|Ǵ +Ӫ ADJ aValue|ֵ,property|,^earn|׬ + ADJ aValue|ֵ,duration|,TimeShort| +ԭ ADJ aValue|ֵ,source|Դ,^original|ԭ +սԱ N human|,military| +ʽ ADJ aValue|ֵ,behavior|ֹ,informal|ʽ +ͳ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,attachment|,organization|֯,ordinary| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Africa|) + N place|ط,ProperName|ר,(Africa|) +޽ڹͬ巨 N money|,(Benin|) +޽ڹͬ巨 N money|,(Mali|) +޽ڹͬ巨 N money|,(Niger|ն) +޽ڹͬ巨 N money|,(Senegal|ڼӶ) + N human|,(Africa|) +ר ADJ aValue|ֵ,property|,^$protect|,commercial| +Ȼ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| +ɱ V run| +ɳ V SelfMove|,manner=fast| +ɴ N aircraft| +ɵ N weapon|,$firing| +ɵ N place|ط +ɵ N aircraft| +ɵ N fact|,#firing|,sport| +ɶ V deceive|ƭ +ɶͶ V suicide|ɱ +ɺ V fly| +ɻڴ V prosper| +ɻ N InsectWorm|,undesired|ݬ +ɻ N aircraft| +ɻ N facilities|ʩ,#aircraft|,@stay|ͣ +ɻƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| +ɻʧ N phenomena|,unfortunate|,#aircraft|,undesired|ݬ +ɽ V disperse|ɢ +ɽ V GoInto|,means=fly| +ɿ ADJ aValue|ֵ,form|״,sharp| +ɿ ADJ aValue|ֵ,speed|ٶ,fast| + N phenomena|,undesired|ݬ,#unfortunate| + V leave|뿪,means=fly| + N InstitutePlace|,factory|,*produce|,ProperName|ר,(Netherland|) + V arrive|,means=fly| + N part|,%LandVehicle| + N part|,%implement| +ë N human|,*run|,fast| +ë N part|,%AnimalHuman|,leg|,*run|,fast| + N bird| + N FlowerGrass| + N water|ˮ,fast| + N animal| +Ȫ N waters|ˮ,surfacial| + N human|,*run|,fast| + V fly| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N humanized|,ProperName|ר +ͧ N aircraft| + V LeaveFor|ǰ,means=fly| + V fly| + V fly| + V fly| + N aircraft| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + V show|,instrument=eye| + V fly| + V rise| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V cross|Խ,means=fly| +Ծ V GoForward|ǰ + N phenomena|,undesired|ݬ,#unfortunate| + V BecomeMore|,commercial| + ADJ aValue|ֵ,speed|ٶ,fast| + V fly| + N part|,%building| +߱ V walk| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,size|ߴ,big| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ʳ N food|ʳƷ +ʴ ADJ aValue|ֵ,fineness|ϸ,widediameter| +ʴ ADJ aValue|ֵ,size|ߴ,big| +ʺ ADJ aValue|ֵ,fatness|,fat| + N attribute|,ability|,*feed|ι,#crop|ׯ,agricultural|ũ + N material|,*feed|ι,#crop|ׯ,agricultural|ũ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh|,fat| +ʵ ADJ aValue|ֵ,fatness|,fat| +˶ ADJ aValue|ֵ,fatness|,fat| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + ADJ aValue|ֵ,quality|,fertile|,desired| +Ч N attribute|,effect|Ч,*feed|ι,#crop|ׯ,agricultural|ũ +Դ N location|λ,@ExistAppear|,#material|,agricultural|ũ + N tool|þ,*wash|ϴ + N shows| + N livestock| +׳ ADJ aValue|ֵ,fatness|,fat| + N human|,*rob|,crime|,undesired|ݬ +˰ N community|,*rob|,crime|,undesired|ݬ +˳ N place|ط,#rob|,crime|,undesired|ݬ +˻ N phenomena|,unfortunate|,#rob|,#crime|,undesired|ݬ +˿ N place|ط,#rob|,crime|,undesired|ݬ + N human|,*rob|,crime|,undesired|ݬ +ͽ N human|,*rob|,crime|,undesired|ݬ +˼ ADJ aValue|ֵ,kind|,special| +̰ V slander|̰ +̰ ADJ aValue|ֵ,content|,evil|,#uglify|,undesired|ݬ +̰ N human|,*slander|̰ + V cry|,#livestock| + N part|,%AnimalHuman|,viscera| +ΰ N disease| +β N disease| +β N disease| +β N part|,%AnimalHuman|,viscera| +ζ N part|,%AnimalHuman|,nerve| +θ N emotion|,sincere| +θ֮ N text|,$speak|˵,sincere| +ν N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N bacteria|΢ + N disease| +Ҷ N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N disease| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,scene|,desolate|,undesired|ݬ + V abandon| + V remove| +ϳ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ϳ V remove| +ϻ V TalkNonsense|Ϲ˵ +Ͼ ADJ aValue|ֵ,quality|,used|,waste|,undesired|ݬ + N physical|,generic|ͳ,waste| +Ʒ N artifact|˹,generic|ͳ,waste| +Ʒ N physical|,generic|ͳ,waste| +Ʒ N human|,commercial| + N gas|,waste| + V abandon| + N physical|,generic|ͳ,waste| +ʳ V endeavour| + N human|,*disable|м,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ +ˮ N liquid|Һ,waste| + N metal|,waste| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + N physical|,generic|ͳ,waste| + N place|ط,waste| +Һ N liquid|Һ,waste| + N material|,liquid|Һ,waste| + N physical|,generic|ͳ,waste| +ֹ V remove| +ֽ N paper|ֽ,waste| + V abandon| + V dismiss|,royal| + V StateChange|̬ +е N attribute|,boundary|,#StateChange|̬,&temperature|¶ +з ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ȫ N waters|ˮ,surfacial| +ˮ N liquid|Һ,StateChange|̬ + V StateChange|̬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V excited| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N expenditure| + V spend| +ѳ N place|ط,city|,ProperName|ר,(US|) +ѹ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѽ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѾĻ V think|˼ +Ѿ ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ +Ѿ V spend|,patient=strength| + ADJ aValue|ֵ,property|,spend|,#strength|,undesired|ݬ + V spend|,patient=strength| +ֺ V ^succeed|ɹ +ʱ ADJ aValue|ֵ,property|,spend|,#time|ʱ,undesired|ݬ + V CauseToDo|ʹ,ResultEvent=hardship| + V PayAttention|ע + N expenditure| + N place|ط,country|,ProperName|ר,(Finland|) +ҷ ADJ aValue|ֵ,odor|ζ,fragrant|,desired| +ҷ N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Finland|) + N place|ط,country|,ProperName|ר + N money|,(Finland|) + N human|,(Finland|) + N language|,#country|,ProperName|ר + N chemical|ѧ +ȩ N material| +Ը V urge|ʹ + N gas| +Χ N attribute|,occasion|,&event|¼ + ADJ aValue|ֵ,importance|,branch|֧ + V distinguish|ֱ + V issue|ַ + N part|,%entity|ʵ + N part|,%organization|֯ + N rights|Ȩ + V separate| + N symbol|,#quantity| + N time|ʱ,special| + V undergo|,means=cooperate| + CLAS unit|λ,&amount| + CLAS unit|λ,&area| + CLAS unit|λ,&length| + CLAS unit|λ,&money|,(China|й) + CLAS unit|λ,&money|,rate| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&weight| +ְ V entrust|ί +ֱ N unit|λ,&SoundVolume| +ֱ V perish| +ֱ V distinguish|ֱ +ֱ N attribute|,ability|,distinguish|ֱ,&human| +ֱ N attribute|,performance|,&distinguish|ֱ +ֱ V refute| +ֱ ADJ aValue|ֵ,behavior|ֹ,sequence| +ֱ N attribute|,similarity|ͬ,&entity|ʵ +ֱ V distinguish|ֱ +ֱ V farewell| +ֱ V separate|,SourceWhole=army| +ֲ V exist| +ֲʽ ADJ aValue|ֵ,property|,$spread| +ֲ N part|,%institution|,*manage| +ֲ N account|,@record|¼ +ֲ V separate| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ N InstitutePlace|,branch|֧,@produce|,factory|,industrial| +ֳ V separate| +ִ N attribute|,range|,&entity|ʵ +ֵ V bear|е,means=cooperate| +ֵ V obtain|õ +ֵ V undergo|,content=$dispatch|Dz +ֵ V disconnect| +ֵ V obtain|õ +ֵ V classify| +ֵ N institution|,branch|֧,*manage| +ֶ N part|,%army|,military| +ַ V issue|ַ +ַ N human|,*issue|ַ +ַ V issue|ַ,possession=house| +ָ V LeaveFor|ǰ +ָ V separate| +ָ V separate| +ֹ V separate|,SourceWhole=affairs| +ֹ˾ N InstitutePlace|,branch|֧,commercial| +ֹ V manage| +ֹ N tool|þ,*check|,#lights| +ֹ⾵ N tool|þ,*check|,#lights| +ֺ N InstitutePlace|,branch|֧,commercial| +ֺ N symbol| +ֺ V dredge|ͨ +ֺ V earn|׬,possession=payment| +ֺ V issue|ַ,possession=payment| +ֻ V separate| +ֻ N community|,branch|֧ +ֻ N facilities|ʩ,branch|֧,*communicate| +ּ V estimate|,content=rank|ȼ +ּ V separate|,SourceWhole=family| +ּ V classify| +ֽ V separate| +ֽ N attribute|,boundary|,&entity|ʵ +ֽ N place|ط,#country|,boundary| +ֽ N attribute|,boundary|,&entity|ʵ +־ V disconnect| +־ N institution|,branch|֧ +ֿ V farewell| +ֿ V separate| + V classify| +ϵ N result|,#classify| + N human|,*classify| + V farewell| + V separate| + ADJ aValue|ֵ,property|,$separate| + N attribute|,weight|,&physical| + V separate| +ű V classify| + V excrete|й + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ĸ N symbol|,#quantity| + ADJ aValue|ֵ,attachment|,private|˽ + V issue|ַ + V dispatch|Dz + V issue|ַ + ADJ aValue|ֵ,behavior|ֹ +Ƭ V classify|,patient=affairs| + ADV aValue|ֵ,behavior|ֹ +ڷ ADV aValue|ֵ,behavior|ֹ + N attribute|,divergence|,&entity|ʵ +Dz N part|,%army| + V distinguish|ֱ + N institution|,branch|֧ +Ȩ V separate|,patient=rights|Ȩ +ɢ ADJ aValue|ֵ,property|,$spread| +ɢ V disperse|ɢ +ɢ V spread| +ɢ ...ע V CauseToDo|ʹ,ResultEvent=^PayAttention|ע + V establish| +ʱ V cooperate| + V disconnect| + V farewell| + N symbol|,#quantity|,#DoSum| +ˮ N attribute|,boundary|,&entity|ʵ +ˮ N part|,%land|½,space|ռ,head|ͷ +˰ N system|ƶ,#expenditure| +˵ V refute| + V send| + N institution|,branch|֧ +̯ V bear|е +ͥ V equal| +ͥ V oppose| +ͷ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͷ N shape|,&hair|ë + ADJ aValue|ֵ,attachment|,public| +Ϊ V separate| + N money| +IJȡ ADJ aValue|ֵ,property|,^$pay| + ADJ aValue|ֵ,performance| + V analyze| + ADJ aValue|ֵ,content|,pure| + N software| +Ա N human|,*analyze| +ϵͳ N software| +߹ N tool|þ,*measure| + V undergo|,means=cooperate| + N cause|ԭ + N result| +У N institution|,branch|֧,@teach|,@study|ѧ,education| + V ^PayAttention|ע + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + V separate| + V help|,scope=remove| +Ժ N institution|,branch|֧ + V enjoy|,possession=payment|,manner=together|ͬ + N regulation|,*enjoy|,#payment| + N part|,%tool|þ,#tell|,#time|ʱ,#minute| +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N part|,%organization|֯,branch|֧ +֧ N part|,%plant|ֲ,limb|֫ +֧ N part|,%organization|֯,branch|֧ +֮ NUM symbol|,#quantity| + CLAS unit|λ,&time|ʱ + V planting|ֲ + N human|,#organization|֯ + N part|,%physical| + N symbol| + N attribute|,weight|,&physical| + V classify| + V farewell| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ qValue|ֵ,amount|,many| +׳ V appear| +׷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׷ V fly| +׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +׷ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V quarrel| + V appear|,manner=many| + ADJ qValue|ֵ,amount|,many| + N facilities|ʩ,space|ռ,@bury|,#die| +ص N facilities|ʩ,space|ռ,@bury|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#die| +ͷ N facilities|ʩ,space|ռ,@bury|,#die| + N facilities|ʩ,space|ռ,@bury|,#die| + V burn| +ٷ N wind| +ٻ V burn|,purpose=bury| +ٻ V destroy|,means=burn| + V burn| + V lighting|ȼ +ھ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,color|ɫ,white| + V decorate|װ,means=apply|ͿĨ + N food|ʳƷ + N shape| + N tool|þ,*MakeUp|ױ +۱ N PenInk|ī,*write|д +۳ N stone|ʯ,waste| +۴ N disease|,#skin|Ƥ +۵ N InsectWorm| +ۺ ADJ aValue|ֵ,color|ɫ,red| +ۼ N medicine|ҩ +ĩ N shape| +ĩұ N method|,*refine|,#metal| +īdz V GoUp|ȥ,LocationFin=facilities|ʩ,entertainment| +īdz V engage|,politics| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| + V die| + V HideTruth| + V beautify|,purpose=HideTruth| + V decorate|װ,means=apply|ͿĨ +ˢ V decorate|װ,means=apply|ͿĨ +˿ N food|ʳƷ + V FormChange|α + V bump|ײ + V destroy| + N machine|,*grind|ĥ +Թ N disease| + N food|ʳƷ +״ ADJ aValue|ֵ,form|״,shape| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V endeavour| +ܲ V endeavour| +ܶ V endeavour| +ܶ N human|,*endeavour| +ܷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ܷ V endeavour| +ܷ V excited| +ܷͼǿ V endeavour| +ܽ V endeavour| + V endeavour| + V endeavour| + V endeavour| +ֱ׷ N chase|׷,manner=endeavour| + ADV aValue|ֵ,courage|,brave|,desired| +ս V fight| + V seek|ıȡ + CLAS NounUnit|,&emotion|,&strength| + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&publications|鿯,&document| + N component|,%entity|ʵ +ݶ N component|,%entity|ʵ +ݶ N attribute|,degree|̶,&event|¼,&aValue|ֵ +ݶ N food|ʳƷ + N expenditure| + N emotion|,angry| + N emotion|,angry|,undesired|ݬ + N emotion|,angry|,desired| + N emotion|,angry|,undesired|ݬ +߷߲ƽ V unsatisfied| +ߺ V hate| +߼ V excited| +߿ N emotion|,angry|,desired| +ŭ V angry| +Ȼ ADV angry| + V unsatisfied| + V unsatisfied| + N stone|ʯ,#AnimalHuman|,waste| + N stone|ʯ,#AnimalHuman|,waste| + N material|,*feed|ι,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| +ᱮ N mark|־,#succeed|ɹ,desired| +ᱮ N result|,#succeed|ɹ,desired| + N attribute|,demeanor|,gracious|,&human| + V prosper|,agricultural|ũ + V prosper|,agricultural|ũ +ḻ V enrich|ʵ +ḻ ADJ qValue|ֵ,amount|,many| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +ḻ ADJ qValue|ֵ,amount|,many|,desired| +Ṧΰ N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,thickness|,thick|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,fatness|,fat| + ADJ qValue|ֵ,amount|,many|,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N time|ʱ,year|,desired|,#crop|ׯ + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ʢ ADJ qValue|ֵ,amount|,many|,desired| + V prosper|,agricultural|ũ +˶ ADJ qValue|ֵ,amount|,many|,desired| +ʳ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ʳ V prosper| +ӯ ADJ aValue|ֵ,fatness|,fat| +ӯ ADJ qValue|ֵ,amount|,many|,desired| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ԣ ADJ qValue|ֵ,amount|,many|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + V block|ס + N character|,surname|,human|,ProperName|ר + V grant|,royal| + V shut|ر + V shut|ر,instrument=mark|־ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V shut|ر +ʽ ADJ aValue|ֵ,behavior|ֹ,restrained| + ADJ aValue|ֵ,behavior|ֹ,restrained| + V store| + N part|,%publications|鿯,hind| + N place|ط,#country| +ⶥ V cease|ͣ,content=grow|ɳ +ⶥ V delimit|,#wealth|Ǯ +ⶳ V StateChange|̬,StateFin=ice| +⽨ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +⽨ N system|ƶ,politics| +⽨ƶ N system|ƶ,politics| +⽨ N system|ƶ,politics| + V BeRecovered|ԭ,medical|ҽ + V shut|ر + N part|,%publications|鿯,InFront|ǰ +Ƥ N stationery|ľ,*wrap| +ɽ V shut|ر,patient=route|· +ɽ V planting|ֲ,patient=tree|,LocationFin=land|½ + V shut|ر + V BlockUp| + V shut|ر + N location|λ,boundary|,*block|ס + N mark|־ + V exercise|,means=block|ס,sport| +Ϊ V RegardAs| +ס V shut|ر +װ V load|װ + N tree| + N tree| +Ҷ N part|,%plant|ֲ,hair|ë + N InsectWorm| +䷿ N room|,#InsectWorm| + N food|ʳƷ + N food|ʳƷ,?medicine|ҩ + N InsectWorm| + N food|ʳƷ,?medicine|ҩ + N house|,#InsectWorm| +ú N stone|ʯ,material|,$burn| +״ ADJ aValue|ֵ,form|״ +ӵ V ComeTogether| +ӵ V GoForward|ǰ +ӵ V come| + N part|,%animal| + N part|,space|ռ,%land|½,head|ͷ +嶥 N part|,%land|½,head|ͷ + N fact|,discuss|,HighRank|ߵ + N part|,space|ռ,%land|½,head|ͷ + N part|,%thing| + N part|,%tool|þ,*cut|,heart| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,form|״,sharp| +â N attribute|,ability|,&human| +â N part|,%tool|þ,*cut|,heart| +ⶠADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N attribute|,habit|ϰ,&human| + N attribute|,scene|,&inanimate| + N attribute|,style|,&text| + N information|Ϣ + N wind| +籩 N fact|,uprise|,undesired|ݬ,politics| +籩 N wind|,#WeatherBad|,undesired|ݬ + N tool|þ,#inhale|,#gas| + N tool|þ,*inhale|,#gas| +粨 N fact|,uprise|,undesired|ݬ,politics| + N attribute|,ability|,&compile|༭ + N attribute|,demeanor|,gracious|,&human| +¶ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糱 N fact|,uprise|,undesired|ݬ,politics| +糵 N tool|þ,#wind|,*exhale|,#crop|ׯ +糵 N tool|þ,*WhileAway| +糾 N phenomena|,#tired|ƣ,#tour|,undesired|ݬ +糾 N phenomena|,undesired|ݬ,hardship| +糾 ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +糾 V tired|ƣ,cause=SelfMove| +۵糸 V SelfMoveInManner|ʽ,manner=fast| +紵ݶ N phenomena|,disorder|,undesired|ݬ +˳ N weather|,good|,desired| +綴 N facilities|ʩ,route|·,#wind|,#speed|ٶ + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +緢 ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +緢 ADJ aValue|ֵ,strength|,strong|ǿ,desired| +緫 N part|,%ship|,*drive|Ԧ +緫 N ship| +緶 N attribute|,demeanor|,&human| +緶 N attribute|,style|,&human| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship| + N phenomena|,undesired|ݬ,#unfortunate| + V dry| + N tool|þ,*dig|ھ,mine| + N attribute|,style|,&entity|ʵ + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&compile|༭,literature| + ADJ aValue|ֵ,circumstances|,good|,desired| + N attribute|,scene|,&inanimate| +ⲻ V disappear|ʧ +约 N phenomena|,unfortunate|,#WeatherBad|,undesired|ݬ +纮 N disease|,#fever|,medical|ҽ + ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +绪 N attribute|,demeanor|,ability|,&human| +绪ï ADJ aValue|ֵ,physique|,strong|ǿ,desired| +绯 V StateChange|̬ +羰 N attribute|,scene|,&inanimate| +羰 N image|ͼ,#scene| +羰 N place|ط,#scene| +羰续 ADJ aValue|ֵ,scene|,beautiful|,desired| +羵 N tool|þ,*protect|,#eye| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N part|,%machine|,mouth| + N part|,%place|ط,#wind| + N fact|,uprise|,undesired|ݬ,politics| + ADJ aValue|ֵ,strength|,&wind| + N attribute|,intensity|ǿ,&wind| + N attribute|,strength|,&wind| + ADJ aValue|ֵ,temperature|¶,chilly| + N tool|þ,*MakeSound| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N human|,behavior|ֹ,flighty| + N human|,behavior|ֹ,free| +ɢ V disperse|ɢ +ţ༰ V RelateNot|޹ +ñ N clothing|,#head|ͷ +ò N attribute|,bearing|̬,gracious|,desired| +ò N attribute|,scene|,&inanimate| +ò N attribute|,style|,property|,&entity|ʵ +ý N FlowerGrass| + N part|,%vehicle|ͨ + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%building|,mouth| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +һʱ V prosper| + N attribute|,strength|,&wind| + N bird| +ƽ˾ ADJ aValue|ֵ,circumstances|,safe|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ V happen| + N attribute|,SocialMode|,&organization|֯ + N MusicTool| + N human|,*perform|,entertainment| + N attribute|,SocialMode|,&organization|֯ + N attribute|,bearing|̬,&human| + N emotion| + N emotion|,lascivious| + N information|Ϣ,#wind| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɳ N wind| +ɳܴ ADJ aValue|ֵ,property|,WeatherBad|,#wind| + N tool|þ,#wind|,*cool| + N attribute|,habit|ϰ,&human|,&organization|֯ + N information|Ϣ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʪ N disease| +ʪ N disease| +ʪ N disease| +ʪԹؽ N disease| +ʪ֢ N disease| +ʴ V damage|,#wind| +˪ N phenomena|,hardship|,undesired|ݬ +ˮ N information|Ϣ,#earth| + N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ + N attribute|,speed|ٶ,&wind| +ͷ N attribute|,circumstances|,&event|¼ +ͷ N attribute|,reputation|,glorious|,&human| + N attribute|,habit|ϰ,&human|,&organization|֯ +ζ N attribute|,style|,&information|Ϣ,special| +ζ N attribute|,taste|ζ,&edible|ʳ,special| + V perception|֪ + N attribute|,scene|,special|,&inanimate| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N direction|,#wind| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| +ѩ N wind|,RainSnow|ѩ +ѹ N attribute|,strength|,&wind| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N clothing|,*protect|,#human|,#wind| + N phenomena|,hardship|,undesired|ݬ +Ʈҡ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ͬ V undergo|,content=hardship|,manner=together|ͬ + ADV aValue|ֵ,behavior|ֹ,lasting| + N attribute|,scene|,&inanimate| + N fact|,#love| + N attribute|,circumstances|,disorder|,&entity|ʵ +Ʊ V change|,manner=fast|,#politics| + N human|,glorious|,desired| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N phenomena|,undesired|ݬ,#unfortunate|,#WeatherBad| + N disease| + N time|ʱ,#age|,#aged| + N attribute|,demeanor|,gracious|,desired|,&female|Ů + N tool|þ,*dig|ھ,mine| + N tool|þ,*WhileAway| + V mad| + V mad| +蹷 N livestock|,*mad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N human|,*mad|,undesired|ݬ + V mad| + N tool|þ,#fire|,*tell| + N fact|,fight| + N tool|þ,#fire|,*tell| +̨ N facilities|ʩ,#fire|,*tell| + N tool|þ,#fire|,*tell| + V meet| + CONJ {time|ʱ} + N time|ʱ +׻ V change|,StateIni=unfortunate|,StateFin=lucky| +ӭ V please|ȡ + N character|,surname|,human|,ProperName|ר + V fasten|˩ + N part|,%inanimate|,mouth| +첹 V repair| + V repair| + V fasten|˩ + V fasten|˩ +һ V tool|þ,*fasten|˩ +϶ N part|,%inanimate|,mouth| + V produce| + N part|,%inanimate|,mouth| + V recite|ж + V satirize| + ADJ aValue|ֵ,content|,#satirize| + V satirize| +̼ N human|,*satirize| + N human|,*compile|༭,#satirize|,literature| + V TakeCare| + V believe| + V receive| + V respect| + V submit| + ADJ aValue|ֵ,content|,#please|ȡ + V please|ȡ + N human|,*please|ȡ + V tell| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V return| + V obey|ѭ,content=order| + V follow| +Ȱ V persuade|Ȱ˵ + V salute|¾ + V GiveAsGift| +Ϊ V RegardAs| + N result|,desired|,$donate| + V submit| + V conduct|ʵʩ + V foster| + N bird| + N character|,surname|,human|,ProperName|ר + N clothing|,#head|ͷ + N bird| + N fruit|ˮ +ë ADJ aValue|ֵ,value|ֵ,precious|,desired| +β N fish| +β N tree| +ɻ N FlowerGrass| + N humanized|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ý ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cape Verde|ý) +ý N place|ط,country|,ProperName|ר + N knowledge|֪ʶ,religion|ڽ + N community|,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N publications|鿯,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Italy|) + N community|,religion|ڽ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N fact|,religion|ڽ + N tree| + N facilities|ʩ,religion|ڽ,space|ռ + N room|,religion|ڽ + N tool|þ,#humanized|,religion|ڽ +ѧ N knowledge|֪ʶ,#religion|ڽ + N location|λ,religion|ڽ,@put| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V deny| + V reject|ؾ + V deny| + V reject|ؾ +̩ V change|,StateIni=unfortunate|,StateFin=lucky| + V reject|ؾ +Ȩ N rights|Ȩ,politics|,*reject|ؾ + N human|,*reject|ؾ + V deny| + V reject|ؾ + CONJ {transition|ת} + N human|,#occupation|ְλ,employee|Ա + N human|,family|,male| + N human|,family|,mass| + N human|,family|,mass| + N human|,family|,female|Ů + N human|,female|Ů + N human|,*teach|,education| + N human|,stiff|,undesired|ݬ + V apply|ͿĨ + N material|,*cure|ҽ,generic|ͳ + V build| + V explain|˵ + V slack|͵ + V slack|͵ + V slack|͵ + V explain|˵ + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ɫ N attribute|,color|ɫ,&human|,#skin|Ƥ + V GiveBirth| + V GiveBirth| + V HoldWithHand| + V PropUp|֧ + N character|,surname|,human|,ProperName|ר + V help| + V help| +Я V HoldWithHand|,patient=human| +ƶ V help|,patient=poor| +ƶ V help|,patient=poor| + V HoldWithHand| +ɣ N place|ط,country|,ProperName|ר,(Japan|ձ) +ɣ N tree| + N fittings|,%artifact|˹ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%building|,nerve| + V ProvideFor| +ҡֱ V BecomeMore|,commercial| +ҡֱ V rise| +Ҵ V help| + V cure|ҽ + V put|,result=upright| +а V cure|ҽ +ֲ V cultivate| +ֲ V help| + V help| + V disobey|Υ + V stroke| + V wipe| + V stroke|,PartOfTouch=skin|Ƥ + V wipe| + N time|ʱ,morning| +ȥ V leave|뿪,cause=angry| + N part|,%LandVehicle|,#leg| + V disperse|ɢ + N attribute|,strength|,&physical| +Դ N attribute|,source|Դ,&physical| +״ ADJ aValue|ֵ,form|״,disperse|ɢ + V illuminate| + CLAS NounUnit|,&image|ͼ + N attribute|,size|ߴ,&physical| + N attribute|,width|,&material| + N attribute|,range|,&event|¼ + N attribute|,width|,&material| + N attribute|,width|,&physical| +Ա N attribute|,size|ߴ,&country| +Ա ADJ aValue|ֵ,area|,wide| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + N document|,*prove|֤ + N document|,religion|ڽ + V fit|ʺ + N symbol| + N symbol| + V fit|ʺ +ϰ ADJ aValue|ֵ,trueness|α,true|,#language| + V CausePartMove| + V LieDown| + N character|,surname|,human|,ProperName|ר + V fall| + V hide| + V surrender| + CLAS unit|λ,&PhysicsPower| + V CausePartMove| + V suffer|,content=kill|ɱ,police| + V attack|,military| + N waters|ˮ,linear| + N time|ʱ,season|,hot| + CLAS unit|λ,&voltage|ѹ +ؼ N drinks|Ʒ,$addict|Ⱥ + N time|ʱ,season|,hot| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ѵ N phenomena|,#liquid|Һ,#weather| + V catch|׽ס,military| + N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + V catch|׽ס,military| +² V catch|׽ס,military| +² N human|,military|,$defeat|սʤ,$catch|׽ס,undesired|ݬ + CLAS NounUnit|,&medicine|ҩ + V believe| + N clothing|,generic|ͳ + V eat|,medical|ҽ + V fit|ʺ + V surrender| + V engage|,content=military|,military| + V obey|ѭ + V suicide|ɱ,instrument=poison| + N method|,*consume|ȡ,#medicine|ҩ,medical|ҽ + V surrender|,target=law|ɷ,#police| + V believe| +ɥ V condole|° + V TakeCare| + N clothing|,generic|ͳ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V believe| + V TakeCare| + N computer| +̨ N facilities|ʩ,space|ռ,#entertain|д +ҵ N affairs|,#TakeCare|,commercial| +Ա N human|,*help|,#commercial| + V include|,ResultWhole=army|,military| + V suffer|,content=punish|,police| +ҩ V consume|ȡ,patient=medicine|ҩ + V engage|,military| + V include|,ResultWhole=army|,military| + V eat|,medical|ҽ +װ N clothing|,generic|ͳ +װ N InstitutePlace|,*sell|,@buy|,#clothing|,commercial| +װ N human|,#clothing|,commercial| +װʦ N human|,#occupation|ְλ,*plan|ƻ,#clothing| +װҵ N affairs|,produce|,#clothing| + ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V float|Ư + ADJ qValue|ֵ,amount|,redundant| + V swim| + V TalkNonsense|Ϲ˵ + N mark|־ + N stone|ʯ,waste| + V MakeLiving|ı + V appear| + V float|Ư + N symbol|,#quantity|,#DoSum| + N image|ͼ,$carve| + V QuantityChange|,commercial| + V change| + V float|Ư + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V exposure|¶ + V float|Ư +Ӱ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + N aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + V PlayUp|Ĵ + V boast| + N attribute|,strength|,&physical| + N part|,%inanimate|,skin|Ƥ +Ƥ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ƥ N part|,%inanimate|,skin|Ƥ +Ƽ N FlowerGrass|,#waters|ˮ +dz ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N facilities|ʩ,route|·,#waters|ˮ +ͷ N part|,%inanimate|,skin|Ƥ + N stone|ʯ,waste| + V appear| + V think|˼ +ѡ V choose|ѡ,industrial| + V swim| + V tour| + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V swollen| + N part|,%LandVehicle| + N tool|þ,*catch|׽ס,#fish| + N phenomena|,lucky|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N fact|,#organization|֯,help| + N fact|,#organization|֯,help| +Ժ N InstitutePlace|,@help|,#aged| + N money|,(Hungary|) + N attribute|,circumstances|,happy|,desired|,&human| + N attribute|,circumstances|,happy|,desired|,&human| + N information|Ϣ,#joyful|ϲ,#lucky|,desired| + N knowledge|֪ʶ,religion|ڽ + N place|ط,city|,ProperName|ר,(China|й) + ADV {neg|} + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,capital|,ProperName|ר,(Sierra Leone|) +˹ N language|,#country|,ProperName|ר + N attribute|,name|,&human| + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,only| + V foster| + V soothe|ο + V stroke| + V stroke|,purpose=ShowLove|ʾ +׷ V LookBack| + V stroke| +Ħ V stroke| +˳ N place|ط,city|,ProperName|ר,(China|й) +ο V soothe|ο +ο N human|,*soothe|ο + V recompense| + N payment|,*recompense|,#disable|м,#die| + V foster| + V cultivate| + V foster| + ADJ aValue|ֵ,importance|,secondary| + V enrich|ʵ + V help| + N money| + V teach| +Ա N human|,#occupation|ְλ,*teach| + N material|,secondary| + N sound|,#language| + ADJ aValue|ֵ,importance|,secondary| + V help| + ADJ aValue|ֵ,importance|,secondary| + V help|,scope=manage|,politics| + V CausePartMove|,PatientPartof=body| + V fall| + V LieDown| + N image|ͼ,angular|,#measure| + V CausePartMove|,PatientPartof=body| +ʰ ADJ aValue|ֵ,easiness|,easy|,desired| +ʰ ADJ qValue|ֵ,amount|,many| + V look| + V CausePartMove|,PatientPartof=head|ͷ + V surrender| + V LieDown| + V surrender| +֮ ADJ aValue|ֵ,duration|,TimeShort| + V look| + N tool|þ,cubic|,*cook| +׳н V handle|,manner=strong|ǿ + N tool|þ,*split|ƿ,*cut| +ͷ N tool|þ,*split|ƿ,*cut| + V amend| + N tool|þ,*split|ƿ,*cut| + N food|ʳƷ + N food|ʳƷ,#fruit|ˮ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N house| + N house|,#official| + N institution|,space|ռ,past| + N place|ط + N material|,?clothing| + N house|,#official| + N facilities|ʩ,space|ռ,past| +ۡ N house|,#official| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +ܶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,stiff|,undesired|ݬ + N food|ʳƷ +ʴ V FormChange|α +ʴ V bite|ҧ +ʴ V damage|,scope=behavior|ֹ,means=GiveAsGift| +ʴ N chemical|ѧ,*bite|ҧ,#metal| +ʴ ADJ aValue|ֵ,ability|,able|,bite|ҧ,#metal| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ֳ N stone|ʯ,agricultural|ũ +ֳ N physical|,agricultural|ũ + N food|ʳƷ + V LeaveFor|ǰ + V engage|,content=fact| + V obey|ѭ,content=MakeAppointment|Լ + V LeaveFor|ǰ,LocationFin=(Beijing|) + V help|,patient=country| + V endeavour| + CLAS NounUnit|,&clothing|,&tool|þ + ADJ aValue|ֵ,importance|,secondary| + V fit|ʺ + N human|,friend|,*help| + N readings| + N part|,%text| + N human|,occupation|ְλ,official|,*manage| +Ʒ N artifact|˹,generic|ͳ + N part|,%language| +³ N human|,#occupation|ְλ,*manage| + N human|,#occupation|ְλ,official|,secondary| + N human|,#occupation|ְλ,official|,politics| + N CloudMist| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N human|,#occupation|ְλ,*teach|,education| + N human|,#occupation|ְλ,official|,commercial| + N publications|鿯 +Ʒ N artifact|˹,generic|ͳ,useless| +˺ N disease| + N human|,*firing|,military| +ʳ N edible|ʳ +ʳƷ N edible|ʳ +ʳƷ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ +ʳ̵ N InstitutePlace|,*sell|,@buy|,edible|ʳ + N human|,friend|,*help| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +ҵ N affairs|,#occupation|ְλ,secondary| + N part|,%aircraft|,secondary| +ְ N attribute|,occupation|ְλ,secondary|,&human| +ܾ N human|,official|,commercial| + N result|,#medical|ҽ + V cover|ڸ + V reverse|ߵ + V cover|ڸ + N quantity|,rate|,#cover|ڸ,&space|ռ +û V perish| +û V sink|³ + V perish| +֮ԩ N phenomena|,undesired|ݬ,#unfortunate| + V perish| + N phenomena|,undesired|ݬ,#unfortunate| + V compile|༭ + N expenditure| + V give| + N text|,past| +ʫ V compile|༭,ContentProduct=text| +˰ N expenditure| + V cease|ͣ +μ N material|,?medicine|ҩ + V give| + V BeRecovered|ԭ + V TurnRound| + ADJ qValue|ֵ,amount|,double| + V reply| + V resume|ָ + V revenge| + N readings| + V resume|ָ,politics| + V check| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V revenge| + V obtain|õ,possession=power|,frequency=again| + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + V SufferFrom|,frequency=again|,#medical|ҽ + V GoBack| + ADJ aValue|ֵ,property|,#medicine|ҩ + V resume|ָ,patient=engage|,industrial| + V resume|ָ,patient=past| + V GoBack| + V reply|,content=letter|ż + V check| + V check|,police| + ADJ aValue|ֵ,kind|,include| + V resume|ָ,patient=fact|,#discuss| + V GetMarried| + V BeRecovered|ԭ,StateIni=alive| + N time|ʱ,day|,festival|,@congratulate|ף + V check|,frequency=again| + V resume|ָ,patient=associate|,#country|,politics| + V resume|ָ,patient=past| + N expression| + V resume|ָ,patient=publish| + V resume|ָ,patient=education|,education| + V cultivate|,agricultural|ũ + N wealth|Ǯ,desired|,$earn|׬ + V BeRecovered|ԭ,StateFin=look|,#eye| + N fact|,#compete| + V check|,frequency=again| + N interrogate|,police|,again| + V BeRecovered|ԭ,StateFin=alive| +ʽ ADJ aValue|ֵ,pattern|ʽ,#building| + N fact|,exam| + V speak|˵ + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| +λ V cure|ҽ +λ V resume|ָ,StateIni=royal|,politics| +ϰ V drill|ϰ + N facilities|ʩ,route|· +д V copy|д +дֽ N paper|ֽ,*copy|д + V reply|,content=letter|ż + V BeRecovered|ԭ,StateIni=alive| + V resume|ָ + V resume|ָ,StateIni=alive| +˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N human|,*resume|ָ +ѧ V resume|ָ,patient=education|,education| + N part|,%animal|,#eye| +Ҷ N part|,%plant|ֲ,hair|ë + V discuss| + N sound|,#language| +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ӡ N readings|,$print|ӡˢ +ԭ V BeRecovered|ԭ,medical|ҽ +ԭ V resume|ָ +Ա V discharge|,SourceWhole=army|,military| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ӷ ADJ aValue|ֵ,property|,AptTo|,#change| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V resume|ָ,patient=occupation|ְλ + V produce| +Ʒ N artifact|˹,$imitate|ģ,generic|ͳ + V planting|ֲ +ָ N quantity|,amount|,&planting|ֲ +׳ V BeRecovered|ԭ + N character|,surname|,human|,ProperName|ר + V pay| + V submit| + V pay| + V pay|,possession=expenditure|,purpose=MakeAppointment|Լ + N part|,%account|,commercial|,#human| + N part|,%account|,commercial|,human| + V pay| + V pay| + V pay|,possession=money|,commercial| +ƾ֤ N bill|Ʊ + N human|,*pay|,commercial| + V submit|,possession=readings|,purpose=compile|༭ + V undergo|,content=pay| +Ǯ V pay| + V pay| + V pay|,possession=money|,commercial| + V entrust|ί +Ϣ V pay| +ӡ V submit|,possession=readings|,purpose=print|ӡˢ + V submit|,possession=letter|ż,purpose=post|ʼ + V pay|,possession=money|,commercial| +֮ V fail|ʧ +֮һ V destroy|,instrument=fire| + V CauseToDo|ʹ + V fail|ʧ + N land|½,small|С + ADJ qValue|ֵ,amount|,many|,desired| + N human|,aged|,male| + N human|,family|,aged| + N human|,#clan| + N human|,aged|,male| + N human|,mass| +ĸ N human|,family|,mass| +ĸ V human|,official| +ĸ N human|,family|,mass| +Ů N human|,family|,mass| + N human|,family|,male| + N human|,family|,mass| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,viscera| + N part|,%inanimate|,body| +ܵ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N part|,%AnimalHuman|,body| + N place|ط +ɹ N part|,%AnimalHuman|,leg| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,viscera| +ˮ N liquid|Һ,#disease| +ʹ V StomachTrouble|֢ +к N StomachTrouble|֢ + N emotion|,sincere| +֢ V StomachTrouble|֢ + N location|λ,%body| + N part|,%AnimalHuman|,tail|β + V CarryOnBack| + ADJ aValue|ֵ,property| + V bear|е + V defeated| + V defeated|,military| + V depend| + V disobey|Υ + V owe|Ƿ + V own| + V suffer| + V bear|е + N duty| + V bear|е + V load|װ + N part|,%electricity| + V apologize|Ǹ + V regret|Ǹ + N part|,%physical| + ADJ aValue|ֵ,contrariness|,negative| +Ƭ N part|,%tool|þ,#TakePicture| + V angry| + V wounded| + N symbol|,#quantity| + V bear|е + ADJ aValue|ֵ,ability|,able|,$bear|е +翹 V resist| +Լ V disobey|Υ,content=MakeAppointment|Լ + N quantity|,amount|,&affairs| + ADJ aValue|ֵ,ability|,able|,$bear|е + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V manage| +ɲ N human|,*manage| + N human|,*manage| +ծ V owe|Ƿ,possession=wealth|Ǯ +ծ V owe|Ƿ,possession=wealth|Ǯ +ֵ N quantity|,amount|,&entity|ʵ + V CarryOnBack|,patient=heavy| + V bear|е,content=duty| +Զ V bear|е,content=duty| + V bear|е,content=$blame|Թ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V CauseToDo|ʹ,patient=country|,ResultEvent=become|Ϊ,#rich| + V contain| + N human|,rich|,desired| + N human|,rich|,desired| + N InstitutePlace|,mine| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +û ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V CauseToDo|ʹ,patient=human|,ResultEvent=become|Ϊ,#rich| +ũ N human|,rich|,agricultural|ũ +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,rich|,desired|,commercial| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +гЧ ADJ aValue|ֵ,effect|Ч,superior|,desired| +е ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V contain| + ADJ aValue|ֵ,necessity|Ҫ,redundant| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Դ N location|λ,@ExistAppear|,#material| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ qValue|ֵ,amount|,many|,desired| + N text|,*announce|,#die| + N human|,*compile|༭,literature| + V BeNear| + V depend| + V include| + N part|,%readings| + ADJ aValue|ֵ,importance|,secondary| + V include| + V obey|ѭ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + V include| +˰ N expenditure| + N part|,%artifact|˹ + N part|,%artifact|˹,%text| + ADJ aValue|ֵ,distance|,near| +¼ N part|,%readings| + V undergo|,content=include| + V contain| + V BeMember| + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N part|,%artifact|˹ +Сѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ѧ N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ͼ N image|ͼ +С N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ӹ N part|,%artifact|˹ +ӹ N place|ط,#country|,#BeMember| + V contain| + V situated| + N part|,%readings| + N InstitutePlace|,*BeMember|,@teach|,@study|ѧ,elementary|,education| +ע N part|,%text| + V situated| + N attribute|,strength|,#fasten|˩,&physical| + N physical|,$fasten|˩ + N medicine|ҩ + N human|,family|,female|Ů + N human|,female|Ů + N human|,female|Ů,*GetMarried| + N knowledge|֪ʶ,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,#GiveBirth|,medical|ҽ + N part|,%InstitutePlace|,#female|Ů,medical|ҽ + N community|,#female|Ů +Ů N human|,female|Ů +Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף + N human|,female|Ů,*GetMarried| +֪ ADJ aValue|ֵ,reputation|,glorious| + N human|,mass|,#female|Ů,#young| +ױ N affairs|,#maintain|,#female|Ů,#young|,medical|ҽ + V wrap| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,mischievous| +° V StateChange|̬ +° V situated| +¸ ECHO sound| + ADJ aValue|ֵ,kind|,special| + V fit|ʺ + V owe|Ƿ + V worth|ֵ + AUX {modality|} +õ AUX {modality|} + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V alter|ı + V amend| +İ V amend| +ı V compile|༭,manner=also|Ҳ +ı V forming|γ +ı V forming|γ,manner=also|Ҳ +ı V alter|ı +ı V change| +ij V alter|ı,patient=country|,politics| +ij V RegardAs| +ij V alter|ı +ĵ V alter|ı,patient=route|· +ĵ V GiveUp| +Ķ V alter|ı +Ķ V amend|,content=wrong| +ĸ V improve| +ĸ N human|,*improve| +Ĺ V alter|ı +Ĺ V amend|,content=wrong| +Ļ V alter|ı +Ļ V amend|,content=wrong| +ļ V MarryTo|,manner=also|Ҳ +Ľ V build| +Ľ V build|,manner=also|Ҳ +Ľ V improve| +Ľ ADJ aValue|ֵ,property|,$improve| +Ŀ V alter|ı,patient=content| + V improve| + ADJ aValue|ֵ,behavior|ֹ,#improve| + N thinking|˼,#improve| + N human|,*engage|,#improve| + V alter|ı,patient=name| + V alter|ı,patient=judge|ö,police| + V alter|ı,patient=time|ʱ + V undertake| + N time|ʱ,future| + V improve| +컻 V alter|ı,patient=environment| +ͷ V alter|ı,patient=attribute| +Ϊ V alter|ı +Ҹ V alter|ı,patient=method| + V alter|ı,patient=method| +а V amend|,content=wrong| +д V write|д +д V write|д,manner=also|Ҳ + V alter|ı,patient=kind| + V alter|ı,patient=occupation|ְλ +ѡ V choose|ѡ,manner=also|Ҳ + V use| +Ԫ V alter|ı,patient=name|,royal| + V alter|ı + V improve| + V produce| + V amend| + V improve| + V alter|ı,patient=system|ƶ + V planting|ֲ +װ V alter|ı,patient=clothing| +װ V install|װ,manner=also|Ҳ +װ V provide|,manner=also|Ҳ +װ V wrap|,manner=also|Ҳ +׶ N tool|þ,*tighten|ս,*loosen| + V establish| + V forming|γ,manner=also|Ҳ + ADJ aValue|ֵ,content|,simple| + ADV aValue|ֵ,content|,simple| +ſ N attribute|,circumstances|,&entity|ʵ + ADJ aValue|ֵ,content|,simple| + ADJ aValue|ֵ,content|,simple|,desired| + V explain|˵ + N attribute|,content|,simple|,&information|Ϣ + N quantity|,rate|,#possibility|,&event|¼ + N part|,%text| +ò N attribute|,circumstances|,simple|,&entity|ʵ + ADJ aValue|ֵ,attachment| + N information|Ϣ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N text|,simple| + V calculate| +Ҫ N text|,simple| + N chemical|ѧ +ƻ V ize|̬ + V build| + N character|,surname|,human|,ProperName|ר + V cover|ڸ + N part|,%animal|,skin|Ƥ + N part|,%artifact|˹,*shut|ر + V print|ӡˢ + V surpass|ǿ + N tool|þ,*cover|ڸ +Dz N part|,%vegetable|߲,embryo|,$eat| +Dz N vegetable|߲ +Ƿ N food|ʳƷ +ǹ۶ V estimate| +ǹ V surpass|ǿ +ǽ N food|ʳƷ +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ñ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V build|,Vachieve| + V cover|ڸ,Vachieve| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +̫ N human|,police|,undesired|ݬ,past|,(Germany|¹) +˫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V print|ӡˢ,content=mark|־ +ס V cover|ڸ,Vachieve| + N part|,%animal| + N part|,%artifact|˹ + N part|,%artifact|˹,generic|ͳ + V IllTreat| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V do| + V fight| + V kill|ɱ + N part|,%physical|,body| + N part|,%plant|ֲ,body| + V relate|й +ɰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɰͰ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɰͰ ADJ aValue|ֵ,dampness|ʪ,dried| +ɱ V congratulate|ף,means=drink| +ɱ N food|ʳƷ,#fish| +ɱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ɱ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ɱ N ice| +ɲ N human|,#occupation|ְλ +ɲѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +ɲ N food|ʳƷ +ɲ N FlowerGrass|,?material|,*feed|ι,#livestock| +ɴ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ɵ N facilities|ʩ,route|·,important| +ɵ V BeUnable| +ɵ N part|,%artifact|˹ +ɵ V kill|ɱ +ɷ N food|ʳƷ +ɸɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɸ N fact|,fight| +ɹ N fruit|ˮ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɺ ADJ aValue|ֵ,dampness|ʪ,dried| +ɺ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɻ N FlowerGrass| +ɻ V engage| +ɻ N food|ʳƷ,dried| +ɽ N human|,able|,desired| +ɾ N attribute|,strength|,&human| +ɾ N emotion|,excited| +ɾ N human|,#occupation|ְλ,police| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +ɾ ADJ aValue|ֵ,content|,neat|,desired| +ɿ N pant| +ɿ V HungryThirsty| +ɿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɿ ADJ aValue|ֵ,dampness|ʪ,waterless| +ɿ V decline|˥ + N food|ʳƷ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,ability|,able|,desired| + N food|ʳƷ + V split|ƿ + N waters|ˮ,linear| + ADV fact|,question| + ADV {cause|ԭ,question|} + N attribute|,clan|,&human| + N facilities|ʩ,#liquid|Һ,linear|,important| +Ⱥ N human|,mass| +Ⱥϵ N attribute|,relatedness|,&human| + V MakeTrouble| + V obstruct|ֹ + V obstruct|ֹ,industrial| + N chemical|ѧ + V include| + V obstruct|ֹ + N human|,*obstruct|ֹ +ʪ N attribute|,dampness|ʪ,&physical| + V engage|,content=affairs| + N human|,#occupation|ְλ + ADJ aValue|ֵ,fatness|,bony| +ϴ V wash|ϴ +ʹ N fruit|ˮ + N facilities|ʩ,route|·,important| +У N InstitutePlace|,@teach|,@study|ѧ,education|,#official| +Ц V laugh|Ц + N place|ط,#official|,@reside|ס +Ԥ V include| +Ԥ V obstruct|ֹ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N character|,surname|,human|,ProperName|ר +ʰ· V surrender| +ʱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gambia|ʱ) +ʱ N place|ط,country|,ProperName|ר +ʲ N medicine|ҩ +ʵ V undertake| +ʿ N attribute|,circumstances|,&human|,&organization|֯ +ʿ N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N RainSnow|ѩ,desired| +¶ N RainSnow|ѩ,desired| +¶ N medicine|ҩ + ADJ aValue|ֵ,taste|ζ,good|,desired| +֭ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ȫ N water|ˮ,sweet|,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,taste|ζ,sweet|,desired| +п N place|ط,capital|,ProperName|ר,(Sikkim|) + V willing|Ը + N chemical|ѧ + V willing|Ը +Ը V willing|Ը + N crop|ׯ,?material|,sweet| +֮ ADJ aValue|ֵ,taste|ζ,good|,desired| + N part|,%artifact|˹,arm| + N tool|þ +˳ N tool|þ,*measure| +˾ N bacteria|΢ + N tool|þ + N fruit|ˮ +̽ N fruit|ˮ + N fruit|ˮ + N fruit|ˮ + N tool|þ + N part|,%AnimalHuman|,viscera| +ΰ N disease| +ε ADJ attribute|,behavior|ֹ,sincere|,&human| +ε N attribute|,courage|,&AnimalHuman|,&organization|֯ +ε V WellTreat|ƴ +Ϳ V endeavour| + N emotion|,angry|,undesired|ݬ + N medicine|ҩ + N InsectWorm|,undesired|ݬ,#disease| + N disease| +Ӳ N disease| +Ӳ N disease| + N part|,%AnimalHuman|,viscera| + N InsectWorm|,undesired|ݬ,#disease| + V LeaveFor|ǰ + V VieFor| + V chase|׷ + V drive|Ԧ + V expel| + V undergo| +ϳ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +ϳ V LeaveFor|ǰ,purpose=perform| +ϳ V surpass|ǿ +ϵ V LeaveFor|ǰ +ϸ V LeaveFor|ǰ +ϼ V LeaveFor|ǰ,LocationFin=InstitutePlace|,commercial| +Ͻ V VieFor| +Ͼɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ͼɱ V destroy| +Ͽ ADV aValue|ֵ,duration|,TimeShort| +ͷ V obey|ѭ,content=SocialMode| +· V SelfMove|,manner=fast| +æ ADJ aValue|ֵ,earliness|,early| + V chase|׷,Vachieve| + V undergo| +ʱ V obey|ѭ,content=SocialMode| + V LeaveFor|ǰ +粻 ADV aValue|ֵ,earliness|,early| + V cherish|Ļ + N emotion| + V excite|ж + N experience| + V grateful|м + V influence|Ӱ + V perception|֪ +д N emotion| +е V cherish|Ļ +е V regard|Ϊ +ж V excited| +ж V excite|ж +ж V grateful|м +з V excited| +й N part|,%AnimalHuman|,*sense|о +й V ize|̬,#lights| +л V teach| +м V grateful|м +о V perception|֪ +о V regard|Ϊ +о V cherish|Ļ +о V perception|֪ +оõ ADJ aValue|ֵ,ability|,able|,$perception|֪ +о N part|,%AnimalHuman|,*sense|о +п V sigh|̾ +п V excited| +ð N disease| +ð V fever| + ADJ aValue|ֵ,attachment|,#emotion| + N emotion| + ADJ aValue|ֵ,attachment|,#emotion| +Ⱦ V CauseAffect|Ⱦ +Ⱦ V CauseAffect|Ⱦ,medical|ҽ +Ⱦ V inflamed| + ADJ aValue|ֵ,ability|,able|,excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж,desired| +˷θ V excite|ж + ADJ sorrowful| + V sorrowful| + N experience| + N thought|ͷ + V undergo| +ܵ V perception|֪ + V understand| + N experience| +л V grateful|м +л V thank|л +Ȥ V FondOf|ϲ + ADJ aValue|ֵ,attachment|,mental| +ʶ N knowledge|֪ʶ,#mental| +Ӧ V aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ ADJ aValue|ֵ,ability|,able|,respond|Ӧ +Ӧ V respond|Ӧ + V urge|ʹ +֪ V perception|֪ + N part|,%plant|ֲ,body| + ADJ aValue|ֵ,courage|,brave|,desired| + V believe| + AUX dare| + V dare| +ŭ ADJ suffer|,content=force|ǿ,#KeepSilence|˵ + ADV {comment|} + V dare| + AUX dare| + V dare| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,space|ռ,%land|½,head|ͷ +Ա N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV {tense|ʱ̬,past|} +ղ ADV {tense|ʱ̬,past|} +ո ADJ {emphasis|ǿ} +չ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Congo|չ) +չ N place|ط,country|,ProperName|ר,(Africa|) +չ N human|,(Congo|չ) +պ ADV aValue|ֵ,time|ʱ,proper| +պ ADJ {emphasis|ǿ} +ս ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ս ADJ aValue|ֵ,posture|,strong|ǿ,desired| +վ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +վ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADV aValue|ֵ,time|ʱ,proper| + N inanimate|,generic|ͳ + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ѧĺ N human|,*study|ѧ,#walk|,young| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N metal| + V sharpen|ʹ +ְ N material|,metal|,surfacial| +ְ N part|,%LandVehicle| +ְ N stationery|ľ +ֱ N PenInk|ī,*write|д +ֲ N material|,metal| +ֶ N material|,#metal| +ֹˮ N material|,@building| +ֹ N material|,linear| +ֹ N material|,metal|,linear|,#LandVehicle| +ֻ N material|,?tool|þ +ֽṹ N part|,%entity|ʵ,bone|,#metal| +ֽ N material|,metal|,linear| + N material|,#metal| +ǥ N implement|,#metal| + N MusicTool| +ټ N human|,*perform|,entertainment| + N human|,*perform|,entertainment| +ˮ N metal|,material| +˿ N tool|þ,linear|,#metal| +˿ N tool|þ,linear|,#metal| + N tool|þ,linear|,#metal| + N metal|,material| +ӡ N stationery|ľ,*print|ӡˢ + N part|,%implement| + N tool|þ,cubic|,@put| +׹ N material|,linear| + N tool|þ,cubic|,#liquid|Һ,@wash|ϴ +ש N material|,*build| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,viscera| + N part|,%entity|ʵ,heart| + N part|,%information|Ϣ,bone| + N part|,%tool|þ,#catch|׽ס,#fish| + N reason| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%information|Ϣ,bone| + N land|½ + N shape| +¥ N facilities|ʩ,space|ռ,military|,@look| + N facilities|ʩ,space|ռ,military|,@defend| + N human|,military|,*defend| +ͤ N facilities|ʩ,space|ռ,military|,@defend| +ͤ N facilities|ʩ,space|ռ,police|,@defend| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ +λ N location|λ,space|ռ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N place|ط,city|,ProperName|ר,(China|й) +۰ N place|ط,city|,ProperName|ר,(China|й) +۰̨ N place|ط,city|,ProperName|ר,(China|й) +۱ N money|,(HK|) +ۿ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,(HK|) + N human|,commercial|,(HK|) +̨ N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N human|,#occupation|ְλ,official| + N institution|,#ship| +Ԫ N money|,(HK|) + N fund|ʽ,(HK|) + N waters|ˮ,linear| + V remove| + N symbol|,linear| + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| +ܰ N tool|þ,*CarryOnBack|,long| +ܸ N tool|þ,widediameter|,straight|ֱ,long| + N SportTool|˶ + N tool|þ,*CarryOnBack|,long| + N tool|þ,widediameter|,straight|ֱ,long| + N character|,surname|,human|,ProperName|ר + N land|½,#waters|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N character|,surname|,human|,ProperName|ר + V surpass|ǿ +߰ V CausePartMove| +߰ ADJ aValue|ֵ,SoundVolume|,loud| +߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +߰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +߱ ADJ aValue|ֵ,SoundQuality|,accurate|׼ +߱ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +߲ N human|,*study|ѧ,able| +߲ ADJ aValue|ֵ,rank|ȼ,superior| +߲ ADJ aValue|ֵ,ability|,able|,$create|,many| +߲ N land|½,able|,@create|,many|,#crop|ׯ,desired| +߳ V sing| +߳ V speak|˵ +߳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +߳ N part|,%event|¼ +߳ N water|ˮ +߳ɱ ADJ aValue|ֵ,property|,expensive| +ߴ N location|λ,tall| +ߴ ADJ aValue|ֵ,content|,pure| +ߴ V AmountTo|ܼ +ߴ ADJ aValue|ֵ,height|߶,tall| +ߴ ADJ aValue|ֵ,size|ߴ,big| +ߵ ADJ aValue|ֵ,property| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵ ADJ aValue|ֵ,rank|ȼ,superior| +ߵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ߵȼ ADJ aValue|ֵ,rank|ȼ,superior| +ߵѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +ߵ N attribute|,behavior|ֹ,proper|,&event|¼ +ߵ N attribute|,height|߶,&physical| +ߵ N attribute|,rank|ȼ,&event|¼ +ߵ ADV {emphasis|ǿ} +ߵͲƽ ADJ aValue|ֵ,form|״,rugged| +ߵ͸ N SportTool|˶,sport| +ߵ N land|½ +ߵ ADJ aValue|ֵ,SoundVolume|,loud| +ߵ ADJ text|,empty| +߶ ADJ aValue|ֵ,degree|̶,very| +߶ N attribute|,height|߶,&physical| +߶ ADJ qValue|ֵ,amount|,many| +߶ N fact|,sport| +߶ N SportTool|˶ +߷ N institution|,police|,@judge|ö +߷ֱ N attribute|,performance|,strong|ǿ,&distinguish|ֱ +߷ N attribute|,circumstances|,flourishing|,extreme|,&event|¼ +߷ N part|,space|ռ,%land|½,head|ͷ +߷ N fact|,discuss|,HighRank|ߵ +߷ N aValue|ֵ,behavior|ֹ,true|,desired| +߸ N human|,official| +߸ ADJ aValue|ֵ,height|߶,tall| +߸ V joyful|ϲ +߸ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +߸ V sing| +߸ͽ V GoForward|ǰ +߸ N human|,tall| +߸ N tree|,?medicine|ҩ +߸Ь N clothing|,#foot| +߹ N human|,#occupation|ְλ,industrial| +߹ V estimate|,manner=over| +߹ N human|,official| +߹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ߺ ADJ aValue|ֵ,temperature|¶,cold| +ߺ V cry| +ߺ V cry| +߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߼ɲ N human|,official| +߼ʦ N human|,#occupation|ְλ,industrial| +߼ ADJ aValue|ֵ,rank|ȼ,superior| +߼ N human|,#occupation|ְλ,official|,military| +߼Ժ N institution|,police|,@judge|ö +߼Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +߼ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +߼ N knowledge|֪ʶ,superior| +߼ N place|ط,ProperName|ר,(Russia|˹) +߼ ADJ aValue|ֵ,price|۸,expensive| +߼ V buy|,cost=expensive| +߼ N facilities|ʩ,route|· +߼ N thought|ͷ +߽ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +߾ ADJ aValue|ֵ,quality|,refined|,desired| +߾ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +߾ V engage|,content=occupation|ְλ +߾ V lift| +߿ ADJ aValue|ֵ,SoundVolume|,loud| +߿ V exam| +߿Ƽ N knowledge|֪ʶ,superior| +߿Ƽҵ N human|,#occupation|ְλ,#knowledge|֪ʶ,superior|,commercial| +߿ ADJ aValue|ֵ,location|λ,tall|,#sky| +߿ N sky| + N fact|,sport| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Korea|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,commercial|,$lend| + N human|,*lend|,undesired|ݬ + N crop|ׯ + N attribute|,age|,aged|,&human| + N stone|ʯ,material| +¥ N house|,tall| +¥ N house| +¯ N tool|þ,space|ռ,@burn|,*produce|,#metal| + ADJ aValue|ֵ,age|,aged| + N chemical|ѧ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,strength|,strong|ǿ,&physical| + N knowledge|֪ʶ,#strength| +꼶 N human|,*study|ѧ,education| +Ƶ N attribute|,frequency|Ƶ,fast|,&electricity| +ǿ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| + N human|,superior|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ɮ N human|,able|,desired|,religion|ڽ +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ +ɽ N land|½ +ɽӦ N disease| +ɽ N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N disease|,#fever| +ǹ N weapon|,*firing|,#aircraft| + N weapon|,*firing|,#aircraft| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,loud| + V upgrade| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V walk| + V walk|,manner=arrogant| + N human|,able|,desired| + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ,manner=tall| + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٶ ADJ aValue|ֵ,speed|ٶ,fast|,desired| +ٶ N attribute|,speed|ٶ,fast|,&AlterLocation|ռλ +ٹ· N facilities|ʩ,route|·,@AlterLocation|ռλ,fast| +̧ V WellTreat|ƴ +̸ V speak|˵ +̸ V speak|˵,content=empty| + N food|ʳƷ,liquid|Һ,refined| + N food|ʳƷ,liquid|Һ,watery|ϡ +Σ ADJ aValue|ֵ,property|,AptTo|,$CauseAffect|Ⱦ,#medical|ҽ +ΣȺ N human|,*AptTo|,#CauseAffect|Ⱦ,#medical|ҽ +λ N attribute|,occupation|ְλ,HighRank|ߵ,&human| + N attribute|,temperature|¶,hot|,&physical| +¼ N tool|þ,*measure|,#temperature|¶ + N weather|,#temperature|¶,#hot| +ݽ ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,rank|ȼ,&event|¼ +С N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +У N InstitutePlace|,@teach|,@study|ѧ,education|,superior| +Ч N attribute|,effect|Ч,superior|,&performance| +н N payment|,many| +¼ N knowledge|֪ʶ,superior| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V willing|Ը + N place|ط,city|,ProperName|ר,(China|й) +Ѫѹ N disease| +ѹ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ѹ ADJ aValue|ֵ,performance| +ѹ N attribute|,voltage|ѹ,&electricity| +ѹ N electricity| +ѹ N tool|þ,cubic|,*cook| +ѹ N tool|þ,linear|,@transmit|,#electricity| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ż ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N attribute|,SoundVolume|,loud|,&sound| + ADJ aValue|ֵ,height|߶,tall|,more| +ԭ N land|½ +հԶ ADJ aValue|ֵ,ability|,able|,desired| + V BecomeMore| + V rise| + N thought|ͷ,clever| + V AtEase| + ADJ aValue|ֵ,circumstances|,safe|,desired| + N InstitutePlace|,@teach|,@study|ѧ,education| + N human|,*study|ѧ,education| + N human|,*study|ѧ + N human|,*study|ѧ,able| + N human|,past| + N tool|þ,*WhileAway| + ADJ aValue|ֵ,fatness|,fat| + N part|,%AnimalHuman|,flesh| + N shape| + N tool|þ,*apply|ͿĨ,#medical|ҽ + N food|ʳƷ,refined| +ҩ N medicine|ҩ,$apply|ͿĨ + ADJ aValue|ֵ,quality|,fertile|,desired| + N livestock|,young| + N livestock|,young| + N livestock| + N livestock|,young| + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ,*feed|ι,#young| + V CauseToDo|ʹ + V do| + V engage| + V establish| + V fulfil|ʵ + V produce| + V seek|ıȡ + V fulfil|ʵ + V misunderstand| +㶨 V handle|,result=finish| + V deceive|ƭ + V do|,result=finish| +ҳʽͳε N human|,*manage| + V damage| + V damage| + V TryToKnow|Ū + V TryToKnow|Ū + V TryToKnow|Ū +С V MakeTrouble| + V damage| + V damage| + N tool|þ,*beat| +ͷ N tool|þ,*beat| + N part|,%plant|ֲ,body| + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + N payment|,#readings| + N payment|,#readings| + N tool|þ,@LieDown| + N readings|,#text|,#image|ͼ,#music| +ֽ N paper|ֽ,@write|д + N readings|,#text|,#image|ͼ,#music| + N readings|,#text|,#image|ͼ,#music|,crude|ª,#amend| + V accuse|ظ + V announce| + V beg| + V request|Ҫ + V tell| + V farewell| +˵ N human|,*speak|˵ +洵 V fail|ʧ + V farewell| + V request|Ҫ,ResultEvent=borrow|,commercial| +淢 V accuse|ظ,police| +漱 V request|Ҫ,ResultEvent=rescue| +漱 V tell|,content=dangerous|Σ +漱 V unfortunate| + V request|Ҫ,ResultEvent=agree|ͬ + V win|ʤ + V persuade|Ȱ˵ +澯 V tell|,content=dangerous|Σ +濢 V succeed|ɹ + V cease|ͣ,cause=aged| + V accuse|ظ + V surrender| +ʾ V tell| +ʾ N text|,@tell| + V tell| + V withdraw|˳ +ο V AtEase| +ο V soothe|ο +һ V finish| +֪ V mean|ָ +֪ V tell| + V finish| +״ V accuse|ظ,police| + V disappear|ʧ + N human|,family|,male| +籾 N place|ط,capital|,ProperName|ר,(Denmark|) +± N place|ط,city|,ProperName|ר,(Sweden|) + N human|,family|,mass|,male| + N human|,male|,young| + N human|,friend|,mass|,male| + N human|,family|,male| +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Colombia|ױ) +ױ N place|ط,country|,ProperName|ר +ױ N human|,(Colombia|ױ) +ײ N human|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Costa Rican|˹) +˹ N place|ط,country|,ProperName|ר + N music|,$sing| + V sing| +質 V sing| +質 N human|,*sing|,#music|,entertainment| + N text|,#music| +蹦̵ V praise|佱,cause=succeed|ɹ + N attribute|,SoundQuality|,#sing|,&human| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| +Ժ N InstitutePlace|,@perform|,entertainment| + N human|,*FondOf|ϲ,#music| + N music| + N sound|,#music|,$sing| + N human|,entertainment|,*sing|,#music| + V praise|佱 +̳ N community|,#music|,#sing| + N InstitutePlace|,@recreation|,@sing| + V recreation| + N shows|,#music|,entertainment| + N community|,#music|,#sing|,entertainment| + N human|,*sing|,able|,entertainment| +ҥ N shows| +ӽ V recreation| + V cease|ͣ + V endure| + V put| +dz V bump|ײ,patient=land|½ +dz V suffer|,content=obstruct|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + N land|½,surfacial| + N place|ط,ProperName|ר +̲ N place|ط,ProperName|ר,(China|й) + N bird| + N bird| + N part|,%AnimalHuman|,arm| +첲 N part|,%AnimalHuman|,arm| + N disease|,#skin|Ƥ + N experience|,#uneasy|,undesired|ݬ + N shape| + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ + V abandon| + V break|۶,patient=FlowerGrass| + V remove| + V remove|,medical|ҽ + V give|,possession=land|½,politics| + V break|۶ + V manage|,patient=land|½,instrument=army| + V separate| + V give| + V abandon| + N image|ͼ,linear| + V discharge| + N material|,?clothing|,?tool|þ + V discharge| + V remove| + N clothing|,#foot| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V uprise|,politics| + N human|,*uprise|,politics| + ADJ aValue|ֵ,newness|¾,new|,desired| + V improve| + N human|,*improve| +ְ V discharge| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N material|,?clothing|,?tool|þ + N shape|,square| + N money|,(Guatemala|Σ) + N attribute|,behavior|ֹ,&human| + N attribute|,style|,&information|Ϣ,literature|,entertainment| + V fight| + V FitNot| + N attribute|,pattern|ʽ,&entity|ʵ +ɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Grenada|ɴ) +ɴ N place|ط,country|,ProperName|ר +ɴ N human|,(Grenada|ɴ) +ʿʱ N time|ʱ,#standard|׼ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greenland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Georgia|³) +³ N place|ط,country|,ProperName|ר +³ N human|,(Georgia|³) +³ N language|,#country|,ProperName|ר +ɱ V kill|ɱ,AccordingTo=law|ɷ +ʽ N attribute|,pattern|ʽ,&entity|ʵ +ʽ V PutInOrder| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,very| + N expression| + N shape|,square| + N material|,?clothing| + N fish| + N beast| + N fish| + N fish| + N facilities|ʩ,space|ռ + N institution|,official|,#country| + N human|,#occupation|ְλ,official|,#country|,politics| +¥ N room| + N human|,official| +Ա N human|,#occupation|ְλ,official|,#country|,politics| + V from| + V separate| + N part|,%building|,skin|Ƥ + N location|λ,#reside|ס,near| + V BlockUp| + N part|,%building|,skin|Ƥ + V separate| + N attribute|,relatedness|,unfamiliar|϶ + N phenomena|,#obstruct|ֹ + V separate| + V separate| + V separate| +Ĥ N attribute|,relatedness|,unfamiliar|϶ +Ĥ V ignorant|֪ +ǽ N part|,%building|,skin|Ƥ +ǽж V exposure|¶ + N separate|,partner=hot| + ADV time|ʱ,future|,day| + ADV time|ʱ,other|,day| + N part|,%building|,skin|Ƥ +ѥɦ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ҹ ADV time|ʱ,past| + ADJ aValue|ֵ,ability|,able|,$escape|,#sound| + ADJ aValue|ֵ,ability|,able|,BlockUp|,#sound| + N chemical|ѧ + CLAS NounUnit|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,fragment| + N attribute|,height|߶,&human| + N attribute|,size|ߴ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,attachment|,private|˽ + N human| + PRON human|,firstPerson| + N attribute|,cleanness|ྻ,spotless|,&human| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N thinking|˼,#greedy|̰,undesired|ݬ + N human|,greedy|̰,undesired|ݬ + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,attachment|,private|˽ +廧 N institution|,private|˽ + N system|ƶ,#rights|Ȩ,#own|,private|˽ +ͷ N attribute|,height|߶,&human| +ͷ N attribute|,size|ߴ,&physical| + N attribute|,property|,special|,&entity|ʵ +ر N human|,special| + N attribute|,height|߶,&human| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| +ǰ V BeIndependent| + ADJ aValue|ֵ,kind|,queer| +ּ V BeIndependent| + N part|,army|,#place|ط,military|,mass| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N place|ط,all|ȫ + N part|,%entity|ʵ,aspect|,all|ȫ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,rank|ȼ,all|ȫ + N community|,all|ȫ + V endeavour| +͸λ V arrive|,location=location|λ +ȡ V obtain|õ +ɫ ADJ aValue|ֵ,kind|,many| +ɫ ADJ aValue|ֵ,kind|,many|,desired| +ʽ ADV aValue|ֵ,kind|,many| +ʽ ADJ aValue|ֵ,kind|,many| +㼺 V announce|,content=standpoint| +˾ְ V bear|е +λ N human|,all|ȫ +λ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V show|,content=ability| + ADJ qValue|ֵ,amount|,all|ȫ +иҵ ADJ affairs|,many| + V BeIndependent| + V differ|ͬ +ǧ V own|,possession=pros| + V own|,possession=pros| +ִһ V debate| + ADJ aValue|ֵ,kind|,many| +ָ ADJ aValue|ֵ,kind|,many| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,all|ȫ + ADJ qValue|ֵ,amount|,single| +Ϊ V BeIndependent| + N community|,all|ȫ + V CauseToDo|ʹ + V give| + V provide| + PREP {agent} + PREP {beneficiary} + PREP {instrument} + PREP {target} + V display|չʾ + N edible|ʳ,generic|ͳ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V give| + V give| + CLAS NounUnit|,&inanimate| + N cause|ԭ + N part|,%event|¼,base| + N part|,%inanimate|,base| + N part|,%plant|ֲ,base| + N part|,%thing|,base| + ADJ aValue|ֵ,importance|,important| + N law|ɷ,important| + N part|,%inanimate|,base| + V remove| + N tool|þ,$carve| + N part|,%thing|,base| + N part|,%plant|ֲ,body| + V investigate| + N information|Ϣ + PREP {AccordingTo} +ݵ N place|ط,important| + N human|,future| + N part|,%plant|ֲ,body| + N part|,%thing|,base| +ٹ ADJ aValue|ֵ,circumstances|,steady| +Ҷï ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N cause|ԭ +Դ N location|λ,@ExistAppear| +Դ V BaseOn| +Դ V ResultFrom|Ե + V cure|ҽ + N part|,%plant|ֲ,base| + N part|,%thing|,base| + V follow| + N part|,%AnimalHuman|,leg| + ... ȥ V MakeTrouble| + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V follow| +ǰ ADJ aValue|ֵ,distance|,near| + V chase|׷ + V follow| +ͷ N fact|,FallDown| +ͷ N InsectWorm|,undesired|ݬ + V follow| + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N land|½,#crop|ׯ + N tool|þ,*planting|ֲ,#crop|ׯ,generic|ͳ +ţ N livestock|,*planting|ֲ + V engage|,agricultural|ũ + N livestock|,*planting|ֲ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V engage|,agricultural|ũ +ƶ N system|ƶ,#engage|,agricultural|ũ + ADV aValue|ֵ,degree|̶,more| + V alter|ı + V replace| + N time|ʱ,hour|ʱ + V replace| + V alter|ı + N human|,#occupation|ְλ,*defend| + V alter|ı + N human|,*alter|ı + V replace| + ADV aValue|ֵ,degree|̶,more| +һ V GoForward|ǰ +һ ADV aValue|ֵ,degree|̶,more| + N disease| +һ¥ V prosper| + ADJ qValue|ֵ,amount|,few| + V BeRecovered|ԭ + V BeRecovered|ԭ,StateIni=alive| + V replace| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V improve| + V replace| +» V prosper|,StateFin=superior| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V amend| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,liquid|Һ + V beat| + N tool|þ,*beat| + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N land|½,protruding|͹ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ڻ V FeelingByBad| +ֱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V BlockUp| + V CausePartMove| + N part|,%inanimate|,body| + N part|,%plant|ֲ,body| + N part|,%information|Ϣ,heart| + V BlockUp| + N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V BlockUp| + V obstruct|ֹ + ADJ aValue|ֵ,ability|,able|,desired| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N method|,#industrial| + CLAS unit|λ + N expenditure|,commercial| + V draw|,literature| + N human|,#occupation|ְλ,military| + N army| + N house|,industrial|,@produce|,factory|,#InstitutePlace| + N human|,#occupation|ְλ,official|,*manage|,factory| + N InstitutePlace|,@produce|,industrial| + N affairs| + N affairs|,industrial| +̱ N human|,military| +ʦ N human|,#occupation|ְλ,industrial| +ϵ N part|,%InstitutePlace|,education| +ѧ N knowledge|֪ʶ,#industrial| + N community|,ProperName|ר + N place|ط,@build| + N part|,%InstitutePlace|,industrial| +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + CLAS NounUnit|,quantity|,#industrial| + N InsectWorm| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N time|ʱ + N community|,#employee|Ա + N part|,%artifact|˹,#produce|,industrial| + N human|,#occupation|ְλ,industrial| + N affairs|,#industrial|,#transport| + N implement|,generic|ͳ + N tool|þ,cubic|,@put|,#implement| + N knowledge|֪ʶ,#industrial| + N affairs|,#mine|,#industrial| +ҵ N InstitutePlace|,#mine|,#industrial| + N place|ط,#mine|,#industrial| + N attribute|,ability|,&human| + N physical|,#human|,#material|,industrial| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա +ó N affairs|,#industrial|,#commercial| +ũ N human|,#industrial|,#agricultural|ũ +ũ N human|,mass| +ũҵ N affairs|,#industrial|,#agricultural|ũ + N house|,#build|,#industrial| + N attribute|,boundary|,&time|ʱ,#industrial| +Ǯ N payment| + ADJ aValue|ֵ,quality|,refined|,desired| + N place|ط,#city|,#industrial| + N human|,#occupation|ְλ,industrial| +˽׼ N community|,industrial| +˶ N affairs|,#employee|Ա,industrial| + N disease|,#wounded|,#industrial| +¹ N phenomena|,unfortunate|,#industrial|,undesired|ݬ + N community|,industrial|,commercial| +̽ N community|,industrial|,commercial| + N community|,industrial|,commercial|,ProperName|ר,(China|й) +ҵ N affairs|,industrial|,commercial| +ʱ CLAS NounUnit|,quantity|,#industrial| + N facilities|ʩ,#defend|,military| +ͷ N human|,#occupation|ְλ,official|,industrial| +Ч N attribute|,effect|Ч,&act|ж,industrial| +н N payment| + N plans|滮,industrial| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N affairs|,industrial| +ҵ V ize|̬,PatientAttribute=industrial|,industrial| +ҵƷ N artifact|˹,#industrial| + N InsectWorm| + N method| + N process| + N knowledge|֪ʶ,entertainment| +Ʒ N artifact|˹,literature| + N human|,industrial| + N affairs|,#employee|Ա,industrial| + ADJ aValue|ֵ,posture|,neat|,desired| + N attribute|,kind|,industrial|,&affairs| +װ N clothing|,#industrial| +װ N clothing|,#leg|,#industrial| + N payment| + N affairs|,$undertake| + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + V do| + N fact|,do| +λ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N house|,industrial|,@produce| + N human|,active|Ը,endeavour| + N quantity|,amount|,&affairs| + N location|λ,space|ռ,#facilities|ʩ,mine| + N part|,%artifact|˹,skin|Ƥ,#produce| + N time|ʱ,day|,@do|,@engage|,#affairs| + N room|,#affairs|,@do|,@engage| +̨ N furniture|Ҿ,@do|,industrial| +վ N computer| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| +Ե V occupy|ռ,possession=land|½,military| + V attack|,military| + V study|ѧ,education| + V attack|,patient=place|ط,military| + V handle|,patient=problem|,important| + V accuse|ظ + V attack|,military| + V slander|̰ + V attack|,patient=facilities|ʩ,military| +ս N fact|,fight|,military| + V occupy|ռ,military| + V attack| +䲻 V attack|,manner=sudden|,military| +ȡ V occupy|ռ,military| + V occupy|ռ + ADJ fact|,attack|,military| + N fact|,attack|,defend| +޲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + V occupy|ռ,military| + V occupy|ռ,military| + V attack|,#mental| +ռ V occupy|ռ,military| + N method|,#industrial| + N result|,#succeed|ɹ,desired| +ܴ V fail|ʧ +û ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N human|,glorious|,superior|,*succeed|ɹ,desired| + V succeed|ɹ + N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,impression|ӡ,superior|,desired| + N attribute|,ability|,&human| + N attribute|,ability|,&human| + N attribute|,strength|,&human|,&organization|֯ + N fact|,exercise| + N time|ʱ + N result|,#succeed|ɹ,#fail|ʧ + N result|,#succeed|ɹ,desired| + N affairs|,#study|ѧ,education| + N part|,%knowledge|֪ʶ,education| +һ V fail|ʧ + N result|,#succeed|ɹ,desired| + N attribute|,effect|Ч,&event|¼ + ADJ aValue|ֵ,behavior|ֹ + N thinking|˼,behavior|ֹ + N attribute|,ability|,&human| + N attribute|,effect|Ч,&act|ж + N attribute|,PhysicsPower|,&physical| + N attribute|,reputation|,&human| + N attribute|,performance|,&entity|ʵ +Լ N disease| +Ч N attribute|,effect|Ч,&event|¼ +ѫ N result|,#succeed|ɹ,desired| +ҵ N result|,#succeed|ɹ,desired| + N attribute|,performance|,&entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V congratulate|ף + V wait|ȴ + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + V invite| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ͱ N tool|þ,cubic|,@put|,#waste| +ά V please|ȡ +ά V praise|佱 +ϲ V congratulate|ף + N character|,surname|,human|,ProperName|ר + V admit| + V foster| + N inanimate|,generic|ͳ,*provide| + V provide| + N text|,*admit|,#crime|,#police| +Ӧ V lack|ȱ,commercial| + V provide|,possession=electricity| + V salute|¾ + V provide| + N human|,*provide| + V surpass|ǿ,experiencer=provide|,contrast=need| + V provide|,possession=inanimate|,commercial| +ů V provide|,possession=warm| +Ʒ N tool|þ,*salute|¾,#religion|ڽ,generic|ͳ + V provide|,possession=sit| + V provide|,possession=gas| + N phenomena|,#provide|,#need| + V provide|,possession=hot| + V admit| +ϲ V admit| + V admit| +ˮ V provide|,possession=water|ˮ + V sell|,commercial| + N InstitutePlace|,*sell|,@buy|,commercial| + N phenomena|,#provide|,#need| + V provide|,possession=gas| + V ProvideFor| +Ӧ V provide| +Ӧ N human|,*provide| +ְ V undertake|,content=occupation|ְλ + N furniture|Ҿ,space|ռ,*salute|¾,#religion|ڽ + V CausePartMove|,PatientPartof=body| + ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N affairs|,#official| + N affairs|,public| + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N affairs|,police| + N institution|,#police|,ProperName|ר,politics| +ɾ N human|,#occupation|ְλ,police| + N institution|,police| + N institution|,police| + N fact|,police| + N document| + N publications|鿯,news| + V announce| + N room|,@excrete|й + N affairs|,public| + N attribute|,boundary|,&quantity| + N human|,employee|Ա,public| + N LandVehicle| + CLAS unit|λ,&length| + V SelfMove|,#affairs|,#dispatch|Dz + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + N attribute|,behavior|ֹ,&human| + N human|,enemy|,public| + CLAS unit|λ,&weight| +˽ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N law|ɷ + N house|,public| + N expenditure|,public| + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + N affairs|,public| + N text|,official| + N human|,family|,male| + ADJ aValue|ֵ,attachment|,public| +ij˿ N human|,*TakeVehicle| + N LandVehicle| + N attribute|,cleanness|ྻ,spotless|,&space|ռ + N attribute|,relatedness|,public|,&human|,&organization|֯ +ز N institution|,*handle|,#relatedness| + N house|,#official| + N waters|ˮ + N phenomena|,undesired|ݬ,#pollute|ʹ + N letter|ż,#official| + N community|,commercial| + N fund|ʽ + N bird| + V salute|¾ + N attribute|,attachment|,public| +취 N institution|,police| + N affairs|,public|,#transport| + CLAS unit|λ,&weight| + N human|,royal| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V announce| + N fact|,compete|,sport| + N attribute|,behavior|ֹ,opened|,&event|¼ + N fund|ʽ,public| + N reason|,upright| + CLAS unit|λ,&length| + N law|ɷ,#time|ʱ + N regulation|,ordinary| + ADJ aValue|ֵ,attachment|,public| + N food|ʳƷ,$levy| + N material|,$levy|,#crop|ׯ + N character|,surname|,human|,ProperName|ר + V handle|,police| +· N facilities|ʩ,route|· + N thought|ͷ + N human|,#country| +Ȩ N rights|Ȩ,#human|,country| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ţ N livestock| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N human|,family|,mass| + N human|,official| + CLAS unit|λ,&area| +Ȼ ADV aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + V admit| + N institution| + V judge|ö,police| + CLAS unit|λ,&volume|ݻ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʽ N symbol| +ʽ V ize|̬,PatientAttribute=boring| +ʽ N human| + N affairs|,#official| + N affairs|,public| + N institution|,politics| +˽ ADJ aValue|ֵ,attachment|,public|,private|˽ +˽Ӫ N system|ƶ,#rights|Ȩ,#own|,public|,private|˽ +˾ N InstitutePlace|,commercial| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + N character|,surname|,human|,ProperName|ר + N institution|,space|ռ,police|,#crime|,@judge|ö + V recommend|Ƽ + N document|,official| +İ N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#document|,official| + N inanimate|,public| + N affairs|,#official| + N affairs|,public| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա,#institution|,#country| + N character|,surname|,human|,ProperName|ר + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + N livestock|,male| + V perform|,entertainment| + N character|,surname|,human|,ProperName|ר +ұ N character|,surname|,human|,ProperName|ר + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N fund|ʽ,public| + ADJ aValue|ֵ,property|,help| + V discuss| +Ӫ ADJ aValue|ֵ,attachment|,public| + ADJ aValue|ֵ,attachment|,public| +õ绰 N facilities|ʩ,*communicate| +ҵ N affairs|,public| + ADJ aValue|ֵ,attachment|,public| + N system|ƶ,#attachment|,public| +Ԣ N house| +Ԫ N time|ʱ,ProperName|ר +Ԫǰ N time|ʱ,ProperName|ר,past| +԰ N facilities|ʩ,space|ռ,public|,@WhileAway| +Լ N agreement|Լ +Լ N text|,$obey|ѭ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ծ N wealth|Ǯ,$owe|Ƿ,$return| + N stationery|ľ,*print|ӡˢ,public| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +֤ N document|,police| +֤ V prove|֤,police| +֤ N human|,*prove|֤,police| +֮ V announce| +ְ N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + ADJ aValue|ֵ,standard|׼ + N human|,mass| + N human|,royal|,female|Ů + N human|,male|,royal| +Ӹ N human|,male|,flighty|,undesired|ݬ + N InstitutePlace|,space|ռ,@WhileAway|,entertainment| + N character|,surname|,human|,ProperName|ר + N house| + N house|,royal| + N part|,%AnimalHuman|,viscera| + N tool|þ,*illuminate| + N house|,royal| + N part|,%AnimalHuman|,viscera| +Ů N human|,employee|Ա,female|Ů,#royal| +͢ N house|,royal| +͢ N institution|,space|ռ,royal| + N house|,royal| + N house|,royal| + V CausePartMove|,PatientPartof=body| + N character|,surname|,human|,ProperName|ר + N shape| + N tool|þ,*measure| + N weapon|,*firing| + ADJ aValue|ֵ,form|״,curved| + V MakeBetter|Ż + N character|,surname|,human|,ProperName|ר + V MakeBetter|Ż + ADJ aValue|ֵ,circumstances|,steady|,desired| + N chemical|ѧ + N medicine|ҩ,liquid|Һ,*apply|ͿĨ + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V GoThrough| + ADJ aValue|ֵ,form|״,protruding|͹,curved| + V push| + V surround|Χ + V surround|Χ + N part|,%building|,mouth| + N facilities|ʩ,route|·,#waters|ˮ + V salute|¾ + V protect| + ADJ aValue|ֵ,form|״,protruding|͹,curved| +״ ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + N tool|þ,*salute|¾,generic|ͳ +Ʒ N tool|þ,*salute|¾,generic|ͳ + V donate| + N result|,desired|,$donate| + N human|,*donate| + V AmountTo|ܼ + ADJ aValue|ֵ,attachment|,public| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADV aValue|ֵ,range|,all|ȫ + N community|,ProperName|ר + V undergo| + N community|,politics| + N human|,#community|,politics| +Ա N human|,#community|,politics| + N community|,politics| + N human| + V exist| + V create|,together|ͬ + V exist| + V pass|ȹ,together|ͬ + N human|,*engage|,together|ͬ,undesired|ݬ,crime| +͵ N community|,politics|,ProperName|ר,(US|) +͵ N human|,politics| +͹ N place|ط,#human|,country|,politics| + V AmountTo|ܼ + ADJ aValue|ֵ,importance|,main| + V build|,together|ͬ + N phenomena|,#sound| + V respond|Ӧ,alike| + N community|,politics| +Ա N human|,#community| + N phenomena|,#alive| +ʶ N thought|ͷ,alike| + V cooperate| +ͬ ADJ aValue|ֵ,attachment|,public| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ N attribute|,similarity|ͬ,alike|,&thing| +ͬŬ N cooperate|,manner=together|ͬ +ͬ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬ N community|,politics| +ͬͨѶ N institution|,news|,ProperName|ר,(Japan|ձ) +ͬͶ N fact|,provide|,#fund|ʽ,together|ͬ,commercial| +ͬԸ N aspiration|Ը,expect|,together|ͬ +֮ͬ N attribute|,similarity|ͬ,alike|,&thing| + V undergo|,manner=together|ͬ + N attribute|,similarity|ͬ,alike|,&thing| + N talk|̸,content=emotion| + ADJ aValue|ֵ,attachment|,public| + N phenomena|,#shiver| + ADV aValue|ֵ,range|,all|ȫ + V *detain|ס + V fasten|˩ + N symbol| + N tool|þ,*catch|׽ס,curved| + V weave| + V write|д + N FlowerGrass|,?medicine|ҩ +Ķ V fight| + N tool|þ,*weave| +ס V *detain|ס,Vachieve| +״ ADJ aValue|ֵ,form|״,curved| + N tool|þ,*catch|׽ס,curved| + V ResultIn| + N character|,surname|,human|,ProperName|ר + V collude| + V draw| + V remove| + V collude| + V entice| + N affairs| + N image|ͼ,space|ռ + V describe|д + V draw| + V collude| + V describe|д + V draw| + V stay|ͣ + V ResultIn| +ͨ V collude| + V remove| + V entice| + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,military|,@hide|,#fight| + N part|,%land|½,linear| + N part|,%land|½,linear|,#water|ˮ + N shape|,linear|,dented| + V irrigate|,agricultural|ũ + N facilities|ʩ,#liquid|Һ,linear| +ͨ V communicate| +ͨ V connect| + N part|,%land|½,linear|,#water|ˮ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V slack|͵ + V mating|,undesired|ݬ + V slack|͵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V slack|͵ +͵ V slack|͵ +͵ V slack|͵ +ȫ V surrender| +ȫ V surrender| +Ӳд V CauseToLive|ʹ,manner=hardship| + N livestock| +ͷʦ N human|,*help|,undesired|ݬ + N human|,*help|,undesired|ݬ +β N FlowerGrass| +β V FitNot| + N beast| + N human|,timid|,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ,*fly| + V use|,patient=power|,purpose=damage| + N beast| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N phenomena|,disgraced|,#shy|,undesired|ݬ + N stone|ʯ,waste| + V build| + V forming|γ + V produce| + V forming|γ + N part|,%building|,generic|ͳ + N part|,%implement|,generic|ͳ + V establish| + N part|,%implement|,generic|ͳ +˼ N thinking|˼ +ͼ V forming|γ,PatientProduct=image|ͼ + V slander|̰ + N thought|ͷ + V forming|γ + N part|,%thing|,bone| + N {DeChinese|} + V build| + N facilities|ʩ + V buy|,commercial| + V buy|,commercial| + V buy|,possession=artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V buy|,commercial| + V buy|,commercial| + N attribute|,ability|,buy|,&human|,&organization|֯ +Ʊ V buy|,possession=coupon|Ʊ֤ + V buy|,commercial| + V buy|,possession=artifact|˹ + N InstitutePlace|,*sell|,@buy|,commercial| + V AlterPossession|,sell|,buy| + V prosper|,scope=AlterPossession| + V buy|,commercial| + V arrive| + V fit|ʺ + ADJ qValue|ֵ,amount|,many|,desired| + V earn|׬,possession=wealth|Ǯ + V arrive|,Vachieve| +Ƕ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,standard|׼,average|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ƶ ADV aValue|ֵ,degree|̶,very| + ADJ qValue|ֵ,amount|,many|,desired| +ˮƽ ADJ aValue|ֵ,standard|׼,average|,desired| +ζ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˼ ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| + N fact|,crime|,undesired|ݬ + V disappoint| + N AlgaeFungi|ֲ,$eat| + V MakeSound| + V crawl| + V MakeSound| + V speak|˵ + V cook| + V MakeSound| + V speak|˵ + V tighten|ս + V estimate| + V estimate| + V estimate| +Ʋ V despise| +Ʋ V estimate|,manner=insufficiently|Ƿ + N human|,*estimate| + V estimate| + V estimate|,commercial| + N human|,*estimate|,#value|ֵ + V estimate| + V guess|² + V estimate| + V buy|,commercial| + V sell|,commercial| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +µ N land|½ +¶ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¶ N human|,family|,undesired|ݬ +¶ĸ N human|,female|Ů,#young| +¶Ժ N InstitutePlace| +¹ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¹ N human|,female|Ů,#young| +¹ N human|,aged|,lonely| +¼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +¼ҹ N human|,single|,undesired|ݬ +¾ N army|,lonely|,undesired|ݬ,military| + N human|,aged|,lonely| + N aValue|ֵ,circumstances|,lonely|,undesired|ݬ + V separate| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +һ ADJ qValue|ֵ,amount|,single| +עһ V venture|ð + N human|,family|,female|Ů + N human|,religion|ڽ,female|Ů +ø N human|,family|,male| +ù N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + ADV {concession|ò} +֮ V speak|˵ +Ϣ V indulge| +Ϣ V indulge| +ү N human|,family|,male| + V FormChange|α,StateFin=protruding|͹ + V MakeSound| + N MusicTool| + V beat| + V mobilize| + V send| +İ N MusicTool| +Ĵ V PlayUp|Ĵ +Ĵ V disseminate| +Ĵ N human|,*PlayUp|Ĵ +ĵ V PlayWith|Ū +ĵ V incite|ָʹ +Ķ V incite|ָʹ +Ķ V mobilize| +ķ N machine|,*exhale|,#wind| +Ļ V entice| +ľ V urge|ʹ + N music| + V urge|ʹ +¥ N house| +Ĥ N part|,%AnimalHuman|,*listen| +Ū V PlayWith|Ū + V mobilize| + V take|ȡ,possession=courage| + V speak|˵,content=empty| + N part|,%AnimalHuman|,*listen| + N human|,*perform|,entertainment| + V urge|ʹ + V cry| + V beat|,patient=hand| + V welcome|ӭ + V endeavour| +ɾ V endeavour| + V take|ȡ,possession=courage| + N MusicTool| + ADJ aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Cuba|Ű) +Ű ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cuba|Ű) +Ű N place|ط,country|,ProperName|ר +Ű N human|,(Cuba|Ű) +ű N building|,past| +ų N place|ط,city|,past| +Ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŵ N time|ʱ,past| +ŵ N money|,(Haiti|) +ŵ ADJ aValue|ֵ,time|ʱ,past| +Ŷ N artifact|˹,generic|ͳ,past|,precious| +Ŷ N human|,undesired|ݬ,stubborn| +Ŷ N place|ط,capital|,past| +ŷ N attribute|,habit|ϰ,past|,&human|,&organization|֯ +Ź ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ź ADJ aValue|ֵ,kind|,queer| +Ź ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Źֵ N human|,eccentric|Ƨ,undesired|ݬ +Ź N place|ط,country|,past| +Ż N text|,past| +ż N place|ط,#fact|,#time|ʱ +ż N language|,#country|,ProperName|ר +ż N publications|鿯,past| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +Ž ADJ aValue|ֵ,frequency|Ƶ,often| +ž ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ſ N crop|ׯ,?medicine|ҩ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N MusicTool| + N human|,past| +ɫ ADJ aValue|ֵ,style|,gracious| +ɲ N facilities|ʩ,space|ռ,past|,religion|ڽ +ʫ N text|,past| + N publications|鿯,past| + N artifact|˹,generic|ͳ,past|,precious| + ADJ aValue|ֵ,duration|,TimeLong| +Ϊ V use|,patient=past| + N text|,past| + N artifact|˹,generic|ͳ,past| +ϡ N attribute|,age|,aged|,&human| +ѵ N expression|,past| + N expression|,past| +װ N clothing|,#perform| + N MusicTool|,(China|й) +ƻ V entice| + N part|,%AnimalHuman|,bone| + N part|,%inanimate|,bone| + N part|,%thing|,bone| +Ǵ N disease|,#bone| +Ƕ N part|,%FlowerGrass|,embryo| +Ƿ N material|,*feed|ι,#crop|ׯ +Ǹ N human|,desired|,important|,able| +Ǹ N part|,%AnimalHuman|,bone| +Ǹ N part|,%AnimalHuman|,bone| +ǻ N stone|ʯ,waste| +ǻ N stone|ʯ,waste|,#die| +ǻҺ N tool|þ,cubic|,@put|,#stone|ʯ,#die| +Ǽ N part|,%inanimate|,body| +Ǽ N part|,%thing|,bone| +ǽ N material|,sticky|,*fix|ס,*fasten|˩ +ǽ N part|,%AnimalHuman|,bone| +ǿ N part|,%InstitutePlace|,#bone|,medical|ҽ + N material|,generic|ͳ +µ V roll| +Ĥ N part|,%AnimalHuman| + N tool|þ,*gamble|IJ + N part|,%human|,#bone| + N attribute|,will|־,&human| + N human|,family|,mass| + N part|,%AnimalHuman|,bone| + N disease|,#bone|,#inflamed| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N part|,%AnimalHuman|,bone| +ͷ N part|,%AnimalHuman|,bone| + N disease|,#bone|,$break|۶ + N part|,%artifact|˹,bone| + N location|λ,%bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,flesh| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N land|½,dented| +Ȱ N chemical|ѧ +Ȳ N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ +Ȳ N crop|ׯ,*feed|ι,#livestock| +ȵ N attribute|,circumstances|,wane|˥ +ȶ N InsectWorm|,*fly| + N crop|ׯ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N time|ʱ,day| + N material|,?food|ʳƷ,#crop|ׯ + CLAS NounUnit|,&gas| + CLAS NounUnit|,&linear| + N image|ͼ,linear| + N part|,%AnimalHuman|,leg| + N part|,%inanimate| + N part|,%organization|֯ + N wealth|Ǯ +ɱ N fund|ʽ +ɳ N human|,#occupation|ְλ,official| +ɶ N human|,*own|,#wealth|Ǯ,commercial| +ɷ N human|,undesired|ݬ,*rob|,crime| +ɷ N fund|ʽ +ɷ޹˾ N InstitutePlace|,commercial| +ɷ N system|ƶ,#fund|ʽ +ɷʱ N fund|ʽ +ɹ N part|,%AnimalHuman|,bone| +ɼ N attribute|,price|۸,&coupon|Ʊ֤ +ɽ N fund|ʽ + N wealth|Ǯ +Ʊ N coupon|Ʊ֤,#fund|ʽ +Ʊ N affairs|,commercial|,buy|,sell|,#fund|ʽ +Ʊ N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ +Ʊ N human|,#occupation|ְλ,commercial|,*buy|,*sell|,#fund|ʽ +Ʊг N InstitutePlace|,commercial|,@buy|,@sell|,#fund|ʽ + N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤,commercial| +Ϣ N wealth|Ǯ + N fund|ʽ + N human|,friend|,*help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + N cause|ԭ + N fact|,undesired|ݬ + N human|,friend| +ʲԷ V refuse|,content=MakeBetter|Ż +ʴ CONJ {EventResult|¼} +ʵ N place|ط,original|ԭ +ʶ CONJ {EventResult|¼} +ʹ N place|ط,ProperName|ר,(China|й) +ʹ N place|ط,@ComeToWorld| +ʼ V use|,patient=method|,manner=also|Ҳ +ʾ N human|,friend| +ʾ N house|,original|ԭ + N place|ط,@ComeToWorld| +Ū V deceive|ƭ +ȥ V die| + N human|,friend| + V die| + N fact| + N information|Ϣ,?publications|鿯,#news|,literature| +Ƭ N shows| +̬ V BeRecovered|ԭ,StateIni=used| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld| + N place|ط,ComeToWorld| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը +԰ N place|ط,@ComeToWorld| + N phenomena|,undesired|ݬ,#BeBad|˥ +̬ V pretend|װ,content=bearing|̬ + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V look| +˴ʧ V err| +˼ V PayAttention|ע +˼ V hesitate|ԥ +˼ V TakeCare|,patient=family| +˿ N human|,*buy|,#commercial| + V worried|ż + V worried|ż +˼ V mean|ָ + V look| +ǰ˺ V RashlyAct| +ȫ V PayAttention|ע +ȫ V PayAttention|ע,target=circumstances| + N human|,#occupation|ְλ,friend| +ϧ V PayAttention|ע + N human|,*buy|,#commercial| + ADJ aValue|ֵ,circumstances|,steady|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,will|־,strong|ǿ,desired| + V strengthen|ӹ +̲Է V refuse|,content=MakeBetter|Ż +̵ N chemical|ѧ +̶ V CauseToDo|ʹ,ResultEvent=fixed|Ѷ +̶ ADJ aValue|ֵ,behavior|ֹ,lasting| +̶ V fix|ס +̶ְҵ N affairs|,duty|,#occupation|ְλ,lasting| +̶ʲ N wealth|Ǯ +̻ V AlterForm|״,industrial| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,quality|,durable|,desired| +ɳ N tree| + V defend|,military| +̬ ADJ aValue|ֵ,PhysicState|״̬ +̬ N attribute|,PhysicState|״̬,&physical| + N physical|,generic|ͳ + ADJ aValue|ֵ,source|Դ,original|ԭ +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V believe|,content=thought|ͷ,manner=stubborn| +ִ N human|,stubborn|,undesired|ݬ + V employ| +͹ V employ|,patient=human| +͹ N human|,#occupation|ְλ,$employ| +ũ N human|,#occupation|ְλ,agricultural|ũ + V employ| +Ӷ V employ| +Ӷ N army| +ӶͶ N affairs|,$employ|,engage| + V employ| +Ա N human|,#occupation|ְλ,$employ| + N human|,*employ| + V WeatherBad| + V apply|ͿĨ + V cut| + V rob| +ε N tool|þ,*cut| +εƤ V rob| +η V WeatherBad|,#wind| +ι V cure|ҽ + V MakeUp|ױ +Ŀ࿴ V enjoy|,content=respect| + V cut| + V cure|ҽ + N fruit|ˮ +Ϸ V separate| +ϸ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +Ϲ N fruit|ˮ + N money|,(Paraguay|) + N language|,#country|,ProperName|ר +ũ N human|,*planting|ֲ,#occupation|ְλ,#fruit|ˮ,agricultural|ũ +Ƥñ N clothing|,#head|ͷ + V succeed|ɹ + N part|,%plant|ֲ,embryo|,agricultural|ũ +Ӷ N food|ʳƷ + V break|۶ + ADJ aValue|ֵ,taste|ζ,boring|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| +Ѳ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ѹ N human|,female|Ů +ʳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ͷ N human|,rich|,important|,desired| + V ThinkOf|˼ + V cease|ͣ,content=communicate| + V communicate|,instrument=tool|þ + V fasten|˩ + V hang| + V record|¼ + V suffer|,content=fasten|˩ + V undergo|,content=cover|ڸ +Ҳ V decorate|װ +Ҳ V wounded| +ҳ N LandVehicle| +ҳ V cease|ͣ,agricultural|ũ +ҵ绰 V associate|,instrument=tool|þ +Ҷϵ绰 V cease|ͣ,content=associate|,instrument=tool|þ +ҹ V associate| +ҹ V fasten|˩ +ҹ V GiveBirth|,PatientProduct=fruit|ˮ,agricultural|ũ +Һ V record|¼ +һ V wounded| +һ V ThinkOf|˼ +һ V worried|ż +һ V angry| +һ V cease|ͣ,content=communicate| +ҿ V associate| + N tool|þ,*show|,#time|ʱ + V cease|ͣ,agricultural|ũ + N food|ʳƷ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V ThinkOf|˼ + V cease|ͣ,content=compete|,sport| + N start|ʼ,commercial| +ʧ V tell|,content=lose|ʧȥ +˧ V undertake|,content=official| +̺ N tool|þ,$hang|,*decorate|װ,#room| +ͼ N image|ͼ,$hang|,*decorate|װ,#room| +ѥ V cease|ͣ,content=compete|,sport| + V OnCredit| + N tool|þ,*tell|,#time|ʱ + N clothing|,#body| + N clothing|,#body| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Թ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Թ N human|,young| +Ծ ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +Ծ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,behavior|ֹ,queer|,undesired|ݬ + V TakeAway|ᶯ,crime| + V TurnRound| + V cheat|ƭ + V disable|м,scope=walk| + N tool|þ,#walk|,#disable|м +չ N tool|þ,#walk|,#disable|м +ս N location|λ,space|ռ,angular|,@TurnRound| + V TakeAway|ᶯ,crime| +ƭ V TakeAway|ᶯ,crime| +ƭ V cheat|ƭ + V TurnRound| + N location|λ,space|ռ,angular|,@TurnRound| +Ĩ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ĩ V speak|˵,manner=hidden| + N tool|þ,#walk|,#disable|м + N human|,crime|,undesired|ݬ,*cheat|ƭ + N human|,undesired|ݬ,#disable|м,#leg| + ADV aValue|ֵ,degree|̶,ish| + ADJ aValue|ֵ,kind|,queer| + V blame|Թ + N humanized|,undesired|ݬ,*frighten|Ż,ugly| +ֲ V ^blame|Թ +ֲ CONJ {comment|} +ֵ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + N human|,special|,undesired|ݬ + N fact|,queer| +̥ N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N humanized|,undesired|ݬ,*frighten|Ż,ugly| + N human|,undesired|ݬ,eccentric|Ƨ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ phenomena|,queer| + V blame|Թ + N tool|þ,cubic|,#die|,*store| +ײ N tool|þ,cubic|,#die|,*store| +ľ N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,#die|,*store| + V TurnOff|ֹ + V cease|ͣ + N character|,surname|,human|,ProperName|ר + V detain|ס + V end|ս + N institution|,space|ռ,#levy|,#wealth|Ǯ,@check| + N part|,%place|ط,mouth| + N phenomena|,*obstruct|ֹ + V relate|й + V shut|ر + N time|ʱ,important| +ذ N part|,%place|ط,mouth| +ر V cease|ͣ +ر V end|ս +ر V shut|ر +ص V TurnOff|ֹ +ض N food|ʳƷ +غ V relate|й +ػ V PayAttention|ע +ػ V PayAttention|ע +ػ V TurnOff|ֹ +ؼ N part|,%entity|ʵ,heart| +ؼ N human|,important| +ؼ ADJ aValue|ֵ,importance|,important| +ؼ N symbol|,important| +ؽ N part|,%AnimalHuman|,bone| +ؽ N part|,%entity|ʵ +ؽ N part|,%entity|ʵ,heart| +ؽ N disease|,#inflamed| +ؿ N part|,%place|ط,mouth| +ؿ N part|,%place|ط,important|,#military| +ؿ N time|ʱ,important| + V relate|й +óЭ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) + V cease|ͣ,content=discuss| + V end|ս + V shut|ر,patient=mouth| + V PayAttention|ע +˰ N expenditure| +˰ N method|,*obstruct|ֹ,commercial| +˰ V obstruct|ֹ,scope=pay|,#expenditure| +˰ V exempt|,ResultEvent=pay|,#expenditure| +˰óЭ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ͣ V end|ս,commercial| +ͣת V alter|ı +ͷ N time|ʱ,important| +ϵ N attribute|,power|,&entity|ʵ +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N document|,*prove|֤,#organization|֯ +ϵ V influence|Ӱ +ϵ V relate|й +ϵ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N place|ط,#city| + V PayAttention|ע +ļ V PayAttention|ע,target=affairs| + V PayAttention|ע,target=organization|֯ +Ѻ V detain|ס,police| + PREP {concerning} +ڶ ADJ aValue|ֵ,measurement| + V end|ս + V PayAttention|ע + V tell| +ע V PayAttention|ע + ADJ aValue|ֵ,attachment|,public| + N human|,#occupation|ְλ,official| +ٰ ADJ aValue|ֵ,attachment|,#country| +ٱ V uprise| +ٱ N human|,military| +ٳ N community|,#official| +ٷ ADJ aValue|ֵ,attachment|,#country| +ٸ N institution|,official| +ٹ໤ V protect|,patient=official| +ټ N attribute|,behavior|ֹ,#official|,flighty|,undesired|ݬ,&human| + N human|,#occupation|ְλ,official| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N human|,official|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + N phenomena|,#behavior|ֹ,indifferent|Į,undesired|ݬ + N affairs|,commercial|,#country| + N human|,commercial|,#country| +˾ N fact|,#accuse|ظ,#police| + N institution|,space|ռ,past| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ա N human|,#occupation|ְλ,official| +˺ͨ V prosper|,scope=upgrade| +ְ N attribute|,occupation|ְλ,&human| +ۡ N house|,#official| + V PutOn| + N clothing|,#head|ͷ + N clothing|,#head|ͷ,royal| + N location|λ,important| + N part|,%bird|,head|ͷ + V put| + N shape| +ڴ N part|,%language| +ھ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +ھ N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| +ھ N fact|,compete|,sport| + N clothing|,#head|ͷ,royal| +û ADJ aValue|ֵ,behavior|ֹ,suitable| +IJ N disease|,#heart| +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + V put| +״ N part|,%AnimalHuman|,nerve| + N attribute|,scene|,&inanimate| + N house|,religion|ڽ + V look| + N thinking|˼ +۲ V investigate| +۲ V look| +۲ ADJ aValue|ֵ,ability|,able|,look|,desired| +۲Ա N human|,look| +۲ N human|,look| +۵ N standpoint| +۷ V defend| +۸ N experience| +۹ V tour| +ۿ V look| + V include|,ResultWhole=congratulate|ף +Ħ V study|ѧ + N thinking|˼ + V enjoy|,means=look| + V look| + V wait|ȴ +̨ N InstitutePlace|,space|ռ,@look|,#weather| + N humanized|,kindhearted|,ProperName|ר,(China|й) + N stone|ʯ,food|ʳƷ + N tree| +հ N attribute|,scene|,&inanimate| +ս V look|,content=compete| +ս V look|,content=fight| + N human|,*look|,#entertainment|,#sport|,*recreation| +ϯ N human|,*look|,#entertainment|,#sport|,*recreation| + N MusicTool| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + V guarantee|֤ + V manage| + N part|,%implement|,#electricity| + V provide| + N shape| + V teach| +ܱ V guarantee|֤ +ܲ V BeUnable|,content=control| +ܲס V BeUnable|,content=control| +ܵ N facilities|ʩ,space|ռ,linear|,@transmit| +ܵ N human|,#occupation|ְλ,industrial| +ܵ V BeAble|ܹ,content=control| +ܷ V provide|,possession=edible|ʳ +ܷ N MusicTool| +ܼ N human|,#occupation|ְλ,*manage|,#family|,employee|Ա +ܼ N thought|ͷ +ܽ V teach| +̺ܽ ADJ aValue|ֵ,behavior|ֹ,proper| +ܾ N facilities|ʩ,#liquid|Һ + N MusicTool| + V manage| + N human|,*manage| +Ա N human|,#occupation|ְλ,*manage| + N human|,*manage| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N human|,#occupation|ְλ,employee|Ա + V manage|,patient=affairs| +¶ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V restrain|ֹ +Ͻ V manage| +ϽȨ N rights|Ȩ,#manage|,#control| + N music| +ֶ N community|,#music| + N facilities|ʩ,*transmit| +Ѻ V detain|ס,police| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V control| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + N material|,#building| + N InstitutePlace|,commercial| + N InstitutePlace|,literature| + N facilities|ʩ,space|ռ,@reside|ס + N institution|,#country| +ݲ N artifact|˹,$gather|ɼ +ݲ V store| +ݳ N human|,#occupation|ְλ,*manage| + N InstitutePlace|,commercial|,space|ռ,@eat| + N LandVehicle|,mine| + N tool|þ,cubic|,@put| +޳ N LandVehicle| +ͷ N tool|þ,cubic|,@store|,#edible|ʳ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| + V cook| +ţ N food|ʳƷ + V fit|ʺ + V indulge| +߳ ADV aValue|ֵ,frequency|Ƶ,often| +߳ ADJ aValue|ֵ,kind|,ordinary| +߷ N human|,crime|,undesired|ݬ +߷ N human|,crime|,undesired|ݬ,*rob| +߻ V indulge| + N regulation|,ordinary| + N attribute|,speed|ٶ,&SelfMove| + N human|,*steal|͵,crime|,undesired|ݬ +͵ N human|,*steal|͵,crime|,undesired|ݬ + N attribute|,speed|ٶ,&SelfMove| + V use| + ADJ aValue|ֵ,ability|,able|,desired| +ڻ ADJ aValue|ֵ,ability|,able|,doubt| + V indulge| + V fill| + V irrigate|,agricultural|ũ +೦ V cure|ҽ + V irrigate|,agricultural|ũ +ཬ V fill| +ཬ V fill|,agricultural|ũ +ཬ V ill|̬ +Ի V deceive|ƭ,means=please|ȡ + V please|ȡ +ľ N tree| + N place|ط,@irrigate|,agricultural|ũ + V teach| + V record|¼,content=sound| +ע V spray| + V GoThrough| + V connect| + V follow| + N money|,past| + N place|ط,@ComeToWorld| +᳹ V conduct|ʵʩ +ᴩ V GoThrough| +ᴮ V GoThrough| +ͨ V connect| +ͨ V know|֪ +ע V PayAttention|ע +ע V relate|й + V OwnNot| + ADJ aValue|ֵ,SmoothFinish|,polished| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + V exposure|¶ + N lights| + ADV {emphasis|ǿ} + N mark|־,*AimAt|,#computer| +Ⲩ N lights| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,brightness|,bright|,&thing| +ʶĿ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| +Ӳ ADJ aValue|ֵ,brightness|,bright| + V CauseToGrow|ʹɳ +⵼ά N material|,*transmit|,#lights| + N phenomena|,#lights|,#electricity| + N part|,%physical| + N attribute|,brightness|,&inanimate|,&physical| +ȼ N tool|þ,*measure|,#brightness| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| +⸴ V TakeBack|ȡ +˶ N human|,single| +˶ N part|,%physical|,body| +˾ N human|,single| + V arrive| +½ ADJ aValue|ֵ,form|״,queer| + N human|,undesired|ݬ + N human|,single|,male|,^GetMarried| + N phenomena|,#metabolize|л,#plant|ֲ +⻪ N attribute|,brightness|,bright|,&thing| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished| +⻬ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +⻯ѧ N knowledge|֪ʶ +⻷ N lights| +⻷ N lights|,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + N lights| +Բ ADJ aValue|ֵ,brightness|,bright|,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,SmoothFinish|,&implement| +⾰ N attribute|,circumstances|,&entity|ʵ +⾰ N attribute|,scene|,&inanimate| + ADJ aValue|ֵ,brightness|,bright| + N lights| + V arrive| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,fullness|,empty| +â N lights|,bright| +â ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N lights| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CLAS unit|λ,&length| + N tool|þ,*record|¼ + N phenomena|,#color|ɫ,#lights| +׷ V analyze|,content=lights|,#color|ɫ +Ȧ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ٰ N account|,@record|¼,name|,#glorious| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,brightness|,bright| + ADV {emphasis|ǿ} + N lights| + N attribute|,speed|ٶ,&lights| +컯 N time|ʱ,afternoon| +ͷ V exposure|¶ +ͷ N part|,%human|,head|ͷ,$MakeUp|ױ +ͺͺ ADJ aValue|ֵ,fullness|,empty| + N material|,*transmit|,#lights| + N lights| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ ADJ aValue|ֵ,attachment|,#look| +ѧ N knowledge|֪ʶ,#lights| +ѧ N human|,#knowledge|֪ʶ + N lights|,bright| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ N lights|,bright| + N time|ʱ +Ƽ V pass|ȹ,manner=fast| +Դ N location|λ,@ExistAppear|,#lights| + N lights|,bright| +դ N fittings|,#lights| + V illuminate| + N lights| + N part|,%lights| +ҫ V CauseToDo|ʹ,patient=family|,ResultEvent=WellKnown| + ADJ aValue|ֵ,range|,extensive| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| +㲥 V disseminate| +㲥 N text|,disseminate| +㲥ӰӲ N institution|,#disseminate|,ProperName|ר,politics| +㲥 N shows| +㲥ҵ N affairs|,disseminate| +㲥Ա N human|,#occupation|ְλ,*disseminate| +㲩 ADJ aValue|ֵ,range|,extensive| +㳡 N place|ط + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,range|,extensive| + ADJ qValue|ֵ,amount|,many| + N human|,*read|,mass| +ɲ N human|,mass| +Ⱥ N human|,mass| +㵺 N place|ط,city|,ProperName|ר,(Japan|ձ) +㶫 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N attribute|,range|,&entity|ʵ +㷺 ADJ aValue|ֵ,range|,extensive| +㷺 ADJ aValue|ֵ,property|,$disseminate| +㷺 N attribute|,range|,&entity|ʵ + N fruit|ˮ + N readings|,$disseminate|,commercial| + V disseminate|,commercial| +㽻 N InstitutePlace|,@display|չʾ,commercial| + ADJ aValue|ֵ,area|,wide| +Į ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׳ N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N house| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N information|Ϣ + N knowledge|֪ʶ + N place|ط,city|,ProperName|ר,(China|й) + V roam| +䵴 V roam| + V walk|,location=route|· +̳ V walk|,location=InstitutePlace|,commercial|,#buy| +̵ V walk|,location=InstitutePlace|,commercial|,#buy| +Ҥ V SeekPleasure|Ѱ + ADJ aValue|ֵ,value|ֵ,precious|,desired| +屦 N treasure|䱦,precious| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ΰ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ΰ ADJ aValue|ֵ,behavior|ֹ,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,good|,desired| + V persuade|Ȱ˵ + V plan|ƻ + N regulation| + N tool|þ,*measure| + V evade|ر + N regulation|,ordinary| +涨 V decide| +涨 N regulation| +淶 ADJ aValue|ֵ,standard|׼,average|,desired| +淶 N attribute|,standard|׼,&entity|ʵ +淶 V ize|̬,PatientAttribute=standard|׼ + N attribute|,standard|׼,&entity|ʵ + V ize|̬,PatientAttribute=standard|׼ +ؾ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +滮 N plans|滮 +滮 V plan|ƻ +滮 N human|,*plans|滮 + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N attribute|,behavior|ֹ,&human| + N regulation| + N law|ɷ + N attribute|,behavior|ֹ,&event|¼ +ģ ADJ aValue|ֵ,range|,extensive| +ģ N attribute|,range|,&entity|ʵ +ģ N affairs|,produce|,extensive| +Ȱ V persuade|Ȱ˵ +оز V obey|ѭ,content=regulation| + ADJ aValue|ֵ,form|״,even| + N regulation| + N regulation|,ordinary| +ƶ N regulation|,ordinary| + V PutInOrder| + N tool|þ,#royal| + N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guyana|) + N place|ط,country|,ProperName|ר,(South America|) +Ԫ N money|,(Guyana|) + N law|ɷ + N chemical|ѧ + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) +轺 N material| +ʯ N stone|ʯ,material| + N chemical|ѧ + N chemical|ѧ + N AlgaeFungi|ֲ +ש N material|,@building| + V BeMember| + V ComeTogether| + V GoBack| + V return| + PREP {concession|ò} +鰸 V punish|,police| +鲢 V merge|ϲ +鵵 V store| + V include|,ResultWhole=organization|֯ +鸽 V surrender| + ADV {comment|} + ADV {comment|} +鹦 V BelongTo| + V GoBack|,LocationFin=country| + N human|,*GoBack|,#country| +麣 N character|,surname|,human|,ProperName|ר +黹 V return| + V explain|˵ + N process|,ending|ĩ + V accuse|ظ,content=wrong| + V GoBack| + V classify| +£ V assemble|ۼ + N method| + V explain|˵ + N human|,*GoBack|,#country| + V classify| + V BelongTo| +˳ V surrender| + N place|ط + N result| + V die| +; N process|,#GoBack|,#route|· + V die| +Ƽ V expect|,content=GoBack|,manner=worried|ż + V BelongTo| + V ResultIn| +淵 V resume|ָ,StateFin=pure| + V PutInOrder| + V explain|˵ + V accuse|ظ,content=wrong| + N fish| + V FormChange|α + V FormChange|α,medical|ҽ + V CausePartMove| + V escape| +ͷ N part|,%AnimalHuman| + N room|,#female|Ů,@reside|ס +뷿 N room|,#female|Ů,@reside|ס + N room|,#female|Ů,@reside|ס +Ů N human|,family|,female|Ů +Ů N human|,female|Ů,^GetMarried| + N human|,female|Ů,^GetMarried| + N material|,#route|· + N process| + N facilities|ʩ,route|· + N process| +췶 N attribute|,standard|׼,&entity|ʵ +켣 N image|ͼ,linear| +켣 N shape|,linear| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,quality|,refined|,desired| + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N text|,*deceive|ƭ +ƪ N text|,*deceive|ƭ + V MakeLiving|ı,manner=flighty| + N fire| +Ǻ V weep| +Ź N part|,%place|ط,mouth|,humanized| +Ź N place|ط,dangerous|Σ,military| +Ź N time|ʱ,important| + V FondOf|ϲ + N humanized|,undesired|ݬ +ʹ N fact|,*fit|ʺ +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N human|,foreign|,undesired|ݬ +⼿ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V debate| + N human|,*debate| + V deceive|ƭ + V pretend|װ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N symbol|,ProperName|ר,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tree| + N mark|־,glorious| + N FlowerGrass| + N place|ط,city|,ProperName|ר,(China|й) +Ƥ N part|,%tree|,?material| +Ƥ N part|,%tree|,skin|Ƥ +Բ N fruit|ˮ +֦ N medicine|ҩ,(China|й) + N furniture|Ҿ,cubic|,@store| +̨ N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N furniture|Ҿ,cubic|,@store| + V sit| + V salute|¾ + V sit| + ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,$WellTreat|ƴ + N human|,$WellTreat|ƴ,HighRank|ߵ,desired| + N human|,HighRank|ߵ,female|Ů,desired| + ADJ aValue|ֵ,price|۸,expensive|,cheap| + N attribute|,price|۸,&artifact|˹,commercial| + N metal|,material| + N human|,$WellTreat|ƴ + V buy|,cost=expensive| + V sell|,cost=expensive|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,royal| + N human|,royal|,past| + N human|,royal|,female|Ů + V break|۶ + N human|,fierce|,undesired|ݬ,*kill|ɱ + N human|,police|,*kill|ɱ,#crime| + N part|,machine| + V StateChange|̬ + V leave|뿪 + V roll| + V wrap| + N fittings|,%clothing|,*decorate|װ + V leave|뿪 + V roll| + N part|,%implement| + V roll| + ADJ aValue|ֵ,ability|,able|,desired| + V jet| + N SportTool|˶ + ADJ aValue|ֵ,temperature|¶,hot| +Ͳ N part|,%implement| +ѩ V BecomeMore| +Բ ADJ aValue|ֵ,form|״,round|Բ + N part|,%implement| + N part|,%implement| + N part|,%implement| + N human|,undesired|ݬ + N tool|þ + N tool|þ + N tool|þ + CLAS NounUnit|,&inanimate| + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@store| + N food|ʳƷ + N part|,%tool|þ,head|ͷ +¯ N tool|þ,@burn| +̨ N part|,%tool|þ,#cook| +̨ת N human|,family|,female|Ů + N food|ʳƷ + N inanimate|,waste| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,attachment|,country| + N character|,surname|,human|,ProperName|ר + N place|ط,#human|,country|,politics| + N treasure|䱦,precious|,#country| + N attribute|,attachment|,#country|,&human| + N human|,$WellTreat|ƴ,#country| + N InstitutePlace|,@WellTreat|ƴ,#country| + N regulation|,#country|,politics| + ADJ aValue|ֵ,source|Դ,original|ԭ + N phenomena|,disgraced|,undesired|ݬ,#shy|,#country|,politics| + N knowledge|֪ʶ,precious|,#country| + N place|ط,capital|,#country| + N place|ط,#human|,country|,politics| + N law|ɷ,country|,politics| + N affairs|,#defend|,#country| + N institution|,#defend|,ProperName|ר,#country| + N human|,#occupation|ְλ,official|,*manage|,#country|,military| +ѧ N InstitutePlace|,@teach|,@study|ѧ,military|,ProperName|ר,#country|,(China|й) + N expenditure|,*defend|,#country| + N army|,*defend|,#country| + N human|,official|,politics| + N music|,$sing|,#country| + N music|,$sing|,&country| + N attribute|,reputation|,&country| + N community|,politics| + N attribute|,name|,#country|,#official|,&time|ʱ + N FlowerGrass|,#country| + N image|ͼ,$draw|,(China|й) + N mark|־,#country| + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(Japan|ձ) + N institution|,politics|,#country|,*forming|γ,#law|ɷ,(US|) + N artifact|˹,commercial|,#country|,generic|ͳ + N attribute|,attachment|,#country|,&human| + N affairs|,#country| + ADJ aValue|ֵ,attachment|,#country| + N community|,#country| +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʵ N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +ʷ N law|ɷ,#country| +ʷԺ N part|,%institution|,police|,(institution|=UN|Ϲ) +ʸ˿ N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) +ʸ N music|,$sing| +ʺ֯ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ʻһ֯ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʽڹ˾ N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +ʿЭ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ú֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ũҵչ N part|,%institution|,#agricultural|ũ,#fund|ʽ,(institution|=UN|Ϲ) + N community|,#country| + N affairs|,#country|,politics| + N attribute|,attachment|,#country|,&thing| + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) + N system|ƶ,#relatedness|,#country| + N place|ط,#human|,country|,politics| +ҲƲ N physical|,$own|,#country| +Ҵ N affairs|,#country| +ҵϵͳ N weapon|,*defend| +Ҷ N community|,#country| +Ҹϯ N human|,#occupation|ְλ,official|,#country| +һ N institution|,#country| +һعԱ N human|,#occupation|ְλ,#country| +Ҽ N attribute|,rank|ȼ,#country|,&thing| +Ҽල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ҼƻίԱ N institution|,ProperName|ר,*plan|ƻ +ҽίԱ N institution|,ProperName|ר,#education| +ҾóίԱ N institution|,commercial|,ProperName|ר,(China|й) +ҿѧίԱ N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) +쵼 N human|,#occupation|ְλ,official|,#country| +Ԫ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,#occupation|ְλ,official|,#country| + N part|,%country|,edge| + N place|ط,#country| + N part|,%country|,edge| + N human|,#occupation|ְλ,royal| + N InstitutePlace|,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,space|ռ,#country|,@store|,#wealth|Ǯ +ȯ N coupon|Ʊ֤,#country| + ADJ aValue|ֵ,attachment|,#country| + N attribute|,strength|,&country| + N part|,%country|,mouth| + ADJ aValue|ֵ,attachment|,#country| + N human|,#country| + N community|,politics| +񾭼 N affairs|,industrial|,agricultural|ũ,commercial|,#country| + N wealth|Ǯ,$earn|׬,#country| + N phenomena|,undesired|ݬ,#unfortunate|,#country| + ADJ aValue|ֵ,source|Դ,#country| + ADJ aValue|ֵ,source|Դ,#country|,internal| + N location|λ,%country|,internal| +ڷ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N location|λ,%country|,internal|,external| + N mark|־,#country| + N attribute|,circumstances|,&country| + N text|,#politics|,(US|) + N time|ʱ,day|,@congratulate|ף,#country| + N time|ʱ,day|,@congratulate|ף,#country| + N human|,#country| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʷ N fact|,#time|ʱ,#country| +ʷ N human|,*record|¼,past|,#country| + N affairs|,#country| +· N fact|,visit|,#country|,politics| + N human|,able|,#country|,desired|,#WhileAway| + N document|,#country|,diplomatic|⽻ +˰ N institution|,*manage|,#expenditure|,ProperName|ר,country| +̩ ADJ aValue|ֵ,circumstances|,peaceful| + N attribute|,reputation|,&country| + N system|ƶ,country| + N place|ط,#country| + ADJ aValue|ֵ,source|Դ,#country|,external| + N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N human|,#occupation|ְλ,royal| + N attribute|,reputation|,&country| + N language|,#country| + N affairs|,#country| + N human|,official|,*manage|,#country|,(US|) +Ժ N institution|,politics|,ProperName|ר,(China|й) +Ժ N institution|,politics|,ProperName|ר,(US|) +Ժί N part|,%institution|,*manage| +ѧ N knowledge|֪ʶ,(China|й) + N fact|,eat|,entertain|д,#country| +ҩ N medicine|ҩ,(China|й) +Ӫ ADJ aValue|ֵ,attachment|,#country| + ADJ aValue|ֵ,quality|,superior|,#country| + ADJ aValue|ֵ,attachment|,public| +л V ize|̬,PatientAttribute=public|,#country| + N language| + N attribute|,circumstances|,&country| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,#country| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fruit|ˮ + N result| + N food|ʳƷ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ + V feed|ι,patient=self| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N food|ʳƷ +϶ N material|,?food|ʳƷ +ľ N tree|,#fruit|ˮ +ũ N human|,#occupation|ְλ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ƥ N part|,%fruit|ˮ,skin|Ƥ +Ʒ N food|ʳƷ +Ȼ ADV {comment|} +Ȼ CONJ {condition|} + N food|ʳƷ + N part|,%fruit|ˮ,embryo| +ʶ N part|,%fruit|ˮ,embryo| + N part|,%fruit|ˮ,flesh| +ʵ N part|,%plant|ֲ,embryo| +ʵ N result|,desired| + N tree|,#fruit|ˮ + N chemical|ѧ +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + ADV {comment|} + CONJ {condition|} +֦ N part|,%plant|ֲ,#fruit|ˮ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֭ N drinks|Ʒ + N fruit|ˮ +ӽ N food|ʳƷ +¶ N drinks|Ʒ + V TakeAway|ᶯ + V drink| + V wrap| + N fittings|,%clothing|,#leg| +Ю V force|ǿ +в V force|ǿ +㲻ǰ V hesitate|ԥ,content=GoForward|ǰ + ADV aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,standard|׼,average|,desired| + V cross|Խ + V pass|ȹ + N result|,undesired|ݬ,wrong| + V surpass|ǿ + V undergo| + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,fragment| + V measure|,content=weight| +Ա N human|,#occupation|ְλ,*measure|,#weight| +ȥ V BeUnable|,content=GoThrough| +ȥ V BeUnable|,content=undergo| +ȥ V quarrel| +ȥ V regret|Ǹ + N process| + V measure|,content=weight| + V associate| + N result|,undesired|ݬ,wrong| + N part|,%building|,nerve| +ȥ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ȥ ADJ aValue|ֵ,standard|׼,average|,desired| + V pass|ȹ,patient=winter| + ADJ aValue|ֵ,degree|̶,over| +ƣ V tired|ƣ,degree=over| + V SelfMove| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,degree|̶,over| +ּ򵥻 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V tired|ƣ,degree=over| +ӵ ADJ aValue|ֵ,occasion|,crowded|,degree=over| + ADJ aValue|ֵ,degree|̶,over| + V cross|Խ,LocationThru=place|ط + V pass|ȹ,patient=hardship| + V succeed|ɹ,scope=standard|׼ +ն V win|ʤ +Ӳ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,time|ʱ,hind| + V submit| + V talk|̸ + V MakeLiving|ı + ADJ aValue|ֵ,degree|̶,over| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N human|,behavior|ֹ,strong|ǿ,undesired|ݬ + V praise|佱 +¥ N house| + V congratulate|ף,cause=festival| + V cross|Խ,LocationThru=country| +ǩ֤ N document|,*cross|Խ,#country| + N human|,*AlterLocation|ռλ,*tour| + V come| + ADJ aValue|ֵ,degree|̶,over| + N material|,*feed|ι,#crop|ׯ +· V cross|Խ,LocationThru=place|ط +· N human|,*GoThrough| + V worried|ż,manner=over| + V filter| + V MarryTo| + N disease| +Ӧ N disease| +Ŀ V check| +Ŀ ADJ aValue|ֵ,ability|,able|,remember|ǵ + V congratulate|ף,cause=festival| + V pass|ȹ,patient=festival| + N time|ʱ,future|,year| + V due| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,over| +ȥ ADJ aValue|ֵ,time|ʱ,past| +ȥ V die| +ȥ V go|ȥ +ȥ N time|ʱ,past| +ȥ V die| + V surpass|ǿ + V MakeLiving|ı + V congratulate|ף,cause=festival|,#ComeToWorld| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ ADJ qValue|ֵ,amount|,redundant| +ʧ N result|,undesired|ݬ,crime| +ʧ N result|,undesired|ݬ,wrong| +ʱ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ʱ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + V die| + V handle| + V count| + V interrogate|,police| +÷ N wind| +ͷ ADJ aValue|ֵ,degree|̶,over| + V SelfMoveInManner|ʽ + V associate| + V PayAttention|ע +ϥ ADJ aValue|ֵ,length| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N chemical|ѧ +ҹ V pass|ȹ,patient=night|,#reside|ס +ⲻȥ V regret|Ǹ +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,over| + V praise|佱 + V enjoy| + V exhale| + N place|ط,country|,ProperName|ר,(Kazakhstan|˹̹) +͹ N livestock| + N place|ط,capital|,ProperName|ר,(Botswana|) + V exhale| + N tool|þ,#salute|¾,#congratulate|ף + N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) +ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(US|) + V tease|ȡ +Ц V laugh|Ц + N tool|þ,*look|,self| + N part|,%AnimalHuman|,liquid|Һ +ܹ N fruit|ˮ + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kazakhstan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N community|,ProperName|ר,(China|й) + N place|ط,capital|,ProperName|ר,(Cuba|Ű) + V CausePartMove|,PatientPartof=body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,#die|,bone| + N human|,young| + N human|,young| + N time|ʱ,#young| +ʱ N time|ʱ,#young| +ͯ N human|,young| + N human|,family|,young| + N human|,young| + ADJ aValue|ֵ,ability|,unable|ӹ + N waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N attribute|,height|߶,&land|½ + N readings| + N beast| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,#waters|ˮ,edge| + N chemical|ѧ + N fish| + N artifact|˹,generic|ͳ,#fish|,$eat| +Ʒ N artifact|˹,generic|ͳ,#fish|,$eat| + ADJ aValue|ֵ,color|ɫ,blue| + N water|ˮ + N AlgaeFungi|ֲ,$eat| + N land|½,#waters|ˮ + N human|,*rob|,#waters|ˮ,crime| + N human|,crime|,undesired|ݬ,#waters|ˮ,*rob| +Ϊ N fact|,rob|,#waters|ˮ,crime| + N location|λ,%waters|ˮ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Haitii|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Haitii|) + N affairs|,*defend|,#waters|ˮ + N wind|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + N waters|ˮ,surfacial| + N beast| + N institution|,#country| + N fish| + V forgive|ԭ + N waters|ˮ + N army|,#waters|ˮ +ٱ N human|,military|,#waters|ˮ + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ʯ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,range|,extensive| + N beast| + N beast| + CLAS unit|λ,&length| + N water|ˮ + N beast| + N fish| + N ship| + N fish| + N medicine|ҩ,?addictive|Ⱥ + N fish| + N food|ʳƷ,$eat|,#fish| + N material| + N waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ϵ N place|ط,ProperName|ר,(China|й) + N phenomena|,undesired|ݬ,#waters|ˮ,#unfortunate| + N location|λ,%country|,internal| + N location|λ,%country|,internal|,external| +ţ N beast| +Ÿ N bird| + N attribute|,style|,&shows| +ƽ N attribute|,height|߶,&waters|ˮ + N waters|ˮ,surfacial| +̷ N law|ɷ,#waters|ˮ,#ship|,#transport| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N location|λ,%waters|ˮ + N affairs|,#waters|ˮ,#ship|,#transport| +֯ N part|,%institution|,#affairs|,#waters|ˮ,#ship|,#transport|,(institution|=UN|Ϲ) +¥ N phenomena|,#weather|,fake|α +ˮ N liquid|Һ + N affairs|,#lose|ʧȥ,#waters|ˮ,#ship|,#transport| +̡ N beast| +̲ N part|,%land|½,#waters|ˮ,edge| + N facilities|ʩ,#liquid|Һ,space|ռ + N tree| +ͼ N image|ͼ,#earth|,#waters|ˮ,#country| + ADJ aValue|ֵ,source|Դ,foreign| + N publications|鿯,$sell|,#foreign| + N human|,*ThinkOf|˼,*like|ϧ,#country| + N waters|ˮ,surfacial| + N celestial| +ζ N food|ʳƷ,#fish|,generic|ͳ +Ͽ N waters|ˮ,surfacial| + N food|ʳƷ,#fish|,generic|ͳ +Х N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N beast| + N place|ط,capital|,ProperName|ר,(Netherlands|) + N material|,?food|ʳƷ + N bird| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N waters|ˮ,surfacial| + N law|ɷ,#waters|ˮ,#country| + ADJ aValue|ֵ,attachment|,#waters|ˮ + N institution|,ProperName|ר,#waters|ˮ,#country|,politics| + N weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#waters|ˮ +ѧר N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,#waters|ˮ +Դ N material|,#waters|ˮ + N fish| + N waters|ˮ,surfacial| +Ա N human|,#occupation|ְλ,employee|Ա,#ship| + ADJ aValue|ֵ,attachment|,#waters|ˮ,#ship|,#transport| + V transport|,instrument=ship| + V bury|,LocationFin=waters|ˮ + N AlgaeFungi|ֲ + N fruit|ˮ +ս N fact|,fight|,#waters|ˮ + N phenomena|,#weather|,#waters|ˮ,#unfortunate|,undesired|ݬ + N waters|ˮ,surfacial| + N beast|,*swim| + N fish| + N gas| + N knowledge|֪ʶ +ʱ N time|ʱ,hour|ʱ + V SufferFrom| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V damage| + V kill|ɱ,crime| + N phenomena|,unfortunate|,undesired|ݬ + V SufferFrom|,content=disease| + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + V kill|ɱ,crime| + N bird|,evil|,*MakeBad|Ӻ,undesired|ݬ + V fear| +Ⱥ֮ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +˳ N human|,evil|,*MakeBad|Ӻ,undesired|ݬ +ϲ V SufferFrom|,content=disease|,#female|Ů + V shy| + V SufferFrom|,content=disease|,#female|Ů + V shy| + V fear| + V fear| + V fear| + N human|,*damage|,#software|,undesired|ݬ +Ȼ V fear| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V fear| + V satisfied| + V satisfied| +˯ V sleep|˯,manner=satisfied| + V drink|,manner=satisfied| +ս V fight| + ADJ aValue|ֵ,ability|,unable|ӹ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ц V laugh|Ц +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(South Korea|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korean|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(South Korean|) + N language|,#country|,ProperName|ר + V HoldInMouth| + V cherish|Ļ + V contain| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +첻 ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,metal| +ƾ ADJ aValue|ֵ,content|,medicine|ҩ + V weep| + N quantity|,amount|,#contain|,#content|,&physical| +þ ADJ aValue|ֵ,content|,metal| +ŭ V angry| + ADJ aValue|ֵ,content|,medicine|ҩ +ɳӰ V ExpressAgainst|Ǵ,manner=tactful| +ˮ ADJ aValue|ֵ,content|,water|ˮ + ADJ aValue|ֵ,content|,material|,sweet| +ͭ ADJ aValue|ֵ,content|,metal| +Ц V laugh|Ц +п ADJ aValue|ֵ,content|,metal| + V endure|,content=hardship| + V shy| + ADJ aValue|ֵ,behavior|ֹ,tactful| + ADJ aValue|ֵ,content|,difficult| + V contain| +Ѫ ADJ aValue|ֵ,content|,part| +Ѫ V slander|̰ + N information|Ϣ + N information|Ϣ +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V contain| +ԩ V suffer|,damage| +Թ V sorrowful| +Ū V enjoy|,content=happy|,time=aged|,desired| + V contain| + N facilities|ʩ,route|· + V contain| + V forgive|ԭ + V contain| + N attribute|,ability|,#control|,#self|,&human| + N information|Ϣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + V shiver| + V shiver| + N weather|,cold| + N part|,%earth|,cold| + N time|ʱ,winter| + N time|ʱ,winter| + N wind|,cold| +̹ V perception|֪,content=cold|,degree=extreme| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education|,winter| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V disappear|ʧ,experiencer=time|ʱ + ADJ aValue|ֵ,temperature|¶,cold| + N weather|,cold| +¶ N time|ʱ,day| +ë N part|,%human|,hair|ë + ADJ aValue|ֵ,temperature|¶,cold| + N gas|,cold| + N weather|,cold| + N wind|,cold| +Ϯ ADJ aValue|ֵ,temperature|¶,cold| + V fever| + ADJ aValue|ֵ,temperature|¶,cold|,hot| + N time|ʱ,year| + N tool|þ,*measure|,#temperature|¶ + ADJ aValue|ֵ,circumstances|,poor|,miserable|,undesired|ݬ +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + N clothing|,#cold|,#season| + N attribute|,temperature|¶,cold|,&space|ռ +ս V shiver| + V LaughAt|Ц + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V shiver| + N SayHello|ʺ,manner=EachOther|໥ + N letter|ż + N stationery|ľ,cubic|,@put|,letter|ż + V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N letter|ż + V reply|,content=letter|ż + V tell|,instrument=letter|ż + V buy|,instrument=letter|ż + N letter|ż + V teach|,instrument=letter|ż +ڴѧ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| +ѧУ V InstitutePlace|,@teach|,@study|ѧ,#letter|ż,education| + N symbol| + V seek|ıȡ,instrument=letter|ż + V cry| + V communicate|,means=tool|þ + V disseminate|,target=enemy|,military| + V cry| +ɤ V cry| +ɤ V cry| +ԩ V protest|,content=miserable| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ fact|,rarely|ż + N PenInk|ī,*write|д + N document| + N human|,#knowledge|֪ʶ,past| +Ժ N institution|,#knowledge|֪ʶ,past| +ī N PenInk|ī +ī N text| + V shake|ҡ + V shake|ҡ + V defend| + V defend| + V resist| + V defend| + V defend| + ADJ aValue|ֵ,dampness|ʪ,waterless| + N crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N time|ʱ,season|,waterless| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,@store|,vegetable|߲ +Ա V guarantee|֤,scope=obtain|õ,#crop|ׯ,agricultural|ũ + N tree| +· N facilities|ʩ,route|· + N time|ʱ,year|,waterless| + N facilities|ʩ,route|· + N attribute|,circumstances|,#waterless|,&place|ط +ɡ N tool|þ,*protect| +̡ N beast| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,waterless| + N addictive|Ⱥ + N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless| + V repent|û + N experience|,undesired|ݬ,#sorry|ϧ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,courage|,brave|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V fasten|˩,industrial| + N part|,%implement|,linear|,#fasten|˩,industrial| + N affairs|,industrial|,#fasten|˩ + N human|,#occupation|ְλ,industrial|,*fasten|˩ + V fasten|˩,industrial| + N material|,*fasten|˩,generic|ͳ +ǹ N tool|þ,*fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N tool|þ,#fasten|˩,industrial| + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + N clothing|,#body| + N trace|,#AnimalHuman|,#waste|,#liquid|Һ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +䤱 V excrete|й + N result|,desired| +ë N part|,%human|,hair|ë +ţ䶰 ADJ qValue|ֵ,amount|,many| + N clothing|,#body| +ˮ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,nerve| + V shy| +Һ N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N human|,ProperName|ר,mass| + N human|,male| + N language|,#country|,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N stone|ʯ,?material| + N place|ط,city|,ProperName|ר,(German|¹) + N food|ʳƷ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N place|ط,capital|,ProperName|ר,(South Korea|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V ize|̬,PatientAttribute=(China|й) + N human|,undesired|ݬ,*betray|,treacherous| + N place|ط,city|,ProperName|ר,(China|й) +ܶ N place|ط,capital|,ProperName|ר,(Bermuda|Ľ) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,past|,(China|й) + N human|,#country|,ProperName|ר + N character|,(China|й) + N language|,(China|й) +ѧ N knowledge|֪ʶ,(China|й) +ѧ N human|,#knowledge|֪ʶ + N language|,#country|,ProperName|ר,(China|й) +ƴ N symbol|,#language|,#sound| + N human|,family|,male| + N human|,male| + N character|,(China|й) +ֿ N software|,@store|,character|,(China|й) + N community|,ProperName|ר,(China|й) + V beat| + N tool|þ,*beat| +ʵ V beat| + N tool|þ,*beat| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V VehicleGo|ʻ + V fly| + N attribute|,number|,&aircraft|,#fly| + N mark|־,*guide|,#VehicleGo|ʻ + V measure| + N attribute|,distance|,#VehicleGo|ʻ,#fly| + N attribute|,distance|,&VehicleGo|ʻ,&fly| + N ship| + N attribute|,number|,&aircraft|,#fly| + N attribute|,number|,&ship|,#VehicleGo|ʻ + N quantity|,amount|,&ship|,#VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#waters|ˮ,#VehicleGo|ʻ + N affairs|,VehicleGo|ʻ,#ship| + N human|,*VehicleGo|ʻ,#ship| +ҵ N affairs|,VehicleGo|ʻ,#ship| + N affairs|,#VehicleGo|ʻ,#aircraft| +ձ N army|,#sky| +ձ N human|,#occupation|ְλ,#sky| +չ˾ N InstitutePlace|,#affairs|,#transport|,#aircraft| +ջ N affairs|,transport|,#aircraft| +ĸ N weapon|,ship|,military| +· N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| +ģ N tool|þ,$recreation|,aircraft| +ĸ N weapon|,ship|,military| + N attribute|,speed|ٶ,&VehicleGo|ʻ,&fly| + N affairs|,#fly| +ɻ N aircraft| + N affairs|,VehicleGo|ʻ + N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ,#fly| + N direction|,#VehicleGo|ʻ,#fly| + V VehicleGo|ʻ + N VehicleGo|ʻ + V VehicleGo|ʻ + V fly| + N human|,*VehicleGo|ʻ + N affairs|,#transport|,#ship| +˹˾ N InstitutePlace|,#affairs|,#transport|,#ship| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + V weep| + V weep| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,rich|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,extravagant|,desired| + ADJ aValue|ֵ,kind|,extravagant| + N human|,able|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N human|,rich|,strong|ǿ,desired| + N attribute|,courage|,brave|,&human| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ N human|,undesired|ݬ,fierce| + N attribute|,courage|,brave|,&human| + N language|,#country|,ProperName|ר + N human|,rich|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N human|,brave|,able|,desired| + N emotion|,FeelingByGood|,desired| +׳ N expression|,brave|,desired| + N beast| +׳ ADJ aValue|ֵ,courage|,brave|,desired| + N PenInk|ī,*write|д + N part|,%animal|,hair|ë + CLAS unit|λ,&length| + CLAS unit|λ,&weight| + CLAS unit|λ,&electricity| + ADV {neg|} +ҡ ADJ aValue|ֵ,will|־,stubborn|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ԥ ADJ aValue|ֵ,will|־,stubborn|,desired| +ԥ V willing|Ը + ADJ qValue|ֵ,amount|,few| + N unit|λ,&weight| + CLAS unit|λ,&weight| + ADJ qValue|ֵ,amount|,few| + CLAS unit|λ,&length| + CLAS unit|λ,&time|ʱ + CLAS unit|λ,&volume|ݻ + ADV {neg|} +ޱ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +޴ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +޶ V BeSame|ͬ +޹֮ͬ V differ|ͬ +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ + ADV aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,easiness|,easy|,desired| + N character|,surname|,human|,ProperName|ר + V AptTo| + V BeWell|׳ + V FondOf|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ðʽ N human|,able|,desired| +ð ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ñ V BeSimilar| +ò ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ó V FondOf|ϲ,target=eat| +ó ADJ aValue|ֵ,taste|ζ,good|,desired| +ó V slack|͵ +ô N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ô N wealth|Ǯ,desired|,$earn|׬ +ô N expenditure| +ô˾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#accuse|ظ +ôϲ V expect|,content=succeed|ɹ,undesired|ݬ +ô N attribute|,GoodBad|û,&entity|ʵ +ô N phenomena|,undesired|ݬ,#unfortunate| +ö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| +ö N attribute|,behavior|ֹ,FondOf|ϲ,#fight|,&human| +ö˶ ADJ aValue|ֵ,circumstances|,good|,desired| +ö ADJ qValue|ֵ,amount|,many| +ö ADJ qValue|ֵ,amount|,many|,question| +ø N experience|,kindhearted|,desired| +ù ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,brave|,desired| +ú ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ú ADJ aValue|ֵ,circumstances|,good|,desired| +úö ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +úö ADJ aValue|ֵ,circumstances|,good|,desired| +ú N human|,undesired|ݬ +û N expression|,kindhearted| +û N attribute|,GoodBad|û,&entity|ʵ +þ V unfortunate| +þ N time|ʱ,TimeLong| +ÿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ÿ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ÿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ÿ ADJ aValue|ֵ,reputation|,glorious|,desired| +ÿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N place|ط,ProperName|ר,#(movie|Ӱ),(US|) + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N result|,#estimate|,good| + V expect| + N emotion|,expect| + V FeelingByGood| + N human|,good|,desired| + N human|,sly|,undesired|ݬ + N human|,strong|ǿ,desired| + N time|ʱ,day|,#GetMarried| + N time|ʱ,day|,#joyful|ϲ + N time|ʱ,happy| +ɫ V FondOf|ϲ,target=female|Ů +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ +ɱ¾ ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#kill|ɱ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʤ V FondOf|ϲ,target=surpass|ǿ +ʤ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʹ V succeed|ɹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N fact|,desired| + N fact|,good|,desired| +¶ĥ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N fact|,good|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +˵ EXPR expression|,*agree|ͬ +˵˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V BeSimilar| + V WeatherFine| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ϸ N fact|,interesting|Ȥ +Ϸ N shows|,good| + V BeSimilar| +Ц ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Щ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,like|ϧ,kindhearted|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ѧ V FondOf|ϲ,target=study|ѧ + N human|,superior|,desired| +ݶ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ݶ V slack|͵ + N emotion|,like|ϧ,kindhearted|,desired| +˼ V shameless|û + N human|,friend| + N attribute|,circumstances|,lucky|,&human| + ADV {comment|} +ս ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| +ս N human|,*FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#quarrel| +Ͼ V calm| +ת V BeRecovered|ԭ +׬ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +Ϊ֮ V ActGeneral|,manner=proper| + V lavish|˷,patient=time|ʱ + V spend| +ĵ N quantity|,amount|,exhaust|,#electricity| +ķ V spend| +ľ V exhaust| + V exhaust|,patient=strength| +ɢ V exhaust| +ɢ V exhaust|,industrial| +ʱ V exhaust|,patient=time|ʱ +ʱ V lavish|˷,patient=time|ʱ + V exhaust| + V lavish|˷ + V exhaust| + V spend| + V spend|,patient=fund|ʽ + N beast| + N InstitutePlace|,commercial| + N MusicTool| + N attribute|,name|,&physical| + N attribute|,size|ߴ,&physical| + V cry| + N symbol| + N time|ʱ,day| + N time|ʱ,day|,special| + V weep| +ų V become|Ϊ +ų V naming| +Ž N MusicTool| +Ž V cry| +ſ V weep| + V order| + N text|,*order| + N symbol| + V diagnose|,medical|ҽ + N tool|þ,#quantity|,#sequence| + N human|,*perform|,entertainment| + N clothing|,#body| + V call|ٻ + V weep| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| +ƴ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ƶ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ʒ ADJ qValue|ֵ,amount|,many| +ƺƵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ƽ N phenomena|,undesired|ݬ,unfortunate| +Ȼ ADJ aValue|ֵ,area|,wide| +Ȼ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +Ȼ֮ ADJ mental|,fair|,desired| +̺ ADJ qValue|ֵ,amount|,many| +̾ V sigh|̾ + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + V ExpressAgainst|Ǵ + V exhale| +dz V ExpressAgainst|Ǵ +ǻ V TakeCare| +Ƿ V respire| + V ExpressAgainst|Ǵ + V cry| + V drink| +Ȳ V praise|佱 +Ȳ V praise|佱 +ȳ V ExpressAgainst|Ǵ +ȵ V ExpressDissatisfaction|ʾ + V force|ǿ + V ask| + V dizzy|,cause=addict|Ⱥ +߳ V ExpressAgainst|Ǵ + V CarryOnBack| + N FlowerGrass| + N duty|,$bear|е + N place|ط,country|,ProperName|ר,(Holland|) +ɰ N part|,%clothing|,cubic|,@put| +ɰ N tool|þ,cubic|,@store| +ɶ N medicine|ҩ +ɻ N FlowerGrass| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Netherland|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Holland|) + N money|,(Netherlands|) + N human|,(Netherland|) + N language|,#country|,ProperName|ר +ǹʵ V CarryOnBack|,patient=weapon| +Ҷ N part|,%plant|ֲ,hair|ë + V load|װ + N place|ط,city|,ProperName|ר,(China|й) + V check| + N part|,%plant|ֲ,embryo| + N part|,%thing|,heart| +˲ V check| +˴Ź N phenomena| +˴ N place|ط,country|,#weapon| +˵ N weapon|,$firing| +˵ͷ N weapon|,$firing| +˵ N weapon|,$firing| +˵վ N facilities|ʩ,space|ռ,*produce|,#electricity| +˶ V estimate| +˶ N attribute|,strength|,&entity|ʵ +˶ĸ N weapon|,ship|,military| +˶ V check| +˷ V issue|ַ +˷Ӧ N physical|,*ize|̬ +˹ N part|,%plant|ֲ,embryo| +˻ N medicine|ҩ +˼ V estimate| +˼ V BecomeLess| + N attribute|,strength|,&physical| +DZͧ N weapon|,ship|,military| +ȼ N material|,$burn|,*lighting|ȼ +ʵ V check| + N chemical|ѧ + V calculate| +Ǻ N chemical|ѧ + N fruit|ˮ + N weapon| + V remove| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,heart| +׼ V ExpressAgreement|ʾͬ + N part|,%physical| + N chemical|ѧ + N crop|ׯ +̳ N facilities|ʩ,@separate|,#crop|ׯ,agricultural|ũ + N crop|ׯ,young| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + V compile|༭ + V mix| + V sing| + COOR {and|} +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ͱ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N wind|,weak| +ͷϸ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͷ N clothing| +ͺ V reconcile| +ͺ V reconcile| +ͻ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͻ V weaken| +ͻ N fact|,communicate|,#peaceful|,politics| +ͽ V reconcile| +; V BeSame|ͬ,sport| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| +г V reveal|¶ +ƽ ADJ aValue|ֵ,effect|Ч,gentle|,desired| +ƽ N human|,military| +ƽ V exist|,manner=together|ͬ +ƽ N human| + V BeSame|ͬ,sport| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N human|,religion|ڽ,male| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N sound|,#music| + N human|,*persuade|Ȱ˵ + N symbol|,#quantity| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +̸ V discuss|,content=peaceful|,politics| + N place|ط,ProperName|ר,(China|й) +ϡ V mediate| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ɫ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Լ N agreement|Լ,#peaceful|,politics| +Թ V ally| + ADJ aValue|ֵ,temperature|¶,warm| + N character|,surname|,human|,ProperName|ר +α ADV {comment|} +γ ADV {comment|} +ε ADV aValue|ֵ,degree|̶,very| +ε ADJ aValue|ֵ,kind|,question| +η ADV {comment|} +ι N {cause|ԭ,question|} +ο ADV {comment|} +ο CONJ {supplement|ݽ} +ֶΪ ADV {comment|} + ADJ aValue|ֵ,kind|,question| +ȥδ V do|,content=event|¼ +ʱ ADV time|ʱ,question| + N medicine|ҩ,(China|й) +ν V be|,question| + ADV {comment|} + ADJ aValue|ֵ,kind|,question| + ADV {cause|ԭ,question|} + ADV {manner|ʽ,question|} + ADV location|λ,question| +ֹ ADV aValue|ֵ,degree|̶,over| + V AmountTo|ܼ + ADJ aValue|ֵ,range|,all|ȫ + V fit|ʺ + V include| + V shut|ر +ϰ V manage|,manner=together|ͬ,commercial| +ϱ V compile|༭,manner=together|ͬ +ϲ V merge|ϲ +ϲ N human|,*merge|ϲ +ϳ V sing| +ϳ V forming|γ +ϳά N material| +϶Ϊһ V merge|ϲ +Ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϸ̳ N human|,*receive| +Ϸ N attribute|,standard|׼,law|ɷ,&event|¼ +Ϸ N place|ط,city|,ProperName|ר,(China|й) +ϸ ADJ aValue|ֵ,standard|׼,average|,desired| +Ϲ V merge|ϲ,patient=fund|ʽ,commercial| +Ϻ V fit|ʺ +ϻ N tree| +ϻ N tree| +ϻ V merge|ϲ,patient=fund|ʽ,commercial| +ϻ V attack|,manner=together|ͬ +ϼ N medicine|ҩ +ϼ V AmountTo|ܼ +ϼ ADJ aValue|ֵ,importance|,main| +ϼ V discuss| +ϼ V think|˼ +ϼ N community|,family|,complete| +Ͻ N metal|,material| +Ͻ N metal| +Ͽ V BeRecovered|ԭ,medical|ҽ +Ͽ ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + V ize|̬,PatientAttribute=correct|ȷ + V cooperate| + V ComeTogether| + V cooperate| +£ V merge|ϲ +ı N fact|,engage|,#crime|,together|ͬ,undesired|ݬ +ı V plan|ƻ,#crime|,manner=together|ͬ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V calculate| + ADJ aValue|ֵ,pattern|ʽ,proper|,desired| +ͬ N agreement|Լ +Χ V surround|Χ + V sleep|˯ +ҳ N part|,%machine| +һ V merge|ϲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V discuss| +Ӫ V manage|,manner=together|ͬ,commercial| +Ӱ V TakePicture| +Ӱ V image|ͼ,$TakePicture| + V use|,manner=together|ͬ +Լ N document|,#agree|ͬ,commercial|,industrial| +բ V TurnOn| + V fit|ʺ + N institution|,news|,ProperName|ר,(US|) + V compile|༭,manner=together|ͬ + V merge|ϲ,patient=fund|ʽ,commercial| + V recreation| + V cooperate| + N human|,cooperate| + V merge|ϲ + N tool|þ,cubic|,@put| +д N tool|þ,*record|¼ +з N food|ʳƷ +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N tool|þ,cubic|,@put| +ǹ N weapon|,*firing| + N beast| + N part|,%beast|,hair|ë + N waters|ˮ,linear| +Ӱ N part|,%land|½,#waters|ˮ,edge| +ӱ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ӵ N waters|ˮ,linear|,generic|ͳ +Ӵ N waters|ˮ,linear| +ӵ N waters|ˮ,linear| +ӵ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ӹ N waters|ˮ,small|С,linear| +ӹ N part|,%land|½,#waters|ˮ,edge| +ӿ N part|,%waters|ˮ,mouth| + N beast| + N waters|ˮ,linear| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +׹ N shows| + N place|ط,capital|,ProperName|ר,(Vietnam|Խ) + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,linear| + N waters|ˮ,linear| +ɽ N place|ط,#country| +̲ N part|,%land|½,#waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| + N part|,%waters|ˮ,linear| + N part|,%waters|ˮ,linear|,ProperName|ר + N part|,%waters|ˮ,curved| + N waters|ˮ,linear|,mass| + N place|ط,ProperName|ר,(China|й) +з N fish| + N part|,%land|½,#waters|ˮ,edge| +Դ N part|,%waters|ˮ,head|ͷ + V transport|,instrument=ship| + N fish| + ADJ aValue|ֵ,dampness|ʪ,waterless| +֮ N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר +ն N place|ط,capital|,ProperName|ר,(Finland|) +պ ADJ aValue|ֵ,quality|,great|ΰ,desired| +պ ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר +³ N human|,official|,politics|,ProperName|ר,(USSR|) +Ȼ ADJ aValue|ֵ,degree|̶,extreme| +Ȼ ADJ aValue|ֵ,impression|ӡ,strong|ǿ + CLAS unit|λ,&frequency|Ƶ + ADJ aValue|ֵ,color|ɫ,brown| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N bird| +׷ͯ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ⱥ ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + V congratulate|ף +ش N expression|,@congratulate|ף +ص N expression|,@congratulate|ף +ص N readings|,@congratulate|ף + N tool|þ,*congratulate|ף + V congratulate|ף,cause=festival| +ϲ V congratulate|ף,cause=festival| + N letter|ż,@congratulate|ף + ECHO sound| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,status|,^passed|ϸ +ڰ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ڰ ADJ aValue|ֵ,brightness|,dark| +ڰ ADJ aValue|ֵ,color|ɫ,black|,white| +ڰ ADJ aValue|ֵ,color|ɫ,colored| +ڰ ADJ aValue|ֵ,correctness|,&entity|ʵ +ڰ N attribute|,trueness|α,&entity|ʵ +ڰ N stationery|ľ,@write|д +ڰ屨 N readings|,news| +ڰ N community|,crime|,#police|,undesired|ݬ +ڲ ADJ aValue|ֵ,color|ɫ,black| +ڳԺ V cheat|ƭ +ڵ N community|,crime|,#police|,undesired|ݬ +ڵ N facilities|ʩ,route|·,dark| +ڵ N fact|,crime|,#police|,undesired|ݬ +ڵϹ ADJ aValue|ֵ,brightness|,dark| +ڶ N celestial| +ڶ ADJ aValue|ֵ,brightness|,dark| +ڶ N plant|ֲ +ڷ N part|,%human|,hair|ë,black| +ڸ N stone|ʯ,material| +ڸҹ N time|ʱ,day|,night| +ڹ¡ ADJ aValue|ֵ,brightness|,dark| +ڹ N MusicTool| +ڹ N lights| +ں N waters|ˮ,ProperName|ר +ں N place|ط,city|,ProperName|ר,(China|й) +ں ADJ aValue|ֵ,brightness|,dark| +ں ADJ aValue|ֵ,color|ɫ,black| +ڻ N inanimate|,$(smuggle|˽),#crime|,undesired|ݬ +ڻ N inanimate|,undesired|ݬ +ڿ N human|,*damage|,#software|,undesired|ݬ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N human|,*win|ʤ,sudden| + N livestock|,black| + N crop|ׯ + N account|,@record|¼,#name|,#crime| +ơ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,brightness|,dark| +Ȳ N disease| + N human|,#status|,^passed|ϸ + N human|,black| +ɫ ADJ aValue|ֵ,color|ɫ,black| +ɫ N physical|,#black| + N community|,crime|,#police|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,crime|,#police|,undesired|ݬ + N human|,#crime|,#police|,undesired|ݬ +ֵ N community|,crime| + N material|,?tool|þ + N attribute|,kind|,&character|,&symbol| + N natural|Ȼ + N attribute|,kind|,&character|,&symbol| + N stone|ʯ,material| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N beast| + N beast| +ѹѹ N qValue|ֵ,amount|,many| +ѹѹ ADJ qValue|ֵ,amount|,many| +ҹ N time|ʱ,day|,night| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,color|ɫ,black| + N fish| + N fruit|ˮ + N trace|,#skin|Ƥ,#human| + N trace|,celestial|,#weather| + N beast| +Ƥ ADJ aValue|ֵ,property|,#material| + N fish| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + N trace| +ۼ N trace| + ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ qValue|ֵ,amount|,few| +а ADJ aValue|ֵ,ability|,able|,help| +б ADJ aValue|ֵ,will|־,strong|ǿ + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,will|־,strong|ǿ +ݶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ץ V PayAttention|ע + V hate| + V repent|û +޲ V expect| +޲ V expect| + N fact|,undesired|ݬ,#sorry|ϧ +ɸ V worried|ż + V MakeSound| + V prosper| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,posture|,horizontal| + N part|,%character| +ᱩ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N place|ط,city|,ProperName|ר,(Japan|ձ) + N wealth|Ǯ +ֱײ V GoForward|ǰ +ᴩ V cross|Խ + V cross|Խ +̫ƽ V cross|Խ,LocationThru=waters|ˮ + N part|,%inanimate|,surfacial| + N mark|־ + V cross|Խ +½ V cross|Խ,LocationThru=land|½ + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +᳦ N part|,%AnimalHuman|,viscera| + V cross|Խ + N part|,%building|,bone| + N text|,$sign|д + N mark|־ + N part|,%inanimate|,surfacial| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ +ɨ V destroy| + ADJ aValue|ֵ,posture|,disorder|,undesired|ݬ + V exist| + V happen| +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| + V die| +Ƽ N part|,%AnimalHuman|,flesh| + ADJ aValue|ֵ,direction| + V IllBehave| +аԵ V IllBehave| + V levy|,possession=expenditure|,manner=fierce| + N mark|־,#location|λ,#direction| +ب V cross|Խ + V estimate| + V measure| + V estimate| + N tool|þ,*measure|,#weight| +ɽ N land|½,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,ordinary| +㶨 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɳ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ɽ N land|½,ProperName|ר,(China|й) + N attribute|,temperature|¶,lasting|,&physical| + N aspiration|Ը,desired|,lasting| + N celestial|,space|ռ + V MakeSound| + V expel| + V firing| + V firing|,military| +䶯 V excite|ж +䶯һʱ V excite|ж + V expel| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V firing|,military| +¡ V MakeSound| + V MakeSound| +Ȼ ADV aValue|ֵ,SoundVolume|,loud| +ը V firing|,military| +ը N weapon|,aircraft|,*firing| + V cheat|ƭ + V deceive|ƭ + V entice| +崫 V disseminate| +嶯 V excite|ж +ƭ V cheat|ƭ +ƭ V deceive|ƭ +ƭ V entice| + V rob| +Ȼ ADJ aValue|ֵ,behavior|ֹ,bustling| +̧ V MakeHigher|,commercial| +̧ V MakeHigher|,patient=price|۸,commercial| +ôЦ V laugh|Ц +Ц V laugh|Ц + V ServeAsFoil| + V WarmUp| + V dry| +決 V dry| + V dry| +濾 V cook| + V ServeAsFoil| + N tool|þ,@dry|,*cook| + V ServeAsFoil| + N CloudMist| +Ĥ N part|,%AnimalHuman|,#eye| + N tool|þ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N bird| + N letter|ż +蹵 N part|,%inanimate|,mouth| + N human|,able|,desired| + N bird| + N phenomena|,lucky|,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +鲨 N water|ˮ + ADJ aValue|ֵ,SoundVolume|,loud| +鶼˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Honduras|鶼˹) +鶼˹ N place|ط,country|,ProperName|ר,(South America|) +鶼˹ N human|,(Honduras|鶼˹) + N water|ˮ + N phenomena|,undesired|ݬ,#waterlogging|,#weather| + ADJ aValue|ֵ,SoundVolume|,loud| + N water|ˮ,strong|ǿ,#waters|ˮ +ˮ N phenomena|,#liquid|Һ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N water|ˮ,strong|ǿ,#waters|ˮ,#undesired|ݬ,#unfortunate| +ˮ N phenomena|,undesired|ݬ,#unfortunate| + N water|ˮ + N phenomena|,#liquid|Һ,#undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,quality|,great|ΰ + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ aValue|ֵ,attachment| +۾ N affairs|,industrial|,agricultural|ũ,commercial| +ͼ N plan|ƻ,great|ΰ +ΰ ADJ aValue|ֵ,posture|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V MakeBetter|Ż +Ը N aspiration|Ը,expect|,great|ΰ +ּ N thinking|˼,important| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N material|,red|,*congratulate|ף + N payment| + N result|,desired|,#succeed|ɹ + N fact|,GetMarried|,die| +ϲ N fact|,GetMarried|,die| + N disease| +Ǵ N disease| + N payment| +챦ʯ N stone|ʯ,treasure|䱦 + N drinks|Ʒ +쳡 N place|ط,ProperName|ר,(Russia|) +쳾 N place|ط,ordinary|,#human| + N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +춹 N part|,%tree|,#love|,embryo| +춹 N part|,%vegetable|߲,embryo|,$eat| +춹 N vegetable|߲ + N human|,female|Ů +칯 N medicine|ҩ + V BeWell|׳ + N fruit|ˮ +캣 N place|ط,ProperName|ר + N beast| +컨 N medicine|ҩ,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N army|,ProperName|ר,past| + N payment| + V angry| + V shy| + N InsectWorm|,undesired|ݬ + N human|,#young| + N tool|þ,$PutOn|,*decorate|װ + N plant|ֲ +¥ N readings|,glorious|,(China|й) +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ + N crop|ׯ,?material| +ñ N clothing|,#head|ͷ,red| +ñ N human|,#occupation|ְλ,*TakeAway|ᶯ +ù N medicine|ҩ +ľ N wood|ľ + N human|,*reconcile|,#GetMarried| + N tool|þ,@punish|,sport| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N mark|־,red|,desired| + N human|,able| + N material| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,color|ɫ,red|,&human| + ADJ aValue|ֵ,color|ɫ,red|,desired| +ɫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ N attribute|,color|ɫ,red|,&physical| + V cook| +ʮ N community|,medical|ҽ +ʮֻ N community|,medical|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N tree| + N material|,?edible|ʳ + N crop|ׯ,?material| +ͨͨ ADJ aValue|ֵ,color|ɫ,red|,desired| +ͷļ N document|,formal|ʽ + N material| + N lights| + N lights| + N human|,#community|,politics| +ϸ N part|,%AnimalHuman|,liquid|Һ + N part|,%event|¼,nerve| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ + N emotion|,loyal|Т,desired| + N human|,*perform|,glorious|,entertainment| + N mark|־ +ѧ N knowledge|֪ʶ,literature| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N human|,female|Ů,beautiful| + V angry| +۲ N disease|,eye| +۲ N emotion|,jealous|ʼ + ADJ aValue|ֵ,color|ɫ,red|,desired| +Ҷ N part|,%plant|ֲ,hair|ë + N human|,religion|ڽ +ӧǹ N weapon|,*stab| + N phenomena|,desired|,#lucky| + N attribute|,countenance|,red|,&human| + N fruit|ˮ +֩ N InsectWorm|,undesired|ݬ + V swollen| + V cook| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,mouth| + N tool|þ,*disseminate| +ͷ N part|,%AnimalHuman|,mouth| + N disease| + N character|,surname|,human|,ProperName|ר + N human|,royal| + N human|,royal| + N human|,royal|,female|Ů + N beast| + N human|,young|,wise| +ͷ N AlgaeFungi|ֲ + N beast| + V MakeSound| + V cry| + V cry| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| + ADJ aValue|ֵ,thickness|,thick| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ qValue|ֵ,amount|,many| + N emotion|,like|ϧ,kindhearted|,desired| + N attribute|,thickness|,&physical| +˱ V treat|Դ,manner=biased|ƫ + V WellTreat|ƴ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,thickness|,&physical| +ն ADJ aValue|ֵ,thickness|,thick| + N tool|þ,$GiveAsGift| + N payment|,many| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʵ ADJ aValue|ֵ,thickness|,thick| +ʵ ADJ qValue|ֵ,amount|,many|,desired| + V expect| +޳ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N aValue|ֵ,weight|,heavy| +Ƥ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V SayHello|ʺ + V wait|ȴ + V RegardAs| +Ա N human|,redundant| +ίԱ N human|,official|,politics| + V wait|ȴ,content=LandVehicle| + N room|,@wait|ȴ,#LandVehicle| + N bird| + V wait|ȴ,content=interrogate|,police| +ѡ N human|,$select|ѡ + V wait|ȴ,content=cure|ҽ,medical|ҽ + N room|,@wait|ȴ,#cure|ҽ,medical|ҽ + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,future| + N character|,surname|,human|,ProperName|ר + N human|,female|Ů,royal| + N human|,future| + N location|λ,hind| + N time|ʱ,future| +뱲 N time|ʱ,process|,@alive|,half| +볡 N part|,%fact|,#compete|,#exercise| + N time|ʱ,process|,@alive|,half| + N human|,future| + N location|λ,hind|,space|ռ + N part|,AnimalHuman|,hind|,body| + ADJ aValue|ֵ,property|,$SetAside|,replace| +۾ N human|,military| + ADJ aValue|ֵ,location|λ,hind| + N location|λ,hind| + N part|,%physical|,hind|,body| + N human|,future| + N time|ʱ + N human|,family|,male| + N human|,friend|,*help| + V fight| + N place|ط,hind|,military| + N part|,%AnimalHuman|,foot| + N part|,%clothing|,foot| + V LookBack| + V rotate|ת +֮ V worried|ż + N result| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,unfortunate|,undesired|ݬ + V repent|û + N part|,%text| + V KeepOn|ʹ + V KeepOn|ʹ + N part|,%clothing|,body| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N attribute|,effect|Ч,&drinks|Ʒ,&medicine|ҩ + N attribute|,strength|,&human| + ADJ aValue|ֵ,time|ʱ,hind| + ADV {supplement|ݽ} + V surpass|ǿ + N time|ʱ,ProperName|ר,past| +· N facilities|ʩ,linear| +· N facilities|ʩ,linear|,route|·,@GoBackward| + N human|,family|,female|Ů + N attribute|,power|,&human|,&organization|֯ + N part|,%building|,mouth| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,future| + N location|λ,hind|,space|ռ + ADJ time|ʱ,future| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N time|ʱ,future|,year| + N human|,family|,female|Ů + V fear| + N location|λ,hind| + N time|ʱ,ending|ĩ + V appear| +֮ N human|,able| + N affairs|,#provide| +ڲ N institution|,*provide| + N human|,future| + N human|,future|,*bear|е + N time|ʱ,afternoon| + N part|,%clothing|,body| + N part|,%human|,hind|,body| + ADJ aValue|ֵ,age|,adult| + N human|,adult| +η ADJ aValue|ֵ,ability|,able|,desired| + N human|,future| + N time|ʱ,future| + N fact|,#die|,#bury| +֮ʦ N human|,*teach|,future| + V MoveItBack| +̨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +̨ N facilities|ʩ,space|ռ,#perform| +̨ N human|,friend|,*help| + ADJ aValue|ֵ,source|Դ + N time|ʱ,future|,day| +Լ N disease| +ͷ ADJ aValue|ֵ,time|ʱ,future| +ͷ N location|λ,hind|,space|ռ +ͷ ADJ time|ʱ,future| + N part|,%animal|,leg| + V GoBackward| + N human|,*exercise|,(football|) + V KeepOn|ʹ +֢ N disease| + N human|,future| +Ӱ N trace|,#lights|,hind| +Ԯ N human|,*help| +Ժ N part|,%building|,space|ռ,hind| + N entity|ʵ +׺ N part|,language| + N part|,%LandVehicle|,@sit| + V cry| + V exhale| + V naming| + V exhale| +绽 V MakeTrouble| + V cry| + V weep| +ͺ N place|ط,city|,ProperName|ר,(China|й) + V call|ٻ + V cry| + V cry| + N human|,*cry| + V cry|,content=rescue| + ECHO sound| + N aspiration|Ը,expect| + V weep| + V respire| + N part|,%AnimalHuman|,viscera|,*respire| + N disease| + N part|,%AnimalHuman|,viscera|,*respire| +ϵͳ N part|,%AnimalHuman|,viscera|,*respire| +Х V MakeSound| +Х V GoThrough| + N character|,surname|,human|,ProperName|ר +Ӧ V fit|ʺ +Ӧ V reply| + N aspiration|Ը,expect| + V request|Ҫ +֮ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N character|,(China|й) + ECHO sound| + V despise| + ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + V despise| + V wave|ڶ + N tool|þ,cubic|,@WarmUp|,#liquid|Һ + N tool|þ,cubic|,@store| +« N plant|ֲ +« N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,past| + N part|,%human|,hair|ë + V TalkNonsense|Ϲ˵ + N InsectWorm|,*fly|,*sting| + N material|,?food|ʳƷ + N plant|ֲ + N material|,?food|ʳƷ + V IllBehave| + V MakeTrouble| + V quarrel| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܲ N medicine|ҩ,*improve| + V IllBehave| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N MusicTool| +˵ V TalkNonsense|Ϲ˵ +˵˵ V TalkNonsense|Ϲ˵ +˼ V guess|² + N fruit|ˮ +ͬ N facilities|ʩ,route|· + N part|,%AnimalHuman|,hair|ë + V TalkNonsense|Ϲ˵ + V TalkNonsense|Ϲ˵ + N human|,undesired|ݬ,*rob|,crime| + N part|,%AnimalHuman|,hair|ë +Ϊ V IllBehave| +Ϊ N human|,evil| + V wipe| + N MusicTool| + N character|,(China|й) + N InsectWorm|,*fly| + N FlowerGrass| + N shape| + N beast| +ٻ V damage| + N beast| + V entice|,means=please|ȡ +Ⱥ N human|,undesired|ݬ,friend| + N experience|,doubt| + V StateChange|̬ + V fasten|˩ + N shape| + N material|,?food|ʳƷ + V MakeLiving|ı +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N material|,*thicken|Ũ +Ū V deceive|ƭ +ǽֽ N paper|ֽ,*cover|ڸ,#skin|Ƥ,#building| +Ϳ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϳ N human|,foolish| + V MakeLiving|ı + N place|ط,ProperName|ר + N waters|ˮ,surfacial| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N waters|ˮ,surfacial| +ɽɫ N attribute|,scene|,&inanimate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%land|½,#waters|ˮ,edge| +ɫ ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +ͤ N facilities|ʩ,space|ռ,#waters|ˮ,@WhileAway| + N shape|,linear|,round|Բ + N lights| + N shape|,linear|,round|Բ + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N beast| + N document|,past|,*order|,military| + N SportTool|˶ + N part|,%human|,hand| + N place|ط,dangerous|Σ,undesired|ݬ,#die| +ڰ V treat|Դ,manner=brave|,target=dangerous|Σ + V escape|,cause=dangerous|Σ +ǯ N tool|þ,*hold| + V look|,manner=greedy|̰ +ͷβ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +Ѩ N place|ط,dangerous|Σ,military|,#die| + V frighten|Ż + V protect| + N facilities|ʩ,#waters|ˮ,*protect| + N part|,%building|,skin|Ƥ +Ǻ N facilities|ʩ,#waters|ˮ,*protect| + V keep| + V protect|,scope=wrong| + N tool|þ,*protect| + V protect| + N part|,%army| + V protect|,patient=official|,royal|,military|,police| + V TakeCare| + V TakeCare|,medical|ҽ +Ա N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ,mass| + V protect|,patient=tree| + N facilities|ʩ,*protect| + N entity|ʵ,*protect| + N tool|þ,*protect|,#religion|ڽ +ʿ N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ +ʿ N human|,#occupation|ְλ,official|,*TakeCare|,*cure|ҽ,medical|ҽ + V protect| + N tool|þ,*protect|,#leg| + N human|,*protect|,*defend| + V protect| + N weapon|,ship|,military| +ϥ N tool|þ,*protect|,#leg| + V TakeCare|,medical|ҽ + V foster| + V maintain| + N document|,*prove|֤,#country|,#tour| + ADV {EachOther|໥} + V enrich|ʵ,manner=EachOther|໥ + V visit|,politics|,manner=EachOther|໥ + V relate|й + V exchange| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + ADJ aValue|ֵ,ProsCons|,pros|,EachOther|໥,desired| + N attribute|,ability|,tie|,&entity|ʵ +» V understand|,manner=EachOther|໥ +ͨ V exchange| +ͨ V provide| + ADV {EachOther|໥} + V help|,manner=EachOther|໥ + N community|,#help|,EachOther|໥ + N place|ط,city|,ProperName|ר,(China|й) + N shows| + N account|,#wealth|Ǯ + N community|,#family| + N part|,%building|,mouth| + N account|,*record|¼,#status| + N account|,@record|¼,#status| + N attribute|,status|,&human| + N attribute|,status|,&human| +ڲ N account|,@record|¼,#status| +ͷ N account|,#wealth|Ǯ + N location|λ,%room|,external| + N human|,family| + N FlowerGrass| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,color|ɫ,colored| + N attribute|,pattern|ʽ,&inanimate| + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N disease| + N location|λ,#disease|,#wounded| + N shape| + V spend| + N tool|þ,#fire|,*WhileAway|,*congratulate|ף + ADJ aValue|ֵ,color|ɫ,grey| + N part|,%FlowerGrass|,body| + N part|,%FlowerGrass|,body| + N tool|þ,*decorate|װ + N material|,?clothing| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass| + N material|,?drinks|Ʒ + N LandVehicle| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N FlowerGrass|,mass| + N InsectWorm| + N tool|þ,*illuminate|,*congratulate|ף + N drinks|Ʒ,$addict|Ⱥ + N material|,?clothing| + N FlowerGrass| + N FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#plant|ֲ + V spend| + N part|,%FlowerGrass| +ʯ N material|,stone|ʯ,*build| + N material|,stone|ʯ,*build| +Ƕ N part|,%FlowerGrass|,embryo| + N part|,%FlowerGrass|,head|ͷ +Բ ADJ aValue|ֵ,circumstances|,happy|,desired| + N artifact|˹,*GiveAsGift|,#GetMarried| + N fruit|ˮ + N payment| + N human|,male|,flighty|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + N tool|þ,*decorate|װ + N FlowerGrass| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N time|ʱ,season|,#FlowerGrass| + ADJ aValue|ֵ,age|,aged| + N attribute|,posture|,#ShowOff|ҫ,&human| + N SportTool|˶ + N fact|,sport| + N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N material|,?food|ʳƷ + N LandVehicle|,#GetMarried| + N tool|þ,*look|,#aged|,#eye| + N tool|þ,*GiveAsGift| + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +¶ˮ N tool|þ,*MakeUp|ױ,liquid|Һ,fragrant| + N account|,*record|¼,#name| +ľ N plant|ֲ + N material|,?clothing| + N image|ͼ + N image|ͼ +ũ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N part|,%FlowerGrass| + N tool|þ,#fire|,*recreation|,*congratulate|ף + N tool|þ,cubic|,@planting|ֲ,#FlowerGrass| +ƿ N tool|þ,cubic|,*put|,#FlowerGrass| + N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N time|ʱ,#FlowerGrass| + N mark|־,(US|) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(US|) +Ǯ V spend|,patient=money| +Ǯ˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ǹ N plans|滮,undesired|ݬ,*deceive|ƭ +ǹ N weapon|,past|,stab| +Ȧ N tool|þ,#die| + N part|,%FlowerGrass|,heart| +ɫ N attribute|,pattern|ʽ,&artifact|˹ + ADJ aValue|ֵ,color|ɫ,colored| + N crop|ׯ + N material|,?food|ʳƷ,*cook| + N InstitutePlace|,*sell|,@buy|,#FlowerGrass|,commercial| + N tool|þ,#FlowerGrass| +˿ N part|,%FlowerGrass|,heart| +̳ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| +̳ N facilities|ʩ,space|ռ,@put|,#FlowerGrass| +Ƶ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N room| +Ž ADJ aValue|ֵ,bearing|̬,beautiful|,desired| +Ž ADJ aValue|ֵ,color|ɫ,colored| + N part|,%FlowerGrass| + N attribute|,pattern|ʽ,&inanimate| + N expenditure| + N information|Ϣ,interesting|Ȥ + V TalkNonsense|Ϲ˵ + N disease|,#look|,#aged|,#eye| + N attribute|,pattern|ʽ,&artifact|˹ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N fact|,sport| +ҩ N part|,%FlowerGrass| +Ҭ N part|,%vegetable|߲,embryo|,$eat| +Ҭ N vegetable|߲ +԰ N facilities|ʩ,space|ռ,@planting|ֲ,#FlowerGrass| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +֦չ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N part|,%FlowerGrass|,body| + N human|,poor|,undesired|ݬ,*beg| + N part|,%FlowerGrass|,body| + ECHO sound| + V betray|,politics|,military| + ECHO sound| +Ȼ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +Ц V laugh|Ц +ȡ V please|ȡ + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,grey| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר + N part|,%thing|,heart| + N place|ط,country|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N material|,?clothing| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף + N tool|þ,*illuminate|,*decorate|װ + N place|ط,ProperName|ר,(China|й) +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N place|ط,#wealth|Ǯ,(US|) + N fact|,entertainment| + N part|,%human|,hair|ë,white| + N tool|þ,royal| + N human|,industrial|,(China|й) + ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + CLAS unit|λ,&length|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,ProperName|ר,(China|й) + N human|,#country|,(China|й) + N human|,(China|й) +ɳ N place|ط,capital|,ProperName|ר,(Poland|) +ɽ N land|½,ProperName|ר,(China|й) +ʢ N place|ط,capital|,ProperName|ר,(the United States of America|) +ʢ N place|ط,provincial|ʡ,ProperName|ר,(US|) + ADJ aValue|ֵ,standard|׼,#temperature|¶ + N language|,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + N human|,(China|й) + N language|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V slide| + N SportTool|˶,sport| + N fact|,sport| + N part|,%machine| + V exercise|,sport| + N human|,sport| + N part|,%implement| + N facilities|ʩ,route|· + V slide| + N LandVehicle| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished| + V cook| + N part|,%implement| + ADJ aValue|ֵ,SmoothFinish|,polished| + V decline|˥,commercial| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + ADJ aValue|ֵ,SmoothFinish|,polished| +ʯ N material| +ʯ N stone|ʯ +ʯ N material| +ˬ ADJ aValue|ֵ,SmoothFinish|,polished| +ǹ N human|,*firing|,military| + N tool|þ,*recreation| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͷ N human|,sly|,undesired|ݬ + V fly| + V slide| +ѩ V slide| +ѩ N human|,sport| + V draw| + N image|ͼ,$draw| + N part|,%character| + N stationery|ľ,@draw| + N readings|,#image|ͼ + N PenInk|ī,*draw| +伢 V pretend|װ + N stationery|ľ,@draw| + N account|,@gather|ɼ,#image|ͼ +Ϊ V restrain|ֹ + N readings|,#image|ͼ,crude|ª +๷ V fail|ʧ + V draw| + N account|,@gather|ɼ,#image|ͼ + N human|,literature|,*draw| + N human|,*draw|,literature| + N image|ͼ + N publications|鿯,#image|ͼ + N part|,%building|,nerve| +㾦 V enrich|ʵ +ü V MakeUp|ױ +ü N bird| + N image|ͼ,#shows| + N part|,%image|ͼ,appearance|,skin|Ƥ +Ƥ N tool|þ,*cover|ڸ,*deceive|ƭ +Ƭ N image|ͼ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + ADJ fail|ʧ +ʦ N human|,literature|,*draw| + N room|,@draw| +̳ N community|,#draw| +ͼ V draw| + N text|,#shows| + V draw|,content=image|ͼ +Ѻ V write|д,content=mark|־ +Ѻ V write|д,content=name| +Ժ N institution|,#draw| +չ N fact|,@display|չʾ,#image|ͼ + V cut| + V delimit| + V distinguish|ֱ + V draw| + V drive|Ԧ + V issue|ַ + V plan|ƻ + V issue|ַ + V WorthNot|ֵ + V worth|ֵ + V delimit| + V classify| + V distinguish|ֱ + V include| + V occupy|ռ + V draw| + V cut| + V distinguish|ֱ +ȭ V compete| +ʱ ADJ aValue|ֵ,kind|,special| + V calculate| + V worth|ֵ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N ship|,small|С + V StateChange|̬ + V alter|ı + V change| + V consume|ȡ + V gather|ɼ +ʹΪ V alter|ı,StateIni=sorrowful|,StateFin=strength| + V remove| + V StateChange|̬ + N material|,*feed|ι,#crop|ׯ +ɸΪ V alter|ı,StateIni=enemy|,StateFin=friend| + N affairs|,#chemical|ѧ,industrial| + N InstitutePlace|,factory|,@produce|,#chemical|ѧ,industrial| +ҵ N affairs|,#chemical|ѧ,industrial| +Ϊ˽ V cheat|ƭ + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + V remove| + N method|,*cure|ҽ + V alter|ı,patient=name| + V attribute|,name| +ŧ V inflamed| + N entity|ʵ,$mean|ָ +ʯ N stone|ʯ +Ϊ V disappear|ʧ + N material|,?clothing| +Ϊ V BeRecovered|ԭ,StateIni=safe| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,#chemical|ѧ +ѧ N chemical|ѧ +ѧҩƷ N chemical|ѧ + V check| + N room|,@check| + N part|,%implement| +Ե V gather|ɼ +Ϊ V alter|ı,StateIni=complete|,StateFin=part| +װ V MakeUp|ױ +װ V pretend|װ +ױ V MakeUp|ױ +ױƷ N tool|þ,*MakeUp|ױ +ױʦ N human|,#occupation|ְλ,*MakeUp|ױ + V alter|ı + V speak|˵ + N text|,$speak|˵ + V farewell| + N information|Ϣ +Ͷ V FitNot| + N part|,%talk|̸,nerve| + N thought|ͷ,#talk|̸ + N part|,%talk|̸,nerve| + V LookBack| + V speak|˵,content=past| + N shows| + N community|,*perform|,entertainment| +л ADJ aValue|ֵ,behavior|ֹ,tactful| +˵ ADV {comment|} + N part|,%communicate|,heart| +Ͳ N tool|þ,*disseminate|,#sound| +ͷ N part|,%talk|̸,nerve| +Ա N human|,#occupation|ְλ,employee|Ա +ϻ N human|,*speak|˵ +ϻ N tool|þ,*disseminate|,#sound| + N sound|,#language| + N text|,$speak|˵ + N tree| + N tree| + V ThinkOf|˼ + N character|,surname|,human|,ProperName|ר + V cherish|Ļ + N emotion| + N part|,%AnimalHuman|,body| + V pregnant|,#medical|ҽ + V cherish|Ļ + N part|,%AnimalHuman|,body| + N tool|þ,*tell|,#time|ʱ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V ThinkOf|˼,content=past| + V hate| + N human|,*hate| + V ThinkOf|˼,content=past| + V ThinkOf|˼ + V ThinkOf|˼ + V entice|,politics| +̥ V pregnant|,#medical|ҽ + V ThinkOf|˼ + V doubt| + N experience|,doubt| +ɲ ADJ aValue|ֵ,countenance|,doubt| +ɵ ADJ aValue|ֵ,countenance|,doubt| + N human|,*doubt| + V cherish|Ļ + V pregnant|,#medical|ҽ +Ŷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) + V OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + N thought|ͷ,evil| + N attribute|,ProsCons|,cons|,undesired|ݬ,&entity|ʵ + N human|,undesired|ݬ,evil| + V OutOfOrder| + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N attribute|,reputation|,disgraced|,undesired|ݬ,&human|,&organization|֯ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V FeelingByBad| + N human|,undesired|ݬ,evil| +˵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V damage| + N fact|,undesired|ݬ + V OutOfOrder|,medical|ҽ + V WeatherBad| + N fund|ʽ,^$return| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V joyful|ϲ + V joyful|ϲ + V pass|ȹ,manner=joyful|ϲ + V praise|佱 +ϲϲ ADJ joyful|ϲ + V assemble|ۼ,manner=joyful|ϲ +һ V assemble|ۼ,manner=joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V congratulate|ף +׶ V joyful|ϲ +Ц N sound|,#joyful|ϲ + V farewell| + V joyful|ϲ +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ +Ц V laugh|Ц + V joyful|ϲ + N emotion|,like|ϧ,kindhearted|,desired| + V entertain|д +ӭ V welcome|ӭ +ӭ N fact|,welcome|ӭ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +Ծ V joyful|ϲ + V joyful|ϲ + V BeNear| + N shape| + V protect|,patient=environment| + N institution|,*protect|,#environment|,ProperName|ר + V BeNear| + N location|λ,%city| + V look| + V BeNear|,partner=waters|ˮ + N part|,%event|¼ + N attribute|,environment|,&entity|ʵ + V protect|,patient=environment| +滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) + N attribute|,cleanness|ྻ,spotless|,&space|ռ +Ⱦ V pollute|ʹ,patient=environment| + V flow|,manner=circulate|ѭ +· N facilities|ʩ,route|· + N earth|,space|ռ + V BeNear| + V coil| +ɽ V BeNear|,partner=land|½ +ɽ N location|λ,%land|½ + V look| + V clean|ʹ,patient=environment| + ADJ aValue|ֵ,form|״,round|Բ +֬ N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V GoBack| + ADV Vcontinue| + ADV aValue|ֵ,degree|̶,more| + ADJ aValue|ֵ,standard|׼,average|,undesired|ݬ + ADV also|Ҳ + V return| + V return|,commercial| + V return|,possession=wealth|Ǯ,commercial| +Ϣ V return|,possession=wealth|Ǯ,commercial| + V return|,^Vable| + V return| + V return|,commercial| + ADJ aValue|ֵ,standard|׼,average| + V BeRecovered|ԭ,StateIni=die| + V resist| + V resist|,military| + V discuss|,content=price|۸,commercial| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V return| + ADV time|ʱ + CONJ {or|} + V resist| + V GoBack|,LocationFin=place|ط +ԭ V BeRecovered|ԭ +ԭ N chemical|ѧ +ԭø N chemical|ѧ +Ը V obey|ѭ,content=agree|ͬ +ծ V return|,possession=wealth|Ǯ,commercial| + V refute| + V BeRecovered|ԭ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + V weaken| + N part|,%machine|,*weaken| + N part|,%software|,*store| + N part|,%computer|,*store| + V BeRecovered|ԭ + V weaken| + ADJ weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + V delay| + N attribute|,circumstances|,&event|¼ + V mediate| + V delay|,patient=build| + V weaken| + ADJ aValue|ֵ,speed|ٶ,slow| + N part|,%land|½,skin|Ƥ + V delay| + V BeRecovered|ԭ + V delay|,patient=punish|,#police| + V fact|,punish|,#police| + V VehicleGo|ʻ,manner=slow| + V walk|,manner=slow| + V BeRecovered|ԭ + V delay|,content=levy| + V exchange| + V exchange|,commercial| + V replace| + V replace|,patient=affairs| + V replace|,patient=foot| + V replace|,patient=crop|ׯ,agricultural|ũ + V replace|,patient=LandVehicle| + V replace| + V cease|ͣ,content=defend|,military| + V cease|ͣ,content=defend|,military| + V exchange|,possession=location|λ + V exchange|,patient=affairs| + V replace|,patient=clothing| +仰˵ ADV {comment|} +ë V replace|,patient=hair|ë + V respire| +Ǯ V exchange|,possession=money| +ȡ V exchange| + V replace|,patient=human|,sport| + V exchange| +ҩ V BeSame|ͬ + V exchange|,possession=document| +ϴ V replace| + N part|,%machine|,*change|,#direction| +֮ ADV {comment|} +ҩ V replace|,patient=medicine|ҩ,medical|ҽ + V SufferFrom|,medical|ҽ + N emotion|,sad|dz,undesired|ݬ + N phenomena|,undesired|ݬ,#unfortunate| + V sad|dz +ǾҲ V ill|̬ + V ill|̬ + N location|λ,#ill|̬ +ûʧ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ûʧ V worried|ż,cause=ProsCons| + V ill|̬ +빲 V undergo|,content=hardship|,manner=together|ͬ + V SufferFrom| + N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + V cry| + V LookBack| + V call|ٻ + V call|ٻ + V foster| + ADJ aValue|ֵ,brightness|,bright| + V AppearanceChange|۱ + V illuminate| +Ȼһ V prosper| +ɢ V BeBad|˥ +ɢ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɢ V weaken| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official| + N human|,#occupation|ְλ,official|,#royal| + N undertake|,content=official| +¹ N human|,#occupation|ְλ,official|,#royal| +º N community|,official| +; N phenomena|,#official| + ADJ aValue|ֵ,trueness|α,fake|α +õ N fact|,*disseminate| +õ N tool|þ,*disseminate| +û V change| +þ N experience|,empty|,wrong| + V disappear|ʧ + V think|˼ + N thought|ͷ,empty| +Ӱ N image|ͼ,empty|,wrong| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V despise| + N land|½,desolate|,undesired|ݬ + N land|½,surfacial|,desolate|,undesired|ݬ + N phenomena|,undesired|ݬ,wane|˥ +IJ N FlowerGrass| +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ĵ N human|,wrong|,undesired|ݬ +ĵ N land|½,surfacial|,desolate|,undesired|ݬ +ķ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ķ ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +ķ V despise| +ķ V end|ս +Ľ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Į N land|½,surfacial|,barren|,undesired|ݬ +Į N land|½,surfacial|,desolate|,undesired|ݬ + N time|ʱ,year|,undesired|ݬ,desolate|,#unfortunate| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V end|ս +ɽ N land|½,desolate| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,desolate|,undesired|ݬ +Ұ N land|½,surfacial|,desolate|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ԭ N land|½,desolate| + V abandon| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + V flurried| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +æ V flurried| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V flurried| + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + V end|ս +ƲӲ ADJ aValue|ֵ,color|ɫ,yellow| +Ƴγ ADJ aValue|ֵ,color|ɫ,yellow| +Ƶ N time|ʱ,day|,happy| +ƶ N crop|ׯ +ƶ N part|,%vegetable|߲,embryo|,$eat| +ƶ N vegetable|߲ +Ʒ N InsectWorm|,*fly| +ƹ N part|,%vegetable|߲,embryo|,$eat| +ƹ N vegetable|߲ +ƺ N waters|ˮ,ProperName|ר,(China|й) +ƺ N waters|ˮ,linear|,ProperName|ר,(China|й) +ƺɫ ADJ aValue|ֵ,color|ɫ,brown| +ƺɫ ADJ aValue|ֵ,color|ɫ,yellow| +ƻ N FlowerGrass| +ƻ N FlowerGrass|,?food|ʳƷ +ƻ N part|,%vegetable|߲,embryo|,$eat| +ƻ N vegetable|߲ +ƻ N fish| +ƻޣ N FlowerGrass| +ƻ N time|ʱ,night| +ƽ N material|,?food|ʳƷ +ƽ N metal|,material| +ƽʱ N time|ʱ,good| +ƾ N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ,(China|й) +ľ N tree| + N thought|ͷ,empty| + N chemical|ѧ + N plant|ֲ +ëѾͷ N human|,young|,female|Ů +÷ N time|ʱ,season|,#RainSnow|ѩ +÷ N RainSnow|ѩ + N material|,?food|ʳƷ,#crop|ׯ + N bird| +ţ N livestock| + N tool|þ,@punish|,sport| +ۼ V become|Ϊ,isa=official|,politics| +Ȳ N disease| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɳ N stone|ʯ + ADJ aValue|ֵ,physique|,ripe| + N beast| + N beast| +ͭ N metal|,material| + N stone|ʯ +ԭ N land|½ + N livestock| + N material|,*lubricate| + N material|,?food|ʳƷ + N fish| + N stone|ʯ,?material| + N medicine|ҩ,(China|й) +ݺ N bird| + N bird| + N disease| + N fish| + N beast| + N character|,(China|й) +ǰ N medicine|ҩ + N InsectWorm|,undesired|ݬ,*fly| +ȳ N InsectWorm|,undesired|ݬ,*fly| + N part|,%implement| +Ƭ N part|,%MusicTool| + ADJ aValue|ֵ,rank|ȼ,official| +ʵ N human|,#occupation|ְλ,royal| +ʸ N character|,surname|,human|,ProperName|ר +ʹ N house|,royal| +ʹ N clothing|,#head|ͷ,royal| +ʺ N human|,royal|,female|Ů +ʼ ADJ aValue|ֵ,rank|ȼ,official| +ʼ N community|,royal| + N human|,royal| + N community|,royal| +̫ N human|,royal|,female|Ů +̫ N human|,royal|,male| +̻ V worried|ż +̻̲ V worried|ż +̻ V worried|ż +̿ V fear| +ֲ̿ V fear| + V fear| + ADJ aValue|ֵ,brightness|,bright| + V SelfMoveInManner|ʽ,manner=fast| + V illuminate| + V shake|ҡ + V wave|ڶ +ε V shake|ҡ +ε V wave|ڶ +ζ V wave|ڶ + V shake|ҡ + V wave|ڶ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־,*deceive|ƭ + N mark|־,commercial| + ADJ aValue|ֵ,duration|,TimeShort| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ V know|֪ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N text|,*deceive|ƭ +ѱ V deceive|ƭ +ѳ V deceive|ƭ +ѻ N text|,*deceive|ƭ +ƭ V deceive|ƭ + N text|,*deceive|ƭ + ADJ aValue|ֵ,color|ɫ,grey| + N material|,@build| + N stone|ʯ,waste| +Ұ ADJ aValue|ֵ,brightness|,dark| +Ұ ADJ aValue|ֵ,color|ɫ,grey| +Ұ ADJ aValue|ֵ,color|ɫ,white| +ҳ N stone|ʯ,waste| +ҹ N human|,female|Ů,able| +һɫ ADJ aValue|ֵ,color|ɫ,yellow| +ҽ N stone|ʯ,waste|,#burn| +ҿ N metal|,material| + ADJ aValue|ֵ,brightness|,dark| + V disheartened| + ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,behavior|ֹ,pessimistic|,undesired|ݬ +ɫ ADJ aValue|ֵ,brightness|,dark| +ɫ ADJ aValue|ֵ,clearness|,blurred| +ɫ ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N beast| + V disheartened| +ɥ V disheartened| + V disperse|ɢ + V order| + V shake|ҡ + V wipe| +ӱ V write|д +Ӷ V shake|ҡ +Ӷ N human|,*shake|ҡ +ӷ V disappear|ʧ,industrial| +ӷ N attribute|,performance|,disappear|ʧ,&liquid|Һ,industrial| +Ӹ V shake|ҡ,patient=weapon| +Ӻ V excrete|й,patient=waste| +Ӻ V excrete|й,patient=waste| +Ӻ V write|д +ӻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӻ V lavish|˷ +ӽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ӽ V lavish|˷ + V wipe| + V draw| + V spray| + V write|д + V write|д,manner=fluent| +ʦ V order|,patient=army| + V shake|ҡ,patient=hand| + V shake|ҡ + N attribute|,brightness|,&inanimate| + V illuminate| +Ի ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ի ADJ aValue|ֵ,brightness|,bright| +Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ӳ V illuminate| + N mark|־ +ī N PenInk|ī,*write|д + N mark|־ + ADJ aValue|ֵ,range|,extensive| +ָ V BeRecovered|ԭ +ָ V TakeBack|ȡ +ָ V resume|ָ +ָ N time|ʱ,@BeRecovered|ԭ,medical|ҽ +ָ֪ V BeRecovered|ԭ,StateIni=dizzy| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֺ V CauseToGrow|ʹɳ +ֺ ADJ aValue|ֵ,range|,extensive| +ֻ ADJ aValue|ֵ,range|,extensive| +׳ N InsectWorm| +׳没 N disease| + V GoBack| + V circle| + V reply| + V turn|Ťת +ذ V visit| +ر V recompense| +ر V reply| +ر V revenge| +ر V evade|ر +ز V refute| +ز ADJ aValue|ֵ,ability|,unable|ӹ,GoBack| +س N part|,%AnimalHuman|,viscera| +س ADJ aValue|ֵ,impression|ӡ,good|,desired| +س ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +س V order|,#computer| +س N fact|,GoBack| +ش V BeRecovered|ԭ,medical|ҽ +ش V time|ʱ,season|,#start|ʼ +ش V reply| +ش N human|,*reply| +ص V MakeSound| +ص V GoBack|,Vachieve| +ص V reply|,instrument=letter|ż +ط V GoBack|,LocationFin=place|ط +ط V GoBack|,LocationFin=place|ط +ط V visit| +ظ V reply| +ظ V reply|,instrument=letter|ż +ع V LookBack| +ع ADJ aValue|ֵ,attachment|,past| +عչ N fact|,InstitutePlace|,@display|չʾ,#past| +ع V GoBack| +ع V include| +ع N disease| +ع N law|ɷ,#earth| +ع V cook|,manner=also|Ҳ +غ CLAS NounUnit|,&event|¼ +ػ V reply| +ػ ADJ aValue|ֵ,form|״,curved| +ػ V WarmUp|,industrial| +ػ V resist| +ػ V resist|,military| +ؼ V GoBack|,LocationFin=family| +ؽ N knowledge|֪ʶ,religion|ڽ +ؽͽ N human|,religion|ڽ +ؾ V recompense| +ؾ V revenge| +ؾ V salute|¾ +ؾ V reject|ؾ +ؿ N payment| + V GoBack| + N part|,%building|,nerve| + V GiveAsGift|,possession=artifact|˹ + V salute|¾ + V flow|,manner=reverse|ߵ + N water|ˮ + V collect|,commercial| + V cook|,manner=also|Ҳ +¯ V cook|,manner=also|Ҳ +¯ V produce|,manner=also|Ҳ +· N facilities|ʩ,route|·,@GoBack| +· N image|ͼ,linear| +· N part|,%implement| + V BecomeLess| + N human|,ProperName|ר,(China|й) +ȥ V GoBack| + N sound| + V BeBad|˥ + V BeRecovered|ԭ,medical|ҽ + V BecomeMore| +ʦ V GoBack|,military| + V collect| + V obtain|õ +վ N InstitutePlace|,*collect|,#waste| +װ N facilities|ʩ,*collect| + V CausePartMove| + V resist| + V CausePartMove|,PatientPartof=head|ͷ + V LookBack| + V LookBack| +췦 V BeUnable|,content=help| +췦 V BeUnable|,content=help| + V BeUnable|,content=help| +֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ + V fill| +ͷ V CausePartMove|,PatientPartof=head|ͷ +ͷ V repent|û +ͷ· N facilities|ʩ,route|·,@GoBack| +ζ V LookBack| +ζ ADJ aValue|ֵ,content|,substantial|ʵ,desired| + V GoBack|,LocationFin=place|ط + V circle| + V LookBack| + N sound| +ת V BeRecovered|ԭ + V reply|,instrument=letter|ż + N stationery|ľ,*hold| + V repair| + V SelfMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V circle| + V MoveItBack| + V LookBack| +¼ N readings|,#LookBack| + ADJ aValue|ֵ,behavior|ֹ,#LookBack| + N sound| + N text|,#reply| +Ӧ V reply| + V GiveAsGift| +ִ N text|,*reply| +ת V TurnRound| + N community|,ProperName|ר,(China|й) + V refute| + V reply| + V look| + V StateChange|̬ + V damage| + V destroy| + V produce|,manner=also|Ҳ + V slander|̰ +ٰ V slander|̰ +ٻ V damage| +ٻ V destroy| + V destroy| + ADJ aValue|ֵ,ability|,able|,destroy| + V destroy| + V remove| + V damage|,patient=appearance| + V damage| + V damage| +һ V suffer|,content=destroy| +Լ V disobey|Υ,content=MakeAppointment|Լ + V repent|û +ڲ V repent|û +ڸ V amend| +ڹ V repent|û,cause=wrong| +ڹ V document|,*express|ʾ,#repent|û +ں V repent|û + V repent|û +֮޼ V repent|û + V repent|û + N human|,*repent|û + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,ability|,able|,perception|֪ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + N emotion|,like|ϧ,kindhearted|,desired| + N phenomena|,desired| +ݹ V arrive| + V arrive| + N place|ط,capital|,ProperName|ר,(New Zealand|) + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,day| + N time|ʱ,day|,night| +ް ADJ aValue|ֵ,brightness|,dark| + V unfortunate| +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N artifact|˹,crime| + V entice|,means=GiveAsGift|,crime| +߽ N artifact|˹,crime| +¸ N artifact|˹,crime| +¸ V entice|,means=GiveAsGift|,crime| + V entice|,means=GiveAsGift|,crime| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N fact|,undesired|ݬ,disgraced| + V BeAble|ܹ + V ComeTogether| + ADJ aValue|ֵ,ability|,able|,desired| + N community| + N fact| + N fact|,@communicate| + V meet| + V pay| + N time|ʱ + N time|ʱ,important| + V understand| + AUX {modality|} + N mark|־ + V eat|,manner=together|ͬ +᳡ N place|ط,@communicate| +᳤ N human|,#occupation|ְλ,official|,#community| + N expenditure| + N InstitutePlace| + V ComeTogether| +Ự V speak|˵ + N mark|־ + N affairs|,calculate|,#wealth|Ǯ + N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ƹ N affairs|,calculate|,#wealth|Ǯ +ʦ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ + V meet| + N human|,*meet| + V ComeTogether| +͸ N tool|þ,*assemble|ۼ,#lights| +` N publications|鿯 +ῼ N fact|,#exam| + V meet|,partner=human| + V meet| + N mark|־ +ǩ V sign|д,manner=together|ͬ + V discuss| + V interrogate|,police| +ʦ V meet|,partner=army|,military| + N InstitutePlace| +̸ V discuss| + N room| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V meet| + N affairs| + V understand| + V perform| + V know|֪ + V understand| + N fact|,@communicate| + N institution|,politics|,#country| + N part|,%human| +Ա N human|,#community| +ս V endeavour| +ս V fight|,military| + V pay|,possession=money| + V pay|,possession=money| + V diagnose|,manner=together|ͬ,medical|ҽ +ַ N location|λ,%community| +ַ N location|λ,%fact|,@communicate| + V cook| + V ComeTogether| + V assemble|ۼ + V post|ʼ,commercial| +㱨 V tell| +㱨 N fact|,@tell| + V compile|༭ + N readings| + V post|ʼ,patient=money|,commercial| + V ComeTogether| +ϴ N location|λ,@ComeTogether| +ϵص N location|λ,@ComeTogether| +㼯 V ComeTogether| +㼯 V compile|༭ +㼯 V gather|ɼ + N quantity|,rate|,&money|,commercial| + V ComeTogether| + V post|ʼ,patient=money|,commercial| + N bill|Ʊ,#post|ʼ,#money|,commercial| + N human|,*post|ʼ,#money| + V ComeTogether|,#water|ˮ + N quantity|,rate|,&money|,commercial| +Ʊ N bill|Ʊ,#post|ʼ,#money|,commercial| + V perform| + V gather|ɼ + V evade|ر +伲ҽ V HideTruth|,content=wrong|,purpose=evade|ر,#amend| +伲ҽ ADJ HideTruth|,content=wrong|,purpose=evade|ر,#amend| +Ī V KeepSilence|˵ + V HideTruth| + V KeepSilence|˵ + V teach| +˲ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +˲ V endeavour|,content=teach| + V draw| +滭 V draw| +ɫ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ͼ V draw| + V draw| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,attachment| + N food|ʳƷ,generic|ͳ + N material|,?food|ʳƷ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| +谵 ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| + V dizzy| +赹 V dizzy| + ADJ aValue|ֵ,brightness|,dark| +軨 V disable|м,scope=look| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,yellow| +˯ V sleep|˯ + N human|,royal|,official|,undesired|ݬ + V dizzy| +˯ V sleep|˯ +ڵ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +ڵ ADJ aValue|ֵ,brightness|,dark| +ڵ V dizzy| +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N celestial|,space|ռ +ѣ V dizzy| +ӹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V dizzy| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fact|,GetMarried| + ADJ aValue|ֵ,time|ʱ,hind|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + V GetMarried|,love| + N attribute|,age|,#GetMarried|,&human| + N time|ʱ,day|,#GetMarried| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#GetMarried| +ɴ N clothing|,#GetMarried| + N fact|,GetMarried| + N fact|,GetMarried| + N law|ɷ,#GetMarried| + N emotion| + N humanized|,undesired|ݬ + N mental| + N mental|,desired| +겻 V uneasy| +겻 V uneasy| +ɢ V fear| + N mental| + ADJ aValue|ֵ,clearness|,blurred| +뵰 N human|,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +جج ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼһ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,range|,all|ȫ +׺͹ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| + N tool|þ,*measure|,#weather| +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V MakeLiving|ı,means=slack|͵ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V associate| + V confuse| + V pretend|װ,content=RegardAs| + V pretend|װ,content=RegardAs| + V weave|,means=mix| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +˫ N fact|,compete|,sport| +켣 V appear|,manner=flighty| +콻 N tree| + V GoInto|,manner=secret| + V include|,manner=secret| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N phenomena|,disorder|,undesired|ݬ + N chemical|ѧ + N material|,@building| + V GoInto|,manner=secret| + V include|,manner=secret| +ħ N human|,evil|,undesired|ݬ +˫ N fact|,compete|,sport| +ͬ V confuse| +Ϊһ̸ V confuse| + V confuse| + V mix| +Ѫ ADJ aValue|ֵ,kind|,mixed| +Ѫ N human|,#kind|,mixed| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +ս V fight| +ս V fight|,military| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V abandon| + V exempt| + V split|ƿ +ȥ V endeavour|,manner=venture|ð + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + N part|,%place|ط,mouth| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,brightness|,bright| + V exempt| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADJ aValue|ֵ,width|,wide| +Ȼ V understand| + N disease|,#mouth| + N human|,*SufferFrom|,#mouth| + V CauseToLive|ʹ + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,physique|,alive| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + V alive| + N artifact|˹,generic|ͳ + N fact|,do|,engage| + N part|,%artifact|˹,#produce|,industrial| + ADV {emphasis|ǿ} + N tool|þ,*print|ӡˢ + N part|,%AnimalHuman| + N human|,interesting|Ȥ + V WhileAway|,means=jump| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V entice| + V exercise| + N fact|,generic|ͳ + N human| + N attribute|,performance|,&chemical|ѧ + N affairs|,$undertake|,#earn|׬,#alive|,#occupation|ְλ + N artifact|˹,$produce|,generic|ͳ + N human|,religion|ڽ + V fit|ʺ + V CauseToLive|ʹ + ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs| + V check|,medical|ҽ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N shape| + N human|,#information|Ϣ,$catch|׽ס + N human|,*alive| + N attribute|,strength|,$function|,&AnimalHuman| + N attribute|,strength|,$function|,&physical| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +· N method|,*earn|׬,*alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V kill|ɱ + N part|,%implement| + V alive| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,frequency|Ƶ,^regular|,commercial| + N human|,*alive| + N part|,%machine| + N part|,%machine| + N part|,%machine| + ADJ aValue|ֵ,trueness|α,true|,desired| +ˮ N water|ˮ,*flow| + V appear| + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +̿ N chemical|ѧ +Ѫ V CauseToLive|ʹ,patient=nerve|,medical|ҽ + N human|,evil|,undesired|ݬ + V use|,manner=flexible| +Ծ V CauseToLive|ʹ +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +׽ V catch|׽ס + V alive| +ֵ N human|,*know|֪,#expression|,desired| +֯ V check|,medical|ҽ + CLAS NounUnit|,&entity|ʵ + N attribute|,relatedness|,&human| + N community| + N food|ʳƷ,generic|ͳ + N human|,friend| + N human|,friend| +﷿ N room|,@cook| + N human|,#occupation|ְλ,*cook| + N human| + N human|,#occupation|ְλ,*sell|,employee|Ա,commercial| + N human|,#occupation|ְλ,agricultural|ũ + N human|,friend| +ʳ N food|ʳƷ,generic|ͳ +ʳ N expenditure|,#edible|ʳ +ͬ PREP {partner} + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V angry| + N disease| + N emotion|,angry|,undesired|ݬ + N fire| + N weapon|,*firing| + N tool|þ,*lighting|ȼ,*illuminate| + ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,desired| + V fight|,military| + N tool|þ,*lighting|ȼ + N tool|þ,cubic|,@put| + N place|ط,#fire|,#unfortunate|,#police|,undesired|ݬ + N LandVehicle| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +ͷ N part|,%LandVehicle|,head|ͷ,*pull| +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ N facilities|ʩ,space|ռ,#electricity| + V attack|,instrument=fire|,military| + N lights|,#fire| + N tool|þ,cubic|,@cook| + N fire|,strong|ǿ + ADJ aValue|ֵ,color|ɫ,red| + N attribute|,degree|̶,&cook|,&WarmUp| + N time|ʱ,important| + N beast| + N fire| + N part|,%machine| + V burn|,purpose=bury|,#human|,#die| + N bird| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N tool|þ,*hold| + N weapon|,*firing| +Ѳ N weapon|,ship|,military| +ר N human|,#knowledge|֪ʶ + N phenomena|,undesired|ݬ,#burn| + N tool|þ,*lighting|ȼ,*illuminate| + N tool|þ,*hold| + ADJ aValue|ֵ,temperature|¶,hot| + N attribute|,strength|,&army|,military| + V produce|,PatientProduct=electricity| +糧 N facilities|ʩ,space|ռ,factory|,*produce|,#electricity| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fight|,&army|,military| + N InsectWorm| + N fact|,congratulate|ף + N part|,%building| +¯ N tool|þ,*WarmUp| +ð V ExpressAnger|ʾŭ + N fire| + N material|,@lighting|ȼ +ū³³ N place|ط,city|,ProperName|ר,(US|) + N weapon|,*firing| + N tool|þ,*WarmUp| + N weapon|,generic|ͳ + N emotion|,angry|,undesired|ݬ +ǯ N tool|þ,*hold| +ǹ N weapon|,*firing| +ǽ N part|,%building|,*WarmUp|,skin|Ƥ + N attribute|,circumstances|,#fire|,#police|,undesired|ݬ + N fire| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,hot| +ɽ N land|½,*exhale| +ϼ V MakeBetter|Ż + V destroy|,instrument=fire| + N food|ʳƷ +ջ V worried|ż +üë ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N CloudMist|,colored| + N fire| + N attribute|,intensity|ǿ,&fire| + N phenomena|,scene|,beautiful| + ADJ aValue|ֵ,speed|ٶ,fast| +̿ N stone|ʯ,material|,*lighting|ȼ +ͷ N attribute|,degree|̶,&cook|,&WarmUp| +ͷ N emotion|,angry|,undesired|ݬ +ͷ N fire| +ͷ N human|,#occupation|ְλ,military|,*cook| + N food|ʳƷ,flesh| +ȵ N food|ʳƷ + N weapon|,#firing|,military| + V guarantee|֤,scope=fire|,commercial| + N place|ط,military|,@fight| + N tool|þ,linear|,*transmit|,#electricity| + N celestial| + N fire| + N fire| +ҩ N weapon|,*firing| + N material|,liquid|Һ,$burn| + N phenomena|,undesired|ݬ,#fire|,#unfortunate| + V burn| +᳡ N InstitutePlace|,@burn|,#human|,#die| + N material|,*lighting|ȼ + N building|,#fire|,$burn| +ש N material|,@building| + V catch|׽ס + V catch|׽ס,military|,police| + V enjoy| + V gather|ɼ,agricultural|ũ + V obtain|õ + V obtain|õ,possession=text| + V enjoy| + V fulfil|ʵ + V obtain|õ + N human|,*obtain|õ + V enjoy|,content=reward| + N human|,$reward| + V enjoy|,content=rescue| + V earn|׬ +ȡ V obtain|õ +ʤ V win|ʤ + V enjoy|,content=release|ͷ,police| +Ϥ V know|֪ + V obtain|õ,possession=pros| +֪ V know|֪ +׼ V enjoy|,content=appreciate|޳ + COOR {or|} + ADV aValue|ֵ,degree|̶,ish| + COOR {or|} + ADV {comment|} + ADV {comment|} + COOR {or|} + V deceive|ƭ + V ignorant|֪ + N character|,surname|,human|,ProperName|ר + N disease| + N place|ط,capital|,ProperName|ר,(Solomon Islands|Ⱥ) + N human|,unable|ӹ,undesired|ݬ + N inanimate|,commercial|,generic|ͳ + N money| +һ V collect|,possession=money|,commercial| +һ֯ N part|,%institution|,#commercial|,#fund|ʽ,(institution|=UN|Ϲ) + N room|,%vehicle|ͨ,@put|,#inanimate| + N facilities|ʩ,space|ռ,@store| + N facilities|ʩ,space|ռ,@store| + N LandVehicle|,@transport|,#inanimate| + N ship|,*transport|,#inanimate| + N bill|Ʊ,#transport| + V pay|,possession=expenditure|,time=obtain|õ,commercial| + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N tool|þ,@put|,#transport|,#vehicle|ͨ + N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| + N wealth|Ǯ,commercial| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N ship|,*transport|,#inanimate| +Ʒ N inanimate|,commercial|,generic|ͳ +ɫ N human|,unable|ӹ,undesired|ݬ +ɫ N inanimate|,commercial|,generic|ͳ +ɫ N inanimate|,waste|,undesired|ݬ +ɫ N text|,undesired|ݬ + N inanimate|,commercial|,generic|ͳ +Դ N location|λ,@ExistAppear|,#inanimate| + V transport| + N quantity|,amount|,&transport| +ջ N facilities|ʩ,space|ռ,@put|,@store| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,commercial| + V damage| + N phenomena|,unfortunate|,undesired|ݬ + V unfortunate|,manner=many| +ӿڳ V unfortunate|,cause=speak|˵ +콵 V unfortunate|,LocationIni=sky| + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V damage|,patient=country| + V damage| + N phenomena|,unfortunate|,undesired|ݬ +ǽ V happen|,experiencer=unfortunate|,location=internal| + N phenomena|,unfortunate|,undesired|ݬ + N human|,crime|,undesired|ݬ +̥ N cause|ԭ,#phenomena|,#unfortunate|,undesired|ݬ + V attack|,military| + V beat| + V bump|ײ + V defeat|սʤ + V kill|ɱ + V destroy| + V destroy|,military| + V OutOfOrder| + V stab| + V beat| + V beat| + V destroy| + N fact|,sport| + V defeat|սʤ + V destroy| + V destroy| + V destroy|,military| + V defeat|սʤ + V destroy| + V beat|,patient=SportTool|˶ + V damage| +ˮ V beat|,patient=liquid|Һ +ˮ V swim| + V defeat|սʤ + V beat| +Ҫ V beat|,PartOfTouch=heart| +Ҫ V express|ʾ,content=heart| + ADJ aValue|ֵ,importance|,important| + N part|,%entity|ʵ,base| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + ADJ aValue|ֵ,rank|ȼ,elementary| + N part|,%entity|ʵ,base| + N knowledge|֪ʶ,elementary| + N fact|,build| + ADV aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + N part|,%organization|֯ +㵥λ N part|,%organization|֯ + ADJ aValue|ֵ,importance|,important| + N part|,%thing|,base| +ʵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N part|,%thing|,heart| + N place|ط,military| + N image|ͼ,dot|,#measure| + N part|,%thing|,base| + N part|,%thing|,heart| + N attribute|,SoundQuality|,important|,&music| + N attribute|,standpoint|,important|,&information|Ϣ +˵ N human|,*speak|˵ + N humanized| + N knowledge|֪ʶ,religion|ڽ +̵ N place|ط,religion|ڽ +ͽ N human|,religion|ڽ +ͽ N human|,religion|ڽ + N place|ط,capital|,ProperName|ר,(Ecuador|϶) + N material|,*feed|ι,#crop|ׯ + N place|ط,capital|,ProperName|ר,(Ukraine|ڿ) + ADJ aValue|ֵ,importance|,important| + N human|,desired|,important|,able| + N place|ط,capital|,ProperName|ר,(Rwanda|¬) + N attribute|,price|۸,&artifact|˹,commercial| + N fact|,build| + N fund|ʽ + N community|,#fund|ʽ +¡ N language|,#country|,ProperName|ר + N money|,(Papua New Guinea|Ͳ¼) + N money|,(Laos|) +ɫ N attribute|,color|ɫ,&physical| +ʯ N part|,%thing|,base| + N attribute|,standard|׼,&entity|ʵ + N symbol|,#quantity| + N mark|־,linear|,#measure| +Ƕ N language|,#country|,ProperName|ר + N stone|ʯ +ҵ N part|,%affairs|,base| + N part|,%animate|,#PassOn| + N method|,*cure|ҽ + PREP {cause} +ڹ ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#regulation|,#software| + ADJ aValue|ֵ,behavior|ֹ,*BaseOn|,#text|,#software| +׼ N attribute|,standard|׼,&entity|ʵ + N aircraft| + N machine| + N part|,%implement| + N time|ʱ + N time|ʱ,important| +ʧ ADJ aValue|ֵ,value|ֵ,precious| + N room|,%vehicle|ͨ + N facilities|ʩ,#aircraft|,@stay|ͣ + N human|,#occupation|ְλ,official|,#aircraft| + N LandVehicle|,#(train|) + N machine|,*produce| + ADJ aValue|ֵ,performance|,#machine|,#electricity| + V SelfMove|,military| + ADJ aValue|ֵ,ability|,able|,AlterLocation|ռλ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,performance| + N attribute|,performance|,SelfMove|,&entity|ʵ + N ship| + N room|,#machine| + N room|,%ship|,#machine| + V engage|,agricultural|ũ,#machine| + N human|,#occupation|ְλ,industrial| + N institution| + ADJ aValue|ֵ,kind| + N institution|,generic|ͳ + N part|,%implement| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N reason| + N time|ʱ + N thinking|˼,#venture|ð,treacherous|,politics| + N human|,*venture|ð,treacherous|,politics| + N part|,%implement| + N facilities|ʩ,@take|ȡ,#liquid|Һ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N implement| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,content|,secret| + N fact|,secret| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,effect|Ч,&organization|֯,&human| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#aircraft| + N machine| + N machine| +ǹ N weapon|,*firing| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ⱥ N army|,#aircraft| + N part|,%aircraft|,body| + N animate|,generic|ͳ + N part|,%aircraft|,body| +ͷ N part|,%aircraft|,head|ͷ + N affairs|,#maintain|,#repair| +е ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +е N machine| +е N reason| +е ADJ aValue|ֵ,performance| +е V ize|̬ +е N army|,*TakeVehicle|,#LandVehicle| +е N army|,*TakeVehicle|,#LandVehicle| +е N human| +еʦ N human|,#occupation|ְλ,industrial| + N part|,%tool|þ,#time|ʱ + N attribute|,kind|,&aircraft| + N attribute|,kind|,&machine| +Ҫ ADJ aValue|ֵ,content|,secret| + N part|,%aircraft|,wing|,*fly| + N material|,liquid|Һ,*lubricate| + N phenomena|,desired| + N time|ʱ +Ե N attribute|,circumstances|,lucky|,&human| + ADJ aValue|ֵ,source|Դ,#machine|,$produce| + N regulation| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human| + N machine| + N machine|,*weave|,industrial| + N part|,%weapon|,*firing| + N community|,#aircraft| +Ա N human|,#occupation|ְλ,#aircraft| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + ADJ aValue|ֵ,kind|,queer| + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V treat|Դ,manner=biased|ƫ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,form|״,queer| + ADJ aValue|ֵ,form|״,undesired|ݬ + ADJ aValue|ֵ,kind|,special|,undesired|ݬ + V check| + V delay| + V investigate| + V check|,commercial| + V check| + V check| + V prove|֤ + V detain|ס + V salute|¾ + V gather|ɼ + N fact|,unfixed|δ,#police| + V SetAside| + V SetAside| + V do|,manner=kindhearted| + V gather|ɼ,possession=material|,agricultural|ũ + V calculate| + N quantity|,amount|,&result|,#compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V SetAside| + V gather|ɼ +ͳɼ V ill|̬,cause=tired|ƣ + V gather|ɼ +ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ľ N tool|þ,*recreation|,#young| + ADJ aValue|ֵ,duration|,TimeLong| +ٳɶ V obtain|õ,possession=many|,means=gather|ɼ +ˮ N liquid|Һ,SetAside| + V SetAside| + V gather|ɼ +ѩ N RainSnow|ѩ +ѹ V surplus|ʣ,commercial| + N CloudMist| +Թ N emotion|,hate|,undesired|ݬ + N CloudMist| + V gather|ɼ +ѷ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +۴ V gather|ɼ + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,skin|Ƥ,flesh| + N part|,%AnimalHuman|,flesh| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,body| + N part|,%human|,body| +ע N fact|,cure|ҽ,medical|ҽ + N part|,%AnimalHuman|,flesh| + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| +ʳ V worried|ż + V HungryThirsty| + V suffer|,content=hardship| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + V HungryThirsty| + N human|,poor|,undesired|ݬ + V HungryThirsty| + N phenomena|,undesired|ݬ,desolate|,#unfortunate| + N mark|־ + N part|,%building|,waste|,body| + N trace| + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V excited| + V excite|ж + V ill|̬,medical|ҽ + V irritate|ŭ + V jet| + V excited| + V jet| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + V excite|ж + V excited| + V angry| + N lights| + V MakeBetter|Ż + V CauseToLive|ʹ + N method| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,behavior|ֹ,strong|ǿ + V mobilize| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N water|ˮ +ŭ V irritate|ŭ + V excite|ж + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N emotion|,excited| + N medicine|ҩ +Խ ADJ aValue|ֵ,SoundVolume|,loud| + V BecomeMore| +ս V fight|,military| + V clean|ʹ + V improve| + V LaughAt|Ц + V satirize| +Ц V LaughAt|Ц + N bird| + N part|,%bird|,$eat|,embryo| + N food|ʳƷ +ɵ V fail|ʧ + N part|,%bird|,head|ͷ +ڻ N FlowerGrass| +ʯ N stone|ʯ,mine| + V damage|,#mating|,crime| + N human|,lascivious| +㹷 ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +㹷 ADJ inanimate|,secondary| +ë N part|,%bird|,hair|ë +ë N tool|þ,*wipe| +ëƤ ADJ aValue|ֵ,importance|,secondary| + N method|,undesired|ݬ,*deceive|ƭ +ڽ N medicine|ҩ,(China|й) +Ƥ N disease| +Ȯ ADJ aValue|ֵ,SocialMode|,good|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȯ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ȯ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N food|ʳƷ,#bird| + N facilities|ʩ,space|ռ,@foster|,#bird| + N food|ʳƷ,liquid|Һ +β N drinks|Ʒ,$addict|Ⱥ +βƻ N fact|,drink|,recreation| + N facilities|ʩ,space|ռ,@foster|,#bird| + N shape| +Ѫ N medicine|ҩ + N disease|,#foot| + N character|,surname|,human|,ProperName|ר + N human|,royal|,female|Ů + N result|,desired|,#succeed|ɹ + N tool|þ,linear|,*fasten|˩ + V catch|׽ס,police| + V catch|׽ס,police| + V catch|׽ס,#crime|,police| + V catch|׽ס,patient=addictive|Ⱥ,police| + V catch|׽ס,police| +˽ V catch|׽ס,#crime|,police| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N human| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Djibouti|) + N place|ط,capital|,ProperName|ר,(Djibouti|) + N place|ط,country|,ProperName|ר,(Africa|) +ᷨ N money|,(Djibouti|) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kirghizstan|˹˹̹) +˹˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹ N language|,#country|,ProperName|ר +Ƭ N artifact|˹,precious| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¡ N place|ط,capital|,ProperName|ר,(Malaysia|) + N LandVehicle| +ճ N LandVehicle| + N human| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#congratulate|ף + V lucky| + N time|ʱ,day|,#lucky| + N MusicTool| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V lucky| + N artifact|˹,#lucky| +Ǹ V lucky| + N attribute|,circumstances|,&event|¼ + N information|Ϣ,good| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,degree|̶,extreme|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β + N fittings|,#electricity| + ADV aValue|ֵ,intensity|ǿ,strong|ǿ,extreme| + N part|,%earth|,edge| + N attribute|,boundary|,extreme|,&entity|ʵ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,extreme| + N attribute|,contrariness|,&entity|ʵ + N human| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V ize|̬ + N bird| + ADV aValue|ֵ,behavior|ֹ,strong|ǿ +Ŀ V look|,manner=far|Զ +ĿԶ V look|,manner=far|Զ +Ʒ N attribute|,rank|ȼ,HighRank|ߵ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +΢С ADJ aValue|ֵ,size|ߴ,small|С +Ϊ ADV aValue|ֵ,degree|̶,extreme| +Ϊ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,boundary|,extreme|,&entity|ʵ + N attribute|,contrariness|,&entity|ʵ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,correctness|,politics| +ҷ N human| + ADJ aValue|ֵ,correctness|,politics| + N part|,%AnimalHuman|,bone| + N tree| +Ƥ N AnimalHuman| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V compile|༭ + V gather|ɼ +¼ V compile|༭ + N account| + N attribute|,attachment|,&human| + N character|,surname|,human|,ProperName|ר + N place|ط,@ComeToWorld| + N publications|鿯 + N attribute|,source|Դ,#ComeToWorld|,&human| + N InstitutePlace|,space|ռ,commercial| + V assemble|ۼ + V gather|ɼ + N publications|鿯 + V merge|ϲ +ɵ· N part|,linear|,#electricity| + V gather|ɼ +缫 N part|,#electricity| + V ComeTogether| + V assemble|ۼ + N fact|,@communicate| + V ComeTogether| + V assemble|ۼ + N thing|,mass| + V assemble|ۼ + V gather|ɼ +Ȩ V control| +ɢ N place|ط,#inanimate| + N InstitutePlace|,space|ռ,commercial| +˼ V gather|ɼ,possession=wisdom|ǻ + ADJ aValue|ֵ,attachment|,public| +廯 V ize|̬,PatientAttribute=public| + N system|ƶ,#rights|Ȩ,#own|,public| + N community| +Ź˾ N InstitutePlace|,commercial| +ž N army| +ѵ V teach| +Ҹ V obtain|õ,possession=many|,means=gather|ɼ + V gather|ɼ,possession=coupon|Ʊ֤ +ʼ N human|,*gather|ɼ +Լ ADJ aValue|ֵ,quality|,refined|,agricultural|ũ +Լ V ize|̬,PatientAttribute=refined|,agricultural|ũ +ԼӪ V engage|,manner=refined|,agricultural|ũ + N place|ط,city| + V assemble|ۼ + V control| + V gather|ɼ +Ӫ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +װ N tool|þ,@put|,#transport|,#vehicle|ͨ + V gather|ɼ,possession=fund|ʽ,commercial| + N publications|鿯 + V arrive| + STRU {Vachieve|} + COOR {and|} + V succeed|ɹ,scope=exam| + ADJ aValue|ֵ,standard|׼,average|,desired| + CONJ {and|} +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ﶯ V part|,%language| + ADJ aValue|ֵ,earliness|,early| + PREP {LocationFin} + PREP {TimeFin} + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + N affairs|,urgent| + V angry| + V willing|Ը + V worried|ż + N disease| +Ҵ ADJ aValue|ֵ,behavior|ֹ,hasty| +Ҵ ADV aValue|ֵ,behavior|ֹ,hasty| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,fast| + N letter|ż,urgent| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V cure|ҽ +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +Ա N human|,*cure|ҽ,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N waters|ˮ,linear| + V refuse| +æ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ֱ׷ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,hasty| +ǻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ɲ V cease|ͣ +ɲ V fix|ס + N affairs|,urgent| + ADJ aValue|ֵ,speed|ٶ,fast| + V TurnRound| + N affairs|,urgent| + ADJ aValue|ֵ,circumstances|,urgent|,medical|ҽ +Բ N disease| +Էʪ N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N human|,rash|ç +ӵ N human|,rash|ç,undesired|ݬ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N phenomena|,need|,urgent| + N phenomena|,need|,urgent| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V expect|,content=succeed|ɹ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ĸĸ N human|,rash|ç,undesired|ݬ + N fact|,cure|ҽ,medical|ҽ,urgent| +֢ N disease| + V obtain|õ,possession=method| + ADJ aValue|ֵ,speed|ٶ,fast| +ת V TurnRound|,manner=sudden| +ת V change|,manner=sudden| +תֱ V change|,manner=sudden| +תֱ ADJ change|,manner=sudden| + ADJ aValue|ֵ,speed|ٶ,fast| + N disease| + V hate| + N disease| + V GoForward|ǰ + V hate|,target=evil| + N wind|,strong|ǿ + V announce| + N disease| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| +ʻ V VehicleGo|ʻ,manner=fast| +ɫ V ExpressAnger|ʾŭ +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V inhale| +ȡ V inhale| +ȡ V obtain|õ + V BeNear| + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + CONJ {concession|ò} + ADV aValue|ֵ,duration|,TimeShort| + V arrive|,future| + PP aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| + PP aValue|ֵ,duration|,TimeShort| + CONJ {concession|ò} + ADJ aValue|ֵ,duration|,TimeShort| + N time|ʱ,now|,day| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʹ CONJ {concession|ò} +˵ CONJ {supplement|ݽ} +λ V bear|е,patient=official|,royal| +ϯ ADJ aValue|ֵ,duration|,TimeShort| +ϯ V engage| + ADJ aValue|ֵ,property|,^$prepare|׼ + V jealous|ʼ + V jealous|ʼ + N human|,*jealous|ʼ + V hate| +Ͷ V jealous|ʼ,target=able| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,rank|ȼ,&entity|ʵ + N community|,#unripe| + N part|,%building|,nerve| + N attribute|,rank|ȼ,&entity|ʵ + ADJ quantity|,rate|,&rank|ȼ + N expenditure| + V ComeTogether| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V press|ѹ + V push| + V SqueezeOut| +Ҫ ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + V collect|,possession=money|,commercial| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| + ADJ aValue|ֵ,occasion|,crowded|,degree=extreme| +üŪ V CausePartMove|,PatientPartof=eye|,purpose=show| + V gather|ɼ,possession=drinks|Ʒ,agricultural|ũ +ѹ V SqueezeOut| + V CausePartMove|,PatientPartof=eye|,purpose=show| +ռ V occupy|ռ + ADJ aValue|ֵ,possibility|,almost| + N furniture|Ҿ,space|ռ,@put| + N place|ط,country|,ProperName|ר,(Guinea|) + ADJ qValue|ֵ,amount|,few| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,question| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ qValue|ֵ,amount|,some|Щ + ADJ qValue|ֵ,amount|,many|,question| +ͼ N image|ͼ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADV aValue|ֵ,possibility|,almost| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,frequency|Ƶ,often| + N quantity|,rate|,#possibility|,&event|¼ + N place|ط,country|,ProperName|ר,(Africa|) +DZ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guinea-Bissau|DZ) +DZ N place|ط,country|,ProperName|ר,(Africa|) +Ƿ N money|,(Guinea|) + N human|,(Guinea|) +ʱ ADV time|ʱ,question| +ʱ CONJ {time|ʱ} +ά N bird| + ADJ qValue|ֵ,amount|,question| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,hind|,body| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N disease| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N AnimalHuman| + N part|,%building|,bone| + N part|,%animal|,tail|β + ADJ aValue|ֵ,attachment|,self| + N army|,friend| + N part|,%entity|ʵ,self| + N duty| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + N attribute|,ability|,&human| + N method| + N method|,#industrial| + V MakeBetter|Ż +һ ADJ aValue|ֵ,ability|,able|,desired| + N human|,#occupation|ְλ,industrial| + N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + N attribute|,ability|,&human| + N method| +ʦ N human|,#occupation|ְλ,industrial| + N knowledge|֪ʶ + V MakeBetter|Ż +ල N institution|,ProperName|ר,*supervise|,#knowledge|֪ʶ + ADJ knowledge|֪ʶ + ADJ aValue|ֵ,behavior|ֹ + N cause|ԭ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ա N human|,#occupation|ְλ,industrial| +ת V give| +У N InstitutePlace|,@teach|,@study|ѧ,education| + N method| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ + N time|ʱ,ending|ĩ,#season| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N wind| + N time|ʱ,season| + ADJ aValue|ֵ,time|ʱ,season| + N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N publications|鿯 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V salute|¾ + V use| + V salute|¾ + N fact|,*salute|¾,#die| + N tool|þ,*salute|¾,#die| +Ʒ N tool|þ,*salute|¾,#die| + V salute|¾ + N medicine|ҩ + N medicine|ҩ,#experiment|ʵ + N quantity|,amount|,&consume|ȡ,&use|,#medicine|ҩ +С N quantity|,amount|,&use|,#medicine|ҩ + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V cross|Խ,LocationThru=waters|ˮ + V help| +ü ADJ qValue|ֵ,amount|,many| +üһ ADJ qValue|ֵ,amount|,many| + N place|ط,city|,ProperName|ר,(China|й) +ƶ V help|,patient=poor| + V benefit|,patient=human| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + V depend| + V entrust|ί + V post|ʼ +Ĵ V SetAside| +Ĵ N part|,%computer| +ķ V SetAside| +ľ V reside|ס + V sell|,commercial| + V alive| + N bacteria|΢ + N human|,#wealth|Ǯ,undesired|ݬ + V reside|ס,education| + V SetAside| + V entrust|ί + V express|ʾ +ϣ V entrust|ί + V entrust|ί,ResultEvent=ProvideFor| + V entrust|ί + V express|ʾ +Ԣ V reside|ס + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| +ž ADJ aValue|ֵ,occasion|,quiet|,desired| +ž N attribute|,occasion|,quiet|,desired|,&space|ռ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,occasion|,quiet|,desired| + V calculate| + N character|,surname|,human|,ProperName|ר + V measure| + N plans|滮 + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V plan|ƻ + N thought|ͷ + N tool|þ,*measure| +Ƴ̳ N LandVehicle|,$lend|,commercial| +Ƴ V calculate|,content=payment| +ƻ V plan|ƻ +ƻ V plan|ƻ,content=GiveBirth| +ƻίԱ N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ƻƶ N human|,*plan|ƻ +Ƽ V calculate|,content=price|۸,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=insufficiently|Ƿ,commercial| +Ƽ۹ V calculate|,content=price|۸,manner=extreme|,commercial| +Ƽ V count|,content=quantity| +ƽ V debate| +ƽ V think|˼ + V calculate| + V measure| +ı N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ί N institution|,ProperName|ר,*plan|ƻ,#GiveBirth| +ʱ V count|,content=time|ʱ +ʱ N tool|þ,*count|,#time|ʱ + V count| + N tool|þ,*count|,#quantity| + V calculate| + N tool|þ,*calculate| + N computer| + V help|,instrument=computer| + V ize|̬,#computer| + N tool|þ,calculate| + N InstitutePlace|,#computer|,#software| +ί N institution|,ProperName|ר,*plan|ƻ + V discuss| + N mark|־ + V record|¼ + V remember|ǵ + V sign|д + N text| +Dz V BeUnable|,content=remember|ǵ +dz V cherish|Ļ,content=hate| +ǵ V remember|ǵ +Ƿ V record|¼,content=result| +ǹ V record|¼,content=result| +ǹ V ThinkOf|˼ +ǹ V record|¼,content=result| +Ǻ N symbol| +Ǻ V cherish|Ļ,content=hate| +¼ V record|¼ +¼ N result| +¼ N text| +¼ N human|,desired|,*win|ʤ,#compete|,#WhileAway| + V write|д,content=name| + V remember|ǵ,Vachieve| +ȡ V remember|ǵ +ʵ ADJ aValue|ֵ,trueness|α,true|,&information|Ϣ + V record|¼,content=event|¼ +¶ V BeAble|ܹ,content=remember|ǵ + V record|¼ + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V explain|˵ + N text| + V LookBack| + V remember|ǵ + N attribute|,ability|,remember|ǵ,&AnimalHuman| + V remember|ǵ + V record|¼ + V record|¼,content=account|,commercial| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ס V remember|ǵ + ADV aValue|ֵ,time|ʱ + CONJ {cause|ԭ} +... COOR {supplement|ݽ} +ȳʵ V happen|,content=fact| +ȵ N wealth|Ǯ +ȶ ADJ aValue|ֵ,behavior|ֹ,lasting| +Ȼ CONJ {cause|ԭ} + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| +Լ N symbol|,#quantity|,#DoSum| + V GiveUp| + V evade|ر + V fear| + V jealous|ʼ +ɵ V fear| +ɶ V jealous|ʼ +ɺ V hate| +ɻ V evade|ر +ɿ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N time|ʱ,day|,@salute|¾,#die| +ʳ V evade|ر,content=consume|ȡ + N location|λ,surrounding|Χ,space|ռ + N time|ʱ + N attribute|,circumstances|,&human|,&event|¼ + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ů N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ժ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ + V KeepOn|ʹ +̳ V KeepOn|ʹ +̳ V receive| +̳ N human|,*receive| +̵ N part|,%machine| +̶ ADV aValue|ֵ,time|ʱ,hind| +̷Լ N disease| +̸ N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + V KeepOn|ʹ,patient=undertake| + V KeepOn|ʹ,patient=affairs| + V GoOn| + V KeepOn|ʹ +֮ ADV aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N system|ƶ +ͼ V supervise|,content=regulation| +ͼί N institution|,ProperName|ר,*check|,#regulation| +¼ N human|,*record|¼ +¼ V record|¼ +¼ N result|,#exercise|,sport| +¼ N text| +¼Ƭ N shows| + N regulation| + N account| + V commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ + N thing|,*commemorate|ʾ˼ + N time|ʱ,day|,@commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N account|,*commemorate|ʾ˼ + N stationery|ľ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N fact|,*commemorate|ʾ˼ + N fact|,commemorate|ʾ˼ +Ʒ N tool|þ,*commemorate|ʾ˼ + N time|ʱ,day|,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ + N facilities|ʩ,*commemorate|ʾ˼ +Ʊ N coupon|Ʊ֤,#letter|ż,*commemorate|ʾ˼ + N tool|þ,*commemorate|ʾ˼ +ʵ N information|Ϣ,true| + V account|,@record|¼ + V record|¼,content=event|¼ +ί N institution|,ProperName|ר,*check|,#regulation| + N text| +Ҫ N text| +Ԫ N time|ʱ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V praise|佱 +α N human|,$WellTreat|ƴ +ν V reward| +ξ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V mobilize| + V agree|ͬ + V praise|佱 + N tool|þ,police|,*punish|,#crime| + N tool|þ,police|,#crime|,*detain|ס + ADJ aValue|ֵ,form|״,special| + V fasten|˩ + V hold| + V insert| + V mix| + V pick|ʰ + V press|ѹ + N tool|þ,*hold| +а N tool|þ,*fix|ס,medical|ҽ +в N part|,%entity|ʵ,space|ռ +д V transport|,manner=secret|,crime|,commercial| +е N facilities|ʩ,route|· +еӭ V welcome|ӭ +з N location|λ +з N part|,%inanimate|,mouth| +й V attack|,military| +й N character|,surname|,human|,ProperName|ר +л V attack|,military| +о N tool|þ,*hold| +п N clothing|,#body| +߼а ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + ADJ aValue|ֵ,property|,$fill| +ı N food|ʳƷ + V relate|й +֫ N part|,%AnimalHuman|,arm| + N tool|þ,*hold| + N tool|þ,@put|,#wealth|Ǯ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѻ N fact|,desired| +Ѽ N result|,good|,desired| +ѽ N time|ʱ,festival|,@congratulate|ף +Ѿ N phenomena|,desired|,#lucky| +Ѿ N expression|,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| +ľ˹ N place|ط,city|,ProperName|ר,(China|й) +ż N human|,family|,mass|,#GetMarried| +Ʒ N physical|,good|,desired| + N time|ʱ,day|,#GetMarried| + N human|,desired|,female|Ů,beautiful| + N information|Ϣ,desired|,*ShowJoy|ʾϲ + N artifact|˹,good|,desired| + N text|,good|,desired| + N edible|ʳ,good|,desired| + CLAS NounUnit|,&InstitutePlace| + ADJ aValue|ֵ,kind| + N character|,surname|,human|,ProperName|ר + N community|,#knowledge|֪ʶ + N community|,family| + N human|,#occupation|ְλ,able| + N human|,able|,#knowledge|֪ʶ,#affairs| +Ҳ N wealth|Ǯ,#family| +Ҳ N InsectWorm|,agricultural|ũ +Ҳ N wealth|Ǯ,#family| +ҳ ADJ aValue|ֵ,kind|,ordinary| +ҳ N fact|,#family| +ҳ㷹 N fact|,ordinary| +ҳ㷹 N food|ʳƷ,thrifty| +ҳ N human|,official|,family| +ҳʽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ҳ ADJ attribute|,behavior|ֹ,fierce|,&human| +Ҵ ADJ aValue|ֵ,source|Դ,original|ԭ +ҵ N wealth|Ǯ,#family| +ҵ N wealth|Ǯ,#family| +ҵ N tool|þ,generic|ͳ,#electricity|,#family| +ҷ V visit| +ҷ N attribute|,SocialMode|,&family| +Ҹ N bird| +Ҹ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +һ N human| +һ N tool|þ,generic|ͳ +һ N weapon|,generic|ͳ +Ҽ N fact|,#family| +Ҽ N community|,family|,mass| +Ҽһ N community|,family|,mass| +ҽ N affairs|,education|,#family| +Ҿ N attribute|,circumstances|,family|,&human| +Ҿ N community|,family| +Ҿ N furniture|Ҿ +Ҿ N human|,#furniture|Ҿ,commercial| +Ҿ N human|,family|,female|Ů +Ҿ N human|,family|,mass| +ҿ N human|,family|,mass| +ҿ N quantity|,amount|,&human|,#family| + N location|λ,#family| + N community|,#family| + N community|,family| + ADJ aValue|ֵ,property|,#family|,$produce| + V unfortunate| + N account|,@record|¼,#family| + N process|,#family| + N bird| + N human|,mass|,family| +ʲ N tool|þ,generic|ͳ + N affairs|,#family| + N letter|ż,#family| + N human|,family| +˽ N wealth|Ǯ,#family| +ͥ N community|,family| +ͥİ N attribute|,circumstances|,peaceful|,&family| +ͥϷ N fact|,#family|,recreation| +ͥ N human|,female|Ů,#family| +ͥ N human|,female|Ů,family| +ͥҵ N affairs|,#study|ѧ,education| +ͽı ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N livestock| + N affairs|,#family| + N affairs|,#family| + N affairs|,#family| + N place|ط,#ComeToWorld| + N place|ط,@ComeToWorld| +С N human|,family| + N letter|ż,#family| + N livestock| + N fact|,eat|,entertain|д,#family| + V foster|,agricultural|ũ +ҵ N wealth|Ǯ,#family| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N expenditure|,#family| +õ N tool|þ,generic|ͳ,#electricity|,#family| + ADJ aValue|ֵ,reputation|,glorious|,desired| +԰ N place|ط,#family| + N affairs|,#family| + N community|,#family| + V DoSum|,means=add| + V MakeBetter|Ż + V add| + N place|ط,country|,ProperName|ר,(Canada|ô) + N place|ط,country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Ghana|) + V put| +Ӱ V endeavour| +Ӱ N payment| +Ӱӵ V endeavour| +ӱ V add| +ӱ ADJ qValue|ֵ,amount|,double| +Ӳ N edible|ʳ +ӳ V enlarge|,PatientAttribute=length| +ӳ V inlay|Ƕ +Ӵ V MakeBetter|Ż +Ӵ V enlarge| +ӵ N place|ط,capital|,ProperName|ר,(Nepal|Ჴ) +Ӷ N place|ط,city|,ProperName|ר,(India|ӡ) +ӷ N method|,*DoSum| +Ӹ V build|,quantity=many| +Ӹ V print|ӡˢ,quantity=many| +Ӹ V enlarge|,PatientAttribute=height|߶ +ӹ V produce| +ӹ V produce|,industrial| +ӹ N InstitutePlace|,@produce|,industrial| +ӹ V strengthen|ӹ +Ӻ V damage| +Ӻ N symbol|,*DoSum| +Ӻ V enlarge|,PatientAttribute=height|߶ +Ӽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ӽ N fish| +ӽ V MakeBetter|Ż +ӽ V SpeedUp|ӿ +Ӿ V damage| +ӿ V SpeedUp|ӿ +ӿ V enlarge| +˹ N place|ط,capital|,ProperName|ר,(Venezuela|ί) +ձȺ N waters|ˮ,surfacial|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N language|,#country|,ProperName|ר + CLAS unit|λ,&volume|ݻ + V add| + V add|,commercial| + V add|,patient=price|۸,commercial| + V ally| + V RegardAs|,ResultIsa=secret| +ô ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Canada|ô) +ô N place|ط,country|,ProperName|ר,(North America|) +ô N human|,(Canada|ô) +ôԪ N money|,(Canada|ô) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ghana|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Ghana|) +Ũ V thicken|Ũ +ũ N weapon|,*firing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Gabon|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Gabon|) +ǿ V MakeBetter|Ż + V WarmUp| +¯ N tool|þ,*WarmUp| + N tool|þ,*WarmUp| + V appreciate|޳ + V include| + V put| + N human|,*include| + V add| + V give| + CONJ {supplement|ݽ} + V MakeBetter|Ż + V deepen| +ʪ V moisten|ʪ + N symbol|,#quantity| + V SpeedUp|ӿ +ٶ N attribute|,speed|ٶ,&inanimate| + N tool|þ,*SpeedUp|ӿ +̬¡ N language|,#country|,ProperName|ר + V WarmUp| +н V add|,patient=payment| +ѹ V press|ѹ,industrial| + V CauseToDo|ʹ + CONJ {supplement|ݽ} +޸ V CauseToDo|ʹ,ResultEvent=amend| + V endeavour| + V feed|ι,patient=material| + V lubricate| +ͻ N aircraft|,*feed|ι +վ N InstitutePlace|,*feed|ι,commercial| +֮ CONJ {supplement|ݽ} + V MakeHeavier| + V damage| + V decline|˥ + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N part|,%plant|ֲ,embryo| +Թ N part|,%plant|ֲ,embryo| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%animal|,mouth| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N clothing|,*protect|,military| + N part|,%AnimalHuman|,skin|Ƥ + NUM qValue|ֵ,sequence|,ordinal| +װ N part|,%ship| +ױ N chemical|ѧ +ױ N human|,military| +ױ N weapon|,generic|ͳ +׳ N InsectWorm| +״ N chemical|ѧ +׵ N attribute|,rank|ȼ,superior|,&entity|ʵ +׷ N human|,organization|֯,#associate| +׷ N chemical|ѧ +׸ N disease| +׹ N disease| +׹ N character| +׻ N chemical|ѧ +׼ N attribute|,rank|ȼ,superior|,&entity|ʵ +׿ N disease| +׿ N part|,%AnimalHuman|,skin|Ƥ +ȩ N chemical|ѧ +ȩˮ N chemical|ѧ + N chemical|ѧ + N gas| +ս N fact|,fight|,ProperName|ר +͸ N disease| + N fish| +״ N part|,%AnimalHuman|,nerve| +״ٻܼ N disease| +״ٻܿ N disease| +״ N chemical|ѧ +״ N disease| + N medicine|ҩ,*apply|ͿĨ + N time|ʱ +غͪ N medicine|ҩ + N clothing|,*protect|,military| + N metal| +ط N material|,*feed|ι,#crop|ׯ + N chemical|ѧ + ADJ aValue|ֵ,source|Դ,artificial| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N time|ʱ,@rest|Ϣ,@WhileAway| + V use| +ٰ V pretend|װ,content=RegardAs| +ٱ N money|,fake|α +ٳ V pretend|װ,content=RegardAs| +ٵѧ N human|,fake|α,undesired|ݬ +ٶ V RegardAs|,ResultIsa=true| +ٷ N tool|þ,*MakeUp|ױ,#hair|ë +ٷ N symbol|,#quantity|,#DoSum| +ٸ N part|,%plant|ֲ,base| +ٹ˽ V seek|ıȡ,means=use|,#rights|Ȩ,undesired|ݬ +ٹ N part|,%plant|ֲ,embryo| +ٻ N text|,*deceive|ƭ +ٻ N physical|,fake|α +ٽ V use| +ٿ N human|,*pretend|װ,#weep| +ð V pretend|װ,content=RegardAs| +ð N human|,*pretend|װ + V sleep|˯ + N tool|þ,*cover|ڸ + N attribute|,name|,fake|α,&human| + N symbol|,(Japan|ձ) + N time|ʱ,@rest|Ϣ,@WhileAway| +ʼ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N time|ʱ,day|,@rest|Ϣ,@WhileAway| + CONJ {condition|} + CONJ {condition|} +ɤ N sound|,#music| +ɽ N facilities|ʩ,space|ռ + V RegardAs|,ResultIsa=true| + N information|Ϣ,$guess|² +ʹ CONJ {condition|} + V release|ͷ,police| +˵ N information|Ϣ,$guess|² + V pretend|װ,content=die| + N phenomena|,fake|α + ADJ aValue|ֵ,trueness|α,^true| + N human|,enemy|,military| + N attribute|,form|״,&stone|ʯ + N phenomena|,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +ҩ N artifact|˹,#medicine|ҩ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V forge|α +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +װ V pretend|װ +װʥ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + N attribute|,price|۸,&artifact|˹,commercial| + N attribute|,value|ֵ,&thing| +۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸ N attribute|,price|۸,&artifact|˹,commercial| +۸񲻷 ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +۸߰ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap| + N attribute|,price|۸,&artifact|˹,commercial| +Ŀ N attribute|,price|۸,&thing|,commercial| +Ŀ N document|,*display|չʾ,#price|۸,commercial| +ǩ N mark|־,#price|۸ +Ǯ N attribute|,price|۸,&thing|,commercial| +ֵ N attribute|,value|ֵ,&thing| +ֵ N thought|ͷ,#value|ֵ +ֵ N regulation|,#value|ֵ +ֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ֵ N quantity|,amount|,&value|ֵ + V HoldWithHand| + V PropUp|֧ + V build| + N fact|,fight| + V obstruct|ֹ + N part|,%artifact|˹,bone| + N tool|þ,@put|,generic|ͳ + V withstand|ס +ܲס V WithstandNot|ס +ܴ CLAS NounUnit|,&aircraft| +ܵס V withstand|ס +ܿ V CauseToDo|ʹ,ResultEvent=fake|α +ܿ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ܿ ADJ aValue|ֵ,posture| + V HoldWithHand| + V build| + V put| + V build| +ʽ N attribute|,posture|,&animate| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,flighty|,undesired|ݬ,&human| + N attribute|,posture|,&animate| + N part|,%artifact|˹,bone| + N part|,%entity|ʵ,bone| + N part|,%text|,bone| + N tool|þ,@put|,generic|ͳ + N livestock| + V drive|Ԧ +ݳ V drive|Ԧ,patient=LandVehicle| + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ʻ V drive|Ԧ +ʻ N part|,%ship|,%aircraft|,room|,@drive|Ԧ +ʻ N part|,%LandVehicle|,room|,@drive|Ԧ +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Ԧ V control| +Ԧ V drive|Ԧ + V MarryTo| + V give| +޻ V damage| +޽ V connect|,agricultural|ũ +ױ N tool|þ,$GiveAsGift|,#MarryTo|,generic|ͳ + V destroy| +߻ V destroy|,military| +߻ N weapon|,aircraft|,military| + V destroy| +ս N fact|,fight|,destroy|,military| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,royal| + V supervise| + V supervise| + N facilities|ʩ,*supervise| +վ N InstitutePlace|,*supervise| + V supervise| +첿 N institution|,*supervise|,ProperName|ר,politics| +쳤 N human|,#occupation|ְλ,*supervise|,official|,police| + N human|,*supervise| +ೡ V supervise|,education| +ල V supervise| +ලԱ N human|,*supervise| +ල N human|,*supervise| +෸ N human|,crime|,undesired|ݬ,$detain|ס +๤ N human|,#occupation|ְλ,*supervise|,industrial| + V detain|ס,police| + N fact|,TakeCare|,police| +໤ V TakeCare| +໤Ȩ N rights|Ȩ,TakeCare|,police| +໤ N human|,*TakeCare| +໤ N human|,*protect| + V detain|ס,police| +࿼ V supervise|,education| +࿼ N human|,*supervise|,#exam|,education| + V supervise| + V control| +Ʊ V supervise|,content=select|ѡ +» N institution|,*supervise| + V check| + V supervise| + N part|,%computer|,*display|չʾ +Ե V steal|͵,crime| + V supervise| +ִ V punish| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N human|,#occupation|ְλ,*supervise|,police| +Ů N human|,#occupation|ְλ,*supervise|,police|,female|Ů +֤ V appreciate|޳ + V supervise|,content=produce| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V hide| +Ұ V hide|,military| +᲻ɴ ADJ aValue|ֵ,ability|,withstand|ס,desired| +᲻ɴ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ֲи ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ֲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ּ V obey|ѭ,content=thinking|˼ +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ᶨ N attribute|,will|־,strong|ǿ,&human| + ADJ aValue|ֵ,quality|,durable|,desired| + N part|,%plant|ֲ,embryo| + N weapon|,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,&human| +Ͳ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯ ADJ aValue|ֵ,circumstances|,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + V obey|ѭ +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V believe| +Ų V believe| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ִ V obey|ѭ,content=thinking|˼ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,acute| + N part|,%inanimate|,head|ͷ + N human|,military| +⵶ N tool|þ,*cut|,acute| +ⶥ ADJ aValue|ֵ,form|״,acute| +ⶥ N part|,%inanimate|,head|ͷ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,form|״,sharp| + N fish| + N part|,%fish|,body| + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,form|״,acute| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̱ ADJ aValue|ֵ,content|,#satirize| + N human|,superior|,able|,desired| +챡 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N expression|,*explain|˵ + N letter|ż + N paper|ֽ,@write|д,#letter|ż + N text|,*explain|˵ + CLAS NounUnit|,&InstitutePlace|,&house| + N location|λ,space|ռ,internal| +䲻ݷ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +䲻ݷ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N facilities|ʩ,route|· + N human|,police|,military|,*scout| + N part|,%army| + ADJ aValue|ֵ,behavior|ֹ,^continuous| + V pause|ͣ +䷢ N disease| + N attribute|,distance|,&time|ʱ,&space|ռ + ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADV aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,behavior|ֹ,tactful| +˰ N expenditure| + N attribute|,distance|,&space|ռ + V PickOut|γ,patient=crop|ׯ,agricultural|ũ +϶ N location|λ +϶ N time|ʱ +Ъ ADJ aValue|ֵ,behavior|ֹ,^continuous| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V planting|ֲ,agricultural|ũ + V cook| + V produce| +尾 V punish| + N food|ʳƷ + V undertake| +汸 V own|,manner=also|Ҳ +沢 V occupy|ռ,military| + V undertake|,content=other| + V SelfMove|,manner=fast| +֮ V own|,manner=also|Ҳ + V PayAttention|ע + V manage|,manner=also|Ҳ + V teach|,education| + V undertake| + ADJ aValue|ֵ,performance|,alike| +ݻ N computer| + N attribute|,performance|,#fit|ʺ,&information|Ϣ,&implement| +ղ V include| +Ӫ V manage|,manner=also|Ҳ + V use|,manner=also|Ҳ + V own|,manner=also|Ҳ +ְ V undertake|,content=other| +ְְҵ N affairs|,#occupation|ְλ,other| + V be|,manner=also|Ҳ + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +縺 V bear|е +ؽ N part|,%AnimalHuman|,bone| +Ħ챻 ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ͷ N location|λ,%part| +ͷ N part|,%AnimalHuman|,body| + N mark|־,#clothing|,$PutOn| +ι N part|,%AnimalHuman|,bone| + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ܶ V endeavour|,manner=hardship| +׿ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V suffer|,content=hardship|,manner=extreme| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,*betray|,treacherous| +鳼 N human|,undesired|ݬ,official|,treacherous| +黫 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,commercial|,crime|,*deceive|ƭ + V damage|,purpose=mating|,crime| +ϸ N human|,police|,military|,*scout| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +Ц V laugh|Ц +а ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + V damage|,purpose=mating|,crime| + N human|,undesired|ݬ,*betray|,treacherous| +թ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N human|,undesired|ݬ,official|,treacherous| + N human|,undesired|ݬ,treacherous| + V shut|ر + V KeepSilence|˵ +Ĭ V KeepSilence|˵ + N house|,#InsectWorm| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N material|,?clothing| +˿ N material|,?clothing| + V check| + V restrain|ֹ,patient=self| +첨 V distinguish|ֱ,information|Ϣ,#electricity| + V check| + V check| + N human|,*check| +Ա N human|,#occupation|ְλ,*check| + V check|,police| +쳤 N human|,#occupation|ְλ,*check|,official|,police| + N human|,#occupation|ְλ,*check|,official|,police| +Ժ N institution|,*check|,police| + V check|,Vachieve| + V PayAttention|ע + V check| +춨 V distinguish|ֱ + V reveal|¶ + N human|,*reveal|¶ + V check| + V LookFor|Ѱ + V check| + V repair| + V check| + V exam| + V check|,#medical|ҽ + V check| + V check|,military| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) + N letter|ż + N place|ط,country|,ProperName|ר,(Cambodia|կ) +կ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Cambodia|կ) +կ N place|ط,country|,ProperName|ר,(Asia|) +կ N language|,#country|,ProperName|ר + N letter|ż + N chemical|ѧ + N land|½ + N fact|,ize|̬ + ADJ aValue|ֵ,performance|,industrial| + N attribute|,performance|,industrial|,&inanimate| + N chemical|ѧ + V choose|ѡ +ѡ V choose|ѡ + V gather|ɼ + V pick|ʰ +ö V gather|ɼ,possession=waste| + ADJ aValue|ֵ,content|,simple|,desired| + N character|,surname|,human|,ProperName|ר + N letter|ż + N letter|ż,past| + N publications|鿯,news| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N attribute|,name|,simple|,&entity|ʵ + N naming|,manner=simple| + ADJ aValue|ֵ,content|,simple|,desired| +򵥻 ADJ aValue|ֵ,content|,shallow|dz +򵥻 V handle|,manner=careless| +򵥻 N human|,*ize|̬ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +֮ ADV {comment|} + N ize|̬,PatientAttribute=simple| + V ize|̬,PatientAttribute=simple| + N character|,simple|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,simple|,desired| + N part|,%information|Ϣ,bone| + ADJ aValue|ֵ,content|,simple|,desired| + N document|,@record|¼,#process|,#human| + ADJ aValue|ֵ,content|,simple|,desired| +ª ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +Ҫ ADJ aValue|ֵ,content|,concise|,desired| +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʷ N fact|,#time|ʱ,simple| + V describe|д,manner=simple| + N character|,simple|,(China|й) + N character|,simple|,(China|й) +ͼ N image|ͼ +Ѷ N news|,simple| +֮ ADV {comment|} +Ҫ ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,content|,easy|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| + N document|,regulation|,simple| +Ȩ V MakeBetter|Ż,politics| +ֱ ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + V break|۶ + N tool|þ,*break|۶ + N part|,%publications|鿯 + V break|۶ + V compile|༭ + V start|ʼ + V destroy| + N tool|þ,*break|۶ + N quantity|,rate|,&price|۸,commercial| + V compile|༭ + V compile|༭ + V compile|༭ +Ӱ N image|ͼ +ֽ N image|ͼ + N tool|þ,*break|۶ + V DoSum| + V DoSum|,means=subtract| + V subtract| + V subtract|,range=half| + V BecomeLess|,scope=produce|,industrial| + V subtract| + V BecomeLess| + V subtract| + N method|,*DoSum| + V AlterMeasurement|,ResultEvent=bony| + N attribute|,range|,BecomeLess|,&price|۸,commercial| + N symbol|,*DoSum| + V SlowDown| + V BecomeLess|,scope=price|۸,commercial| + V subtract|,patient=expenditure| + V SlowDown| + V exempt| + V subtract| + V weaken| +ȥ V DoSum| + V weaken| +ɫ V weaken| +ɱ V weaken| + V subtract| + N quantity|,amount|,#DoSum| +˰ V subtract|,patient=expenditure| + V SlowDown| + N tool|þ,*SlowDown| + V BecomeLess| +С V subtract| + V weaken|,patient=punish|,police| +ѹ V weaken|,patient=press|ѹ,industrial| +Ա V BecomeLess|,scope=employee|Ա + V subtract|,patient=unfortunate| + V weaken|,patient=shiver| + N tool|þ,*weaken|,#shiver| + N tool|þ,*weaken|,#shiver| + V BecomeLess| + N FlowerGrass| + V recommend|Ƽ + N tool|þ,@sleep|˯ + V recommend|Ƽ + N facilities|ʩ,space|ռ,@detain|ס,animal| + N part|,%building|,mouth| + N part|,%house| + V check| + N information|Ϣ + V investigate| + V mean|ָ + N tool|þ,*look|,#self| + V distinguish|ֱ + V distinguish|ֱ + V estimate| + N fact|,*estimate| + N human|,*estimate| + N information|Ϣ + V appreciate|޳ +ͼ N human|,*estimate| + PREP {cause} + V conduct|ʵʩ + V kick|߲ +̤ V damage| +Լ V obey|ѭ,content=MakeAppointment|Լ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +ͷ N human|,undesired|ݬ + V sell|,cost=cheap|,commercial| + N human|,undesired|ݬ + V appear| + V meet| + V perception|֪,means=look| + V read| + N thought|ͷ + STRU {Vachieve|} + V appear|,location=publications|鿯 + ADJ aValue|ֵ,ability|,able|,desired| + V grow|ɳ + V perception|֪ + N thought|ͷ +ʶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,form|״,square| +ʩ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V endeavour| +ֲ V despise|,target=ordinary| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V BeRecovered|ԭ + V read| + N thought|ͷ + V disloyal|,cause=wealth|Ǯ + V meet| +ǰ V read| +ʼ V differ|ͬ + V read| +ʶ V enrich|ʵ,material=experience| +ʶ N experience| + V enrich|ʵ,material=experience| +δ ADJ aValue|ֵ,kind|,special| +΢֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N information|Ϣ +ϰ V drill|ϰ +ϰ N human|,*study|ѧ,education| + V read| +Ц V LaughAt|Ц +Ч V succeed|ɹ +Ϊ V dare| +˼Ǩ ADJ aValue|ֵ,behavior|ֹ,^lasting| + V read| +֤ N experience| +֤ V perception|֪,means=look| +֤ N human|,*prove|֤,#police| + V appear|,location=publications|鿯 + N part|,%chemical|ѧ + N part|,%implement| + N part|,%tool|þ,#fasten|˩ + N part|,%computer|,%MusicTool| + V write|д + N weapon|,*firing| + N tool|þ,#firing| +¥ N facilities|ʩ,space|ռ,@look| +ͷ N mark|־ +ͷ N part|,%weapon|,*firing| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N beast| + N weapon|,*firing| + CLAS NounUnit|,&thing| + N letter|ż + N part|,%artifact|˹,#produce|,industrial| + V MakeBetter|Ż + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + N human|,desired|,able| + N human|,desired|,employee|Ա,able|,#exercise| + N human|,desired|,employee|Ա,able|,#exercise| + V BeWell|׳ + ADJ aValue|ֵ,kind|,ordinary|,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ȫ V MakeBetter|Ż +ȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V exercise| + N facilities|ʩ,@exercise|,sport| +̸ ADJ aValue|ֵ,ability|,able|,speak|˵ + V exercise| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,unable|ӹ,remember|ǵ + N human|,*forget| +θ ADJ aValue|ֵ,ability|,able|,MakeBetter|Ż + V alive| +׳ V BeWell|׳ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N weapon|,ship|,military| + N human|,#occupation|ְλ,official|,#ship|,military| + N weapon|,ship|,military| + N army|,#ship| + N weapon|,%ship|,*firing|,military| +ͧ N weapon|,ship|,military| + ADJ aValue|ֵ,performance|,able|,$transport|,#ship| +ֻ N weapon|,ship|,military| + N weapon|,*stab| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ü N part|,%human|,hair|ë + N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) +Ŵѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(UK|Ӣ) + V farewell| + V farewell| + ADJ aValue|ֵ,speed|ٶ,slow| + N fact|,change|,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,continuous| + V prosper| +Ѿ V prosper| + V disperse|ɢ + N land|½,linear|,#water|ˮ + N part|,%land|½,linear|,#water|ˮ + V build| + V establish| + V propose| + N material|,*build| + V build|,Vachieve| + V establish|,patient=community|,politics| + V establish|,patient=capital|,politics| + N fact|,#build| + V succeed|ɹ +ҵ V succeed|ɹ + V establish|,patient=country|,politics| + V associate| + V establish|,patient=army|,military| + N time|ʱ,day|,festival|,#army|,@congratulate|ף + V establish| + V build|,Vachieve| + V build| +貿 N institution|,*build|,ProperName|ר,politics| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) + N human|,*build| + V donate| + V establish|,PatientProduct=organization|֯ +ί N institution|,*build|,ProperName|ר,politics| +У V establish|,PatientProduct=InstitutePlace| +ҵ V succeed|ɹ + V propose| + N text|,$propose|,$discuss|,$debate| + V build| + N part|,%organization|֯,bone| + N building|,generic|ͳ,space|ռ + V build| + N material|,*build| + N building|,generic|ͳ,space|ռ +ѧ N knowledge|֪ʶ,#build| +ҵ N affairs|,#build|,industrial| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + V BeOpposite| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V ize|̬,PatientAttribute=hard|Ӳ + N attribute|,circumstances|,hardship|,&event|¼ +ʬ N part|,%AnimalHuman|,*die|,body| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ζ ADJ aValue|ֵ,taste|ζ + ADV aValue|ֵ,time|ʱ,future| + V attack| + N human|,#occupation|ְλ,official|,military| + V incite|ָʹ + N part|,%tool|þ,#recreation|,#compete| + PREP {PartOfTouch} + PREP {PatientProduct} + ADV {comment|} + PREP {content} + PREP {patient} + PREP {possession} + AUX {tense|ʱ̬,future|} + ... 乬 N discharge| + N human|,able|,military| + N human|,able|,military| + ADV time|ʱ,past| +ʹ V fulfil|ʵ,means=^amend| + V amend|,content=err|,means=endeavour| + V amend|,content=crime|,means=endeavour| + V amend|,content=crime|,means=endeavour| + N human|,#occupation|ְλ,official|,military| +ƾͼ V defeat|սʤ,means=use|,#method| + ADV aValue|ֵ,possibility|,almost| + V endure| + N human|,#occupation|ְλ,official|,military| + V come|,future| + N time|ʱ,future| + N human|,#occupation|ְλ,official|,military| + N community|,family|,military| +ʿ N human|,military|,mass| +˧ N human|,official|,military| +Ϣ V rest|Ϣ +ı V pity| +Ž V doubt| + V maintain| + V rest|Ϣ +Ҫ AUX {tense|ʱ̬,future|} +ָ N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,hand| + V wash|ϴ + N water|ˮ,concentrated| + N part|,%plant|ֲ,$eat|,embryo| + N tool|þ,sticky|,*fix|ס,*fasten|˩ +ϴ V wash|ϴ +Һ N water|ˮ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,linear| + N part|,%land|½,#waters|ˮ,edge| + N location|λ,north|,%land|½,#waters|ˮ + N location|λ,east|,%land|½,#waters|ˮ + N waters|ˮ,linear| + V decline|˥ + N place|ط + N waters|ˮ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%waters|ˮ,mouth| + N ship| + N material|,?food|ʳƷ,#crop|ׯ + N location|λ,south|,%land|½,#waters|ˮ +ɽ N attribute|,power|,politics|,&country| +ɽ N land|½ +ɽ N place|ط,#human|,country|,politics| +ˮ N water|ˮ,#waters|ˮ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N location|λ,%waters|ˮ,middle| + N human|,crime|,undesired|ݬ,*rob| + N place|ط,city|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N location|λ,surrounding|Χ,space|ռ + N place|ط,military|,@fight| + N place|ط,#country| + N place|ط,#country| + N place|ط,#country| + N character|,surname|,human|,ProperName|ר +ʯ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,official|,politics|,ProperName|ר,(China|й) + N part|,%ship| + V mobilize| + V praise|佱 + V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| + V reward|,punish| + N reward|,punish| +ƶ N regulation|,#reward|,#punish| + V reward|,punish| + N payment|,*reward|,$GiveAsGift| + V reward| + N payment|,*reward|,$GiveAsGift| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ʒ N tool|þ,*reward|,$GiveAsGift|,desired| +ڷ V reward|,punish| +ȯ N bill|Ʊ,*reward|,$GiveAsGift|,desired| + V reward| +ѧ N fund|ʽ,*reward|,#study|ѧ,education| +Ҵ V reward| + N tool|þ,*reward|,$GiveAsGift|,desired| +» N human|,$reward| +״ N document|,*prove|֤,#reward| + V ParticularAbout| + V discuss| + V explain|˵ + V speak|˵ + N text| + V reconcile| + V speak|˵ + V discuss|,content=price|۸,commercial| + V explain|˵ + V ParticularAbout| + ADJ aValue|ֵ,quality|,refined|,desired| + V teach|,content=knowledge|֪ʶ,education| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V debate| + V explain|˵ + V estimate| + V explain|˵ + V mediate| + V ParticularAbout| +ʦ N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V explain|˵ +̨ N facilities|ʩ,space|ռ,@teach| +̳ N facilities|ʩ,space|ռ,@teach| +̳ N fact|,@communicate| + N room|,education| +ϰ V teach|,education| +ѧ V teach|,content=knowledge|֪ʶ,education| + V speak|˵ + N readings|,*teach|,education| + N fact|,teach|,education| + N human|,#occupation|ְλ,industrial| + N human|,#occupation|ְλ,industrial| + N thinking|˼ +Ķ ADJ aValue|ֵ,kind|,special|,desired| +Ķ V use|,patient=method|,refined| + V cook| + N material|,?food|ʳƷ + N food|ʳƷ + N food|ʳƷ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown|,NotLight|Ũ + N material|,?food|ʳƷ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + V BecomeLess| + V MoveItDown| + V defeat|սʤ + V fall| + V subtract| + V surrender| + V put|,patient=mark|־ + V BecomeLess| + V MakeLower| + V subtract| + V defeat|սʤ + V surrender| + V degrade| + V degrade| + V degrade|,education| + V BecomeLess|,scope=price|۸ + V arrive| + V defeat|սʤ,partner=strong|ǿ + V arrive| + V fall| +ɡ N tool|þ,#fall|,#aircraft| + V ComeToWorld| +ˮ V WeatherBad| +ˮ N quantity|,amount|,&RainSnow|ѩ +˳ V surrender| + V WeatherBad| + V cool| + V MoveItDown| +ѹ V MakeLower|,patient=voltage|ѹ + N liquid|Һ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ +ְ V degrade| +ּ V publish|,ContentProduct=document|,royal| + N plant|ֲ + N crop|ׯ,?material| + N plant|ֲ + N material|,?food|ʳƷ + N stone|ʯ,material| +ʯ N stone|ʯ +ʯ N stone|ʯ,material| + V FormChange|α + N character|,surname|,human|,ProperName|ר + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,color|ɫ,black| + V burn|,industrial| + ADJ aValue|ֵ,color|ɫ,yellow| + V worried|ż + N attribute|,distance|,#TakePicture| + ADJ aValue|ֵ,dampness|ʪ,dried| + N emotion|,worried|ż + V worried|ż +Dz V uneasy| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ͷö V unfortunate| + N stone|ʯ,material| + V worried|ż + N chemical|ѧ + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V worried|ż + V worried|ż + ADJ aValue|ֵ,stickiness|,sticky| + V fasten|˩ + N material| + N material|,*fasten|˩ + N tool|þ,*print|ӡˢ + N tool|þ,medical|ҽ + N tool|þ,*wrap|,#electricity| + V fasten|˩ +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ + N part|,%tool|þ,#record|¼ +ľ N material|,?tool|þ + N tool|þ,cubic|,@put|,#medicine|ҩ,medical|ҽ + N stone|ʯ,material| +Ƥ N material| +Ƭ N part|,%tool|þ,#record|¼ +ˮ N stationery|ľ,*fasten|˩ +Ь N clothing|,#foot| +Ь N clothing|,#foot|,#RainSnow|ѩ +ѥ N clothing|,#foot|,#RainSnow|ѩ +ӡ V print|ӡˢ +ӡ N machine|,*print|ӡˢ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ɪ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +״ ADJ aValue|ֵ,form|״ + V BeOpposite| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V BeAcross|ཻ + V associate| + V mating| + V submit| +׾ V fail|ʧ + V entrust|ί + V dispatch|Dz +ͷ V release|ͷ +ʧ֮ V lose|ʧȥ + V fight|,military| + V BeAcross|ཻ + N location|λ,BeAcross|ཻ,#route|· + N location|λ,BeAcross|ཻ,#route|· +· N location|λ,BeAcross|ཻ,#route|· + V submit| + V SetAside| + V BeAcross|ཻ + V admit| + V entrust|ί + V explain|˵ + V admit| + V entrust|ί + V explain|˵ + N fact|,#associate| + V tell| + N image|ͼ,dot| + N part|,%space|ռ,dot| + V separate| + V pay| + V compete| + V fight| + V fight|,military| + V pay| + V submit| + N part|,%AnimalHuman|,nerve| + V pay| + V submit| + V associate| + ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ +ʽ ADJ aValue|ֵ,behavior|ֹ,EachOther|໥ + V return| + V exchange| + N machine|,#communicate| + V return| + V BeAcross|ཻ +㴦 N location|λ,@ComeTogether| + V fight|,military| + V submit|,commercial| + N time|ʱ,@submit|,commercial| + V appear| + V mix| + V associate| +ʻ N human|,*associate|,female|Ů + N shows|,#associate| + V happen|,manner=together|ͬ + V associate| + V connect| + V entrust|ί +Ӱ V replace|,patient=affairs| + V BeAcross|ཻ + N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| + V fulfil|ʵ + V submit|,possession=document|,education| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ڳ V praise|佱 +ڳ V praise|佱,manner=together|ͬ + N pay|,possession=money| + ADJ aValue|ֵ,behavior|ֹ,#electricity| + V exchange| + N electricity| + V pay| + V mating|,#animal| + N attribute|,relatedness|,&human| + V mix| + V discuss| + V fight| + V sell| +˰ V pay|,possession=expenditure| +̸ V talk|̸ + V replace| +ͨ N fact|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,*transport|,#information|Ϣ +ͨ N institution|,#vehicle|ͨ,ProperName|ר,politics| +ͨ N vehicle|ͨ +ͨ N law|ɷ,#vehicle|ͨ,#VehicleGo|ʻ +ͨ N human|,#occupation|ְλ,*manage|,#vehicle|ͨ,#route|·,police| +ͨ N quantity|,amount|,&vehicle|ͨ,&VehicleGo|ʻ +ͨ¹ N phenomena|,#vehicle|ͨ,unfortunate|,undesired|ݬ +ͨ N facilities|ʩ,space|ռ,linear|,#VehicleGo|ʻ +ͨ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ͨӵ N phenomena|,crowded|,#vehicle|ͨ,#VehicleGo|ʻ +ͨ V suffer|,content=$BlockUp|,experiencer=LandVehicle| +ͷӶ V speak|˵ + V associate| +β V mating|,#animal| +ӳ V AppearanceChange|۱ +ӳ V illuminate| + N music|,entertainment| + N community|,*perform|,#music|,entertainment| + N music|,entertainment| + V speak|˵ + V submit|,purpose=check| + N furniture|Ҿ,space|ռ,@sit| + N affairs|,#buy|,#sell|,commercial| + N affairs|,#money|,commercial| +׻ N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,#buy|,#sell|,commercial| + N attribute|,relatedness|,&human| + N shows|,#associate| + V associate|,partner=friend| + V associate| +ս V fight|,military| + V explain|˵ + V pay| +֯ V mix| + V mating| + N part|,%place|ط,surrounding|Χ,#city| + N part|,%place|ط,surrounding|Χ,#city| + N human|,*reside|ס + N part|,%place|ط,surrounding|Χ,#city| + V tour| + V irrigate|,agricultural|ũ + V spray| + V spray|,industrial| + V irrigate| + V irrigate|,agricultural|ũ +ˮ V irrigate| + V produce|,industrial| + V fill| +ע V fill| +ע V give| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N celestial| +ƻ ADJ aValue|ֵ,temperature|¶,hot| + N human|,desired|,$like|ϧ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ε ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V shy| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V indulge| + V indulge| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V masticate|׽ + V TalkNonsense|Ϲ˵ + V MakeTrouble| + V mix| + V mix| + N machine|,*mix| + N machine|,*mix| + V mix| + V MakeTrouble| + V mix| + V mix| + V MakeTrouble| + V deceive|ƭ + V MakeTrouble| + V break|۶ +½ V connect| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V amend| + V pretend|װ +ý ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ý ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + N human|,*pretend|װ + V HideTruth| + V amend| + V amend|,medical|ҽ + V lucky| + N part|,%AnimalHuman|,foot| + N part|,%inanimate|,base| + N stone|ʯ,waste| +Ű N part|,%AnimalHuman|,foot| +ű N part|,%AnimalHuman|,foot| +ű N publications|鿯,#shows|,entertainment| +Ų N part|,%AnimalHuman|,foot| +Ų N attribute|,distance|,&walk| +ŵ N tool|þ,*illuminate|,#entertainment| +ŵ N part|,%AnimalHuman|,foot| +ŷ N human|,#occupation|ְλ,*TakeAway|ᶯ +Ÿ N part|,%AnimalHuman|,foot| +ż N part|,%AnimalHuman|,foot| + N attribute|,strength|,&leg| + N payment|,#TakeAway|ᶯ + N tool|þ,police|,#crime|,#foot|,*detain|ס +¯ N tool|þ,*WarmUp|,#foot| + N part|,%AnimalHuman|,foot| + N disease| +ּ N facilities|ʩ,#build| +̤ N LandVehicle| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + N part|,%AnimalHuman|,foot| + ADJ aValue|ֵ,attachment|,foot| + N location|λ,#foot|,beneath| + N part|,%AnimalHuman|,foot| +Ѿ N part|,%AnimalHuman|,foot| +ӡ N trace|,#SelfMove|,#CauseToMove|,#foot| + N part|,%AnimalHuman|,foot| +ָ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,foot| +ֺ N part|,%AnimalHuman|,foot| +ֺϸ ADJ aValue|ֵ,length|,long| +ע N part|,%text| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ʊ V debate| +ƻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V deny| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N MusicTool| + V compete| + V fight| + N human|,*perform|,entertainment| + N image|ͼ,angular| + N land|½,#waters|ˮ + N location|λ,space|ռ,angular| + N part|,%AnimalHuman|,*feel| + N part|,%space|ռ,space|ռ,angular| + N shape| + N tool|þ,past|,*drink|,#drinks|Ʒ + CLAS unit|λ,&money|,(China|й) +dz N tool|þ,*measure| +Ƕ N attribute|,distance|,&location|λ +Ƕ N standpoint| +Ǹ N metal|,material| +¥ N facilities|ʩ,space|ռ,@look| + N location|λ,space|ռ,angular| +Ĥ N part|,%AnimalHuman|,eye| +Ĥ N disease| + N phenomena|,sport| +ɫ N human|,*perform|,entertainment| +ʯ N stone|ʯ,material|,mine| + N metal|,material| + V compete| + V fight| + N image|ͼ,cubic| +״ N shape| +׶ N image|ͼ,cubic| + N food|ʳƷ + N food|ʳƷ + V obtain|õ,military|,police| + V submit| +ɷ V pay|,possession=money| +ɸ V pay| +ɻ V obtain|õ,military|,police| +ɿ V pay|,possession=money| + V pay| +˰ V pay|,possession=expenditure| + V remove| +е V remove|,patient=weapon|,military|,police| +е V surrender|,military|,police| + V coil| + V kill|ɱ +ʳ N machine|,*lift| +ʼ N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʾ֭ V think|˼ + N tool|þ +ɱ V kill|ɱ + N tool|þ,police|,*punish|,#crime|,*kill|ɱ +ʹ V painful|ʹ + N fact|,kill|ɱ,police| + V attack|,military| + V steal|͵ + V destroy| +Ϯ V steal|͵ + N system|ƶ,generic|ͳ,religion|ڽ + V teach| + V teach|,education| +̰ N plans|滮,#teach|,education| +̲ N readings|,*teach|,education| +̳ N readings|,*teach|,education| +̵ V teach| +̵Ա N human|,#occupation|ְλ,*teach|,politics| +̸ V improve|,patient=education| +̹ N human|,#occupation|ְλ,employee|Ա,education| +̹ N human|,#occupation|ְλ,*teach| +̻ V teach| +̻ N human|,religion|ڽ +̻ N community|,religion|ڽ +̻ V teach| +̻ V teach|,education| +̾ N tool|þ,*teach|,generic|ͳ +̿ N readings|,*teach|,$study|ѧ,education| +̿ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) + N human|,#occupation|ְλ,*teach| + V teach|,education| +Ա N human|,#occupation|ְλ,*teach| + N attribute|,age|,#occupation|ְλ,&human|,#employee|Ա,#teach| + N place|ط +ʦ N human|,religion|ڽ +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ ADJ human|,#occupation|ְλ,*teach|,education| +ʦ N human|,#occupation|ְλ,*teach|,education| +ʿ N human|,religion|ڽ + N room|,education| + N human|,#occupation|ְλ,*teach|,education| + V teach|,education| + V teach|,education| + V incite|ָʹ + N InstitutePlace|,religion|ڽ + N thinking|˼ + N thinking|˼,stiff| + N human|,stiff|,undesired|ݬ +ͷ N human|,#occupation|ְλ,*teach| +ͷ N human|,#occupation|ְλ,*teach|,military|,past| +ͽ N human|,religion|ڽ +ί N institution|,ProperName|ר,#education| + N affairs|,#teach| +ѧ V teach|,education| +ѧ N plans|滮,#teach|,education| +ѧ N method|,*teach|,education| +ѧҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ѵ V ExpressAgainst|Ǵ +ѵ N experience| + V teach|,research|о + N part|,%InstitutePlace|,*teach|,*research|о + N part|,%InstitutePlace|,*teach|,*research|о + V teach| + N reason|,religion|ڽ + N attribute|,ProsCons|,pros|,desired|,&teach| + N affairs|,education| + V teach| + N institution|,ProperName|ר,#education| +ĸ V improve|,patient=education| + N human|,#knowledge|֪ʶ,education| + N institution|,ProperName|ר,#education| +ѧ N knowledge|֪ʶ,#education| +Ա N human|,#occupation|ְλ,*teach|,education| +ְ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| +ְԱ N human|,#occupation|ְλ,employee|Ա,education| + V ize|̬ +ĸ N bacteria|΢,material|,?food|ʳƷ + N LandVehicle| +γ N LandVehicle| + N LandVehicle| + ADV aValue|ֵ,degree|̶,more| + PREP {contrast} +ϱ ADV aValue|ֵ,degree|̶,ish| +ϱ ADV aValue|ֵ,degree|̶,more| +Ͼ V HaveContest| + V HaveContest| + ADJ aValue|ֵ,weight|,NotHeavy|,ish| + ADJ aValue|ֵ,time|ʱ,late| +Ϊ ADV aValue|ֵ,degree|̶,more| +֮ PREP {contrast} + ADJ aValue|ֵ,sex|Ա,male| + V cry| + V employ| + V naming| + V order| + V request|Ҫ +в ADJ aValue|ֵ,possibility|,impossible|,$naming| +з N attribute|,name|,&entity|ʵ +к V cry| +к N human|,*cry| +к N human|,*cry| +к V praise|佱 +л N human|,poor|,undesired|ݬ +л V cry| +о V praise|佱 +п V protest| +п V sigh|̾ +п಻ V protest| + V ExpressAgainst|Ǵ + V cry|,content=sell|,commercial| + V cry| + V ExpressDissatisfaction|ʾ + V protest| + V cry| + N sound|,cry| + V ShowBadEmotion|ʾ + V call|ٻ + V naming| + V naming| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N facilities|ʩ,space|ռ,@store| + V StripOff|ȥ + V lift| + V reveal|¶ +Ҵ V reveal|¶ +ҵ V reveal|¶,patient=secret| +Ҷ V reveal|¶,patient=undesired|ݬ +ҷ V reveal|¶ +ҸͶ V uprise| +ҿ V open| +ҿ V reveal|¶ +¶ V reveal|¶ +Ļ V start|ʼ +ʾ V announce| +ʾ V reveal|¶ +ʾ N human|,*reveal|¶ + V announce| + V approach|ӽ + V catch|׽ס + V connect| + V meet| + V receive| + V replace| +Ӱ V replace|,content=bear|е +Ӱ N human|,*bear|е +Ӳ V help|,scope=GiveBirth|,medical|ҽ +Ӵ V associate| +Ӵ V fight|,military| +Ӵ V touch| +Ӵ N phenomena|,#touch|,loose|,undesired|ݬ +ӴȾ ADJ aValue|ֵ,behavior|ֹ,#touch| +ӴȾ N disease| +Ӵ V entertain|д +Ӵ N room|,@entertain|д +ӴԱ N human|,#occupation|ְλ,*entertain|д +Ӵվ N InstitutePlace|,@entertain|д +ӵ V meet|,Vachieve| +ӵ V receive|,Vachieve| +ӵ V touch|,patient=land|½,#electricity| +ӵ N location|λ,@BeAcross|ཻ +Ӷ ADJ aValue|ֵ,behavior|ֹ,continuous| +ӷ V replace|,content=defend|,military| +ӷ V entertain|д +ӹ V replace|,content=manage| +ӹ V obey|ѭ +Ӻ V connect| +ӻ V MakeBetter|Ż,industrial| +ӻ V fight|,military| +ӻ V receive| +Ӽ V help| +Ӽ V meet| +ӽ V BeNear| +ӽ ADJ aValue|ֵ,distance|,near| +ӽ V approach|ӽ +ӽ V approach|ӽ +ӿ N part|,%software| + V do|,manner=replace| + N SportTool|˶,sport| + N fact|,compete|,sport| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,behavior|ֹ,continuous| +Ŀ N tool|þ,*look| + V include| + ADJ aValue|ֵ,content|,concise|,desired| +Ǣ V associate| + V BeNear| + V replace|,content=bear|е + V connect| + V help|,scope=GiveBirth|,medical|ҽ + V include| + V receive| +ջ N machine|,*receive|,#information|Ϣ +վ N InstitutePlace|,@receive|,information|Ϣ + N human|,*receive| + V bear|е + V accept| + V suffer|,content=interrogate|,police| + N human|,*receive| + V follow| + V replace| +ͨ V connect| +ͷ V associate| +ͷ V connect| +ͷ V connect|,industrial| +ͷ V meet| + V ShowLove|ʾ,means=CausePartMove| +ᄉ N tool|þ,*look|,#physical| + CONJ {supplement|ݽ} + V connect|,#electricity| + N facilities|ʩ,#electricity| + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,continuous| +Ӧ V help| +Ӧ V provide| +վ V meet|,location=facilities|ʩ,#vehicle|ͨ + V cure|ҽ +ס V catch|׽ס,Vachieve| + V GoOn| + V catch|׽ס,Vachieve| + V follow| + V appear| + V appear| + ADJ aValue|ֵ,range|,all|ȫ +Դϲ V joyful|ϲ +Կ AUX {modality|} + N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| +ո N part|,%plant|ֲ,body| + N InstitutePlace|,*sell|,@buy|,commercial| + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,route|· +ֵ N facilities|ʩ,route|· +ֵ N place|ط,#reside|ס +ֵ N facilities|ʩ,*illuminate|,#route|· +ַ N human|,*reside|ס,near| +־ N attribute|,scene|,&facilities|ʩ,&building| +ֿ N location|λ,#route|·,angular| + N facilities|ʩ,route|· + N place|ط,#reside|ס + N location|λ,%route|· + N InstitutePlace|,space|ռ,commercial| +̸ V talk|̸ +ͷ N location|λ,#route|·,space|ռ,angular| +ͷβ N location|λ,#route|·,space|ռ + N facilities|ʩ,route|· + N location|λ,%route|· + N attribute|,rank|ȼ,&human| + N part|,%building|,nerve| +ײ N attribute|,status|,&human| +׶ N process|,#time|ʱ +׶ ADJ aValue|ֵ,behavior|ֹ +׼ N attribute|,rank|ȼ,&human| +׼ N attribute|,status|,&human| + N part|,%building|,nerve| + N human|,crime|,undesired|ݬ,$detain|ס + V break|۶ + V obstruct|ֹ +س V improve| +ض V BlockUp| +ض V break|۶ +ض V obstruct|ֹ +ظ V due| +ظ N time|ʱ,@due| +ػ V obtain|õ +ػ V attack|,military| + V detain|ס + V BlockUp|,#waters|ˮ + N part|,%inanimate|,surfacial| +ȡ V separate| +Ȼ ADV aValue|ֵ,degree|̶,extreme| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| +̱ V paralyse|̱ +֫ V cure|ҽ,#limb|֫ +ֹ V due| +ֹ N time|ʱ,@due| + PREP {TimeFin} + V attack| + V force|ǿ + N phenomena|,undesired|ݬ,#unfortunate| + V rob| +ٲ V rob|,possession=wealth|Ǯ +ٳ V control|,means=fierce|,crime| +ٳ N human|,*control|,crime| +ٶ V rob| +ٷ N human|,crime|,undesired|ݬ,*rob| +ٺ V alive|,#unfortunate| +ٻ V control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| +ٻ V human|,*control|,patient=aircraft|,means=fierce|,crime| + V rob| + N phenomena|,unfortunate|,undesired|ݬ +ɫ V rob|,target=female|Ů,purpose=mating| + V rescue|,patient=human|,crime| + N attribute|,behavior|ֹ,&human| + N attribute|,length|,&inanimate| + V compile|༭,means=subtract| + V economize|ʡ + N location|λ,dot| + N part|,%document| + N part|,%inanimate| + N part|,%physical| + N shape| + N time|ʱ,festival|,@congratulate|ף +ڰ V restrain|ֹ,patient=sorrowful| +ڵ V economize|ʡ,patient=electricity| +ڹ N part|,%thing|,important| +ڹ N time|ʱ,important| +ڼ N time|ʱ,day|,@rest|Ϣ,@WhileAway| +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڽ ADJ aValue|ֵ,behavior|ֹ,lasting| +ڽ N disease| + N time|ʱ,season| + V economize|ʡ,patient=expenditure| + N part|,%machine| +¼ V record|¼ + N attribute|,speed|ٶ,&act|ж +ú V economize|ʡ,patient=material| +Ŀ N shows| + V economize|ʡ,patient=strength| + N attribute|,speed|ٶ,&music|,&language| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף +ʡ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʡ V economize|ʡ +ʳ V subtract|,patient=consume|ȡ +ˮ V economize|ʡ,patient=water|ˮ +֦ V MakeTrouble| +֦ V happen|,experiencer=problem| +ʳ V alive|,manner=thrifty| + V economize|ʡ,patient=material| + V surplus|ʣ + V prohibit|ֹ,ResultEvent=GiveBirth| +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ V economize|ʡ +ԼͶ ADJ aValue|ֵ,ability|,able|,economize|ʡ +֫ N AnimalHuman|,generic|ͳ + V control| + V restrain|ֹ + N attribute|,speed|ٶ,&event|¼ + N attribute|,speed|ٶ,&music|,&language| + N fruit|ˮ +۹ N food|ʳƷ + N fruit|ˮ + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N human|,able|,desired| +ܳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ܳ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ܳ˲ N human|,able|,desired| + N artifact|˹,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble| + ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Czech|ݿ) +ݱ N information|Ϣ,desired|,#win|ʤ,#succeed|ɹ +ݾ N facilities|ʩ,route|· +ݾ N method|,convenient| +ݿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ˺˹工 N place|ط,ProperName|ר +ݿ˺˹工 N human|,(Czechoslovak|ݿ˺˹工) +ݿ˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +ݿ N language|,#country|,ProperName|ר +ȵ V VieFor| + N part|,%AnimalHuman|,hair|ë +ë N part|,%AnimalHuman|,hair|ë + V exhaust| +߳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +߾ V exhaust| +߾ȫ V endeavour| + V endeavour| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,color|ɫ,white| +ྻ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N tool|þ,*cleanness|ྻ,generic|ͳ +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| + V AlterForm|״ + V GiveBirth| + N document|,commercial| + V finish| + N location|λ,dot| + V produce| + V twine| + V weave| +᰸ V finish|,police| +᰸ N quantity|,rate|,&finish|,police| + V disable|м,scope=speak|˵ + N human|,undesired|ݬ,*SufferFrom|,#speak|˵ + V ally| + V associate| + V StateChange|̬,StateFin=ice| +᳦ N part|,%AnimalHuman|,viscera| +᳦ N disease| + V forming|γ + V become|Ϊ,isa=enemy| + V AmountTo|ܼ +ᵳӪ˽ V collude| +֯ N part|,%AnimalHuman|,flesh| +ṹ N part|,%entity|ʵ,bone| +ṹ N attribute|,ability|,$forming|γ,&artifact|˹ + V kill|ɱ + N result| + N disease| +˲ N disease| +˸˾ N bacteria|΢ +˾ N medicine|ҩ + V GetMarried| + V merge|ϲ + N human|,*merge|ϲ + V pay|,commercial| + V GetMarried| + N human|,*GetMarried| + N image|ͼ,$TakePicture|,#GetMarried| + V collude| +Ἧ V ComeTogether| +Ἧ V assemble|ۼ +ύ V associate| + N disease|,#swollen| +ᾧ ADJ aValue|ֵ,form|״ +ᾧ N natural|Ȼ +ᾧ N result| +ᾧ״ ADJ aValue|ֵ,form|״ + N result| + V AlterForm|״ + N thought|ͷ,$decide| + V ally| +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease|,#eye| + V GetMarried| + V calculate|,commercial| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V forming|γ,PatientProduct=community| +ʯ N stone|ʯ,#disease| +ʯ N disease| +ʵ V GiveBirth| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| +ʵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ʶ V associate| + V cease|ͣ + V finish| + N expression|,*finish| +˪ V StateChange|̬ + V calculate|,commercial| +Ϊ V become|Ϊ +β N part|,&event|¼,tail|β +β N part|,&music|,tail|β + V forming|γ +ҵ V finish|,scope=study|ѧ,education| + N wealth|Ǯ,surplus|ʣ + N expression|,*finish| +ԩ V become|Ϊ,isa=enemy| +Ե V tie| + V cure|ҽ + V calculate|,commercial| + V BeRecovered|ԭ,#skin|Ƥ,medical|ҽ + N character|,surname|,human|,ProperName|ר + V dismiss| + V excrete|й + V explain|˵ + V handle| + V know|֪ + V remove| + N result|,$handle| + V send| + V separate| + V soothe|ο + V remove| +ͬ V remove|,patient=document| + V explain|˵ +ⶳ V StateChange|̬ +ⶳ V resume|ָ +ⶾ V cure|ҽ,content=fever|,medical|ҽ +ⶾ V cure|ҽ,content=poison|,medical|ҽ + V explain|˵ + V release|ͷ +ź N time|ʱ,(China|й) +ž N army|,(China|й) +ž N publications|鿯,news|,military|,(China|й) +ǰ N time|ʱ,(China|й) +ǰ ADJ time|ʱ,past| + N place|ط,(China|й) + V discharge| + V remove|,patient=hate| +׹ V cease|ͣ,military| + V cease|ͣ,content=prohibit|ֹ + V rescue| + V destroy| + V handle| +⿪ V separate| + V remove|,patient=HungryThirsty| + V remove|,patient=difficult| +ϵ V handle| + V translate|,#computer|,#software| + V remove|,patient=upset| + V CauseToDo|ʹ,ResultEvent=^secret| + V remove|,patient=difficult| + V donate| + V help|,scope=wealth|Ǯ +Ƹ V discharge| + V split|ƿ +ʬ N human|,*split|ƿ,medical|ҽ +ѧ N knowledge|֪ʶ,medical|ҽ +ѧ N human|,*split|ƿ,medical|ҽ + V remove|,patient=angry| +Ȱ V soothe|ο + V cure|ҽ,content=fever| +ɢ V remove| + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + V excrete|й + N attribute|,ability|,&human| + N attribute|,posture|,&human| +˵ V explain|˵ +˵ N text|,*explain|˵ +˵Ա N human|,*explain|˵ + V handle|,patient=problem| + V perish| + V release|ͷ +Χ V remove|,patient=surround|Χ,military| +Χ V rescue|,StateIni=embarrassed|Ϊ +Χ V rescue|,patient=surround|Χ,military| + V analyze| + V remove|,patient=sad|dz +ְ V dismiss|,ResultIsa=official| + N human|,family|,female|Ů + N human|,female|Ů,adult| + N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,mass| + N human|,family|,mass|,female|Ů + V GiveUp| + V obstruct|ֹ + V persuade|Ȱ˵ + V prohibit|ֹ + N system|ƶ,religion|ڽ + N tool|þ,*decorate|װ,$PutOn| +䱸 V defend| +䱸 V obstruct|ֹ + V GiveUp| + V prohibit|ֹ +䵶 N tool|þ,religion|ڽ +佾 V GiveUp|,content=arrogant| + N aspiration|Ը,PayAttention|ע + V GiveUp|,content=addict|Ⱥ + V prohibit|ֹ,politics| +ָ N tool|þ,*decorate|װ,$PutOn| + N tool|þ,@LieDown| + V use| + PREP {purpose} + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ĩ N material|,?food|ʳƷ + N gas|,*kill|ɱ + N attribute|,range|,&entity|ʵ + N part|,%entity|ʵ + N part|,%human|,#community| + N place|ط +籮 N mark|־ + N tool|þ,*measure| +綨 V delimit| +綨 V explain|˵ + N waters|ˮ,linear| + N part|,%software| +ʯ N mark|־ +˵ N information|Ϣ + N phenomena|,sport| + N attribute|,boundary|,&entity|ʵ + N location|λ,ending|ĩ + N mark|־ +׮ N mark|־ + V borrow| + V use| + V lend| + V lend|,commercial| + PREP {purpose} + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| +赶ɱ V damage| + V dispatch|Dz + V lend|,commercial| +跽 N part|,%account|,commercial|,#human| + V lend| + V lend|,commercial| +ŷ V ExpressAgainst|Ǵ + V use|,patient=reason| +軨׷ V GiveAsGift| + V use|,patient=time|ʱ + V study|ѧ + V use| + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + N reason|,fake|α,undesired|ݬ + V use| + V borrow|,possession=fund|ʽ,commercial| + V lend|,possession=fund|ʽ,commercial| + N money|,commercial|,$lend| + V borrow| +ʬ V BeRecovered|ԭ + V reside|ס + N bill|Ʊ,#wealth|Ǯ,#owe|Ƿ + PREP {purpose} + V borrow| + V borrow|,commercial| + V use| + V borrow| +ծ V borrow|,possession=fund|ʽ,commercial| +֧ V borrow|,possession=fund|ʽ,commercial| + V use| + V use| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N clothing|,*protect|,military|,past| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%language| +ʶ N part|,%language| + N part|,%AnimalHuman|,skin|Ƥ + V engage| + V explain|˵ + V guide| + V recommend|Ƽ + N human|,*guide| + N human|,*reconcile|,#GetMarried| + N letter|ż,*prove|֤ + ADJ aValue|ֵ,performance|,explain|˵ + V PayAttention|ע + V oppose| + V situated| + N physical| + N disease| + N beast| + V persuade|Ȱ˵ + N regulation|,#religion|ڽ + CLAS NounUnit|,&fact| + V due| + V due| +ʱ CONJ {time|ʱ} + N tool|þ,*wipe| + N human|,female|Ů + N part|,%AnimalHuman|,flesh| + N part|,%AnimalHuman|,nerve| + N part|,%physical|,nerve| + N attribute|,physique|,&human| +ƣ V tired|ƣ + N part|,%AnimalHuman|,flesh| + CLAS unit|λ,&weight| +ƽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,yellow| + N character|,surname|,human|,ProperName|ר + N metal| + N metal|,material| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N account|,*record|¼,#name|,#win|ʤ,past| + V succeed|ɹ,scope=exam|,result=include|,education| + N PenInk|ī,*write|д +̻Ի ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,#metal| + N place|ط,capital|,ProperName|ר,(Cambodia|կ) +𲻻 ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ӳ ADJ aValue|ֵ,brightness|,bright| +ѿ V flee| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,circumstances|,steady|,desired| + N mark|־ + N quantity|,amount|,&wealth|Ǯ + N part|,%human|,hair|ë,yellow| + N human|,religion|ڽ +ŬĿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʯ N material|,?tool|þ,precious| + N material|,?tool|þ,precious| + N lights|,bright| + N fish| + N InsectWorm| +𻨲 N FlowerGrass| + ADJ aValue|ֵ,color|ɫ,yellow| + N time|ʱ,#GetMarried| + N bird| + N tree|,?medicine|ҩ +˪ N medicine|ҩ + N attribute|,price|۸,&metal|,commercial| + N tool|þ,*reward|,$GiveAsGift|,desired| + N tool|þ,commercial| + N InstitutePlace|,space|ռ,@store|,#wealth|Ǯ,#country| + N InstitutePlace|,mine| + N part|,human|,female|Ů,foot| + N tool|þ,*reward|,$GiveAsGift|,desired| +Ƶ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ǯ N wealth|Ǯ +Ǯ N beast| +ǹ N fish| + N time|ʱ,autumn| + N affairs|,#wealth|Ǯ,commercial| +ڲ N human|,*control|,#commercial| +ڹͷ N human|,#commercial| +ڼ N human|,#wealth|Ǯ,rich|,commercial| +ڽ N community|,#wealth|Ǯ,commercial| +ȶ N attribute|,circumstances|,peaceful|,&money|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ɳ N place|ط,capital|,ProperName|ר,(Zaire|) + N metal| + N metal|,generic|ͳ +˹ N place|ط,capital|,ProperName|ר,(Jamaica|) +˿ N beast| +˿ȸ N bird| + N metal|,#wealth|Ǯ +ݲؽ V GetMarried|,undesired|ݬ + N celestial|,space|ռ,#weather| + N FlowerGrass|,?medicine|ҩ + N fish|,*recreation| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Կ N part|,%entity|ʵ,important|,heart| +Կ N tool|þ,*open|,*shut|ر + N FlowerGrass| + N tool|þ,*cure|ҽ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N metal|,material| + N facilities|ʩ,space|ռ + N attribute|,name|,empty|,&entity|ʵ + N mark|־,commercial| +ǵ N house|,royal| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now| + N time|ʱ,now|,day| + V differ|ͬ + ADJ aValue|ֵ,time|ʱ,future| + N time|ʱ,future| + N time|ʱ,now|,year| + N human|,now| + N time|ʱ,now|,day| + N time|ʱ,#alive| + N time|ʱ,#alive| + N time|ʱ,now| + N time|ʱ,now|,day| + N time|ʱ,now|,night| + N time|ʱ,now|,past| + N sound|,#language| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N part|,%AnimalHuman|,liquid|Һ + N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N part|,%place|ط,mouth| + N place|ط,city|,ProperName|ר,(China|й) +ͲΤ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zimbabwe|ͲΤ) +ͲΤ N place|ط,country|,ProperName|ר,(Africa|) +ͲΤԪ N money|,(Zimbabwe|ͲΤ) +ֵ V talk|̸,manner=joyful|ϲ +ζ ADJ aValue|ֵ,property|,joyful|ϲ + N payment| +Һ N part|,%AnimalHuman|,liquid|Һ + N human|,family|,male| + N part|,%clothing|,body| + N mental| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,tightness|ɽ,tight| + V tighten|ս + V approach|ӽ + V shut|ر + ADJ aValue|ֵ,content|,concise|,desired| + V follow| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +״̬ N attribute|,circumstances|,urgent|,&entity|ʵ + V GoOn| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V BeNear| + V BeNear| + N human|,*reside|ס,near| +ܹ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,tightness|ɽ,tight| + V relate|й + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,flourishing|,desired|,commercial| +ȱ V lack|ȱ,commercial| + ADJ aValue|ֵ,tightness|ɽ,tight| + N clothing|,#body| + V follow| + V shrink|С + V BeNear| + V hold| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + V uneasy| +׷ V chase|׷ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?clothing| + N fact|,compete|,sport| + N material|,?clothing| + N bird| + N FlowerGrass| + N material|,?clothing| + N mark|־,*reward|,*GiveAsGift| + V MakeBetter|Ż + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,city|,ProperName|ר,(China|й) + ADV {emphasis|ǿ} + ADJ aValue|ֵ,kind|,special| + ADV {emphasis|ǿ} + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +Сĵ N human|,cautious| +С΢ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V GoForward|ǰ + V GoInto| + V buy|,commercial| + V drink| + V eat| + V obtain|õ + V submit| + V succeed|ɹ,sport| + V approach|ӽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V prosper| + V consume|ȡ + V engage| + N process| + N attribute|,speed|ٶ,&dig|ھ + V SelfMoveInManner|ʽ + N part|,%place|ط,mouth| + N transport|,commercial| + N attribute|,speed|ٶ,&event|¼ + CONJ {supplement|ݽ} + V start|ʼ,content=leave|뿪 + V attack|,military| + V attack|,military| + N human|,*attack|,military| + V submit| + V prosper| + N knowledge|֪ʶ,#grow|ɳ + N human|,#knowledge|֪ʶ + V buy|,possession=artifact|˹,commercial| + V attack|,military| + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V meet| + V SelfMoveInManner|ʽ + V GoForward|ǰ + V GoForward|ǰ,military| + N part|,%implement|,mouth| + N part|,%place|ط,mouth| + V transport|,commercial| + N human|,*transport|,commercial| + V GoInto| + STRU {Vdirection|,internal|} + N human|,*GoInto| + V GoInto| +ȡ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȡ N mental| +ȥ V GoInto| +ȥ STRU {Vdirection|,internal|} + V GoInto| +ʳ V eat|,patient=edible|ʳ +ʿ N human|,*succeed|ɹ,#exam|,past| +ˮ V GoInto|,agent=liquid|Һ +ˮբ N facilities|ʩ,#waters|ˮ + V GoForward|ǰ,GoBackward| + N attribute|,range|,&event|¼ + V embarrassed|Ϊ +ά V embarrassed|Ϊ + V GoInto|,LocationFin=room| + N payment| + V GoForward|ǰ + V GoOn|,Vgoingon|չ + V conduct|ʵʩ + N music| + V check|,commercial| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +һ ADJ aValue|ֵ,degree|̶,more| + N fact|,prosper| +չ V prosper| +վ V GoInto|,LocationFin=facilities|ʩ,#LandVehicle| + N payment| + N method|,#calculate| +פ V arrive| +פ V arrive|,military| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N character|,surname|,human|,ProperName|ר + V upgrade| + V meet| + N shows| + V upgrade| +ְ V upgrade| + V meet| + V detain|ס,police|,crime| + N place|ط,#prohibit|ֹ + V prohibit|ֹ + N system|ƶ + V WithstandNot|ס +ס V EndureNot| +ס V WithstandNot|ס + V withstand|ס +ס V withstand|ס + N place|ط,#prohibit|ֹ + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=gamble|IJ + V evade|ر + V evade|ر,medical|ҽ + N regulation|,*evade|ر + V prohibit|ֹ + N text|,*prohibit|ֹ + N place|ط,#prohibit|ֹ + N place|ط,#prohibit|ֹ,#exercise| + V prohibit|ֹ,ResultEvent=compete|,sport| + V withstand|ס + V prohibit|ֹ,ResultEvent=addictive|Ⱥ + V prohibit|ֹ,ResultEvent=use| + V prohibit|ֹ,ResultEvent=transport|,commercial| +ֹ V prohibit|ֹ +ֹ N prohibit|ֹ +ֹ N human|,prohibit|ֹ +Ʒ N artifact|˹,generic|ͳ,#prohibit|ֹ + V restrain|ֹ + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N location|λ,surrounding|Χ,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,distance|,near| + N location|λ,surrounding|Χ + N time|ʱ,now| +ʷ N fact|,#time|ʱ + N facilities|ʩ,route|· + N waters|ˮ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,surrounding|Χ,space|ռ,#city| + N attribute|,distance|,near| + N attribute|,circumstances|,now|,&entity|ʵ + ADV aValue|ֵ,time|ʱ,now| + N human|,friend|,#reside|ס +· N facilities|ʩ,route|· + ADJ aValue|ֵ,time|ʱ + ADV aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + N time|ʱ,future| + N time|ʱ,future| + N human|,family| + N human|,family|,intimate| + N time|ʱ,now| + N time|ʱ,now| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V ill|̬,#eye| + N disease|,#eye| +ˮ¥̨ N attribute|,circumstances|,convenient|,&entity|ʵ +ˮ¥̨ȵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,similarity|ͬ,alike| +ֵ N symbol|,#quantity| +Щ N time|ʱ,now| + N cause|ԭ + ADJ aValue|ֵ,distance|,near| + N image|ͼ,$TakePicture|,#human| + N stone|ʯ,waste| + V soak| + N medicine|ҩ +û V soak| + V soak| +Ⱦ V influence|Ӱ + V soak| + V ill|̬ + V soak| +ʪ V become|Ϊ,descriptive=wet|ʪ,cause=soak| +͸ V soak| + V soak| + N human|,*soak| + V KeepOn|ʹ + V OwnNot| + V PayAttention|ע + ADJ aValue|ֵ,degree|̶,extreme| + V endeavour| + V exhaust| + ADJ qValue|ֵ,range|,all|ȫ + CONJ {concession|ò} + ADV {modality|} + CONJ {concession|ò} + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,earliness|,early| + V endeavour| +Ϊ V endeavour| + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| +Ȼ ADV aValue|ֵ,possibility|,possible| +˽֪ ADJ aValue|ֵ,property|,$know|֪ + ADV aValue|ֵ,ability|,able|,please|ȡ +ƾ ADJ aValue|ֵ,GoodBad|û,good|,desired| +۵ V perception|֪,#look| +ͷ N location|λ,ending|ĩ +ͷ N time|ʱ,ending|ĩ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| +ľ ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + V satisfied| + V conduct|ʵʩ,content=duty| + ADV aValue|ֵ,earliness|,early| + V conduct|ʵʩ,content=duty| +ְ V endeavour| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,desired| + N attribute|,bearing|̬,&human| + N attribute|,strength|,&human| + N emotion|,FondOf|ϲ + N human|,enemy|,strong|ǿ + N attribute|,strength|,&AnimalHuman| + N human|,mass|,strong|ǿ + V kick|߲ +ͷ N attribute|,strength|,&AnimalHuman| +ͷ N emotion| +ͷ N emotion|,excited| + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +; ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N medicine|ҩ,(China|й) + N character|,(China|й) +ҵҵ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N part|,%plant|ֲ,body| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,brightness|,bright| + N natural|Ȼ + N natural|Ȼ,generic|ͳ + N attribute|,form|״,&inanimate| + N part|,%inanimate| +ʯ N stone|ʯ,mine| + N natural|Ȼ,generic|ͳ + N part|,%implement|,#electricity| +Ө ADJ aValue|ֵ,clearness|,clear| +Ө͸ ADJ aValue|ֵ,clearness|,clear| +״ N natural|Ȼ,generic|ͳ + N beast|,*swim| + V occupy|ռ + V occupy|ռ,military| + N beast|,*swim| + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,capital| + N place|ط,capital|,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(Japan|ձ) + N MusicTool| + N shows| +ʦ N place|ط,capital| +Ϸ N shows| + V fear| + V surprise| + V stupefied|ľȻ + V MakeTrouble| + V fear| + V cry| + V flurried| +ʧ ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ +ʧ V fear| +δ V flurried| + V cry| + V fear| + N thunder| + V surprise| + V MakeTrouble| + ADJ aValue|ֵ,ability|,frighten|Ż +˵ ADJ aValue|ֵ,degree|̶,extreme| +̾ V surprise| +κ N phenomena|,undesired|ݬ,#unfortunate| +κ N water|ˮ,strong|ǿ +춯 ADJ aValue|ֵ,ability|,frighten|Ż +ϲ V joyful|ϲ + V frighten|Ż + ADJ aValue|ֵ,ability|,able|,frighten|Ż +Ķ ADJ aValue|ֵ,ability|,frighten|Ż + V awake| + V surprise| + V surprise| + V surprise| + V dizzy| + V twitch|鴤 + V surprise| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&AnimalHuman| + N humanized|,undesired|ݬ + N part|,%AnimalHuman|,liquid|Һ,#mating| + N part|,%entity|ʵ,heart| + N part|,%physical|,heart| + ADJ aValue|ֵ,content|,accurate|׼,desired| + N army|,strong|ǿ,desired|,military| + V MakeBetter|Ż,patient=army|,patient=institution| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʷ׳ ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + ADJ aValue|ֵ,content|,simple|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V read|,manner=attentive|ϸ + N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,ability|,able|,desired| +ϸ V planting|ֲ,manner=attentive|ϸ,agricultural|ũ + ADJ aValue|ֵ,brightness|,bright| + ADV aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N part|,%entity|ʵ,heart| +ӹ V produce|,industrial| + V subtract| + V subtract| + N attribute|,strength|,&AnimalHuman| +ݽ ADJ tired|ƣ + V refine|,industrial| + ADJ aValue|ֵ,content|,simple|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N humanized| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,content|,accurate|׼,desired| +ܶ N attribute|,content|,accurate|׼,&artifact|˹ + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ǿ ADJ aValue|ֵ,ability|,able|,desired| +ƣ V tired|ƣ +ƣ V tired|ƣ +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,quality|,refined|,desired| +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ N attribute|,content|,accurate|׼,&mental|,&act|ж + ADJ aValue|ֵ,quality|,refined|,desired|,military| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N attribute|,strength|,&AnimalHuman| + N mental| + N part|,%entity|ʵ,heart| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N disease| +Ժ N InstitutePlace|,@cure|ҽ,#disease|,#mental|,medical|ҽ + ADJ aValue|ֵ,strength|,weak| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +֢ N disease| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + N human| + ADJ aValue|ֵ,attachment|,mental| + ADJ aValue|ֵ,attachment|,mental| + N mental| + N part|,%entity|ʵ,bone| +ͨ ADJ BeAble|ܹ +ͨ V BeAble|ܹ +ͨ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ѡ ADJ aValue|ֵ,quality|,refined|,desired| +ѡ V choose|ѡ + N material|,?food|ʳƷ,salty| +Һ N part|,%AnimalHuman|,liquid|Һ,#mating| + V endeavour| +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| + V BeAble|ܹ +տ ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| + V refine|,industrial| +װ ADJ aValue|ֵ,property|,$wrap|,refined| +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,liquid|Һ,#mating| + N crop|ׯ + N material|,?food|ʳƷ,#crop|ׯ + V GoThrough| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N attribute|,distance|,&earth| + N character|,surname|,human|,ProperName|ר + V endure| + V manage| + N material|,industrial| + N part|,%AnimalHuman|,nerve| + N part|,%human|,#female|Ů,liquid|Һ,#mating| + N phenomena|,#female|Ů,#medical|ҽ + N publications|鿯 + V undergo| + PREP {time} + V handle| + V WithstandNot|ס + ADV aValue|ֵ,frequency|Ƶ,often| + V withstand|ס + ADJ aValue|ֵ,content|,good| + N publications|鿯,religion|ڽ + N publications|鿯,good| + N attribute|,distance|,&earth| + N fund|ʽ + V manage| + V GoThrough| + N process| + V undergo| + PREP {time} +֯ N community|,commercial|,ProperName|ר + N community|,commercial|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N affairs|,industrial|,agricultural|ũ,commercial| +ò N part|,%aircraft|,@sit| +÷ N law|ɷ,commercial| +÷ N law|ɷ,commercial| +ü» N part|,%institution|,politics|,(institution|=UN|Ϲ) + N tree|,commercial| +ʦ N human|,#occupation|ְλ,commercial| + V decline|˥,commercial| +Ч N attribute|,effect|Ч,&act|ж,commercial| +ѧ N knowledge|֪ʶ,#commercial| +ѧ N human|,#knowledge|֪ʶ + N human|,#occupation|ְλ,commercial| + V manage| + N human|,#occupation|ְλ,commercial| + N human|,commercial| + N human|,#occupation|ְλ,commercial| + ADJ aValue|ֵ,duration|,TimeLong| +ò˥ ADJ aValue|ֵ,duration|,TimeLong| +òϢ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,quality|,durable|,desired| + N human|,#occupation|ְλ,official|,commercial| + N experience| + V undergo| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| +ó N affairs|,commercial| +óί N institution|,commercial|,ProperName|ר,(China|й) + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#female|Ů,#disease| + V engage|,content=commercial|,commercial| +» N part|,%institution|,politics|,(institution|=UN|Ϲ) + V handle| + V sell|,commercial| + V undergo| + V withstand|ס +γ N attribute|,distance|,&earth| +γ N tool|þ,*measure| + N publications|鿯,religion|ڽ +ϴ ADJ aValue|ֵ,ability|,able|,withstand|ס,$wash|ϴ + N attribute|,distance|,&earth| + N material|,industrial| + V sell| + V sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ѫ N part|,%human|,#female|Ů,liquid|Һ,#mating| + N experience| + V undergo| +鲻 ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ḻ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,attachment|,experience| +̸֮ N text|,#experience| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӫ V manage| +Ӫ ADJ aValue|ֵ,GoodBad|û,good|,desired| + V GoThrough| + ADJ aValue|ֵ,content|,neat|,desired| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,@take|ȡ,#liquid|Һ + N shape| +֮ N human|,foolish|,undesired|ݬ + V irrigate|,agricultural|ũ + N facilities|ʩ,mine| + ADJ aValue|ֵ,content|,neat|,desired| + N part|,%facilities|ʩ,mouth| + N part|,%facilities|ʩ,mouth|,mine| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +ˮ N water|ˮ +ˮˮ V RelateNot|޹ + N InstitutePlace|,mine| + N material|,?food|ʳƷ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N human|,#occupation|ְλ,police| + N institution|,police| + N information|Ϣ,*tell|,#dangerous|Σ + N tool|þ,*tell|,#dangerous|Σ + V defend| + N place|ط,military|,$defend| + N human|,#occupation|ְλ,police| + N institution|,police| +ͤ N facilities|ʩ,space|ռ,police|,@defend| + N institution|,police| + N human|,#occupation|ְλ,official|,police| + N LandVehicle|,police| + N tool|þ,#sound| + N tool|þ,#sound|,#police| + N institution|,police| + N clothing|,police| + V persuade|Ȱ˵ + N human|,*persuade|Ȱ˵ + N human|,#occupation|ְλ,official|,police| + N human|,official|,police| + N weapon|,police| + V PayAttention|ע +䲿 N army| + N human|,*obstruct|ֹ,military| + N facilities|ʩ,*prohibit|ֹ,linear| + N institution|,police| + N institution|,police| + N expression|,*persuade|Ȱ˵ + V PayAttention|ע + N aspiration|Ը,PayAttention|ע + N institution|,police| + N tool|þ,*tell|,#dangerous|Σ +Ȯ N livestock|,police| +ʾ V persuade|Ȱ˵ + V PayAttention|ע + V defend| + N human|,#occupation|ְλ,*protect| +Ա N human|,#occupation|ְλ,*protect| + N attribute|,rank|ȼ,&official|,police| +е N weapon| + V understand| +Ա N human|,#occupation|ְλ,police| + N tool|þ,*tell|,#dangerous|Σ + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N character|,surname|,human|,ProperName|ר + N part|,%shows| + N tool|þ,#shows|,#recreation| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + N attribute|,circumstances|,&entity|ʵ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N place|ط,#scene| +ɫ N attribute|,scene|,&inanimate| +ɫ ADJ aValue|ֵ,scene|,beautiful|,desired| +̩ N artifact|˹,literature|,(China|й) + N tree| + N attribute|,scene|,&inanimate| + N attribute|,scene|,&inanimate| + V respect| + N attribute|,circumstances|,&entity|ʵ + N attribute|,scene|,&inanimate| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +׵ N part|,%AnimalHuman|,#head|ͷ,#bone| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N electricity| +ӡˢ N fact|,print|ӡˢ + V look|,manner=calm| + V wait|ȴ,manner=quiet| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,static|̬ +ѧ N knowledge|֪ʶ,#strength| + N part|,%AnimalHuman|,nerve| + N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ĭ V KeepSilence|˵ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,occasion|,quiet|,desired| +̬ ADJ aValue|ֵ,behavior|ֹ,static|̬ +̬ ADJ aValue|ֵ,circumstances|,steady| + V maintain| +ֹ ADJ aValue|ֵ,behavior|ֹ,static|̬ +ֹ ADJ aValue|ֵ,occasion|,quiet| +ֹ ADJ aValue|ֵ,ability|,unable|ӹ,SelfMove| + V sit|,manner=quiet| + V uprise|,means=sit| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N attribute|,circumstances|,&entity|ʵ + N location|λ,surrounding|Χ,space|ռ + N place|ط + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ + N location|λ,%country|,internal| + N location|λ,%country|,external| + N attribute|,circumstances|,&entity|ʵ + V respect| + V respect| +Զ֮ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V GiveAsGift| + V salute|¾ + V tell| + V congratulate|ף,means=drink| +Ժ N InstitutePlace|,@TakeCare|,#aged| + V salute|¾ +Ľ V respect| +Ľ N human|,*respect| + V respect| + V invite| +η V respect| + V submit| +л V refuse| + V respect| +ҵ V endeavour| +ҵ N emotion|,endeavour|,desired| + N emotion|,salute|¾,desired| + V respect| + N tool|þ,*look|,#self| + N tool|þ,@put| + N tool|þ,@put|,#image|ͼ +Ƭ N part|,%tool|þ,#look| +̨ N furniture|Ҿ,*MakeUp|ױ +ͷ N attribute|,scene|,&inanimate| +ͷ N part|,%tool|þ,#look| + N tool|þ,*look| + N tool|þ,*look|,#self| + N facilities|ʩ,route|· + N image|ͼ,linear|,straight|ֱ + N method| + V flow| +ֱ ADJ aValue|ֵ,form|״,upright| + N character|,(China|й) + N disease| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V attack| + ADJ aValue|ֵ,range|,all|ȫ + ADV {emphasis|ǿ} +Ȼ ADV {emphasis|ǿ} + V HaveContest| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete|,scope=VehicleGo|ʻ + V compete|,scope=swim| + N fact|,exercise|,sport| + V HaveContest|,scope=propose|,#price|۸,commercial| + V compete| +Ͷ V HaveContest|,scope=propose|,#price|۸,commercial| + V HaveContest| + V HaveContest|,scope=sell|,commercial| +ѡ V engage|,content=select|ѡ,politics| + V HaveContest| + ADJ aValue|ֵ,ability|,able|,HaveContest| + V human|,*HaveContest| + N human|,*HaveContest| + N fact|,exercise|,sport| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V clean|ʹ + N human|,entertainment| +ֵ N attribute|,value|ֵ,&produce|,industrial| + N quantity|,amount|,pure|,&physical| + V clean|ʹ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + N wealth|Ǯ,desired|,pure|,$earn|׬ + V excrete|й + N place|ط,spotless|,desired|,religion|ڽ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + V add| +ֵ N attribute|,value|ֵ,&physical| + N attribute|,weight|,&physical| +׬ V earn|׬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright|,#eye| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + N attribute|,circumstances|,embarrassed|Ϊ,&human|,&organization|֯ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ +̬ V attribute|,bearing|̬,&human|,embarrassed|Ϊ + V hold| + V pull| + V MakeTrouble| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ,undesired|ݬ + V worried|ż + V cure|ҽ + V investigate| + V research|о + V handle| + N process|,ending|ĩ + ADV {emphasis|ǿ} + V amend| + V assemble|ۼ + V twine| + N human|,*obstruct|ֹ + V keep| + N human|,mass|,*obstruct|ֹ +Ա N human|,*check| + V MakeWorried| + V tie| + N fact|,quarrel| + N fact|,quarrel| + V ComeTogether| + V assemble|ۼ +ƫ V amend|,content=wrong| + V amend| + NUM qValue|ֵ,amount|,cardinal|,mass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +² N part|,%vegetable|߲,embryo|,$eat| +² N vegetable|߲ +» N part|,%vegetable|߲,embryo|,$eat| +» N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| +ñ V farewell|,TimeRange=TimeLong| +ò V ill|̬,TimeRange=TimeLong| +ö֮ ADJ aValue|ֵ,duration|,TimeLong| +ú N phenomena|,undesired|ݬ,#unfortunate|,#weather|,waterless|,TimeRange=TimeLong| +þ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +þ ADJ aValue|ֵ,duration|,TimeLong| +ϲ ADJ aValue|ֵ,property|,^$decide| +Υ V farewell| + ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| + N {duration|} + V cure|ҽ + NUM qValue|ֵ,amount|,cardinal|,mass| + N time|ʱ,TenDays|Ѯ +Ź N stationery|ľ,@drill|ϰ,#character| +ţ֮ N attribute|,strength|,strong|ǿ,&human|,&organization|֯ +ţһë ADJ qValue|ֵ,amount|,few| +Ȫ N place|ط,humanized|,#die| +ѧ N community|,ProperName|ר,politics|,(China|й) +һ V lucky| + N sky| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + N qValue|ֵ,rate|,BecomeLess|,commercial| + N place|ط,country|,ProperName|ר,(China|й) + N drinks|Ʒ,$addict|Ⱥ +ư N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưɼ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ưŮ N human|,#occupation|ְλ,*entertain|д,female|Ů +Ʊ N tool|þ,cubic|,@put|,#drinks|Ʒ +Ʋ N food|ʳƷ,#drinks|Ʒ +Ʋ N food|ʳƷ,generic|ͳ +Ƴ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +Ƶ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +Ƶ N InstitutePlace|,@reside|ס,#tour|,commercial| +ƹ N InstitutePlace|,@drink|,#addictive|Ⱥ,commercial| +ƹ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ +ƺ N tool|þ,cubic|,@put|,#drinks|Ʒ +ƻ N FlowerGrass|,?drinks|Ʒ +ƻ N fact|,drink|,recreation| +Ƽ N InstitutePlace|,commercial|,@drink|,@addict|Ⱥ +Ƽ N InstitutePlace|,commercial|,space|ռ,@eat| +ƾ N material|,liquid|Һ,$burn|,?medicine|ҩ + N attribute|,ability|,#drink|,#addictive|Ⱥ,&human| +¥ N InstitutePlace|,@eat|,commercial| +ĸ N material|,?drinks|Ʒ +ҷ N human|,unable|ӹ,undesired|ݬ + N food|ʳƷ + N tool|þ,cubic|,@put|,#drinks|Ʒ +Ȫ N place|ط,city|,ProperName|ר,(China|й) + N human|,friend|,undesired|ݬ + N human|,#drinks|Ʒ,commercial| +ʯ N chemical|ѧ +ʳ N food|ʳƷ,generic|ͳ +ͽ N human|,undesired|ݬ,*addict|Ⱥ,#drinks|Ʒ + N part|,%human|,skin|Ƥ +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д +ҩ N material|,?drinks|Ʒ + N inanimate|,waste| + N part|,%AnimalHuman|,*smell| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N facilities|ʩ,space|ռ,@foster|,#livestock| +Ƿ N material|,*feed|ι,#crop|ׯ + V help| + V rescue| +ȹ V rescue|,patient=country| +Ȼ V rescue|,cure|ҽ +Ȼ N LandVehicle|,@cure|ҽ,medical|ҽ +Ȼ N InstitutePlace|,@rescue|,military|,medical|ҽ +Ȼ V cure|ҽ +Ȼ V remove|,patient=fire| +ȼ V help| +ȼ V rescue| +ȼ V help| +ȼ N human|,*help| +ȿ V help| + V rescue| + V rescue| + V rescue| +Ȧ N tool|þ,*rescue|,#swim| +ͧ N ship|,*rescue| + N community|,*help| + N human|,*help| + V cure|ҽ + V rescue|,StateIni=perish| + N human|,*help| + N human|,*rescue|,desired| +Ӧ V help| +Ԯ V help| + V rescue|,StateIni=unfortunate| + V cure|ҽ + V help| + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,time|ʱ,past| + N attribute|,relatedness|,friend|,&human| + N human|,friend| +ɰ N fact| +ɰ N fact|,police| +ɲ V ill|̬,medical|ҽ +ɶ N emotion|,hate|,undesired|ݬ +ɽ N human|,friend| +ɽɽ N place|ط,city|,ProperName|ר,(US|) +ɾ N house|,original|ԭ + N law|ɷ,#time|ʱ + N time|ʱ,past| +ʯʱ N time|ʱ,past| +ʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,pattern|ʽ,old| +ַ N place|ط + N part|,%AnimalHuman|,bone| + N tool|þ,*grind|ĥ +ʳ N part|,%AnimalHuman|,*bite|ҧ + N human|,family|,male| +˸ N human|,family|,male| +˾ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| +ȡ V bear|е + ADV aValue|ֵ,duration|,TimeShort| + V approach|ӽ + V engage| + V fulfil|ʵ + V obey|ѭ + V relate|й + PREP {concerning} + CONJ {concession|ò} + ADV {emphasis|ǿ} +Ͳ V eat|,patient=edible|ʳ +ʹ CONJ {supplement|ݽ} +͵ ADV aValue|ֵ,location|λ,special| +͵ȡ V use|,patient=material| +Ͷ V engage|,content=study|ѧ,education| +ͷ V surrender| +ͷ V surrender| +ͽ ADJ aValue|ֵ,distance|,near| + V sleep|˯ + V undertake| + N human|,*undertake| + V estimate| + V be|,manner=emphasis|ǿ + CONJ {concession|ò} + ADJ {emphasis|ǿ} + ADV {emphasis|ǿ} +˵ ADV {supplement|ݽ} + CONJ {concession|ò} +λ V arrive|,location=location|λ + V finish| +ѧ V engage|,content=study|ѧ,education| +ҵ V obtain|õ,possession=occupation|ְλ +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ + V die| + V request|Ҫ,ResultEvent=cure|ҽ +ְ V undertake|,content=official| + V sit| + V sit| + N character|,surname|,human|,ProperName|ר +Ϲ V salute|¾ +Ϲ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + V restrain|ֹ +в V catch|׽ס,police| +д V call|ٻ,detain|ס,police| +н ADJ aValue|ֵ,demeanor|,cautious|,undesired|ݬ +н V detain|ס,police| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V detain|ס,police| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V obey|ѭ,manner=stiff| +Ʊ N bill|Ʊ,*catch|׽ס,police| + V embarrassed|Ϊ + V restrain|ֹ +Ѻ V detain|ס,police| + V detain|ס,police| +ѻ V attack| +ѻ N human|,*firing|,military| + N character|,surname|,human|,ProperName|ר + N house| + V reside|ס + V situated| +Ӱ˼Σ V PayAttention|ע,target=dangerous|Σ +Ӷ V BeMember|,whole=many| +Ӹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +Ӽ V manage|,patient=family| +Ӽ N location|λ,middle| + CLAS unit|λ + V reside|ס +Ȩ N rights|Ȩ,*reside|ס + N human|,*reside|ס +Ժ N place|ط,#official|,@reside|ס + N place|ط,@reside|ס + N place|ط,@reside|ס +ίԱ N institution|,#reside|ס,politics|,(China|й) +Ȼ ADV {emphasis|ǿ} +ʿ N human|,religion|ڽ + N room| + N place|ط,@reside|ס +ί N institution|,#reside|ס,politics|,(China|й) +IJ V cherish|Ļ,content=evil| + N location|λ,middle| + V situated|,location=middle| +ס V reside|ס +ס N human|,*reside|ס + N livestock|,young| + N livestock|,young| + N FlowerGrass| +ջ N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + CLAS NounUnit|,&fact| + N attribute|,circumstances|,&entity|ʵ + N institution| + N tool|þ,*recreation| +ֲ ADJ aValue|ֵ,range|,pieced|Ƭ +ֲ N part|,%entity|ʵ +ֳ N human|,#occupation|ְλ,official|,*manage| +ִ ADJ aValue|ֵ,duration|,TimeShort| +ִ ADJ aValue|ֵ,width|,narrow|խ +ִ V uneasy| + V cure|ҽ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&place|ط,&organization|֯ + ADV aValue|ֵ,property|,RelateNot|޹ + N human|,*RelateNot|޹ + V delimit| + N attribute|,property|,delimit|,&event|¼ + V undergo|,content=delimit| + ADJ aValue|ֵ,range|,pieced|Ƭ + V masticate|׽ +׽ ADJ aValue|ֵ,ability|,able|,$masticate|׽ +׽ V masticate|׽ +׽ V think|˼ +׽ N human|,*masticate|׽ + ADJ aValue|ֵ,form|״,square| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N symbol|,#calculate| + ADJ aValue|ֵ,range|,all|ȫ + V choose|ѡ + V do| + V lift| + N part|,%fact|,#act|ж + V quote| + V start|ʼ +ٰ V condole|° +ٰ V engage| +ٱ V accuse|ظ,police| +ٱ N human|,*accuse|ظ,police| +ٱ V congratulate|ף +ٲʤ ADJ qValue|ֵ,amount|,many| +ٲ V walk| +ٳ V quote| +ٴ N part|,%fact|,#act|ж +ٶ N part|,%fact|,#act|ж +ٷ ADV aValue|ֵ,range|,all|ȫ +ٹ N place|ط,country|,complete| +ٹ N place|ط,country|,complete| +ټ N community|,family|,complete| +ټ V recommend|Ƽ + V quote|,patient=example|ʵ +Ŀ V CausePartMove|,PatientPartof=eye| +岻 V hesitate|ԥ + V lift| + N human|,*succeed|ɹ,#exam|,past| + N tool|þ,*lift| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,reputation|,glorious|,desired| +˫ ADJ aValue|ֵ,importance|,important| +Ŀ V attract|,target=PayAttention|ע + V uprise| + V lift|,patient=hand| + V engage| +һ V deduce| +ծ V borrow|,possession=fund|ʽ,commercial| +֤ V quote|,content=information|Ϣ,#police| +ֹ N attribute|,behavior|ֹ,&human| + N fact|,sport| + ADJ aValue|ֵ,importance|,important| +ɥ V disappointed|ʧ +ɥ V sorrowful| + V ComeTogether| + V assemble|ۼ +۱ N place|ط,precious| +۱ϩ N chemical|ѧ +۱ V StateChange|̬ +۱ϩ N chemical|ѧ +۲ V eat| +۹ N tool|þ,*illuminate| +ۺ V ComeTogether| +ۺ N chemical|ѧ +ۻ N fact|,recreation| +ۻ V meet| +ۻ V gather|ɼ +ۼ V ComeTogether| +ۼ V assemble|ۼ +ۼ V gather|ɼ +ۼ V destroy|,military| +۽ V assemble|ۼ,patient=lights| +۾ V PayAttention|ע +۾ V reside|ס +۾ N place|ط,#reside|ס + V levy| +£ V ComeTogether| +ϩ N chemical|ѧ +ɳ V add| + V meet| +ϩ N material| +ϩ N chemical|ѧ + V assemble|ۼ,patient=human| + N chemical|ѧ + V refuse| + V reject|ؾ +ܲ V reject|ؾ,$catch|׽ס +ܸ V refuse|,content=pay| +ܾ V refuse| +ܾ V reject|ؾ +ܾ N human|,*deny| +ǧ֮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V refuse| +η V hide|,patient=wrong| + V depend| + N document|,*prove|֤ + N information|Ϣ + V occupy|ռ,military| + PREP {AccordingTo} +ݱ V obey|ѭ,content=information|Ϣ +ݳ ADV {comment|} +ݴ ADV {comment|} +ݵ N facilities|ʩ,space|ռ,military| + V debate| +ʵ ADV aValue|ֵ,behavior|ֹ,faithful| + V defend|,military| +˵ ADV {comment|} +Ϊ V cheat|ƭ +֪ ADV {comment|} +Ϥ ADV {comment|} + ADJ aValue|ֵ,size|ߴ,big| +ޱ V change| +޴ ADJ aValue|ֵ,area|,wide| +޴ ADJ aValue|ֵ,size|ߴ,big| +޴ ADJ qValue|ֵ,amount|,many| +޶ ADJ qValue|ֵ,amount|,many| +޷ ADJ aValue|ֵ,size|ߴ,big| +޸ N human|,#wealth|Ǯ,rich| +޸ N wealth|Ǯ,many| +޽ N tool|þ,*reward|,$GiveAsGift|,desired| +޽ N human|,able|,desired| +޿ N money|,many| + N water|ˮ + N waters|ˮ,linear| + N part|,%LandVehicle|,leg| + N ship| + N human|,able|,desired| + N human|,big| +ͷ N human|,able|,desired| + N sound|,loud| + N celestial| + N human|,*perform|,glorious|,entertainment| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,size|ߴ,big| + N publications|鿯,great|ΰ + N money|,many| + N human|,#wealth|Ǯ,rich| + N human|,able|,desired| + CLAS NounUnit|,&part|,die| + N implement| + V own| + V provide| +߱ V own| + V sign|д,content=name| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,kind|,special| +˵ ADV {comment|} +΢ ADJ aValue|ֵ,range|,all|ȫ,desired| +˵ ADV {comment|} +˵ ADV {comment|} + V own| +б ADJ aValue|ֵ,ability|,able|,store| +еֿ ADJ aValue|ֵ,ability|,able|,resist| +кЯ ADJ aValue|ֵ,ability|,able|,$bring|Я,#weapon| +ʷ ADJ aValue|ֵ,value|ֵ,important| + ADJ aValue|ֵ,ability|,able|,teach| + N human|,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,attract| +ѹ ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$BeRecovered|ԭ + V from| + V from| + V occupy|ռ + V sit| + V break|۶ + N tool|þ,*break|۶ + N part|,%tool|þ,*bite|ҧ +ⴲ N machine|,*break|۶ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ֲ N InstitutePlace|,@associate|,@recreation|,#literature|,#entertainment|,#sport| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N expression| +䷨ N knowledge|֪ʶ,#regulation|,#language| + N symbol| + N expression| + V fear| + V fear| + N fire| + N tool|þ,*illuminate| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N shows| +籾 N publications|鿯,#shows|,entertainment| + V change| + V change|,manner=strong|ǿ +糡 N InstitutePlace|,@perform|,entertainment| +綾 ADJ aValue|ֵ,cleanness|ྻ,poison| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +Ŀ N document|,@announce|,#shows|,entertainment| + N fact|,#shows|,$BaseOn|,entertainment| +̳ N community|,#perform|,entertainment| +ʹ V painful|ʹ + N community|,*perform|,entertainment| + N affairs|,#perform|,entertainment| + N human|,#occupation|ְλ,*manage|,#perform|,entertainment| +Ժ N InstitutePlace|,@perform|,entertainment| + V add| + N image|ͼ,#shows| + N human|,*perform|,entertainment| + V finish|,#perform|,entertainment| + N attribute|,kind|,entertainment|,&shows| + N community|,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,*compile|༭,#shows|,entertainment| + V abandon| + V donate| + N expenditure|,$levy| + V donate|,possession=money| + N expenditure|,$donate| + V abandon| + V die| + V donate| + V donate| + V donate| + V donate|,possession=money| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V tired|ƣ +뵡 V tired|ƣ + N experience|,#tired|ƣ + V FondOf|ϲ + V ThinkOf|˼ + N human|,family| + V FormChange|α + CLAS NounUnit|,&publications|鿯 + V bend| + N document| + N document|,*exam| + V engage| + N publications|鿯 + N shape| + N tool|þ,*measure| +̸ V withdraw|˳ + V bend| + V bend| + V engage| + V flee|,crime| + V resume|ָ +IJ N part|,%vegetable|߲,embryo|,$eat| +IJ N vegetable|߲ + N addictive|Ⱥ + N machine|,*lift| +Ҷ N InsectWorm|,*fly| + N CloudMist| + N document|,*exam| + N food|ʳƷ + N document| + N tool|þ,*store|,#document| + N material|,?clothing| + N tool|þ,#FlowerGrass| + V CausePartMove| + V break|۶ + V rob| +ȡ V rob| + V choose|ѡ + V dig|ھ + V dig|ھ,mine| + N machine|,*dig|ھ + ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ͷ ADJ aValue|ֵ,behavior|ֹ,stubborn| + N human|,official|,royal|,past| +ʿ N human|,official|,royal|,past| +ʿ N music|,entertainment| + V awake| + V know|֪ + V perception|֪ + V sleep|˯ + V know|֪ + V perception|֪ + V regard|Ϊ + V know|֪ + V understand| + V OutOfOrder| + V decide| + V kill|ɱ,police| + ADV {neg|} + N result|,decide| + N human|,*decide| + N human|,*decide| + V HaveContest| + V ResultIn| + ADJ aValue|ֵ,importance|,important| + V decide| + N document|,#decide| + N aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,important| + V fight| + N attribute|,will|־,&human|,&organization|֯ + V decide| + ADV {neg|} + V OutOfOrder| + V separate| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N fact|,compete| +ʤ V HaveContest| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fact|,calculate|,commercial| + N aspiration|Ը,expect| + V willing|Ը +һ V HaveContest| + V decide| + N document|,#decide| +鰸 N document|,#decide| +ս V fight|,military| + N method| + V farewell| + N method|,*succeed|ɹ + V OwnNot| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,special| + V separate| + V disappear|ʧ + N part|,%land|½,skin|Ƥ + ADV {neg|} + N music|,good|,desired| + V BeRecovered|ԭ +󲿷 ADJ qValue|ֵ,amount|,fragment| + ADJ qValue|ֵ,amount|,fragment| + ADJ aValue|ֵ,kind|,special| + V laugh|Ц + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,behavior|ֹ,free| + ADV aValue|ֵ,degree|̶,extreme| +Գɱ N expenditure|,commercial| +Զ N quantity|,amount|,&physical| +Ի ADJ aValue|ֵ,behavior|ֹ,free| + N quantity|,amount|,&physical| +ֵ N quantity|,amount|,&physical| + ADV {neg|} + N attribute|,ability|,special|,&human| + V disappear|ʧ + N attribute|,ability|,special|,&human| + V separate|,politics| + V BeBad|˥,female|Ů,#age|,#GiveBirth| + N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + N attribute|,environment|,$separate|,&physical| + V KeepSilence|˵ +· V BeUnable| +· N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʳ V refuse|,content=eat| +ʳ V uprise| + V OwnNot|,scope=gather|ɼ,agricultural|ũ + V disappointed|ʧ +޽ ADJ aValue|ֵ,kind|,special| + V prohibit|ֹ,ResultEvent=GiveBirth|,medical|ҽ +Ե ADJ aValue|ֵ,ability|,able|,exempt|,#transmit| +Ե N material|,*exempt|,#transmit|,#electricity| +Ե N material|,*exempt|,#transmit|,#electricity| + N attribute|,ability|,special|,&human| + N method|,special| +֢ N disease| + V disappear|ʧ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADV aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + V separate| + ADJ aValue|ֵ,behavior|ֹ,even|,desired| + ADJ aValue|ֵ,content|,even| +һ ADJ aValue|ֵ,content|,even| + ADJ aValue|ֵ,content|,even| + N AlgaeFungi|ֲ + N bacteria|΢ + N medicine|ҩ,#bacteria|΢ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N army|,generic|ͳ + N part|,%army| + N publications|鿯,news|,military|,(China|й) + N weapon| + V HaveContest|,scope=weapon|,military| + V control|,patient=weapon|,military| + V restrain|ֹ,patient=weapon|,military| + N army| + N part|,%army|,military| + N human|,#occupation|ְλ,official|,military| + N LandVehicle|,army|,military| + N weapon|,*stab| + N army| + N human|,undesired|ݬ,#military| + N law|ɷ,military| + N punish|,AccordingTo=law|ɷ,military| + N army| + N expenditure|,military| + N part|,army|,#place|ط,military| + N clothing|,military| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,military| + N affairs|,industrial|,military| + N affairs|,industrial|,military| + N result|,desired|,military| + N human|,#occupation|ְλ,official|,military| +ʿ N human|,#military| +ܻ N institution|,military| + N system|ƶ,military|,undesired|ݬ + N human|,undesired|ݬ,#military| + N MusicTool|,military| + N mark|־,military| + N weapon|,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N human|,commercial|,#military| + N fact|,military|,secret| + N plans|滮,military| + N attribute|,status|,#army|,&human|,military| + N law|ɷ,military| + N weapon|,ship|,military| + N army| + N army| + N music|,military| +ֶ N part|,%army|,#music|,military| + N part|,%army|,#music|,military| + N fact|,salute|¾,military| + N attribute|,strength|,&army|,military| +ˮƽ N attribute|,rank|ȼ,military| + N food|ʳƷ,military| + N human|,family|,#military| + N attribute|,age|,#military|,&human| + N text|,*order|,military| +ɽ N aValue|ֵ,behavior|ֹ,strict| +״ N text|,*guarantee|֤ +״ N text|,*guarantee|֤,military| + N army| +ñ N clothing|,#head|ͷ,military| + N human|,mass|,#military| +Ʒ N artifact|˹,military| + N mark|־,military| + N attribute|,circumstances|,&fight|,military| + N part|,army|,#place|ط,military| +Ȩ N attribute|,power|,&human|,&organization|֯,military| + N human|,#occupation|ְλ,military| +ʦ N human|,#occupation|ְλ,friend|,military| +ʷ N fact|,#time|ʱ,military| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,#occupation|ְλ,#military| + N affairs|,military| +· N human|,#occupation|ְλ,*judge|ö,military| +·ͥ N institution|,police|,*judge|ö,military| +¹ҵ N affairs|,industrial|,military| +¹ίԱ N institution|,military| +» V ize|̬,military| +» N place|ط,military| +¼ N community|,military| +¼ N human|,#knowledge|֪ʶ,military| + N attribute|,strength|,&army|,military| +ʩ N facilities|ʩ,military| +̬ N attribute|,circumstances|,&physical|,military| + N affairs|,exercise|,sport|,military| +ѧ N human|,#knowledge|֪ʶ,military| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education|,military| +ռ N human|,*occupy|ռ,military| + N human|,family|,#military| + N affairs|,exercise|,sport|,military| + N army| + N part|,%army| + N attribute|,strength|,&army|,military| +ί N institution|,military|,ProperName|ר,(China|й) + N affairs|,military| + N attribute|,rank|ȼ,&official|,military| +У N InstitutePlace|,@teach|,@study|ѧ,education|,military| +е N weapon| +е N facilities|ʩ,space|ռ,@store|,#weapon|,military| + N attribute|,behavior|ֹ,&army|,military| + N artifact|˹,$provide|,military| + N human|,#occupation|ְλ,military| +ѵ N fact|,drill|ϰ,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,military| + N clothing|,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס + ADJ aValue|ֵ,ability|,able|,$use|,military| + N affairs|,military| +ְ N attribute|,occupation|ְλ,military|,&human| + N army| +ת N aValue|ֵ,property|,alter|ı +װ N clothing|,military| + N human|,#occupation|ְλ,official|,royal| + N human|,male| + N human|,official| + N human|,#occupation|ְλ,official|,royal| + N human|,#occupation|ְλ,official|,royal| + N system|ƶ,politics|,royal| + N human| +ר N system|ƶ,politics|,royal| + N human|,desired|,gracious| + N human|,good|,desired| + N FlowerGrass| + ADJ aValue|ֵ,behavior|ֹ,strict| + N land|½ + ADJ aValue|ֵ,slope|¶,steep| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,able|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V finish| + V finish| + V dredge|ͨ +ബ N ship| + N place|ط,#human| + N livestock|,superior| + N livestock|,superior| + ECHO sound| + N place|ط,capital|,ProperName|ר,(Afghanistan|) +¡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,( Cameroon |¡) +¡ N place|ط,country|,ProperName|ר,(Africa|) +ʲ N place|ط,city|,ProperName|ר,(China|й) +ʲ׶ N place|ط,ProperName|ר + N place|ط,capital|,ProperName|ר,(Sudan|յ) + N drinks|Ʒ +ȵ N InstitutePlace|,@drink|,commercial| +ȶ N material|,?drinks|Ʒ +ȹ N InstitutePlace|,@drink|,commercial| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N InstitutePlace|,@drink|,commercial| + N material|,?food|ʳƷ + V block|ס + N character|,surname|,human|,ProperName|ר + N coupon|Ʊ֤,#money| + V hold| + V restrain|ֹ + V stay|ͣ + N tool|þ,*fix|ס + CLAS unit|λ,&heat| +ǹ N weapon|,*firing| + N LandVehicle|,*transport|,#inanimate| + N tool|þ,*measure| + N tool|þ,*fix|ס + V OutOfOrder| + V OutOfOrder|,military| + V stay|ͣ +ϣ N fact|,recreation|,sing| + N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) +ɴ N language|,#country|,ProperName|ר +Ƭ N account|,@record|¼ + N material|,?clothing| +ǯ N tool|þ,*measure| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Qatar|) + N place|ط,country|,ProperName|ר,(Africa|) +Ƕ N money|,(Qatar|) + N human|,(Qatar|) +ͨ N image|ͼ +ס V block|ס + N part|,%place|ط,mouth|,@check| + N tool|þ,*fix|ס + V vomit|³ +Ѫ N disease| +Ѫ V vomit|³,medical|ҽ + V CauseToLive|ʹ + V StateChange|̬ + V TurnOn| + V cultivate| + V dig|ھ + V disperse|ɢ + V engage| + V establish| + V function| + V manage| + V open| + V pay| + V remove| + V start|ʼ + V start|ʼ,content=leave|뿪 + V write|д + ... ֮Ⱥ N become|Ϊ,isa=example|ʵ + V start|ʼ,content=leave|뿪 + V establish| + N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + N attribute|,size|ߴ,&publications|鿯 + V start|ʼ + V announce|,commercial| + V gather|ɼ,industrial| + V begin|ʼ + N part|,shows|,head|ͷ + N part|,text|,head|ͷ + V CauseToLive|ʹ + V drive|Ԧ + V drive|Ԧ,patient=LandVehicle| +ϲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + V believe| + V discharge| + V start|ʼ + N human|,*establish| + N time|ʱ,spring|,early| + V attack| + V cure|ҽ + V GoBackward| + V decline|˥ + V teach| + V escape| + V guide| + V function| + N process|,early| + V CauseToGrow|ʹɳ + V cultivate| + V gather|ɼ,industrial| +ƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + N place|ط,@research|о,@produce| +Э N part|,%institution|,#industrial|,(institution|=UN|Ϲ) + V start|ʼ,content=eat| + V DoSum| + V appear| + V cease|ͣ,content=prohibit|ֹ +Թ N disease| + N place|ط,city|,ProperName|ר,(China|й) + V LeaveFor|ǰ + V start|ʼ,content=do| + N part|,%artifact|˹,*OpenShut| + V StateChange|̬ + V establish|,patient=country|,politics| + V function| + V start|ʼ,content=VehicleGo|ʻ + N facilities|ʩ,route|·,#waters|ˮ + V StateChange|̬ + V establish|,content=account|,commercial| + V pregnant| + V StateChange|̬ + V prosper|,scope=mental| + V satisfied| + V cultivate|,agricultural|ũ + V engage| + V engage|,content=communicate| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=fight|,military| + V TurnOn| + V propose|,content=price|۸ + V display|չʾ,commercial| + N attribute|,width|,&room| + V announce|,content=reward| + V start|ʼ,content=teach| + V indulge| + V GoForward|ǰ + V cease|ͣ,content=prohibit|ֹ + N part|,%compete|,head|ͷ,sport| + V write|д + V exam| + V read| + V dig|ھ + V start|ʼ,content=teach|,education| + V start|ʼ,education| + V cultivate|,agricultural|ũ + V sharpen|ʹ + V speak|˵ + V OutOfOrder| + V wounded| +쳵 V SpeedUp|ӿ +쳵 V VieFor| + V gather|ɼ,possession=mine|,industrial| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,width|,wide| + V start|ʼ,content=planting|ֲ,agricultural|ũ + V start|ʼ,content=collect|,agricultural|ũ + V quote| + V FormChange|α +· V build|,PatientProduct=route|· +· N part|,linear|,#electricity| +·ȷ N human|,guide| +̵ V ExpressAgreement|ʾͬ + N place|ط,capital|,ProperName|ר,(Egypt|) + V open|,patient=part| +ź V succeed|ɹ,time=begin|ʼ +żɽ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +żɽ V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ʿ N human|,wise|,desired| +Ļ V begin|ʼ +Ļ N text|,#begin|ʼ + V start|ʼ,content=TakePicture| + V start|ʼ,commercial| +̻ N quantity|,rate|,#start|ʼ,&money|,commercial| +̼ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| +̼۸ N attribute|,price|۸,#start|ʼ,&inanimate|,commercial| + V ExpressAgainst|Ǵ + V firing|,military| +ƪ N part|,information|Ϣ,head|ͷ +Ʊ V announce| +Ʊ V write|д,ContentProduct=bill|Ʊ,commercial| +ն N place|ط,city|,ProperName|ר,(South Africa|Ϸ) + V open| +ǹ V firing| +ǻ V speak|˵ + V understand| + V start|ʼ,compete| + V start|ʼ,content=compete|,sport| +ɽ V dig|ھ,industrial| +ɽ N human|,past|,#start|ʼ +ɽʦ N human|,past|,#start|ʼ + V conduct|ʵʩ,education| + V establish| +ʼ N process|,early| +ʼ V start|ʼ +ʿ N material|,?clothing| + V release|ͷ,police| + V start|ʼ,commercial| +ˮ N water|ˮ,$drink| +˾ N material|,?clothing| +̨ V start|ʼ,entertainment| +ٵ N process|,early| +ͥ V start|ʼ,police| +ͨ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ͷ V begin|ʼ +ͷ N process|,early| + V CauseNotToBe|ʹ֮ + V CauseToGrow|ʹɳ + V cultivate| + V dig|ھ + ADV aValue|ֵ,amount|,over| +Ц V please|ȡ + V LeaveFor|ǰ +θ V improve|,patient=aspiration|Ը,#eat| + V open|,patient=tool|þ + N expenditure| +С V flee| +С V stupefied|ľȻ + V joyful|ϲ + V please|ȡ + V tease|ȡ +ѧ V start|ʼ,education| + V laugh|Ц + V enrich|ʵ + V start|ʼ,entertainment| +ҵ V start|ʼ +ҵ V start|ʼ,commercial| +ҵ N human|,*establish| +ҹ V endeavour| +Դ V MakeBetter|Ż,#wealth|Ǯ + V dig|ھ,industrial| +ի N time|ʱ,festival|,@congratulate|ף,#eat|,religion|ڽ +չ V CauseToGrow|ʹɳ +չ V grow|ɳ +չ V start|ʼ +ս V start|ʼ,content=fight|,military| + V FormChange|α + V start|ʼ,commercial| + V pay|,commercial| + V write|д,ContentProduct=bill|Ʊ,commercial| + V start|ʼ,content=fight|,military| + V start|ʼ,content=levy| +֧ N expenditure| +֧ V pay| +֧ V pay|,possession=payment| + V explain|˵ + V endeavour| + V remove| + V wipe| + V dry| + N attribute|,kind|,&character|,&symbol| + N human|,$study|ѧ,$imitate|ģ,desired| +ģ N human|,$study|ѧ,$imitate|ģ,desired| + N attribute|,kind|,&character|,&symbol| + N attribute|,kind|,&character|,&symbol| + V win|ʤ + N music|,$sing|,#win|ʤ + V win|ʤ,GoBack| + ADJ aValue|ֵ,tolerance|,generous|,desired| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,undesired|ݬ +̾ V sigh|̾ + V print|ӡˢ + N publications|鿯,mass| + V publish| + N publications|鿯 + V publish| + N character|,surname|,human|,ProperName|ר + V endure| + V RegardAs| +Ƶһ ADJ aValue|ֵ,importance|,important| + N place|ط,capital|,ProperName|ר,(Australia|Ĵ) +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + V check| + V investigate| + V investigate| + V investigate| + V investigate| +̽ V investigate| +̽ N human|,*investigate|,industrial| + V amend| + V check| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge| + N part|,%land|½,mouth| + N facilities|ʩ,#liquid|Һ,#crop|ׯ + ADJ aValue|ֵ,SmoothFinish|,rugged|,undesired|ݬ + V unfortunate| + N place|ط,capital|,ProperName|ר,(Uganda|ڸɴ) + V break|۶ + V gather|ɼ,possession=material|,#burn| + N tool|þ,*split|ƿ,*break|۶ + V break|۶ + V TakeCare| + V cure|ҽ + V depend| + V look| + V read| + V regard|Ϊ + V supervise| + V visit| + STRU {Vtry|} + V cure|ҽ + V request|Ҫ,ResultEvent=cure|ҽ + V disgust| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V despise| + V RegardAs| + V perception|֪ + V perception|֪ + V regard|Ϊ + V treat|Դ + V perception|֪,means=look| + V PayAttention|ע + ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ + V undergo|,content=predict|Ԥ,#BecomeLess|,commercial| + N standpoint| +ʹ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V TakeCare| + V supervise| + V undergo|,content=predict|Ԥ,#prosper| + V TakeCare|,medical|ҽ + N human|,#occupation|ְλ,*TakeCare|,*cure|ҽ,medical|ҽ + N human|,*TakeCare|,medical|ҽ + V TakeCare|,patient=house| + V perception|֪,means=look| + V TakeCare| + V cure|ҽ + V look| + V read| + V visit| + ADV {comment|} + V supervise|,content=mouth| + V look|,content=price|۸ + V perception|֪ + V imitate|ģ + V be| + ADV {comment|} + V despise| + V perception|֪ + V recreation| + V FondOf|ϲ +ȥ ADV {comment|} + N human|,#occupation|ְλ,police| + V supervise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N institution|,#country|,politics|,TimeShort| +̨ N facilities|ʩ,space|ռ,@look| +ͷ N thing|,*worth|ֵ,#look| +ͷ V thing|,*worth|ֵ,#read| +͸ V know|֪ +͸ V perception|֪ + V visit| + ADV {comment|} +ҽ V request|Ҫ,ResultEvent=cure|ҽ + V undergo|,content=predict|Ԥ,#BecomeMore|,commercial| + V FondOf|ϲ + V PayAttention|ע +׼ V believe| + V RegardAs| + V RegardAs| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N attribute|,physique|,&animate| + N character|,surname|,human|,ProperName|ר + N machine|,*collect|,#crop|ׯ + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,safe|,desired| +ܰ N FlowerGrass| +Ҹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +̩ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ͭ N metal|,material| +ׯ N facilities|ʩ,route|· + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,tolerance|,generous|,desired| + V sing|,manner=strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V help|,scope=wealth|Ǯ,manner=generous| + V die|,manner=brave| +֮ V help|,scope=wealth|Ǯ,manner=generous| + ADJ aValue|ֵ,quality|,bad|,undesired|ݬ + N part|,%plant|ֲ,skin|Ƥ +˰ V MakeLiving|ı,manner=poor| + N part|,%plant|ֲ,skin|Ƥ + N physical|,waste| + V CarryOnBack| + V lift| + V pick|ʰ + V engage|,agricultural|ũ + V engage|,agricultural|ũ + V HaveContest| + V equal| + V fight| + V refuse| + V resist| + V withstand|ס + V refute| + V refute|,police| + N human|,*refute| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#disease| +ס V WithstandNot|ס +ס V withstand|ס + ADJ aValue|ֵ,ability|,able|,withstand|ס,#illuminate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#MakeTrouble| + V fight|,partner=waterless| + V HaveContest| + V equal| + V fight|,partner=waterlogging| +Ѫ N medicine|ҩ + V resist| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#electricity| + V refuse| + V reject|ؾ + ADJ aValue|ֵ,ability|,able|,destroy|,#bacteria|΢,medical|ҽ + N medicine|ҩ,*destroy|,#bacteria|΢ +ǿ N attribute|,strength|,withstand|ס,#straighten|ֱ,&inanimate| +Ԯ N fact|,*fight|,ProperName|ר,military| + V disobey|Υ,content=order| +ĥ N attribute|,strength|,obstruct|ֹ,#grind|ĥ,&thing| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| + N fact|,*fight|,ProperName|ר,military| +ս N fact|,*fight|,ProperName|ר,military| + N medicine|ҩ,*destroy|,#bacteria|΢ +˰ V refuse|,content=pay| + V accuse|ظ,police| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + N part|,%human|,*destroy|,#bacteria|΢,#medical|ҽ +ѹǿ N attribute|,strength|,withstand|ס,#press|ѹ,&inanimate| +ҩ ADJ aValue|ֵ,ability|,able|,withstand|ס,#medical|ҽ + V protest| + N human|,*protest| + V resist| +ԭ N physical|,medical|ҽ + V fight|,content=unfortunate|,#weather| +ս V fight|,military| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#shiver| + V resist| +ס V withstand|ס + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V excited| + V WeatherBad| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N disease| + V dry| + N furniture|Ҿ,space|ռ,$WarmUp|,@sleep|˯ +ͷ N part|,%furniture|Ҿ,$WarmUp|,@sleep|˯ + N furniture|Ҿ,space|ռ,@put| + V check| + V exam| +ʿ V exam|,purpose=include|,education| +ȡ V fail|ʧ,scope=exam|,result=include|,education| + V fail|ʧ,scope=exam|,result=include|,education| + V check| + V investigate| + N community|,*investigate| + N place|ط,@exam| +ѧ V exam|,purpose=include|,education| + V amend| + V research|о + ADJ knowledge|֪ʶ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#past| +ѧ N human|,#knowledge|֪ʶ + N human|,#exam| + V check| + V exam| + ADJ aValue|ֵ,quality|,refined|,desired| + V investigate| + V research|о + N document|,#exam| + N beast| + N thinking|˼ + V think|˼ + V estimate| + V check| +ȡ V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + V succeed|ɹ,scope=exam|,result=include|,education| + N human|,unripe|,*exam| + V exam| +˶ʿ V exam|,purpose=include|,education| + V exam|,purpose=include|,education| +о V exam|,purpose=include|,education| + V exam| + N fact|,exam|,important| +֤ V research|о + V beat| + V punish| + N document|,$copy|д + N material|,?clothing| + V beat| + V punish| + V interrogate| + V interrogate|,police| + V WarmUp| + V cook| + V WarmUp| + N food|ʳƷ + N tool|þ,@dry|,*cook| +Ѽ N food|ʳƷ + N addictive|Ⱥ + V BeNear| + V approach|ӽ + V depend| + V lean|п + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%furniture|Ҿ + V approach|ӽ,LocationFin=edge| +ס ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ס ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ס ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ס ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,@lean|п +ı N human|,$employ| + V BeNear| + ADJ aValue|ֵ,distance|,near| + V approach|ӽ +£ V approach|ӽ +ɽ N human|,friend| +ɽɽ V use|,patient=material| +ɽɽˮˮ V use|,patient=material| + N character|,(China|й) + N stone|ʯ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V request|Ҫ + V ExpressAgainst|Ǵ + N character|,surname|,human|,ProperName|ר + N part|,%plant|ֲ,limb|֫ + N part|,%tool|þ,arm| +¶ N community|,ProperName|ר,(China|й) + CLAS NounUnit|,&plant|ֲ + V beat| +İ V disable|м,scope=speak|˵ +Ĵ V beat| +Ŀİ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +Ŀİ V walk| +Ŀײײ V walk| + V bump|ײ + V quarrel| +ͷ V salute|¾ +ͷ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&physical| + N shape|,round|Բ +״ ADJ aValue|ֵ,form|״ + N attribute|,kind|,&thing| + N part|,%organization|֯ +ư ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +Ƴ N human|,#occupation|ְλ,official|,*manage| +ƶ N money|,(Nicaragua|) +ƻ N publications|鿯 +Ƽ N knowledge|֪ʶ +Ƽ N community|,*research|о,#knowledge|֪ʶ +Ƽ ADJ aValue|ֵ,kind|,#knowledge|֪ʶ +ƽ N knowledge|֪ʶ,education| +ƽƬ N shows|,#knowledge|֪ʶ,education| +ƾ V exam|,past|,royal| + N money|,(Costa Rica|˹) + N money|,(El Salvador|߶) +¡ N place|ط,city|,ProperName|ר,(Germany|¹) + N place|ط,capital|,ProperName|ר,(Sri Lanka|˹) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Comoros|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħ޷ N money|,(Comoros|Ħ) +Ŀ N part|,%knowledge|֪ʶ +ɿ N place|ط,capital|,ProperName|ר,(Guinea|) + N knowledge|֪ʶ + N language|,#country|,ProperName|ר + N part|,%organization|֯,#employee|Ա + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kuwait|) + N place|ط,country|,ProperName|ר,(Asia|) +س N place|ط,capital|,ProperName|ר,(Kuwait|) + N human|,(Kuwait|) +ί N institution|,knowledge|֪ʶ,ProperName|ר,country|,(China|й) + N language|,#country|,ProperName|ר +Э N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +ѧ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ѧ N knowledge|֪ʶ +ѧ V ize|̬,PatientAttribute=knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ѧо N affairs|,research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N fact|,research|о + N InstitutePlace|,*research|о,#knowledge|֪ʶ +Ŀ N affairs|,#research|о,#knowledge|֪ʶ +Ա N human|,#occupation|ְλ,employee|Ա + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ +Dz N fish| + V pant| +ȴ V pant| + N disease| + V pant| + ADJ aValue|ֵ,standard|׼,average|,desired| + V fit|ʺ + V worth|ֵ +ɰ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ ADJ aValue|ֵ,ability|,able|,$store| +ɱ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ɱ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +ɱȼ۸ N attribute|,price|۸,lasting|,&artifact|˹,commercial| +ɱȽ ADJ aValue|ֵ,ability|,able|,$compare|Ƚ +ɱ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɱ ADJ aValue|ֵ,ability|,able|,$compile|༭,#software| +ɱ ADJ aValue|ֵ,ability|,able|,$change| +ɱӲ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ ADJ aValue|ֵ,ability|,able|,$distinguish|ֱ +ɱ绤 ADJ aValue|ֵ,ability|,able|,$refute| +ɱ ADJ aValue|ֵ,ability|,able|,$debate| +ɱ ADJ aValue|ֵ,ability|,able|,$express|ʾ +ɲ ADJ aValue|ֵ,ability|,able|,$refute| +ɲ ADJ aValue|ֵ,ability|,able|,$remove| +ɲ ADJ aValue|ֵ,ability|,able|,$use| +ɲ ADJ aValue|ֵ,ability|,able|,$control| +ɲ ADJ aValue|ֵ,ability|,able|,$handle| +ɲ ADJ aValue|ֵ,ability|,able|,$measure| +ɲ ADJ aValue|ֵ,ability|,able|,$perception|֪ +ɲж ADJ aValue|ֵ,ability|,able|,$dismount|ж +ɳ ADJ aValue|ֵ,ability|,able|,$return| +ɳ ADJ aValue|ֵ,ability|,able|,$remove| +ɳ ADJ aValue|ֵ,ability|,able|,$forming|γ +ɳ֮ N time|ʱ,important| +ɳ ADJ aValue|ֵ,ability|,able|,GoOn| +ɳ ADJ aValue|ֵ,ability|,able|,withstand|ס +ɳ ADJ attribute|,ability|,able|,withstand|ס,&organization|֯,&event|¼ +ɳ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ɳ ADJ aValue|ֵ,ability|,able|,$satisfied| +ɳ ADJ aValue|ֵ,ability|,able|,$lend|,commercial| +ɴ ADJ aValue|ֵ,ability|,able|,$store| +ɴ͸ ADJ aValue|ֵ,ability|,able|,$stab| +ɴ ADJ aValue|ֵ,ability|,able|,$PutOn| +ɴ ADJ aValue|ֵ,ability|,able|,$disseminate| +ɴС ADJ aValue|ֵ,ability|,able|,$adjust| +ɵõ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɵ N medicine|ҩ +ɵǼ ADJ aValue|ֵ,ability|,able|,$record|¼ +ɵݽ ADJ aValue|ֵ,ability|,able|,$subtract| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɵ ADJ aValue|ֵ,ability|,able|,$adjust| +ɶ ADJ aValue|ֵ,ability|,able|,$decide| +ɶ ADJ aValue|ֵ,ability|,able|,$understand| +ɶ ADJ attribute|,ability|,able|,$understand|,&information|Ϣ +ɶҡ ADJ aValue|ֵ,ability|,able|,$shake|ҡ +ɶ ADJ aValue|ֵ,ability|,able|,$read| +ɶ ADJ attribute|,ability|,able|,$read|,&information|Ϣ +ɶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɷ ADJ aValue|ֵ,ability|,able|,$announce| +ɷ ADJ aValue|ֵ,ability|,able|,$oppose| +ɷ ADJ aValue|ֵ,ability|,withstand|ס,desired| +ɷ ADJ aValue|ֵ,ability|,able|,$defend| +ɷֹ ADJ aValue|ֵ,ability|,able|,$escape| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷֽ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$classify| +ɷ ADJ aValue|ֵ,ability|,able|,$separate| +ɷ ADJ aValue|ֵ,ability|,able|,$analyze| +ɷ N aspiration|Ը +ɷ CONJ {question|} +ɸ ADJ aValue|ֵ,ability|,able|,$amend| +ɸ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɸ ADJ aValue|ֵ,ability|,able|,$cultivate| +ɸ ADJ aValue|ֵ,ability|,able|,$alter|ı +ɸ ADJ aValue|ֵ,ability|,able|,$improve| +ɹ ADJ aValue|ֵ,ability|,able|,$occupy|ռ +ɹʹ ADJ aValue|ֵ,ability|,able|,$use| +ɹ ADJ aValue|ֵ,ability|,able|,$estimate|,commercial| +ɹ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ɹ ADJ aValue|ֵ,degree|̶,very| +ɹ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɹ黹 ADJ aValue|ֵ,ability|,able|,$return| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultIn| +ɹ ADJ aValue|ֵ,ability|,able|,$ResultFrom|Ե +ɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ɺ N human|,official|,past| +ɺ ADV aValue|ֵ,time|ʱ,proper| +ɺͽ ADJ aValue|ֵ,ability|,able|,$reconcile| +ɺͽ N attribute|,ability|,reconcile|,&organization|֯ +ɺ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ɻ ADJ aValue|ֵ,ability|,able|,$exchange| +ɻ ADJ aValue|ֵ,ability|,able|,$weaken| +ɻӷ ADJ aValue|ֵ,ability|,able|,$disappear|ʧ +ɻָ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻظ ADJ aValue|ֵ,ability|,able|,$resume|ָ +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɻ ADJ aValue|ֵ,ability|,able|,$LookBack| +ɻ ADJ aValue|ֵ,ability|,able|,$obtain|õ +ɼ ADJ aValue|ֵ,ability|,able|,$count| +ɼ ADJ aValue|ֵ,ability|,able|,$calculate| +ɼǵ ADJ aValue|ֵ,ability|,able|,$remember|ǵ +ɼ̳ ADJ aValue|ֵ,ability|,able|,$receive| +ɼ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɼӹ ADJ aValue|ֵ,ability|,able|,$produce| +ɼٶ ADJ aValue|ֵ,ability|,able|,$deduce| +ɼ ADJ aValue|ֵ,ability|,able|,$fit|ʺ +ɼ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ɼ ADJ aValue|ֵ,ability|,able|,$weaken| +ɼ CONJ {comment|} +ɼ N lights| +ɽ ADJ aValue|ֵ,ability|,able|,$exchange| +ɽ̸ ADJ aValue|ֵ,ability|,able|,$talk|̸ +ɽӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +ɽ ADJ aValue|ֵ,ability|,able|,$accept| +ɽ ADJ aValue|ֵ,ability|,able|,$handle| +ɽ ADJ aValue|ֵ,ability|,able|,$explain|˵ +ɽ ADJ aValue|ֵ,ability|,able|,$transport| +ɾ ADJ aValue|ֵ,ability|,frighten|Ż +ɾ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ɾ ADJ aValue|ֵ,ability|,able|,$amend| +ɾס ADJ aValue|ֵ,ability|,able|,@reside|ס +ɾܾ ADJ aValue|ֵ,ability|,able|,$refuse| +ɾ ADJ aValue|ֵ,ability|,able|,$decide| +ɿ N medicine|ҩ,?addictive|Ⱥ +ɿ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ɿ ADJ aValue|ֵ,trueness|α,true|,desired| +ɿ N human|,true|,desired| +ɿ N attribute|,trueness|α,true|,&thing| +ɿ N drinks|Ʒ +ɿ ADJ aValue|ֵ,ability|,able|,$carve| +ɿ ADJ aValue|ֵ,ability|,able|,$control| +ɿع N tool|þ,*control|,#electricity| +ɿع N tool|þ,*control|,#electricity| +ɿ ADJ aValue|ֵ,taste|ζ,good|,desired| +ɿڿ N drinks|Ʒ +ɿˡ ADJ aValue|ֵ,ability|,able|,$forgive|ԭ +ɿˡ N attribute|,ability|,$forgive|ԭ,&act|ж + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,$understand| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V pity| +о ADJ aValue|ֵ,ability|,able|,$propose| +¼ ADJ aValue|ֵ,ability|,able|,$record|¼ +û ADJ aValue|ֵ,ability|,able|,$levy| +ģ ADJ aValue|ֵ,ability|,able|,$imitate|ģ +Ĩ ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,possibility|,possible| + N attribute|,possibility|,possible|,&event|¼ + ADV {comment|} +ܱԽ ADJ aValue|ֵ,ability|,able|,$surpass|ǿ + N attribute|,possibility|,&event|¼ + ADJ aValue|ֵ,ability|,able|,reverse|ߵ + N attribute|,ability|,able|,reverse|ߵ,&event|¼ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +µ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ʵ ADJ aValue|ֵ,ability|,able|,$climb|ʵ +Ʒ ADJ aValue|ֵ,ability|,able|,$savor| + ADJ aValue|ֵ,ability|,able|,$sit| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$ize|̬ + ADJ aValue|ֵ,ability|,able|,$rescue| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г ADJ aValue|ֵ,ability|,able|,$remove| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,ability|,able|,$request|Ҫ +ȡ ADJ aValue|ֵ,property|,worth|ֵ,desired| +ȡ ADJ aValue|ֵ,ability|,able|,$remove| +Ȧɵ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$endure| + ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,$StateChange|̬ +ܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ + N attribute|,ability|,able|,StateChange|̬,&physical| + ADJ aValue|ֵ,ability|,able|,$perform| +ˮ ADJ aValue|ֵ,ability|,able|,$walk| + ADJ fit|ʺ +͸ ADJ aValue|ֵ,ability|,able|,$influence|Ӱ + ADJ aValue|ֵ,ability|,able|,$produce| +ʪ ADJ aValue|ֵ,ability|,able|,$moisten|ʪ +ʪ N attribute|,ability|,&moisten|ʪ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,ability|,able|,$eat| +ʳ N attribute|,ability|,able|,$eat|,&physical| + CONJ {but|} + ADV {emphasis|ǿ} + ADJ aValue|ֵ,ability|,able|,$use| +ջ ADJ aValue|ֵ,ability|,able|,$MoveItBack| +˵ ADJ aValue|ֵ,ability|,able|,$persuade|Ȱ˵ + ADJ aValue|ֵ,ability|,able|,awake| + ADJ aValue|ֵ,behavior|ֹ,flexible| + N attribute|,behavior|ֹ,flexible|,&thing| + ADJ aValue|ֵ,ability|,able|,$accuse|ظ +̾ ADJ aValue|ֵ,ability|,able|,$sorry|ϧ + ADJ aValue|ֵ,ability|,able|,$listen| +̸ͨн ADJ aValue|ֵ,ability|,able|,$discuss| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ƶ ADJ aValue|ֵ,ability|,able|,$deduce| +˻ ADJ aValue|ֵ,ability|,able|,$GoBack| +ڿ ADJ aValue|ֵ,ability|,able|,$satirize| + ADJ aValue|ֵ,ability|,able|,$resume|ָ + ADJ aValue|ֵ,possibility|,possible| +ɼ ADJ aValue|ֵ,possibility|,impossible|,$fulfil|ʵ +ν V be| + ADJ aValue|ֵ,ability|,able|,$abandon| +ϧ V sorry|ϧ +Ϩ ADJ aValue|ֵ,ability|,able|,$remove| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ +뵽 ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +֪ V deduce| + N attribute|,ability|,&sell| + ADJ aValue|ֵ,ability|,able|,$consume|ȡ +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| + ADJ aValue|ֵ,ability|,able|,$believe| +Ŷ N attribute|,ability|,able|,$believe|,&mental| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$believe| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + N attribute|,ability|,able|,$fulfil|ʵ,&thinking|˼ +޸ ADJ aValue|ֵ,ability|,able|,$repair| + ADJ aValue|ֵ,ability|,able|,$repair| +ѡ ADJ aValue|ֵ,ability|,able|,$choose|ѡ +ѱ ADJ aValue|ֵ,ability|,able|,$cultivate| +ѹ ADJ aValue|ֵ,ability|,able|,$shrink|С +ѹե ADJ aValue|ֵ,ability|,able|,$SqueezeOut| +ӳ ADJ aValue|ֵ,ability|,able|,$enlarge| +֤ ADJ aValue|ֵ,ability|,able|,$prove|֤ + ADJ aValue|ֵ,ability|,able|,$ize|̬ +Һ ADJ aValue|ֵ,ability|,able|,$ize|̬ +ҽ ADJ aValue|ֵ,ability|,able|,$cure|ҽ +ֲ N attribute|,ability|,$TakeAway|ᶯ,$install|װ,&software| +ֲ N attribute|,ability|,$TakeAway|ᶯ,$planting|ֲ,&plant|ֲ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| + AUX {modality|} +Ա ADJ aValue|ֵ,ability|,able|,$guarantee|֤,&human| +Ա N attribute|,ability|,able|,$guarantee|֤,&human| +Ա ADJ aValue|ֵ,ability|,able|,$escape| +Ա任 ADJ aValue|ֵ,ability|,able|,$replace| +Թ ADJ aValue|ֵ,ability|,able|,$estimate| +Ժ ADJ aValue|ֵ,ability|,able|,$respire| +Ի ADJ aValue|ֵ,ability|,able|,$obtain|õ +Լ ADJ aValue|ֵ,ability|,able|,$perception|֪ +Խܱ ADJ aValue|ֵ,ability|,able|,$guarantee|֤ + ADJ aValue|ֵ,ability|,able|,$satisfied| +ȷ ADJ aValue|ֵ,ability|,able|,$decide| +ʶ ADJ aValue|ֵ,ability|,able|,$know|֪ +ʡȥ ADJ aValue|ֵ,ability|,able|,$remove| +ʵ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$deduce| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ӻ ADJ aValue|ֵ,ability|,able|,$delay| + ADJ aValue|ֵ,ability|,able|,$quote| + ADJ aValue|ֵ,ability|,able|,$restrain|ֹ + ADJ aValue|ֵ,impression|ӡ,good|,desired| + ADJ aValue|ֵ,ability|,able|,$drink| + ADJ aValue|ֵ,ability|,able|,$quote| +ӡˢ ADJ aValue|ֵ,ability|,able|,$print|ӡˢ +п ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,ability|,able|,$exempt| +û ADJ aValue|ֵ,ability|,able|,$replace| +Ԥ ADJ aValue|ֵ,ability|,able|,$pay| +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ +Ԥδ V time|ʱ,future|,$predict|Ԥ +Ԥ ADJ aValue|ֵ,ability|,able|,$predict|Ԥ + ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ + ADJ aValue|ֵ,ability|,able|,$add| +չ ADJ aValue|ֵ,ability|,able|,$unfold|̯ +۵ ADJ aValue|ֵ,ability|,able|,$fold|ߡ + ADJ aValue|ֵ,ability|,able|,$defeat|սʤ +˰ ADJ aValue|ֵ,performance|,#collect| + ADJ aValue|ֵ,ability|,able|,$debate| + ADJ aValue|ֵ,ability|,able|,$debate| +֤ʵ ADJ aValue|ֵ,ability|,able|,$prove|֤ +֪ ADJ aValue|ֵ,ability|,able|,$know|֪ +ִ ADJ aValue|ֵ,ability|,able|,$conduct|ʵʩ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ + ADJ aValue|ֵ,ability|,able|,$cure|ҽ,desired| +ֲ ADJ aValue|ֵ,ability|,able|,$planting|ֲ +ػ ADJ aValue|ֵ,ability|,able|,$obtain|õ +׷ ADJ aValue|ֵ,ability|,able|,$need| +׷ ADJ aValue|ֵ,ability|,able|,$follow| + ADJ aValue|ֵ,ability|,able|,$use| +֯ ADJ aValue|ֵ,ability|,able|,$establish| + V HungryThirsty| + V expect| + N aspiration|Ը,expect| + V expect| + V consume|ȡ + V defeat|սʤ + V delimit| + V occupy|ռ,military| + V restrain|ֹ + CLAS unit|λ,&weight| +˵ʤ V defeat|սʤ,partner=enemy|,military| +˷ V defeat|սʤ +˷ V defeat|սʤ,military| +˸ V TakeBack|ȡ +˸ N institution|,police|,ProperName|ר,politics|,(Soviet|) +˼ V loyal|Т +˿ V levy| + CLAS unit|λ,&weight| + N SportTool|˶ + N money|,(Czechoslovakia|ݿ) + N money|,(Czech|ݿ) + N money|,(Slovakia|˹工) + N place|ط,ProperName|ר,(Russia|˹) + N human|,(Crimea|) +ķֹ N house|,institution|,#politics|,(Russia|˹) +ֶ N human|,official|,politics|,ProperName|ר,(US|) +¡ V produce| +޵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Croatia|޵) +޵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ǹ͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +޵ N language|,#country|,ProperName|ר + N money|,(Brazil|) +ڿ˼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʲ׶ N place|ط,ProperName|ר,(Asia|) +ʲ׶ N language|,#country|,ProperName|ר +͡ N disease| +߲ N money|,(Zambia|ޱ) + V restrain|ֹ + V carve| + V delimit| + N time|ʱ + N time|ʱ,special| +̰ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +̱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̲ݻ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +̶ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +̶ N mark|־,linear|,#measurement| +̹ ADJ aValue|ֵ,content|,profound| +̹ V remember|ǵ +̻ V describe|д +̻ V carve| +̿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +̿ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V carve|,ContentProduct=character| + ADJ aValue|ֵ,source|Դ,different| + N human|,*buy|,commercial| + N human|,*engage| + N human|,*tour| + N human|,*visit| + N human|,commercial| +Ͳ N part|,%vehicle|ͨ,room|,@reside|ס +ͳ N LandVehicle|,*transport|,human| +ʹ N ship|,*transport|,#human| +ʹ V RegardAs|,entertainment| +Ͷ N community|,$invite|,*compete|,sport| +ͷ N food|ʳƷ +ͷ N room| +͹ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +͹ N attribute|,correctness|,correct|ȷ,desired|,&mental| +ͻ N human|,*buy|,#commercial| +ͻ N aircraft|,*transport|,human| +ͼ N community|,ProperName|ר,(China|й) + N human|,mass|,commercial| + N quantity|,amount|,&human|,commercial| + N ship|,*transport|,#human| + ADJ aValue|ֵ,fullness|,full| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,#tour| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human|,*visit| + N human|,commercial| + N human|,commercial| + N entity|ʵ + N room| +Դ N location|λ,@ExistAppear|,#human|,commercial| + V transport| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +ջ N InstitutePlace|,@reside|ס,#tour|,commercial| + N affairs|,education| + N expenditure|,$levy| + V levy| + N part|,%knowledge|֪ʶ,$study|ѧ,education| +α N readings|,*teach|,$study|ѧ,education| +α N readings|,#plans|滮,education| +γ N part|,%knowledge|֪ʶ,$study|ѧ,education| +μ N time|ʱ,@rest|Ϣ,education| +μ N exercise|,education| +ʱ N time|ʱ,education| +ʱ N time|ʱ,hour|ʱ,education| + N room|,education| +˰ N expenditure| +˰ V levy|,possession=expenditure|,commercial| + N room|,education| + N attribute|,content|,&information|Ϣ + N problem| + N part|,%InstitutePlace|,*research|о + ADJ aValue|ֵ,attachment|,education| + N readings| + N affairs|,education| +Ķ N affairs|,#read|,education| +ҵ N affairs|,#study|ѧ,education| + N text|,education| +ҵ N affairs|,education| + ADJ aValue|ֵ,attachment|,education| + V levy|,commercial| + N furniture|Ҿ,space|ռ,@put| + V agree|ͬ + V willing|Ը +϶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +϶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +϶ ADJ aValue|ֵ,correctness|,upright|,desired| +϶ V admit| +϶ V agree|ͬ + N human|,official|,politics|,ProperName|ר,(US|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Kenya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǰ N money|,(Kenya|) + N human|,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ػ ADJ place|ط,ProperName|ר,(US|) + V bite|ҧ +ҧ V bite|ҧ +Ӳͷ V endeavour| + V engage|,agricultural|ũ +ѻ V cultivate|,agricultural|ũ + N place|ط,#crop|ׯ,agricultural|ũ +ֳ V engage|,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V request|Ҫ,manner=sincere| + V request|Ҫ,manner=sincere| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,form|״,dented| + V damage| + V deceive|ƭ + N facilities|ʩ,mine| + V kill|ɱ + N part|,%earth|,mouth| +ӵ N facilities|ʩ,mine| +ӵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ӻ V damage| +ӿ ADJ aValue|ֵ,SmoothFinish|,rugged| +ɹƭ V cheat|ƭ +ƭ V cheat|ƭ + V cheat|ƭ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V MakeSound| + V speak|˵ + V endeavour| + V pant| + V speak|˵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + N character|,surname|,human|,ProperName|ר + V dump| + N location|λ,space|ռ,empty| + N sky| + N time|ʱ,#idle| +հ N attribute|,content|,empty|,&entity|ʵ +հ N weapon|,*firing| +ճ N part|,%AnimalHuman|,viscera| +ճ N LandVehicle|,$lend|,empty|,commercial| +յ N time|ʱ,#idle| +յ ADJ aValue|ֵ,fullness|,empty| +յ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +յ N method|,#speed|ٶ,#vehicle|ͨ +յ N place|ط +յ N place|ط,empty| +յ V adjust|,patient=temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ N tool|þ,*adjust|,#temperature|¶ +յ豸 N tool|þ,*adjust|,#temperature|¶ +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ն N part|,%inanimate|,mouth| +ն ADJ aValue|ֵ,content|,empty|,undesired|ݬ +նԵ ADJ aValue|ֵ,performance|,#firing|,#direction| +շ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +շ N house|,$lend| +շ V defend|,patient=sky| +ո ADJ aValue|ֵ,fullness|,empty| +ո N symbol|,#computer| +ջ V talk|̸,content=empty| +ջ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ռ N sky| +ռ N attribute|,space|ռ,&inanimate| +ռվ N facilities|ʩ,#aircraft|,#celestial| +ս V fall|,military| +ս N army|,#sky| +ս N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| +վ N army|,#sky| +տյ ADJ aValue|ֵ,fullness|,empty| +տҲ ADJ aValue|ֵ,fullness|,empty| +տ˵׻ V TalkNonsense|Ϲ˵ +տ ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + V talk|̸,content=empty| + N {fullness|} + N phenomena|,unfortunate|,#aircraft|,undesired|ݬ + N gas| +ǰ ADJ aValue|ֵ,kind|,special| +ǰ ADJ aValue|ֵ,kind|,special| +ǻ N shape|,cubic| +Ա N human|,#occupation|ְλ,military| +ȱ V OwnNot| +ȱ N attribute|,occupation|ְλ,empty|,&human| + V fail|ʧ,scope=take|ȡ + N attribute|,speed|ٶ,&SelfMove| +̸ V talk|̸,content=empty| +̸ N human|,*TalkNonsense|Ϲ˵ +Ͷ V drop|Ͷ +ͷ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͷ N fact|,disloyal| +ͷ֧Ʊ N coupon|Ʊ֤,#wealth|Ǯ,fake|α +ͷ֧Ʊ N information|Ϣ,empty|,fake|α,undesired|ݬ +λ N location|λ,@sit|,empty| +Ϯ V attack|,military| +϶ N location|λ,space|ռ,empty| +϶ N time|ʱ,#idle| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,#idle| + N thought|ͷ,empty| + N human| + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,property|,^$occupy|ռ + N sky| + V transport| + ADJ aValue|ֵ,property|,^$load|װ +ս V fight|,location=sky| + N location|λ,%sky| +зʽ N fact|,check|,#army|,military| +¥ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +С N human|,#occupation|ְλ,female|Ů,*TakeCare|,#aircraft| + N tool|þ,*WhileAway| +ת V rotate|ת + N part|,%inanimate|,mouth| + N time|ʱ,important| + V fear| + V frighten|Ż + V uneasy| +ֲ N emotion|,fear| +ֲ V fear| +ֲ N thing|,*frighten|Ż +ֲ N human|,*damage|,crime| +ֲ N knowledge|֪ʶ,#damage|,crime| +ֻ N emotion|,fear| +ֻ V fear| +־ V fear| + N AnimalHuman|,past| + ADV {comment|} + V frighten|Ż + N character|,surname|,human|,ProperName|ר + N part|,%inanimate|,mouth| +׵ N facilities|ʩ,route|· +׶ N part|,%inanimate|,mouth| +׾ N attribute|,length|,&mouth| +׾ N part|,%tool|þ,#TakePicture| + N facilities|ʩ,space|ռ,religion|ڽ +ȸ N bird| +϶ N part|,%inanimate|,mouth| +Ѩ N part|,%inanimate|,mouth| + N human|,ProperName|ר,past|,literature|,(China|й) + V accuse|ظ + V control| + V dump| +ظ V accuse|ظ + V accuse|ظ + V control| +Ʋ ADJ aValue|ֵ,possibility|,impossible|,$control| +Ʋס ADJ aValue|ֵ,possibility|,impossible|,$control| +̨ N part|,%implement|,@control| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| + V dig|ھ + V research|о + V scratch|ץ +Ŷ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +۶ V LookFor|Ѱ,location=expression|,content=wrong| + N attribute|,age|,&livestock| + N part|,%AnimalHuman|,mouth| + N part|,%building|,mouth| + N part|,%inanimate|,mouth| + N part|,%tool|þ,*cut|,heart| +ڰ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ڱ N attribute|,reputation|,#praise|佱,&human|,&organization|֯ +ڲ N attribute|,ability|,&speak|˵ +ڲźõ N human|,able| +ڳ V disable|м,scope=speak|˵ +ڳ N attribute|,ability|,&speak|˵ +ڳ N sound|,#language| +ڳ N attribute|,odor|ζ,stinky|,undesired|ݬ +ڳ V boast| +ڴ N part|,%clothing|,cubic|,@put| +ڴ N tool|þ,cubic|,@put| +ڷ V accept| +ڷ V eat|,medical|ҽ +ڷҺ N medicine|ҩ +ڸ N attribute|,circumstances|,happy|,#eat|,&human| +ڸ N food|ʳƷ,generic|ͳ +ڸ V HungryThirsty| +ڸ N experience|,#eat| +ڹ N text|,*admit|,#crime|,#police| +ں N text| +ں N tool|þ,*MakeUp|ױ +ڻ N information|Ϣ,empty|,fake|α,undesired|ݬ +ڽ N part|,%AnimalHuman|,mouth| +ڽ V quarrel| +ڽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ھ N attribute|,size|ߴ,&mouth| +ھ N attribute|,standard|׼,&entity|ʵ +ڿ V HungryThirsty| +ڿ V speak|˵ + N food|ʳƷ + N text| +۸ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ģ N AlgaeFungi|ֲ,$eat| + N part|,%InsectWorm|,mouth| + N attribute|,bearing|̬,#speak|˵,&human| + N information|Ϣ,#language| + N sound|,#language| +ǻ N part|,%AnimalHuman|,mouth| +ǻ N part|,%InstitutePlace|,#mouth|,medical|ҽ + N MusicTool| + ADJ aValue|ֵ,age|,young|,#animal| + ADJ aValue|ֵ,habit|ϰ + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + N sound| + V debate| + N text|,$speak|˵ +ʵ N reason|,undesired|ݬ +ķ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V exam| + V exam|,education| + V teach| + V teach|,education| + V speak|˵ +ˮ N part|,%AnimalHuman|,liquid|Һ +ͷ ADJ aValue|ֵ,kind|,$speak|˵ +ͷ N expression| + N part|,%AnimalHuman|,mouth| +ζ N emotion|,FondOf|ϲ + N part|,%AnimalHuman|,mouth| + N sound|,#language| + N result|,wrong|,undesired|ݬ,#speak|˵ + N food|ʳƷ + N information|Ϣ,$speak|˵ + V translate| + N attribute|,SoundQuality|,&speak|˵ + N sound|,#language| + N language|,$speak|˵ + N tool|þ,*protect|,#mouth| + ADJ aValue|ֵ,habit|ϰ +ʷ V ExpressAgainst|Ǵ + N location|λ,#OutOfOrder| + N location|λ,#disease|,#wounded| + N part|,%inanimate|,mouth| + V beat| + V cover|ڸ + V detain|ס,police| + V fasten|˩ + V levy|,police| + N part|,%clothing|,*fasten|˩ + V reverse|ߵ + V subtract| +۳ V subtract| +۷ V subtract| +۽ V levy|,police| +ۿ V subtract|,patient=money| + V detain|ס,police| + V beat|,patient=SportTool|˶ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ɱ V beat| +ѹ V detain|ס +Ѻ V detain|ס,police| +Ѻ V levy|,police| +Ѻ N fact|,sell|,police| + N part|,%clothing|,*fasten|˩ +ס V detain|ס + N part|,%clothing|,*fasten|˩ + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*attack| + N human|,undesired|ݬ,*rob|,crime| + N human|,undesired|ݬ,enemy| +ܳ N human|,undesired|ݬ,enemy| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V decline|˥ +ݳ N thinking|˼ +ݻ ADJ aValue|ֵ,color|ɫ,yellow| +ݼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ݽ ADJ aValue|ֵ,dampness|ʪ,dried| +ݽ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ݾ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ľ괺 V BeRecovered|ԭ +ɬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +ˮ N time|ʱ,season|,waterless| +ή ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +ή V decline|˥ +Ҷ N InsectWorm|,*fly| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +﷦ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + V decline|˥ + V weep| +ޱ V weep| +޿ V weep| + V weep| +ɥ V unsatisfied| + N sound|,#weep| + V accuse|ظ,manner=weep| +Ц V embarrassed|Ϊ + N house|,#animal|,#alive| + N part|,%earth|,mouth| + N part|,%inanimate|,mouth| + N place|ط,crime| + N part|,%inanimate|,mouth| + N wealth|Ǯ,$owe|Ƿ +۶ N part|,%inanimate|,mouth| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + N phenomena|,undesired|ݬ,unfortunate| + N phenomena|,undesired|ݬ,#unfortunate| + N phenomena|,undesired|ݬ,unfortunate| +ദ N phenomena|,undesired|ݬ,#unfortunate| +൨ N part|,%AnimalHuman|,viscera| +භ V endeavour| + V study|ѧ,manner=diligent| + V endeavour| +๤ N affairs|,industrial|,hardship| +๤ N human|,#occupation|ְλ,employee|Ա +๦ V endeavour| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V result|,miserable|,undesired|ݬ +ຣ N attribute|,environment|,miserable|,&human|,&organization|֯ +ຮ ADJ aValue|ֵ,temperature|¶,cold| +ྡ V lucky| +ྡ V lucky| + ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N human|,#occupation|ְλ,employee|Ա + V drill|ϰ,manner=diligent| + V upset| + N phenomena|,undesired|ݬ,#unfortunate| + V upset| +ɬ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bitter|,undesired|ݬ +ɬ V sorrowful| +ˮ N part|,%AnimalHuman|,liquid|Һ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N water|ˮ,bitter| +˼ V think|˼,manner=endeavour| +˼ڤ V think|˼,manner=endeavour| +ʹ N phenomena|,undesired|ݬ,#unfortunate| +ͷ N attribute|,taste|ζ,&edible|ʳ,bitter| +ͷ N phenomena|,undesired|ݬ,#unfortunate| +ζ N attribute|,taste|ζ,bitter|,&inanimate| +Ц V sigh|̾ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ĺ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ľӪ V endeavour| + V inferior| + V suffer| +ս V fight|,manner=endeavour| + N phenomena|,undesired|ݬ,#unfortunate| + N tree| + N human|,undesired|ݬ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ᰮ V FondOf|ϲ,degree=extreme| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ + N time|ʱ,season|,hot| + V BeSimilar|,degree=extreme| + N fact|,damage|,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@put|,@store| + N physical|,$store| +Ʒ N artifact|˹,$store|,commercial|,generic|ͳ + N language|,#country|,ProperName|ר +ⷿ N facilities|ʩ,space|ռ,@put|,@store| + CLAS unit|λ,&ChargeQuantity| + N attribute|,volume|ݻ,&facilities|ʩ + N clothing|,#leg| + N tool|þ,linear|,#clothing|,*fasten|˩ + N part|,%clothing|,leg| + N part|,%clothing|,#leg| + N clothing|,#leg| + N clothing|,#leg| + V boast| + V praise|佱 + V boast| + V boast| +亣 V boast| +佱 V praise|佱 + V boast| +̸ V boast| + CLAS unit|λ,&volume|ݻ +ҫ V ShowOff|ҫ +ҫ V boast| + V praise|佱 + V boast| + N expression|,*boast| + V end|ս + V perish| +̨ V end|ս +̨ V perish|,politics| + V hold| + N tool|þ,cubic|,@put| + V BeBeyond|Խ + V GoThrough| + V cross|Խ + V sit| + V GoOut|ȥ + N attribute|,distance|,&facilities|ʩ + ADJ aValue|ֵ,attachment|,#country| +˾ N InstitutePlace|,commercial| +ҵ N InstitutePlace|,commercial| + V cross|Խ + ADJ aValue|ֵ,time|ʱ + V GoInto| + V sit| + ADJ aValue|ֵ,time|ʱ + N facilities|ʩ,route|· + V cross|Խ,LocationThru=waters|ˮ +Խ V BeBeyond|Խ +Խ V cross|Խ + N part|,%AnimalHuman|,#body| + N part|,%AnimalHuman|,bone| + CLAS NounUnit|,&inanimate|,^liquid|Һ + N shape| + CLAS unit|λ,&money|,(China|й) + N part|,%plant|ֲ,base| + N tool|þ,*measure| +龥 N part|,%plant|ֲ,body| +״ N shape| + N tool|þ,*eat| + N tool|þ,*eat| + V VieFor| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V joyful|ϲ +챨 N publications|鿯,news| +첽 V run| +첽 V walk| + N edible|ʳ +쳵 N LandVehicle| +쳵 N facilities|ʩ,route|·,#speed|ٶ +쵱 ADJ aValue|ֵ,speed|ٶ,fast| +쵶ն ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V VieFor| + N emotion|,joyful|ϲ,desired| +칥 V attack|,sport| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N physical|,$post|ʼ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ +ӱ V VieFor| +ӱ ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж + N part|,%tool|þ,#TakePicture| +˿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fact|,#joyful|ϲ,desired| + ADJ aValue|ֵ,speed|ٶ,fast| +ٻ ADJ aValue|ֵ,behavior|ֹ,fast|,flexible| +ת ADJ aValue|ֵ,speed|ٶ,fast| +ͧ N ship| +ο V joyful|ϲ +Ѷ N news| +Ҫ ADV aValue|ֵ,duration|,TimeShort| + V satisfied| + N fish| + N part|,%physical| + N human|,forthright|ˬ + V AtEase| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,wide| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + V AtEase| + ADJ aValue|ֵ,area|,wide| +խ V economize|ʡ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V WellTreat|ƴ + N attribute|,width|,&physical| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V soothe|ο + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,area|,wide| + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ˡ V forgive|ԭ + V AtEase| + ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,occasion|,^crowded|,desired| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ο V soothe|ο + V enlarge|,PatientAttribute=boundary|,#time|ʱ + N time|ʱ,@enlarge|,#boundary|,#time|ʱ + V StripOff|ȥ,patient=clothing| +ԣ ADJ qValue|ֵ,amount|,sufficient| + N money|,(Angola|) +խ N attribute|,width|,&physical| + V indulge| + ADJ aValue|ֵ,speed|ٶ,slow| + N fund|ʽ + N part|,%document| + V entertain|д + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,speed|ٶ,slow| + V detain|ס +ʽ N attribute|,pattern|ʽ,&artifact|˹ + N part|,%text| + N quantity|,amount|,&wealth|Ǯ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + V calculate| + N character|,surname|,human|,ProperName|ר + V estimate| + V help| + V rescue| + V help| +︴ V rescue|,patient=country| + V calculate| + V estimate| + V rescue| + V amend|,content=wrong| + V calculate| + V estimate| + V amend| +ʱ V amend|,content=wrong| + V help| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V mad| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V run|,manner=fast| + N water|ˮ + V cry|,#livestock| + N wind|,strong|ǿ +籩 N weather|,#RainSnow|ѩ,#wind| + V joyful|ϲ + N fact|,undesired|ݬ +Ȯ N disease| + ADJ aValue|ֵ,behavior|ֹ,sincere| + N human| + N human|,undesired|ݬ,*mad| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V joyful|ϲ,degree=extreme| +Ц V laugh|Ц + N text|,undesired|ݬ + N wind|,strong|ǿ + V draw| + N part|,%artifact|˹,bone| + N part|,%thing|,bone| + N part|,%artifact|˹,bone| + N regulation| +ͼ N image|ͼ + N part|,%artifact|˹,bone| + N InstitutePlace|,mine| + N stone|ʯ,mine| + N location|λ,#stone|ʯ,mine|,@ExistAppear| + N physical|,mine| +Ʒ N physical|,mine| + N human|,#occupation|ְλ,official|,mine| + N LandVehicle|,mine| + N stone|ʯ,waste|,mine| + N part|,%land|½,mine| + N tool|þ,*illuminate|,mine| + N human|,#occupation|ְλ,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| + N InstitutePlace|,mine| +Ȫ N waters|ˮ,#mine| +Ȫˮ N drinks|Ʒ +ɰ N stone|ʯ,mine| +ɽ N InstitutePlace|,mine| +ʯ N stone|ʯ,mine| + N part|,%land|½,mine| + N inanimate|,mine| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N inanimate|,mine| + N institution|,#mine|,ProperName|ר,politics| +ҵ N affairs|,mine| + N stone|ʯ,waste|,#mine| + N attribute|,kind|,&mine| + N part|,%AnimalHuman|,#eye| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,size|ߴ,big| + ADJ aValue|ֵ,tolerance|,generous|,desired| + V lavish|˷ + V cease|ͣ,content=affairs|,undesired|ݬ + V cease|ͣ,content=affairs|,education|,undesired|ݬ +ճ־ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,kind|,special| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Զ ADJ aValue|ֵ,area|,wide| +Զ ADJ aValue|ֵ,duration|,TimeLong|,past| +ְ V cease|ͣ,content=affairs|,undesired|ݬ + N attribute|,circumstances|,&entity|ʵ + N character|,surname|,human|,ProperName|ר + CONJ {supplement|ݽ} + V IllTreat| + V InDebt| + V InDebt|,commercial| + V lack|ȱ + V lack|ȱ,commercial| + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V InDebt|,possession=fund|ʽ,commercial| + V affairs|,*InDebt|,commercial| + V affairs|,*InDebt|,commercial| + V IllTreat| + V lose|ʧȥ + V InDebt| + V InDebt|,commercial| + V InDebt|,commercial| +Ƿ V InDebt|,commercial| +Ƿ V owe|Ƿ,commercial| +ʴ V InDebt|,commercial| +ʴ V disappear|ʧ + V InDebt|,commercial| + V GuiltilyConscious| + N clothing|,#head|ͷ,*protect| + N clothing|,*protect| +Ȼ ADJ aValue|ֵ,height|߶,tall| + V look|,manner=secret| + V perception|֪ + V look|,manner=secret| +̽ V look|,manner=secret| + V look|,manner=secret| + N human|,*look|,secret|,undesired|ݬ + N crop|ׯ + N crop|ׯ + N part|,%plant|ֲ,embryo|,?food|ʳƷ + N tool|þ,#wind|,*cool| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N human|,official| + N place|ط,ProperName|ר,(Canada|ô) + N human|,able|,desired| + N human|,official| +ΰ ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N human|,undesired|ݬ,$order| + V GiveAsGift| + V GiveAsGift| + N tool|þ,linear|,@transmit| + V GiveAsGift| + V shy| + V shy| + V shy| + V shy| + V shy| +ɫ N attribute|,countenance|,shy|,&human| + V shy| + V shy| + V shy| + V OutOfOrder| + V defeated|,military| + V inflamed| + V defeated|,military| + V inflamed| + V defeated|,military| +ɢ V defeated|,military| + V flee| + V flee| + N disease| + V inflamed| + ADJ aValue|ֵ,sex|Ա,female|Ů +Ƕ N human|,female|Ů,entertainment| + N human|,family|,male| + N place|ط,city|,ProperName|ר,(China|й) + N AlgaeFungi|ֲ,?medicine|ҩ,$eat| + N InsectWorm|,generic|ͳ +ѧ N knowledge|֪ʶ,#InsectWorm| +ѧ N human|,#knowledge|֪ʶ,#InsectWorm| + N shows|,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + N shows|,(China|й) + N human|,family|,mass|,male| + CLAS NounUnit|,&inanimate| + N shape| + V wrap| + V wrap| + V wrap| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V decline|˥ + V surround|Χ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V tired|ƣ + V tired|ƣ + V ignorant|֪ + N attribute|,circumstances|,miserable|,undesired|ݬ,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V embarrassed|Ϊ + V tired|ƣ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V unfortunate| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N attribute|,easiness|,difficult|,undesired|ݬ,&event|¼ + N phenomena|,undesired|ݬ,poor| +ѻ N community|,family|,poor|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V MakeWorried| + V defend|,military| +̶ V RashlyAct| + V contain| + N symbol| + N symbol| +Լ N part|,%AnimalHuman|,flesh| + V enlarge| + V enlarge|,#organization|֯,military| + V MakeBetter|Ż + V enlarge| + V enlarge| + V MakeBetter|Ż + N fact|,discuss| + V enlarge| + V add|,patient=army|,military| +ɢ V disperse|ɢ +ɢ V disseminate| + N SportTool|˶ +չ V CauseToGrow|ʹɳ +չ V enlarge| + V enlarge| + V enlarge|,medical|ҽ + ADJ aValue|ֵ,area|,wide| + V destroy| + V enlarge| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + V farewell| + V walk| +ǰ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N human|,rich|,desired| + N human|,rich|,desired| +Ҷ N tree| + N physical|,waste| + V handle|,patient=waste| + N physical|,waste| +Ͱ N tool|þ,cubic|,@put|,#waste| + N tool|þ,cubic|,@put|,#waste| + V attract| + V attract|,commercial| + V attract|,politics|,commercial| + V excrete|й + V force|ǿ + V help| + V include|,manner=force|ǿ + V pull| + V recreation|,entertainment| + V talk|̸ + V transport| + V transport|,military| + N place|ط,capital|,ProperName|ר,(Morocco|Ħ) + V AlterForm|״,PatientAttribute=long| + V unsatisfied| + V foster| + V pull| + V relate|й + V talk|̸ + N machine| +˹ N language|,#country|,ProperName|ר + V include|,manner=force|ǿ + N place|ط,ProperName|ר + N language|,#country|,ProperName|ר + V StomachTrouble|֢ + N money|,(Maldives|) + N fittings|,industrial| +˹ N place|ط,capital|,ProperName|ר,(Nigeria|) +ϵ V associate| +϶ N place|ط,city|,ProperName|ר,(Pakistan|ͻ˹̹) + N SportTool|˶ + V owe|Ƿ +ҳ V talk|̸ + V mediate|,ResultEvent=fight| + V associate| + V transport| + V open| + V separate| + V attract|,target=human|,ResultEvent=SeekPleasure|Ѱ,#commercial| + V attract|,target=human|,commercial| + V transport|,patient=human| + V collude| + V pull| + N community|,*urge|ʹ,#sport| + N attribute|,strength|,#pull|,&physical| + N part|,%clothing| + V drill|ϰ,military| +£ V entice| + N place|ط,ProperName|ר + N part|,%building|,mouth| + V cook| + N food|ʳƷ +ģ N tool|þ +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| + N place|ط,city|,ProperName|ר,(China|й) +ʺ V excrete|й,patient=waste| + V ShowLove|ʾ,means=CausePartMove| + N part|,%artifact|˹,arm| +˿ V straighten|ֱ,industrial| + N part|,%clothing| +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,( Latvia |ά) +ά N place|ط,country|,ProperName|ר,(Europe|ŷ) +ά N language|,#country|,ProperName|ר +ϡ V StomachTrouble|֢ + V mediate| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +բ V TurnOff|ֹ +ֱ V straighten|ֱ +ס V catch|׽ס + N character|,(China|й) + N MusicTool| + N tool|þ,*disseminate| + N human|,religion|ڽ +ﻨ N FlowerGrass| + N community|,religion|ڽ +ͽ N human|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N material| + N tool|þ,*illuminate| + N stationery|ľ,@write|д + N PenInk|ī,*write|д + N InsectWorm| + N tool|þ,*decorate|װ + ADJ aValue|ֵ,color|ɫ,yellow| +Ⱦ V AlterColor|ɫ +̨ N tool|þ,@put|,#illuminate| + N tool|þ,image|ͼ +ֽ N paper|ֽ,*wrap| +ֽ N paper|ֽ,@write|д + N tool|þ,*illuminate| + ADJ aValue|ֵ,property|,$cook| + N time|ʱ,month| + N food|ʳƷ + N food|ʳƷ +÷ N FlowerGrass| + N food|ʳƷ +ζ N food|ʳƷ +ζ N food|ʳƷ,generic|ͳ + N time|ʱ,month| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N material|,?food|ʳƷ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ζ N attribute|,taste|ζ,peppery|,&physical| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ECHO {modality|} + N community|,*urge|ʹ,#sport| + N FlowerGrass|,?medicine|ҩ + N land|½,#crop|ׯ + N place|ط,city|,ProperName|ר,(Germany|¹) + N lights| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lesotho|) + N place|ط,country|,ProperName|ר,(Africa|) + N waters|ˮ,linear|,ProperName|ר,(Europe|ŷ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V arrive| + V come| + V happen| + ADV qValue|ֵ,amount|,almost| + N human|,*visit| + V prohibit|ֹ + ADV aValue|ֵ,earliness|,late| + V appear|,content=water|ˮ + V arrive| + ADJ aValue|ֵ,ability|,able|,desired| +ü ADV aValue|ֵ,earliness|,early| + V visit| +ǹ N weapon|,*firing| + N text| + N letter|ż +༦ N bird| + V ToAndFro| +ȥ V ToAndFro| + N physical|,$post|ʼ + PREP {scope} + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V excited| + PREP {scope} + N human|,*visit| + V ToAndFro| + N attribute|,source|Դ,&physical| + N material| +ϼӹ V produce| + V approach|ӽ + V arrive| +ȥ N process| +· N attribute|,source|Դ,&physical| +· N facilities|ʩ,route|·,#approach|ӽ +· ADJ aValue|ֵ,attachment|,unfixed|δ +· N artifact|˹,commercial|,generic|ͳ + N time|ʱ,future|,year| +ȥ V ToAndFro| + N human|,*post|ʼ + N time|ʱ,future| + N attribute|,circumstances|,future|,&human| + N attribute|,circumstances|,future|,&human| + N attribute|,strength|,#happen|,&physical|,&event|¼ +ͷ N cause|ԭ +ͷ N emotion|,#FondOf|ϲ +ͷ N emotion|,FondOf|ϲ +ͷ N human|,*help| + V ToAndFro| + V associate| + N text| + N letter|ż,$post|ʼ + V post|ʼ,patient=letter|ż + N purpose|Ŀ + N cause|ԭ +Դ N attribute|,source|Դ,&physical| +Դ V ResultFrom|Ե +߲ ADJ aValue|ֵ,tolerance|,generous|,desired| +֮ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V ResultFrom|Ե + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V blame|Թ + N character|,surname|,human|,ProperName|ר + V deny| + V depend| + V disobey|Υ,content=MakeAppointment|Լ + V stay|ͣ +Ƥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ƥ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + V depend| +ծ V deny|,content=owe|Ƿ,commercial| + V deny|,content=owe|Ƿ,commercial| + V disobey|Υ,content=MakeAppointment|Լ + ADJ aValue|ֵ,color|ɫ,blue| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ʯ N stone|ʯ,treasure|䱦 + N attribute|,kind|,original|ԭ,&readings| + N thing|,$BaseOn| + ADJ aValue|ֵ,color|ɫ,blue| + N material|,*AlterColor|ɫ + N human|,#occupation|ְλ,employee|Ա +칤 N human|,#occupation|ְλ,employee|Ա +ɫ ADJ aValue|ֵ,color|ɫ,blue| + N sky|,blue| +ͼ N image|ͼ + N facilities|ʩ,space|ռ,@foster|,#livestock| + N fittings|,%building| + N part|,%readings| + N fittings|,%building| +Ŀ N part|,%shows|,%readings|,name| + V block|ס + V block|ס +Ӱ N facilities|ʩ,#waters|ˮ + V attack|,sport| + V block|ס +· V block|ס +· N thing|,*obstruct|ֹ +·ǿ N human|,crime|,undesired|ݬ,*rob| + V block|ס,sport| + V obstruct|ֹ + ADV aValue|ֵ,location|λ,middle| +ס V block|ס + V block|ס + N tool|þ,cubic|,@put| + N phenomena|,sport| + N SportTool|˶ + N fact|,exercise|,sport| + N fact|,compete|,sport| +̳ N community|,sport| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,earliness|,late| + N part|,%building| + N part|,%building| +ɺ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɺ V decline|˥ +β N part|,%AnimalHuman|,viscera| +β N disease| + N FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N money|,(Namibia|ױ) + N money|,(South Africa|Ϸ) + N place|ط,city|,ProperName|ר,(China|й) + N water|ˮ,strong|ǿ + V HoldInArm|§ + V attract| + V bear|е + V control| + V look| + V read| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V slack|͵ + N human|,lazy|,undesired|ݬ + V unwilling|Ը + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + N human|,lazy|,female|Ů +ͷ N human|,lazy| + N human|,lazy| + N human|,lazy|,undesired|ݬ + N human|,lazy|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ɢ V slack|͵ + N tool|þ,linear|,#electricity| + N tool|þ,linear|,*fasten|˩ +³ N LandVehicle| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V OutOfOrder| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,soft| + V inflamed| +õ V OutOfOrder| +ú ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,color|ɫ,colored|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N stone|ʯ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,ripe| +̯ N attribute|,circumstances|,disorder|,undesired|ݬ,&organization|֯ + V dizzy|,cause=addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V flow|,quantity=many| +IJ V catch|׽ס,manner=improper|,police| +ĵ N text|,used|,undesired|ݬ +ķ V issue|ַ,manner=improper| +ķ V break|۶,#tree|,manner=improper| +Ŀķ V break|۶,#tree|,manner=improper| + V use|,manner=improper| +ְȨ V use|,patient=power|,manner=improper| + N character|,(China|й) + ADJ aValue|ֵ,SoundVolume|,loud| + N character|,(China|й) +ͷ N tool|þ,*beat| + N beast| +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +DZΪ V collude| +DZͻ V run| +Ǵ N disease| +ǹ N livestock| +Ǻ N PenInk|ī,*write|д +ǽ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +̻ V eat| +β N FlowerGrass|,undesired|ݬ +Ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N CloudMist| + N beast| + N part|,%building|,nerve| + N part|,%building|,nerve| + N part|,%building|,head|ͷ + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,male|,past| +è N livestock| + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + ADJ aValue|ֵ,brightness|,bright| +ʶ V recite|ж + ADJ aValue|ֵ,SoundVolume|,loud| + V recite|ж + N human|,recite|ж + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N water|ˮ +˳ N water|ˮ +˴ N tool|þ,*recreation| +˵ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ V lavish|˷ +˷ N human|,lavish|˷ +˻ N water|ˮ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N thinking|˼,#flighty| + N water|ˮ +ͷ N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ +ͷ N water|ˮ +ӿ V jet| + N human|,male|,flighty|,undesired|ݬ + N human|,undesired|ݬ + V TakeOutOfWater| + V cheat|ƭ + V seek|ıȡ +̱ V seek|ıȡ,possession=fund|ʽ + V TakeOutOfWater| +ȡ V cheat|ƭ +ȡ V seek|ıȡ + N character|,surname|,human|,ProperName|ר + V do| + V invite| + V tired|ƣ +ͱ V guarantee|֤,scope=engage|,commercial| +ͱ V protect|,scope=engage|,commercial| +ʹ V tired|ƣ +Ͷ V engage| +Ͷ N time|ʱ,day|,@congratulate|ף,#employee|Ա +Ͷ N human|,industrial| +Ͷ N quantity|,amount|,&human|,#do| +Ͷܼ ADJ aValue|ֵ,property|,BaseOn|,#strength| +Ͷ N human|,#occupation|ְλ,employee|Ա +Ͷ V tired|ƣ +Ͷ޹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +͸ V teach|,#police| +͹ N human|,#occupation|ְλ,employee|Ա +͹ N institution|,#employee|Ա,ProperName|ר,politics| +͹ N community|,#occupation|ְλ,employee|Ա +͹֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +ͼ N result|,#succeed|ɹ,desired| +ͽ V teach|,police| +ͽ N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +Ϳ N fact|,endeavour| + V tired|ƣ + N human|,industrial| +µ V endeavour| +˲ V lavish|˷ +ģ N human|,desired| + V upset| +ʦ V SayHello|ʺ,military| +ʦ V use|,military| + V wounded| + N affairs|,#engage| + N payment| +ַ V farewell| +ݽ V engage|,rest|Ϣ + N human|,mass| + V engage| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + ADJ aValue|ֵ,quality|,durable|,desired| + N facilities|ʩ,space|ռ,@foster|,#livestock| +β ADJ aValue|ֵ,ability|,withstand|ס,desired| +β ADJ aValue|ֵ,circumstances|,steady|,desired| +η N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| +ι ADJ aValue|ֵ,circumstances|,steady|,desired| +ι ADJ aValue|ֵ,quality|,durable|,desired| +μ V remember|ǵ +ο ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ο ADJ aValue|ֵ,quality|,durable|,desired| + ADV aValue|ֵ,behavior|ֹ,steady|,desired| + N method|,undesired|ݬ,*deceive|ƭ + N tool|þ,space|ռ,@detain|ס,#animal| +ɧ N text|,*protest| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,age|,aged| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,tough|,undesired|ݬ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,aged| + N place|ط,country|,ProperName|ר,(Laos|) +ϰʽ N human|,able|,desired| +ϰ׸ɶ N drinks|Ʒ,$addict|Ⱥ +ϰ N human|,ordinary| +ϰ N human|,*employ|,commercial| +ϰ N human|,female|Ů,*employ|,commercial| +ϰ N human|,family| +ϱ N fund|ʽ +ϲ N human|,male| +ϲ N human|,rich|,desired| +ϳ N house|,#animal|,#alive| +ϳ N place|ط,crime| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ϴŮ N human|,female|Ů,^GetMarried|,aged| +ϴ ADJ aValue|ֵ,age|,aged| +ϴ ADV aValue|ֵ,degree|̶,very| +ϴ N human|,*drive|Ԧ,#ship| +ϴ N human|,family| +ϴ N human|,strong|ǿ,male| +ϴ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ϴ N human|,aged|,female|Ů +ϴ N human|,female|Ů +ϴү N human|,aged|,male| +ϴү N human|,male| +ϵ׳ ADJ aValue|ֵ,physique|,strong|ǿ,#aged|,desired| +ϵ N human|,adult| +ϵ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +ϸ N human|,family|,male|,aged| +Ϲ N human|,family|,male| +Ϲ N human|,aged|,male| +Ϲ N human|,family|,male| +ϹŶ N human|,undesired|ݬ,stubborn| +ϹŶ N implement|,generic|ͳ +Ϲ N regulation| +Ϻ N human|,aged|,male| +Ϻ N human|,indifferent|Į +Ϻ N beast|,aged| +Ϻ N human|,sly|,undesired|ݬ +ϻ N beast| +ϻƨ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ϻǯ N tool|þ,*hold| +ϻ N disease|,#look|,#aged|,#eye| +ϻ V decline|˥ +ϻ N expression| +ϼ N place|ط,@ComeToWorld| +ϼ N part|,%AnimalHuman|,skin|Ƥ,#disease| +Ͻ N human|,desired|,able| +Ͻ N human| +Ͻ N human|,able|,desired| +Ͼ N phenomena|,#aged| +Ͼ N drinks|Ʒ,$addict|Ⱥ + N human|,mass| +ʵʵ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +ݺ V weep| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,aged|,mass| + N tree| + ADJ aValue|ֵ,#age|,aged| +· N facilities|ʩ,route|· + N human|,#occupation|ְλ,female|Ů,employee|Ա +ʶ; ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,age|,aged| +ı ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,family|,female|Ů,aged| + ADJ aValue|ֵ,age|,aged| +겡ѧ N knowledge|֪ʶ,#aged|,medical|ҽ +겡ѧ N human|,*cure|ҽ,medical|ҽ + N human|,aged| +ţƳ ADJ aValue|ֵ,speed|ٶ,slow| +ũ N human|,agricultural|ũ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,able|,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,aged|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,weak|,undesired|ݬ +ǰ N human|,family|,aged| + N human|,family| + N human|,family|,mass| + N place|ط,(China|й) + N human|,aged| + N human|,family|,aged| +˼ N human|,aged| +˼ N human|,family| + N celestial| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N human| + ADJ aValue|ֵ,age|,aged|,young| +ٱ N place|ط,undesired|ݬ +̸ N text|,boring|,undesired|ݬ +̸ N text|,ordinary| +ʦ N human|,*teach|,education| +ʦ N human|,able|,industrial| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted| +ʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʽ N attribute|,kind|,old|,&artifact|˹ + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,desired|,able| + N beast| +̫ N human|,aged|,female|Ů +̫̫ N human|,aged|,female|Ů +̫ү N human|,aged|,male| +̬ ADJ aValue|ֵ,age|,aged|,undesired|ݬ +̬ ADJ aValue|ֵ,bearing|̬,aged|,undesired|ݬ + N humanized| +ү N humanized| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,aged|,male| +ͷ N human|,undesired|ݬ,stubborn| + N human|,#space|ռ,foreign| + N human|,undesired|ݬ,unable|ӹ + N human|,aged|,male| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Laos|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N human|,#reside|ס,village| +С N human|,family|,mass| +С N human|,mass| + N human|,family|,male| + N human|,male| +߳ŭ V angry| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ү N human| +ү N human|,family|,male| +ү N human|,undesired|ݬ,official| +үү N human|,aged|,male| +үү N human|,family|,male| +ү N human|,family|,male| +ү N human|,male| +һ N human|,aged| +һ ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ + N human|,sly|,undesired|ݬ + ADJ aValue|ֵ,age|,aged|,young| + ADJ aValue|ֵ,ability|,able|,desired| +ʸ N human|,desired|,able| + N human|,family|,male| + N human|,military|,past| + N human|,official|,military| + N human|,past| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird| + N human|,adult| + N human|,adult|,undesired|ݬ + N human|,aged|,female|Ů + N human|,family|,female|Ů +ү N human|,family|,male| + N food|ʳƷ + V cook| + V press|ѹ +ӱ N food|ʳƷ + N tool|þ,*AlterForm|״,#level|ƽ + N tool|þ,*fasten|˩,industrial| +ӡ N mark|־ +ӡ V record|¼ + ADJ aValue|ֵ,dampness|ʪ,waterlogging| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V carve| + V force|ǿ + V tighten|ս +ձ V force|ǿ +ս V tighten|ս + V force|ǿ + V rob| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + V laugh|Ц + N music| + V willing|Ը +ִ˲ƣ V FondOf|ϲ +ֶ N community|,#music| +ֹ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ֹ N attribute|,behavior|ֹ,optimistic|ֹ,&human|,organization|֯ +ֹ N human|,optimistic|ֹ +ֺǺ V joyful|ϲ + N publications|鿯,@record|¼,#music| + N MusicTool| + N music| +Ȥ N emotion|,joyful|ϲ,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N fact|,desired|,#joyful|ϲ +̳ N community|,#music| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + N place|ط,happy|,#lucky| + N community|,#music| + N shows| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V willing|Ը + N sound|,#music| +԰ N place|ط,happy|,#lucky| + N part|,%music| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N thunder| + N weapon| +״ N facilities|ʩ,*check| +״Ա N human|,military| +״վ N facilities|ʩ,*check| +״򲻶 ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +״򲻶 ADJ aValue|ֵ,will|־,strong|ǿ,desired| +׵ N thunder| +׶ ADJ aValue|ֵ,SoundVolume|,loud| +׹ N humanized|,#thunder| +׹ N weapon| +׻ V damage|,agent=thunder| +׿δ N place|ط,capital|,ProperName|ר,(Iceland|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V WeatherBad| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound|,#thunder| +ͬ V BeSimilar| + N RainSnow|ѩ,#thunder| + N RainSnow|ѩ,#thunder| + N attribute|,strength|,strong|ǿ,desired|,&physical| + N emotion|,angry|,undesired|ݬ + N thunder| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N metal| + N part|,%FlowerGrass|,embryo| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V endeavour| + V gather|ɼ + V pile|ѷ + V tired|ƣ +۴ ADV aValue|ֵ,frequency|Ƶ,often| +ۻ V gather|ɼ +ۼ V relate|й +ۼ V AmountTo|ܼ +ۼ N quantity|,amount|,$AmountTo|ܼ,&physical| +ۼΪ V AmountTo|ܼ +ۼ ADJ aValue|ֵ,kind|,ordinary| +۽̲ ADJ refuse|,content=amend| +۽ V BecomeMore| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V tired|ƣ +¾ ADJ aValue|ֵ,duration|,TimeLong| +׸ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ + V build| + N SportTool|˶ + V beat| +̨ N facilities|ʩ,space|ռ,@compete| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,bone| +߹ N part|,%AnimalHuman|,bone| +߼伡 N part|,%AnimalHuman|,flesh| +Ĥ N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + V CompareTo| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ʪԹؽ N disease| + V BeSimilar| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| + V BeSimilar| +ͬ V BeSimilar| + V deduce| + N celestial| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +ѧ N knowledge|֪ʶ + N part|,%AnimalHuman|,liquid|Һ + N trace|,#weep| +Ứ N part|,%AnimalHuman|,liquid|Һ,#eye| +˶ N human|,*weep| + V weep| +ˮ N part|,%AnimalHuman|,liquid|Һ + V weep| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,#eye| +Һ N part|,%AnimalHuman|,liquid|Һ +ӯӯ V weep| + N part|,%AnimalHuman|,liquid|Һ + N part|,%inanimate|,edge| + N image|ͼ,angular| + N part|,%inanimate|,edge| +⾵ N tool|þ + N image|ͼ,cubic| +׶̨ N image|ͼ,cubic| + N part|,%inanimate|,edge| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר + V cool| + V perception|֪,content=cold| + N phenomena|,undesired|ݬ,$IllTreat| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| +䲻 ADJ aValue|ֵ,behavior|ֹ,sudden| +䲼 N material|,?clothing| + V store|,#cold| +䳰ȷ V satirize| +䴲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,#waters|ˮ +䵭 V IllTreat| +䵭 ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +䵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +䵭 V despise| + N food|ʳƷ +䶳 V cool| + N information|Ϣ,wrong|,undesired|ݬ + N wind|,cold| + V cure|ҽ,means=cool|,medical|ҽ +乬 N house|,undesired|ݬ + N lights| +亸 V fasten|˩,industrial| +亹 N part|,%AnimalHuman|,waste|,#hot|,liquid|Һ + N artifact|˹,commercial|,generic|ͳ +侲 V calm| + ADJ aValue|ֵ,behavior|ֹ,strict| + N gas|,cold| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N facilities|ʩ,space|ռ,@store| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V IllTreat| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +í V fasten|˩,industrial| + ADJ aValue|ֵ,kind|,queer| + N affairs|,undesired|ݬ + N human|,*win|ʤ,sudden| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V cool| +ů N attribute|,circumstances|,&human| +ů N attribute|,temperature|¶,&weather| + N food|ʳƷ +Ƨ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N facilities|ʩ,*cool| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ȴ V cool| +ȴ N tool|þ,cool| +ɼ N tree| +ʳ N edible|ʳ,cold| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,cold| +Ц V LaughAt|Ц +Ѫ N AnimalHuman|,generic|ͳ +Ѫ N human|,fierce| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + N text|,*satirize|,*IllTreat|,undesired|ݬ + N phenomena|,undesired|ݬ,#IllTreat| + N drinks|Ʒ,cold| + N phenomena|,undesired|ݬ,#IllTreat| + V press|ѹ,industrial| +ս V fight| + ADJ aValue|ֵ,temperature|¶,cold| + CLAS unit|λ,&money|,$earn|׬ + CLAS unit|λ,&money|,(China|й) +嶨 V decide| + CLAS unit|λ,&length| + V amend| + N fruit|ˮ + N drinks|Ʒ + N tree| +԰ N community|,#music|,entertainment| + N fruit|ˮ + V engage|,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + V engage|,agricultural|ũ +ͷ N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%tool|þ,*planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Lebanon|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lebanon|) + N place|ط,country|,ProperName|ר,(Asia|) +۰ N money|,(Lebanon|) + N human|,(Lebanon|) + N human|,ordinary|,mass| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + N community|,ProperName|ר,(China|й) + N fittings|,%building| + N fittings|,%building| + N beast| +è N beast| + V from| + V leave|뿪 + V farewell| + V leave|뿪 +벻 V BeUnable|,content=leave|뿪 + V leave|뿪,LocationIni=community| + N part|,%machine| + V separate| +鸾Ů N human|,female|Ů,*separate|,#GetMarried| + V leave|뿪,LocationIni=family| + V separate| +뾭ѵ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +뾭ѵ V betray| +뾳 V leave|뿪,LocationIni=place|ط +뿪 V leave|뿪 +˻ N human|,*separate|,#GetMarried| + V FitNot| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ȥ V leave|뿪 +Ⱥ V MakeLiving|ı,manner=lonely| + V cease|ͣ,content=undertake| +ɢ ADJ aValue|ֵ,attachment| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ + ADJ aValue|ֵ,content|,unattached|ɢ + V cease|ͣ,content=undertake| + ADJ aValue|ֵ,performance|,#software| + V leave|뿪,LocationIni=family| + V FitNot| + ADJ aValue|ֵ,property| +ı N tool|þ,*separate| +Ļ N tool|þ,*separate| + N attribute|,strength|,#separate|,&thing| + V cease|ͣ,content=undertake| + V separate| +ְ V cease|ͣ,content=undertake| + N part|,%physical| + V PutInOrder| + V ShowInterest| + V handle| + N knowledge|֪ʶ + V manage| + N reason| + V manage|,patient=wealth|Ǯ,commercial| + V ShowInterest| + AUX {modality|} + V MakeUp|ױ,scope=hair|ë +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#hair|ë + AUX {modality|} + N knowledge|֪ʶ + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| + N knowledge|֪ʶ + V PayAttention|ע + V ShowInterest| + V understand| + V transport| + V understand| + N attribute|,ability|,#understand|,&AnimalHuman| + N knowledge|֪ʶ + N part|,%InstitutePlace|,education| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N method|,*cure|ҽ +ʦ N method|,*cure|ҽ + V debate| + N knowledge|֪ʶ +ۼ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment| + N thinking|˼ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N human|,*manage| +³ N human|,*manage| +¹ N institution|,*manage|,(UN|Ϲ) +» N institution|,*manage| +˳ V PutInOrder| +Ȼ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N aspiration|Ը,expect| +뻯 ADJ aValue|ֵ,GoodBad|û,good|,desired| +뻯 ADJ aValue|ֵ,content| + N human| + ADJ aValue|ֵ,property| + N attribute|,ability|,control|,&human| +ʶ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧʿ N human|,literature| +Ӧ AUX {modality|} + N reason| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֱ׳ V FeelNoQualms| + N attribute|,ability|,control|,&human| + N character|,surname|,human|,ProperName|ר + N fruit|ˮ +ҽ V replace| +ǻ N human|,official|,politics|,ProperName|ר,(China|й) + N fruit|ˮ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| + N part|,%inanimate|,generic|ͳ + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + CLAS unit|λ,&length| +ﰺ N place|ط,city|,ProperName|ר,(France|) + N location|λ,internal| + N attribute|,distance|,AlterLocation|ռλ + N process| +̱ N mark|־ + N part|,%tool|þ,viscera|,#LandVehicle| +ﺣ N waters|ˮ,ProperName|ר +Y N part|,%AnimalHuman|,#body| + N money|,(Italy|) + N money|,(San Marino|ʥŵ) + CLAS unit|λ,&money|,(Italy|) + N money|,(Swaziland|˹ʿ) + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,location|λ,internal| + N location|λ,internal| +Ū N facilities|ʩ,space|ռ,@reside|ס + N human|,able|,desired| +˹ N place|ط,capital|,ProperName|ר,(Portugal|) +ͨ V betray| +ͷ ADJ aValue|ֵ,location|λ,internal| +ͷ N location|λ,internal| + N room| + N part|,%MusicTool| +Ƕ N money|,(Iran|) +Ӧ V help| +Լ¬ N place|ط,city|,ProperName|ר,(Brazil|) + N fish| + N fish| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N fact| + N tool|þ,$GiveAsGift| + N fact|,religion|ڽ + N time|ʱ,week| + N time|ʱ,week|,day| +ݶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N InstitutePlace|,religion|ڽ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| +˾ N part|,%institution|,*manage|,#diplomatic|⽻ + N clothing| + N tool|þ,*recreation|,*congratulate|ף + N regulation| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N money|,$GiveAsGift| +ñ N clothing|,#head|ͷ +ò N attribute|,behavior|ֹ,gracious|,desired|,&human| + N tool|þ,*salute|¾,*congratulate|ף +Ʒ N tool|þ,$GiveAsGift| + V refuse|,manner=modest|ǫ + V associate|,manner=equal| + N attribute|,behavior|ֹ,gracious|,desired|,&human| + N room| + N tool|þ,$GiveAsGift| + N fact| + N fact|,WellTreat|ƴ + V praise|佱 + N character|,(China|й) + N character|,(China|й) +֦ N fruit|ˮ +֦ N tree| + N human|,#occupation|ְλ,official| + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,brown| + N fruit|ˮ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,beautiful|,desired| + N attribute|,prettiness|,beautiful|,&human| + ADJ aValue|ֵ,behavior|ֹ,strict| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,SoundVolume|,strict| +нԼ V economize|ʡ + V mobilize| +ͼ V endeavour| + N stone|ʯ,material| +ʯ N stone|ʯ,material| + N stone|ʯ + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,time|ʱ,past|,all|ȫ + V undergo| + N process| + ADJ aValue|ֵ,time|ʱ,past| + N time|ʱ,past| + N system|ƶ,*calculate|,#time|ʱ + ADJ aValue|ֵ,time|ʱ,past| + V undergo| + V undergo| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + N time|ʱ,year|,past| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V undertake| +ʱ V spend| +ʷ N fact|,#time|ʱ +ʷ N InstitutePlace|,@display|չʾ,#past| +ʷ N standpoint| +ʷ N shows| +ʷʹ N affairs|,#dispatch|Dz +ʷΨ N knowledge|֪ʶ +ʷС˵ N publications|鿯 +ʷ ADJ aValue|ֵ,value|ֵ,important| +ʷѧ N human|,#knowledge|֪ʶ + V quote| + V undergo|,content=dangerous|Σ + ADJ aValue|ֵ,form|״,sharp| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + V benefit| + N character|,surname|,human|,ProperName|ר + N fund|ʽ,$earn|׬,commercial| + N money|,(Sierra Leone|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Liberia|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Liberia|) +Ԫ N money|,(Liberia|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Libya|) + N place|ط,country|,ProperName|ר,(Africa|) +ǵɶ N money|,(Libya|) + N attribute|,ProsCons|,&event|¼ +ά N place|ط,capital|,ProperName|ר,(Gabon|) +˰ V alter|ı,StateIni=payment|,StateFin=expenditure| + V benefit|,patient=country| + V benefit|,patient=country| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N attribute|,ProsCons|,&event|¼ + V benefit|,patient=self| + N thinking|˼,benefit|,#self| + N weapon|,*stab| +ǻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +¡ N place|ط,capital|,ProperName|ר,(Malawi|) + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| + N place|ط,capital|,ProperName|ר,(Peru|³) + V benefit|,patient=community| + V urge|ʹ,ResultEvent=excrete|й,medical|ҽ + N medicine|ҩ,*urge|ʹ,#excrete|й + N implement|,good| + N weapon|,sharp| +Ǯ N fund|ʽ,$earn|׬,commercial| + N wealth|Ǯ,desired|,$earn|׬ + V SetAside|,patient=wealth|Ǯ,commercial| + N quantity|,rate|,&payment|,commercial| +˰ N wealth|Ǯ,commercial| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V finish| +Ϣ N wealth|Ǯ,desired|,$earn|׬ +ŵ N place|ط,capital|,ProperName|ר,(Saudi Arabia|ɳذ) + N attribute|,effect|Ч,&act|ж +մ N payment|,$gather|ɼ + V use| + N quantity|,rate|,&use| + V entice| + V benefit| +Ѭ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N example|ʵ + N fact|,discuss| + N time|ʱ,@rest|Ϣ + ADV {supplement|ݽ} + N attribute|,kind|,special|,&event|¼ + ADJ aValue|ֵ,kind|,ordinary| +й ADJ aValue|ֵ,kind|,ordinary| +֤ N example|ʵ + N example|ʵ + N character|,(China|й) + N disease| + N disease| + V CauseToBe|ʹ֮ + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,posture|,straight|ֱ + V compile|༭ + V establish| + V put|,result=stand|վ + V stand|վ + V record|¼ + V record|¼,police| + N standpoint| + N time|ʱ,day|,spring| + ADV aValue|ֵ,location|λ,special| + V CeaseSelfMove|ֹ + N time|ʱ,day|,winter| + ADJ aValue|ֵ,performance|,*forming|γ,#law|ɷ,politics| + V forming|γ,patient=law|ɷ,politics| + N institution|,*forming|γ,#law|ɷ,politics| +Ȩ N rights|Ȩ,*forming|γ,#law|ɷ,politics| + N human|,*forming|γ,#law|ɷ + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| + CLAS unit|λ,&bulk| + ADJ aValue|ֵ,form|״,cubic| +ͼӰ V succeed|ɹ +ͼӰ ADJ succeed|ɹ + V establish|,PatientProduct=result|,desired| + N furniture|Ҿ,cubic|,@put| + V establish|,patient=country|,politics| +ͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| + V establish|,content=account|,commercial| + V record|¼,content=family| + ADJ aValue|ֵ,duration|,TimeShort| + N attribute|,form|״,cubic|,&building| + N facilities|ʩ,route|· + ADV aValue|ֵ,duration|,TimeShort| + V explain|˵,content=standpoint| + N standpoint| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ,day|,autumn| +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʽ ADJ aValue|ֵ,posture|,straight|ֱ + V swear| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Lithuania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,form|״,cubic| + N image|ͼ,cubic| +彻 N attribute|,form|״,cubic|,&building| + N sound| + N time|ʱ,day|,summer| + V establish|,patient=law|ɷ + N system|ƶ,official| + V ExpressAgreement|ʾͬ + V create|,PatientProduct=new| + V compile|༭ +ҵ V start|ʼ,content=affairs| + V decide| + N thinking|˼ + V stand|վ +־ V decide| + N artifact|˹,#image|ͼ,literature| + N part|,%machine| + N part|,%building|,bone| +׶֮ N place|ط,small|С + V BaseOn| + V situated| + N standpoint| + CLAS NounUnit|,&inanimate| + N shape| + N material|,*feed|ι,#crop|ׯ +ѡ V choose|ѡ +ѩ N RainSnow|ѩ +״ ADJ aValue|ֵ,form|״,round|Բ + N part|,%physical| + N part|,%physical| + V fall| + N material|,*build| +ˮ N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + V BeMember| + N attribute|,kind|,&character|,&symbol| + V BeMember| + V BeMember| + N attribute|,ability|,&physical| + N attribute|,strength|,&entity|ʵ + N attribute|,strength|,&physical| + V endeavour| + V BeUnable| + N space|ռ,#strength| + V fulfil|ʵ,manner=endeavour| + V defeat|սʤ,manner=endeavour| + N attribute|,intensity|ǿ,&event|¼ + V obstruct|ֹ + N attribute|,strength|,&physical| + V defeat|սʤ,manner=endeavour| + N attribute|,strength|,&entity|ʵ + V defeat|սʤ + N attribute|,strength|,&human| + N attribute|,strength|,&physical| + V endeavour| +ʿ N human|,strong|ǿ +ܼ V BeAble|ܹ +ͼ V endeavour| + V amend|,content=wrong| + N livestock| +ѧ N knowledge|֪ʶ + V debate| + V seek|ıȡ + V endorse|ӵ + N artifact|˹,good|,desired| + CLAS unit|λ,&length| + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V aValue|ֵ,content|,unattached|ɢ,#speak|˵,undesired|ݬ + N human|,mass| + N human|,mass| + N human|,mass| + V ally| + N text| + V engage|,manner=together|ͬ + N community| +¹ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N institution|,#police|,ProperName|ר,politics|,(US|) + N institution|,#place|ط,politics| + N system|ƶ +ӵ N human| + V disseminate|,manner=ally| + N system|ƶ +а N system|ƶ + N part|,%institution|,politics|,(institution|=UN|Ϲ) + N community|,compete|,sport| + N part|,%army|,#sky| + N fact|,defend| + V ally| +Ϲ N institution|,ProperName|ר,#country| +Ϲ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲѧ N part|,%institution|,education|,(institution|=UN|Ϲ) +Ϲͯ N part|,%institution|,#young|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲҵչ֯ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲ滮 N part|,%institution|,#earth|,(institution|=UN|Ϲ) +Ϲ̿֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +ϹѧĻ֯ N part|,%institution|,politics|,#education|,#knowledge|֪ʶ,ProperName|ר,(institution|=UN|Ϲ) +Ϲƻ N part|,%institution|,#industrial|,(institution|=UN|Ϲ) +Ϲʳũҵ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ϲó׺ͷչ N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +Ϲ߼רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲ˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +Ϲر N part|,%institution|,#fund|ʽ,(institution|=UN|Ϲ) +Ϲ N law|ɷ,ProperName|ר,(UN|Ϲ) +Ϲѵо N part|,%institution|,politics|,(institution|=UN|Ϲ) +ϻ N community| +ո N LandVehicle|,*collect|,agricultural|ũ + N community| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + V recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,recreation| + N fact|,discuss| + V relate|й,partner=computer| + V connect| + V ally| + V connect| + N army| + V associate| +紦 N institution|,diplomatic|⽻ +Ա N human|,*transport|,#information|Ϣ +վ N institution|,diplomatic|⽻ + V ally| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + N fact|,compete|,sport| + ADJ aValue|ֵ,behavior|ֹ,together|ͬ + V connect| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + V connect| +ϯ N fact|,discuss| +ϵ V associate| +ϵ N attribute|,relatedness|,&entity|ʵ,&aValue|ֵ,&attribute| +ϵ N human|,*transport|,#information|Ϣ + V connect|,#mental| + V sell|,manner=together|ͬ + V associate| + N fact|,recreation| + V ally|,means=GetMarried| +Ӫ N fact|,together|ͬ,commercial| +Ӫҵ N InstitutePlace|,commercial|,industrial| + V transport|,manner=ally| +չ N fact|,display|չʾ,together|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N FlowerGrass| + N FlowerGrass| +ź N FlowerGrass| + N part|,%FlowerGrass|,embryo| +̨ N furniture|Ҿ,#humanized|,religion|ڽ + N part|,%FlowerGrass|,$eat|,embryo| + N furniture|Ҿ,#humanized|,religion|ڽ + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N character|,surname|,human|,ProperName|ר + V connect| + V contain| + N part|,%army| + ADV {emphasis|ǿ} + N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,property|,$relate|й + N part|,%army|,military| + V firing| + N symbol|,#quantity|,#DoSum| + N part|,%implement| + N facilities|ʩ,#waters|ˮ + N attribute|,status|,desired|,#compete|,#win|ʤ,#reward|,sport|,&human| + ADJ connect| + V connect| + ADJ attribute|,similarity|ͬ,alike|,&entity|ʵ + V destroy| + N tool|þ,$fasten|˩ + N publications|鿯,#image|ͼ + V connect| + N thing|,*connect| +Ӵ N part|,%language| +Ӵ ADJ part|,%language| + N thing|,*connect| + V connect| + N human|,family|,mass| + N clothing|,#leg| + V relate|й + ADV aValue|ֵ,frequency|Ƶ,often| +æ ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,continuous| +಻ ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| +Ƥ ADJ aValue|ֵ,kind| +ƪ ADJ aValue|ֵ,range|,all|ȫ +ƪ ADJ qValue|ֵ,amount|,many| +ƪ ADJ aValue|ֵ,content|,trivial|,many|,undesired|ݬ +Ƭ V connect| + N medicine|ҩ,(China|й) + V undertake|,manner=GoOn| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,frequency|Ƶ,often| + V connect| + N InstitutePlace|,*sell|,@buy|,commercial| +Ӧ N fact|,respond|Ӧ,continuous| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +Ӥ N human|,young|,*ill|̬,medical|ҽ +Ӥ N human|,young|,*ill|̬,medical|ҽ + ADJ aValue|ֵ,area|,wide| +ͨ V connect| +ͬ PREP {partner} + V connect| + ADJ aValue|ֵ,property|,$connect| +д V write|д,manner=connect| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ aValue|ֵ,duration|,TimeLong| + N shows| + N attribute|,behavior|ֹ,continuous|,&event|¼ +ѡ V undertake|,manner=GoOn| +ҹ N time|ʱ,day|,night| +ȹ N clothing| +ȹ N clothing|,#leg| + V use|,manner=GoOn| +Ƹ N place|ط,city|,ProperName|ר,(China|й) + V publish| +ս N part|,%army| +սԱ V defeated| +ת V endeavour|,duration=morning|,duration=night| + ADJ aValue|ֵ,behavior|ֹ,continuous| +׺ V connect| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ɿ N clothing|,#leg| +޺ N part|,%human|,hair|ë + N tool|þ,*collect|,#crop|ׯ + N tool|þ,*collect|,#crop|ׯ + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,price|۸,cheap|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,price|۸,cheap|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N institution|,politics|,honest| + V establish|,PatientProduct=institution|,politics|,honest| + V pity| + V like|ϧ + V pity| +ϧ V pity| + N character|,(China|й) + N water|ˮ + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,mark|־,commercial| + N material|,?tool|þ +Ļ N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ +Ӳ N material|,?tool|þ + V levy| + V restrain|ֹ + V levy|,possession=wealth|Ǯ + V hide| + N attribute|,countenance|,&AnimalHuman| + N part|,%AnimalHuman|,skin|Ƥ + N part|,%physical|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + V excited| +첱Ӵ V angry| + N part|,%AnimalHuman|,skin|Ƥ + N attribute|,reputation|,glorious|,desired|,&human| + N part|,%AnimalHuman|,skin|Ƥ +̶ N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N tool|þ,cubic|,@put|,*wash|ϴ + N tool|þ,*perform|,#shows| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + N tool|þ,linear|,*fasten|˩ + N part|,%machine| +ù N medicine|ҩ + N SportTool|˶ + N bacteria|΢ + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + V FondOf|ϲ + V love| + V FondOf|ϲ + N emotion|,love| + N human|,friend|,*love|,desired| + V burn|,industrial| + V refine|,industrial| + V produce|,PatientProduct=medicine|ҩ + V refine|,patient=metal|,industrial| +ֳ N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V burn|,industrial| + N drinks|Ʒ + V refine|,patient=metal|,industrial| + N InstitutePlace|,@produce|,#metal|,factory|,industrial| + V produce|,industrial| + V produce|,material|,#edible|ʳ +ͳ N InstitutePlace|,@produce|,factory|,industrial| + V refine|,industrial| + ADJ aValue|ֵ,ability|,able|,desired| + V drill|ϰ + V drill|ϰ,military| + N material|,?clothing| + V drill|ϰ,military| + ADJ aValue|ֵ,ability|,able|,desired| + V exercise| + V exercise|,obtain|õ +ȵ N bird| +ϰ V drill|ϰ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@store|,#material|,#crop|ׯ + N food|ʳƷ,military| + N InstitutePlace|,*sell|,@buy|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N facilities|ʩ,space|ռ,@put|,@store| + N material|,?edible|ʳ,?clothing| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ũ֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +Ʊ N coupon|Ʊ֤,#edible|ʳ +ʳ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ʳ N crop|ׯ,?edible|ʳ + N material|,?edible|ʳ +վ N facilities|ʩ,provide|,#material|,#edible|ʳ + N food|ʳƷ,military| + ADJ aValue|ֵ,temperature|¶,chilly| + V change|,StateFin=chilly| + V cool| + V disheartened| + V perception|֪,content=cold| + V cook| + ADJ aValue|ֵ,temperature|¶,chilly| +˿ ADJ aValue|ֵ,temperature|¶,chilly|,desired| + N food|ʳƷ + N food|ʳƷ + N wind|,chilly| + ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ñ N clothing|,#head|ͷ + N food|ʳƷ + N house|,@cool| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˮ N water|ˮ +ˮ N water|ˮ,cold| +˿˿ ADJ aValue|ֵ,temperature|¶,chilly| +̨ N part|,%house|,space|ռ +ͤ N facilities|ʩ,space|ռ +ϯ N tool|þ,@LieDown| +Ь N clothing|,#foot| + N attribute|,temperature|¶,chilly|,&space|ռ + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,#waters|ˮ + N part|,%building|,bone| + N part|,%inanimate|,%space|ռ,edge| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N plans|滮,good| + N medicine|ҩ,good| + N plans|滮,good| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N time|ʱ,important|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ʦ N human|,*teach|,good| +̬ V BeGood|̬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N time|ʱ,night|,happy| + N emotion| +ķ V understand|,content=crime| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N disease| +ҩ N medicine|ҩ,good| +Ե N attribute|,relatedness|,intimate|,#GetMarried|,&human| +֪ N experience| + ADJ aValue|ֵ,kind|,superior| +ݬ ADJ aValue|ֵ,content|,mixed| + NUM qValue|ֵ,amount|,cardinal| + ADJ qValue|ֵ,amount|,double| + ADJ qValue|ֵ,amount|,some|Щ + CLAS unit|λ,&weight| + N place|ط,#waters|ˮ +ܾ V defeated| + N direction|,mass| + N part|,%entity|ʵ,mass|,aspect| + N part|,%physical|,edge| + N part|,%physical|,head|ͷ,tail|β + N mental|,physical| + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) + N fact|,differ|ͬ + N attribute|,contrariness|,&entity|ʵ + N part|,%earth|,head|ͷ,tail|β + N part|,%electricity|,head|ͷ,tail|β +ֻ V ize|̬ +Ź N tool|þ,*measure| + N human|,family|,mass| + N fact|,differ|ͬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,fake|α + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V embarrassed|Ϊ +һ ADJ aValue|ֵ,frequency|Ƶ + N part|,%physical|,edge| + ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ܲ N army|,*fight|,#land|½,#waters|ˮ,military| +ܶ N animal|,*alive|,#land|½,#waters|ˮ +ս N fact|,fight|,#land|½,#waters|ˮ,military| +ȫ ADJ aValue|ֵ,range|,all|ȫ,desired| +ȫ V fulfil|ʵ +Ϊ V lucky| + N method| +ͷ N part|,%entity|ʵ,aspect| +ͷ N part|,%entity|ʵ,mass|,aspect| + N part|,%entity|ʵ,mass|,aspect| +Ը V willing|Ը,manner=EachOther|໥ + N part|,%physical|,head|ͷ,tail|β + N room| +С޲ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N attribute|,sex|Ա,male|,female|Ů,&animate| +Թϵ N attribute|,relatedness|,#mating|,&animate| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + ADJ aValue|ֵ,ability| + N part|,%human|,mass|,aspect| + ADJ qValue|ֵ,amount|,double| + N attribute|,property|,double|,&entity|ʵ + N part|,%human|,head|ͷ +ް߰ ADJ aValue|ֵ,age|,aged| +޲Բ ADJ aValue|ֵ,age|,aged| + CLAS NounUnit|,&LandVehicle| + CLAS unit|λ,&LandVehicle| + V measure| + N quantity|,amount|,&entity|ʵ + N quantity|,amount|,&inanimate| + N tool|þ,*measure| + V QuantityChange| + N fact|,change| + N tool|þ,*measure| + N part|,%language| + N attribute|,measurement|,&physical| + V ize|̬ + N quantity|,amount|,&physical| + N tool|þ,*measure| + N tool|þ,*measure| + V do|,manner=proper| + V do|,manner=proper| +ƿ N tool|þ,*measure| +Ϊ V do|,manner=proper| + ADJ aValue|ֵ,kind|,special| + V do|,manner=proper| + N measure|,content=temperature|¶ + V estimate|,content=punish|,police| +Ѫѹ N measure|,content=strength| +ֵ N quantity|,amount|,&physical| + N part|,%physical| + V dry| + V dry| +ɹ V dry| + ADJ aValue|ֵ,brightness|,bright| + N attribute|,quality|,strong|ǿ,desired|,&thing| + N attribute|,brightness|,&physical| + N lights| + N lights| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V appear| + V forgive|ԭ + V understand| +½ V forgive|ԭ +½ V understand| + V incite|ָʹ + V lift| + V spray| + V tease|ȡ +ò V incite|ָʹ +ò V tease|ȡ +ÿ V lift| + V lift| + V talk|̸ + V talk|̸ + V talk|̸ + V talk|̸ +ο V AtEase| +Ż N weapon|,aircraft|,military| + N human|,employee|Ա + N human|,friend| + V cure|ҽ +Ƴ N process|,#cure|ҽ,#disease| +Ʒ N method|,*cure|ҽ,#disease| +Ч N attribute|,effect|Ч,&cure|ҽ,medical|ҽ + V maintain| +Ժ N InstitutePlace|,@maintain|,medical|ҽ + V burn| +ԭ V burn|,patient=land|½ +ԭ֮ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,few| +޼ ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,distance|,far|Զ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ɶ N place|ط,ProperName|ר,(China|й) +ɶ뵺 N land|½,#waters|ˮ,ProperName|ר,(China|й) +ɺ N waters|ˮ,linear|,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) +Զ ADJ aValue|ֵ,distance|,far|Զ +ʲ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʲ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ʵ V decline|˥ + V finish| + V know|֪ + STRU {MaChinese|} +˲ ADJ aValue|ֵ,circumstances|,urgent| +˲ ADJ aValue|ֵ,kind|,special| +˲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +˲ ADJ aValue|ֵ,kind|,special| +˵ N expression|,*surprise| +˽ V finish| +˽ V fulfil|ʵ +˽ V know|֪ +˽⵽ V know|֪ +˾ V finish| +˾ N process|,ending|ĩ + V know|֪ +ȴ V fulfil|ʵ +ָ V know|֪ + V finish| + V look| + V MoveItDown| + V defeat|սʤ + V put| +̵ V defeat|սʤ +̻ V damage|,agricultural|ũ + V put| + N tool|þ,police|,*detain|ס,#crime| + N tool|þ,police|,*detain|ס,#crime| + N character|,surname|,human|,ProperName|ר + N attribute|,quality|,&human| + N food|ʳƷ,*feed|ι,#animal| + N material| + V predict|Ԥ +ϵ V predict|Ԥ +ϼ V predict|Ԥ +Ͼ N material|,liquid|Һ,?food|ʳƷ,$drink| + V arrange| + V cook| + N edible|ʳ + V handle| + N tool|þ,generic|ͳ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V predict|Ԥ + N material|,?clothing|,?tool|þ + V PutInOrder| + V include| + V quote| +б N human|,#occupation|ְλ,military| +г N LandVehicle| +г N human|,#occupation|ְλ,official|,#LandVehicle| +гԱ N human|,#occupation|ְλ,employee|Ա,#LandVehicle| +е N FlowerGrass|,?medicine|ҩ +е N land|½,mass| +ж V PutInOrder| +и N money|,(Bulgaria|) +й N place|ط,country|,mass| +о V quote| +п N money|,(Albania|) + N human|,official|,politics|,ProperName|ר,(Russia|˹) +ǿ N place|ط,country|,mass|,past| +ϯ V engage| + N money|,(Romania|) +֧ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N human|,past| + V FormChange|α +ѱ V change| +ѷ N trace|,#FormChange|α +Ѻ N trace|,#FormChange|α +ѻ V FormChange|α +ѽ V FormChange|α +ѿ V FormChange|α +ѿ V FormChange|α +ѿ N location|λ,#OutOfOrder| + N trace|,#FormChange|α +϶ N trace|,#FormChange|α + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ҷ N attribute|,intensity|ǿ,&shiver|,#land|½ +һ N fire|,strong|ǿ +Ҿ N human|,family| +Ҿ N human|,family|,#military| + N celestial|,hot| +ʿ N human|,*die|,desired| + N human|,family|,#die| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N fire| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ӵ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ӽ N result|,undesired|ݬ,#crime| + N livestock|,useless|,undesired|ݬ + N human|,undesired|ݬ + N attribute|,circumstances|,bad|,&human|,&organization|֯ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +Ʒ N artifact|˹,bad|,undesired|ݬ + V catch|׽ס +Բ V catch|׽ס +Թ N livestock|,*catch|׽ס,#beast| +Ի N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +Ի V obtain|õ + N human|,*catch|׽ס,#beast|,agricultural|ũ + V seek|ıȡ,possession=new| +ǹ N weapon|,*firing| +ȡ V catch|׽ס +ȡ V seek|ıȡ + N human|,#occupation|ְλ,*catch|׽ס,#beast|,agricultural|ũ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ɱ V catch|׽ס,kill|ɱ + N human|,#occupation|ְλ,agricultural|ũ,*catch|׽ס,#beast| +ͷ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + N AnimalHuman|,$catch|׽ס + N bird| + N character|,(China|й) +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N affairs|,planting|ֲ,tree|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N community| + N tree| +ֲ N artifact|˹,#tree| +ֲƷ N artifact|˹,#tree| +ֳ N place|ط,@planting|ֲ,#tree| +ִ N place|ط,#tree| +ֵ N land|½,#tree| +ֺ N tree| +ּ N money|,(Malaysia|) +ּ N language|,#country|,ProperName|ר +ֿ N human|,official|,ProperName|ר,(US|) + ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ľ N tree| +ũ N human|,#occupation|ְλ,*planting|ֲ,#tree|,agricultural|ũ + N place|ط,@planting|ֲ,#tree| + N sound|,#tree| + N place|ط,#tree| +Ա N human|,#occupation|ְλ,*manage|,#tree| +ҵ N affairs|,planting|ֲ,tree|,agricultural|ũ +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| +ҵ N institution|,#planting|ֲ,#tree|,ProperName|ר,politics| + N facilities|ʩ,route|· +о N human|,*reside|ס + N tree| + N chemical|ѧ +׷ N material|,*feed|ι,#crop|ׯ +׹ N lights| +׻ N fire| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +֬ N chemical|ѧ + N RainSnow|ѩ,strong|ǿ + N RainSnow|ѩ,strong|ǿ + V BeNear| + ADV aValue|ֵ,time|ʱ,future| + V arrive| + V facing| + PREP {time|ʱ} +ٱ V farewell| +ٲ V labour|ٲ +ٳ ADJ aValue|ֵ,location|λ,special| +ٳ ADJ aValue|ֵ,time|ʱ,special| +ٴ ADJ aValue|ֵ,property|,#cure|ҽ,medical|ҽ +ٴҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ٵ V undergo| +ٵ PREP {time} +ٺ V BeNear|,partner=waters|ˮ +ٺ V BeNear|,partner=waters|ˮ +ٽ V BeNear|,partner=waters|ˮ +ٽ V facing|,partner=route|· +ٽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ٽ V BeNear| +ٿʾ V slack|͵ + ADJ aValue|ֵ,time|ʱ,#facing|,#mouth|,sport| + V arrive|,LocationFin=house| +ġ V imitate|ģ + V labour|ٲ +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ V slack|͵ +ʱ N human|,military| +ʱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʱ N human|,#occupation|ְλ,employee|Ա,TimeShort| +ʱ N attribute|,duration|,TimeShort|,&entity|ʵ +˯ ADJ aValue|ֵ,time|ʱ,#BeNear|,#sleep|˯ + N time|ʱ,@BeNear|,#die| +ͷ V happen| +Σ V BeNear|,partner=die| +Σ ADJ aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V aValue|ֵ,time|ʱ,#BeNear|,#dangerous|Σ +Σ V facing|,partner=dangerous|Σ,manner=^fear| + ADJ aValue|ֵ,time|ʱ,#BeNear|,#leave|뿪 + N place|ط,city|,ProperName|ר,(China|й) +ս ADJ aValue|ֵ,time|ʱ,#BeNear|,#fight| +ĥǹ V slack|͵ + V flee| + ADJ aValue|ֵ,time|ʱ,#BeNear|,partner=die| + ADJ aValue|ֵ,distance|,near| +ڰ N place|ط,country|,*BeNear| +ڴ N place|ط,village|,*BeNear| +ڹ N place|ط,country|,*BeNear| +ڼ N human|,*BeNear|,#reside|ס +ڽ N image|ͼ,angular| +ڽ V BeNear| +ڽ ADJ aValue|ֵ,distance|,near| +ڽ V BeNear| +ڽ N location|λ,near| +ھ N human|,*BeNear|,#reside|ס +ھ N human|,*reside|ס,near| +ھӼ N human|,*BeNear|,#reside|ס + N human|,#reside|ס,near| + N place|ط,#reside|ס + N human|,*reside|ס,near| + N human|,#reside|ס,near| + N part|,%fish|,skin|Ƥ +۴α ADJ qValue|ֵ,amount|,many| +ۼ N part|,%fish|,skin|Ƥ +۾ N part|,%plant|ֲ,body| +Ƭ N part|,%fish|,skin|Ƥ +צ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +צ N part|,%fish|,skin|Ƥ +צ N part|,%thing|,secondary| + V filter| + V spray| +ܰ N part|,%AnimalHuman|,liquid|Һ +ܰͽ N part|,%AnimalHuman|,nerve| +ܰϸ N part|,%animate| +ܲ N disease| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +쾡 ADJ aValue|ֵ,content|,detailed|,desired| +ϴ V wash|ϴ +ԡ V wash|ϴ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,temperature|¶,cold| + V borrow| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ϧ V grudge| + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +Ĺ N human|,miser|,undesired|ݬ + V pick|ʰ + V pick|ʰ,Vgoingon|չ + N character|,(China|й) + N character|,name|,human|,ProperName|ר + N sound| + ADJ aValue|ֵ,quality|,refined|,desired| + N part|,%plant|ֲ,embryo| + N part|,%plant|ֲ,embryo| + N image|ͼ,cubic| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + N inanimate| + NUM qValue|ֵ,amount|,cardinal| + N symbol|,sport| +㲿 N part|,%implement| + N quantity|,amount|,&unit|λ,#temperature|¶ +㹤 N affairs|,industrial| +㹤 N human|,#occupation|ְλ,employee|Ա +㻨Ǯ N money| + N part|,%implement| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + V sell| + N part|,%implement| +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,importance|,secondary| +߰ N inanimate|,secondary| +Ǯ N money| +ɢ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʳ N edible|ʳ + V sell| +۵ N InstitutePlace|,*sell|,@buy|,commercial| +۶ N quantity|,amount|,&sell|,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +ҵ N affairs|,commercial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ inanimate|,secondary| +ͷ ADJ inanimate|,secondary| +ͷ N part|,%physical|,*surplus|ʣ + N quantity|,amount|,&unit|λ,#temperature|¶ + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ǯ N money| + N edible|ʳ + N attribute|,age|,&animate| + N attribute|,duration|,&entity|ʵ + N part|,%plant|ֲ,embryo| + N tool|þ,*MakeSound| + N tool|þ,*MakeSound| + N human|,#occupation|ְλ,entertainment| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,desired| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N beast| + N beast| + N character|,surname|,human|,ProperName|ר + V damage| + V rise| +賿 N time|ʱ,morning| + V punish| + V surpass|ǿ + V surpass|ǿ + V rise| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ű V damage| + V damage| + N FlowerGrass| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N tool|þ,cubic|,@store|,#human|,#die| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| +鳵 N LandVehicle|,*transport|,#human|,#die| +鵤 N medicine|ҩ,good| +鵤ҩ N medicine|ҩ,good| + N emotion| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N lights|,#humanized| + N lights|,queer| + N mental| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + N attribute|,behavior|ֹ,flexible|,&entity|ʵ + N thinking|˼ +һ V own|,possession=thought|ͷ +è N livestock| + ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,behavior|ֹ,clever|,&implement| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N room|,@salute|¾,#die| +ͨ V know|֪,#information|Ϣ,manner=fast| + N attribute|,wisdom|ǻ,clever|,&physical| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| +֥ N AlgaeFungi|ֲ,?medicine|ҩ + N tool|þ,cubic|,@store|,#human|,#die| + N tool|þ,cubic|,@store|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V decline|˥ +԰ N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%land|½,head|ͷ + V collect| + V guide| + V know|֪ + V own| + N part|,%AnimalHuman|,head|ͷ + N part|,%clothing|,#head|ͷ + V receive| + V understand| + V guide|,patient=employee|Ա + N human|,#occupation|ְλ,official| +쳪 V guide|,ResultEvent=sing|,entertainment| +쳪 N human|,*guide|,#sing|,entertainment| + N fittings|,%clothing| + N fittings|,%clothing|,*fasten|˩ +쵼 N fact|,order|,control| +쵼 V guide| +쵼 N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼λ N attribute|,status|,&human|,#guide| +쵼 N method|,*guide| +쵼ɲ N human|,official| +쵼Ǹ N human|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N part|,%organization|֯,*guide|,official| +쵼 N human|,official| +쵼ˮƽ N attribute|,rank|ȼ,&human|,#guide| +쵼ͬ־ N human|,official| +쵼С N part|,%organization|֯,*guide|,official| +쵼 N method|,*guide| +쵼 N human|,official| +쵼 N attribute|,behavior|ֹ,&human|,#guide| +쵼 N attribute|,effect|Ч,&human|,#guide| +쵽 V collect|,Vachieve| +쵽 V guide| + V guide|,ResultEvent=walk| + V guide|,ResultEvent=SelfMove| + N place|ط + N place|ط,#country| + V guide|,patient=community| + N human|,official| + V guide|,ResultEvent=VehicleGo|ʻ + N human|,#occupation|ְλ,*guide|,#ship| + N institution|,diplomatic|⽻ +캣 N waters|ˮ,surfacial|,#country| +캽 V guide|,ResultEvent=VehicleGo|ʻ +캽 N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| +캽Ա N human|,#occupation|ְλ,*guide|,#ship|,#aircraft| + V know|֪ + V understand| +콭 V guide|,ResultEvent=VehicleGo|ʻ +콭 N human|,#occupation|ְλ,*guide|,#ship| + V perception|֪ + V request|Ҫ,ResultEvent=teach| + N tool|þ,$PutOn|,*decorate|װ + N tool|þ,$PutOn|,*decorate|װ + N sky|,#country| + N part|,%clothing|,#head|ͷ +· V guide|,ResultEvent=SelfMove| + V understand| + V grateful|м +ȡ V collect| + N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ +¹ N institution|,diplomatic|⽻ + V receive| +ˮ N waters|ˮ,surfacial|,#country| +ͷ V guide| + N place|ط,#country| + V understand| + V surpass|ǿ + V undertake|,content=important| + V undertake|,content=important| + N human|,official| + N aspiration|Ը,become|Ϊ,#official| + V foster| + V use| + V own| +֤ N human|,$ExpressAgreement|ʾͬ + N part|,%entity|ʵ,aspect| + N place|ط,#country| + N mark|־,$PutOn| + N human|,*own|,#place|ط + N part|,%clothing|,#head|ͷ + V admit|,content=crime| + ADJ aValue|ֵ,kind|,other| +辶 V create|,PatientProduct=method|,manner=other| + N account|,*record|¼ + CONJ {supplement|ݽ} + V create|,PatientProduct=different| +¯ V start|ʼ,manner=also|Ҳ + ADJ aValue|ֵ,kind|,other| + CONJ {supplement|ݽ} + ADV aValue|ֵ,kind|,other| +һ CONJ {supplement|ݽ} +һ PRON other| + V CauseToDo|ʹ + CLAS NounUnit|,&paper|ֽ + V ResultIn| + N fact|,compete|,#drink| + V order| + N text|,*order| + N text|,past| + N time|ʱ,season| + N character|,surname|,human|,ProperName|ר + N mark|־,*order| + V ResultIn| +˲ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#uneasy| +˲ ADJ aValue|ֵ,ability|,able|,MakeWorried| +˳ V CauseToDo|ʹ,ResultEvent=despise| +˴۽ ADJ aValue|ֵ,ability|,able|,attract| +˴۽ N thing|,*teach| +˶ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +˷ָ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +˸ ADJ aValue|ֵ,circumstances|,happy|,desired| +˹ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#excited| +˻ ADJ aValue|ֵ,ability|,able|,LookBack| +˾η ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#fear| + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#satisfied| +ëȻ ADJ aValue|ֵ,ability|,able|,frighten|Ż,undesired|ݬ +ջ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#upset| +ƣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ + ADJ aValue|ֵ,property|,attract| + ADJ aValue|ֵ,ability|,able|,irritate|ŭ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N fact|,$disgust|,undesired|ݬ +ŷ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#believe| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +ź ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +۶ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#tired|ƣ +Ϣ ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#pant| +Ŀ ADJ aValue|ֵ,property|,attract| +Ż ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +нֹ V obey|ѭ + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + N location|λ + N part|,%building|,#liquid|Һ,@flow| + N place|ط,#reside|ס + N shape| + V slide| + N water|ˮ,fast| + V exercise| + V walk| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ˮ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + V flee| + V refuse| + V please|ȡ +֮ V flee| + V flee| + N material| + N material|,?building| + N fruit|ˮ + N weapon| + N fruit|ˮ + N weapon|,$firing| + N chemical|ѧ + V ize|̬ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ +þ N chemical|ѧ + N chemical|ѧ +ͭ N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + V cook| + V PassOn| + V SetAside| + V keep| + V receive| + V request|Ҫ,ResultEvent=stay|ͣ + V stay|ͣ + V study|ѧ,#foreign| + V stay|ͣ + V SetAside|,commercial| + N money|,foreign|,$SetAside|,commercial| + V SetAside| + V wait|ȴ +쿴 V suffer|,content=punish| + V PassOn| +· V defend| + V defend| + V stay|ͣ + V stay|ͣ,education| + V SetAside|,patient=space|ռ + V stay|ͣ,cause=satisfied| + V FondOf|ϲ + V study|ѧ,location=(US|) + V MakeTrouble| + V PassOn| + V request|Ҫ,patient=human|,ResultEvent=stay|ͣ + V undertake| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N tool|þ,*disseminate| + V defend| + V engage| + V reside|ס + V PassOn| + V PayAttention|ע +ѧ V study|ѧ +ѧ N human|,*study|ѧ,#foreign|,education| + V tell| +Բ N readings|,@record|¼,#thought|ͷ + V study|ѧ,#foreign| +һ V SetAside|,patient=knowledge|֪ʶ,#teach| + V PayAttention|ע + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ӱ V TakePicture| + V employ| + V SetAside| + V SetAside| + V defend| + V SetAside| +Ȩ N rights|Ȩ,*SetAside| +ס V detain|ס,Vachieve| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N disease| +θ N part|,%AnimalHuman|,viscera| + V SelfMove| + V circulate|ѭ,commercial| + V disseminate| + V flow| + N ill|̬ + ADJ aValue|ֵ,property|,^$fulfil|ʵ + V fail|ʧ + V labour|ٲ + ADJ aValue|ֵ,behavior|ֹ,fluent|,speak|˵ + ADJ aValue|ֵ,content|,easy|,desired| + N process| +ͼ N image|ͼ + V PassOn| + V disseminate| + V roam| + N weapon|,$firing| + V roam| + V SelfMove| + ADJ aValue|ֵ,ability|,AlterLocation|ռλ + V flow| + V roam| +ʲ N wealth|Ǯ +ʽ N fund|ʽ,*SelfMoveInManner|ʽ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V exile| + N disease| + N time|ʱ + V excrete|й,patient=waste| + V flow| +ˮ N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + N human|,undesired|ݬ,*rob|,crime| + V roam| +˺ N human|,*roam|,poor|,undesired|ݬ + N drop|Ͷ,patient=liquid|Һ,LocationIni=eye| +ʧ V roam| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| + V stay|ͣ,cause=satisfied| + V stay|ͣ,cause=satisfied| + N quantity|,amount|,#flow|,&water|ˮ + N tool|þ,*measure|,#amount|,#water|ˮ,#flow| +¶ V express|ʾ + V reside|ס +å N human|,undesired|ݬ,#crime| +åϰ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +åΪ N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| +å N attribute|,behavior|ֹ,evil|,undesired|ݬ,&human| + N disease| + N attribute|,outlook|ǰ,&human| + N time|ʱ + N community|,#knowledge|֪ʶ +ɢ V disperse|ɢ +ɳ N stone|ʯ + N human|,*withdraw|˳,#education| +ʧ V disappear|ʧ + V disappear|ʧ +ˮ N water|ˮ,*flow| +ˮ N facilities|ʩ,@produce| +ˮ N account|,@record|¼,#wealth|Ǯ +ˮҵ N method|,*produce|,industrial| + N tool|þ,*decorate|װ + N attribute|,speed|ٶ,&flow|,#water|ˮ + V flow| + N physical|,liquid|Һ,generic|ͳ +ѧ N knowledge|֪ʶ +ͨ V circulate|ѭ +ͨ N quantity|,amount|,#circulate|ѭ,&water|ˮ,wealth|Ǯ +ͨȯ N money| +ͨҵ N affairs|,commercial| +ͨʽ N fund|ʽ,*SelfMoveInManner|ʽ + V flee| + N tool|þ,*catch|׽ס,#fish| + N drop|Ͷ,patient=liquid|Һ,LocationIni=mouth| + ADJ aValue|ֵ,form|״ + N celestial| + N weapon|,past| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V exist| + V prosper| +в N disease| +вѧ N knowledge|֪ʶ,#disease|,medical|ҽ +и N music| +и N human|,*compile|༭,#music|,entertainment| +ɫ N attribute|,color|ɫ,&physical| + ADJ aValue|ֵ,property|,CauseAffect|Ⱦ,medical|ҽ +Ըð N disease| + N disease| +Ѫ V bleed|Ѫ + N information|Ϣ,wrong|,undesired|ݬ +Է N information|Ϣ,wrong|,undesired|ݬ + N information|Ϣ,wrong|,undesired|ݬ +ʽ V become|Ϊ,descriptive=empty| + N place|ط,#waters|ˮ + ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ + N edible|ʳ,liquid|Һ +ת V circulate|ѭ,commercial| +ת V roam| + N character|,surname|,human|,ProperName|ר + N tree| + N attribute|,circumstances|,happy|,&human|,&organization|֯ + N artifact|˹,$weave| + N tree|,mass| + N MusicTool| + N tree| + N part|,%tree|,limb|֫ + N place|ط,city|,ProperName|ר,(China|й) +ݺ N bird| + NUM qValue|ֵ,amount|,cardinal|,mass| + N tool|þ,*measure| + N location|λ,%celestial|,%land|½ + ADJ aValue|ֵ,form|״ + N medicine|ҩ + N human|,family| + V uneasy| + N livestock| + N time|ʱ,month| +· N time|ʱ,month| + ADJ aValue|ֵ,status|,official| + N beast|,humanized| + N character|,surname|,human|,ProperName|ר + N humanized|,royal| + N ship| + N FlowerGrass| + N medicine|ҩ + N tool|þ,*illuminate| + N part|,%land|½,mouth| +ɷ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + N beast|,humanized| + N house|,#humanized| + N medicine|ҩ + N part|,%bird|,bone| + N part|,%ship|,bone| +dz N tool|þ,agricultural|ũ,*take|ȡ,#liquid|Һ + N beast| + N drinks|Ʒ + N material|,?drinks|Ʒ + N drinks|Ʒ + N wind|,strong|ǿ + N part|,%humanized|,mouth| +ʭ N InsectWorm| +̶ N place|ط,dangerous|Σ +̶Ѩ N place|ط,dangerous|Σ + N human|,entertainment| +ڻԾ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ͷ N part|,%LandVehicle|,*drive|Ԧ,arm| +ͷ N part|,%tool|þ,*OpenShut| + N humanized| +Ϻ N fish| + N crop|ׯ,?material| + N FlowerGrass|,?medicine|ҩ + N fruit|ˮ + V fight| + ADJ aValue|ֵ,age|,aged| + N ship| + V disable|м,scope=listen| + V disable|м,scope=listen|,scope=speak|˵ + N human|,undesired|ݬ,*disable|м,#listen|,#speak|˵ + N human|,undesired|ݬ,*disable|м,#listen| + V cover|ڸ + N tool|þ,cubic|,@cook| + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + V lighting|ȼ + V entice| + V put|,patient=hand| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@cook| +ͳ ADJ aValue|ֵ,content|,simple|,undesired|ݬ +ͷ N part|,%LandVehicle| + V cover|ڸ + N tool|þ,cubic|,@put| + N tool|þ,space|ռ,@detain|ס + N part|,%mine| +¡ V FormChange|α,StateFin=protruding|͹ +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¡ N character|,surname|,human|,ProperName|ר +¡ N time|ʱ,winter| +¡¡ V MakeSound| +¡ V FormChange|α,StateFin=protruding|͹ +¡ N emotion|,strong|ǿ +¡ N time|ʱ,season|,hot| +¡ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +¢ N part|,%land|½,agricultural|ũ +¢ V control| +£ V AmountTo|ܼ +£ V ComeTogether| +£ V approach|ӽ +£ N tool|þ,*MakeUp|ױ +¤ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +¤ N place|ط,ProperName|ר,(China|й) +¥ N character|,surname|,human|,ProperName|ר +¥ N house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%house| +¥ N part|,%building|,nerve| +¥ N part|,%house|,head|ͷ +¥ N house| +¥ N house| +¥ N part|,%house| +¥Ⱥ N building| +¥ N location|λ,%building| +¥̨ N building| +¥̨ N part|,%house|,space|ռ +¥ù N building| +¥ N part|,%building|,nerve| +¥ N location|λ,%building| +¥ N house|,generic|ͳ +¦ N aValue|ֵ,physique|,weak|,undesired|ݬ +¦ N character|,surname|,human|,ProperName|ר +¦ N phenomena|,undesired|ݬ,#unfortunate| +¦ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +§ V HoldInArm|§ +§ V gather|ɼ +§ V lift| +§ V rob| +§ V HoldInArm|§ +¨ N tool|þ,cubic|,@put| +¨ N tool|þ,cubic|,@put| +© V leak|© +© V lose|ʧȥ +© V ^tell| +© V leak|© +© N disease| +© V leak|©,agent=electricity| +© N attribute|,quality|,weak|,undesired|ݬ,&event|¼ +© N part|,%inanimate|,mouth| +©ٳ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +© N tool|þ,*fill| +© V exposure|¶,agent=information|Ϣ +© V leak|©,agent=gas| +© V speak|˵,manner=difficult| +© N part|,%inanimate|,mouth| +© V leak|©,agent=lights| +© N tool|þ,*tell|,#time|ʱ +© N part|,%inanimate|,mouth| +© N tool|þ,cubic|,*TakeOutOfWater| +©˰ V evade|ر,content=expenditure|,commercial| +© V flee| +©֮ N human|,crime|,undesired|ݬ,*flee| +©й V exposure|¶ +©й V reveal|¶ +©ҹ N time|ʱ,day|,night| +© N part|,%inanimate|,mouth| +© N tool|þ,*fill| +ª ADJ aValue|ֵ,bearing|̬,thrifty|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ª ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ª N room|,thrifty| +ªϰ N attribute|,habit|ϰ,#addict|Ⱥ,bad|,&AnimalHuman| +« N FlowerGrass|,?material| +« N medicine|ҩ,(China|й) +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ +«έ N FlowerGrass|,?material| +« N MusicTool| +¬ N character|,surname|,human|,ProperName|ר +¬ N money|,(Armenia|) +¬ N money|,(Azerbaijan|ݽ) +¬ N money|,(Byelorussia|׶˹) +¬ N money|,(Estonia|ɳ) +¬ N money|,(Georgia|³) +¬ N money|,(Kazakhstan|˹̹) +¬ N money|,(Kirghizstan|˹˹̹) +¬ N money|,(Latvia|ά) +¬ N money|,(Lithuania|) +¬ N money|,(Russia|˹) +¬ N money|,(Tajikistan|˹̹) +¬ N money|,(Turkmenistan|˹̹) +¬ N money|,(Ukraine|ڿ) +¬ N money|,(Uzbekistan|α˹̹) +¬ N place|ط,capital|,ProperName|ר,(Zambia|ޱ) +¬ɭ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,capital|,ProperName|ר,(Luxemburg|¬ɭ) +¬ɭ N place|ط,country|,ProperName|ר,(Europe|ŷ) +¬ɭ N money|,(Luxemburg|¬ɭ) +¬ɭ N human|,(Luxemburg|¬ɭ) +¬ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rwanda|¬) +¬ N place|ط,country|,ProperName|ר,(Africa|) +¬﷨ N money|,(Rwanda|¬) +­ N part|,%AnimalHuman|,head|ͷ +­ N part|,%AnimalHuman|,bone| +® N house| +®ɽ N place|ط,ProperName|ר,(China|й) +®ɽĿ N attribute|,trueness|α,true|,&thing| +® N house| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N fire| +¯ ADJ aValue|ֵ,ability|,able|,desired| +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N material|,*lighting|ȼ,*WarmUp| +¯ N part|,%implement|,viscera| +¯ N part|,%implement|,viscera| +¯ N attribute|,temperature|¶,&tool|þ +¯ N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +¯ N stone|ʯ,waste| +¯ N tool|þ,space|ռ,@burn|,*WarmUp| +° V rob| +° V rob|,military|,police| +° V rob| +± V cook| +± V ize|̬ +±ˮ N water|ˮ,salty| +± N chemical|ѧ +±ζ N food|ʳƷ +² V catch|׽ס +² N human|,$catch|׽ס +² N human|,$catch|׽ס,military| +² V catch|׽ס,military|,police| +³ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ N character|,surname|,human|,ProperName|ר +³ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +³ N edible|ʳ +³ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +³ç ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +³ N place|ط,ProperName|ר,(China|й) +´ N part|,%land|½,base| +µ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +µµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +µµΪ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +µ N tool|þ,*press|ѹ,#crop|ׯ +¶ N RainSnow|ѩ +¶ V express|ʾ +¶ V reveal|¶ +¶ V reveal|¶ +¶ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +¶ N beast|,*swim| +¶ N drinks|Ʒ,$addict|Ⱥ +¶ V WellKnown| +¶ V exposure|¶ +¶ V appear| +¶ˮ N RainSnow|ѩ +¶ V reside|ס +¶ N location|λ,external|,space|ռ +¶ N facilities|ʩ,mine| +¶ú N facilities|ʩ,mine| +¶ͷ V appear| +¶ڶ V exposure|¶ +¶һ V ShowOff|ҫ +¶һ V express|ʾ +¶Ӫ V reside|ס +¶ N RainSnow|ѩ +· N attribute|,distance|,&physical| +· N attribute|,kind|,&physical| +· N attribute|,rank|ȼ,&physical| +· N character|,surname|,human|,ProperName|ר +· N facilities|ʩ,route|· +· N fact|,tour| +· N method| +· N place|ط +· N reason| +· N part|,%route|·,edge| +· N mark|־,#route|· +·ʰ ADJ aValue|ֵ,SocialMode|,good|,desired| +· N attribute|,distance|,#tour| +· N facilities|ʩ,*illuminate|,#route|· +· N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +· N part|,%route|· +· N expenditure|,*tour| +· N attribute|,behavior|ֹ,#transport|,&organization|֯ +· V GoThrough| +· N part|,%facilities|ʩ,route|·,base| +· V rob| +· PREP {LocationThru} +· N human|,#occupation|ְλ,police|,#route|· +· N facilities|ʩ,route|· +· N method| +· N institution|,#transport|,#route|· +· N part|,%place|ط +· N fact|,#vehicle|ͨ,#VehicleGo|ʻ +· N part|,%facilities|ʩ,route|·,skin|Ƥ +· N mark|־,#route|· +·ǩ N document|,*agree|ͬ,#vehicle|ͨ +· N human|,*GoThrough| +· N human|,unfamiliar|϶ +· N location|λ,%route|· +· N process|,#tour| +· N method| +· N document|,*agree|ͬ,#vehicle|ͨ +·͸ N institution|,news|,ProperName|ר,(UK|Ӣ) +·; N facilities|ʩ,route|· +·; N fact|,tour| +· N plans|滮,#tour| +·׸ N place|ط,capital|,ProperName|ר,(Mauritius|ë˹) +·˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +· N facilities|ʩ,*obstruct|ֹ,#AlterLocation|ռλ,#route|· +· N attribute|,relatedness|,&human|,&organization|֯ +· N method| +·ӿ V associate|,manner=extensive| +·Ұ V associate|,manner=extensive| +¹ N beast| +¹ N facilities|ʩ,space|ռ,military| +¹ N part|,%AnimalHuman|,*feel| +¹ N material|,?medicine|ҩ +¹˭ V unfixed|δ +¹ص N place|ط,city|,ProperName|ר,(Holland|) +¹ N facilities|ʩ,space|ռ,military| +º N place|ط,ProperName|ר,(China|й) +» N character|,surname|,human|,ProperName|ר +» N payment| +» N payment|,past| +¼ N account|,*record|¼ +¼ V employ| +¼ V record|¼ +¼ V record|¼ +¼ V record|¼,police| +¼ȡ V include| +¼ V record|¼ +¼ V TakePicture| +¼ V record|¼,content=image|ͼ +¼ N tool|þ,@record|¼,#image|ͼ +¼ N tool|þ,*TakePicture| +¼Ƭ N shows| +¼ N affairs|,entertainment| +¼ V record|¼,content=sound| +¼ N tool|þ,@record|¼,#sound| +¼ N tool|þ,*record|¼,#sound| +¼Ա N human|,*record|¼,#sound| +¼Ӱ V record|¼,content=image|ͼ +¼ V employ| +¼ V compile|༭ +½ N character|,surname|,human|,ProperName|ר +½ N land|½ +½ NUM qValue|ֵ,amount|,cardinal| +½ N crop|ׯ +½ N land|½ +½ N land|½,waters|ˮ,sky| +½ N army|,#land|½ +½ձ N army| +½· N facilities|ʩ,route|· +½ ADJ aValue|ֵ,sequence| +½ V transport| +½ս N fact|,fight|,#land|½ +½ս N army| +¾ͬ V cooperate| +¿ N livestock| +¿ V FitNot| +¿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +¿ N livestock| +¿Ƥ N medicine|ҩ +¿ N livestock| + N character|,surname|,human|,ProperName|ר + N metal| + N tool|þ +Ͻ N material|,metal| + N material| + N human|,friend| + N army|,generic|ͳ + N part|,%army| + V tour| +ð N human|,friend|,#tour| +ò N expenditure|,*tour| +ó N human|,#occupation|ְλ,official|,military| +ó N fact|,tour|,*AlterLocation|ռλ +ó N process|,#tour| +õ N InstitutePlace|,@reside|ס,#tour|,commercial| +÷ N expenditure|,*tour| +ù N InstitutePlace|,@reside|ס,#tour|,commercial| +ùϰ N human|,*employ|,commercial| +ý V obey|ѭ +þ V reside|ס +þӺ V reside|ס +ÿ N human|,*tour| +ÿ N human|,*tour|,*AlterLocation|ռλ + N InstitutePlace|,@reside|ס,#tour|,commercial| + N InstitutePlace|,@reside|ס,#tour|,commercial| +˳ N place|ط,city|,ProperName|ר,(China|й) +; N fact|,tour| + V tour| +а N tool|þ,cubic|,@put|,#tour| +г N LandVehicle|,*tour| +д N tool|þ,cubic|,@put|,#tour| + N InstitutePlace|,#tour| + N InstitutePlace|,#tour|,commercial| + N community|,*tour| + N human|,*tour| + N affairs|,#tour| + V tour| +γ N LandVehicle|,*tour| +ʤ N place|ط,glorious|,@tour| +Ь N clothing|,#foot|,*tour| +ҵ N affairs|,#tour| + N human|,*tour| + N expenditure|,*tour| + N clothing|,#foot| + V conduct|ʵʩ + V walk| +Ĵ N part|,%implement| + N document|,@record|¼,#process| + N document|,@record|¼,#process| + ADJ aValue|ֵ,courage|,brave|,desired| + V engage|,content=occupation|ְλ,new| + V conduct|ʵʩ +Լ V conduct|ʵʩ,content=ExpressAgreement|ʾͬ + ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +Ŵ ADV aValue|ֵ,frequency|Ƶ,again| +ż ADJ aValue|ֵ,kind|,ordinary| +Ž̲ V refuse|,content=amend| +Žֹ V BeUnable|,content=restrain|ֹ + ADV aValue|ֵ,frequency|Ƶ,again| +Բˬ ADJ aValue|ֵ,effect|Ч,superior|,desired| + V suffer|,frequency=again| + CLAS NounUnit|,&inanimate| + N tool|þ,linear|,*fasten|˩ + ADV aValue|ֵ,behavior|ֹ,^continuous| + V explain|˵ + V sad|dz + V think|˼ + N gas| +ȷ N chemical|ѧ +Ȼ N chemical|ѧ +Ȼ N chemical|ѧ + N material|,?clothing| +ù N medicine|ҩ + N gas| + N law|ɷ + V manage| + V restrain|ֹ + N system|ƶ +ɷ N law|ɷ +ɼ V restrain|ֹ,patient=self| +ʦ N human|,#occupation|ְλ,police|,#law|ɷ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| + V order| + N quantity|,rate|,&quantity| +ʲ V guide|,patient=army|,military| +ʶ V guide|,patient=community| +ʶ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ʶ V write|д,manner=careless| + V guide| + V order| +Ȼ ADV aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V guide| +ɾ V obey|ѭ,content=regulation| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V filter| +˲ V filter|,patient=electricity| +˲ N tool|þ,*filter|,#electricity| + N tool|þ,*filter| + V filter| +ɫ N tool|þ,*filter|,#color|ɫ +Һ N tool|þ,liquid|Һ,*filter| +ֽ N paper|ֽ,*filter| + ADJ aValue|ֵ,color|ɫ,green| +̲ N material|,?drinks|Ʒ +̵ N information|Ϣ,*agree|ͬ +̵ N tool|þ,*illuminate|,#route|·,#vehicle|ͨ +̵ N land|½,@planting|ֲ,FlowerGrass|,tree| +̶ N crop|ׯ +̷ N material|,*feed|ι,#crop|ׯ +̻ V ize|̬ +̿ N document|,*reside|ס,#country| + N part|,%building| +ֺú N human|,*rob|,#rich|,*help|,#poor| +ֺú N human|,undesired|ݬ,*rob|,crime| +Ӣ N human|,*rob|,#rich|,*help|,#poor| +ɫ ADJ aValue|ֵ,color|ɫ,green| +ɫʳƷ N edible|ʳ,#plant|ֲ,^$pollute|ʹ +ɫֲ N plant|ֲ,green| + ADJ aValue|ֵ,color|ɫ,green| +ˮ N waters|ˮ,green| +ˮɽ N place|ط,beautiful| +ͷѼ N bird| +Ҷ N part|,%plant|ֲ,hair|ë + N land|½,@planting|ֲ,FlowerGrass|,tree| + N facilities|ʩ,@exercise|,@compete|,sport| + ADJ aValue|ֵ,color|ɫ,green| + N trace|,#tree| +ӨӨ ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| + N land|½,@planting|ֲ,FlowerGrass|,tree| + N land|½ + V CausePartMove| + ADJ aValue|ֵ,source|Դ + N waters|ˮ,linear|,ProperName|ר,(China|й) + N part|,%AnimalHuman|,embryo| +Ѱ N part|,%AnimalHuman|,embryo| +ѳ N part|,%AnimalHuman|,female|Ů,viscera|,#GiveBirth| +ѻ N part|,%AnimalHuman|,embryo| +֬ N medicine|ҩ +ʯ N stone|ʯ,material| +ϸ N part|,%AnimalHuman|,embryo| + N part|,%AnimalHuman|,embryo| + V CauseToDo|ʹ,ResultEvent=disorder| + V FeelingByBad| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + N fact|,uprise|,undesired|ݬ,politics| + V mix| + N phenomena|,disorder|,undesired|ݬ +ұ N human|,military|,undesired|ݬ +Ҳ V gather|ɼ,means=break|۶,manner=improper|,agricultural|ũ +ҵ V TalkNonsense|Ϲ˵ +ҷ׷ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ҷ׷ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ҷظ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ҹ V associate|,scope=sex|Ա,manner=improper| +ҸŮϵ V associate|,scope=sex|Ա,manner=improper| +Һ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ +һǮ V lavish|˷ +ҿñ V damage|,politics| + V roam| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ +߰ ADJ aValue|ֵ,occasion|,disorder|,undesired|ݬ + V establish|,manner=improper| + N time|ʱ,disorder| +˵ V TalkNonsense|Ϲ˵ +̯ V issue|ַ,manner=improper| + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N phenomena|,undesired|ݬ,disorder|,#unfortunate| + V GoThrough|,manner=fast| + V rob| +Ӷ V rob| +Ӷ N human|,*rob|,undesired|ݬ +ӹ V GoThrough|,manner=fast| +ȡ V rob| + N look|,manner=fast| +Ӱ N part|,%thing|,bone| + ADJ aValue|ֵ,content|,simple|,desired| + ADV aValue|ֵ,degree|̶,ish| +Գ ADJ aValue|ֵ,length|,long|,ish| +Գ N attribute|,name|,simple|,&entity|ʵ +Դ ADJ aValue|ֵ,size|ߴ,big|,ish| +Դ V contain|,quantity=few| +Դζ ADJ aValue|ֵ,taste|ζ,sour|,ish| +Լ ADV aValue|ֵ,degree|̶,ish| +ȥ V discharge| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +С ADJ aValue|ֵ,size|ߴ,small|С,ish| +ѷһ ADJ inferior|,degree=ish| +֪һ V know|֪,degree=ish| + V wave|ڶ + CLAS NounUnit|,&event|¼ + N part|,%LandVehicle|,leg| + V replace| + N shape| + N ship| +ְ V replace| +ֳ N part|,%implement| +ִ N ship| +ֵ V replace| +ֶ N ship| +ַ V replace| +ֻ V replace| +ֻ V circulate|ѭ +ֻ V circulate|ѭ,religion|ڽ +ֻ N machine| +ּ V damage|,purpose=mating|,crime| + N part|,%thing|,bone| + V replace| +ʽ ADJ aValue|ֵ,performance| +̥ N part|,%LandVehicle|,leg| + V shape| + V rest|Ϣ +ѵ V drill|ϰ + N LandVehicle|,*SelfMove|,#disable|м +ֵ V engage|,content=bear|е + N part|,%implement| +ת V circulate|ѭ + N part|,%LandVehicle|,leg| + V circulate|ѭ,#planting|ֲ,agricultural|ũ + N attribute|,relatedness|,&human| +״ N attribute|,content|,&language| +׶ N place|ط,capital|,ProperName|ר,(UK|Ӣ) + N attribute|,behavior|ֹ,&human| +ѧ N knowledge|֪ʶ,#behavior|ֹ +Ƥ N money|,(Honduras|鶼˹) + N unit|λ,&lights| + N lights| + N attribute|,sequence|,&event|¼ + V sink|³ + V unfortunate| +ɥ V decline|˥ + V perish| +Ϊ V become|Ϊ + V perish| + N fittings|,%clothing| + V decide| + V discuss| + N knowledge|֪ʶ + V regard|Ϊ + N text| + N thought|ͷ + PREP {AccordingTo} +۴ V decide| +۴ V punish| +۵ N human|,enemy|,#debate| +۵ N reason| +۵ N reason| +۶ N thought|ͷ +۹ V reward| +ۼ V discuss| +ۼ V decide|,content=price|۸ +۾ N information|Ϣ,*debate|,*explain|˵ + V fit|ʺ + N reason| + V explain|˵ +˵ N text| +˵ ADV {comment|} +̳ N fact|,@communicate| + N text|,$propose|,$discuss|,$debate| + N text|,#research|о +ļ N publications|鿯,#research|о + N publications|鿯,ProperName|ר +ս V debate| + V debate| +֤ N information|Ϣ,*explain|˵ + N publications|鿯 +ű V AlterGrade|伶,AccordingTo=status| + V decide| + N FlowerGrass| +ܲ N part|,%vegetable|߲,embryo|,$eat| +ܲ N vegetable|߲ +ܽľ N FlowerGrass|,?medicine|ҩ + N fish| + N trace| +ݶ N tool|þ,*fix|ס,*fasten|˩ +ݺ N MusicTool| +ݺ N tool|þ,*MakeSound| +ĸ N tool|þ,*fix|ס,*fasten|˩ +˨ N part|,%implement| +˿ N tool|þ,*fix|ס,*fasten|˩ +˿ N tool|þ,*tighten|ս,*loosen| + N part|,%tool|þ,#fix|ס,#fasten|˩ + N trace| + N part|,%implement| + N part|,%implement| +״ ADJ aValue|ֵ,form|״ + N fish| + CLAS NounUnit|,&inanimate| + N character|,surname|,human|,ProperName|ר + V filter| + V gather|ɼ + N place|ط,country|,ProperName|ר,(Romania|) + N tool|þ,*catch|׽ס,#bird| +ް N place|ط,capital|,ProperName|ר,(Angola|) +޲ N crop|ׯ,?material| +޵µ N place|ط,provincial|ʡ,ProperName|ר,(US|) +޵õ N place|ط,ProperName|ר +޵õ N human|,(Rhode island|޵õ) +޵ N place|ط,ProperName|ר +޵ N human|,(Rhodesia|޵) +޹ N human|,*disable|м +޺ N human|,religion|ڽ + N crop|ׯ,?material| + V quote| + N place|ط,capital|,ProperName|ר,(Italy|) +ʵ N human|,royal| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Romania|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Rumania|) + N human|,(Rumania|) + N language|,#country|,ProperName|ר + N tool|þ,*tell|,#direction| +˹ N human|,official|,politics|,ProperName|ר,(US|) + V gather|ɼ + V include| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V speak|˵ +߼ N reason| +߼ѧ N human|,#knowledge|֪ʶ + N MusicTool| + N MusicTool| + ADJ aValue|ֵ,occasion|,bustling| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N livestock| + N livestock| + ADJ aValue|ֵ,property|,exposure|¶ +¶ V aValue|ֵ,property|,exposure|¶ + N crop|ׯ + ADJ aValue|ֵ,property|,exposure|¶ + N tool|þ,linear|,*transmit|,#electricity| + V MoveItDown| + V ResultFrom|Ե + V decline|˥ + V fall| + V inferior| + V lose|ʧȥ + V sink|³ + V subtract| + V undergo| + V fail|ʧ,scope=exam|,result=include|,education| + V write|д + V FormChange|α,StateFin=bony| +Ϊ V become|Ϊ + N attribute|,different|,#water|ˮ,&waters|ˮ +䳱 V WeatherBad| + V succeed|ɹ +䵽 V undergo| + V undergo| + V ComeToWorld| + V fall| + V fail|ʧ + N location|λ,@arrive|,military| + N location|λ,@arrive|,sport| + N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| +仧 V reside|ס +仨ˮ V defeated| +仨 N crop|ׯ,?material|,$eat| +Ķ V flee| + V BecomeLess|,scope=price|۸ + V reside|ס +侮ʯ V damage| + V fail|ʧ + V sign|д,content=name| + V weep| + ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ѻ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V fail|ʧ + V fall|,LocationIni=livestock| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +į ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ļ V finish| + V unfortunate| +Ƹ V fail|ʧ,scope=$employ| + N celestial| +ɫ V AppearanceChange|۱ +ʵ V AtEase| +ʵ V decide| +ʵ V fulfil|ʵ +ˮ N human|,undesired|ݬ,*fail|ʧ,*unfortunate| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V suffer|,content=catch|׽ס,police|,crime| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V inferior| + N human|,bad|,undesired|ݬ +ѡ V fail|ʧ,scope=$select|ѡ +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N tree| + N lights|,#celestial| + V put|,#recreation| + V sit| + N character|,(China|й) + N money|,(Lesotho|) + N place|ط,capital|,ProperName|ר,(Togo|) +ɣ N place|ط,city|,ProperName|ר,(Swiss|ʿ) +ɼ N place|ط,city|,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N beast| +մ N crop|ׯ,?material| + N material|,?clothing| + N part|,%AnimalHuman|,nerve| + N shape| + V merge|ϲ,#chemical|ѧ + N chemical|ѧ + N part|,%human|,hair|ë +ﲻ ADJ qValue|ֵ,amount|,many| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ,?material| + N medicine|ҩ + V paralyse|̱ + N tool|þ,cubic|,@put| + V CauseToDo|ʹ,ResultEvent=careless| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V paralyse|̱ +Դ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +鲼 N material|,?clothing| + N tool|þ,cubic|,@put| +鷳 V MakeTrouble| +鷳 ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +鷳 ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V produce|,industrial| + N disease| +粡 N human|,*SufferFrom|,disease| +粡 N human|,*SufferFrom|,disease| +黨 N food|ʳƷ + N FlowerGrass| + N medicine|ҩ +齫 N tool|þ,*gamble|IJ +齴 N material|,?food|ʳƷ + ADJ aValue|ֵ,taste|ζ,peppery| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,bright| +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ľ ADJ aValue|ֵ,physique|,stiff|,undesired|ݬ +ľ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ȸ N bird| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ +ʡ N place|ط,ProperName|ר,(US|) + N tool|þ,linear|,*fasten|˩ +ҩ N medicine|ҩ + N material|,?food|ʳƷ + N disease| + N human|,undesired|ݬ,#disease| + N trace|,undesired|ݬ,#disease| + V cure|ҽ +Ʒ N medicine|ҩ,?addictive|Ⱥ +ҩ N medicine|ҩ + N character|,(China|й) + N place|ط,ProperName|ר + N human| + N human|,ProperName|ר + N material|,?tool|þ,#decorate|װ + V pile|ѷ + N symbol| + CLAS unit|λ,&length| + V pile|ѷ +ͷ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ͷ N place|ط,city| + N symbol| + N tool|þ,*gamble|IJ,#money| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N InsectWorm| + N character|,surname|,human|,ProperName|ר + N livestock| + N part|,%tool|þ,#recreation| + N place|ط,country|,ProperName|ר,(Malaysia|) + N tool|þ,@sit|,#livestock| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,@sit|,#livestock| + N part|,%livestock|,body| + N tool|þ,*tell|,#time|ʱ + N InsectWorm| +ͣ V VieFor| +ͣ ADJ aValue|ֵ,behavior|ֹ,continuous| + N LandVehicle| + N FlowerGrass|,?medicine|ҩ + N machine| +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Madagascar|˹) +˹ N place|ط,country|,ProperName|ר,(Africa|) +˹ӷ N money|,(Madagascar|˹) + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N human|,careless|,undesired|ݬ + N weapon|,*stab| +ɹ V succeed|ɹ + N place|ط,capital|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(Cambodia|կ) + N tool|þ,*illuminate| + N army|,#livestock| + N livestock|,mass| + N livestock| + N place|ط,country|,ProperName|ר,(Europe|ŷ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Africa|) +ʲ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Maldives|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Malta|) + N language|,#country|,ProperName|ר +ֽ N paper|ֽ + N InsectWorm|,*fly| + N human|,#occupation|ְλ,employee|Ա +ʬ V endeavour| + N clothing| +Լ N agreement|Լ,ProperName|ר,#(China|й),#(Japan|ձ) + CLAS unit|λ,&speed|ٶ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N clothing|,#body| + N livestock|,young| + N money|,(Germany|¹) + N money|,ProperName|ר +˹ N human| +˼ N human|,#knowledge|֪ʶ,ProperName|ר,(Germany|¹) + N metal|,material| + N clothing|,#leg| + N place|ط,capital|,ProperName|ר,(Equatorial Guinea|) + N language|,#country|,ProperName|ר + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Africa|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malawi|ά) +ά N place|ط,country|,ProperName|ר,(Africa|) +ά߲ N money|,(Malawi|ά) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Malaysia|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Malaysia|) + N place|ط,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N place|ط,capital|,ProperName|ר,(Maldives|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mali|) + N place|ط,country|,ProperName|ר,(Africa|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + CLAS unit|λ,&PhysicsPower| + N knowledge|֪ʶ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N place|ط,ProperName|ר +· N facilities|ʩ,route|· +¹ N beast| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,standard|׼,average|,desired| +ǹ N place|ط,capital|,ProperName|ר,(Nicaragua|) + N place|ط,capital|,ProperName|ר,(Philippines|ɱ) +ƥ N livestock|,mass| +ƨ N human|,*please|ȡ + N place|ط,capital|,ProperName|ר,(Mozambique|Īɣȿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Macedonia|) + N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר +ǰ N human|,undesired|ݬ,$employ| +ǹ N weapon|,*firing| + N SportTool|˶ +¬ N place|ط,capital|,ProperName|ר,(Lesotho|) + N place|ط,city|,ProperName|ר,(France|) + N material|,*build| + ADV aValue|ֵ,duration|,TimeShort| + N tool|þ,cubic|,*TakeOutOfWater| +ܶȺ N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N knowledge|֪ʶ,#sit|,#livestock| +˹ N place|ط,capital|,ProperName|ר,(Oman|) + N part|,%livestock|,foot| + N material| + N part|,%tool|þ,#livestock|,#foot| + ADJ aValue|ֵ,form|״ +Ͱ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ͷ N MusicTool| +β N part|,%livestock|,tail|β +β N tree| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| + N beast| +ѥ N clothing|,#foot| +Ӭ N InsectWorm|,undesired|ݬ,*fly| + N tool|þ,space|ռ,@sit| + N tool|þ,#foot|,#livestock| + N part|,%livestock|,hair|ë +濨 N fact|,entertainment| + N human|,#occupation|ְλ,*protect| + N crop|ׯ,?material| + N fish| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + STRU {MaChinese|} + STRU {MaChinese|,question|} + N medicine|ҩ,?addictive|Ⱥ + V bury| + V hide| + V bury| + V hide| +û V despise| +û V hide| + V bury| + V bury| +ͷ V endeavour| +ͷ V endeavour| + V bury| +Թ V blame|Թ + V bury| + V buy|,commercial| + N human|,commercial|,past| + N human|,*buy|,commercial| + V buy|,cost=expensive| + V please|ȡ + N attribute|,price|۸,#buy|,&artifact|˹,commercial| + V buy|,commercial| + V exchange|,manner=venture|ð,commercial| + N affairs|,#buy|,#sell|,commercial| +ͬ N agreement|Լ,commercial| +˫ N human|,*buy|,*sell|,commercial| + V buy|,commercial| +ͨ V entice|,means=GiveAsGift|,crime| +һһ V obtain|õ,manner=^pay|,condition=buy|,commercial| + V endorse|ӵ + N human|,*buy|,commercial| + N human|,#commercial|,*buy| + N crop|ׯ + N FlowerGrass|,?medicine|ҩ + N InsectWorm|,*fly| + N material|,?clothing| +ѳ N InsectWorm| + N part|,%crop|ׯ,body| +˷ N tool|þ,*disseminate| + N crop|ׯ,young| + N place|ط,capital|,ProperName|ר,(Bahrain|) +Ƭ N food|ʳƷ + N time|ʱ,autumn|,@collect|,#crop|ׯ + V collect|,agricultural|ũ + N part|,crop|ׯ + N land|½,#crop|ׯ +ѿ N part|,crop|ׯ + N InsectWorm|,undesired|ݬ,*fly| + N crop|ׯ + V betray| + V sell| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V MakeLiving|ı,means=sing| +úܻ ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V sell|,Vachieve| + N human|,*sell|,commercial| +г N affairs|,commercial| + V sell| +Ƥҩ V boast| + V ShowOff|ҫ,content=clever| + V betray|,target=country| + N human|,*betray|,#country| + V please|ȡ + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + V endeavour| + V endeavour| + V endeavour| +Ū V ShowOff|ҫ +Ū V show|,content=lascivious| +Ūɧ V show|,content=lascivious| + V show|,content=lascivious| +Ͷ V SeekRefuge|Ͷ + V MakeLiving|ı,means=perform| + V engage|,content=lascivious|,crime| + N human|,#commercial|,*sell| + ADJ aValue|ֵ,age|,aged| + V walk| + N place|ط,city|,ProperName|ר,(US|) + V walk| + V walk| + V GoForward|ǰ + V walk| + V walk| + V walk| + N experience| + N part|,%AnimalHuman|,nerve| + N phenomena|,#medical|ҽ + N phenomena| + V shiver| + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,nerve| + N part|,%plant|ֲ,nerve| + N part|,%thinking|˼,nerve| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HideTruth| + V HideTruth| + V HideTruth|,^Vable| +ùȥ V HideTruth|,Vable| + V HideTruth|,Vachieve| + V deceive|ƭ + V HideTruth| + V HideTruth| +ȥ V HideTruth|,Vcontinue| + V HideTruth|,Vgoingon|չ +ͷ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADV aValue|ֵ,degree|̶,ish| + N human| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADV aValue|ֵ,degree|̶,extreme| + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,fullness|,full| + N character|,surname|,human|,ProperName|ר + N community|,ProperName|ר,(China|й) + V due| + V fill| +ں V despise| + N result|,desired| + V doubt| + V arrive|,LocationFin=extreme| + V cherish|Ļ + V believe| + ADJ qValue|ֵ,amount|,many| +ڴӦ V agree|ͬ,manner=forthright|ˬ +໰ V speak|˵,content=lascivious| + ADJ aValue|ֵ,fullness|,full| + V exposure|¶,#countenance| +洺 V satisfied| +Ц V laugh|Ц +Ŀ ADJ aValue|ֵ,range|,all|ȫ +Ŀ ADJ aValue|ֵ,scene|,miserable|,undesired|ݬ +ǻ V cherish|Ļ +ǻȳ V cherish|Ļ,content=sincere| +ǻ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ɽҰ N location|λ,land|½ +ù V teach|,manner=stiff| +ú N fact|,succeed|ɹ + ADJ aValue|ֵ,range|,all|ȫ + V satisfied| + N celestial| + N time|ʱ,day|,#young| +ض V GoBack|,#succeed|ɹ + ADJ place|ط,ProperName|ר,(China|й) + N human| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + V fulfil|ʵ + V satisfied| + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,fullness|,full| + N part|,%plant|ֲ,body| + V disperse|ɢ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +˹ N place|ط,city|,ProperName|ר,(UK|Ӣ) + N place|ط,capital|,ProperName|ר,(Thailand|̩) + N place|ط,ProperName|ר,(US|) + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N sound| + N MusicTool| + N FlowerGrass|,?medicine|ҩ + V FormChange|α + V SlowDown| + ADJ aValue|ֵ,speed|ٶ,slow| + N LandVehicle| + V IllTreat| + ADJ aValue|ֵ,speed|ٶ,slow| + V run| + N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,speed|ٶ,slow| +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,kind| +Բ N disease| +Էʪ N disease| + N attribute|,behavior|ֹ,NotQuick|ګ,undesired|ݬ,&human| + N human|,NotQuick|ګ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + V spill| + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V walk| + N human|,*walk| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| + V irrigate|,agricultural|ũ + N image|ͼ + N human|,*draw|,entertainment| + V talk|̸ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,length|,long| +ɽҰ ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,range|,extensive| + N sky| +Ҫ V propose|,content=price|۸,commercial| +ޱ߼ ADJ aValue|ֵ,area|,wide| +ޱ߼ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V spill| + V tour| + V tour|,#internet| + N human|,*tour| +á ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +á V deceive|ƭ +á V ExpressAgainst|Ǵ +á N human|,*ExpressAgainst|Ǵ +â N part|,%crop|ׯ +âڱ V uneasy| +â N fruit|ˮ +â N chemical|ѧ +â N time|ʱ,day| +ã ADJ aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãã ADJ aValue|ֵ,area|,wide| +ãã ADJ aValue|ֵ,clearness|,blurred| +ãȻ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ãͷ V ignorant|֪ +ãͷ V unfixed|δ +ä V disable|м,scope=look| +ä ADJ disable|м,scope=look| +ä N part|,%AnimalHuman|,viscera| +ä V obey|ѭ +ä N location|λ,^$perception|֪ +ä V RashlyAct| +ä N human|,mass|,*roam| +äĿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +äĿ N human|,*salute|¾ +äĿ N attribute|,behavior|ֹ,rash|ç,&event|¼ +ä N location|λ,^$perception|֪ +ä N human|,undesired|ݬ,*disable|м,#look| +ä ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +äϹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +äͯ N human|,undesired|ݬ,young|,*disable|м,#look| +ä N character|,#disable|м,#look| +å N human|,ordinary| +æ V VieFor| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +æ V VieFor| +æͣ V endeavour| +æ V endeavour| +æ͵ V rest|Ϣ,time=busy|æ +æµ V endeavour| +æ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ææµµ V endeavour| +ç ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ç ADJ aValue|ֵ,clearness|,blurred| +ç N human|,rash|ç +çç ADJ aValue|ֵ,area|,wide| +çç ADJ aValue|ֵ,scene|,exuberant|ï,desired| +çԭ N land|½,surfacial|,desolate|,undesired|ݬ +çײ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +è N livestock| +è ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +èͷӥ N bird| +è N beast| +é N FlowerGrass| +é N character|,surname|,human|,ProperName|ר +é N FlowerGrass| +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é N facilities|ʩ,@excrete|й +é® N house| +éٿ V know|֪ +é N house| +ę́ N drinks|Ʒ,$addict|Ⱥ,ProperName|ר +ę́ N drinks|Ʒ,$addict|Ⱥ +é N house| +ê N tool|þ,*detain|ס,#ship| +ê N place|ط,#ship|,@stay|ͣ +ê N tool|þ,*detain|ס,#ship| +êλ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ë V BecomeLess|,commercial| +ë V BecomeLess|,scope=value|ֵ +ë ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ë ADJ aValue|ֵ,kind| +ë ADJ aValue|ֵ,property|,^succeed|ɹ +ë ADJ aValue|ֵ,size|ߴ,small|С +ë N bacteria|΢ +ë N character|,surname|,human|,ProperName|ר +ë N material|,?clothing| +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë CLAS unit|λ,&money|,(China|й) +ë N tree| +ë N PenInk|ī,*write|д +ëֽ N paper|ֽ,@write|д +ë N attribute|,quality|,weak|,undesired|ݬ,&thing| +ë N disease| +ë N phenomena|,undesired|ݬ,#BeBad|˥ +ë N material|,?tool|þ +ë N material|,?clothing| +ë ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +ë N InsectWorm| +ë N shape| +ëػ N FlowerGrass|,?medicine|ҩ +ë N part|,%vegetable|߲,embryo|,$eat| +ë N vegetable|߲ +ë N part|,%AnimalHuman|,hair|ë +ë N material|,?clothing| +ëij N InstitutePlace|,@produce|,factory|,industrial| +ë N material|,?clothing| +ëȻ V fear| +ë N tool|þ,*wipe| +ë N tool|þ,*cover|ڸ,#sleep|˯ +ë N part|,%AnimalHuman| +ë˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritius|ë˹) +ë˹ N place|ط,country|,ProperName|ר,(Africa|) +ë˹¬ N money|,(Mauritius|ë˹) +ë˹ N human|,(Mauritius|ë˹) +ë ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mauritania|ë) +ë N place|ط,country|,ProperName|ר,(Africa|) +ë N human|,(Mauritania|ë) +ë N wealth|Ǯ,desired|,$earn|׬ +ë N quantity|,rate|,&wealth|Ǯ,#earn|׬ +ë N language|,#country|,ProperName|ר +ë N material|,?clothing| +ë¿ N livestock| +ëë N human|,young| +ëë N RainSnow|ѩ,weak| +ë N material|,?clothing| +ë N artifact|˹ +ëƤ N material|,?clothing| +ë N facilities|ʩ,#liquid|Һ,#crop|ׯ +ë ADJ aValue|ֵ,form|״ +ë N material|,?clothing| +ëɪǹ N weapon|,*firing| +ëë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ëԼ V recommend|Ƽ,content=self| +ë̺ N tool|þ,*cover|ڸ +ëϸ N part|,%AnimalHuman|,nerve| +ëϸѪ N part|,%AnimalHuman|,nerve| +ë N material|,?clothing| +ë N beast| +ë N clothing|,#body| +ë ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +ë ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ë N human|,official|,politics|,ProperName|ר,(China|й) +ëձ N material|,?clothing| +ë֯Ʒ N clothing| +ë֯Ʒ N material|,?clothing| +ë N tree| +ë״ ADJ aValue|ֵ,form|״ +ë N InsectWorm| +ì N weapon|,stab| +ì V FitNot| +ì ADJ aValue|ֵ,similarity|ͬ,FitNot| +ì N fact|,FitNot| +ì״ ADJ aValue|ֵ,form|״,acute| +ìͷ N weapon|,*stab| +í V fasten|˩,industrial| +í N part|,%implement| +í V fasten|˩,industrial| +î N character|,(China|й) +îʱ N time|ʱ,hour|ʱ +î N part|,%artifact|˹,#wood|ľ +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ð ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ð ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ð V jet| +ð V venture|ð +ð V RegardAs|,means=pretend|װ +ð V jet| +ð V offend| +ð V venture|ð +ð V excrete|й,patient=waste| +ð V angry| +ð V appear| +ð V appear|,manner=many| +ð ADJ qValue|ֵ,amount|,many| +ð V surpass|ǿ +ð V GoForward|ǰ,manner=rash|ç +ð V collect|,means=cheat|ƭ +ð V venture|ð +ð N human|,rash|ç +ð V naming|,ResultIsa=name| +ð V replace|,means=naming|,#name| +ð ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ðƻ N thing|,$forge|α +ðʧ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ð֮ V venture|ð,content=suffer|,#ExpressAgainst|Ǵ +ð ADJ aValue|ֵ,circumstances|,dangerous|Σ +ð ADJ aValue|ֵ,courage|,brave| +ð V venture|ð +ðռ N human|,*venture|ð +ð ADJ aValue|ֵ,clearness|,blurred| +ð V use| +ðз ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ð V venture|ð,content=WeatherBad| +ð V venture|ð +ðΣ V venture|ð +ñ N clothing|,#head|ͷ +ñ N part|,%physical| +ñ N mark|־,$PutOn| +ñ N clothing|,#head|ͷ +ñ N part|,%clothing|,#head|ͷ +ñ N clothing|,#head|ͷ +ñ N mark|־ +ñ N part|,%clothing|,#head|ͷ +ò N attribute|,appearance|,&physical| +ò V BeIndependent| +ò V BeSimilar| +òʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ó N affairs|,commercial| +óٻ N institution|,commercial|,ProperName|ר,(China|й) +ó N part|,%institution|,#commercial|,(institution|=UN|Ϲ) +óȻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ó N affairs|,#buy|,#sell|,commercial| +óױ N facilities|ʩ,*obstruct|ֹ,#commercial| +óײ N institution|,#commercial|,ProperName|ר,politics| +ó׶ N quantity|,amount|,&sell|,commercial| +ó׷ N law|ɷ,#commercial| +ó N quantity|,amount|,&sell|,commercial| +ó N quantity|,amount|,#InDebt|,&commercial| +ó N place|ط,commercial| +ó N human|,commercial| +ó˳ N quantity|,amount|,#earn|׬,&commercial| +ó N fact|,associate|,commercial| +óȶ N attribute|,circumstances|,peaceful|,&commercial| +óս N fact|,HaveContest|,#commercial| +ô STRU {MaChinese|} +õ N character|,(China|й) +õ N FlowerGrass| +ö CLAS NounUnit|,&inanimate| +÷ N character|,surname|,human|,ProperName|ר +÷ N fruit|ˮ +÷ٿ N money|,(Mozambique|Īɣȿ) +÷ N disease| +÷ N FlowerGrass| +÷¹ N beast| +÷ N RainSnow|ѩ +÷ N fruit|ˮ +ø N part|,animate| +ù N bacteria|΢ +ù V OutOfOrder| +ù N bacteria|΢ +ù V OutOfOrder| +ù N time|ʱ,season|,#RainSnow|ѩ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N part|,%facilities|ʩ,mine| +ú N stone|ʯ,waste| +ú˶ N stone|ʯ,material|,$burn| +ú N stone|ʯ,material|,$burn|,waste| +ú N material|,liquid|Һ +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +ú N InstitutePlace|,mine| +ú N material|,gas|,$burn| +ú N tool|þ,cubic|,@store|,#gas| +ú N tool|þ,space|ռ,@burn|,*WarmUp|,*cook| +ú N material|,$burn| +ú̿ N tool|þ,material|,*lighting|ȼ,$burn| +ú N land|½,#mine| +ú N gas|,waste| +ú N stone|ʯ,waste| +úҤ N facilities|ʩ,mine| +ú N material|,liquid|Һ,$burn| +ú N material|,waste|,$burn| +úש N tool|þ,material|,$burn| +ú N material|,$burn| +û V OwnNot| +û V disappear|ʧ +û V inferior| +û V sink|³ +û V spill| +û ADV {neg|,past|} +û ADV {neg|} +ûݲ V remember|ǵ +ûϢ V BeUnable|,content=prosper| +ûʶ ADJ BeUnable|,content=speak|˵ +û V BeUnable| +û V BeUnable| +ûֿ ADJ aValue|ֵ,wholeness|ȱ,complete| +ûϵ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V OwnNot|,possession=strength| +û ADJ aValue|ֵ,content|,boring|,undesired|ݬ +û V decline|˥ +ûŶ ADJ aValue|ֵ,possibility|,impossible| +û ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +û V die| +ûŪ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +û׶ V ignorant|֪ +û׶ V unfixed|δ +ûûҹ ADJ aValue|ֵ,duration|,TimeLong| +ûʲô ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û¶ ADJ aValue|ֵ,circumstances|,idle|,desired| +û¶ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +û V levy| +ûܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷû ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ûû ADJ aValue|ֵ,behavior|ֹ,continuous| +ûû ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +û V shameless|û +û ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +û V ExistNot| +û V OwnNot| +û V inferior| +û ADV {neg|,past|} +ûб ADJ aValue|ֵ,content|,empty| +ûв ADJ aValue|ֵ,content|,pure|,desired| +ûг嵭 ADJ aValue|ֵ,concentration|Ũ,concentrated| +ûи ADJ aValue|ֵ,circumstances|,relax|,desired| +û׶ V unfixed|δ +û ADJ aValue|ֵ,occasion|,quiet|,desired| +û˵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ûͷ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,circumstances|,relax|,desired| +ûѧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +û ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +û׼ V unfixed|δ +û谭 ADJ aValue|ֵ,possibility|,impossible|,$obstruct|ֹ +û׼ V unfixed|δ +ü N part|,%AnimalHuman|,hair|ë +ü N part|,%paper|ֽ,head|ͷ +üɫ V joyful|ϲ +üЦ V laugh|Ц +üȥ V show|,content=lascivious| +üë N part|,%AnimalHuman|,hair|ë +üĿ N attribute|,appearance|,&AnimalHuman| +üĿ N attribute|,outlook|ǰ,&event|¼ +üĿ N attribute|,prettiness|,&AnimalHuman| +üĿ N part|,%thinking|˼,nerve| +üĿ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ü N part|,%AnimalHuman|,hair|ë +üͷ N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,skin|Ƥ +ü N part|,%AnimalHuman|,head|ͷ +ý N human|,*reconcile|,#GetMarried| +ý N physical|,*connect| +ý N institution|,*disseminate|,#news| +ý N physical|,*connect| +ý N human|,*reconcile|,#GetMarried| +ý N human|,*reconcile|,#GetMarried| +ý N institution|,*disseminate|,#news| +ý N tool|þ,*disseminate| +ý N physical| +þ N metal| +þ N lights| +þש N material|,*build| +ÿ ADJ qValue|ֵ,amount|,all|ȫ +ÿ CONJ {time|ʱ} +ÿ CONJ {time|ʱ} +ÿ V decline|˥ +ÿÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿʮ ADJ aValue|ֵ,frequency|Ƶ +ÿʱÿ ADV aValue|ֵ,frequency|Ƶ,often| +ÿһ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,day| +ÿСʱһ ADJ aValue|ֵ,frequency|Ƶ +ÿҳ N quantity|,amount|,&part|,#readings| +ÿҹ ADJ aValue|ֵ,frequency|Ƶ +ÿ ADJ aValue|ֵ,frequency|Ƶ +ÿ N time|ʱ,week| +ÿܶ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿ N time|ʱ,day|,#week| +ÿһ N time|ʱ,day|,#week| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + V satisfied| +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N money|,(US|) + N attribute|,name|,good|,&entity|ʵ + N {prettiness|} + N attribute|,behavior|ֹ,good|,&human| + N part|,beautiful|,%AnimalHuman|,hair|ë + N money|,(US|) + N experience|,#beautiful| + N fact|,plan|ƻ,#shows|,entertainment| + N human|,#occupation|ְλ,*plan|ƻ,#shows|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(US|) + N place|ط,country|,ProperName|ר,(North America|) + N mark|־,#country|,(US|) + N army|,ProperName|ר,(US|) + N army|,ProperName|ר,(US|) +½ս N army|,ProperName|ר,(US|) + N human|,black| +վ N army|,ProperName|ר,(US|) +½ N army|,ProperName|ר,(US|) + N human|,(US|) + N institution|,*research|о,#aircraft|,(US|) + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V beautify| + ADJ aValue|ֵ,status|,(US|) + N human|,(China|й),(US|) + N money|,(US|) + N attribute|,scene|,beautiful|,&inanimate| + N drinks|Ʒ,good|,$addict|Ⱥ + N army|,(US|) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N place|ط,country|,ProperName|ר,(US|) + N institution|,news|,ProperName|ר,(US|) + ADJ aValue|ֵ,circumstances|,happy|,desired| +ò ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ò N attribute|,appearance|,beautiful|,&human| + N thought|ͷ,#dream|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N attribute|,reputation|,glorious|,&human|,&organization|֯ + N human|,male|,beautiful|,desired| +Ů N human|,female|Ů,beautiful|,desired| +Ի V naming| + N human|,desired|,beautiful|,female|Ů + V MakeUp|ױ,#human| +ʦ N human|,#occupation|ְλ,*MakeUp|ױ,#human| +ҵ N affairs|,*MakeUp|ױ,#human| +Ժ N InstitutePlace|,@MakeUp|ױ,commercial| + N human|,commercial|,(US|) +ʳ N edible|ʳ,good|,desired| +ʳ N human|,able|,#eat| +ʽ ADJ aValue|ֵ,pattern|ʽ,(US|) + N fact|,*draw| + N knowledge|֪ʶ,entertainment| + N InstitutePlace|,@display|չʾ,literature| + N community|,literature| + N place|ط,country|,ProperName|ר,(US|),(USSR|) +̸ N fact|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N food|ʳƷ,#taste|ζ,good|,desired| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#literature| +ѧ N human|,#knowledge|֪ʶ + V praise|佱 + N affairs|,education|,#entertainment| + N attribute|,reputation|,glorious|,&human|,&organization|֯ +Ԫ N money|,(US|) +Ժ N InstitutePlace|,@teach|,@study|ѧ,#entertainment|,education| +Ժѧ N human|,*study|ѧ,education|,entertainment| +չ N InstitutePlace|,@display|չʾ,literature| +в N attribute|,quality|,weak|,undesired|ݬ,&thing| + N place|ط,ProperName|ר + V joyful|ϲ + V ignorant|֪ + V sleep|˯ + N human|,family|,female|Ů +÷ N human|,family|,male| + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,young|,female|Ů + V please|ȡ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̬ N attribute|,bearing|̬,#please|ȡ,&human|,undesired|ݬ + V please|ȡ,target=foreign| + CLAS NounUnit|,&community|,#family| + CLAS NounUnit|,&knowledge|֪ʶ + CLAS NounUnit|,&weapon| + N attribute|,kind|,&physical| + N community|,#family| + N community|,#knowledge|֪ʶ + N community|,religion|ڽ + N method| + N part|,%building|,mouth| + N part|,%implement| +Ű N part|,%implement|,*hold|,*OpenShut|,hand| +Ű N tool|þ,*cover|ڸ,*protect|,#mouth|,#house| +ų N part|,%AnimalHuman|,*bite|ҧ +Ŵ N part|,%building|,mouth| +ŵ V fit|ʺ,scope=status| +ŵ N method| +Ŷ N part|,%building|,mouth| +Ŷ N part|,%building|,mouth| +ŷ N human|,#occupation|ְλ,*defend|,#building| +ŷ N part|,%building|,#mouth|,@defend| +Ż N attribute|,status|,&human| +Ż N community| +Ż N part|,%building|,mouth| +Ż֮ N thinking|˼,biased|ƫ,undesired|ݬ +ż N method| +ż N part|,%building|,mouth| +Ž N human|,sport| +ž N human|,#occupation|ְλ,*defend|,#building|,police| +ž N method| +ſ N method| +ſ N part|,%building|,mouth| +ſȸ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ſ N human| +ſ N location|λ,space|ռ,#mouth|,#building| +ſ N part|,%building|,mouth| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N tool|þ,*cover|ڸ,#mouth|,#building| + N part|,%InstitutePlace|,#commercial|,mouth| + N tool|þ,*MakeSound| +¥ N part|,%building|,#mouth|,space|ռ +· N attribute|,relatedness|,&human| +· N method| + N attribute|,prettiness|,&physical| + N part|,%InstitutePlace|,#commercial|,mouth| + N mark|־,#building| + N symbol|,#building| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +ǰ N location|λ,%building|,mouth| + N fact|,exercise| + N part|,%building|,mouth| + N humanized| + N human|,*study|ѧ + N fact|,sell|,commercial| +в N part|,%InstitutePlace|,*sell|,commercial| + N room|,@GoInto| +ͥ N attribute|,status|,&human| +ͥ N part|,%building|,mouth| +ͥ ADJ aValue|ֵ,occasion|,bustling|,desired| +ͽ N human|,*study|ѧ +⺺ N human|,undesired|ݬ,unable|ӹ + N human|,#occupation|ְλ,*protect|,*defend| + N human|,*study|ѧ + N part|,%AnimalHuman|,*bite|ҧ + V cure|ҽ +ﲡ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ﲿ N part|,%InstitutePlace|,@cure|ҽ,medical|ҽ +ﻼ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ + N attribute|,power|,&entity|ʵ + N fittings|,%building|,mouth| + N part|,%building|,mouth| + V FeelingByBad| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + V cover|ڸ + V stay|ͣ +ƺ« N problem| + N fact|,frighten|Ż,undesired|ݬ + N thunder| +Ʋ V FeelingByBad| + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot|,undesired|ݬ +ӳ N LandVehicle| + SUFFIX aValue|ֵ,mass| + V pregnant|,agricultural|ũ +ȶ V begin|ʼ +ȶ V pregnant| +ȷ V pregnant|,agricultural|ũ + V appear| +ѿ V pregnant|,agricultural|ũ + V HideTruth| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V cover|ڸ + V dizzy| + V guess|² + V obtain|õ + N place|ط,country|,ProperName|ר,(Mongolia|ɹ) +ɱ V HideTruth| +ɴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɵά N place|ط,capital|,ProperName|ר,(Uruguay|) +ɹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mongolia|ɹ) +ɹ N place|ط,country|,ProperName|ר,(Asia|) +ɹŹ N place|ط,country|,ProperName|ר,(Asia|) +ɹ N language|,#country|,ProperName|ר +ɺ V HideTruth| +ɻ V HideTruth| +ά N place|ط,capital|,ProperName|ר,(Liberia|) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N knowledge|֪ʶ + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,bright| + V suffer|,content=unfortunate| +ƭ V deceive|ƭ + V cover|ڸ,Vachieve| + V suffer| +֮ܲԩ N suffer|,content=unfortunate| + N place|ط,city|,ProperName|ר,(Canada|ô) +ͷת V dizzy| +ͷת V ignorant|֪ +ڹ V ignorant|֪ + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,clan| + N community|,#ally| + N place|ط,#community| +˹ N place|ط,country|,*ally|,military|,desired|,#(WWII|ս) +˾ N army|,#country|,*ally|,military|,desired|,#(WWII|ս) + N human|,friend|,$ally| +Ա N human|,friend|,$ally| + N human|,official|,#ally| + N metal| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,behavior|ֹ,sudden| +͹ V attack|,manner=strong|ǿ +ͻ N beast| +ͻ V beat| +ͽ V GoForward|ǰ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N bird| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N beast| + N beast|,past| + N fact|,dream| +λ N thought|ͷ,#dream| +λӰ N thought|ͷ,#dream| +μ V perception|֪ +ξ N thought|ͷ,#dream| + N fact|,dream| + V expect|,degree=extreme| + N thought|ͷ,#dream| + V expect| + V excrete|й,medical|ҽ + V walk|,time=dream| + N human|,*walk|,*dream| +߽ V speak|˵,time=dream| +߽ N text|,#dream| +߽ N human|,*speak|˵,*dream| + N thought|ͷ,#dream| + N character|,surname|,human|,ProperName|ר +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Bangladesh|ϼ) +ϼ N place|ط,country|,ProperName|ר,(Asia|) +ϼ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N place|ط,city|,ProperName|ר,(India|ӡ) + N human|,ProperName|ר,past|,literature|,(China|й) + V CausePartMove|,#eye| + V ill|̬ + V sleep|˯ +з V CausePartMove| +з۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +ۿ V look| +ۿ V look|,manner=strong|ǿ + N chemical|ѧ + V lavish|˷ +ҷ V lavish|˷ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N crop|ׯ + N food|ʳƷ + V OutOfOrder| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N crop|ׯ + V FondOf|ϲ + V MakeMisunderstand|ʹ֪ + V attract| + V ignorant|֪ +Թ N facilities|ʩ,complicated| +Թ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ժ ADJ aValue|ֵ,clearness|,blurred| +Ժ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ժ V dizzy| +Ի V MakeMisunderstand|ʹ֪ +Ի󲻽 V confuse| +Խ N direction|,wrong| + ADJ aValue|ֵ,clearness|,blurred| + V FondOf|ϲ +· V ignorant|֪,content=direction| +· N part|,%AnimalHuman|,viscera| +ã ADJ aValue|ֵ,clearness|,blurred| +ȹ N clothing|,#leg|,#female|Ů + ADJ aValue|ֵ,ability|,&attract| + V FondOf|ϲ +ʧ V lose|ʧȥ +; V ignorant|֪ + N CloudMist|,blurred| + N entity|ʵ,*deceive|ƭ + N believe|,undesired|ݬ + N emotion|,believe|,undesired|ݬ +ס V attract| + V ignorant|֪ + N problem|,#guess|²,#recreation| +յ N result| + N problem|,#guess|²,#recreation| + ADJ aValue|ֵ,range|,all|ȫ +ֲ V enrich|ʵ +ֲ...IJ V enrich|ʵ +ֺ V enrich|ʵ + N humanized|,religion|ڽ + V BeNear|,partner=die| +֮ N time|ʱ,@BeNear|,#die| + V disperse|ɢ + N fact|,religion|ڽ +ɢ V disperse|ɢ + N character|,surname|,human|,ProperName|ר + N material|,?food|ʳƷ,#crop|ׯ + N part|,%plant|ֲ,embryo| + CLAS unit|λ,&length| +״ N material|,#food|ʳƷ,$eat|,sour| +׷ N food|ʳƷ +׷ N food|ʳƷ +׷ N material|,?food|ʳƷ,#crop|ׯ +׻ ADJ aValue|ֵ,color|ɫ,yellow| +׾ N drinks|Ʒ,$addict|Ⱥ + N place|ط,city|,ProperName|ר,(Italy|) + N material|,?food|ʳƷ,#crop|ׯ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ,fertile| + N material|,?food|ʳƷ,#crop|ׯ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| + N food|ʳƷ,liquid|Һ + N InsectWorm| +н ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ˮ N water|ˮ,waste| + ADJ aValue|ֵ,behavior|ֹ,secret| +ط N document|,medical|ҽ,#medicine|ҩ +ط N method|,*cure|ҽ +ؾ N method|,secret| +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Peru|³) +³ N place|ط,country|,ProperName|ר,(South America|) +³ N human|,(Peru|³) + ADJ aValue|ֵ,behavior|ֹ,secret| + N fact|,secret| +ܻ N fact|,discuss|,secret| + N human|,#occupation|ְλ,employee|Ա +鳤 N human|,#occupation|ְλ,official| +鴦 N part|,%institution|,politics|,(institution|=UN|Ϲ) +鴦 N part|,%organization|֯ + N part|,%organization|֯ + N information|Ϣ + V LookFor|Ѱ +ʳ V LookFor|Ѱ,content=edible|ʳ + V excrete|й + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,taste|ζ,sweet| + N food|ʳƷ +۷ N InsectWorm|,*fly| +۸ N fruit|ˮ +۽ N food|ʳƷ,#fruit|ˮ + N part|,%FlowerGrass|,nerve| + N time|ʱ,#GetMarried| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ܱ ADJ aValue|ֵ,property|,$shut|ر +ܲɷ ADJ aValue|ֵ,relatedness|,intimate| +ܲ V exist| +ܶ N attribute|,density|ܶ,&physical| +ܷ ADJ aValue|ֵ,property|,$shut|ر +ܷȦ N tool|þ,*shut|ر +ܷ N attribute|,tightness|ɽ,&implement| +ܼ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ܼ ADJ aValue|ֵ,property| + N tree| + N symbol|,secret| + ADJ aValue|ֵ,density|ܶ,dense| +ܲ ADJ aValue|ֵ,density|ܶ,dense| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,density|ܶ,dense| +ı V plan|ƻ +ı N human|,*plan|ƻ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| + V discuss|,manner=secret| +ʵ ADJ aValue|ֵ,density|ܶ,dense| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̸ N fact|,talk|̸,secret| +̸ V talk|̸,manner=secret| +̽ N human|,#occupation|ְλ,police|,military|,*scout| +Ъ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,friend| +Ʋ V AptTo| +ֲ V planting|ֲ,agricultural|ũ + N crop|ׯ,?material| +ް N clothing|,#body| +ޱ N tool|þ,*cover|ڸ,#sleep|˯ +޲ N material|,?clothing|,?tool|þ +޷ N fact|,produce| +޷ij N InstitutePlace|,@produce|,factory|,industrial| +޷֯ N fact|,produce| +޺֩ N InsectWorm|,undesired|ݬ +޺ N clothing|,#body| +޻ N material|,?clothing|,?tool|þ +޿ N clothing|,#leg| + N InsectWorm| +ë N clothing|,#leg| +ë N clothing|,#body| +ũ N human|,#occupation|ְλ,*planting|ֲ,#crop|ׯ,agricultural|ũ +ɴ N material|,?clothing| + N land|½,@planting|ֲ,#crop|ׯ + N tool|þ,linear|,*fasten|˩ +Ь N clothing|,#foot| + N material|,?clothing|,?tool|þ + N InsectWorm|,undesired|ݬ + N clothing| +֯Ʒ N clothing|,generic|ͳ + N part|,%plant|ֲ,embryo| + V sleep|˯ + ADJ aValue|ֵ,hardness|Ӳ,soft| + N material|,clothing| +ౡ N attribute|,strength|,&human| +೤ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + V enlarge| + N livestock| + N place|ط,city|,ProperName|ר,(China|й) +ب V enlarge| + N clothing|,#head|ͷ,royal| + V discharge| + V escape| + V exempt| + V remove| + V exempt| + V obstruct|ֹ + V escape| + ADJ aValue|ֵ,property|,^$pay| + V OwnNot|,possession=clothing| + V StripOff|ȥ,patient=clothing| +Ʊ ADJ aValue|ֵ,property|,^$pay| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,cheap| +ȥ V discharge|,Vachieve| + V escape| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V aValue|ֵ,ability|,able|,$exempt| +˰ ADJ aValue|ֵ,ability|,able|,$exempt| +˰ V exempt|,ResultEvent=submit| +˰Ʒ N artifact|˹ + V exempt|,ResultEvent=punish|,police| + ADJ aValue|ֵ,ability|,able|,exempt|,#disease|,medical|ҽ + ADJ attribute|,ability|,able|,exempt|,#disease|,medical|ҽ + N attribute|,ability|,escape|,&human| + V exempt|,ResultEvent=accuse|ظ,police| + V exempt| + V exempt| +˰ V exempt|,ResultEvent=submit| +ְ V dismiss| + V exempt|,ResultEvent=punish|,police| + V endeavour| + V mobilize| + V mobilize| + V urge|ʹ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ǿ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +ǿ V endeavour| +ǿ V force|ǿ +ǿ ADJ qValue|ֵ,amount|,few| + V GiveBirth|,medical|ҽ + ADJ aValue|ֵ,duration|,TimeLong| + N place|ط,country|,ProperName|ר,(Burma|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Burma|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +廳 V LookBack| + V LookBack| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ԫ N money|,(Burma|) + ADJ aValue|ֵ,hardness|Ӳ,soft| + N attribute|,range|,&entity|ʵ + V facing| + N food|ʳƷ + N location|λ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%entity|ʵ,aspect| + N part|,%image|ͼ + N part|,%physical|,head|ͷ + N part|,%physical|,surfacial| + N part|,%physical|,surfacial|,external| + N shape| + N part|,%implement| + N tool|þ,#cook| + N food|ʳƷ + N LandVehicle|,*tour| +ͻ N food|ʳƷ +ʦ N human|,#occupation|ְλ,*cook| +治ɫ V calm| +沿 N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ +泯 V facing| + V facing| + V facing| + V facing| + N quantity|,amount|,&money| + N material|,?food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ +۳ N InstitutePlace|,@produce|,factory|,industrial| + V excited| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N food|ʳƷ +Ƽ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,size|ߴ,surfacial|,&inanimate| + N part|,%AnimalHuman|,skin|Ƥ + N food|ʳƷ + N tool|þ,*cover|ڸ + N part|,%AnimalHuman|,skin|Ƥ + N material|,?clothing| + V facing| +ò N attribute|,appearance|,#skin|Ƥ,&AnimalHuman| +ò N attribute|,appearance|,&inanimate| +òһ ADJ aValue|ֵ,newness|¾,new|,desired| + N part|,%entity|ʵ,aspect|,all|ȫ +㵽 ADJ aValue|ֵ,range|,all|ȫ + V disappointed|ʧ +Ŀ N attribute|,appearance|,&AnimalHuman| +Ŀ N attribute|,appearance|,&inanimate| +Ŀ N attribute|,reputation|,&human| +Ŀȫ V change|,result=^$perception|֪ +Ŀһ V change|,StateFin=new| + N part|,%AnimalHuman|,skin|Ƥ +Ǣ V discuss| +ǰ N location|λ,InFront|ǰ + N attribute|,appearance|,&AnimalHuman| +ɫ V fear| +ɫ N attribute|,color|ɫ,#skin|Ƥ,&AnimalHuman| +ɫ N attribute|,countenance|,&AnimalHuman| +ɴ N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,relatedness|,intimate| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ʳ N food|ʳƷ + V appear| + V appear| + V meet| + V teach|,manner=self| +ڻ V teach|,content=method|,manner=self| + ADJ aValue|ֵ,relatedness|,intimate| + N tool|þ +̸ V talk|̸ + N food|ʳƷ,liquid|Һ + N food|ʳƷ + N food|ʳƷ +ɫ V fear| + V benefit| + V facing| + V discuss| + N tool|þ,*protect|,#skin|Ƥ +ֵ N attribute|,value|ֵ,&coupon|Ʊ֤,&money| +ֵ N quantity|,amount|,&coupon|Ʊ֤,&money| + N attribute|,reputation|,&human|,&organization|֯ + N part|,%physical|,skin|Ƥ + N animal|,young| + N character|,surname|,human|,ProperName|ר + N medicine|ҩ + N physical|,young| + N plant|ֲ,young| +紲 N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ľ N plant|ֲ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,fatness|,bony|,desired| +ͷ N phenomena|,#fact| + N human|,future| +կ N place|ط,village| + N human| + N plant|ֲ,young| + N community|,ProperName|ר,(China|й) + V MakeBetter|Ż + V copy|д +軭 V describe|д +軭 V draw| + V describe|д +ü V MakeUp|ױ +ġ V describe|д + V describe|д + N describe|д + V describe|д +д V describe|д + V AimAt| +׼ V AimAt| + ADJ aValue|ֵ,size|ߴ,small|С + V despise| +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N time|ʱ,hour|ʱ + N time|ʱ,special| + CLAS unit|λ,&time|ʱ + N tool|þ,*tell|,#time|ʱ + N part|,%tool|þ,#tell|,#time|ʱ,#minute| + CLAS unit|λ,&time|ʱ + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +ã V aValue|ֵ,clearness|,blurred| +ã ADJ aValue|ֵ,clearness|,blurred| +ã V unfixed|δ +С ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ + N InstitutePlace|,space|ռ,commercial| + N facilities|ʩ,space|ռ,religion|ڽ + N InstitutePlace|,*sell|,@buy|,commercial| + N facilities|ʩ,religion|ڽ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,content|,refined| + ADJ aValue|ֵ,age|,young| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N knowledge|֪ʶ,superior| +ֻش V succeed|ɹ,scope=cure|ҽ + N text|,interesting|Ȥ + N human|,*BeAble|ܹ,#speak|˵ + V despise| + V slander|̰ + V despise| + V TurnOff|ֹ + V destroy| + V disappear|ʧ + V sink|³ +֮ N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + V TurnOff|ֹ + V remove|,patient=fire| + N tool|þ,*remove|,#fire| + N tool|þ,*remove|,#fire| + V perish| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V destroy| + N destroy| + V destroy|,patient=bacteria|΢,medical|ҽ + V kill|ɱ,crime| + V perish| + V disappear|ʧ + N human|,mass| + ADJ aValue|ֵ,attachment| + N human|,military| + V unfortunate| + N attribute|,behavior|ֹ,&human|,&organization|֯ + N law|ɷ +񷨵 N document|,#law|ɷ + N house| + N emotion|,angry|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N music| +谮 N human|,*FondOf|ϲ,#music| + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,employee|Ա +񹤳 N fact|,#employee|Ա + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N affairs|,#VehicleGo|ʻ,#aircraft| + ADJ aValue|ֵ,attachment| + N location|λ,%community| + N community|,politics|,ProperName|ר,(China|й) + N community|,politics|,ProperName|ר,(China|й) + N human|,#occupation|ְλ,police| + N institution|,police| + N music| + N community|,politics|,ProperName|ר,(China|й) +Ʒ N artifact|˹,^military|,generic|ͳ + N attribute|,circumstances|,&human|,&organization|֯ + N emotion| +Ȩ N rights|Ȩ + N affairs| + ADJ aValue|ֵ,attachment| +° N fact|,police| + N fact|,police| + N duty|,police| + N attribute|,habit|ϰ,&human| +ѧ N knowledge|֪ʶ +ί N institution|,#community|,ProperName|ר,politics|,(China|й) + N emotion| +ѡ V undergo|,content=select|ѡ,agent=community| + N expression| +ҥ N music| + N aspiration|Ը,expect| + V estimate| + N estimate| +ר N human|,*investigate| + ADJ aValue|ֵ,ability|,able|,$use| +Թ V unsatisfied| + N fact|,function|,politics| + N human|,undesired|ݬ,*betray|,treacherous| + N affairs| + N institution|,ProperName|ר,politics| + N human|,mass| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N community|,politics|,ProperName|ר,(US|) + N community|,politics|,(China|й) + N human|,politics| + V ize|̬ + N thinking|˼ + N community| +ͥ N community| + N place|ط,village| + N human| +ʲ׼ N community| + N phenomena|,undesired|ݬ,#unfortunate|,hardship| + V apply|ͿĨ + V drink| + V fold|ߡ + V inlay|Ƕ + V shut|ر + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,ability|,nimble|,#perception|֪ +ж N attribute|,behavior|ֹ,clever|,&physical| + N attribute|,behavior|ֹ,clever|,&physical| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,wisdom|ǻ,clever|,&human|,&organization|֯ + V pity| + V sad|dz + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + N aValue|ֵ,time|ʱ,future| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N ability|,#look|,#eye| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,future|,day| + V understand| + N attribute|,brightness|,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ƿ V distinguish|ֱ,content=correctness| +鰵 V investigate| +찵 V investigate| + V know|֪ + ADJ aValue|ֵ,content|,easy|,desired| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + N time|ʱ,ProperName|ר,#royal|,#country| + N facilities|ʩ,*illuminate| + N time|ʱ,future|,day| + N chemical|ѧ + N facilities|ʩ + N celestial| +λ ADJ aValue|ֵ,brightness|,bright| + N fire| +ִ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ + N material|,sticky| + N tool|þ,*look|,#self|,bright| + N phenomena|,#judge|ö,fair|,police| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,content|,easy|,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ know|֪ + ADJ aValue|ֵ,content|,opened| + V know|֪ + N text|,*order| + ADJ aValue|ֵ,content|,opened| + N symbol| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ŀ V brighten|ʹ,patient=eye| +Ŀŵ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +մ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,year|,future| +ǰ N part|,%plant|ֲ,hair|ë + N time|ʱ,ProperName|ר,#royal|,#country| +ȷ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ȷ V decide| +˲ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N time|ʱ,future| + N time|ʱ,future|,day| +ջƻ N physical|,used| +ʯ N chemical|ѧ +ʾ V teach|,manner=opened| +˵ V speak|˵,opened| +˹ N place|ط,capital|,ProperName|ר,(Byelorussia|׶˹) + N time|ʱ,future| + N time|ʱ,future|,day| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +ϸ ADJ aValue|ֵ,property|,$enrich|ʵ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +ϸ N account|,@record|¼,#wealth|Ǯ +Ϻ N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N tool|þ,*transmit|,#electricity| +Ƭ N letter|ż + N human|,*perform|,glorious|,entertainment| + N human|,wise|,desired| + N celestial| +ܱ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V fight| +֤ N information|Ϣ,*prove|֤ +֪ V know|֪ +֪ʷ V disobey|Υ +֪ V ask| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N material|,$burn|,*lighting|ȼ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,family|,male|,young| + V MakeSound| + V cry| + V express|ʾ +ƽ V protest| + V MakeSound| + V cry| +ձ V cease|ͣ,content=fight|,military| +࿪ V guide| +ǹ V firing| +ǹʾ V firing| + N bird|,#MakeSound| +л V thank|л +ԩ V protest| + V cry|,#bird| + N weapon|,past| + V carve| + V remember|ǵ + V carve| + V remember|ǵ + N mark|־,#implement| + N text|,$carve| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,name|,&entity|ʵ +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,reputation|,Notwellknown| +鴫 ADJ aValue|ֵ,trueness|α,true|,desired| + N food|ʳƷ,glorious| + N account|,*record|¼,#name| + N drinks|Ʒ,glorious| + N artifact|˹,glorious|,generic|ͳ,commercial| + N LandVehicle|,glorious| + N attribute|,name|,&entity|ʵ + N place|ط,glorious| + N human|,*cook|,glorious| +ʷ ADJ aValue|ֵ,reputation|,glorious|,desired| + N part|,%language| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ʵ V perish| + N account|,*record|¼,#name| + N quantity|,amount|,&human|,&organization|֯ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N place|ط,city|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,value|ֵ,precious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N attribute|,name|,&organization|֯ + N human|,desired|,able|,glorious| + N human|,official|,glorious|,military| + N human|,*perform|,glorious|,entertainment| + V undergo|,content=naming| + N drinks|Ʒ,$addict|Ⱥ,glorious| + N expression|,glorious| + N attribute|,reputation|,wealth|Ǯ,&human|,&organization|֯ +˫ V obtain|õ,possession=reputation|,possession=wealth|Ǯ + N {NounUnit|} + V become|Ϊ +а V succeed|ɹ,scope=HaveContest| +а V succeed|ɹ,scope=compete| +ǰé V succeed|ɹ,scope=HaveContest| + N human|,*perform|,glorious|,entertainment| + N human|,desired|,able|,glorious| +ɽ V fail|ʧ +Ŀ N attribute|,kind|,&inanimate| +Ŀ ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N artifact|˹,glorious|,generic|ͳ,commercial| + N mark|־,#name| + N mark|־,*visit| + N mark|־,desired|,glorious| +ƲƷ N artifact|˹,glorious|,generic|ͳ,commercial| +Ƭ N tool|þ,*display|չʾ,#status|,#occupation|ְλ,#name| +Ʒ N artifact|˹,glorious|,generic|ͳ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N music|,glorious| + N human|,desired|,glorious| +ɽ N land|½,glorious| +ɽ N place|ط,glorious| + N attribute|,reputation|,&human|,&organization|֯ + V enjoy|,content=glorious| +ʤ N place|ط,glorious|,@tour| +ʤż N place|ط,glorious|,beautiful|,desired|,#tour| +ʦ N human|,*teach|,glorious| +ʿ N human|,desired|,glorious| + N human|,literature|,glorious| + N attribute|,kind|,&inanimate| + N reason| + N result| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N location|λ + N text|,glorious|,desired| +ĺ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҽ N human|,medical|ҽ,*cure|ҽ,glorious| + ADJ aValue|ֵ,trueness|α,fake|α + N attribute|,name|,&entity|ʵ + ADJ aValue|ֵ,trueness|α,fake|α + N human|,*perform|,glorious|,entertainment| +ŲƷ N artifact|˹,glorious|,generic|ͳ,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + N attribute|,reputation|,&human|,&organization|֯ +ɨ V unfortunate|,scope=disgraced| +һʱ V enjoy|,content=glorious| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N publications|鿯,glorious| + N attribute|,name|,&entity|ʵ + N publications|鿯,glorious| + N attribute|,circumstances|,&human|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N information|Ϣ,*order| + V order| + N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| + V write|д + N attribute|,strength|,&animate|,&organization|֯ + V order| + N text|,*order| + N attribute|,strength|,&animate|,&organization|֯ + N part|,%AnimalHuman|,strength| + V RegardAs| + N human|,*RegardAs| + N information|Ϣ +; V unfortunate| + N attribute|,circumstances|,&human| + V shoot| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N text|,wrong|,undesired|ݬ + N result|,wrong|,undesired|ݬ + V LookFor|Ѱ + V TryToKnow|Ū + V feel| + V stroke| +Ŷ V ignorant|֪ +ͷ V ignorant|֪ + V PickOut|γ + V TryToKnow|Ū + V LookFor|Ѱ,content=route|·,time=night| +Ŷ V understand| + V TryToKnow|Ū + V LookFor|Ѱ + V TryToKnow|Ū +ͷ V understand| +͸ V understand| +Ϲ V LookFor|Ѱ,content=route|·,time=night| +ġ V copy|д +ġ V imitate|ģ +ġд V copy|д +ġд V describe|д +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ N vegetable|߲ +Ģ V MakeTrouble| +Ģ N part|,%vegetable|߲,embryo|,$eat| +Ģ V slack|͵ +Ģ N vegetable|߲ +Ģ N CloudMist| +ģ N regulation| +ģ N tool|þ,*produce| +ģ N tool|þ,*build| +ģ N tool|þ,*produce| +ģ N human|,desired|,$imitate|ģ +ģ V imitate|ģ +ģ V CauseToDo|ʹ,ResultEvent=blurred| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ V mix| +ģ ADJ aValue|ֵ,clearness|,blurred| +ģ N tool|þ,*produce| +ģ N part|,%entity|ʵ +ģ黯 V aValue|ֵ,property|,$ize|̬ +ģ黯 V ize|̬ +ģ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ģ V imitate|ģ +ģ N tool|þ,*imitate|ģ +ģʽ N attribute|,pattern|ʽ,&physical| +ģʽʶ V perception|֪,content=pattern|ʽ,#computer| +ģ N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģض N human|,#occupation|ְλ,*display|չʾ,#clothing|,entertainment| +ģ N tool|þ,*produce| +ģѹ V produce|,industrial| +ģ N attribute|,appearance|,&AnimalHuman| +ģ N tool|þ,*produce| +Ĥ N part|,%AnimalHuman| +Ĥ N shape| +Ĥ V salute|¾ +ĤƬ N part|,%implement| +ĥ V MakeTrouble| +ĥ V OutOfOrder| +ĥ V brighten|ʹ +ĥ V grind|ĥ +ĥ V lavish|˷,patient=time|ʱ +ĥ V remove| +ĥ V rub|Ħ +ĥ N tool|þ,*grind|ĥ +ĥ V turn|Ťת +ĥ V embarrassed|Ϊ +ĥ V rub|Ħ +ĥ V slack|͵ +ĥ N machine|,*grind|ĥ +ĥ V sharpen|ʹ,patient=tool|þ +ĥʯ N tool|þ,*rub|Ħ +ĥÿ V AtEase| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ N InstitutePlace|,@produce|,factory|,industrial| +ĥ V brighten|ʹ +ĥ V OutOfOrder| +ĥ V improve| +ĥ N material|,*rub|Ħ,generic|ͳ +ĥ V disappear|ʧ +ĥ V remove| +ĥ N phenomena|,undesired|ݬ,#unfortunate| +ĥ V unfortunate| +ĥ N tool|þ,*grind|ĥ +ĥɰ N material|,?tool|þ +ĥʴ V OutOfOrder|,industrial| +ĥ V OutOfOrder|,industrial| +ĥ V grind|ĥ,industrial| +ĥ V CausePartMove|,PatientPartof=mouth| +ĥ V TalkNonsense|Ϲ˵ +ĥ V slack|͵ +ĥƤ V TalkNonsense|Ϲ˵ +ĥ V improve| +Ħ V research|о +Ħ V rub|Ħ +Ħ V stroke| +Ħ V HaveContest| +Ħ V rub|Ħ +Ħ N attribute|,strength|,rub|Ħ,&entity|ʵ +Ħ ADJ aValue|ֵ,newness|¾,new|,desired| +Ħ N tool|þ,*illuminate|,#LandVehicle| +Ħά N language|,#country|,ProperName|ר +Ħӵɳ N place|ط,capital|,ProperName|ר,(Somalia|) +Ħ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Morocco|Ħ) +Ħ N place|ط,country|,ProperName|ר,(Africa|) +Ħķ N money|,(Morocco|Ħ) +Ħ N human|,(Morocco|Ħ) +Ħɸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,capital|,ProperName|ר,(Monaco|Ħɸ) +Ħɸ N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ħɸ N human|,(Monaco|Ħɸ) +Ħ ADJ aValue|ֵ,height|߶,tall| +Ħ¥ N house| +Ħ N machine| +Ħг N LandVehicle| +Ħд N ship| +Ħл N human|,military| +Ħ N InstitutePlace|,#tool|þ,#communicate|,commercial| +Ħͧ N ship| +Ħ V stroke| +ħ N humanized|,undesired|ݬ +ħ N method|,undesired|ݬ,*deceive|ƭ +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ +ħ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ħ N attribute|,power|,&human|,&organization|֯ +ħ N shows| +ħʦ N human|,#occupation|ְλ,*perform|,entertainment| +ħԱ N human|,#occupation|ְλ,*perform|,entertainment| +ħ N humanized|,undesired|ݬ,fierce| +ħ N human|,fierce|,*MakeBad|Ӻ,undesired|ݬ +ħ N FlowerGrass|,?edible|ʳ +ħ N phenomena|,dangerous|Σ,#unfortunate| +Ĩ V TurnRound| +Ĩ V apply|ͿĨ +Ĩ V remove| +Ĩ V wipe| +Ĩ V weep| +Ĩ V suicide|ɱ +Ĩ V embarrassed|Ϊ +Ĩ N tool|þ,*wipe| +Ĩ N tool|þ +Ĩÿ V AtEase| +Ĩ V slander|̰ +Ĩ V apply|ͿĨ,material=material|,industrial| +Ĩȥ V remove| +Ĩɱ V remove| +Ĩɷ V remove| +Ĩ㾨 N beast|,*swim| +Ĩһӻ V fail|ʧ +ĩ N part|,%thing|,head|ͷ +ĩ N part|,%thing|,secondary| +ĩ N process|,ending|ĩ +ĩ N shape| +ĩ N time|ʱ,ending|ĩ +ĩ N location|λ,ending|ĩ +ĩ N time|ʱ,TenDays|Ѯ,#hot| +ĩ N time|ʱ,day|,#hot| +ĩ N part|,%thing|,secondary| +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N process|,ending|ĩ +ĩ N time|ʱ,ending|ĩ +ĩ N time|ʱ,#die| +ĩ N part|,%thing|,head|ͷ +ĩ N time|ʱ,ending|ĩ +ĩβ N process|,ending|ĩ +ĩҶ N time|ʱ,ending|ĩ,royal| +ĩ N shape| +Ī N character|,surname|,human|,ProperName|ר +Ī AUX {modality|} +Ī ADV aValue|ֵ,range|,all|ȫ +Ī ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +Ī ADJ aValue|ֵ,content|,profound|,desired| +Īȱȸ N place|ط,capital|,ProperName|ר,(Papua New Guinea|Ͳ¼) +Ī CONJ {comment|} +Ī V inferior| +Ī״ ADJ aValue|ֵ,possibility|,impossible|,$describe|д +Ī N place|ط,capital|,ProperName|ר,(the Comoros|Ħ) +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ī ADJ aValue|ֵ,behavior|ֹ,queer| +Ī V ignorant|֪ +Ī ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ī ADV {modality|} +Ī ADV {modality|} +Īɣȿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mozambique|Īɣȿ) +Īɣȿ N place|ط,country|,ProperName|ר,(Africa|) +Īɣȿ N human|,(Mozambique|Īɣȿ) +Ī˹ N place|ط,capital|,ProperName|ר,(Russia|˹) +Ī ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Īһ V BeUnable|,content=decide| +ī N PenInk|ī,*write|д +ī ADJ aValue|ֵ,brightness|,dark| +ī ADJ aValue|ֵ,color|ɫ,black| +ī N community| +ī N knowledge|֪ʶ +ī N place|ط,country|,ProperName|ר,(Mexico|ī) +ī N artifact|˹,#image|ͼ,entertainment| +ī N fish| +ī N place|ط,city|,ProperName|ר,(Australia|Ĵ) +ī N character|,surname|,human|,ProperName|ר +ī N PenInk|ī,liquid|Һ,#write|д +ī ADJ aValue|ֵ,color|ɫ,black| +ī N trace|,#write|д +ī N tool|þ,*protect|,#eye|,#look| +ī ADJ aValue|ֵ,color|ɫ,green| +īɫ ADJ aValue|ֵ,color|ɫ,green| +īسɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +īط N human|,stiff| +īˮ N PenInk|ī,liquid|Һ,#write|д +īˮ N knowledge|֪ʶ +īˮ N trace| +ī ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Mexico|ī) +ī N place|ط,country|,ProperName|ר,(South America|) +ī N place|ط,capital|,ProperName|ר,(Mexico|ī) +ī N human|,(Mexico|ī) +ī N waters|ˮ,(Mexico|ī) +ī N water|ˮ,(Mexico|ī) +ī N fish| +ī֭ N PenInk|ī,liquid|Һ,#write|д +Ĭ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ĭ V write|д +Ĭ V condole|° +Ĭ V recite|ж +Ĭ V recite|ж +Ĭ N shows| +ĬĬ ADJ aValue|ֵ,occasion|,quiet|,desired| +ĬĬ ADV aValue|ֵ,behavior|ֹ,gentle| +ĬĬ ADJ aValue|ֵ,reputation|,Notwellknown| +Ĭ V LookBack| +Ĭ V recite|ж +ĬƬ N shows| +Ĭ N result|,#agree|ͬ +ĬȻ ADV aValue|ֵ,behavior|ֹ,gentle| +Ĭ V agree|ͬ +Ĭ V write|д +Ĭ V think|˼ +Ĭд V write|д +Ĭ V agree|ͬ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N gas|,#liquid|Һ,round|Բ +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į N land|½,surfacial|,barren| +Į ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ĮĮ ADJ aValue|ֵ,area|,wide| +ĮĮ ADJ aValue|ֵ,clearness|,blurred| +ĮȻ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Į V despise| +į ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +İ N facilities|ʩ,route|· +İ· N human|,unfamiliar|϶ +İ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +İ N human|,unfamiliar|϶ +ı V plan|ƻ +ı V seek|ıȡ +ıƺ V kill|ɱ,purpose=wealth|Ǯ,crime| +ı V uprise| +ı V seek|ıȡ,possession=pros| +ı V kill|ɱ,crime| +ı V plan|ƻ +ı V seek|ıȡ,possession=fund|ʽ +ı N plans|滮 +ı V meet|,partner=EachOther|໥ +ı V seek|ıȡ +ıȡ V seek|ıȡ +ıɱ V kill|ɱ,crime| +ı V MakeLiving|ı +ı V seek|ıȡ +ı· V seek|ıȡ,possession=method|,#alive| +ıʿ N human|,friend| +ı V plan|ƻ,content=fact| +ı V seek|ıȡ,possession=occupation|ְλ +ı˽ V seek|ıȡ,possession=pros|,undesired|ݬ +ıְ V seek|ıȡ,possession=occupation|ְλ +IJ V seek|ıȡ +IJ V seek|ıȡ,possession=pros|,undesired|ݬ +IJ V seek|ıȡ,possession=wealth|Ǯ +IJȡ V seek|ıȡ +IJȡ V seek|ıȡ,possession=wealth|Ǯ +ij ADJ aValue|ֵ,kind|,certain|ij +ijij ADJ aValue|ֵ,kind|,certain|ij +ijЩ ADJ aValue|ֵ,kind|,certain|ij +Ĵ N character|,(China|й) +Ĵָ N part|,%AnimalHuman|,hand| +ĵ ADJ aValue|ֵ,sex|Ա,male| +ĵ N FlowerGrass| +ĵ N place|ط,city|,ProperName|ר,(China|й) +ĵ N fish| +Ķ CLAS unit|λ,&area| +Ķ N quantity|,amount|,&create|,agricultural|ũ +Ķ N quantity|,amount|,&create|,agricultural|ũ +ķ N character|,(China|й) +ķͰ N place|ط,capital|,ProperName|ר,(Swaziland|˹ʿ) +ĸ ADJ aValue|ֵ,importance|,main| +ĸ ADJ aValue|ֵ,sex|Ա,female|Ů +ĸ N human|,family|,female|Ů +ĸ N part|,%implement| +ĸ N part|,%thing|,base| +ĸ N emotion|,like|ϧ,kindhearted|,desired| +ĸ N plant|ֲ +ĸ N InsectWorm| +ĸ˾ N InstitutePlace|,commercial| +ĸ N livestock|,female|Ů +ĸ N aircraft| +ĸ N machine| +ĸ N bird|,female|Ů +ĸϻ N beast|,female|Ů +ĸϻ N human|,female|Ů,undesired|ݬ,fierce| +ĸ N livestock|,female|Ů +ĸţ N livestock|,female|Ů +ĸŮ N human|,family|,mass| +ĸ N human|,family|,female|Ů +ĸ N part|,%AnimalHuman|,$drink|,liquid|Һ +ĸι V feed|ι,patient=part|,#AnimalHuman| +ĸɽ N beast|,female|Ů +ĸʨ N beast|,female|Ů +ĸ N human|,family|,female|Ů +ĸϵ ADJ aValue|ֵ,attachment| +ĸ N image|ͼ,linear| +ĸ N part|,machine| +ĸУ N InstitutePlace|,@teach|,@study|ѧ,education| +ĸ ADJ aValue|ֵ,attachment| +ĸ N livestock| +ĸҺ N chemical|ѧ +ĸ N sound|,#language| +ĸ N language| +ĸ N plant|ֲ +ĸ N livestock|,female|Ů +ĸ N human|,family|,mass| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N mark|־,#facilities|ʩ,#bury|,#human|,#die| +Ĺ N part|,%facilities|ʩ,#facilities|ʩ,#bury|,#human|,#die|,route|· +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺǰ N location|λ,%facilities|ʩ,InFront|ǰ +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĹѨ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ĺ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +ĺ ADJ aValue|ֵ,earliness|,late| +ĺ N time|ʱ,night| +ĺ N time|ʱ,spring| +ĺij N fact|,persuade|Ȱ˵ +ĺ N aValue|ֵ,age|,aged| +ĺ N time|ʱ,#aged| +ĺɫ N attribute|,scene|,night|,&inanimate| +ĺ N CloudMist| +Ļ N part|,%shows| +Ļ N tool|þ,#perform| +Ļ N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,#perform| +Ļ N tool|þ,#perform|,*cover|ڸ,*decorate|װ +Ļ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +Ļ V incite|ָʹ,manner=hidden| +Ļ N human|,*incite|ָʹ,hidden| +Ļ N fact|,hidden|,undesired|ݬ +Ļ N fact|,hidden|,undesired|ݬ +Ļ N news|,#fact|,#hidden| +ĻϢ N time|ʱ,@rest|Ϣ,#look|,#listen|,#shows| +Ļ N human|,#occupation|ְλ,official| +ļ V gather|ɼ +ļ V include| +ļ V gather|ɼ,possession=fund|ʽ +ļ V gather|ɼ +ļ V gather|ɼ +ļ V gather|ɼ +Ľ V admire|Ľ +Ľ N character|,surname|,human|,ProperName|ר +Ľ V admire|Ľ +Ľ N place|ط,city|,ProperName|ר,(Germany|¹) +Ľ N character|,surname|,human|,ProperName|ר +ľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľ V paralyse|̱ +ľ N tool|þ,cubic|,@store|,#human|,#die| +ľ N tree| +ľ N wood|ľ +ľ N material|,wood|ľ +ľ N tool|þ,*print|ӡˢ +ľ N shape|,wood|ľ +ľ ADJ aValue|ֵ,attachment|,wood|ľ +ľ N material|,wood|ľ +ľ N material|,wood|ľ,*lighting|ȼ,$burn| +ľ N artifact|˹,$carve|,entertainment| +ľ N human|,#occupation|ְλ,industrial| +ľ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ľ N AlgaeFungi|ֲ +ľ N ship| +ľ N human|,#occupation|ְλ,employee|Ա +ľ N fruit|ˮ +ľ N shape|,wood|ľ +ľʯ N stone|ʯ +ľ N material|,?paper|ֽ +ľ N human|,#occupation|ְλ,employee|Ա +ľ V carve|,LocationFin=wood|ľ,literature| +ľ N shape|,wood|ľ +ľ N FlowerGrass| +ľ N material|,wood|ľ +ľ N SportTool|˶ +ľ N plans|滮 +ľ N tool|þ,*recreation| +ľ N crop|ׯ,?material| +ľ N human|,*die|,dried| +ľż N tool|þ,*recreation| +ľ N tool|þ,generic|ͳ,#wood|ľ +ľȻ V stupefied|ľȻ +ľ N fruit|ˮ +ľ̿ N stone|ʯ,material|,*lighting|ȼ,$burn| +ľͷ N material|,wood|ľ +ľͷľ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľͷ˶ N human|,NotQuick|ګ,undesired|ݬ +ľϬ N FlowerGrass| +ľϬ N food|ʳƷ +ľϬ N tree| +ľ N celestial| +ľѳ V fixed|Ѷ +ľ N MusicTool| +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľ ADJ aValue|ֵ,source|Դ,wood|ľ +ľګ N aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +ľܽ N FlowerGrass| +ľ N clothing|,#foot| +ľ N tool|þ,*beat| +ľ N food|ʳƷ +ľ N tree| +Ŀ N document|,@record|¼ +Ŀ N part|,%AnimalHuman|,#eye| +Ŀ N part|,%text| +Ŀ N purpose|Ŀ +Ŀ N tool|þ,#weapon|,$AimAt|,$firing| +Ŀֵ N quantity|,amount|,&entity|ʵ +Ŀʶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ĿϾ ADJ aValue|ֵ,amount|,many| +ĿϾ ADJ qValue|ֵ,amount|,many| +Ŀб V look|,manner=PayAttention|ע +Ŀת V look|,manner=PayAttention|ע +Ŀ V measure|,instrument=eye| +Ŀ N part|,%readings|,content| +Ŀ N purpose|Ŀ +Ŀĵ N location|λ,@arrive| +Ŀĸ N location|λ,@arrive| +Ŀɿڴ V stupefied|ľȻ +Ŀ V perception|֪,means=look| +Ŀ N experience| +Ŀ N thinking|˼ +Ŀdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ綹 ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ŀ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ŀ׺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ŀ V perception|֪,means=look| +Ŀ N human|,*perception|֪ +Ŀ N human|,*prove|֤,#police| +Ŀ֤ N human|,*perception|֪ +Ŀ V perception|֪,means=look| +Ŀ N tool|þ,*look| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ŀ¼ N part|,%readings|,content| +Ŀ¼ N part|,%thing|,kind| +Ŀɫ V ignorant|֪ +Ŀǰ N time|ʱ,now| +Ŀ ADJ aValue|ֵ,property|,look| +Ŀ V farewell|,means=look| +Ŀ޷ ADJ aValue|ֵ,behavior|ֹ,undesired|ݬ +Ŀȫţ ADJ aValue|ֵ,ability|,able|,desired| +Ŀѣ V dizzy|,medical|ҽ +Ŀ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V TakeCare|,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N FlowerGrass|,#livestock| + N place|ط,@foster|,#livestock|,agricultural|ũ + N music| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ + N land|½,#FlowerGrass| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ʦ N human|,#occupation|ְλ,religion|ڽ +ͯ N human|,agricultural|ũ,*TakeCare|,#livestock| +ͯ N human|,agricultural|ũ,*foster|,*TakeCare|,#livestock| + V TakeCare|,patient=livestock| +Ů N human|,female|Ů,agricultural|ũ,*foster|,*TakeCare|,#livestock| +Ȯ N livestock|,agricultural|ũ,*TakeCare|,#livestock| + N human|,#occupation|ְλ,foster|,*TakeCare|,#livestock|,agricultural|ũ +ҵ N affairs|,#livestock|,agricultural|ũ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + N character|,surname|,human|,ProperName|ר +ºĬ N human|,religion|ڽ,ProperName|ר +˹ N human|,religion|ڽ + V CauseToDo|ʹ + V MakeTrouble| + V believe| + V catch|׽ס + V hold| + V occupy|ռ,military| + PREP {instrument} + PREP {patient} + PREP {scope} +ð V catch|׽ס,police| +òȥ ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò ADJ aValue|ֵ,ability|,unable|ӹ,$display|չʾ +ò V BeUnable| +ò V BeUnable|,content=believe| +ò׼ V BeUnable|,content=believe| +ô V reverse|ߵ,sport| +õ V obtain|õ,means=take|ȡ +õ V BeAble|ܹ +õ V believe| +õ׼ V believe| +ö V decide| +û V catch|׽ס,police| +ü V show|,content=arrogant| + N human|,official|,politics|,ProperName|ר,(France|) +Ȩ V obtain|õ,possession=power|,politics| + V MakeTrouble| +ɧ N place|ط,capital|,ProperName|ר,(Bahamas|͹) + V manage| + ADJ aValue|ֵ,ability|,able|,desired| +ֺϷ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ + V decide| + ADJ aValue|ֵ,kind|,question| +Ķ N location|λ +Ķ N location|λ,question| + N location|λ + N location|λ,question| + CONJ {concession|ò} +λ PRON human|,question| +Щ ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,kind| + ADJ aValue|ֵ,kind|,question| +һ N time|ʱ,day|,question| + STRU {MaChinese|} +ź V cry| +ź V cry| + N chemical|ѧ + ADJ aValue|ֵ,kind|,special| + N character|,surname|,human|,ProperName|ר + CONJ {EventResult|¼} +Dz˹ N place|ط,city|,ProperName|ר,(Italy|) +Ƕ N location|λ,question| +Ǹ ADJ aValue|ֵ,kind|,special| +ǻ N time|ʱ,special| + N location|λ,special| +ô ADV aValue|ֵ,degree|̶,more| +ô CONJ {EventResult|¼} +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ĩ CONJ {EventResult|¼} +ʱ N time|ʱ +ʱ N time|ʱ +Щ ADJ aValue|ֵ,kind|,special| +Щ PRON entity|ʵ + ADJ aValue|ֵ,degree|̶,more| + N time|ʱ + N character|,(China|й) + V include| + V pay|,commercial| + V receive| + V submit| +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N human|,politics|,military|,undesired|ݬ,(Germany|¹) +ɴ N system|ƶ,politics|,military|,undesired|ݬ,(Germany|¹) +ɸ V enjoy|,content=happy| +ɺ V surprise| +ɻ V entice|,means=GiveAsGift|,crime| +ɻ V receive|,possession=artifact|˹,crime| +ɽ V win|ʤ,military| + V enjoy|,content=chilly| + V ignorant|֪ +ױ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Namibia|ױ) +ױ N place|ط,country|,ProperName|ר,(Africa|) +ױ N human|,(Namibia|ױ) + V include| +˰ V pay|,content=expenditure| +˰ N human|,*pay| +˰ N duty|,#pay| + N community|,ProperName|ר,(China|й) + N gas| +ʵ N tool|þ,*illuminate| + V be| + CONJ {EventResult|¼} + V be| + CONJ {supplement|ݽ} + V feed|ι,patient=drinks|Ʒ + V feed|ι,patient=drinks|Ʒ,means=part|,#AnimalHuman| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| +̲ N drinks|Ʒ +̷ N food|ʳƷ + N food|ʳƷ + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +ţ N InstitutePlace|,*foster|,livestock| +Ƥ N food|ʳƷ +ƿ N tool|þ,cubic|,@put|,*feed|ι +ˮ N part|,%AnimalHuman|,$drink|,liquid|Һ + N food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ N tool|þ,*feed|ι + N part|,%AnimalHuman|,*bite|ҧ + N livestock| + N food|ʳƷ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N tool|þ,*feed|ι + V endure| + V withstand|ס +Ͳס V WithstandNot|ס +͵ס V withstand|ס +ͷ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +͸ ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#cold| +ͺ ADJ aValue|ֵ,ability|,able|,withstand|ס,#waterless| +ͺֲ N plant|ֲ,*withstand|ס,#waterless| +ͻ ADJ aValue|ֵ,ability|,able|,withstand|ס,#fire| +ͻ N material|,*withstand|ס,#fire| +ͻש N material|,?building| +; ADJ aValue|ֵ,quality|,durable|,desired| +; N attribute|,quality|,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hardship| + N attribute|,strength|,&AnimalHuman| +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#grind|ĥ +ĥ ADJ aValue|ֵ,ability|,able|,withstand|ס,#rub|Ħ +ĥ N attribute|,ability|,able|,withstand|ס,#grind|ĥ,&inanimate| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#hot| +Ѱζ ADJ aValue|ֵ,content|,profound|,desired| + V endure| + ADJ aValue|ֵ,ability|,able|,withstand|ס,#chemical|ѧ + ADJ aValue|ֵ,able|,endure|,desired| + ADJ attribute|,able|,endure|,desired|,&human| + ADJ attribute|,able|,endure|,desired|,&human| +Է ADJ attribute|,able|,endure|,desired|,&human| + ADJ aValue|ֵ,quality|,durable|,desired| +Ʒ N artifact|˹,generic|ͳ +Ʒ N artifact|˹,generic|ͳ + CONJ {but|} +κ V treat|Դ + N money|,(Nigeria|) + N direction|,south| + N place|ط,country|,ProperName|ר,(Yugoslavia|˹) +ϰ N part|,%land|½,#waters|ˮ,edge|,south| +ϰ N part|,%earth|,south| +ϱ N attribute|,distance|,south|,north|,&earth| +ϱ N direction|,south|,north| +ϱ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϱ N location|λ,south| +ϲ N location|λ,south| +ϲ N part|,%place|ط,#south|,#country| +ϲ N location|λ,south| +ϲ N place|ط,city|,ProperName|ר,(China|й) +ϳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϳ N place|ط,country|,ProperName|ר,(South Korea|) +ϴ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ϴ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +϶ N location|λ,ending|ĩ,south| +Ϸ N direction|,south| +Ϸ N location|λ,south| +Ϸ N part|,%place|ط,#south|,#country| +Ϸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Africa|Ϸ) +Ϸ N place|ط,country|,ProperName|ר,(Africa|) +ϷǺ N language|,#country|,ProperName|ר +Ϸ N wind| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ N part|,%vegetable|߲,embryo|,$eat| +Ϲ N vegetable|߲ +Ϲ N part|,%country|,south| +Ϻ N waters|ˮ,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(South Korea|) +Ϻ N place|ط,country|,ProperName|ר,(South Korea|) +Ϻ N MusicTool| +ϻ N food|ʳƷ,commercial| +ϼ N part|,%earth|,south|,edge| +ϼ N place|ط,ProperName|ר +Ͻ N part|,%country|,south| +Ͻ N part|,%place|ط,surrounding|Χ,#city|,south| +Ͼ N place|ط,city|,ProperName|ר,(China|й) +Ͼѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ͽ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +Ͽһ N thought|ͷ,dream|,desired| +´ N part|,%land|½,base| + N place|ط,ProperName|ר,south|,(America|) + N place|ط,ProperName|ר,south|,(America|) + N character|,surname|,human|,ProperName|ר + N location|λ,south| +Ϻ V cooperate| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,south|,(Europe|ŷ) +Ǩ V AlterLocation|ռλ,direction=south| +ɳ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yugoslavia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹˹͹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N human|,(Yugoslavia|˹) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר + N FlowerGrass|,?medicine|ҩ +ͨ N place|ط,city|,ProperName|ר,(China|й) +γ N law|ɷ,#earth| + V LeaveFor|ǰ,direction=south| + N place|ط,ProperName|ר,south|,(Asia|) +Ǵδ½ N place|ط,ProperName|ר,south|,(Asia|) + N place|ط,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) +ԯ V FitNot| + N information|Ϣ,*guide| + N tool|þ,*measure|,#direction| +ս V fight| + ADJ aValue|ֵ,sex|Ա,male| + N human|,family|,male|,young| + N human|,male| + N human|,male|,young| +в N room|,#male|,@excrete|й +е N fact|,compete|,sport|,#male| +е N sound|,#music| +ж N community|,male|,sport| +ж N human|,male| +з N part|,%community|,#GetMarried|,aspect| +и N sound|,#music| +к N human|,male|,young| +к N human|,male|,young| +к N human|,male|,young| +о N human|,royal| +о N human|,female|Ů,royal| + N fact|,exercise|,sport|,#male| +ŮŮ N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ů N human|,mass| +Ůƽ N attribute|,behavior|ֹ,fair|,#sex|Ա,&human|,&organization|֯ + N fact|,exercise|,sport|,#male| + N human|,male|,friend|,desired| + N human|,male|,family| + N human|,family|,male| + N human|,male| + N sound|,#music| + N human|,male| + N human|,male|,*study|ѧ,education| +ʿ N human|,male| +˫ N fact|,exercise|,sport|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N attribute|,sex|Ա,male|,&human| + N human|,male| + N sound|,#music| +װ N clothing|,#male| + ADJ aValue|ֵ,sex|Ա,male| + N human|,male| +Ӻ N human|,male| + ADJ aValue|ֵ,behavior|ֹ,male| + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,possibility|,difficult|,undesired|ݬ + V embarrassed|Ϊ + N phenomena|,undesired|ݬ,#unfortunate| +Ѱ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ѳ ADJ aValue|ֵ,earliness|,late| +Ѳ V delay| +Ѳ V fail|ʧ +Ѳ V labour|ٲ,manner=difficult| +Ѵ N phenomena|,undesired|ݬ,hardship|,#unfortunate| +Ѵ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +ѵ V MakeTrouble| +ѵ V defeat|սʤ +ѵ ADV {emphasis|ǿ} +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ѵ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż,desired| +ѵ N phenomena|,undesired|ݬ,#unfortunate| +Ѷ N attribute|,easiness|,&event|¼ +ѹ ADJ aValue|ֵ,property|,^$blame|Թ +ѹ ADV {comment|} +ѹ N phenomena|,undesired|ݬ,#unfortunate| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$GoThrough| +ѹ V sorrowful| +ѹ V unfortunate| +ѽӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +ѽѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ѿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѿ V embarrassed|Ϊ +ѿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ѿ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ѿ V shy| +ѿ ADJ aValue|ֵ,easiness|,difficult|,$control| + V BeUnable|,content=escape| + N human|,undesired|ݬ,*escape|,#unfortunate| +Ӫ N InstitutePlace|,@include|,#human|,#escape|,#unfortunate| +רԱ´ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ܿɹ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ƥ ADJ aValue|ֵ,ability|,unable|ӹ,$equal| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ɫ N attribute|,countenance|,passive|,&human| +ϼ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +ѷ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,difficult| + V ill|̬,medical|ҽ + V sorrowful| +˵ ADV {comment|} + N phenomena|,difficult|,undesired|ݬ + N problem|,difficult|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ͳ ADJ aValue|ֵ,ability|,unable|ӹ,$manage| + ADJ aValue|ֵ,ability|,unable|ӹ,$forget| + ADJ aValue|ֵ,property|,^$forget| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ѵ N human|,*BeSame|ͬ,#circumstances| +ѵ N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Գ ADJ aValue|ֵ,ability|,unable|ӹ,$undergo| +Ը ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +Թ ADJ aValue|ֵ,ability|,unable|ӹ,$estimate| +Ի ADJ aValue|ֵ,ability|,unable|ӹ,$obtain|õ +Խӽ ADJ aValue|ֵ,ability|,unable|ӹ,$approach|ӽ +Ծ ADJ aValue|ֵ,easiness|,difficult|,$perception|֪ + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,easiness|,difficult|,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$understand| + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д + ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ + ADJ aValue|ֵ,ability|,unable|ӹ,$endure| +͸ ADJ aValue|ֵ,ability|,unable|ӹ,$leak|© +ʹ ADJ aValue|ֵ,ability|,unable|ӹ,$use| + ADJ aValue|ֵ,ability|,unable|ӹ,$believe| + ADJ aValue|ֵ,ability|,unable|ӹ,$deduce| + ADJ aValue|ֵ,easiness|,difficult|,$guess|² + ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +Ԥ ADJ aValue|ֵ,easiness|,difficult|,$predict|Ԥ + ADJ aValue|ֵ,easiness|,difficult|,$guess|² +׽ ADJ aValue|ֵ,easiness|,difficult|,$understand| + N {easiness|} + N human|,*BeSame|ͬ,#circumstances|,undesired|ݬ + V BeUnable| +׷ ADJ aValue|ֵ,ability|,unable|ӹ,$follow| + N shape| + N tool|þ,cubic|,@put| +ҳ N InsectWorm| +ҿϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V contain| + N disease| + V scratch|ץ + N part|,%AnimalHuman|,head|ͷ +Բ N part|,%AnimalHuman|,head|ͷ +ԳѪ N disease| +Դ N part|,%AnimalHuman| +Դ N part|,%AnimalHuman|,head|ͷ +Եͼ N image|ͼ,#diagnose|,medical|ҽ +Ժ N thinking|˼ +Ժ N thinking|˼ +Լ N thinking|˼ +Խ N part|,%AnimalHuman|,liquid|Һ +Խ N thinking|˼ +Կ N part|,%AnimalHuman|,head|ͷ + V attribute|,wisdom|ǻ,wise|,&human| + N human|,#occupation|ְλ,wise| +Ͷ N affairs|,#mental|,engage| +Ͷ N human|,#occupation|ְλ,wise| + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,head|ͷ +Ĥ N part|,%AnimalHuman|,head|ͷ +Ĥ N disease| + N part|,%AnimalHuman|,head|ͷ + N part|,%AnimalHuman|,nerve| + N part|,%AnimalHuman|,head|ͷ +嵹 V reverse|ߵ,patient=sequence|,scope=engage| + N disease| +Ѫ N disease| + N part|,%AnimalHuman|,head|ͷ + N thinking|˼ + V angry| + V upset| +պ V blame|Թ +ջ V angry| +ŭ V angry| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +߳ŭ V angry| + V IllBehave| + V MakeTrouble| + V SufferFrom|,medical|ҽ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V do| + V quarrel| +ֱŤ V quarrel| +ֲ V ill|̬,medical|ҽ +ַ V quarrel| +ַ V IllBehave| +ֹ V happen| +ֺ ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ּ V suffer|,content=HungryThirsty| +־ N shows| + V upset| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V MakeTrouble| + V uprise|,politics| + N place|ط,#city|,bustling| + N place|ط,#city|,bustling| +Ц V err| + V quarrel| + N tool|þ,*tell|,#time|ʱ + V tease|ȡ + N stone|ʯ + N material|,?clothing| + N material|,?clothing| + N material|,?clothing| + V HungryThirsty| + V disheartened| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,time|ʱ,internal| + N location|λ,internal| +ڲ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڲ ADJ aValue|ֵ,location|λ,internal| +ڲ N location|λ,internal| +ڲ N location|λ,space|ռ,internal| +ڲ N text|,#news|,secret| +ڲ V contain| +ڲ N part|,%inanimate|,skin|Ƥ,internal| +ڳѪ V bleed|Ѫ +ڴ N part|,%computer| +ڵ N place|ط,internal| +ڵ N human|,family|,male| +ڶ V decide| +ڶ N part|,%AnimalHuman|,viscera| +ڷ N fact|,excrete|й +ڷ V eat|,medical|ҽ +ڸ N institution|,#country|,politics| +ڹ N method| +ڹƤ N part|,%plant|ֲ,embryo| +ں N waters|ˮ,surfacial|,internal| +ں N information|Ϣ +ں N attribute|,strength|,$exhaust|,&implement| +ں N attribute|,strength|,$exhaust|,&organization|֯ +ں N part|,%entity|ʵ,heart| +ں N waters|ˮ,linear|,internal| +ں N fact|,fight|,internal| +ں V fact|,fight|,internal| +ڻ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ڼ N human|,undesired|ݬ,*betray|,treacherous| +ڽ N image|ͼ,angular|,internal| +ھ N facilities|ʩ,#perform| +ھ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ھ V regret|Ǹ +ڿ N knowledge|֪ʶ,medical|ҽ +ڿҽ N human|,#occupation|ְλ,medical|ҽ,*cure|ҽ + N phenomena|,undesired|ݬ,#unfortunate|,#RainSnow|ѩ,#crop|ׯ + N attribute|,strength|,&entity|ʵ +½ N land|½,internal| + V uprise|,politics| +ޱ N place|ط,capital|,ProperName|ר,(Kenya|) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɹ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N information|Ϣ + N human|,family| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N information|Ϣ +ȼ N part|,%vehicle|ͨ,*drive|Ԧ +ȼ N LandVehicle| + N disease| + N human|,family|,female|Ů + N attribute|,content|,&readings|,&information|Ϣ +Ҫ N text| + N disease| +ʡ V LookBack| +̥ N part|,%LandVehicle|,leg| + ADJ aValue|ֵ,range|,all|ȫ + N location|λ,surrounding|Χ,space|ռ + N affairs| + N affairs|,military| + N institution|,#police|,ProperName|ר,politics| + N facilities|ʩ,space|ռ,linear|,#electricity| + N human|,*scout| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,behavior|ֹ,hidden| + V sell|,range=country|,commercial| + N mental| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,desired|,able| + N human|,desired|,able| + N human|,family|,male| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N fire| + N clothing| +ྭ N human|,commercial| + V MoveItInto| + N cause|ԭ +⻼ N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,source|Դ,original|ԭ + N part|,%AnimalHuman|,viscera| +լ N room| +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ս N fact|,fight| + N affairs| + N institution|,#police|,ProperName|ר,politics| + N human|,family|,female|Ů +ڧ N fact|,fight|,internal| +ڧ V fact|,fight|,internal| +ڧ V fight|,range=internal|,politics| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| + ADJ aValue|ֵ,hue|Ũ,light| + ADJ aValue|ֵ,color|ɫ,green| + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,ability|,&AnimalHuman| + N character|,surname|,human|,ProperName|ר + N part|,%physical|,strength| +ܲ ADJ aValue|ֵ,ability|,able|,create| +ܴ ADJ aValue|ֵ,ability|,able|,$transmit| +ܶ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܶ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ܷ AUX {modality|,question|} +ܸı ADJ aValue|ֵ,ability|,able|,$alter|ı +ܸ ADJ aValue|ֵ,ability|,able|,desired| +ܸ V BeAble|ܹ,content=perform| +ܹɽ N human|,able|,desired| +ܹ V BeAble|ܹ +ܺ V exhaust|,patient=material| +ܼ N attribute|,rank|ȼ,#strength|,&inanimate| +ܼ N attribute|,ability|,$look|,&space|ռ +ܿ ADJ aValue|ֵ,ability|,able|,$open| +ܿ˷ ADJ aValue|ֵ,ability|,able|,$defeat|սʤ + N attribute|,ability|,&physical| + N part|,%physical|,strength| +˽ ADJ aValue|ֵ,ability|,able|,$know|֪ + N attribute|,ability|,&AnimalHuman| + N human|,able|,desired| + V willing|Ը,content=undertake|,#HighRank|ߵ,#LowRank|͵ + ADJ aValue|ֵ,ability|,able|,alive| + N fact|,$BeAble|ܹ + N human|,able|,desired| +˵ ADJ aValue|ֵ,ability|,able|,desired| +ͨ ADJ aValue|ֵ,ability|,able|,$GoThrough| +ϸ˵ ADJ aValue|ֵ,ability|,able|,$explain|˵ + V BeAble|ܹ + ADJ aValue|ֵ,ability|,able|,$translate| + ADJ aValue|ֵ,ability|,able|,$employ| +Դ N part|,%physical|,strength| + ADJ aValue|ֵ,ability|,able|,$borrow| + N character|,(China|й) + N human|,young|,female|Ů + N CloudMist| +޺ N tool|þ,*illuminate| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ + N material|,*build| + N stone|ʯ + N stone|ʯ + N material|,*feed|ι,#crop|ׯ +๸ N stone|ʯ,waste| +ཬ N stone|ʯ + N material|,*decorate|װ + N waters|ˮ,surfacial| +ú N stone|ʯ,material|,*lighting|ȼ,$burn| +Ţ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ţ N place|ط,dirty|,waterlogging|,undesired|ݬ +ţ뺣 V disappear|ʧ + N tool|þ,*recreation| +ɳ N stone|ʯ +ɳ ADJ aValue|ֵ,content|,mixed| +ʯ N stone|ʯ +ˮ N water|ˮ,#stone|ʯ +ˮ N human|,#occupation|ְλ,*build|,industrial| + N image|ͼ,$carve| +̶ N waters|ˮ,surfacial| + N waters|ˮ,surfacial| + N stone|ʯ + N human|,agricultural|ũ +߽ N human|,#occupation|ְλ,*build|,industrial| + N fish| + N human|,religion|ڽ,female|Ů + N place|ط,country|,ProperName|ר,(Nepal|Ჴ) +Ჴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nepal|Ჴ) +Ჴ N place|ط,country|,ProperName|ר,(Asia|) +Ჴ¬ N money|,(Nepal|Ჴ) +Ჴ N human|,(Nepal|Ჴ) +Ჴ N language|,#country|,ProperName|ר + N human|,religion|ڽ,female|Ů +Ŷ N chemical|ѧ +Ŷ N inanimate|,#addictive|Ⱥ,undesired|ݬ +Ŷж N disease| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nicaragua|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Nicaragua|) +ϣ N place|ط,capital|,ProperName|ר,(Cyprus|·˹) + N human|,official|,politics|,ProperName|ר,(US|) + N material| +޺ N waters|ˮ,linear|,ProperName|ר,(Egypt|) +ն ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Niger|ն) +ն N place|ط,country|,ProperName|ר,(Africa|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Nigeria|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Nigeria|) + N place|ط,capital|,ProperName|ר,(Niger|ն) + V forming|γ + V imitate|ģ + V plan|ƻ +ⶨ V forming|γ +ⶩ V forming|γ + V compile|༭,ContentProduct=text| +⽨ V build| + N humanized| + V forming|γ + V forming|γ + PRON {SecondPerson|} + PRON {SecondPerson|,mass|} +һ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +׷Ҹ V HaveContest| + V hide| + V hide| +伣 V hide| + ADJ aValue|ֵ,trueness|α,fake|α + N letter|ż +Ӱ V hide| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V disgust| + N InsectWorm|,undesired|ݬ +巳 V disgust| +ζ V disgust| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + ADJ aValue|ֵ,contrariness|,negative| + V betray| + V disobey|Υ + N human|,undesired|ݬ,*betray|,treacherous| + N location|λ + N quantity|,amount|,#InDebt|,&commercial| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +淴 ADJ aValue|ֵ,behavior|ֹ,treacherous| + N wind| +澳 N phenomena|,undesired|ݬ,#unfortunate| + V predict|Ԥ + ADJ aValue|ֵ,direction|,GoBack| + N attribute|,SocialMode|,treacherous|,&human|,&organization|֯ +ʱ ADJ aValue|ֵ,direction| +ʱ뷽 ADJ aValue|ֵ,direction| +ˮ V VehicleGo|ʻ,direction=GoBack| + ADJ aValue|ֵ,direction|,GoBack| + V SelfMove|,manner=negative| +ת V decline|˥ +ת V reverse|ߵ + N human|,undesired|ݬ,family|,treacherous| + V engage| + V sink|³ +簮 V like|ϧ +ˮ V sink|³ + V decline|˥ +費 ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V pick|ʰ +黨Dz V associate|,partner=female|Ů,manner=lascivious| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ζ V gamble|IJ + ADJ aValue|ֵ,time|ʱ,year| + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר + N part|,%time|ʱ,@alive| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,year| + N time|ʱ,year|,special| + N unit|λ,&time|ʱ +갮 N character|,surname|,human|,ProperName|ר + N quantity|,amount|,&crop|ׯ,&artifact|˹,#year| +곤 ADJ aValue|ֵ,age|,aged| + N phenomena|,#collect|,#crop|ׯ + N time|ʱ,early|,year| +һ N time|ʱ,festival|,@congratulate|ף + N time|ʱ + N time|ʱ,ending|ĩ,year| + ADJ aValue|ֵ,frequency|Ƶ,year| + N time|ʱ,year| +극 N fact|,eat|,#congratulate|ף,#festival| + N time|ʱ + N time|ʱ,year| +긴һ ADV aValue|ֵ,duration|,TimeLong| +긻ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,age|,aged| +ߵۿ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + ADJ aValue|ֵ,age|,aged| + N attribute|,name|,#country|,#official|,&time|ʱ +껪 N time|ʱ +껭 N image|ͼ,*congratulate|ף,#festival| + N artifact|˹,$buy|,*congratulate|ף,#festival| +꼶 N attribute|,rank|ȼ,&education| + N attribute|,age|,&animate| + N time|ʱ,@rest|Ϣ + N publications|鿯 + N time|ʱ,festival|,@congratulate|ף +꾰 N attribute|,circumstances|,&event|¼,#crop|ׯ +꾰 N attribute|,scene|,&event|¼ + ADJ aValue|ֵ,age|,aged| + N tool|þ,*show|,#time|ʱ + N fund|ʽ,$earn|׬,commercial| + N attribute|,age|,&animate| + N trace|,#tree|,#grow|ɳ + ADJ aValue|ֵ,age|,aged| +ĩ N part|,%time|ʱ,year|,ending|ĩ + N time|ʱ,year| + N account|,@record|¼,#time|ʱ + ADJ aValue|ֵ,age|,young| +ŮԱ N human|,*perform|,female|Ů,entertainment| + N human|,young| + ADJ aValue|ֵ,age|,young| + N human|,young| + N attribute|,age|,young| +Ѹ ADJ aValue|ֵ,age|,aged| + N attribute|,age|,&animate| + N time|ʱ +ͷ N phenomena|,#collect|,#crop|ׯ +ͷ N time|ʱ +ͷ N time|ʱ,TimeLong| +ͷ N unit|λ,&time|ʱ +Ϣ N fund|ʽ,$earn|׬,commercial| + N quantity|,amount|,&year| +۶ N quantity|,amount|,&sell|,commercial| +н N payment|,#year| +ҹ N time|ʱ,night| +ҹ N fact|,eat|,*congratulate|ף,#festival| + ADJ aValue|ֵ,age|,young| +⻨ ADJ aValue|ֵ,age|,aged| + N time|ʱ + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + N time|ʱ,ending|ĩ,year| + V grind|ĥ + N tool|þ,*grind|ĥ + V grind|ĥ + N tool|þ,*grind|ĥ + V chase|׷ + V expel| + V PlayWith|Ū + V ThinkOf|˼ + V recite|ж + V study|ѧ,education| + V recite|ж + V recite|ж,content=text|,religion|ڽ + V ThinkOf|˼,content=friend| + V remember|ǵ + V recite|ж,content=publications|鿯 + V study|ѧ,education| +ͷ N thought|ͷ + N tool|þ,*recite|ж,#text|,religion|ڽ +߶ V talk|̸ + N human|,family|,female|Ů + N human|,female|Ů,adult| + N community|,family| + N human|,family|,male| + N humanized|,female|Ů + N human|,royal|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů,adult| +Ӿ N army|,female|Ů + V ResultIn| + N drinks|Ʒ,$addict|Ⱥ + V produce|,industrial| + V ResultIn| + V produce|,PatientProduct=drinks|Ʒ + V produce|,industrial| + N bird| + N bird| +񾡹 ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + N bird| + N tool|þ,space|ռ,@detain|ס,#bird| + V cry|,agent=bird| +ﻨ N attribute|,scene|,good|,&place|ط + N part|,%bird|,mouth| + V investigate| + V look| + V excrete|й + N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + N tool|þ,*wipe| +򳣹 N fact|,check|,#liquid|Һ,medical|ҽ + N part|,%AnimalHuman|,#excrete|й + N disease| +֢ N disease| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ +Һ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й + V forge|α + V press|ѹ + V produce| + V forge|α + N human|,*forge|α + N character|,surname|,human|,ProperName|ר + V bite|ҧ + V bite|ҧ + ADJ connect| + V connect| + N tool|þ,*pick|ʰ + N metal| + N character|,(China|й) + PRON {SecondPerson|} + N fruit|ˮ +ɫ ADJ aValue|ֵ,color|ɫ,yellow| +ˮ N drinks|Ʒ + N chemical|ѧ +֭ N drinks|Ʒ + V StateChange|̬ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ + V StateChange|̬ + V StateChange|̬ + N StateChange|̬ + V StateChange|̬ + N attribute|,strength|,&entity|ʵ + ADV aValue|ֵ,behavior|ֹ,attentive|ϸ + V look| + N human|,look| + V look| +Ѫø N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,SoundQuality|,strong|ǿ + ADJ aValue|ֵ,countenance|,stately|ׯ + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADV {modality|} + ADV {modality|} + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ļ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ը ADV {modality|} +š V press|ѹ +ţ N aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ţ N character|,surname|,human|,ProperName|ר +ţ N livestock| +ţ N LandVehicle| +ţ N medicine|ҩ +ţ N livestock|,young| +ţ N human|,#knowledge|֪ʶ,ProperName|ר,(UK|Ӣ) +ţ N unit|λ,&strength| +ţ N medicine|ҩ +ţ N part|,%livestock|,*feel| +ţ N humanized|,agricultural|ũ +ţ N celestial| +ţ N drinks|Ʒ +ţ N food|ʳƷ +ţƤ N material|,?clothing|,?tool|þ +ţƤֽ N paper|ֽ,*wrap| +ţ N food|ʳƷ +ţͷ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ţ N beast| +ţ N human|,#occupation|ְλ,*foster|,#livestock| +ţп N clothing|,#leg| +Ť V hold| +Ť V rotate|ת +Ť V turn|Ťת +Ť V wounded| +Ť V fight| +Ť V rotate|ת +Ť N beast| +Ť V twine| +Ť V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +ŤΪӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ťӯ V alter|ı,StateIni=InDebt|,StateFin=earn|׬ +Ť V pretend|װ +Ť V alter|ı +Ť V wounded| +Ť V catch|׽ס,transport| +Ťͷ V CausePartMove|,PatientPartof=head|ͷ +Ťͷ V TurnRound| +Ť V perform|,content=shows|,entertainment| +Ťת V CausePartMove| +Ťת V reverse|ߵ +Ťת V turn|Ťת +ť N character|,surname|,human|,ProperName|ר +ť N part|,%clothing|,*fasten|˩ +ť N part|,%implement|,hand| +ť N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%implement|,hand| +Ŧ N entity|ʵ,*tie| +Ŧ N part|,%clothing|,*fasten|˩ +Ŧױ N place|ط,city|,ProperName|ר,(Germany|¹) +ŦԼ N place|ط,city|,ProperName|ר,(US|) +ŦԼ N place|ط,provincial|ʡ,ProperName|ר,(US|) +Ŧ N part|,%clothing|,*fasten|˩ +Ŧ N part|,%clothing|,*fasten|˩ +ŧ N liquid|Һ,%AnimalHuman|,waste|,$excrete|й +ŧ N disease| +ŧ N human|,undesired|ݬ,unable|ӹ +ŧ N disease| +ŧ N disease| +ŧ N disease| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ +Ũ N attribute|,hue|Ũ,&color|ɫ +Ũ N attribute|,concentration|Ũ,&liquid|Һ +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,intensity|ǿ,strong|ǿ +Ũ ADJ aValue|ֵ,density|ܶ,dense| +Ũ V StateChange|̬,industrial| +Ũ N StateChange|̬,industrial| +Ũ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ũ ADJ aValue|ֵ,odor|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,taste|ζ,NotLight|Ũ,desired| +Ũ ADJ aValue|ֵ,concentration|Ũ,concentrated| +ũ N affairs|,agricultural|ũ +ũ N character|,surname|,human|,ProperName|ר +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹,agricultural|ũ,#crop|ׯ,generic|ͳ +ũ N InstitutePlace|,space|ռ,agricultural|ũ +ũ N place|ط,village| +ũ˿ N human|,*function|,village| +ũ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ũ N human|,#occupation|ְλ,agricultural|ũ +ũƷ N artifact|˹ +ũ N affairs|,agricultural|ũ,industrial|,commercial| +ũ N community|,family|,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N machine|,agricultural|ũ +ũ N tool|þ,agricultural|ũ +ũ N knowledge|֪ʶ,#agricultural|ũ +ũ N human|,agricultural|ũ +ũ N implement|,agricultural|ũ,generic|ͳ +ũ N tool|þ,agricultural|ũ,generic|ͳ +ũԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,#agricultural|ũ +ũ N affairs|,agricultural|ũ +ũ N law|ɷ,#time|ʱ +ũ N time|ʱ,month| +ũ N time|ʱ,month| +ũ N affairs|,agricultural|ũ +ũó N affairs|,agricultural|ũ,commercial| +ũ N community|,#occupation|ְλ,agricultural|ũ +ũ N human|,#occupation|ְλ,agricultural|ũ +ũ N affairs|,agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũū N human|,agricultural|ũ +ũū N human| +ũ N house|,agricultural|ũ +ũʱ N time|ʱ,@engage|,#agricultural|ũ +ũ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ũ N time|ʱ,@pause|ͣ,#agricultural|ũ +ũ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +ũѧԺ N InstitutePlace|,@teach|,@study|ѧ,#agricultural|ũ,education| +ũҩ N chemical|ѧ,#agricultural|ũ +ũҵ N affairs|,agricultural|ũ +ũҵ N institution|,#agricultural|ũ,ProperName|ר,politics| +ũҵ N human|,#occupation|ְλ,agricultural|ũ +ũҵ˰ N expenditure| +ũʦ N human|,#occupation|ְλ,#knowledge|֪ʶ,agricultural|ũ +ũ ADJ aValue|ֵ,attachment|,agricultural|ũ +ũ N crop|ׯ,generic|ͳ +Ū V CauseToDo|ʹ +Ū V PlayWith|Ū +Ū V WhileAway| +Ū V do| +Ū V handle| +Ū V take|ȡ +Ū V CauseToDo|ʹ +Ū V TryToKnow|Ū +Ū V damage| +Ū V damage| +Ū V MakeTrouble| +Ū V TryToKnow|Ū +Ūɳ׾ V fail|ʧ +Ū V TryToKnow|Ū +Ū V TryToKnow|Ū +Ū V kill|ɱ +Ū N facilities|ʩ,route|· +Ū V deceive|ƭ +Ū V damage| +Ū V pollute|ʹ +Ū V damage| +ū N human|,employee|Ա +ū N human|,undesired|ݬ,*MakeBad|Ӻ +ū V ize|̬ +ū N human|,employee|Ա +ū N organization|֯ +ū N attribute|,behavior|ֹ,passive|,undesired|ݬ,&human| +ū N system|ƶ +ū N human|,*own| +ū N human|,employee|Ա +ūϥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ū V damage| +Ŭ V CausePartMove| +Ŭ³ķ N money|,(Bhutan|) +ŬⰢ巨 N place|ط,capital|,ProperName|ר,(Tonga|) +Ŭ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ŭ V endeavour| +Ŭ߿Ф N place|ط,capital|,ProperName|ר,(Mauritania|ë) +Ŭ V CausePartMove|,PatientPartof=mouth| +ŭ V angry| +ŭ N emotion|,angry|,undesired|ݬ +ŭɶ V angry| +ŭ V ExpressAgainst|Ǵ +ŭ V angry| +ŭ V ExpressAnger|ʾŭ +ŭ V angry| +ŭ V MakeSound| +ŭ V MakeSound| +ŭ V cry| +ŭ N emotion|,angry|,undesired|ݬ +ŭĿ V ExpressAnger|ʾŭ +ŭ N emotion|,angry|,undesired|ݬ +ŭ V look|,manner=angry| +ŭ N water|ˮ,strong|ǿ +ŭɫ V ExpressAnger|ʾŭ +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N human|,family|,female|Ů,young| +Ů N human|,female|Ů +Ů N human|,female|Ů,rich| +Ů N human|,female|Ů,*protect| +Ů N human|,*fight|,female|Ů,military| +Ů N room|,#female|Ů,@excrete|й +ŮԱ N human|,#occupation|ְλ,female|Ů,employee|Ա,#LandVehicle| +Ů N fact|,compete|,sport|,#female|Ů +Ů N sound|,#music| +ŮԱ N human|,employee|Ա,female|Ů,commercial|,*sell| +Ů N human|,female|Ů,*mediate| +Ů N community|,female|Ů,sport| +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N part|,%community|,#GetMarried|,aspect| +Ůм N human|,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#aircraft| +ŮԱ N human|,#occupation|ְλ,female|Ů,*entertain|д +Ů N sound|,#music| +Ů N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů質 N human|,#occupation|ְλ,female|Ů,*sing|,#music|,entertainment| +Ů N human|,#occupation|ְλ,female|Ů,industrial| +Ů N human|,#occupation|ְλ,industrial|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,female|Ů,young| +Ů N human|,royal|,female|Ů +Ů̳ N human|,female|Ů,*receive| +Ůҳ N human|,female|Ů,official|,family| +Ů๤ N human|,#occupation|ְλ,female|Ů,*supervise|,industrial| +Ů N human|,official|,military| +Ů N human|,wise|,female|Ů,desired| +Ů N human|,#occupation|ְλ,female|Ů,official|,commercial| +Ů N human|,#occupation|ְλ,female|Ů,police| +Ů N human|,official|,female|Ů,police| +Ů N human|,family|,female|Ů +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,adult| +Ů N human|,#occupation|ְλ,female|Ů,agricultural|ũ,*catch|׽ס,#beast| +Ů N human|,female|Ů +Ůðռ N human|,female|Ů,*venture|ð +Ů N fact|,exercise|,sport|,#female|Ů +Ůͽ N human|,female|Ů,undesired|ݬ,betray|,treacherous| +Ů N human|,female|Ů,friend| +Ů N human|,employee|Ա,female|Ů +Ůǿ N human|,female|Ů,able|,desired| +Ů N human|,female|Ů,family| +Ů N community|,religion|ڽ +Ů๤ N human|,*clean|ʹ,employee|Ա,female|Ů +ŮȨ N rights|Ȩ,#human|,female|Ů +Ů N human|,family|,female|Ů +Ů N human|,female|Ů +Ůɱ N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ůɳ N human|,female|Ů,royal|,(Russia|˹) +Ů N humanized|,female|Ů +Ů N sound|,#music| +Ů N human|,female|Ů,*study|ѧ,education| +Ůʫ N human|,female|Ů,*compile|༭,literature| +Ůʿ N human|,female|Ů,adult| +Ůг N human|,female|Ů,official|,#city| +Ů˫ N fact|,compete|,sport|,#female|Ů +Ů˾ N human|,#occupation|ְλ,female|Ů,*drive|Ԧ,#LandVehicle| +Ůͯ N human|,female|Ů,young| +ŮͯӾ N human|,young|,#military|,female|Ů +Ů N human|,royal|,female|Ů +Ů N human|,undesired|ݬ +ŮУ N human|,#occupation|ְλ,female|Ů,official|,education| +Ůż N human|,#occupation|ְλ,female|Ů,*gather|ɼ,*compile|༭,#news| +Ů ADJ aValue|ֵ,sex|Ա,female|Ů +Ů N attribute|,sex|Ա,female|Ů,&human| +Ů N human|,female|Ů +Ů N human|,female|Ů,*kill|ɱ,undesired|ݬ,crime| +Ů޵Ժ N human|,#occupation|ְλ,female|Ů,religion|ڽ,official| +Ů N human|,family|,male| +Ů˵ N human|,female|Ů,*speak|˵ +ŮԱ N human|,#occupation|ְλ,*perform|,female|Ů,entertainment| +Ůħ N humanized|,undesired|ݬ,evil|,female|Ů +Ůҵ N human|,female|Ů,*employ|,commercial| +ŮӶ N human|,employee|Ա,female|Ů +ŮӶ N human|,employee|Ա,female|Ů +Ů N human|,female|Ů,friend| +ŮԤԼ N human|,female|Ů,*predict|Ԥ +Ů N sound|,#music| +Ů N human|,female|Ů,*entertain|д +Ůϯ N human|,female|Ů,official| +Ůװ N clothing|,#female|Ů +Ů N human|,female|Ů,adult| +Ůܶ N human|,#occupation|ְλ,female|Ů,official| +Ů N fact|,exercise|,sport|,#female|Ů +Ů N human|,female|Ů,past| +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N facilities|ʩ,space|ռ,house|,*planting|ֲ,#plant|ֲ +ů V WarmUp| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů ADJ aValue|ֵ,temperature|¶,warm| +ů N tool|þ,cubic|,@put|,#liquid|Һ +ů N tool|þ,*cover|ڸ +ů N experience|,excited| +ůƿ N tool|þ,cubic|,@put|,#liquid|Һ +ů N facilities|ʩ,*WarmUp|,#building| +ůķ V soothe|ο +ůɫ N attribute|,hue|Ũ,&color|ɫ,warm| +ůˮƿ N tool|þ,cubic|,@put|,#liquid|Һ +Ű ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ű V damage|,crime| +Űɱ V kill|ɱ,manner=fierce|,crime| +ű N disease| +ű N disease| +ű N InsectWorm|,undesired|ݬ,*influence|Ӱ,#disease| +Ų V SelfMoveInManner|ʽ +Ų V TakeAway|ᶯ +Ų N place|ط,country|,ProperName|ר,(Norway|Ų) +Ų V recompense| +Ų V TakeAway|ᶯ +Ų V borrow|,commercial| +Ų ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Norway|Ų) +Ų N place|ط,country|,ProperName|ר,(Europe|ŷ) +Ų N money|,(Norway|Ų) +Ų N language|,#country|,ProperName|ר +ŲѶ V SelfMoveInManner|ʽ +ŲѶ V TakeAway|ᶯ,patient=family| +Ų V cheat|ƭ +Ų V use|,commercial| +Ųù N human|,*cheat|ƭ,crime|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ų N human|,undesired|ݬ,timid| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ų ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +Ŵ ADJ aValue|ֵ,stickiness|,sticky| +Ŵ N crop|ׯ +Ŵ N material|,?food|ʳƷ,#crop|ׯ +ŵ N text|,$admit| +ŵ N human|,ProperName|ר +ŵ N tool|þ,*reward|,$GiveAsGift|,desired| +ŵ N human|,$reward| +ŵ N place|ط,ProperName|ר,(France|) +ŵ N information|Ϣ,*MakeAppointment|Լ,#bear|е +Ŷ ECHO sound| +ŷ N character|,surname|,human|,ProperName|ר +ŷ N place|ط,ProperName|ר +ŷ N institution|,ProperName|ר +ŷ V ize|̬,PatientAttribute=foreign| +ŷ N place|ط,ProperName|ר +ŷķ CLAS unit|λ,&resistance| +ŷ N institution|,ProperName|ר +ŷǴ½ N place|ط,ProperName|ר +ŷ N character|,surname|,human|,ProperName|ר +ŷԪ N money|,(Europe|ŷ) +ŷԪ N place|ط,#country|,ProperName|ר,(Europe|ŷ) +ŷ ADJ aValue|ֵ,attachment|,ProperName|ר,(Europe|ŷ) +ŷ N place|ط,ProperName|ר +ŷ޹ͬ N institution|,ProperName|ר +ŷ޾ùͬ N institution|,ProperName|ר +ŷ N human|,(Europe|ŷ) +Ÿ N bird| +Ź V beat| +Ź N character|,surname|,human|,ProperName|ר +Ź V beat| +ź N fruit|ˮ +ź N food|ʳƷ +ź N material|,?food|ʳƷ +ź ADJ aValue|ֵ,color|ɫ,purple| +źɫ ADJ aValue|ֵ,color|ɫ,grey| +Ż V vomit|³ +Ż V StomachTrouble|֢ +Ż V vomit|³ +Ż N human|,*StomachTrouble|֢,medical|ҽ +ŻѪ V endeavour| +ŻѪ V bleed|Ѫ,means=vomit|³ +ż N human|,$believe| +ż N human|,family|,mass| +ż N human|,friend| +ż N image|ͼ +ż ADJ qValue|ֵ,amount|,double| +żȾ N material|,*AlterColor|ɫ +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ż ADJ aValue|ֵ,kind|,special| +ż V fit|ʺ +żȻ ADJ aValue|ֵ,kind|,special| +żȻ N attribute|,frequency|Ƶ,rarely|ż,&event|¼ +ż N thing|,$respect| +Ž V soak| +Ž N material|,*feed|ι,#crop|ׯ +ſ V FallDown| + V climb|ʵ + V crawl| + N beast| + N LandVehicle| + V climb|ʵ + V crawl| +Ӿ V exercise|,sport| + N tool|þ,*wipe| +ﲩ N place|ط,capital|,ProperName|ר,(Surinam|) +׶ N place|ط,ProperName|ר +׶ԭ N place|ط,ProperName|ר + V fear| + V guess|² + ADV {comment|} + V shy| + N SportTool|˶ + V TakePicture| + V beat| + V please|ȡ + V post|ʼ + ... ƨ V please|ȡ +İо V praise|佱 +İ N MusicTool| +İ V beat|,commercial| +İ V decide| +İ V recreation|,entertainment| +Ĵ V beat| +ķ V post|ʼ +ƨ V please|ȡ + N human|,*please|ȡ + V sell|,commercial| + V sell|,manner=HaveContest|,commercial| +Ƭ V produce|,#shows| + V TakePicture| + V beat|,PartOfTouch=hand| + V praise|佱 + V TakePicture| +ֽ N account|,*record|¼ + N SportTool|˶ + N attribute|,speed|ٶ,&music|,&language| + CLAS NounUnit|,&physical| + V PutInOrder| + V discharge| + V drain|ų + V drill|ϰ,entertainment| + N food|ʳƷ + N part|,%army| + V push| + N ship| +Ű V PutInOrder|,#print|ӡˢ +ų ADJ aValue|ֵ,bearing|̬,extravagant|,undesired|ݬ +ų N human|,#occupation|ְλ,official|,military| +ų N attribute|,performance|,discharge|,&thing| +ų V discharge| +ų V drain|ų +ų V remove| +ų V discharge| +ŵ N part|,%vehicle|ͨ,*drive|Ԧ,#speed|ٶ +Ŷ V PutInOrder| +ŷ V PutInOrder| +ŷ V drain|ų +Ź N food|ʳƷ +Ź V irrigate|,agricultural|ũ +Żʿ N human|,*oppose| +ż V discharge| +Ž V mediate| + V drain|ų,content=liquid|Һ,agricultural|ũ + V drill|ϰ,entertainment| + V PutInOrder| + V put| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,content|,neat|,desired| + V GiveBirth| + N attribute|,sequence|,#compete|,&human|,&organization|֯ +ѽ V mediate| + V excrete|й,patient=gas|,industrial| +Dz V WhileAway| + N SportTool|˶ + V drain|ų +ɽ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ˮ V drain|ų,patient=liquid|Һ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N facilities|ʩ,@drain|ų,#water|ˮ +ˮ N quantity|,amount|,&ship| + N attribute|,performance|,discharge|,&thing| +ͷ N human|,$study|ѧ,$imitate|ģ,desired| +ͷ N human|,*fight|,military| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V oppose| + V drain|ų,patient=waste| +й V drain|ų +й V excrete|й,medical|ҽ +йϵͳ N part|,%AnimalHuman|,viscera|,*excrete|й + N attribute|,clan|,&human| +а N account|,@record|¼,sequence|,#compete| + V arrange|,patient=sequence| + V drill|ϰ,entertainment| +ӡ V print|ӡˢ +ǽ V remove|,content=difficult| +ӳ N LandVehicle| + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,*recreation| +Ʒ N facilities|ʩ,religion|ڽ +ƺ N mark|־,#InstitutePlace|,commercial| +ƺ N mark|־,commercial| +Ƽ N attribute|,price|۸,&physical|,commercial| +λ N tool|þ,*salute|¾,#die| + N document|,*prove|֤,#vehicle|ͨ + N attribute|,name|,&artifact|˹ + N mark|־ + N tool|þ,@write|д +ǻ V QuantityChange|,commercial| +ǻ V hesitate|ԥ +ǻ V roam| + V CauseToBe|ʹ֮ + N attribute|,style|,&human| + N attribute|,style|,&physical| + N community| + N community|,#knowledge|֪ʶ + V dispatch|Dz + V issue|ַ +ɱ N community| +ɲ V ExpressAgainst|Ǵ +ɳ N institution|,police| +Dz V dispatch|Dz + ADJ aValue|ֵ,source|Դ + V associate| + V climb|ʵ + V tie| +ʱ V protest|,means=CompareTo| +ʳ V tie| +ʵ V climb|ʵ +ʵ N human|,*climb|ʵ + V SeekRefuge|Ͷ,partner=power| + V associate| + V climb|ʵ +̸ V talk|̸ +Ե V climb|ʵ +Ե V endeavour| + V break|۶ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&fact| + CLAS NounUnit|,&inanimate| + N attribute|,price|۸,&inanimate| + V build| + V check| + V circle| + V sell|,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +̰ V rob| +̲ V check| +̳ N tool|þ,*measure|,#weight| +̴ V check| +̵ N facilities|ʩ,route|· +̵ V check| +̶ N food|ʳƷ +̸ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +̻ V stay|ͣ +̻ V check|,content=artifact|˹,commercial| +̾ V situated| +̿ V check|,content=artifact|˹,commercial| +Ū V PlayWith|Ū + ADJ aValue|ֵ,form|״,curved| + V coil| + V plan|ƻ + V think|˼ + N part|,%building|,nerve| + V CausePartMove|,PatientPartof=leg| + V interrogate| + N tool|þ,*salute|¾,$burn| + V circle| + V stay|ͣ + N livestock| + V check|,content=account|,#wealth|Ǯ,commercial| + N tool|þ,cubic|,@put|,#edible|ʳ +ڵ V ask| +ڵ V interrogate| + N stone|ʯ +ʯ N stone|ʯ + V expect| + V look| +ͷ N entity|ʵ,$expect| + V expect| + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,edge|,agricultural|ũ + V distinguish|ֱ + V judge|ö + V judge|ö,police| +б V distinguish|ֱ +д V punish|,police| +ж V judge|ö +ж V judge|ö +ж N judge|ö +ж V judge|ö +ж N result|,#judge|ö +ж N attribute|,ability|,*judge|ö,&physical| +жȷ ADJ aValue|ֵ,correctness|,upright|,desired| +о N attribute|,standard|׼,&entity|ʵ +о V judge|ö +о N document|,*judge|ö + N example|ʵ,police|,#fact| + V distinguish|ֱ + V differ|ͬ + ADJ aValue|ֵ,similarity|ͬ,different| + V punish|,police| + V punish|,police| + V betray| + V uprise|,crime| +ѱ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ѱ V betray| +ѱ V betray|,crime| +ѹ V betray|,target=country| +Ѿ N army| + V betray| + V uprise| + V betray| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V uprise| +ͽ N human|,*betray|,treacherous|,undesired|ݬ + ADJ aValue|ֵ,size|ߴ,big| + N character|,surname|,human|,ProperName|ר +Ӵ ADJ aValue|ֵ,size|ߴ,big| +Ȼ N AnimalHuman|,big| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,importance|,branch|֧ + ADJ aValue|ֵ,kind|,other| + N location|λ,edge| + N part|,%character| +Ա ADJ aValue|ֵ,direction| +Ա N location|λ,edge| +Թ V look| +Թ N human|,*look| +Լ V relate|й +· N part|,implement|,electricity| + N part|,%building|,mouth| +ò ADJ aValue|ֵ,behavior|ֹ,tactful| + N human|,other| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V study|ѧ,education| + N language|,#country|,ProperName|ר + V quote| +֤ N information|Ϣ,*explain|˵ +֧ ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,fatness|,fat| +ִ N FlowerGrass|,?medicine|ҩ +ֺ ADJ aValue|ֵ,fatness|,fat| + N {fatness|} +ͷ N fish| + N human|,fat| + V put| + V throw| +׹ V brighten|ʹ,industrial| +ê V OutOfOrder| +ê V stay|ͣ +ê N facilities|ʩ,space|ռ,#ship|,@stay|ͣ + V abandon| + V sell|,commercial| +ͷ¶ V appear| + N image|ͼ,linear| + V throw| + V MakeSound| + V cry| + V cut|,industrial| + V dig|ھ + V subtract| + N tool|þ +ٱ N drinks|Ʒ,ice| +ٴ N machine|,*produce| +ٴ N tool|þ +ٵ N tool|þ +ٸ V investigate| +ٹ N human|,#occupation|ְλ,industrial| + N tool|þ + V cook|,medical|ҽ + N tool|þ,*recreation| + N weapon|,*firing| +ڱ N army|,*firing| +ڱ N human|,*firing|,military| +ڵ N weapon|,$firing| +ڻ N human|,military| +ڻ N fire| +ڻ V firing|,military| +ڽ N weapon|,ship|,military| +¥ N facilities|ʩ,space|ռ,military|,@defend| + N sound| +ͧ N weapon|,ship|,military| +Ͳ N human|,#speak|˵ +λ N location|λ,@firing|,military| + N part|,%facilities|ʩ,@firing|,military| + N part|,%facilities|ʩ,mine| + N tool|þ,*WhileAway|,*congratulate|ף + V cook|,medical|ҽ + V forge|α + N clothing|,#body| + N human|,friend| + N clothing|,#body| +˵dz V undertake|,content=official| + V engage| + V flee| + V run| +ܱ N tool|þ,*tell|,#time|ʱ +ܲ V run| +ܳ N SportTool|˶,#LandVehicle| +ܵ V engage|,content=commercial|,manner=single| +ܵ N part|,%facilities|ʩ,route|·,#aircraft|,@slide| +ܵ N part|,%facilities|ʩ,route|·,@compete|,sport| +ܵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +ܶ V StomachTrouble|֢ +ܽ V MakeLiving|ı,means=perform| + V engage| + V perform|,entertainment| + V compete|,sport| + V exercise| +ܵߵ V endeavour| +ö N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +ȶ V engage| +Ь N SportTool|˶,#clothing|,#foot| + CLAS NounUnit|,&stone|ʯ,#waste|,#excrete|й + ADJ aValue|ֵ,tightness|ɽ,loose| + N shape| + N shape|,loose| + N shape|,round|Բ + V slack|͵ + V soak| +ݲ V pretend|װ,content=ill|̬,purpose=slack|͵ +ݲ N food|ʳƷ +ݲ V cook|,PatientProduct=drinks|Ʒ +ݷ V cook|,PatientProduct=food|ʳƷ +ݷ N food|ʳƷ +Ģ V MakeTrouble| +Ģ V slack|͵ +ĭ N gas|,#liquid|Һ,round|Բ +ĭ N tool|þ,*remove|,#fire| +ĭ N material| +ɴ N material|,?clothing| + V fail|ʧ +ͩ N tree| +Ӱ N thinking|˼,empty| + N waters|ˮ,surfacial| + N part|,%animate|,embryo| +߸ N part|,%plant|ֲ,base| +̥ N part|,%AnimalHuman|,embryo| +ѿ N part|,%plant|ֲ,embryo| + V cultivate| + V install|װ + V pile|ѷ + V repair| +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ + V cultivate| + V cultivate|,medical|ҽ + V cultivate| +ֲ V cultivate| +ֲ V planting|ֲ +ֲ V teach| + N character|,surname|,human|,ProperName|ר + V InDebt|,commercial| + V recompense| +Ȿ V InDebt|,possession=fund|ʽ,commercial| +ⲻ V apologize|Ǹ +⳥ V recompense| + V recompense|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ +Ǹ V apologize|Ǹ +Ǯ V InDebt| +Ǯ V pay|,possession=money| +Ц V apologize|Ǹ + V InDebt|,possession=wealth|Ǯ,commercial| + V apologize|Ǹ + V follow| + V follow| + V ServeAsFoil| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ + V undertake|,content=judge|ö,police| + N community|,*judge|ö,police| +Ա N human|,*judge|ö,police| + V GiveAsGift|,purpose=MarryTo| + N tool|þ,*GiveAsGift|,#GetMarried|,generic|ͳ +ͬ V follow| +Ц V please|ȡ + N sound| + V bury| + V MarryTo| + V fit|ʺ + V issue|ַ + V mating| + V mix| + V seek|ıȡ,fit|ʺ + V worth|ֵ +䱸 V arrange| +䱸 V arrange|,military| +䱸 N machine|,generic|ͳ + N quantity|,rate|,&mix| +䲻һ V FitNot| + N edible|ʳ + N fact|,issue|ַ,#electricity| + N room| + V mating| + N quantity|,amount|,$delimit|,&entity|ʵ +䷽ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V issue|ַ + V cooperate| + V coordinate|Э + N fact|,cooperate| +Ĭ N mental|,#coordinate|Э,desired| + N part|,generic|ͳ + N human|,*help| + N human|,entertainment| + V mix|,patient=material| +¥ N house| +ż N human|,family| + V mix|,patient=MusicTool| +ɫ V mix|,patient=color|ɫ + V sell| + V include|,military| + V fit|ʺ + ADJ qValue|ֵ,amount|,all|ȫ +׳ V forming|γ,PatientProduct=complete| +Ϸ V perform|,entertainment| +ҩ V produce|,PatientProduct=medicine|ҩ,medical|ҽ + V MakeSound| + V arrange| + V arrange|,military| + V produce| + V produce|,medical|ҽ + V mating|,agricultural|ũ + V PutOn|,Vgoingon|չ + V respect| + V PutOn|,Vgoingon|չ + V PutOn|,Vgoingon|չ + V respect| + ADJ qValue|ֵ,amount|,many|,desired| + CLAS NounUnit|,&plant|ֲ + V jet| + V jet| +緢 V jet| +緹 ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +緹 V laugh|Ц + N tool|þ,cubic|,*spray|,#liquid|Һ + V irrigate| + N tool|þ,cubic|,*spray|,#liquid|Һ + V decorate|װ + N material|,liquid|Һ,*decorate|װ + V jet| +ɻʻԱ N human|,*drive|Ԧ,#aircraft| +ʽ ADJ aValue|ֵ,performance| +ʽɻ N aircraft| +Ȫ N facilities|ʩ,@jet|,#liquid|Һ + V spray| + V jet| +Ϳ V apply|ͿĨ + N tool|þ,*moisten|ʪ + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%tool|þ,*moisten|ʪ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N land|½ +軨 N FlowerGrass| +辰 N tool|þ,*decorate|װ +ǻ N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,property|,$planting|ֲ + N tool|þ,*decorate|װ + ECHO sound| + V ExpressAgainst|Ǵ + V cook| + V cook| + ADJ aValue|ֵ,attachment|,#cook| + N knowledge|֪ʶ,#cook| +ѧ N human|,*cook| + V cook| + V cook| + V spray| + V excited| + V jet| + N character|,surname|,human|,ProperName|ר + N FlowerGrass| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,form|״,disorder| + ADJ aValue|ֵ,tightness|ɽ,loose| +ͷ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ﳵ N LandVehicle| + N facilities|ʩ,space|ռ,@reside|ס,@put| + N chemical|ѧ +ɰ N material| + N chemical|ѧ + N part|,%ship| + N part|,%vehicle|ͨ,*cover|ڸ + V enlarge| + V enlarge| + ADJ aValue|ֵ,property|,$enlarge| + V enlarge| + N human|,friend| +Ϊ V collude| + N human|,friend| + N human|,friend|,#love| + N bird| + V prosper| + CLAS NounUnit|,&inanimate| + V pick|ʰ + V please|ȡ + V praise|佱 + V help|,scope=perform| + V please|ȡ + V praise|佱 + V bump|ײ + V meet| + V touch| + V try| + V congratulate|ף + V fail|ʧ + V meet| + V fail|ʧ + N tool|þ,*shut|ر + V meet| + ADV aValue|ֵ,time|ʱ,proper| + V meet| + N tool|þ,*shut|ر +ͷ V meet| +ͷ N fact|,@communicate| +һӻ V fail|ʧ +Ӳ V handle|,patient=difficult| +ײ V bump|ײ + N artifact|˹,coarse| + N material|,*build|,coarse| + N material|,?clothing| + N artifact|˹,coarse| +˪ N medicine|ҩ,*kill|ɱ + N thunder| + N thunder| + V ExpressAgainst|Ǵ + CLAS NounUnit|,&inanimate| + CLAS NounUnit|,&physical| + ADJ aValue|ֵ,range|,all|ȫ,desired| + V beat| + V estimate| + N part|,%material|,#clothing| + V write|д,ContentProduct=thought|ͷ + V estimate| + V refute| + V ExpressAgainst|Ǵ + V announce|,politics| + V sell|,commercial| + N attribute|,price|۸,&artifact|˹,commercial| + N human|,#occupation|ְλ,*sell|,commercial| +г N InstitutePlace|,*sell|,@buy|,commercial| + V reply|,politics| + V amend| +ҵ V amend|,patient=text| + N symbol| + N document| + ADJ qValue|ֵ,amount|,many| + N quantity|,amount|,&produce| + V produce|,quantity=many| + V estimate| + N human|,*estimate| + V estimate| + N human|,*estimate| +ʾ V express|ʾ,politics| + N document| + V read|,politics| +ע N part|,%text| +ת V write|д,ContentProduct=thought|ͷ,issue|ַ +׼ V ExpressAgreement|ʾͬ +׼ N human|,*ExpressAgreement|ʾͬ + V CausePartMove| + V FormChange|α,StateFin=OutOfOrder| + V FormChange|α,StateFin=enlarge| + V PutOn| + V open| + N clothing|,#body| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + V PutOn| +ִ V prepare|׼,content=fight|,military| + N clothing|,#body| +¶ V announce| +¶ V reveal|¶ +ɢ V CausePartMove| +ɳ V choose|ѡ,content=heart| +Ǵ V endeavour| + V read| + V StripOff|ȥ + V beat| + V break|۶ + V damage| + V separate| + N shape| + V split|ƿ + N method|,*fight|,military| + N tool|þ,*break|۶,*split|ƿ +ɽ V cut| +ɽ V cut|,industrial| + ADJ aValue|ֵ,speed|ٶ,fast| +ͷ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N MusicTool| + V BeNear| + V BeNear| + V BeNear| +ơ N drinks|Ʒ,$addict|Ⱥ +ơ N drinks|Ʒ,$addict|Ⱥ +ơƳ N InstitutePlace|,factory|,*produce|,#drinks|Ʒ +ơƻ N material|,?drinks|Ʒ +Ƣ N part|,%AnimalHuman|,viscera| +Ƣ N attribute|,behavior|ֹ,&AnimalHuman| +Ƣ N emotion|,bad|,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce| +Ƣ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Ƣ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ƣθ N emotion|,FondOf|ϲ +Ƣ N disease| +Ƣ N part|,%AnimalHuman|,viscera| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣǿ N attribute|,strength|,withstand|ס,#tired|ƣ,&inanimate| +ƣ V decline|˥,commercial| +ƣ V tired|ƣ +ƣ V tired|ƣ +ƣ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ƣ V slack|͵ +ƣڱ V endeavour| +ƣڱ V tired|ƣ +ƣ V slack|͵ +Ƥ V StateChange|̬,StateFin=tough| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous| +Ƥ N character|,surname|,human|,ProperName|ר +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N material|,?tool|þ +Ƥ N part|,%animate|,skin|Ƥ +Ƥ N part|,%artifact|˹,skin|Ƥ +Ƥ N part|,%physical|,skin|Ƥ +Ƥ N shape| +Ƥ N tool|þ,*wrap| +Ƥ N tool|þ,cubic|,@put| +Ƥ˾ N InstitutePlace|,undesired|ݬ,commercial| +Ƥͷ ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ +Ƥ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,*measure|,#length| +Ƥ N fittings|,%clothing| +Ƥ N part|,%implement| +Ƥ N tool|þ,$PutOn| +Ƥ N part|,%implement| +Ƥ N food|ʳƷ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥֲ N method|,*cure|ҽ +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N clothing|,#body| +Ƥ N artifact|˹,commercial|,generic|ͳ +Ƥп N clothing|,#body| +Ƥ N tool|þ,cubic|,@put| +Ƥ N human|,#occupation|ְλ,industrial| +Ƥ V wounded| +Ƥë ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥë N knowledge|֪ʶ,NotProfound|dz +Ƥë N material|,?clothing|,?furniture|Ҿ +Ƥ N material| +Ƥ N SportTool|˶ +Ƥ N tool|þ,*WhileAway| +Ƥʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ƥʵ ADJ aValue|ֵ,quality|,durable|,desired| +Ƥ ADJ aValue|ֵ,attachment|,#part|,#AnimalHuman| +Ƥע V cure|ҽ +Ƥ֯ N part|,%AnimalHuman|,flesh| +Ƥ N tool|þ,linear|,*transmit|,#electricity| +Ƥ ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +Ƥ N tool|þ,cubic|,@put| +ƤЦⲻЦ V pretend|װ,content=laugh|Ц +ƤЬ N clothing|,#foot| +Ƥѥ N clothing|,#foot| +Ƥ N disease| +Ƥ N clothing|,#body| +Ƥ N material|,?clothing|,?furniture|Ҿ +Ƥ N disease| +Ƥ֬ N part|,%AnimalHuman|,nerve| +Ƥֽ N paper|ֽ +Ƥ N part|,%head|ͷ,AnimalHuman|,flesh| +Ƥ N material|,?clothing|,?furniture|Ҿ +ƥ CLAS NounUnit|,&material|,&livestock| +ƥ V equal| +ƥ V fit|ʺ +ƥ V equal| +ƥ N human|,ordinary| +ƥ V GetMarried| +ƥ V fit|ʺ +Ʀ N disease| +Ʀ N human|,undesired|ݬ,evil| +Ʀ N human|,undesired|ݬ,evil| +Ƨ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +Ƨ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +Ƨ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƨ N place|ط,far|Զ +ƨ EXPR expression|,*ExpressDissatisfaction|ʾ +ƨ N gas|,#AnimalHuman|,waste| +ƨ N part|,%AnimalHuman|,base| +ƨ N part|,%animal|,base| +ƨ N part|,%thing|,waste|,head|ͷ +Ʃ N example|ʵ +Ʃ N expression|,#BeSimilar| +Ʃ ADV {supplement|ݽ} +Ʃ N expression|,#BeSimilar| +ƪ CLAS NounUnit|,&text| +ƪ N text| +ƪ N attribute|,area|,&paper|ֽ +ƪ N attribute|,content|,&text| +ƪĿ N part|,%readings|,content| +ƪ N text| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,form|״,slanted| +ƫ V like|ϧ +ƫ N result|,undesired|ݬ,wrong| +ƫ N document|,#medicine|ҩ,medical|ҽ +ƫ V despise| +ƫ V like|ϧ +ƫ V protect| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N thought|ͷ,biased|ƫ,undesired|ݬ +ƫ N fish| +ƫ V leave|뿪 +ƫƧ ADJ aValue|ֵ,distance|,far|Զ +ƫƧ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ƫƫ ADV aValue|ֵ,will|־,strong|ǿ,desired| +ƫƫ ADV {emphasis|ǿ} +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫʳ V eat|,medical|ҽ +ƫ̱ N disease| +ƫ̻ V protect|,manner=biased|ƫ +ƫƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ N attribute|,outlook|ǰ,wrong|,&human|,&organization|֯,&event|¼ +ƫ V endorse|ӵ +ƫб ADJ aValue|ֵ,form|״,slanted| +ƫ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ƫ V result|,undesired|ݬ,wrong| +ƫԶ ADJ aValue|ֵ,distance|,far|Զ +ƫ N lights| +ƫ V ParticularAbout| +ƫת V rotate|ת +Ƭ CLAS NounUnit|,&inanimate| +Ƭ ADJ aValue|ֵ,range|,fragment| +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ V cut| +Ƭ ADJ qValue|ֵ,amount|,few| +Ƭ N shape| +Ƭ N payment|,#perform| +Ƭ N part|,%entity|ʵ +Ƭ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƭ N part|,%entity|ʵ +Ƭ N medicine|ҩ +Ƭײ V disappear|ʧ,military| +Ƭײ V disappear|ʧ,military| +Ƭ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ ADJ aValue|ֵ,range|,pieced|Ƭ,undesired|ݬ +Ƭ N attribute|,range|,pieced|Ƭ,&event|¼ +Ƭʱ ADJ aValue|ֵ,duration|,TimeShort| +Ƭ޴ V disappear|ʧ,military| +Ƭ N shape| +Ƭ N shows| +Ƭ N tool|þ,@record|¼ +Ƭ N tool|þ,@record|¼,#music| +ƭ V deceive|ƭ +ƭ N fact|,deceive|ƭ,undesired|ݬ +ƭȡ V cheat|ƭ +ƭ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƭ V deceive|ƭ,human| +ƭ˵Ķ N entity|ʵ,*deceive|ƭ +ƭ N method|,*deceive|ƭ,undesired|ݬ +ƭ N human|,*deceive|ƭ,undesired|ݬ,crime| +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V roam| +Ʈ N tool|þ,*decorate|װ,$PutOn| +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V decline|˥ +Ʈ V roam| +ƮƮȻ V satisfied| +ƮȻ V float|Ư +Ʈ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ʈ V float|Ư +Ʈ V float|Ư +Ʈ V wave|ڶ +Ʈҡ V float|Ư +Ʈҡ V wave|ڶ +Ʈ ADJ aValue|ֵ,demeanor|,gracious|,desired| +Ư V AlterColor|ɫ +Ư V float|Ư +Ư V wash|ϴ +Ư V AlterColor|ɫ +Ư׷ N material|,*AlterColor|ɫ +Ư V roam| +Ư ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +Ư V float|Ư +Ư ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ư ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ư V float|Ư +ƯȾ V AlterColor|ɫ +Ưϴ V wash|ϴ +Ư V float|Ư +ư N tool|þ,cubic|,*TakeOutOfWater| +ưô N RainSnow|ѩ,strong|ǿ +Ʊ N bill|Ʊ,*choose|ѡ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ +Ʊ N human|,undesired|ݬ,$detain|ס +Ʊ N money| +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N attribute|,price|۸,&coupon|Ʊ֤,commercial| +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N quantity|,amount|,&coupon|Ʊ֤,&money| +Ʊ N tool|þ,cubic|,#select|ѡ +Ʊѡ V choose|ѡ,politics| +Ʊ N human|,*FondOf|ϲ,#perform|,#entertainment| +Ʊ֤ N coupon|Ʊ֤ +Ʊ N bill|Ʊ,#wealth|Ǯ +Ʊ N money| +Ʋ V TakeOutOfWater| +Ʋ V abandon| +Ʋ N part|,%character| +Ʋ V throw| +Ʋ V abandon| +Ʋ V abandon| +Ʋ V despise| +Ƴ V look| +Ƴ V perception|֪ +ƴ V endeavour| +ƴ V endeavour| +ƴ V fight|,military| +ƴ V merge|ϲ +ƴ V fasten|˩ +ƴ V endeavour| +ƴ N food|ʳƷ +ƴ V endeavour| +ƴͼϷ N fact|,recreation| +ƴд V write|д +ƴ N MakeSound| +ƴ N character| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +Ƶ V appear| +Ƶ N attribute|,range|,&frequency|Ƶ +Ƶ N facilities|ʩ,#disseminate| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N attribute|,frequency|Ƶ,&event|¼ +ƵƵ ADJ aValue|ֵ,frequency|Ƶ,often| +Ƶ N phenomena|,sound| +Ƶ ADJ aValue|ֵ,frequency|Ƶ,often| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ƶ N attribute|,richness|ƶ,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N community|,family|,poor| +ƶ V ize|̬,PatientAttribute=poor| +ƶ N human|,poor|,undesired|ݬ +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ƶ N attribute|,richness|ƶ,poor|,&human|,&organization|֯ +ƶ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +ƶũ N human|,#occupation|ְλ,agricultural|ũ +ƶѪ N disease| +ƶ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ƶ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&inanimate| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ V savor| +Ʒ V savor|,patient=drinks|Ʒ +Ʒ V savor| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,style|,&text| +Ʒ ADJ aValue|ֵ,color|ɫ,red| +Ʒ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒ N attribute|,rank|ȼ,&physical| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| +Ʒ ADJ aValue|ֵ,color|ɫ,green| +Ʒ N attribute|,name|,&artifact|˹ +Ʒ N attribute|,name|,&artifact|˹ +Ʒ V estimate| +Ʒͷ V ExpressAgainst|Ǵ +Ʒͷ V estimate| +Ʒ CLAS unit|λ,&volume|ݻ +Ʒζ N attribute|,style|,&physical| +Ʒζ V savor| +Ʒζ V think|˼ +Ʒλ N attribute|,rank|ȼ,&human|,official|,royal| +Ʒλ N attribute|,rank|ȼ,&physical| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒѧ ADJ aValue|ֵ,behavior|ֹ,good|,desired| +Ʒ ADJ aValue|ֵ,color|ɫ,blue| +Ʒ N attribute|,behavior|ֹ,&human| +Ʒ N attribute|,quality|,&entity|ʵ +Ʒ N attribute|,kind|,&animate| +Ʒ N attribute|,kind|,&physical| +Ʒ V savor|,patient=drinks|Ʒ +Ƹ V MarryTo| +Ƹ V employ| +Ƹ N tool|þ,$GiveAsGift|,#GetMarried| +Ƹ N time|ʱ,@undertake| +Ƹ V employ| +Ƹ V invite| +Ƹ V CauseToBe|ʹ֮ +Ƹ V employ| +Ƹ N system|ƶ,#employ| +Ƹ N document|,#employ| +ƸΪ V CauseToBe|ʹ֮ +Ƹ V employ| +ƹ ECHO sound| +ƹ N fact|,exercise|,sport| +ƹ N SportTool|˶ +ƹ N fact|,exercise|,sport| +ƹ N fact|,compete|,sport| +ƹ N fact|,compete|,sport| +ƹ̳ N community|,sport| +ƺ N land|½ +ƺ CLAS unit|λ,&area| +ƻ N character|,(China|й) +ƻ N fruit|ˮ +ƻ N food|ʳƷ,#fruit|ˮ +ƻ N drinks|Ʒ,$addict|Ⱥ,#fruit|ˮ +ƻ N aValue|ֵ,color|ɫ,green| +ƻ N tree|,#fruit|ˮ +ƻ԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ +Ƽ N FlowerGrass| +Ƽˮ V meet| +ƽ V AlterForm|״,level|ƽ +ƽ V BeSame|ͬ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ V attack|,military|,police| +ƽ N character|,surname|,human|,ProperName|ר +ƽ V equal| +ƽ V equal|,sport| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽ峵 N LandVehicle| +ƽ N tool|þ,*print|ӡˢ +ƽ V prosper| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N land|½ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽ N aValue|ֵ,similarity|ͬ,alike| +ƽ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽȻ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ƽ V PutInOrder|,patient=earth|,agricultural|ũ +ƽ N land|½,surfacial| +ƽط粨 N fact|,disorder| +ƽط粨 N phenomena|,undesired|ݬ,disorder|,#unfortunate| +ƽһ V happen|,manner=sudden| +ƽ V attack|,military|,police| +ƽ V calm| +ƽ ADJ aValue|ֵ,kind|,ordinary| +ƽ V amend| +ƽ ADJ aValue|ֵ,form|״,surfacial| +ƽ CLAS unit|λ,&area| +ƽ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&area| +ƽӢ CLAS unit|λ,&size|ߴ,&area| +ƽ N house| +ƽ V put|,result=level|ƽ +ƽ V separate| +ƽɫ V equal| +ƽ V BeRecovered|ԭ +ƽ V calm| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,behavior|ֹ,even|,desired| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ V equal| +ƽ N attribute|,strength|,&physical| +ƽľ N SportTool|˶ +ƽ ADJ aValue|ֵ,SmoothFinish|,polished| +ƽ N part|,%AnimalHuman|,flesh| +ƽ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ N attribute|,price|۸,$stabilize|ʹ,&artifact|˹,commercial| +ƽ V stabilize|ʹ,patient=price|۸,commercial| +ƽ N image|ͼ,angular| +ƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽ N attribute|,circumstances|,peaceful|,desired|,&entity|ʵ +ƽ V BeSame|ͬ,sport| +ƽ ADJ aValue|ֵ,content|,neat|,desired| +ƽ N attribute|,PhysicsPower|,standard|׼ +ƽ N quantity|,amount|,&entity|ʵ +ƽֵ N quantity|,amount|,&entity|ʵ +ƽ N thinking|˼ +ƽ V put| +ƽ N wind| +ƽ¯ N facilities|ʩ,space|ռ,@produce|,#metal| +ƽ CLAS unit|λ,&area| +ƽ N image|ͼ,surfacial| +ƽͼ N image|ͼ +ƽ N human|,ordinary| +ƽ N time|ʱ,year| +ƽ N time|ʱ,year|,#crop|ׯ +ƽƽ ADJ aValue|ֵ,rank|ȼ,average| +ƽƽ ADJ aValue|ֵ,circumstances|,safe|,desired| +ƽƽ ADJ aValue|ֵ,kind|,ordinary| +ƽֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ƽֱ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ƽֱ V explain|˵ +ƽƽ V equal| +ƽ N place|ط,capital|,ProperName|ר,(North Korea|) +ƽ N time|ʱ,ordinary| +ƽ N material|,?clothing|,?tool|þ +ƽ N sound|,#language| +ƽ ADJ aValue|ֵ,duration|,TimeLong| +ƽ N time|ʱ,#alive| +ƽʱ N time|ʱ,ordinary| +ƽʱ N time|ʱ,peaceful|,^fight| +ƽ V BeSame|ͬ,sport| +ƽ˳ V lucky| +ƽ ADV aValue|ֵ,frequency|Ƶ,often| +ƽ̨ N part|,%building|,space|ռ +ƽ̹ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V LieDown| +ƽ V add| +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ƽ V LieDown| +ƽϢ V BeRecovered|ԭ +ƽϢ V attack|,military|,police| +ƽϢ V calm| +ƽ N facilities|ʩ,mine|,space|ռ +ƽĶ V estimate| +ƽľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ƽ ADJ aValue|ֵ,rank|ȼ,alike| +ƽ ADJ aValue|ֵ,sequence|,alike| +ƽ V AlterLocation|ռλ +ƽ V stabilize|ʹ +ƽ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ƽ ADJ aValue|ֵ,content|,easy|,desired| +ƽ׽ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ƽӹ ADJ aValue|ֵ,rank|ȼ,average| +ƽ N fish| +ƽԭ N land|½,surfacial| +ƽ N time|ʱ,month| +ƽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ƽչ ADJ aValue|ֵ,form|״,level|ƽ +ƽ V AlterForm|״,level|ƽ +ƽ ADJ aValue|ֵ,form|״,level|ƽ +ƽװ ADJ aValue|ֵ,property|,$store| +ƽ N part|,%AnimalHuman|,foot|,#disease| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ V lean|п +ƾ N document|,*prove|֤ +ƾ V visit| +ƾ V depend| +ƾ N information|Ϣ,*prove|֤ +ƾ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ƾ V enjoy|,content=scene| +ƾ V look| +ƾ N document|,*prove|֤ +ƾ N document|,*prove|֤ +ƾ֤ N document|,*prove|֤ +ƾ֤ N information|Ϣ,*prove|֤ +ƿ CLAS NounUnit|,&inanimate| +ƿ N tool|þ,cubic|,@put| +ƿ N part|,%tool|þ,*shut|ر +ƿ N phenomena|,undesired|ݬ,hardship| +ƿ N part|,%tool|þ,mouth| +ƿ N part|,%tool|þ,*shut|ر +ƿװ ADJ aValue|ֵ,property|,$store|,#cubic| +ƿ N tool|þ,cubic|,@put| + V estimate| + V judge|ö + N text| + V estimate| + V estimate| + V select|ѡ + V estimate| + V estimate| + V judge|ö + V estimate|,content=unit|λ + V estimate|,content=unit|λ,education| + V estimate|,content=affairs| + V estimate|,content=result| + V estimate| + V estimate|,content=rank|ȼ + V estimate| +ĸ ADJ aValue|ֵ,GoodBad|û,good|,$estimate| + N human|,*estimate| + V estimate|,content=reward| + V estimate| + N shows| + V estimate| +ۼ N human|,*estimate| +Ա N human|,*estimate| +Ա N text|,*explain|˵ + V judge|ö + N human|,*estimate| + V estimate| + N shows| + N text|,*explain|˵ +˵ V estimate| +Ϊ V RegardAs| +ί N human|,*estimate| +ί N institution|,*estimate| +н V judge|ö,content=payment|,commercial| +ѡ V choose|ѡ + V estimate| + N text| + V estimate| + V abandon| + V cover|ڸ + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N image|ͼ + V remove| + V restrain|ֹ + V cover|ڸ + V dismiss| + V remove| + N furniture|Ҿ,*decorate|װ,*cover|ڸ + N part|,%building|,mouth| +Ļ N part|,%machine|,*look|,#computer| + V abandon| + N facilities|ʩ,*protect| + V protect| + ADJ aValue|ֵ,form|״,slanted| + N part|,%land|½,skin|Ƥ +µ N land|½ +µ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +¶ N attribute|,slope|¶,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V dump| +ø N human|,female|Ů,undesired|ݬ,fierce| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ˮ V discourage|ˮ +ī V draw|,literature| +ˮ N time|ʱ,festival|,@congratulate|ף + ADV aValue|ֵ,degree|̶,very| +ΪҪ ADJ aValue|ֵ,importance|,important| + N human|,aged|,female|Ů + N human|,employee|Ա,female|Ů + N human|,family|,female|Ů +ż N community|,#family| + N human|,family|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ + ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +ϱ N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,female|Ů + V float|Ư + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V defeat|սʤ + V defeat|սʤ,military| + V destroy|,military| + V remove| + V reveal|¶ + V split|ƿ +ư V reveal|¶,patient=fact|,police| +ư ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +Ʊ N ship| +Ʋ V lose|ʧȥ,possession=wealth|Ǯ +Ʋ V BeUnable|,content=return|,commercial| +Ʋ ADJ aValue|ֵ,circumstances|,InDebt|,commercial| +Ʋ V fail|ʧ +Ʋ N human|,*BeUnable|,#return|,#owe|Ƿ,undesired|ݬ,commercial| +Ƴ V remove| +Ʒ V spend| +Ƹ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ƹ V disobey|Υ,content=regulation| +ƻ V alter|ı,manner=all|ȫ +ƻ V damage| +ƻ V destroy| +ƻ V disobey|Υ +ƻ ADJ aValue|ֵ,ability|,able|,damage| +ƻ N human|,*damage| +ƻ V reveal|¶,police| +ƻ V attack|,military| +ƻ V destroy|,military| +ƾԲ V BeRecovered|ԭ +ƾ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ƾ V improve| +ƿ V split|ƿ +ƿ N location|λ,#disease|,#wounded| +ƿڴ V ExpressAgainst|Ǵ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N entity|ʵ,generic|ͳ,waste| + N entity|ʵ,waste| +ò ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V disobey|Υ,content=regulation| +˸ V OutOfOrder| +˸ V OutOfOrder| +˸ V wounded| + V FormChange|α,StateFin=OutOfOrder| + V decline|˥ + V decline|˥,commercial| + V open|,patient=part|,means=split|ƿ +ն V guess|² + V disappear|ʧ +˷ N disease| + V FormChange|α,StateFin=OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V OutOfOrder| + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ +ΪЦ V laugh|Ц + ADJ aValue|ֵ,kind|,special| + V appear|,agricultural|ũ + V start|ʼ,agricultural|ũ + V start|ʼ,industrial| + V start|ʼ,content=build| + V appear| +˹ V start|ʼ,content=build| + V win|ʤ,sport| + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| +Ь N clothing|,#foot|,*OutOfOrder| +Ь N human|,lascivious|,female|Ů,undesired|ݬ + V translate| +Լ V disobey|Υ,content=MakeAppointment|Լ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N attribute|,strength|,&AnimalHuman| + N mental| + N attribute|,courage|,&AnimalHuman| + V BeNear| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + V approach|ӽ + V force|ǿ +Ȳ V undergo|,content=force|ǿ +Ȳ V worried|ż +Ⱥ V damage|,politics| +Ƚ V approach|ӽ + ADJ aValue|ֵ,circumstances|,urgent| +Ҫ V need| +ʹ V force|ǿ + PREP {condition} +ü ADJ aValue|ֵ,circumstances|,urgent| + N stone|ʯ,waste| + V analyze| + V split|ƿ +ʰ V explain|˵ +ʸ V split|ƿ,patient=part|,#AnimalHuman| +ʹ V labour|ٲ,means=cure|ҽ +ʽ V analyze| +ʿ V split|ƿ + N part|,%physical|,surfacial| + V analyze| + V FallDown| + V GoForward|ǰ + V apply|ͿĨ + V attack| + V beat| +˱ V touch|,PartOfTouch=part|,#AnimalHuman| +˴ V beat| +˷ V MakeUp|ױ +˷ N tool|þ,*MakeUp|ױ +˾ V remove|,patient=fire| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ N tool|þ,*gamble|IJ,*recreation| +˿ V fail|ʧ + N tool|þ,cubic|,@put|,#wealth|Ǯ + V touch|,PartOfTouch=part|,#AnimalHuman| + V remove| +˷ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V jump| + V shiver| + V shiver|,medical|ҽ +ͨ ECHO sound| + N InstitutePlace|,*sell|,@buy|,commercial| + V build| + N furniture|Ҿ,space|ռ,@LieDown|,@sleep|˯ + V unfold|̯ +̳ V explain|˵ +̵ N method|,#readings| +̵ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̸ N tool|þ,space|ռ,@LieDown|,@sleep|˯ +̹ܹ N human|,#occupation|ְλ,industrial| +̹ V build|,PatientProduct=facilities|ʩ,route|· +̿ V undergo|,Vgoingon|չ +· V build|,PatientProduct=facilities|ʩ,route|· +· N human|,#occupation|ְλ,industrial| + V exist| + N part|,%InstitutePlace|,#commercial|,mouth| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V lavish|˷ +ƽ V unfold|̯ +ƽ· V build|,PatientProduct=route|· + V build| +̯ V unfold|̯ +ǵ ADJ qValue|ֵ,amount|,many| +λ N location|λ,space|ռ,#sleep|˯ + V explain|˵ +չ V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +˷ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա +ʹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Portugal|) + N fruit|ˮ +Ѹ N food|ʳƷ +Ѽ N facilities|ʩ,*planting|ֲ,#fruit|ˮ,agricultural|ũ +Ѿ N drinks|Ʒ,$addict|Ⱥ + N bacteria|΢ +ղ N human|,*gather|ɼ,agricultural|ũ + N material|,?edible|ʳ + N tree|,#fruit|ˮ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Portugal|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר +԰ N land|½,@planting|ֲ,#fruit|ˮ,#tree|,agricultural|ũ + N humanized|,religion|ڽ + N human|,kindhearted|,desired| + N attribute|,behavior|ֹ,#religion|ڽ + N tree| + N FlowerGrass| + N character|,surname|,human|,ProperName|ר +Ѱ N tool|þ,cubic|,@put| +Ѳ N FlowerGrass| +ѹӢ N FlowerGrass| + N tree| + N tool|þ,#wind|,*cool| + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ʵ޻ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,content|,simple|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N facilities|ʩ,#plant|ֲ + ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ ADJ aValue|ֵ,range|,extensive| +ձ N attribute|,range|,extensive|,&entity|ʵ +ղ V investigate| +ն N material|,?drinks|Ʒ +շ V disseminate|,content=knowledge|֪ʶ,#law|ɷ +ջ N regulation|,commercial| +ռ V CauseToDo|ʹ,ResultEvent=exist|,manner=extensive| +ռ V disseminate| +ռ ADJ disseminate| +ռ V exist|,manner=extensive| +ռ N quantity|,rate|,&disseminate| +ս V WeatherChange| + N money|,(Botswana|) + N place|ط,capital|,ProperName|ר,(Cape Verde|ý) +³ʿ N place|ط,ProperName|ר +³ʿ N human|,(Prussia|³ʿ) +ͨͨ ADJ aValue|ֵ,kind|,ordinary| +ʲͼ N language|,#country|,ProperName|ר +ͬ V congratulate|ף +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ N symbol|,#quantity|,#DoSum| +ͨ N language| +ͨ N human|,ordinary| +ѡ V select|ѡ + V illuminate| + N character|,surname|,human|,ProperName|ר + N part|,%land|½,#waters|ˮ,edge| + N account|,@record|¼ + V compile|༭ + N experience|,believe| + N publications|鿯,@record|¼,#music| + V compile|༭,ContentProduct=music| +д V compile|༭ + N publications|鿯,@record|¼,#music| + V exposure|¶ +ع V exposure|¶ +¶ V exposure|¶ +ɹ N illuminate| + N water|ˮ,fast| +ٲ N water|ˮ,fast| + CLAS NounUnit|,&fact| + CLAS NounUnit|,&publications|鿯 + V expect| + N time|ʱ +ڴ V expect| +ڻ N artifact|˹,commercial|,generic|ͳ +ڻ V affairs|,commercial| +ڼ N time|ʱ +ڿ N publications|鿯 + V due| +ĩ N time|ʱ,ending|ĩ,education| + V expect| +Ʊ N bill|Ʊ + N aspiration|Ը,expect| + V expect| +ֵ N aspiration|Ը,expect| + N attribute|,boundary|,&time|ʱ + N time|ʱ,middle|,education| + V damage| + V deceive|ƭ + V use| +۸ V damage| + V damage| + V HideTruth| +ƭ V deceive|ƭ +ƭ ADJ aValue|ֵ,property|,*deceive|ƭ +ƭ N human|,crime|,undesired|ݬ,*deceive|ƭ +Ӳ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + V HideTruth| + V damage| +ѹ V damage| +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +թ V deceive|ƭ + V reside|ס + V stay|ͣ + V reside|ס + V stay|ͣ +Ϣ V reside|ס + N character|,surname|,human|,ProperName|ר + N emotion|,sorrowful| + N human|,family| + N human|,family|,female|Ů +޶ N human|,family|,mass| +޶С N human|,family|,mass| +ɢ V unfortunate|,scope=lose|ʧȥ,family| + N human|,family|,female|Ů + N human|,family|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ƴ˴ V merge|ϲ +± N fact|,fight|,#(China|й),#(Japan|ձ) +ɰ N tool|þ,*recreation| + V ExpressAnger|ʾŭ +ϰ ADJ aValue|ֵ,form|״,rugged| +ϰ V uneasy| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| +Ϧ N time|ʱ,day|,night| +һ N time|ʱ,day| + N time|ʱ,month| +· N time|ʱ,month| + N qValue|ֵ,rate|,$subtract|,#sell|,commercial| + ADJ aValue|ֵ,property|,speak|˵,bustling| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N phenomena|,unfortunate|,undesired|ݬ + N phenomena|,undesired|ݬ,#WeatherBad| + N phenomena|,unfortunate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V sorrowful| +Ȼ V sorrowful| + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + N tool|þ,*transmit|,#electricity| +᲼ N material|,?tool|þ + N character|,surname|,human|,ProperName|ר + N tool|þ,*decorate|װ,generic|ͳ +Ṥ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ṥ N image|ͼ,$apply|ͿĨ +Ṥ N image|ͼ,$draw| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| +һ ADJ aValue|ֵ,brightness|,dark| +һ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +έ N human|,#occupation|ְλ,industrial|,*decorate|װ +Ƥ N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƥ N part|,%material|,#apply|ͿĨ,skin|Ƥ + N tool|þ,*decorate|װ,generic|ͳ + NUM qValue|ֵ,amount|,cardinal|,mass| + V produce| + ADJ aValue|ֵ,kind|,special| + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + PRON {it|} + ADJ aValue|ֵ,importance|,secondary| + ADV aValue|ֵ,sequence|,ordinal| + ADV location|λ,hind| + N time|ʱ,future| + N location|λ + N time|ʱ +ò ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ʵ ADV aValue|ֵ,trueness|α,true| + ADJ aValue|ֵ,kind|,other| + PRON {it|} + ADJ aValue|ֵ,kind|,other| + N location|λ + N tool|þ,*recreation| + V equal| + N tool|þ,*recreation| + N human|,*FondOf|ϲ,#recreation| + N part|,%tool|þ,#recreation| +ʥ N human|,desired|,wise|,sport| + N human|,*engage|,#compete|,sport| +̳ N community|,sport| + N knowledge|֪ʶ,#sport| + N part|,%tool|þ,#recreation| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + ADJ aValue|ֵ,kind|,single| + ADJ aValue|ֵ,kind|,special| + N human|,desired|,wise| + N language|,#country|,ProperName|ר +湦 N result|,#succeed|ɹ,desired| + ADJ aValue|ֵ,kind|,queer| + V ignorant|֪ + N attribute|,scene|,good|,&inanimate| +ɾ ADJ aValue|ֵ,value|ֵ,precious|,desired| +漣 N entity|ʵ,queer| +漣 ADJ aValue|ֵ,kind|,queer| +澰 N attribute|,scene|,good|,&inanimate| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ȱ V lack|ȱ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N text|,desired| + N text|,undesired|ݬ + N information|Ϣ,queer| +Ϯ V attack|,manner=sudden|,military| +Ч N attribute|,effect|Ч,good|,&entity|ʵ,&act|ж +ι״ ADJ aValue|ֵ,form|״,queer| +ѫ N result|,desired| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + N phenomena|,desired|,#lucky| + N phenomena|,queer| + N method| +װ N clothing|,queer| + N FlowerGrass| + ADJ aValue|ֵ,similarity|ͬ,different| + N facilities|ʩ,route|·,branch|֧ +· N facilities|ʩ,route|· + V despise| +; N facilities|ʩ,route|·,wrong| + N information|Ϣ + N land|½ + V irrigate|,agricultural|ũ + ADJ aValue|ֵ,form|״,rugged|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| +᫲ƽ ADJ aValue|ֵ,form|״,rugged| + N part|,%AnimalHuman|,body| + N part|,%fish|,body| + N part|,%AnimalHuman|,body| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + ADJ aValue|ֵ,form|״,neat|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete| + N character|,surname|,human|,ProperName|ר +뱸 ADJ aValue|ֵ,wholeness|ȱ,complete| +볪 V sing|,entertainment| + ADJ aValue|ֵ,content|,neat|,desired| + V MakeSound| + V WellKnown| + N place|ط,city|,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| + ADJ aValue|ֵ,property|,MakeSound|,together|ͬ +ˢˢ ADJ aValue|ֵ,content|,neat|,desired| +ͷ V GoForward|ǰ + V cooperate| +Э V cooperate| + ADJ aValue|ֵ,depth| + ADJ aValue|ֵ,form|״,neat|,desired| +ץ V manage|,manner=cooperate| + V recreation|,entertainment| + N mark|־ + N place|ط,#human| + N tool|þ,@hang|,#mark|־ + N mark|־ +콢 N weapon|,ship|,military| +쿪ʤ V succeed|ɹ +쿪ʤ V win|ʤ + N clothing|,#body|,#female|Ů + N human|,*lift|,#mark|־ + N mark|־ + ADJ aValue|ֵ,behavior|ֹ,opened| + N mark|־ + V recite|ж + V request|Ҫ + V recite|ж + V request|Ҫ + N character|,surname|,human|,ProperName|ר + N material|,?drinks|Ʒ + V sit| + N army| + N human|,military| + N part|,%army| +ﳵ V TakeVehicle|,patient=LandVehicle| +ﻢ V embarrassed|Ϊ +ᆵ N human|,#occupation|ְλ,police| + V TakeVehicle|,patient=livestock| +ʿ N human|,military| + N human|,#occupation|ְλ,*TakeVehicle|,#livestock| + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&event|¼ + V PickOut|γ + V appear| + V arise| + V collect| + V compile|༭ + V do| + V establish| + V happen| + V rise| + V start|ʼ + STRU {Vable|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + V write|д + V begin|ʼ + V compile|༭ + N human|,*compile|༭ + V start|ʼ,content=leave|뿪 + ADV aValue|ֵ,time|ʱ,early| + V arise| + V do| + N location|λ,space|ռ,@begin|ʼ + V lift| + V start|ʼ + V start|ʼ,content=fly| + V WeatherBad|,#wind| + V SelfMoveInDirection| + ADJ aValue|ֵ,form|״,rugged| + V compile|༭,ContentProduct=text| + V start|ʼ,content=VehicleGo|ʻ + V IllBehave| + V cook| + V unfortunate|,cause=fire|,police| + V obtain|õ,means=LookFor|Ѱ,#crime| + V collect|,possession=artifact|˹,commercial| + V prosper| + N attribute|,price|۸,&artifact|˹,commercial| + N reason| + V SelfMoveInDirection| + V endeavour| + N fact|,#alive| + N room| + V arise| + STRU {Vdirection|,upper|} + STRU {Vresult|} + STRU {Vstart|} + STRU {Vsuppose|ٶ} + V arise| + V SelfMoveInDirection| + ADJ aValue|ֵ,rank|ȼ,elementary| +ê V start|ʼ,content=VehicleGo|ʻ + V naming| + V start|ʼ,content=run|,sport| + N location|λ,@start|ʼ,#run|,sport| + V swollen| + N process| +Ȧ V clean|ʹ,agricultural|ũ +ɫ N result|,#improve|,desired| + V arise| + V start|ʼ,content=leave|뿪 +ʼ V begin|ʼ + V uprise|,politics| + V swear| + V start|ʼ + ADV aValue|ֵ,time|ʱ,early| +ˮ V swollen| + V BeRecovered|ԭ,medical|ҽ + V accuse|ظ,police| + N document|,*accuse|ظ,police| +״ N document|,*accuse|ظ,police| + V start|ʼ,content=jump|,sport| +ͷ ADV aValue|ֵ,time|ʱ,early| +ͷ V start|ʼ + ADV aValue|ֵ,time|ʱ,early| + V start|ʼ,content=leave|뿪 +ҹ V arise|,purpose=excrete|й + V doubt| + N fact|,uprise|,politics| + V uprise|,politics| + N human|,*uprise|,politics| + N cause|ԭ + V BeRecovered|ԭ + V employ| +Դ V ResultFrom|Ե +Դ N cause|ԭ + V start|ʼ,content=transport| +̰ ADJ aValue|ֵ,duration|,TimeLong| + V lift| +ػ N machine|,*lift| + N material|,?food|ʳƷ + N tool|þ,*open|,#tool|þ + V function| + ADJ aValue|ֵ,form|״,wrinkled| + V start|ʼ,content=VehicleGo|ʻ + ADJ aValue|ֵ,form|״,wrinkled| + ADV {comment|} + CONJ {emphasis|ǿ} + ADV {comment|} +д ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ֹ CONJ {emphasis|ǿ} + V beg| + V request|Ҫ + V surrender|,military| + V request|Ҫ,ResultEvent=pity| + V beg| + V request|Ҫ + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ +Ԯ V request|Ҫ,ResultEvent=help| +ؤ N human|,poor|,undesired|ݬ + V expect| + V upmove| + V bird|,^fly| + V manage|,patient=affairs|,#industrial| + N plans|滮 + V expect| +ҵ N affairs| +ͼ N aspiration|Ը,expect| +ͼ V try| + V expect| +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ V manage|,patient=affairs|,AccordingTo=commercial| +ҵ N human|,#occupation|ְλ,commercial| +ҵ N community|,commercial| + V explain|˵ + V open| + V start|ʼ + V teach| + V start|ʼ,content=leave|뿪 + V teach| + V TurnOn| + V start|ʼ +ɱ N expenditure|,*start|ʼ,#affairs| + N expenditure|,*start|ʼ,#affairs| + V teach| +ʽ ADJ aValue|ֵ,content| + N human|,*teach| + V open| + V start|ʼ,content=VehicleGo|ʻ + V teach| + V CauseToDo|ʹ,ResultEvent=doubt| +ʾ V teach| + N text|,*announce| + V incur| + V start|ʼ,content=quarrel| + V use| + V start|ʼ,content=transport| + V start|ʼ,content=VehicleGo|ʻ + V carve| + N document|,*MakeAppointment|Լ + V fit|ʺ + V fit|ʺ + N time|ʱ,important| + N bill|Ʊ,#wealth|Ǯ + N document|,*MakeAppointment|Լ + N human|,friend| +Լ N agreement|Լ + V build| + N part|,%building|,nerve| + N attribute|,ability|,&human| + N implement|,generic|ͳ + N part|,%AnimalHuman|,viscera| + N implement| + N part|,%AnimalHuman| + N part|,%implement|,generic|ͳ + N implement|,generic|ͳ + N music| + N tool|þ,generic|ͳ + N implement|,generic|ͳ +е N implement|,generic|ͳ +е N weapon|,generic|ͳ +е N fact|,sport| +е N fact|,sport| +Լ N disease| + V PayAttention|ע + V angry| + N attribute|,bearing|̬,&human| + N attribute|,odor|ζ,&physical| + N attribute|,strength|,&AnimalHuman| + N gas| + N gas|,#human| + V irritate|ŭ + N tool|þ,*inhale|,#gas| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V angry| + N disease|,pant| + V pant| + V pant| + N part|,%building| + N machine|,*beat| + N tool|þ,*inlay|Ƕ +洬 N ship| + ADJ aValue|ֵ,performance| +Һѹ ADJ aValue|ֵ,performance| + N attribute|,demeanor|,&human| + N attribute|,tolerance|,&human| + V disheartened| + V pant| + N part|,%implement| + N attribute|,occasion|,&event|¼ + V angry| + N mental| + N part|,%implement| + V break|۶,industrial| + N part|,%plant|ֲ,base| + N attribute|,strength|,&AnimalHuman| + N part|,%AnimalHuman|,viscera| + N disease| +᳤ ADJ aValue|ֵ,courage|,brave|,desired| + V fasten|˩,industrial| + N attribute|,circumstances|,&entity|ʵ + N weather| + V ize|̬,PatientAttribute=gas| + V pant| +ܻ V worried|ż + N attribute|,behavior|ֹ,&human| + V die| + N part|,%AnimalHuman| + N part|,%building| + N part|,%inanimate| + N part|,%plant|ֲ + N attribute|,tolerance|,&human| + N gas| +ú N material|,$burn| + N part|,%AnimalHuman| + N part|,%implement| + ADJ aValue|ֵ,circumstances|,$shut|ر + N part|,%bird|,#gas| + N tool|þ,cubic|,@put|,#gas| + V angry| + V disheartened| + ADJ disheartened| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,demeanor|,&human| + N shape| + ADJ aValue|ֵ,courage|,brave|,desired| +ǹ N weapon|,*firing| + N tool|þ +ɫ V BeWell|׳ + N attribute|,strength|,&physical| +ư ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,circumstances|,&human|,&organization|֯ +Ѿ V decline|˥ +Ѿ V end|ս +̬ N attribute|,PhysicState|״̬,gas|,&physical| + N gas| + N facilities|ʩ,mine| +Ͳ N tool|þ,*fill|,#gas| +ͷ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + N gas| +ɽ ADJ aValue|ֵ,courage|,brave|,desired| +ζ N attribute|,odor|ζ,&physical| +ζ N emotion|,FondOf|ϲ +ζͶ V fit|ʺ + N attribute|,temperature|¶,&weather| +Ϣ N attribute|,odor|ζ,&physical| +Ϣ N gas| +Ϣ V decline|˥ + N attribute|,occasion|,&event|¼ + N knowledge|֪ʶ,#weather| + N weather| +̨ N InstitutePlace|,*investigate|,#weather| +ǧ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N aircraft|,#WeatherChange| +ѧ N knowledge|֪ʶ,#weather| +վ N InstitutePlace|,*investigate|,#weather| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) + N disease| + V ill|̬ + N gas| +Ѫ N attribute|,strength|,&AnimalHuman| +ѹ N attribute|,strength|,&gas| +ѹ N attribute|,strength|,&gas| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pant| + N attribute|,behavior|ֹ,&human| + N attribute|,quality|,&human| +׳ɽ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V swollen| + PREP {TimeFin} + N time|ʱ,now| +Ϊֹ N time|ʱ,now| + V abandon| +Ͷ V amend|,content=wrong| +ʴ V include|,ResultWhole=army|,military| + N human|,$abandon|,young| +ҷ V defeated|,military| +ͼ V amend|,content=wrong| +Ȩ V abandon|,possession=choose|ѡ +Ȩ V abandon|,possession=compete| + V die| +Ӥ V abandon|,possession=human|,young| +Ӥ V human|,young|,$abandon| + V abandon| + N gas| + N LandVehicle| +ҵ N affairs|,#LandVehicle| +ù N InstitutePlace|,@reside|ס,#tour|,#LandVehicle|,commercial| +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#LandVehicle| +վ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| + N ship| + N machine|,*beat| + N tool|þ,*illuminate| + N tool|þ,*MakeSound| + N part|,%implement| + V ize|̬,industrial| + N part|,%machine| + N drinks|Ʒ,$addict|Ⱥ +ַ N machine|,*produce|,#electricity| +ֻ N machine| +ˮ N drinks|Ʒ +ͧ N ship| + N material|,liquid|Һ,$burn|,*lighting|ȼ + V weep| + V weep| + V finish| + V break|۶ + V calculate| +ͷȥβ V subtract| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡô ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ CONJ {time|ʱ} +ǡ ADV {emphasis|ǿ} +ǡǡ ADV {emphasis|ǿ} +ǡǡ෴ ADV {supplement|ݽ} +ǡ ADV aValue|ֵ,time|ʱ,proper| +ǡ PREP {contrast} +ǡ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǡ PREP {contrast} +Ǣ V discuss| +Ǣ V fit|ʺ +Ǣ V discuss| +Ǣ̸ V discuss| +Ǣ̸ N fact|,discuss| +ǣ V guide| +ǣ V pull| +ǣ V relate|й +ǣҶ V ThinkOf|˼ +ǣ V relate|й +ǣ V obstruct|ֹ +ǣ V restrain|ֹ +ǣ V restrain|ֹ,military| +ǣ V influence|Ӱ +ǣ V ThinkOf|˼ +ǣ V relate|й +ǣ V connect| +ǣ V relate|й +ǣţ N celestial| +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣǿ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ǣ V relate|й +ǣ V tie| +ǣͷ V guide| +ǣ V ally| +ǣ V control| +ǣߴ V reconcile| +ǣ V pull| +ǣ N LandVehicle|,*pull| +ǣ N attribute|,strength|,#pull|,&physical| +ǣ V restrain|ֹ,military| +ǣƲ N army| +ǥ N tool|þ,*stab| +ǥ N tool|þ,*stab|,#stone|ʯ +Ǧ N metal| +Ǧ N tool|þ,*print|ӡˢ +Ǧ N PenInk|ī,*write|д +Ǧ N material|,?tool|þ +Ǧ N tool|þ,*build| +Ǧ N SportTool|˶ +Ǧӡ V print|ӡˢ +Ǧֱ ADJ aValue|ֵ,posture|,upright| +Ǧ ADJ aValue|ֵ,source|Դ,metal| +Ǧж N disease| +Ǧ N tool|þ,*print|ӡˢ +ǧ NUM qValue|ֵ,amount|,cardinal|,mass| +ǧ NUM qValue|ֵ,amount|,many| +ǧ V aValue|ֵ,kind|,many| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ V differ|ͬ,scope=many| +ǧٿ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ǧ V MakeBetter|Ż +ǧټ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ǧ֮һ NUM qValue|ֵ,amount| +ǧ N human|,mass| +ǧ CLAS unit|λ,&electricity| +ǧ CLAS unit|λ,&electricity| +ǧ ADJ aValue|ֵ,duration|,TimeLong| +ǧ V call|ٻ +ǧ N community|,#family|,many| +ǧ ADJ aValue|ֵ,weight|,heavy| +ǧ N tool|þ,*lift| +ǧﶥ N tool|þ,*lift| +ǧ N human|,family|,female|Ů +ǧ N wealth|Ǯ,many| +ǧ CLAS unit|λ +ǧһ N time|ʱ,dangerous|Σ +ǧ N army|,strong|ǿ +ǧ CLAS unit|λ,&weight| +ǧ N FlowerGrass| +ǧ N livestock|,desired|,fast| +ǧ ADJ aValue|ֵ,distance|,far|Զ +ǧ N human|,able|,desired| +ǧ N tool|þ,*look|,#far|Զ +ǧ N phenomena|,*damage|,#software| +ǧƪһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ǧٹ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +ǧǧ NUM qValue|ֵ,amount|,many| +ǧ N time|ʱ,TimeLong| +ǧҵ N affairs|,great|ΰ,TimeLong| +ǧɽˮ ADJ aValue|ֵ,distance|,far|Զ +ǧ CLAS unit|λ,&volume|ݻ +ǧ˿ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ǧͷ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ǧͷ ADJ qValue|ֵ,amount|,many| +ǧ CLAS unit|λ,&electricity| +ǧʱ CLAS unit|λ,&electricity| +ǧ NUM qValue|ֵ,amount|,many| +ǧ ADV {modality|} +ǧǧ ADV {modality|} +ǧ N phenomena|,undesired|ݬ,hardship| +ǧ N text|,many| +ǧѷ ADJ qValue|ֵ,amount|,few| +ǧһʱ ADJ qValue|ֵ,amount|,few| +ǧȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ǧ CLAS unit|λ,&frequency|Ƶ +ǧ N time|ʱ,year| +Ǩ V SelfMoveInManner|ʽ +Ǩ V change| +Ǩ V TakeAway|ᶯ,patient=capital| +Ǩ V endure| +Ǩ V obey|ѭ +Ǩ V surrender| +Ǩ V TakeAway|ᶯ,patient=family| +Ǩŭ V blame|Թ +Ǩ V TakeAway|ᶯ +Ǩ V delay| +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ +Ǩ V SelfMoveInManner|ʽ +Ǩ V TakeAway|ᶯ,patient=family| +ǩ V sign|д +ǩ N tool|þ +ǩ N tool|þ,#mark|־ +ǩ V write|д +ǩ V record|¼ +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V MakeAppointment|Լ,means=sign|д +ǩ V send| +ǩͬ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩ V sign|д,ContentProduct=name| +ǩ N human|,*sign|д +ǩ V receive|,means=sign|д +ǩ V sign|д +ǩЭ V forming|γ,PatientProduct=document|,#MakeAppointment|Լ,commercial| +ǩԼ V sign|д,content=agreement|Լ,commercial| +ǩ֤ N document| +ǩע V write|д +ǩ V sign|д,ContentProduct=name| +Ǫ NUM qValue|ֵ,amount|,cardinal| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫǫ N human|,desired|,modest|ǫ +ǫ V refuse|,manner=modest|ǫ +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ǫѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ǭ ADJ aValue|ֵ,sex|Ա,male| +Ǭ N natural|Ȼ +Ǭ¡ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ǭ ADJ aValue|ֵ,color|ɫ,black| +ǭ N human|,mass| +Ǯ N character|,surname|,human|,ProperName|ר +Ǯ N fund|ʽ +Ǯ N money| +Ǯ CLAS unit|λ,&weight|,(China|й) +Ǯ N wealth|Ǯ +Ǯ N tool|þ,cubic|,@put| +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N money| +Ǯ N wealth|Ǯ +Ǯ N wealth|Ǯ,$obtain|õ,commercial| +Ǯ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ǯׯ N InstitutePlace|,past|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ǯ V pick|ʰ +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǯ N affairs|,industrial| +ǯ N human|,#occupation|ְλ,industrial| +ǯ V restrain|ֹ +ǯ N tool|þ,*hold| +ǰ ADJ aValue|ֵ,source|Դ,original|ԭ +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ N location|λ,InFront|ǰ +ǰ NUM qValue|ֵ,sequence|,ordinal| +ǰ N time|ʱ,past| +ǰ뱲 N time|ʱ,process|,@alive|,half| +ǰ볡 N part|,%fact|,#compete|,#exercise| +ǰ N time|ʱ,morning| +ǰ N time|ʱ,process|,@alive|,half| +ǰ N time|ʱ,morning| +ǰҹ N time|ʱ,day|,night| +ǰ N human|,clan| +ǰ N part|,%human|,arm| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N time|ʱ,past| +ǰ֮ N information|Ϣ,*persuade|Ȱ˵ +ǰ N phenomena|,past| +ǰ N attribute|,outlook|ǰ,&thing| +ǰƽ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ N aValue|ֵ,outlook|ǰ,great|ΰ,desired| +ǰ V guide| +ǰ N place|ط,military|,InFront|ǰ +ǰ N part|,%AnimalHuman|,head|ͷ +ǰ N location|λ,InFront|ǰ +ǰ N human|,family|,female|Ů,past| +ǰ N human|,employee|Ա,*exercise| +ǰ N human|,guide| +ǰ N human|,family|,male| +ǰ V KeepOn|ʹ +ǰ V fail|ʧ +ǰ ADV aValue|ֵ,duration|,TimeLong| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ ADV qValue|ֵ,amount|,almost| +ǰ N location|λ,surrounding|Χ,space|ռ +ǰ N part|,%clothing|,body| +ǰ V GoForward|ǰ +ǰ N attribute|,outlook|ǰ,&thing| +ǰ N attribute|,scene|,&physical| +ǰ N fact|,crime|,undesired|ݬ,past| +ǰ V come| +ǰ N example|ʵ +ǰ N location|λ,InFront|ǰ +ǰ N part|,%AnimalHuman|,nerve| +ǰٷʴ N disease| +ǰ N disease| +ǰ N part|,%LandVehicle|,leg| +ǰé N community|,*succeed|ɹ,#HaveContest| +ǰ N part|,%building|,mouth| +ǰ ADJ aValue|ֵ,time|ʱ,past| +ǰ ADJ location|λ,InFront|ǰ +ǰ N location|λ,InFront|ǰ,space|ռ +ǰ N time|ʱ,past|,year| +ǰ N location|λ,InFront|ǰ +ǰͺ V KeepOn|ʹ +ǰ N time|ʱ,early| +ǰ N human|,family|,female|Ů +ǰǰ N process| +ǰ V PartSelfMove| +ǰ N human|,past| +ǰȥ V LeaveFor|ǰ +ǰ N human|,past| +ǰ N human|,#occupation|ְλ +ǰ N human|,past| +ǰ N time|ʱ,past|,day| +ǰ N human|,military|,*look|,*defend| +ǰ N physical|,past| +ǰ² EXPR remember|ǵ,content=past| +ǰ ADJ aValue|ֵ,kind|,special| +ǰδ ADJ aValue|ֵ,kind|,special| +ǰ̨ N facilities|ʩ,space|ռ,#perform| +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N attribute|,standard|׼,&entity|ʵ +ǰ N time|ʱ,past|,day| +ǰͥ N part|,%AnimalHuman| +ǰͷ ADJ aValue|ֵ,time|ʱ,past| +ǰͷ ADJ location|λ,InFront|ǰ +ǰ; N attribute|,outlook|ǰ,&thing| +ǰ; V prosper| +ǰ N part|,%animal|,leg| +ǰ V LeaveFor|ǰ +ǰ N human|,*exercise|,(football|) +ǰ޹ ADJ aValue|ֵ,kind|,special| +ǰϦ N time|ʱ,past| +ǰ N place|ط,military|,InFront|ǰ +ǰ߲ N army| +ǰ N part|,%text| +ǰԲ V FitNot| +ǰ N place|ط,military|,InFront|ǰ +ǰ V CausePartMove|,PatientPartof=body| +ǰҹ N time|ʱ,past| +ǰʶ N thought|ͷ +ǰ N process| +ǰԵ N attribute|,relatedness|,&human| +ǰհ V predict|Ԥ +ǰհ N attribute|,ability|,predict|Ԥ,&human|,&organization|֯ +ǰ N information|Ϣ +ǰ N entity|ʵ,InFront|ǰ +ǰ PRON {ThirdPerson|} +ǰô N part|,language| +ǰ׺ N part|,language| +ǰ N process|,early| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ ADJ aValue|ֵ,behavior|ֹ,secret| +DZ V walk|,manner=secret| +DZ V hide| +DZ V flee|,manner=secret| +DZ V sink|³ +DZ V hide| +DZ N time|ʱ,@GiveBirth|,#disease| +DZ V hide| +DZ V reside|ס,manner=hide| +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ N water|ˮ +DZ N attribute|,ability|,possible|,&entity|ʵ +DZ V GoInto| +DZ V GoInto|,manner=secret| +DZ V sink|³ +DZˮ V sink|³ +DZˮͧ N weapon|,ship|,military| +DZˮ N clothing|,*sink|³ +DZˮԱ N human|,#occupation|ְλ,*sink|³ +DZ̨ N information|Ϣ +DZ̨ N text|,#shows| +DZ V flee|,manner=secret| +DZͧ N weapon|,ship|,military| +DZ N tool|þ,*look| +DZ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +DZ V SelfMoveInManner|ʽ,location=waters|ˮ +DZ V walk|,manner=secret| +DZѪ N part|,%AnimalHuman|,liquid|Һ +DZĬ V influence|Ӱ,manner=tactful| +DZʶ N mental| +DZӾ V swim| +DZ ADJ aValue|ֵ,behavior|ֹ,hidden| +DZ N attribute|,ability|,possible|,&entity|ʵ +Dz V discharge| +Dz V dispatch|Dz +Dz V expel| +Dzɢ V discharge| +Dz V expel| +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dz ADJ aValue|ֵ,content|,easy|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,depth|,shallow|dz +dz ADJ aValue|ֵ,duration|,TimeShort| +dz ADJ aValue|ֵ,hue|Ũ,light| +dz ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +dz ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +dzֹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +dz N waters|ˮ +dzɫ ADJ aValue|ֵ,color|ɫ,brown|,light| +dzɫ ADJ aValue|ֵ,color|ɫ,red|,light| +dz N thought|ͷ +dz ADJ aValue|ֵ,content|,simple|,desired| +dzɫ ADJ aValue|ֵ,color|ɫ,blue|,light| +dzª ADJ aValue|ֵ,content|,empty|,undesired|ݬ +dzɫ N attribute|,color|ɫ,light|,&physical| +dz̲ N land|½ +dz ADJ aValue|ֵ,content|,simple|,desired| +dz ADJ aValue|ֵ,content|,simple|,desired| +Ǵ V ExpressAgainst|Ǵ +ǵ N part|,%inanimate|,mouth| +ǵ N facilities|ʩ,space|ռ,military|,@hide|,#fight| +Ƕ V inlay|Ƕ +Ƕ V inlay|Ƕ +ǶԹ N disease| +Ƿ V CausePartMove| +Ƿ V CausePartMove|,PatientPartof=head|ͷ +Ƿ V lack|ȱ +Ƿ V owe|Ƿ +Ƿ V BecomeLess|,scope=produce| +Ƿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +Ƿ N wealth|Ǯ,$owe|Ƿ,$return| +Ƿȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +Ƿȱ V lack|ȱ +Ƿ V gather|ɼ,possession=few| +Ƿ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ƿծ V owe|Ƿ +Ƿ V owe|Ƿ +Ƿ V owe|Ƿ,possession=wealth|Ǯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N emotion|,regret|Ǹ +Ǹ N emotion|,regret|Ǹ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ V BecomeLess|,scope=gather|ɼ,agricultural|ũ +Ǹ N time|ʱ,year|,undesired|ݬ,#crop|ׯ +Ǹ N emotion|,regret|Ǹ +ǹ N weapon|,*firing|,generic|ͳ +ǹ N weapon|,*stab| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N weapon|,*stab| +ǹ N weapon|,$firing| +ǹ N weapon|,generic|ͳ +ǹ V firing| +ǹ V kill|ɱ,manner=firing|,police| +ǹ N part|,%weapon| +ǹֵ N fact|,firing| +ǹ N weapon|,generic|ͳ +ǹɱ V kill|ɱ,manner=firing| +ǹ N sound|,#firing| +ǹ N human|,*firing| +ǹ N part|,%weapon| +ǹе N weapon| +ǹ N part|,%facilities|ʩ,#military|,@firing| +ǹ N part|,%physical| +ǹս N fact|,firing| +ǹ֧ N weapon|,mass| +ǹӶ N weapon|,$firing| +Ǻ V ill|̬ +ǻ N attribute|,SoundQuality|,&sound| +ǻ N attribute|,SoundVolume|,&sound| +ǻ N part|,%physical|,body| +ǻ N sound| +ǻ N AnimalHuman|,generic|ͳ +ǻ N attribute|,SoundQuality|,&speak|˵ +Ǽ N character|,(China|й) +Ǽ N community|,ProperName|ר,(China|й) +ǽ N part|,%building|,skin|Ƥ +ǽ N publications|鿯,news| +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,skin|Ƥ +ǽ N part|,%building|,base| +ǽ N location|λ,%building|,skin|Ƥ +ǽֽ N paper|ֽ,*decorate|װ,#building| +Ǿޱ N FlowerGrass| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn| +ǿ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ N character|,surname|,human|,ProperName|ר +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ +ǿ N human|,undesired|ݬ +ǿ V force|ǿ +ǿ V debate|,manner=fierce| +ǿʶ V debate|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿ N human|,crime|,undesired|ݬ,*rob| +ǿ N human|,enemy|,strong|ǿ +ǿ N attribute|,quality|,strong|ǿ,desired|,&thing| +ǿ V express|ʾ,manner=emphasis|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ N community|,sport|,strong|ǿ +ǿ V attack|,manner=fierce| +ǿ ADJ aValue|ֵ,quality|,durable|,desired| +ǿ N place|ط,country|,strong|ǿ +ǿ V surpass|ǿ +ǿ ADJ aValue|ֵ,courage|,brave|,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ǿ V strengthen|ӹ +ǿ N weapon|,aircraft|,military| +ǿ V force|ǿ +ǿ V force|ǿ +ǿ V force|ǿ,patient=human| +ǿ V damage|,purpose=mating|,crime| +ǿ鷸 N human|,*damage|,crime|,lascivious| +ǿ N chemical|ѧ +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ N human|,official|,military| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ǿ V order| +ǿǿ N fact|,commercial|,undesired|ݬ +ǿ V force|ǿ +ǿ V request|Ҫ,manner=force|ǿ +ǿȨ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ǿȨ N affairs|,#country|,politics| +ǿ N human|,able|,desired| +ǿ V force|ǿ +ǿ N attribute|,intensity|ǿ,&inanimate| +ǿ V improve|,patient=physique| +ǿʢ V prosper| +ǿʹ V force|ǿ +ǿ N human|,able|,desired| +ǿ N human|,able|,sport| +ǿ V surpass|ǿ +ǿ N chemical|ѧ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯ +ǿ N attribute|,quality|,strong|ǿ,desired|,&human|,&organization|֯,sport| +ǿļ N medicine|ҩ,*cure|ҽ,#heart| +ǿ ADJ aValue|ֵ,behavior|ֹ,fierce| +ǿ V force|ǿ +ǿջЦ V laugh|Ц,manner=force|ǿ +ǿӲ ADJ aValue|ֵ,quality|,strong|ǿ,desired| +ǿӲ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǿռ V occupy|ռ +ǿ N human|,able|,desired| +ǿֱ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ V force|ǿ +ǿ ADJ aValue|ֵ,behavior|ֹ,passive| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ǿ V refute| +ǿ֮ĩ V decline|˥ + V VieFor| + V cut| + V rob| + V refute| + V rob| + V buy|,manner=endeavour| + N fact|,buy|,#endeavour| +糱 N fact|,buy|,#endeavour| +һ V undergo|,content=sell| + V rob| +ٰ N fact|,#rob|,police| +ٷ N human|,*rob|,crime|,undesired|ݬ + V rescue|,manner=endeavour|,medical|ҽ + V rob| + V gather|ɼ,manner=endeavour|,agricultural|ũ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +ֻ N artifact|˹,able|,$sell| + V VieFor| + V rescue|,StateIni=dangerous|Σ + V repair|,manner=endeavour| + V transport|,manner=endeavour| +ռ V occupy|ռ + V planting|ֲ,manner=endeavour|,agricultural|ũ + N tool|þ,*dig|ھ + V beat| + V cheat|ƭ +ô V beat| +ô V irritate|ŭ +ö V decide| +ù V rob| +ÿ V beat|,result=open| + V recreation| + V beat|,patient=part|,#house| + V MakeSound| +թ V cheat|ƭ +թ V cheat|ƭ +թ N human|,*cheat|ƭ,crime| + V cheat|ƭ + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,behavior|ֹ,secret| +Ȼ ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N facilities|ʩ,route|·,#waters|ˮ +Ŷ N part|,%facilities|ʩ,base| +ź N facilities|ʩ,route|·,#waters|ˮ +ſ N part|,%facilities|ʩ + N facilities|ʩ,route|·,#waters|ˮ + N fact|,recreation| +ͷ N part|,%facilities|ʩ +ͷ N facilities|ʩ,space|ռ,military| +ܢ N part|,%route|· + V look| +Ʋ V despise| +Ƽ V perception|֪,means=look| + V look| + ADJ aValue|ֵ,height|߶,tall| + N character|,surname|,human|,ProperName|ר +ľ N tree| +ɴ N material|,?clothing| +Ǩ V TakeAway|ᶯ,patient=family| +ζ N place|ط,capital|,ProperName|ר,(Guyana|) + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N human|,*function|,#foreign|,#country| +Ȱ N institution|,ProperName|ר,politics|,(China|й) +Ȱ N human|,*function|,#foreign|,#country| +Ⱦ V function|,#foreign|,#country| +Ⱦ N human|,family| + N community|,#human|,#country|,(China|й) + N human|,*function|,#foreign|,#country| + N human|,family| + N affairs|,#human|,#function|,#foreign|,#country| + N place|ط + N fund|ʽ +ҵ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ɶ칤 ADJ aValue|ֵ,quality|,refined|,desired| +ɸ V do|,manner=dexterous| +ɺ V fit|ʺ +ɿ N food|ʳƷ +Ŀ V create|,PatientProduct=reason|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +ȡ V rob| + ADJ aValue|ֵ,ability|,able|,desired| + N fact| + N human|,able|,desired| + N fact|,meet| + V meet| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put|,#weapon| +ʳ N part|,%bird|,wing| + V lift| + V CausePartMove| + V FormChange|α,StateFin=curved| + V upmove| +̱ V die| +̳ N human|,able|,desired| + V FormChange|α,StateFin=curved| + V expect| + V CausePartMove|,PatientPartof=head|ͷ + V upmove| +β ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,slope|¶,steep| +Ͱ ADJ aValue|ֵ,posture|,strong|ǿ,desired| +Ͱ ADJ aValue|ֵ,slope|¶,steep| +ͱ N part|,%land|½,skin|Ƥ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +λ N artifact|˹,able|,$sell| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ƥ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| +Ƥ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N method|,*succeed|ɹ + N part|,%inanimate|,mouth| + N method| + V BeNear| + V cut| + V fit|ʺ + ADV {modality|} +в AUX {modality|,neg|} +в˰ N tool|þ,@cut|,#cook| +г ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +г V cut|,#cure|ҽ,medical|ҽ +д V research|о +ж V shrink|С,means=cut| +ж V separate|,means=cut| +з֮ʹ N phenomena|,undesired|ݬ,#unfortunate| +и V break|۶ +к V fit|ʺ +л V alter|ı +м V remember|ǵ,manner=modality| +м V evade|ر +н V BeSimilar| +п V split|ƿ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V split|ƿ,#cure|ҽ,medical|ҽ +п V cut|,#cook| + V diagnose|,medical|ҽ + N food|ʳƷ + N image|ͼ,surfacial| + N part|,%physical|,surfacial| +ĩ V cut|,#cook| +Ī AUX {modality|,neg|} +Ƭ V cut| +Ƭ N part|,%AnimalHuman| + AUX {modality|} + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,content|,accurate|׼,desired| + AUX {modality|,neg|} + N image|ͼ,linear| + V cut|,industrial| + V fit|ʺ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeShort| + COOR {and|} + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| +ӳ V fear|,entertainment| +ų ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + V fear| + V fear|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + V steal|͵,crime| +Թ V steal|͵,possession=country|,politics|,crime| +Թ V steal|͵,possession=country|,politics|,crime| +˽ V talk|̸,secret| +˽ V talk|̸,secret| +ȡ V steal|͵ +ȡ V steal|͵,crime| +ȡ V steal|͵,politics| + V listen|,manner=secret| +Ц V laugh|Ц,manner=hidden| + N human|,*steal|͵,crime|,undesired|ݬ + V respect| +ղ N human|,#occupation|ְλ,$dispatch|Dz,official|,#royal| + V respect| + V attack|,military| +ַ V damage| +ַ V damage|,crime| +ֺ V damage| +ֻ V attack|,patient=(China|й) + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + V attack|,military| +ս N fact|,*attack|,military| + N human|,*attack|,military| +Ȩ V fact|,disobey|Υ,#law|ɷ,crime| +ȨΪ N fact|,disobey|Υ,#law|ɷ,crime| + V MakeTrouble|,military| + V attack|,military| +ʴ V damage| + V cheat|ƭ + V occupy|ռ + V occupy|ռ,military| +Ϯ V attack| +Ϯ V attack|,military| +ռ V occupy|ռ,military| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,GetMarried| + N human|,family| + N human|,female|Ů +װ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ױ ADJ aValue|ֵ,trueness|α,true| +ױ N character|,true| +ױд ADJ aValue|ֵ,trueness|α,true| +ױ N letter|ż +׺ N attribute|,relatedness|,&chemical|ѧ +׻ʿ N human|,*FondOf|ϲ +׼ N human|,family| +׽ ADJ aValue|ֵ,relatedness|,intimate|,desired| +׾ N human|,family| +׿ ADV aValue|ֵ,behavior|ֹ,self| + V undergo| +侳 V undergo|,content=circumstances| + V arrive| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +޼ ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + N human|,family| + N human|,family| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +и N emotion|,like|ϧ,kindhearted|,desired| + V ShowLove|ʾ,means=CausePartMove| + N emotion|,like|ϧ,kindhearted|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,family| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV aValue|ֵ,behavior|ֹ,self| + ADJ aValue|ֵ,clan| + N fact|,GetMarried| + ADV aValue|ֵ,behavior|ֹ,self| + N attribute|,relatedness|,&human| + N human|,family| + N human|,royal|,male| + V ShowLove|ʾ,means=CausePartMove| + N human|,friend| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,friend|,family| +Ե N attribute|,relatedness|,&animate| + V manage|,patient=country|,politics| + ADV aValue|ֵ,behavior|ֹ,self| + N human|,family| + V ShowLove|ʾ,means=CausePartMove| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +س N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ش N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ػʵ N place|ط,city|,ProperName|ר,(China|й) +ǻ N shows| + N MusicTool| + N MusicTool|,generic|ͳ +ټ N part|,%MusicTool| +ʦ N human|,#occupation|ְλ,*perform|,#music|,entertainment| + N part|,%MusicTool| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| +ڷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڷܺѧ V FondOf|ϲ,target=study|ѧ +ڹѧ V study|ѧ +ڼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڼּ V ProvideFor|,patient=family|,manner=thrifty| +ڼԼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ڿҿ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N affairs| + N human|,*fight|,military| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +ѧ V study|ѧ,manner=diligent| +ӹ N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V engage|,content=politics|,manner=diligent| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +۲ N part|,%vegetable|߲,embryo|,$eat| +۲ N vegetable|߲ + V catch|׽ס + V catch|׽ס,military| +ܻ V catch|׽ס + V catch|׽ס + N bird|,generic|ͳ +ݵ N food|ʳƷ + N animal|,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N room|,@sleep|˯ + V sleep|˯ +޾ N tool|þ,generic|ͳ,*sleep|˯ +ʳ N fact|,alive| + N room|,@sleep|˯ + V soak| +Ƣ ADJ aValue|ֵ,impression|ӡ,good|,desired| + N FlowerGrass|,generic|ͳ + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,color|ɫ,BlueGreen| + ADJ aValue|ֵ,color|ɫ,black| + N crop|ׯ,generic|ͳ + N human|,young|,generic|ͳ + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N vegetable|߲,generic|ͳ + N place|ط,provincial|ʡ,mass|,ProperName|ר,(China|й) +ظԭ N place|ط,ProperName|ר,(China|й) + N FlowerGrass|,green| + V surpass|ǿ +ഺ ADJ aValue|ֵ,age|,adult| +ഺ N time|ʱ,#young| +ഺ껪 N aValue|ֵ,age|,adult| +ഺ ADJ aValue|ֵ,time|ʱ,adult| +ഺ N time|ʱ,young| + N material|,?tool|þ + ADJ aValue|ֵ,color|ɫ,green| + ADJ aValue|ֵ,color|ɫ,green| +ൺ N place|ط,city|,ProperName|ר,(China|й) +ඹ N part|,%vegetable|߲,embryo|,$eat| +ඹ N vegetable|߲ +๤ N human|,young|,industrial| + N disease| + N fruit|ˮ +ຣ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +ཷ N part|,%vegetable|߲,embryo|,$eat| +ཷ N vegetable|߲ + N part|,%AnimalHuman|,nerve| + N community|,#young|,ProperName|ר,(China|й) +ɫ ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +÷ N fruit|ˮ +ù N medicine|ҩ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N crop|ׯ,generic|ͳ + N crop|ׯ,generic|ͳ,young| + ADJ aValue|ֵ,age|,adult| + ADJ aValue|ֵ,age|,young| + N human|,young| +깬 N InstitutePlace|,#young|,@recreation| + N community|,religion|ڽ + N time|ʱ,#young| + N human|,young| + N community|,#young|,ProperName|ר,(China|й) +ɴ N crop|ׯ,generic|ͳ +ɽ N land|½,green| +ɽˮ N place|ط,beautiful| + N human|,young|,mass| +그 N fact|,crime|,#young| +˿ N part|,%human|,female|Ů,hair|ë + N tree| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +̦ N AlgaeFungi|ֲ +̴ N tree| + N human|,official|,desired| + N sky| + N fact|,undesired|ݬ,queer|,sudden| +ͭ N metal| +ͭ N tool|þ,metal| + N beast| +Ϻ N fish| + N clothing|,black| + N human|,female|Ů,*perform|,entertainment| + N fish| +׳ N human|,young| + N emotion|,like|ϧ,kindhearted|,desired| + N crop|ׯ + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,behavior|ֹ,^stately|ׯ + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,content|,NotProfound|dz + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + ADJ aValue|ֵ,size|ߴ,small|С + ADJ aValue|ֵ,weight|,NotHeavy| + V despise| +ᱡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ᱡ͸ ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| +ᳵ V tour|,manner=thrifty| + V despise|,target=enemy| + ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +׾ ADJ aValue|ֵ,easiness|,easy|,desired| + N affairs|,industrial| +ḡ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ḡŮ N human|,flighty|,undesired|ݬ,female|Ů,young| + V recreation| +Ṥ N affairs|,industrial| +Ṥҵ N affairs|,industrial| +Ṥҵ N institution|,#industrial|,ProperName|ר,politics| +ṤҵƷ N artifact|˹,#industrial| + ADJ aValue|ֵ,rank|ȼ,LowRank|͵,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,nimble|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + V joyful|ϲ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +赭д ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ + V despise| +ƮƮ ADJ aValue|ֵ,weight|,NotHeavy| + N LandVehicle| + N army| + ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + ADJ aValue|ֵ,weight|,NotHeavy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ȡ V defeat|սʤ,manner=easy| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V wounded|,degree=insufficiently|Ƿ + ADJ aValue|ֵ,SoundVolume|,weak| + V suicide|ɱ + V despise| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ˮ N chemical|ѧ + ADJ aValue|ֵ,circumstances|,relax|,desired| +΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢ ADJ aValue|ֵ,content|,NotProfound|dz +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ + V believe| + ADJ aValue|ֵ,weight|,NotHeavy| +Ӧ N army| +ս N weapon|,ship|,military| + ADJ aValue|ֵ,easiness|,easy|,desired| + N music| +ӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N material|,liquid|Һ,$burn| + N attribute|,behavior|ֹ,event|¼,&human| + N attribute|,degree|̶,&aValue|ֵ,&event|¼ + N attribute|,weight|,&physical| +ػ N attribute|,degree|̶,&aValue|ֵ,&event|¼ +װ ADJ aValue|ֵ,weight|,NotHeavy| +װ V tour|,manner=thrifty| +װ V fight| +٬ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +٬Ů N human|,flighty|,undesired|ݬ,female|Ů,adult| + N gas| +ⵯ N weapon| + N gas| + N chemical|ѧ + N chemical|ѧ + V CausePartMove| + V FallDown| + ADJ aValue|ֵ,form|״,slanted| + V dump| + V endeavour| + V end|ս +㵹 V dump| +㸲 V FallDown| +㸲 V reverse|ߵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҵ V lose|ʧȥ,possession=wealth|Ǯ + N image|ͼ,angular| + N RainSnow|ѩ,strong|ǿ + V tell|,manner=free| +̸ V communicate|,manner=ShowEmotion|ʾ + V listen|,manner=PayAttention|ע + V tell|,manner=free| + V FondOf|ϲ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,property|,FondOf|ϲ,&human|,&organization|֯,&event|¼ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,free| + V sell|,cost=cheap|,commercial| +б ADJ aValue|ֵ,form|״,slanted| +б V tilt|б +б N attribute|,slope|¶,&inanimate| +к V flow| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + V HaveContest| +ע V flow| +ע V put| + N human|,#occupation|ְλ,official|,royal|,past| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + ADJ aValue|ֵ,content|,pure|,desired| + V count| + V fulfil|ʵ,commercial| + V remove| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,content|,pure|,desired| + N account|,@record|¼ + N material|,?drinks|Ʒ + V check| + V reveal|¶ + V check| +峥 V return|,commercial| +峪 V sing|,entertainment| +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峺 ADJ aValue|ֵ,clearness|,clear| +峿 N time|ʱ,morning| + V remove| + N human|,*remove| + ADJ aValue|ֵ,content|,NotProfound|dz,desired| + V understand| +ǵ V remember|ǵ + ADJ aValue|ֵ,SoundQuality|,good|,desired| +嵥 N account|,@record|¼ +嵭 ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +嵭 ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +嵭 ADJ aValue|ֵ,taste|ζ,desired| + N human|,#exercise| + N human|,#occupation|ְλ,*clean|ʹ,#route|·,employee|Ա + V check|,commercial| + N wind|,weak|,chilly| + ADJ aValue|ֵ,behavior|ֹ,arrogant| + N human|,official|,honest|,desired| + N regulation| +庮 ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +庮 ADJ aValue|ֵ,temperature|¶,cold| +廪 N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) +廪ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר,(China|й) + N {clearness|} + V destroy| +ͽ N human|,religion|ڽ + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V clean|ʹ +๤ N human|,#occupation|ְλ,*clean|ʹ,employee|Ա + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +徲 ADJ aValue|ֵ,occasion|,quiet|,desired| +徻 ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V arrange| + ADJ aValue|ֵ,content|,pure|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,SocialMode|,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N time|ʱ,day| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +ƶ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ƿ V request|Ҫ,ResultEvent=return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,able|,withstand|ס,#fever| +ɨ V clean|ʹ + ADJ aValue|ֵ,fatness|,bony| +ˬ ADJ aValue|ֵ,circumstances|,relax|,desired| +ˬ ADJ aValue|ֵ,temperature|¶,chilly|,desired| +ˬ V satisfied| +ˮ N water|ˮ,spotless| + V calculate|,commercial| + V reveal|¶,ExpressAgainst|Ǵ + N human|,*remove| +̸ V TalkNonsense|Ϲ˵ + N food|ʳƷ,liquid|Һ + V return| + ADJ aValue|ֵ,content|,pure|,desired| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&image|ͼ + ADJ aValue|ֵ,content|,concise|,desired| +ϴ V discharge| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + V restrain|ֹ,ResultEvent=expect| + V soothe|ο + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V awake| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +һɫ ADJ aValue|ֵ,content|,neat|,desired| + N sound|,#language| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,liquid|Һ,?food|ʳƷ + N time|ʱ,morning| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N knowledge|֪ʶ,religion|ڽ + N facilities|ʩ,religion|ڽ,space|ռ + V cook| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,temperature|¶,chilly| + V cook| + V PropUp|֧ + V lift| + V WeatherFine| + V WeatherFine| + V WeatherFine| + N sky| + V WeatherFine| + V WeatherFine| + N fact|,undesired|ݬ,queer|,sudden| + N tool|þ,*tell|,#WeatherChange| + N chemical|ѧ,poison| + N attribute|,circumstances|,&entity|ʵ + N emotion| + N emotion|,like|ϧ,kindhearted|,desired| + N emotion|,love|,desired| +鰮 N emotion|,love|,desired| +鱨 N information|Ϣ +鱨 N information|Ϣ,military| +鱨Ա N human|,#occupation|ְλ,*analyze| +鱨Ա N human|,#occupation|ְλ,police|,military|,*scout| +鲻Խ V EndureNot| + N emotion| + N human|,enemy|,#love| + N emotion| + N emotion| + N human|,male|,*love|,*mating|,undesired|ݬ +鸾 N human|,female|Ů,*love|,*mating|,undesired|ݬ + N emotion| + N music|,$sing| +黳 N emotion| +鼱 N time|ʱ,urgent| + N part|,%fact|,bone| + N part|,%shows|,bone| +龰 N attribute|,occasion|,&event|¼ +龳 N attribute|,occasion|,&event|¼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,circumstances|,&entity|ʵ,military| + N reason| + N human|,friend|,*love|,desired| + N emotion| +Ȥ N emotion|,FondOf|ϲ + N human|,friend|,*love|,desired| + N attribute|,rank|ȼ,#emotion|,&human| + N attribute|,circumstances|,&entity|ʵ + N letter|ż,*express|ʾ,#love| +˼ N emotion| +˼ N emotion|,desired| + N emotion| +Ǩ V change| +ͬ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V fit|ʺ + N attribute|,circumstances|,&entity|ʵ + N emotion|,FeelingByBad| + N emotion|,generic|ͳ + N emotion|,desired| + N emotion|,friend| + N emotion|,friend| + N cause|ԭ + N aspiration|Ը,mating| +Ը V willing|Ը + N emotion|,FondOf|ϲ + N emotion| + ADV aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,duration|,TimeShort| +̼ ADV aValue|ֵ,duration|,TimeShort| +֮ ADV aValue|ֵ,duration|,TimeShort| + V employ| + V invite| + V request|Ҫ +밲 V SayHello|ʺ + V request|Ҫ,ResultEvent=benefit| + V request|Ҫ,ResultEvent=agree|ͬ + N letter|ż,*invite| +뽵 V surrender| + V request|Ҫ,ResultEvent=teach| + V entertain|д,target=human| + V beg| + V request|Ҫ + N human|,*request|Ҫ +͹ EXPR expression|,*welcome|ӭ + EXPR expression|,*welcome|ӭ +ʾ V ask| + N letter|ż,*invite| + V request|Ҫ,ResultEvent=benefit| + AUX {neg|} +ӧ V request|Ҫ,ResultEvent=do| +Ը V protest| +ս V request|Ҫ,ResultEvent=do| + V apologize|Ǹ + V congratulate|ף + N fact|,congratulate|ף +칦 V congratulate|ף,cause=win|ʤ + V congratulate|ף + V joyful|ϲ +ף V congratulate|ף + N material|,?tool|þ,#decorate|װ,precious| +֬ N material|,?food|ʳƷ,?medicine|ҩ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + N human|,poor|,undesired|ݬ + V fight|,military| +⵰ N human|,poor|,undesired|ݬ +ʵ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V melancholy| + N human|,enemy|,*fail|ʧ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N human|,poor|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,ugly|,undesired|ݬ +Ƨ N place|ط,poor| +׼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +׷ V chase|׷ + N character|,surname|,human|,ProperName|ר + N time|ʱ + N time|ʱ,autumn| + N time|ʱ,year| +ﲥ V planting|ֲ,autumn|,agricultural|ũ +ﲨ N part|,%human|,female|Ů,#eye| + N time|ʱ,day|,autumn| + N wind|,#autumn| +ˬ N phenomena|,#WeatherFine|,autumn|,desired| +ﺣ N FlowerGrass| +޷ ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + N part|,%time|ʱ,autumn|,ending|ĩ +^ N time|ʱ,autumn| + N time|ʱ,autumn| +ǧ N tool|þ,*recreation| + V gather|ɼ,#crop|ׯ,autumn|,agricultural|ũ +ˮ N part|,%human|,female|Ů,#eye| + N time|ʱ,autumn| +ׯ N crop|ׯ,generic|ͳ + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N land|½ + N part|,%AnimalHuman|,head|ͷ + N disease| + N character|,surname|,human|,ProperName|ר + N SportTool|˶,generic|ͳ + N earth| + N earth|,space|ռ + N fact|,exercise| + N shape|,round|Բ + N facilities|ʩ,space|ռ,@compete|,sport| + N community|,compete|,sport| + N part|,%plant|ֲ,embryo| + N knowledge|֪ʶ,#sport| + N part|,%plant|ֲ,body| +򾥸 N part|,%vegetable|߲,embryo|,$eat| +򾥸 N vegetable|߲ + N bacteria|΢ + N fact|,exercise| +˶ N fact|,exercise| + N facilities|ʩ,#compete|,sport| + N facilities|ʩ,#compete|,sport| + N human|,*FondOf|ϲ,#look|,#sport| + N shape| + N SportTool|˶ + N fact|,compete|,sport| + N human|,sport| +̳ N community|,#exercise| + N image|ͼ,cubic|,round|Բ +Ь N SportTool|˶,#clothing|,#foot| + N human|,*compete|,glorious|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N knowledge|֪ʶ,#sport| +Ա N human|,#occupation|ְλ,sport| +״ ADJ aValue|ֵ,form|״,round|Բ + V request|Ҫ + V seek|ıȡ + V ShowLove|ʾ + V request|Ҫ,ResultEvent=succeed|ɹ + V request|Ҫ + V request|Ҫ + V calculate| + V buy|,commercial| + V request|Ҫ,ResultEvent=reconcile|,military| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=meet| + V request|Ҫ,ResultEvent=teach| + V handle| + V request|Ҫ,ResultEvent=help| + V request|Ҫ,ResultEvent=GetMarried| + V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=forgive|ԭ +ȫ V request|Ҫ,ResultEvent=satisfied| +ȫ V request|Ҫ,degree=over| + V surrender| + V request|Ҫ,ResultEvent=help| + N MakeLiving|ı +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ͬ V request|Ҫ,ResultEvent=BeSame|ͬ +ѧ V request|Ҫ,ResultEvent=study|ѧ +ѧ V study|ѧ,education| +ҽ V request|Ҫ,ResultEvent=cure|ҽ,medical|ҽ +Ԯ V request|Ҫ,ResultEvent=help| +ս V request|Ҫ,ResultEvent=fight|,military| +֪ V request|Ҫ,ResultEvent=study|ѧ +֪ N aspiration|Ը,request|Ҫ,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,property|,$request|Ҫ +ְ V seek|ıȡ,possession=occupation|ְλ +ְ N human|,*seek|ıȡ,#occupation|ְλ + V request|Ҫ,ResultEvent=help| + V detain|ס,police| + N human|,crime|,undesired|ݬ,$detain|ס + N LandVehicle|,*transport|,#crime|,police| + N human|,crime|,undesired|ݬ,$detain|ס + V detain|ס,police| +׹ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ͽ N human|,crime|,undesired|ݬ,$detain|ס + N human|,official|,#community| + N human|,official|,#community| + N human|,royal| + V swim| + V cross|Խ,means=swim| + V SelfMove| + V become|Ϊ + V please|ȡ + V please|ȡ + V become|Ϊ,descriptive=safe| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V facing| +׸ V please|ȡ + V become|Ϊ +֮ V seek|ıȡ + N place|ط,#human| + V distinguish|ֱ + N human|,#occupation|ְλ,official| + V distinguish|ֱ + V separate| + ADJ aValue|ֵ,importance|,secondary| +ί N institution|,politics|,(China|й) + N place|ط + ADJ aValue|ֵ,attachment|,place|ط + N place|ط + V ize|̬ + ADJ aValue|ֵ,attachment|,place|ط + N InsectWorm| + ADJ aValue|ֵ,form|״,curved| + N music|,$sing| + N part|,%earth|,angular| + N text|,$sing| + V deceive|ƭ + N fittings| + N tool|þ,*measure| + N attribute|,SoundQuality|,&music| +ߺ͹ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N SportTool|˶ + N fact|,exercise| + V alter|ı,StateIni=true|,StateFin=fake|α + V explain|˵,manner=wrong| + ADJ aValue|ֵ,form|״,curved| + N quantity|,rate|,&distance| + N image|ͼ,curved| +ͻн V escape|,ResultEvent=dangerous|Σ + ADJ aValue|ֵ,form|״,round|Բ + N image|ͼ,linear|,curved| + N shows| +ӭ V please|ȡ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| + N fact|,hardship| + N part|,%implement| + N music|,$sing| + N InsectWorm| + N part|,%human|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| + V CausePartMove| + N character|,surname|,human|,ProperName|ר + V defeat|սʤ + N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ + V surrender| + ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ + V surrender| + V surrender| + V surrender| + N attribute|,property|,&part|,eye| + V SelfMove| + V situated| + N phenomena|,disgraced|,#shy|,undesired|ݬ +ϥ V CausePartMove|,PatientPartof=leg| +ָ ADJ qValue|ֵ,amount|,few| + V drive|Ԧ + V expel| + V run| + V dispatch|Dz + V drive|Ԧ + V urge|ʹ + V drive|Ԧ,patient=LandVehicle| + V expel| + V remove| + V CauseToDo|ʹ + V expel| +Dz V dispatch|Dz +Dz V exile| +Dz V expel| +Dz V urge|ʹ +ɢ V expel| +ʹ V dispatch|Dz +ʹ V urge|ʹ + V exile| + V expel| + V expel|,LocationIni=country| + N weapon|,ship|,military| + N facilities|ʩ,#liquid|Һ + N facilities|ʩ,#liquid|Һ,linear| + N facilities|ʩ,#liquid|Һ,linear| + N method|,*communicate| +ȡ V choose|ѡ +ȡ V seek|ıȡ +ȡ V take|ȡ +ȡ V take|ȡ,commercial| +ȡ V use| +ȡ V study|ѧ,content=pros| +ȡ V take|ȡ,commercial| +ȡ V replace| +ȡ PREP {LocationThru} +ȡ V obtain|õ +ȡ V prohibit|ֹ +ȡ֮ V replace| +ȡ V imitate|ģ +ȡ V TakeBack|ȡ +ȡ V choose|ѡ,content=image|ͼ +ȡ V ResultFrom|Ե +ȡ V ResultFrom|Ե +ȡ V WhileAway| +ȡ V tease|ȡ +ȡ V naming| +ȡΪ V naming| +ȡů V WarmUp|,patient=self| +ȡ ADJ aValue|ֵ,content|,neat|,desired| +ȡ V equal| +ȡ V do|,manner=sly| +ȡ V choose|ѡ +ȡʤ V win|ʤ +ȡ V remove| +ȡ N human|,*remove| +ȡЦ V LaughAt|Ц +ȡ V take|ȡ,possession=letter|ż +ȡ V undergo|,content=believe| +ȡ V undergo|,content=believe| +ȡ V check| +ȡ V choose|ѡ,content=example|ʵ +ȡ V please|ȡ +ȡ֤ V gather|ɼ,possession=information|Ϣ +ȡ֮ ADJ qValue|ֵ,amount|,many| +ȡ V obtain|õ +ȡ V TakeAway|ᶯ +Ȣ V MarryFrom|Ȣ +Ȣ V MarryFrom|Ȣ +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +ȣ N part|,%AnimalHuman|,*bite|ҧ,#disease| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȥ N emotion|,FondOf|ϲ +Ȥ N purpose|Ŀ +Ȥ N fact|,interesting|Ȥ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥζ N emotion|,FondOf|ϲ +Ȥζ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N text|,interesting|Ȥ +ȥ V RegardAs|,entertainment| +ȥ V from| +ȥ V go|ȥ +ȥ V leave|뿪 +ȥ V remove| +ȥ V send| +ȥ STRU {Vdirection|} +ȥ V remove| +ȥ N location|λ +ȥ N place|ط +ȥ V AlterProperty|,PatientAttribute=property| +ȥȡ V choose|ѡ,content=refined| +ȥ V remove| +ȥ N time|ʱ,spring|,winter| +ȥ ADJ aValue|ֵ,performance|,clean|ʹ +ȥ V SelfMove| +ȥ· N facilities|ʩ,route|·,@GoOut|ȥ +ȥ N time|ʱ,year|,past| +ȥ N sound|,#language| +ȥ V die| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥ V LeaveFor|ǰ,manner=fast| +ȥα V remove|,patient=fake|α +ȥۼ N tool|þ,*remove|,#dirty| +ȥ N direction| +ȥ V cut|,PartOfTouch=part|,#mating| +ȥְ V dismiss|,ResultIsa=occupation|ְλ +Ȧ N community| +Ȧ V detain|ס +Ȧ V detain|ס,agricultural|ũ +Ȧ V detain|ס,police| +Ȧ V draw| +Ȧ N facilities|ʩ,space|ռ,@foster|,#livestock| +Ȧ N image|ͼ,cubic|,round|Բ +Ȧ N shape|,round|Բ +Ȧ V surround|Χ +Ȧ V draw| +Ȧ V ExpressAgreement|ʾͬ +Ȧ N material|,*feed|ι,#crop|ׯ +Ȧ ADJ aValue|ֵ,relatedness|,intimate| +Ȧ N plans|滮,*deceive|ƭ,undesired|ݬ +Ȧ N furniture|Ҿ,space|ռ,@sit| +Ȧ V read| +Ȧ V sign|д,#read| +Ȧ N shape|,round|Բ +ȧ N part|,%AnimalHuman|,bone| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N character|,surname|,human|,ProperName|ר +Ȩ N rights|Ȩ +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ N human|,official|,past| +Ȩ V estimate| +Ȩ V estimate|,content=ProsCons| +Ȩ N human|,*estimate| +Ȩ N rights|Ȩ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ ADJ aValue|ֵ,duration|,TimeShort| +Ȩʱ ADV aValue|ֵ,time|ʱ,TimeShort| +Ȩ N attribute|,power|,&human|,&organization|֯ +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N human|,#power|,able|,desired| +Ȩʿ N human|,#power| +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +Ȩ N attribute|,range|,&power| +Ȩ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ȩ֮ N method| +Ȩ N rights|Ȩ +Ȩ N rights|Ȩ,duty| +ȩ N chemical|ѧ +Ȫ N waters|ˮ,surfacial| +Ȫˮ N waters|ˮ,surfacial| +Ȫˮ N water|ˮ +Ȫ N part|,%waters|ˮ,mouth| +Ȫ N waters|ˮ,surfacial| +ȪԴ N location|λ,@ExistAppear| +ȪԴ N part|,%waters|ˮ,head|ͷ +ȪԴ N waters|ˮ,surfacial| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete| +ȫ N character|,surname|,human|,ProperName|ר +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N human|,able|,desired| +ȫ ADJ aValue|ֵ,length|,all|ȫ +ȫ N attribute|,name|,&entity|ʵ +ȫ N process| +ȫ N community|,ProperName|ר,(China|й) +ȫ V equal| +ȫ ADV aValue|ֵ,range|,all|ȫ +ȫλ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N place|ط,country|,complete| +ȫΧ ADJ aValue|ֵ,range|,country| +ȫ˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +ȫ ADJ aValue|ֵ,attachment|,country| +ȫ N fact|,discuss| +ȫ N publications|鿯 +ȫ N community|,family|,complete| +ȫҸ N food|ʳƷ +ȫҸ N image|ͼ,$TakePicture|,#human|,#family| +ȫ V destroy| +ȫ N attribute|,scene|,complete|,&inanimate| +ȫ N attribute|,circumstances|,&entity|ʵ +ȫ N army| +ȫû V defeated| +ȫ N paper|ֽ,#print|ӡˢ +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫԸ V endeavour| +ȫò N attribute|,appearance|,&entity|ʵ +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ N system|ƶ,#rights|Ȩ,#own|,public| +ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫ ADV aValue|ֵ,time|ʱ,year|,complete| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ ADJ aValue|ֵ,attachment| +ȫ V ize|̬ +ȫս N plans|滮 +ȫ N place|ط +ȫȨ N attribute|,power|,&human|,&organization|֯ +ȫȨ N duty| +ȫȨ N human|,#duty| +ȫȨ N human|,official| +ȫȻ ADV aValue|ֵ,range|,all|ȫ +ȫ N community| +ȫ ADJ aValue|ֵ,duration|,#day| +ȫѧ N human|,*study|ѧ,education| +ȫɫ ADJ aValue|ֵ,color|ɫ +ȫɫä N human|,*disable|м +ȫ N part|,%AnimalHuman|,body| +ȫ ADV aValue|ֵ,behavior|ֹ,endeavour| +ȫע ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ȫʡ N place|ط,all|ȫ +ȫʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ȫʢ V prosper| +ȫʤ V win|ʤ +ȫʼȫ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ȫ N publications|鿯 +ȫ N quantity|,amount|,&entity|ʵ +ȫ ADJ aValue|ֵ,speed|ٶ,fast| +ȫ N attribute|,speed|ٶ,fast| +ȫ ADJ aValue|ֵ,range|,all|ȫ +ȫ N part|,%entity|ʵ,complete| +ȫ ADJ qValue|ֵ,amount|,all|ȫ +ȫ N fact|,discuss| +ȫѡ N human|,*select|ѡ,mass| +ȫ N time|ʱ,day| +ȫ ADJ aValue|ֵ,ability|,able|,withstand|ס,#WeatherBad| +ȫ N InstitutePlace|,*TakeCare|,#young|,#human| +ȫ N text| +ȫϢ ADJ aValue|ֵ,ability| +ȫ N facilities|ʩ,route|· +ȫ N place|ط,@fight|,military| +ȫ ADJ aValue|ֵ,newness|¾,new| +ȫȫ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȫ N sound|,#music| +ȫԱ N human|,employee|Ա +ȫ˻ N fact|,sport| +ȫ֪ȫ ADJ aValue|ֵ,ability|,able|,desired| +ȫԶ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ȭ V BeRecovered|ԭ,medical|ҽ +Ȭ V BeRecovered|ԭ,medical|ҽ +ȭ N fact|,beat| +ȭ N fact|,exercise| +ȭ N part|,%AnimalHuman|,hand| +ȭ V beat| +ȭ N fact|,sport| +ȭ N fact|,exercise| +ȭ V bend| +ȭȭ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȭ N human|,$choose|ѡ,*compete|,sport| +ȭͷ N part|,%AnimalHuman|,hand| +ȭ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| +Ȯ N livestock| +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%AnimalHuman|,*bite|ҧ +Ȯ N part|,%livestock|,*bite|ҧ +Ȯ V BeAcross|ཻ +Ȯ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +Ȯ ADJ aValue|ֵ,form|״,dissimilar| +ȯ N coupon|Ʊ֤ +Ȱ V mobilize| +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V mediate|,ResultEvent=fight| +Ȱ V persuade|Ȱ˵,ResultEvent=surrender| +Ȱ V mediate| +Ȱ N human|,*persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵ +Ȱ V persuade|Ȱ˵,ResultEvent=drink| +Ȱ V persuade|Ȱ˵ +Ȱ˵ V persuade|Ȱ˵ +Ȱ˵ N human|,*persuade|Ȱ˵ +Ȱο V soothe|ο,means=persuade|Ȱ˵ +Ȱҵ N InstitutePlace|,*sell|,@buy|,commercial| +Ȱ V obstruct|ֹ,means=persuade|Ȱ˵ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V disappear|ʧ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N quantity|,amount|,&lack|ȱ +ȱ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ȱ V lack|ȱ +ȱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ȱĬ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ȱ N emotion|,regret|Ǹ +ȱ V lack|ȱ,commercial| +ȱ V pay|,quantity=lack|ȱ +ȱ N part|,%place|ط,mouth| +ȱ V cease|ͣ +ȱ V lack|ȱ +ȱʧ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱˮ ADJ aValue|ֵ,dampness|ʪ,dried| +ȱϯ V disappear|ʧ +ȱ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ȱ N disease|,#mouth| +Ȳ N chemical|ѧ +ȳ V disable|м,scope=walk| +ȳ N human|,undesired|ݬ,*disable|м,#walk| +ȴ V GoBackward| +ȴ V reject|ؾ +ȴ V cure|ҽ,content=disease| +ȴ V GoBackward| +ȴ V reject|ؾ +ȵ N bird| +ȵռ V occupy|ռ +ȵ V appear| +ȵ N place|ط,@meet|,#male|,#female|Ů +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V guarantee|֤ +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V decide| +ȷ ADJ aValue|ֵ,content|,accurate|׼ +ȷ V establish| +ȷ ADJ aValue|ֵ,content|,substantial|ʵ +ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ȷ ADJ aValue|ֵ,content|,accurate|׼,desired| +ȷ V decide| +ȷʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷʵɿ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ȷ V believe| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| +ȷ V diagnose|,medical|ҽ +ȷ֤ N information|Ϣ,*prove|֤ +ȷ֤ V prove|֤ +ȸ N bird| +ȸ N disease| +ȸӥ N bird| +ȸԾ V WhileAway|,means=jump| +ȸԾ V joyful|ϲ +ȹ N clothing|,#leg|,#female|Ů +ȹϵ N attribute|,relatedness|,&human|,undesired|ݬ +ȹ N clothing|,#leg|,#female|Ů +ȹװ N clothing|,#female|Ů +ȹ N clothing|,#leg|,#female|Ů +Ⱥ CLAS NounUnit|,&AnimalHuman| +Ⱥ N entity|ʵ,mass| +ȺȺ V cooperate| +Ⱥ N land|½,mass| +Ⱥ N human|,desired|,beautiful|,female|Ů,mass| +Ⱥ V reside|ס +Ⱥå N human|,mass| +Ⱥ V appear| +Ⱥ N material|,*apply|ͿĨ,*decorate|װ +Ⱥ N emotion| +Ⱥɽ N land|½ +Ⱥ N entity|ʵ,mass| +ȺȺ ADJ aValue|ֵ,courage|,brave|,desired| +Ⱥ N human|,able|,desired|,mass| +Ⱥ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ȺӢ N human|,able|,desired|,mass| +Ⱥ N human|,mass| +Ⱥ˶ N fact| +Ⱥӵ N weapon|,$firing| +Ȼ ADV aValue|ֵ,correctness|,correct|ȷ,desired| +Ȼ CONJ {but|} +Ȼ CONJ {but|} +Ȼ CONJ {time|ʱ} +Ȼŵ V agree|ͬ +ȼ V burn| +ȼ V lighting|ȼ +ȼ V shoot| +ȼ N material|,$burn|,*lighting|ȼ +ȼü֮ N affairs|,urgent| +ȼ N material|,gas|,$burn| +ȼֻ N machine| +ȼ V burn| +ȼյ N weapon|,$firing| +ȼ N part|,%implement| +ȼ N material|,liquid|Һ,*burn| +Ƚ ADJ aValue|ֵ,speed|ٶ,slow| +Ƚ N character|,surname|,human|,ProperName|ר +ȽȽ ADJ aValue|ֵ,speed|ٶ,slow| +Ⱦ V AlterColor|ɫ +Ⱦ V SufferFrom| +Ⱦ V influence|Ӱ +Ⱦ V undergo| +Ⱦ V ill|̬ +Ⱦ N material|,*AlterColor|ɫ +Ⱦɫ V AlterColor|ɫ +Ⱦɫ N part|,%animate| +Ⱦ V suffer|,content=CauseAffect|Ⱦ +Ⱦָ V damage| +Ⱦָ V engage| +ȿ N part|,%fruit|ˮ,flesh|,$eat| +ȿ N part|,%physical|,flesh| +ȿ N part|,%fruit|ˮ,flesh| + N place|ط + N stone|ʯ + N stone|ʯ + N character|,surname|,human|,ProperName|ר + V bend| + V reject|ؾ + V resist| + V rob| + V CausePartMove|,PatientPartof=arm| + V remove| + V rob| + V cry| + V cry| + V CauseToDo|ʹ + V invite| + V sell| + V surrender| + PREP {agent} + ... ԱŸ V obstruct|ֹ,ResultEvent=GoInto| +ò V surrender| +ö V give| +ø V sell| + V ExpressAgreement|ʾͬ,content=subtract|,#payment| +· V benefit| +λ V cease|ͣ,content=undertake|,politics| +λ V provide|,possession=space|ռ + V sell| + V provide|,possession=space|ռ + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + V give| + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,ability|,able|,speak|˵,undesired|ݬ + V speak|˵ +ˡ V forgive|ԭ + ADJ aValue|ֵ,quality|,fertile|,desired| + ADJ qValue|ֵ,amount|,many| + V MakeTrouble| +Ŷ V uprise| + V MakeTrouble| + ADJ aValue|ֵ,property|,MakeTrouble| + V MakeTrouble| + V GoRound|Χ + V MakeTrouble| + V coil| + V confuse| +Ʋ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +Ʋ V speak|˵,manner=hidden| +Ƶ V GoRound|Χ +Ȧ V GoRound|Χ +Ȧ ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ +Ȧ V circle| + V walk| + ADJ aValue|ֵ,behavior|ֹ,tactful|,undesired|ݬ + V speak|˵,manner=hidden| + V cross|Խ +Զ V GoRound|Χ + N part|,implement|,#electricity| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V ResultIn| + V attract| + V incur| + V irritate|ŭ + V offend| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +Dz ADJ aValue|ֵ,ability|,unable|ӹ,$incur| +ǻ V ResultIn|,result=damage| +ǻ V MakeTrouble| +ǻ V ResultIn|,result=damage| + V incur| +鷳 V MakeTrouble| + V angry| + V MakeTrouble| + V MakeTrouble| + V WarmUp| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V perception|֪,content=cold| +Ȱ V like|ϧ +ȳ N fact| +ȳ N emotion|,endeavour| +ȳ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ȴ N component|,space|ռ,%earth| +ȴ N disease| +ȵ ADJ aValue|ֵ,content|,interesting|Ȥ +ȵ N place|ط,$welcome|ӭ +ȵ N problem|,important| +ȵ N electricity| +ȵ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ȵż N fittings|,%tool|þ +ȶ N attribute|,temperature|¶,&physical| +ȶ N attribute|,temperature|¶,fever|,&human| +ȷ V WarmUp|,medical|ҽ +Ⱥ V part|,%physical| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot|,desired| +Ⱥ ADJ aValue|ֵ,temperature|¶,hot| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ȼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ȼ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + N gas|,hot| + N part|,%AnimalHuman|,liquid|Һ +ӯ V weep| + N attribute|,strength|,hot|,&physical| +ѧ N knowledge|֪ʶ + V love| + N attribute|,heat|,&physical| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + N experience|,excited| + N wind|,hot| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +Ż N inanimate|,commercial|,generic|ͳ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N attribute|,strength|,&heat| + N gas| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,excited| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + V exercise| +ˮ N water|ˮ,hot| +ˮ N tool|þ,*WarmUp| +ˮƿ N tool|þ,cubic|,@store|,#liquid|Һ +ˮ N tool|þ,*WarmUp|,#water|ˮ + ADJ aValue|ֵ,temperature|¶,hot| + V expect| + N facilities|ʩ,linear|,@transmit|,#information|Ϣ + N lights| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ѫ N emotion|,faithful|,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N drinks|Ʒ,hot|,generic|ͳ +Դ N location|λ,@ExistAppear|,#hot| +Ƶ ADJ aValue|ֵ,performance|,#hot|,$guide| + V FondOf|ϲ + V expect|,undesired|ݬ + V FondOf|ϲ + V expect|,undesired|ݬ + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + N part|,%plant|ֲ,embryo| +ʰ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ʴ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +־ʿ N human|,desired|,faithful| +御 ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N attribute|,behavior|ֹ,&human| + N attribute|,physique|,&AnimalHuman| + N attribute|,strength|,&community| + N human| + N human|,ThirdPerson| + N human|,adult| + N human|,all|ȫ + N human|,mass| + ADJ qValue|ֵ,amount|,all|ȫ +˲ N human|,able|,desired| +˲ N human|,able|,desired| +˲ű V appear|,#human|,#able| +˲żü EXPR appear|,#human|,#able| +˲н N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| +˲ EXPR appear|,#human|,#able| +˲ N FlowerGrass|,?medicine|ҩ +˳ N human|,mass| +˳ N attribute|,name|,&thing| +˳ N attribute|,property|,&language| +˴ CLAS unit|λ,&human| +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ί N institution|,politics|,(China|й) +˴ N human|,#institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˴ N institution|,politics|,#country|,*forming|γ,#law|ɷ,ProperName|ר,(China|й) +˵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +˵ N emotion|,kindhearted|,desired| +˵ N knowledge|֪ʶ +˵ N human| +˶ N human|,mass| +˶ N quantity|,amount|,&human|,family| +˷ N human|,crime|,undesired|ݬ +˷ N human|,crime|,undesired|ݬ +˷ V defend|,patient=sky| +˸ V surpass|ǿ,scope=human| +˸ N attribute|,behavior|ֹ,&human| +˹ ADJ aValue|ֵ,source|Դ,artificial| +˹ N fact|,translate|,literature| +˹ V respire|,#rescue|,medical|ҽ +˹ N artifact|˹ +˹ N knowledge|֪ʶ +˺ N human|,mass| +˻ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +˻ ADJ aValue|ֵ,attachment| +˼ N trace|,#human| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʹϵ N attribute|,relatedness|,&human| +˼ N community|,family| +˼ PRON {ThirdPerson|} +˼ N earth| +˽ N human|,able|,desired| +˾ V use|,patient=human| +˾ ADJ qValue|ֵ,rate| +˿ N quantity|,amount|,&human| +˿ N quantity|,amount|,&human|,family| +˿ڳ ADJ aValue|ֵ,density|ܶ,dense|,#human| +˿ڹ N quantity|,amount|,over|,&human| +˿ڹʣ N quantity|,amount|,over|,&human| +˿ڻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +˿ղ N fact|,investigate|,#quantity|,#human| +˿ͳ V calculate|,content=human| +˿ͳ N quantity|,amount|,&calculate| +˿ͳѧ N knowledge|֪ʶ +˿ϡ ADJ quantity|,amount|,few|,&human| + V tired|ƣ + ADJ aValue|ֵ,occasion|,bustling|,desired| + N human|,generic|ͳ + N part|,%animate|,#PassOn| +ѧ N knowledge|֪ʶ,#human| + N attribute|,strength|,&human| + N quantity|,amount|,#employee|Ա,&organization|֯ + N LandVehicle| + N human|,mass| + N attribute|,relatedness|,&human| + N army|,generic|ͳ + N human|,mass| +Ϊ ADJ qValue|ֵ,amount|,over|,#employee|Ա + N human|,mass| + N human|,mass| + N money|,(China|й) + N house|,ProperName|ר,(China|й) +ž N army|,ProperName|ר,(China|й) +ձ N publications|鿯,news|,(China|й) + N institution|,politics|,(China|й) + N attribute|,strength|,&human| + CLAS ActUnit|,&act|ж +Ʒ N attribute|,behavior|ֹ,&human| + N attribute|,relatedness|,&human| + N emotion| + N fact|,help| + N attribute|,wisdom|ǻ,&human| +ζ N emotion|,kindhearted|,desired| +ծ N emotion|,grateful|м,desired| +Ȩ N attribute|,rights|Ȩ,&human| +Ⱥ N human|,mass| + PRON {ThirdPerson|,mass|} +ɽ˺ ADJ aValue|ֵ,occasion|,bustling|,desired| + N part|,%human| + N time|ʱ,TimeLong|,#alive| + N standpoint| +ʿ N human| +ʿ N human|,glorious| + N earth| + N earth| + N affairs|,#human| + N affairs|,#human|,#employee|Ա + N fact| + N fact|,#human| +² N institution|,#employee|Ա,ProperName|ר,politics| +´ N part|,%institution|,*manage|,#employee|Ա +¾ N part|,%institution|,*manage|,#employee|Ա + N attribute|,strength|,&community| +ֲ ADJ aValue|ֵ,strength|,weak| +ٱ V guarantee|֤,scope=die|,commercial| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N quantity|,amount|,&human| + N part|,%human|,body| +ͷ N attribute|,relatedness|,&human| +ͷ N quantity|,amount|,&human| +ͷܶ ADJ aValue|ֵ,occasion|,crowded| +Ϊ ADJ aValue|ֵ,source|Դ,artificial| + N knowledge|֪ʶ + N knowledge|֪ʶ + N human| +ﻭ N image|ͼ,$draw| + N image|ͼ,$draw| + N aspiration|Ը,expect| + N emotion| +ĸ V uneasy| +Ļ̻ V uneasy| + N emotion| +е N facilities|ʩ,route|·,@walk| + N attribute|,behavior|ֹ,&human| + N AnimalHuman| +ѡ N human|,$choose|ѡ + N attribute|,occasion|,#human|,&place|ط +Կη ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V defeated|,military| +Ӱ N trace|,#lights|,#human| +Ա N human|,employee|Ա,mass| +Ա ADJ aValue|ֵ,strength|,weak| +Ա ADJ qValue|ֵ,amount|,few| +Ե N attribute|,relatedness|,&human| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V obey|ѭ,content=thinking|˼ +߾ V catch|׽ס,patient=human|,patient=artifact|˹,crime|,#police| + ADJ aValue|ֵ,source|Դ,artificial| + N material|,?clothing|,?furniture|Ҿ,artificial| + N food|ʳƷ,artificial| + N aircraft| +ά N material| +֤ N information|Ϣ,*prove|֤ + N human|,undesired|ݬ,$detain|ס + N attribute|,kind|,&human| + V endure| +̲ס V EndureNot| +̶ N FlowerGrass|,?medicine|ҩ +̿ V laugh|Ц,manner=WithstandNot|ס + N endure| + V endure| + V endure|,content=MakeBad|Ӻ + V forgive|ԭ +踺 V bear|е + V endure| +ʹ V endure|,content=painful|ʹ +޿ V EndureNot| + V endure| + ADJ aValue|ֵ,quality|,durable|,desired| +ʹ N part|,%AnimalHuman| +; N attribute|,will|־,strong|ǿ,&human| + N attribute|,will|־,strong|ǿ,&human| + V CauseToBe|ʹ֮ + N character|,surname|,human|,ProperName|ר + V indulge| + V undertake| +κ ADJ qValue|ֵ,amount|,all|ȫ +ν V engage|,content=teach|,education| +ο V engage|,content=teach|,education| +Թ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V AlterIsa|Ƿ + V CauseToBe|ʹ֮ + N human|,*CauseToBe|ʹ֮ +ƾ V indulge| + N attribute|,duration|,#engage|,&human| + V satisfied| +Ψ V CauseToBe|ʹ֮,AccordingTo=intimate| +Ψ V CauseToBe|ʹ֮,AccordingTo=ability| + N affairs| +۵ N attribute|,behavior|ֹ,flighty|,&human| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N phenomena|,sport| + V CauseToBe|ʹ֮ + V employ| +ְ V undertake|,content=occupation|ְλ +صԶ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V RegardAs| + V admit| + V agree|ͬ + V bear|е + V distinguish|ֱ + V know|֪ +ϴ V admit|,content=wrong| +ϵ V know|֪ +϶ V regard|Ϊ +Ϲ V buy|,commercial| +Ϲ V bear|е,content=buy| +Ϲ N human|,*bear|е,#buy| +Ͻ V pay| +Ͼ V donate| +Ͽ V agree|ͬ + V collect| + V know|֪ +ʶ V know|֪ +ʶ N knowledge|֪ʶ + V surrender| +ͬ V admit| +ͬ N emotion|,admit| +Ϊ V regard|Ϊ + V betray| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +֤ V prove|֤ +֪ ADJ know|֪ +֪ V know|֪ +׼ V regard|Ϊ + V admit|,content=crime| + N part|,%tool|þ,*cut|,heart| + N weapon|,*stab| +о N part|,%machine|,*cut|,heart| +Ѹ N human|,female|Ů,*GiveBirth| + V pregnant|,#medical|ҽ + N time|ʱ,@pregnant| + V fasten|˩ + V fasten|˩ + V abandon| + V throw| + V abandon| + ADV {Vcontinue|} +Ծ ADV {Vcontinue|} +Ȼ ADV {Vcontinue|} + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) + ADJ aValue|ֵ,time|ʱ,day| + N celestial| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N time|ʱ + N time|ʱ,day|,special| + N time|ʱ,morning| + N unit|λ,&time|ʱ +ձɽ V decline|˥ +ձ N publications|鿯 +ձ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Japan|ձ) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N place|ط,country|,ProperName|ר,(Asia|) +ձ N waters|ˮ,ProperName|ר +ձ N human|,(Japan|ձ) +ղ N quantity|,amount|,&crop|ׯ,&artifact|˹,#day| +ճ ADJ aValue|ֵ,kind|,ordinary| +ճ N affairs|,ordinary| +ճ N plans|滮 +ճ̱ N readings|,#plans|滮 +ճ N time|ʱ,day|,morning| +մ N stationery|ľ,*print|ӡˢ +ոһ ADV aValue|ֵ,duration|,TimeLong| +չ N affairs|,industrial|,#day| +չ N human|,#occupation|ְλ,industrial|,#day| +չ N payment| +չ N lights|,#celestial| +չ N tool|þ,*illuminate| +պ N time|ʱ,future| +ջ V gather|ɼ,manner=TimeLong| +ռ N readings| +ռ N readings| +ռ N time|ʱ,day|,morning| +ռ ADV aValue|ֵ,degree|̶,very| +ս ADV aValue|ֵ,degree|̶,very| +ս˥ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +վ N army|,ProperName|ר,(Japan|ձ) +տ N place|ط,city|,ProperName|ר,(China|й) +տ N army|,ProperName|ר,(Japan|ձ) + V endeavour| + N tool|þ,*show|,#time|ʱ + N time|ʱ,day|,night| + N place|ط,city|,ProperName|ר,(Swiss|ʿ) + N time|ʱ,day| +ǰ N time|ʱ,past| + ADJ aValue|ֵ,speed|ٶ,slow| +ҹҹ ADJ aValue|ֵ,duration|,TimeLong| + N human|,commercial|,(Japan|ձ) +䲡 N disease| +ͷ N celestial| + N InstitutePlace|,*TakeCare|,#young|,#human| + N language|,(Japan|ձ) + V change| +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,night| +Լҹ ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,degree|̶,very| + V BecomeMore| + ADJ aValue|ֵ,property|,$use| +ðٻ N artifact|˹,generic|ͳ,commercial| +Ʒ N artifact|˹ + N language|,#country|,ProperName|ר +Ԫ N money|,(Japan|ձ) +Բ N money|,(Japan|ձ) + N attribute|,circumstances|,&human| + ADJ aValue|ֵ,speed|ٶ,fast| + N lights| + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,#illuminate|,#celestial| + ADV aValue|ֵ,degree|̶,very| +־ N document| + N time|ʱ,afternoon| + N attribute|,circumstances|,&human| + N time|ʱ + N time|ʱ,day| + N lights| + N affairs|,military| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + N human|,past| + N affairs|,military| +װ N clothing|,military| + N part|,%beast|,*feel| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N place|ط,city|,ProperName|ר,(China|й) +س N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V prosper| +ٹ V GoBack| +ٻ N attribute|,reputation|,glorious|,desired|,&human| +ٻ N attribute|,situation|״,rich|,glorious|,desired|,&human| +ٻ V obtain|õ + N attribute|,reputation|,&human|,&organization|֯ +빲 V bear|е,means=together|ͬ + ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + N experience|,#reputation| + N human|,military|,*disable|м + V obtain|õ + V StateChange|̬,StateFin=liquid|Һ + V StateChange|̬,StateFin=liquid|Һ,industrial| + N character|,surname|,human|,ProperName|ר + V fit|ʺ +ں V merge|ϲ +ں V merge|ϲ,industrial| +ڻ V StateChange|̬,StateFin=liquid|Һ +ڻ V merge|ϲ +ڻͨ V understand| +ڽ V StateChange|̬,StateFin=liquid|Һ +Ǣ ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + V joyful|ϲ +ͨ V circulate|ѭ,commercial| + V provide|,possession=fund|ʽ + V burn|,industrial| +۵ N attribute|,boundary|,&burn| +۶ V break|۶,#electricity| +ۻ V StateChange|̬,StateFin=liquid|Һ +۽ V StateChange|̬,StateFin=liquid|Һ,industrial| + V burn|,industrial| +¯ N facilities|ʩ,space|ռ,@burn|,#metal|,@produce|,#material| + V StateChange|̬,StateFin=liquid|Һ,industrial| + N stone|ʯ + V produce|,means=burn|,industrial| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ܶ N part|,%inanimate|,mouth| +ܻ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܼ N chemical|ѧ +ܽ N inanimate| +ܽ V StateChange|̬,StateFin=liquid|Һ,industrial| +ܽ N quantity|,rate|,StateChange|̬,&inanimate| +ܽ N attribute|,ability|,#liquid|Һ +ʴ V StateChange|̬,StateFin=liquid|Һ,industrial| +Һ N water|ˮ,*contain|,#material| + N chemical|ѧ + V agree|ͬ + N character|,surname|,human|,ProperName|ר + V contain| + V endure| +ݲ V TolerateNot| +ݲ÷ V TolerateNot|,target=disagree|ͬ +ݻ N attribute|,volume|ݻ,&inanimate| + N attribute|,volume|ݻ,&inanimate| +ò N attribute|,appearance|,&AnimalHuman| + V contain| + N tool|þ,@put|,@store|,generic|ͳ + V forgive|ԭ + ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + V endure| + V forgive|ԭ + V reside|ס + ADJ aValue|ֵ,ability|,able|,$agree|ͬ + V agree|ͬ + N attribute|,appearance|,skin|Ƥ,AnimalHuman| + ADJ aValue|ֵ,easiness|,easy|,desired| +׷ V happen|,manner=easy| +׸ ADJ aValue|ֵ,ability|,able|,$OutOfOrder| +׽ V accept|,manner=easy| + N material|,?clothing|,?tool|þ + N part|,%AnimalHuman|,hair|ë +޲ N material|,?clothing|,?tool|þ +޻ N tool|þ,*decorate|װ +޿ N clothing|,#leg| +ë N material|,?clothing|,?tool|þ +ë N part|,%AnimalHuman|,hair|ë +ë N part|,%bird|,hair|ë +ë״ ADJ aValue|ֵ,form|״,hair|ë +ͷ N material|,?clothing|,?tool|þ,*weave| +ͷ N tool|þ,*weave| + N material|,*decorate|װ + N material|,?clothing|,?tool|þ,*weave| + N clothing|,#body| + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +߳ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N attribute|,necessity|Ҫ,redundant|,&entity|ʵ +Ա N human|,employee|Ա,redundant| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +׸ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V PlayWith|Ū + V rub|Ħ + V PlayWith|Ū + V rub|Ħ +Ū V PlayWith|Ū + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + N fact|,exercise| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| + N emotion|,gentle| + ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| +⻬ ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + N fact|,sport| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N fish| + ADJ aValue|ֵ,behavior|ֹ,passive| + N part|,%AnimalHuman|,flesh| + N part|,%fruit|ˮ,flesh|,$eat| +ⲫ V fight|,military| +ⶡ N food|ʳƷ,#flesh| +ⶹޢ N fruit|ˮ + N tree|,?medicine|ҩ + ADJ aValue|ֵ,fatness|,fat| +⼦ N bird| + N part|,%animate|,flesh| +˰ߴ ADJ aValue|ֵ,behavior|ֹ,passive| + N disease| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĩ N food|ʳƷ,#flesh| +ţ N livestock| + N food|ʳƷ,#flesh| +Ƥ N part|,%human|,skin|Ƥ +Ƥ N part|,%livestock|,skin|Ƥ +Ƭ N food|ʳƷ,#flesh| + N bird| +ɫ ADJ aValue|ֵ,color|ɫ,red| +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| + N food|ʳƷ + N food|ʳƷ,$eat|,liquid|Һ + N part|,%AnimalHuman|,body| + N part|,%human|,body| + N food|ʳƷ,#flesh| + N part|,%AnimalHuman|,#eye| +Ʒ N food|ʳƷ,#flesh| +д N human|,enemy| + N livestock| + N FlowerGrass|,?medicine|ҩ + N character|,surname|,human|,ProperName|ר + V eat| + V crawl| +䶯 V crawl| + V crawl| + N human|,literature| + N human|,literature|,ProperName|ר,past| + N community|,#knowledge|֪ʶ + N human|,literature| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N beast|,*swim| + N human|,young| + N human|,young| +ţ N human|,employee|Ա + V BeSimilar| + CONJ {condition|} + ADV {supplement|ݽ} +糣 ADV aValue|ֵ,frequency|Ƶ,regular| + V joyful|ϲ +һ V BeSame|ͬ + ADJ aValue|ֵ,kind|,special| +˵ȵ COOR {and|} + ADJ aValue|ֵ,kind|,special| + ADV {supplement|ݽ} + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +̺ V ignorant|֪ +編 V imitate|ģ + ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + CONJ {condition|} + ADV {manner|ʽ,question|} +绢 ADJ aValue|ֵ,ability|,able| +ݱ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + V joyful|ϲ +缢ƿ V worried|ż +罺 ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADV time|ʱ,now| +׹ ADJ aValue|ֵ,reputation|,glorious|,desired| +ı ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +γ V understand| +ɢ V flee| +ƽʱһ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV aValue|ֵ,behavior|ֹ,proper|,#time|ʱ,desired| +ǰ ADV {comment|} + V prosper| + CONJ {condition|} +ɥ V sorrowful| + ADV {comment|} + ADV {comment|} +ʵ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʵ N attribute|,size|ߴ,&physical| +ظ V AtEase| + ADJ qValue|ֵ,amount|,all|ȫ +黹 V return|,quantity=all|ȫ + V return|,quantity=all|ȫ +˻ V return|,quantity=all|ȫ +˹ ADJ aValue|ֵ,degree|̶,more| +ͬ V BeSimilar| +һ ADJ aValue|ֵ,similarity|ͬ,alike| + ADV {supplement|ݽ} +ϸ V SeekRefuge|Ͷ + V satisfied| + N tool|þ,*decorate|װ +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ը V fulfil|ʵ,patient=aspiration|Ը +ԸԳ V satisfied| + ADJ qValue|ֵ,amount|,many| + V joyful|ϲ +ձ V uneasy| + V damage| + V slander|̰ + V ExpressAgainst|Ǵ + N human|,*ExpressAgainst|Ǵ +û V slander|̰ + N human|,young| + N part|,%AnimalHuman|,$drink|,liquid|Һ + N part|,%AnimalHuman|,body| + N shape|,liquid|Һ +鰩 N disease| + ADJ aValue|ֵ,color|ɫ,white| +ɫ ADJ aValue|ֵ,color|ɫ,white| + N part|,%AnimalHuman|,*bite|ҧ +δ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| +鷿 N part|,%AnimalHuman|,body| + N food|ʳƷ + N bird|,?food|ʳƷ +黯 V ize|̬,PatientAttribute=liquid|Һ,industrial| +黯 N chemical|ѧ + N medicine|ҩ,liquid|Һ +齺 N material|,sticky|,*fix|ס,*fasten|˩ + N food|ʳƷ +ĸ N human|,female|Ů,*feed|ι,employee|Ա +ţ N livestock| +Ʒ N edible|ʳ + N chemical|ѧ + N material|,?food|ʳƷ +ͷ N part|,%AnimalHuman|,body| +ͷ״ ADJ aValue|ֵ,form|״ +ͻ N disease| + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N material| + N part|,%AnimalHuman|,*bite|ҧ +֭ N part|,%AnimalHuman|,$drink|,liquid|Һ +Ʒ N edible|ʳ + N livestock|,young| +״ ADJ aValue|ֵ,form|״ + PRON {SecondPerson|} +۳ N character|,surname|,human|,ProperName|ר + V GoInto| + V fit|ʺ + V include| + N payment| +벻 V lack|ȱ +볡 V GoInto| +볡ȯ N coupon|Ʊ֤,#wealth|Ǯ,*GoInto|,#InstitutePlace| +봺 V start|ʼ,agent=time|ʱ,spring| +뵳 V include|,ResultWhole=community|,politics| +붬 V start|ʼ,agent=time|ʱ,winter| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + V GoInto|,LocationFin=facilities|ʩ + ADJ aValue|ֵ,content|,profound|,desired| + V include|,SourceWhole=community|,commercial| +뻧 V GoInto|,LocationFin=house| +뻭 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V include| + N human|,*include| + V include|,ResultWhole=community| +뾳 V GoInto|,LocationFin=country| + N part|,%building|,mouth| +ڴ N part|,%building|,mouth| + V attack|,military| + V store| + N readings|,NotProfound|dz + V appear| + V sleep|˯ + V sleep|˯ + ADJ FondOf|ϲ + V FondOf|ϲ +ħ V FondOf|ϲ +ľ ADJ aValue|ֵ,content|,profound|,desired| + V attack|,military| + N human|,*attack|,military| + V start|ʼ,agent=time|ʱ,autumn| + V FondOf|ϲ + ADJ aValue|ֵ,kind|,special| + N sound|,#language| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + V start|ʼ +˯ V sleep|˯ + V bury| + V include|,ResultWhole=community|,politics| + V include|,ResultWhole=institution| + V record|¼,content=internet| +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Χ V win|ʤ +ζ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| + V include|,ResultWhole=army|,military| +ϯ V sit| + V start|ʼ,agent=time|ʱ,summer| +ѡ V win|ʤ +ѧ V include|,ResultWhole=education|,education| +ѧ N fact|,exam| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ҩ V RegardAs|,ResultIsa=medicine|ҩ +ҹ N time|ʱ,night| + V suffer|,content=detain|ס,crime|,police| +Ժ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V record|¼,LocationFin=account|,commercial| +׸ V MarryTo| + V sit| + V put|,LocationFin=tool|þ + N tool|þ,@LieDown| +촯 N disease| +쵥 N tool|þ,@LieDown|,*cover|ڸ + N tool|þ,*cover|ڸ + N tool|þ,@LieDown| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +װ ADJ aValue|ֵ,property|,soft|,#wrap| + N tool|þ,*record|¼ + N material|,?clothing|,?tool|þ + N wind| + N medicine|ҩ + N part|,%AnimalHuman|,bone| +ͷ N human|,undesired|ݬ,timid| + N tool|þ,linear| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,hardness|Ӳ,soft|,desired| + V ize|̬,PatientAttribute=soft| + V win|ʤ + N software| + N software| + V detain|ס,police| +ѧ N knowledge|֪ʶ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ĥ V MakeTrouble| +ľ N wood|ľ,material| + N tool|þ,*record|¼ +Ƭ N part|,%tool|þ,#TakePicture| + ADJ aValue|ֵ,hardness|Ӳ,soft|,ish| + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + ADJ aValue|ֵ,will|־,weak|,undesired|ݬ +ʳ N edible|ʳ,generic|ͳ +ˮ N water|ˮ + N food|ʳƷ + N part|,%building|,nerve| +嶯 N AnimalHuman|,generic|ͳ + N part|,%LandVehicle|,@sleep|˯ +ϯ N part|,%LandVehicle|,@sit| +ϯ N part|,%LandVehicle|,@sleep|˯ + N attribute|,content|,interesting|Ȥ,readings| + N drinks|Ʒ,generic|ͳ +Ӳ N part|,%software|,%computer| +½ N fact|,*arrive|,#aircraft| + N part|,%LandVehicle|,@sit| + N part|,%AnimalHuman|,mouth| + N MusicTool| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N part|,%FlowerGrass|,heart| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sweden|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Sweden|) + N human|,(Sweden|) + N language|,#country|,ProperName|ר + N money|,(Cambodia|կ) +ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swiss|ʿ) +ʿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʿ N money|,(Liechtenstein|֧ʿ) +ʿ N money|,(Swiss|ʿ) +ʿ N human|,(Swiss|ʿ) +ѩ N RainSnow|ѩ,desired| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| +񲻿ɵ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + V BecomeLess|,manner=sudden| + N image|ͼ,angular| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,form|״,sharp| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N attribute|,strength|,&human| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N time|ʱ + N time|ʱ,year| + N time|ʱ,month| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V decorate|װ + V lubricate|,industrial| + V moisten|ʪ + V lubricate|,industrial| +󻬼 N material|,liquid|Һ,*lubricate| + N material|,liquid|Һ,*lubricate| +֬ N material|,liquid|Һ,*lubricate| +ɫ V MakeBetter|Ż +ɫ V decorate|װ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + ADJ aValue|ֵ,SmoothFinish|,polished|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ,desired| + V moisten|ʪ + CONJ {condition|} + N InsectWorm| + ADJ qValue|ֵ,amount|,question| + ADJ qValue|ֵ,amount|,some|Щ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + V calm| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + V inferior| + ADJ qValue|ֵ,amount|,few| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N attribute|,quality|,weak|,undesired|ݬ,&thing| + V weaken| + V ill|̬,#eye| + N chemical|ѧ + N attribute|,quality|,weak|,&human|,&organization|֯ +С ADJ aValue|ֵ,quality|,weak|,undesired|ݬ + N human|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V indulge| + V spray| + V spread| + V throw| + V release|ͷ,patient=LandVehicle| + N humanized|,evil| + V IllBehave| + N place|ط,ProperName|ר +ɳĮ N place|ط,ProperName|ר + V recreation| + V TalkNonsense|Ϲ˵ + V please|ȡ + V release|ͷ + V IllBehave| + V excrete|й,patient=liquid|Һ + V IllBehave| + V ExpressAnger|ʾŭ + V leak|©,content=gas| + V cease|ͣ + V release|ͷ +ֲ V cease|ͣ + V die| +ȥ V die| + N tool|þ,strong|ǿ,desired|,*win|ʤ + V run| +Ⱦ V run| + V throw|,patient=tool|þ,#catch|׽ס,#fish| +Ѽ V run| +Ѿ V run| +Ұ V IllBehave| + V spray| + V spread| + V weep| + V fall| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +ˮ V LandVehicle|,spread|,#water|ˮ + ADJ aValue|ֵ,demeanor|,gracious|,desired| + V spray| + N character|,surname|,human|,ProperName|ר +߶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|߶) +߶ N place|ط,country|,ProperName|ר,(South America|) +ά ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(El Salvador|ά) +ά N place|ط,country|,ProperName|ר,(South America|) +ղ N place|ط,city|,ProperName|ר,(Yugoslavia|˹) + N place|ط,city|,ProperName|ר,(Yugoslavia|˹) +Ħ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Samoa|Ħ) +Ħ N place|ط,country|,ProperName|ר +Ħ N language|,#country|,ProperName|ר + N food|ʳƷ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,skin|Ƥ + N part|,%AnimalHuman|,nerve| + N disease| + N part|,%fish|,*respire| + V fill| + N part|,%artifact|˹,generic|ͳ + N place|ط,country|,ProperName|ר,(Senegal|ڼӶ) + N place|ط,important|,military| + N place|ط,(China|й) + N sound|,#language| + V suffer|,content=$BlockUp|,experiencer=LandVehicle| + N language|,#country|,ProperName|ר + N money|,(Ghana|) +ά N place|ط,ProperName|ר,(Yugoslavia|˹) +ά-޵ N language|,#country|,ProperName|ר +ά N human|,(Yugoslavia|˹) +ά N language|,#country|,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,( Sierra Leone|) + N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Senegal|ڼӶ) +ڼӶ N place|ط,country|,ProperName|ר,(Africa|) +ڼӶ N human|,(Senegal|ڼӶ) +·˹ N aValue|ֵ,attachment|,#country|,ProperName|ר,(Cyprus|·˹) +·˹ N place|ط,country|,ProperName|ר,(Asia|) +·˹ N money|,(Cyprus|·˹) +·˹ N human|,(Cyprus|·˹) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Seychelles|) + N place|ط,country|,ProperName|ר,(Africa|) +¬ N money|,(Seychelles|) + N human|,(Seychelles|) + N language|,#country|,ProperName|ר + N place|ط,(China|й) +ά N place|ط,ProperName|ר,(Spain|) +ʧ EXPR lucky| + N sound|,#language| + N part|,%artifact|˹,generic|ͳ + N community|,ProperName|ר,(Yugoslavia|˹) + V compete| + N fact|,compete| + V surpass|ǿ + N facilities|ʩ,space|ռ,@compete|,sport| + N SportTool|˶,LandVehicle|,*compete| + N fact|,compete|,#LandVehicle| + N process|,#compete| + V surpass|ǿ + V compete|,sport| + N fact|,compete|,run| + N fact|,compete| +ͧ N ship|,*compete| +ͧ˶ N fact|,compete|,#ship|,sport| + N material|,?tool|þ + N material|,?tool|þ + NUM qValue|ֵ,amount|,cardinal|,mass| +K N community|,(US|) +˸Ů N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +˽ N time|ʱ,day|,festival|,#female|Ů,@congratulate|ף +ʮ N attribute|,occupation|ְλ,mass|,&human| +൹ V engage|,content=affairs|,#duty|,#sequence| +̥ N human|,family|,mass| + ADJ qValue|ֵ,amount| + ADJ aValue|ֵ,form|״ + N music| + N fact|,eat| +· N location|λ,%route|· + V die| + N phenomena|,undesired|ݬ,#unfortunate|,#die| + N human|,family| + N time|ʱ,past| +ϵ N time|ʱ,past| + N knowledge|֪ʶ +۷ N knowledge|֪ʶ + ADV aValue|ֵ,frequency|Ƶ,again| + ADV aValue|ֵ,frequency|Ƶ,again| + N time|ʱ,summer|,hot| + N time|ʱ,day|,night| +ҹ N time|ʱ,day|,night| +é® V invite| + N place|ط,#human|,country|,politics|,mass| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ϰ N material|,wood|ľ,*build|,*produce|,#furniture|Ҿ +һ ADJ aValue|ֵ,property|,$merge|ϲ + ADJ part|,implement| + N fact|,exercise|,sport| +Զ N fact|,exercise|,sport| + N crop|ׯ + V KeepSilence|˵ +ż N tool|þ,#TakePicture| + ADJ aValue|ֵ,form|״ + N image|ͼ,angular| + N knowledge|֪ʶ,#image|ͼ +ǰ N tool|þ,*measure| +dz N tool|þ,*measure| +Ƿ N tree| +ǹε N tool|þ,*cut| +Ǻ N symbol|,#quantity|,#DoSum| +ǿ N clothing|,#leg| + N fact|,love| + N material|,metal| + ADJ aValue|ֵ,form|״ + N land|½,surfacial|,#waters|ˮ + ADJ aValue|ֵ,property|,$merge|ϲ + N army| + N army|,generic|ͳ + ADJ aValue|ֵ,form|״ +⾵ N tool|þ,#lights| + V order| + N LandVehicle| +ֳ N LandVehicle| + N knowledge|֪ʶ + N food|ʳƷ + N time|ʱ + ADJ qValue|ֵ,amount|,some|Щ + V lucky| +ʮ V BeGood|̬ +˼ V think|˼,manner=attentive|ϸ +˼ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ͷ ADV aValue|ֵ,frequency|Ƶ,often| +ͨ N tool|þ +ά ADJ aValue|ֵ,form|״,cubic| +λһ ADJ aValue|ֵ,property|,$merge|ϲ +Ⱥ ADJ qValue|ֵ,amount|,some|Щ + N edible|ʳ,#taste|ζ,good| + N MusicTool| +Ķ V hesitate|ԥ + N place|ط,city|,ProperName|ר,(China|й) + N time|ʱ,month| +· N time|ʱ,month| +㶦 V BeOpposite| + NUM qValue|ֵ,amount|,cardinal|,mass| +ɡ N shape| +ɡ N tool|þ,#RainSnow|ѩ,*protect| +ɡ N human|,military| +ɡ N army| +ɡ V fall|,sport|,military| +ɡͶ V drop|Ͷ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ɢ V disperse|ɢ +ɢ V issue|ַ +ɢ N medicine|ҩ +ɢ V release|ͷ +ɢ V spread| +ɢ N human|,military| +ɢ N human|,military|,undesired|ݬ +ɢ V disseminate| +ɢ V disseminate| +ɢ V spread| +ɢ V walk| +ɢ V finish|,entertainment| +ɢ N fact|,sport| +ɢ V issue|ַ +ɢ V spread| +ɢ N disease|,#eye| +ɢ V finish| +ɢ V separate| +ɢ N inanimate|,commercial| +ɢ N medicine|ҩ +ɢ N text| +ɢ V separate| +ɢ V disperse|ɢ +ɢ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɢ V disperse|ɢ +ɢ V fall| +ɢ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɢ V remove|,patient=upset| +ɢ V remove|,patient=heat| +ɢȹ N part|,%tool|þ,*remove|,#heat| +ɢƬ N part|,%tool|þ,*remove|,#heat| +ɢ N tool|þ,*remove|,#heat| +ɢɢ V remove|,patient=upset| +ɢʧ V disappear|ʧ +ɢ̯ V separate| +ɢ N text| +ɢļ N human|,*compile|༭,literature| +ɢʫ N text| +ɢϯ N location|λ,@sit| +ɢ V MakeHappy|ʹϲ,means=WhileAway| +ɢװ ADJ aValue|ֵ,property|,$wrap|,unattached|ɢ +ɢװơ N drinks|Ʒ,$addict|Ⱥ +ɢ N location|λ,@sit| +ɢ V disappear|ʧ +ɢ V disappear|ʧ +ɣ N character|,surname|,human|,ProperName|ר +ɣ N part|,%tree|,embryo| +ɣ N tree| +ɣ N InsectWorm| +ɣ N language|,#country|,ProperName|ר +ɣԡ N fact|,wash|ϴ,#body| +ɣƤֽ N paper|ֽ +ɣ N tree| +ɣҶ N part|,%tree|,hair|ë +ɣĺ N time|ʱ,#aged| +ɣ԰ N facilities|ʩ,space|ռ,*planting|ֲ +ɣ N part|,%tree|,embryo| +ɣ N place|ط,@ComeToWorld| +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤ N part|,%AnimalHuman|,mouth| +ɤ N sound|,#MakeSound|,#sing|,#speak|˵ +ɤӲ ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +ɤӺ ADJ aValue|ֵ,SoundQuality|,good|,desired| +ɥ N fact|,salute|¾,#die| +ɥ V lose|ʧȥ +ɥ V fear| +ɥ N clothing|,*salute|¾,#die| +ɥ V fear| +ɥ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N fact|,uprise|,undesired|ݬ,politics| +ɥ V die| +ɥż V lose|ʧȥ,possession=human| +ɥ V disheartened| +ɥ V unfortunate| +ɥȨ V surrender| +ɥ V die| +ɥʧ V lose|ʧȥ +ɥʧ N human|,*lose|ʧȥ +ɥ N fact|,salute|¾,#die| +ɥIJ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ɥ N fact|,salute|¾,#die| +ɥ N expenditure|,#salute|¾,#die| +ɥ N sound|,*tell|,#die| +ɦ V scratch|ץ +ɦͷŪ V show|,content=flighty| +ɧ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ɧ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ɧ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ɧ N fact|,uprise|,undesired|ݬ,politics| +ɧȺ N human|,disorder|,undesired|ݬ,mass| +ɧ N human|,female|Ů,flighty|,undesired|ݬ +ɧ N human|,*compile|༭,literature| +ɧ N fact|,uprise| +ɧ ADJ aValue|ֵ,occasion|,bustling| +ɧ V MakeTrouble| +ɧ N human|,*compile|༭,literature| +ɧī N human|,*compile|༭,literature| +ɨ V GoThrough| +ɨ V remove| +ɨ V wipe| +ɨ N tool|þ,*wipe| +ɨ V remove| +ɨ V wipe| +ɨ V destroy|,military| +ɨ V wipe|,patient=part|,#building| +ɨس V expel| +ɨ V remove|,patient=medicine|ҩ,#addict|Ⱥ +ɨ V wipe|,patient=room| +ɨ V condole|° +ɨ V destroy|,patient=crime|,police| +ɨ V destroy|,patient=lascivious|,police| +ɨ׽ N weapon|,ship|,military| +ɨͧ N weapon|,ship|,military| +ɨä V exempt|,ResultEvent=ignorant|֪ +ɨ V look|,industrial| +ɨ N tool|þ,look|,industrial| +ɨ V destroy|,military| +ɨĹ V condole|° +ɨ V shoot| +ɨβ V finish| +ɨ V disappointed|ʧ +ɨ V disappoint| +ɨѩ N LandVehicle|,*remove|,#RainSnow|ѩ +ɨ N tool|þ,*wipe| +ɨ N celestial| +ɨ N human|,undesired|ݬ,*CauseToDo|ʹ,#unfortunate| +ɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɩɩ N human|,family|,female|Ů +ɩ N human|,family|,female|Ů +ɪ N MusicTool|,(China|й) +ɪɪ V shiver| +ɪɪ ECHO sound| +ɪ V shiver| +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N attribute|,scene|,&inanimate| +ɫ N attribute|,color|ɫ,&physical| +ɫʰ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫͷ ADJ aValue|ֵ,color|ɫ,colored|,desired| +ɫ N attribute|,standard|׼,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N attribute|,hue|Ũ,&color|ɫ +ɫ N lights|,colored| +ɫ N human|,lascivious|,undesired|ݬ +ɫ N food|ʳƷ +ɫ N material|,?food|ʳƷ +ɫ N human|,lascivious|,undesired|ݬ +ɫ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ɫä N disease|,#eye| +ɫä N human|,undesired|ݬ,*disable|м,#look| +ɫ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ɫ N phenomena|,#color|ɫ,#lights| +ɫ ADJ aValue|ֵ,content|,lascivious|,undesired|ݬ +ɫ N human|,lascivious|,undesired|ݬ +ɫ鿯 N readings|,lascivious|,undesired|ݬ +ɫ N part|,%animate|,#color|ɫ +ɫ N attribute|,bearing|̬,&female|Ů +ɫ N attribute|,color|ɫ,&physical| +ɫ֯ N material|,?clothing| +ɫ N tool|þ,*gamble|IJ +ɬ ADJ aValue|ֵ,SmoothFinish|,coarse|,undesired|ݬ +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɬ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ɭ ADJ aValue|ֵ,brightness|,dark| +ɭ N tree| +ɭԱ N human|,*remove|,fire| +ɭȻ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭɭ ADJ aValue|ֵ,density|ܶ,dense| +ɭɭ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ɭ ADJ aValue|ֵ,behavior|ֹ,strict| +ɮ N human|,religion|ڽ +ɮ V lack|ȱ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,religion|ڽ +ɮ N human|,mass|,#religion|ڽ +ɮͽ N human|,religion|ڽ +ɮ٤ N human|,(Singhalese|ɮ٤) +ɮ٤ N language|,#country|,ProperName|ר +ɯ N character|,(China|й) +ɯ N clothing| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰ N material|,?building| +ɰ N stone|ʯ,material| +ɰ N tool|þ,*grind|ĥ +ɰʯ N stone|ʯ,material| +ɰ N material|,?food|ʳƷ +ɰ N stone|ʯ,material| +ɰ N stone|ʯ,material| +ɰ N part|,%inanimate| +ɰֽ N tool|þ,*grind|ĥ +ɰ N stone|ʯ,material| +ɱ V fight| +ɱ V fight|,military| +ɱ V kill|ɱ +ɱ V weaken| +ɱ N chemical|ѧ,*destroy|,#InsectWorm| +ɱ羰 V discourage|ˮ +ɱ V kill|ɱ +ɱ￴ V frighten|Ż +ɱȡ V WorthNot|ֵ +ɱź V frighten|Ż +ɱ V subtract|,patient=price|۸,commercial| +ɱ ADJ aValue|ֵ,ability|,able|,remove|,#bacteria|΢,medical|ҽ +ɱ V remove|,patient=bacteria|΢,purpose=clean|ʹ,medical|ҽ +ɱ N chemical|ѧ,*destroy|,#bacteria|΢ +ɱ¾ V kill|ɱ +ɱ¾ V kill|ɱ,crime| +ɱ V destroy| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ V fulfil|ʵ,patient=compile|༭,#readings| +ɱ ADJ aValue|ֵ,ability|,able|,kill|ɱ,#human| +ɱ V kill|ɱ,crime| +ɱ˰ N fact|,undesired|ݬ,crime|,#kill|ɱ,#police| +ɱ˲Ѫ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˲Ѫ V kill|ɱ,crime| +ɱ˲գ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱ˷ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ɱԽ V rob| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ N attribute|,ability|,#kill|ɱ,&weapon| +ɱ V endeavour| +ɱ֮ N phenomena|,undesired|ݬ,#unfortunate| +ɱ V kill|ɱ,patient=AnimalHuman| +ɱ N human|,*kill|ɱ,undesired|ݬ,crime| +ɱ N weapon| +ɱ V kill|ɱ +ɱͷ V kill|ɱ +ɱһӰ V frighten|Ż +ɲ V cease|ͣ +ɲ N facilities|ʩ,space|ռ,religion|ڽ +ɲ V fix|ס +ɲ V TurnOff|ֹ,content=machine| +ɲ V cease|ͣ +ɲ V fix|ס +ɲ ADJ aValue|ֵ,duration|,TimeShort| +ɲǼ ADJ aValue|ֵ,duration|,TimeShort| +ɲʱ ADJ aValue|ֵ,duration|,TimeShort| +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ ADJ aValue|ֵ,form|״,round|Բ +ɳ N character|,surname|,human|,ProperName|ר +ɳ N stone|ʯ,material| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N place|ط,military|,@fight| +ɳ N wind|,#WeatherBad|,undesired|ݬ +ɳ N tool|þ,*exercise| +ɳ N land|½ +ɳ N fish| +ɳ N furniture|Ҿ,space|ռ,@sit| +ɳ N tool|þ,cubic|,@cook| +ɳ N land|½,surfacial|,desolate|,undesired|ݬ +ɳ N human|,royal|,(Russia|˹) +ɳ N food|ʳƷ +ɳ N material|,?food|ʳƷ +ɳ N InstitutePlace|,@WhileAway|,commercial| +ɳϾ N bacteria|΢ +ɳĮ N land|½,surfacial|,barren| +ɳĮ V ize|̬,PatientAttribute=barren|,#stone|ʯ +ɳ N tool|þ,military| +ɳ N stone|ʯ,material| +ɳɳ ECHO sound| +ɳʯ N stone|ʯ,material| +ɳ N place|ط,city|,ProperName|ר,(China|й) +ɳ̲ N land|½ +ɳ N money|,(Saudi Arabia|ɳ) +ɳ N place|ط,country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Saudi Arabia|ɳذ) +ɳذ N place|ط,country|,ProperName|ר,(Asia|) +ɳ N land|½ +ɳ N stone|ʯ +ɳ N thinking|˼ +ɳ ADJ thinking|˼ +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ɳ ADJ aValue|ֵ,SoundVolume|,weak| +ɳ N disease|,#eye| +ɳ ADJ aValue|ֵ,material|,stone|ʯ +ɳ N land|½ +ɳ N shape| +ɳ N stone|ʯ,material| +ɳ N beast| +ɴ N material|,?clothing| +ɴ N tool|þ +ɴ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ɴ N furniture|Ҿ,cubic|,@store| +ɴ N part|,%building| +ɴ N tool|þ,*illuminate| +ɴ N part|,%machine| +ɴ N clothing| +ɴ N clothing| +ɴ N material|,linear| +ɵ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N human|,foolish|,undesired|ݬ +ɵǺ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵ N text|,foolish| +ɵ N attribute|,strength|,stiff|,&human| +ɵ V laugh|Ц,manner=foolish| +ɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵñ N human|,foolish|,undesired|ݬ +ɵ N event|¼,foolish| +ɵͷɵ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ɵЦ V laugh|Ц,manner=foolish| +ɵ V stupefied|ľȻ +ɵ N human|,foolish|,undesired|ݬ +ɶ ADJ aValue|ֵ,kind|,question| +ɶ N entity|ʵ,question| +ɷ V cease|ͣ +ɷ V tighten|ս +ɷ V weaken| +ɷ V TurnOff|ֹ,patient=machine| +ɷ V cease|ͣ +ɷ N part|,%vehicle|ͨ,*TurnOff|ֹ +ɷ V tighten|ս +ɷѿ V think|˼,manner=endeavour| +ɷĻ V think|˼,manner=endeavour| +ɷ羰 V discourage|ˮ +ɷβ V finish| +ɷβ N process|,ending|ĩ +ɷн V pretend|װ +ɷס V cease|ͣ +ɸ V filter| +ɸ N tool|þ,*filter| +ɸ V shiver| +ɸѡ V choose|ѡ +ɸ N tool|þ,*filter| +ɹ V dry| +ɹ V illuminate| +ɹ V dry| +ɹ̫ V illuminate| +ɹͼ V print|ӡˢ +ɹ N addictive|Ⱥ +ɺ N character|,(China|й) +ɺ N material|,?tool|þ,#decorate|װ,precious| +ɺ N stone|ʯ,material| +ɻ V cover|ڸ +ɻ N tool|þ,*cover|ڸ +ɼ N tree| +ɼľ N wood|ľ +ɽ N character|,surname|,human|,ProperName|ר +ɽ N land|½ +ɽ N shape| +ɽ N land|½ +ɽ N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ +ɽ N medicine|ҩ,(China|й) +ɽ N FlowerGrass| +ɽ軨 N FlowerGrass| +ɽ N place|ط,city| +ɽ N land|½ +ɽȹ N FlowerGrass| +ɽ N place|ط,village| +ɽ N FlowerGrass| +ɽ N facilities|ʩ,route|· +ɽ N medicine|ҩ +ɽ N land|½ +ɽ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɽ N part|,%land|½,head|ͷ +ɽ N part|,space|ռ,%land|½,head|ͷ +ɽ N human|,past| +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽ N shows| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,head|ͷ +ɽ N wind| +ɽ N land|½ +ɽˮ ADJ aValue|ֵ,duration|,TimeLong| +ɽˮ N phenomena|,#unfortunate|,undesired|ݬ +ɽˮԶ ADJ aValue|ֵ,distance|,far|Զ +ɽˮԶ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N music|,$sing| +ɽ N part|,%land|½,base| +ɽ N land|½ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽ N part|,%land|½,linear|,#water|ˮ +ɽˮɫ N attribute|,scene|,&inanimate| +ɽ N place|ط,#human|,country|,politics| +ɽ N place|ط,ProperName|ר,(China|й) +ɽ N fruit|ˮ +ɽ N place|ط,#country| +ɽ N water|ˮ,strong|ǿ,#land|½ +ɽ N physical| +ɽ N bird| +ɽ N part|,%land|½,body| +ɽ N waters|ˮ,linear| +ɽ N part|,%land|½,base| +ɽ N part|,%land|½,mouth| +ɽ N part|,%land|½,body| +ɽ N tree| +ɽ N part|,%land|½,body| +ɽ´ N part|,%land|½,base| +ɽ· N facilities|ʩ,route|· +ɽ N land|½ +ɽ N land|½ +ɽè N beast| +ɽë N tree| +ɽ N community|,religion|ڽ +ɽ N human|,agricultural|ũ +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽ N part|,%land|½,skin|Ƥ +ɽǽ N part|,%house| +ɽˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ɽˮ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ɽ N land|½ +ɽ N place|ط +ɽȪ N waters|ˮ,surfacial| +ɽȸ N bird| +ɽɫ N attribute|,scene|,&inanimate| +ɽɽˮˮ N attribute|,scene|,&inanimate| +ɽˮ N attribute|,scene|,&inanimate| +ɽˮ N image|ͼ,$draw| +ɽˮ N image|ͼ,$draw| +ɽˮ V BeNear| +ɽͷ N community|,undesired|ݬ +ɽͷ N facilities|ʩ,military|,space|ռ,#land|½ +ɽͷ N part|,%land|½,head|ͷ +ɽ N place|ط +ɽ N place|ط +ɽ N land|½ +ɽ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ɽ N shows| +ɽϵ N place|ط +ɽϿ N part|,%land|½,linear|,#water|ˮ +ɽ N place|ط,village| +ɽ N part|,%land|½,skin|Ƥ +ɽ N livestock| +ɽ N part|,%livestock|,hair|ë,?material| +ɽ N part|,%land|½,body| +ɽҩ N part|,%vegetable|߲,embryo|,$eat| +ɽҩ N vegetable|߲ +ɽ¥ N phenomena|,#unfortunate|,undesired|ݬ +ɽ N part|,%vegetable|߲,embryo|,$eat| +ɽ N vegetable|߲ +ɽ N land|½ +ɽկ N place|ط +ɽ亣ζ N food|ʳƷ,generic|ͳ +ɽׯ N house| +ɽ N part|,%earth|,mouth| +ɽ N land|½ +ɽ N fruit|ˮ +ɽ N tree| +ɽ N bird| +ɽ N beast| +ɾ V remove| +ɾ V remove| +ɾ V remove| +ɾͼ V compile|༭,means=subtract| +ɾ V MakeBetter|Ż +ɾ V compile|༭,means=subtract| +ɾ V subtract| +ɾں N symbol|,#text| +ɾȥ V remove| +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ V incite|ָʹ +ɿ ADJ aValue|ֵ,ability|,able|,incite|ָʹ +ɿ N human|,*persuade|Ȱ˵,undesired|ݬ +ɿ V incite|ָʹ + N clothing|,#body| + V CausePartMove| + V escape| + V illuminate| + V wounded| + V escape| + V wounded| + N thunder| +ʽ ADJ aValue|ֵ,behavior|ֹ,sudden| +ս N fact|,fight|,military| + V illuminate| + V escape| + V illuminate| + N lights| + N tool|þ,#TakePicture|,*illuminate| + N tool|þ,*illuminate|,#information|Ϣ + V attack|,manner=sudden|,military| +ս N fact|,fight|,military| + V escape| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + V illuminate| + V illuminate| + V SelfMoveInManner|ʽ + V escape| +ʧ N phenomena|,unfortunate|,undesired|ݬ +˸ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +˸ V illuminate| +˸ V KeepSilence|˵ + V appear|,manner=fast| +ҫ V illuminate| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N shows| + V BeAble|ܹ + V do|,manner=self| +ó V BeAble|ܹ +ְ V cease|ͣ,content=undertake|,manner=self| +Ȩ V control|,patient=power|,manner=self| + V do|,manner=self| + V do|,manner=self| + V ProvideFor| + ADJ qValue|ֵ,amount|,many|,desired| + V ProvideFor| + N expenditure|,*ProvideFor| + N food|ʳƷ,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ + N food|ʳƷ,place|ط,@reside|ס + V BeAble|ܹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ưո V do|,manner=willing|Ը +Ʊ N readings|,precious| +Ʊ N human|,*debate| +ƴ V WellTreat|ƴ +ƺ N result| +ƾ N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,religion|ڽ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N fact|,kindhearted|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N emotion|,kindhearted|,desired| + V BeAble|ܹ +ս V BeAble|ܹ,content=fight| + N place|ط,city|,ProperName|ר,(China|й) +ͷ N place|ط,city|,ProperName|ר,(China|й) + V incite|ָʹ + V shake|ҡ + N tool|þ,#wind|,*cool| +ȱ N fish| +ȳ N tool|þ,#crop|ׯ,generic|ͳ +ȶ V incite|ָʹ +ȶ V shake|ҡ +ȷ V MakeTrouble| +ȹ N part|,%tool|þ,#wind|,#cool|,bone| +Ȼ V incite|ָʹ + N tool|þ,#wind|,*cool| + N tool|þ,#wind|,*cool| + N shape| + N tool|þ,#wind|,*cool| + V copy|д + V repair| +д V copy|д + N attribute|,dampness|ʪ,&physical| + N attribute|,dampness|ʪ,&physical| + V damage| + N disease|,wounded| + V disgust| + V offend| + V sorrowful| +˰ N trace|,#wounded| +˱ V sorrowful| +˱ N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲Ա N human|,*wounded| +˲Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ +˲ V lose|ʧȥ,possession=wealth|Ǯ +˲ V disable|м +˲ N human|,*disable|м,undesired|ݬ +˷ V fever| +˷ ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +˸ ADJ aValue|ֵ,property|,AptTo|,#FeelingByBad| +˺ V damage| +˺ V offend| +˺ N disease| +˺ N human|,undesired|ݬ,*wounded| +˺ N trace|,#wounded| +˻ V sorrowful| +˽ N wounded| +˿ N location|λ,#disease|,#wounded| +Խ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N attribute|,circumstances|,&wounded|,#medical|ҽ + V damage|,patient=human| + V offend|,patient=human| + N attribute|,circumstances|,&wounded|,#medical|ҽ +캦 ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʹ N disease| + N phenomena|,wounded|,die|,undesired|ݬ +¹ N phenomena|,unfortunate|,wounded|,die|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + V sorrowful| +IJĿ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +Ա N human|,undesired|ݬ,military|,*wounded|,$cure|ҽ + N affairs|,commercial| + V discuss| + N human|,#occupation|ְλ,commercial| + N music| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̱ N mark|־,commercial| +̱귨 N law|ɷ,#mark|־,commercial| +̱Ȩ N rights|Ȩ,#mark|־,commercial| +̲ N place|ط,city|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̳ N community|,commercial| +̳ N InstitutePlace|,*sell|,@buy|,commercial| +̴ N ship|,commercial| +̴ N human|,#occupation|ְλ,official|,#ship| +̵ N InstitutePlace|,*sell|,@buy|,commercial| +̶ V decide|,means=discuss| +̶ V discuss| +̶ N human|,commercial| +̷ N law|ɷ,commercial| +̷ N human|,#occupation|ְλ,*sell|,commercial| +̸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +̺ N InstitutePlace|,*sell|,@buy|,commercial| +̻ N institution|,commercial| +̼ N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +̼ N human|,#occupation|ְλ,commercial| +̼ N fact|,*investigate|,#physical| +̼ N institution|,*investigate|,#physical| +̽ N community|,commercial| + V discuss| + N human|,commercial| +ó N affairs|,commercial| +IJ N character|,surname|,human|,ProperName|ר +Ʒ N artifact|˹,commercial|,generic|ͳ +Ʒ N building|,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ʒ N material|,?edible|ʳ,#crop|ׯ,generic|ͳ,commercial| +Ʒ N attribute|,property|,commercial|,&entity|ʵ +Ǣ V discuss| + N attribute|,environment|,&commercial| +ȶ V discuss| +ȶ V think|˼ + N human|,#occupation|ְλ,commercial| + N symbol|,#quantity| +̸ V discuss| + V discuss| + V think|˼ + N affairs|,commercial| + N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| +ܹ N human|,#occupation|ְλ,official|,diplomatic|⽻,#commercial| + N InstitutePlace|,*produce|,*sell|,industrial|,commercial| +ҵ ADJ aValue|ֵ,attachment|,commercial| +ҵ N affairs|,commercial| +ҵ N place|ط,commercial| + V discuss| + N attribute|,reputation|,&human|,&organization|֯ + V think|˼ + V FondOf|ϲ + V appreciate|޳ + V enjoy| + V grant| + V reward| +ʹ V grant| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͷ ADJ aValue|ֵ,SocialMode|,good|,desired| +ͼ V distinguish|ֱ,literature| +Ǯ N payment|,#commercial| +ʶ V FondOf|ϲ + V enjoy| + N fact|,*joyful|ϲ,desired| +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ѩ V enjoy|,content=RainSnow|ѩ + V enjoy|,content=celestial| + N time|ʱ + N time|ʱ,afternoon| +η N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + V GoForward|ǰ + V GoUp|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,time|ʱ,past| + V apply|ͿĨ + V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| + V climb|ʵ + V do| + V install|װ + N location|λ + V provide| + NUM qValue|ֵ,sequence|,ordinal| + V submit| + V tighten|ս + V undergo|,content=disseminate| + STRU {Vachieve|} + STRU {Vdirection|,upper|} + STRU {Vstart|} + ADV {range} + STRU {scope} +ϰװ V engage|,content=affairs|,#duty|,#sequence| +ϰ NUM qValue|ֵ,amount|,many| +ϰ V engage|,content=affairs|,#duty| +ϰ N human|,#occupation|ְλ,employee|Ա,*engage|,#affairs|,#duty| +ϰ볡 N fact|,compete|,sport|,InFront|ǰ +ϰ N time|ʱ,year|,half|,InFront|ǰ +ϰ N time|ʱ,morning| +ϰ N location|λ,%human|,body|,half|,upper| +ϰ N part|,%human|,body|,half|,upper| +ϰҹ N time|ʱ,day|,night|,half|,InFront|ǰ +ϰ N time|ʱ,month|,half|,InFront|ǰ +ϱ V tell| +ϱ V undergo|,content=disseminate| +ϱ N human|,clan| +ϱ N part|,%AnimalHuman|,arm| +ϱ N community|,official| +ϱ N part|,%entity|ʵ,aspect| +ϱ V become|Ϊ,descriptive=fat|,#animal| +ϱ N human|,*visit| +ϲ V BeUnable|,content=fulfil|ʵ +ϲȥ V BeUnable|,content=GoUp|ȥ +ϲȥ V BeUnable|,content=fulfil|ʵ +ϲ V provide|,possession=food|ʳƷ +ϲ N humanized| +ϲ V exercise| +ϲ N method|,superior|,desired| +ϲ N part|,%entity|ʵ +ϲ㽨 N system|ƶ +ϲ N organization|֯ +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=compete|,sport| +ϳ V arrive|,LocationFin=facilities|ʩ,purpose=perform|,entertainment| +ϳ V control|,patient=power| +ϳ V climb|ʵ,LocationFin=LandVehicle| +ϳ ADJ aValue|ֵ,quality|,superior|,desired| +ϴ V climb|ʵ,LocationFin=ship| +ϴ V sleep|˯ +ϴ N part|,%AnimalHuman|,mouth| +ϴ N human|,past| +ϵ V misunderstand| +ϵƭ V misunderstand| +ϵ V human|,*misunderstand| +ϵ V lighting|ȼ +ϵ V lighting|ȼ,patient=tool|þ +ϵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ϵȱ N human|,military| +ϵ N humanized| +ϵ V suicide|ɱ +ϵ V BecomeMore|,#price|۸ +ϵ V dispatch|Dz,#human| +ϵ V transport|,#artifact|˹,#fund|ʽ +϶ V StateChange|̬,#cool| +Ϸ N aValue|ֵ,direction|,upper| +Ϸ N weapon|,royal|,mark|־ +Ϸ N room| +Ϸ V accuse|ظ +Ϸɻ V climb|ʵ,LocationFin=aircraft| +Ϸ V condole|° +Ϸ V provide|,possession=material|,#crop|ׯ +Ϸ N attribute|,property|,good|,&entity|ʵ +Ϸ N direction| +ϸ V engage|,content=affairs|,#duty| +ϸ V accuse|ظ +ϸ N time|ʱ,week|,past| +ϸ N time|ʱ,month|,past| +Ϲ V engage|,content=affairs|,#duty| +Ϲ V entice|,means=GiveAsGift|,crime| +Ϲ V salute|¾,means=provide| +Ϲ V bite|ҧ,sport| +Ϲ V misunderstand| +Ϲ N time|ʱ,past| +Ϲ N character|,surname|,human|,ProperName|ר +Ϲ V brighten|ʹ +Ϲ V prosper| +Ϻ N place|ط,city|,ProperName|ר,(China|й) +Ϻ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ϻ N part|,%AnimalHuman|,viscera| +ϺȾ N disease| +ϻ V angry| +ϻ V ill|̬,medical|ҽ +ϻ V enrich|ʵ,material=artifact|˹,commercial| +ϻ V enrich|ʵ,patient=furniture|Ҿ,commercial| +ϼ N community|,official| +ϼ N part|,%army| +ϼ N community|,official| +ϼ쵼 N community|,official| +ϼ˾ N part|,%army| +ϼָӹ N human|,official|,military| +ϼ N method|,superior|,desired| +Ͻ N human|,#occupation|ְλ,official|,military| +Ͻ V apply|ͿĨ,material=liquid|Һ,industrial| +Ͻ V submit| +Ͻ V submit| +Ͻ V LeaveFor|ǰ,LocationFin=facilities|ʩ +Ͻ ADJ aValue|ֵ,sequence|,InFront|ǰ +Ͻ V prosper| +Ͻ N aspiration|Ը,expect|,#MakeBetter|Ż +Ͼ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͽ V study|ѧ,content=affairs|,education| +Ͽ V study|ѧ,education| +Ͽ V teach|,education| +Ͽ ADJ aValue|ֵ,location|λ,upper| +Ͽ ADJ aValue|ֵ,content|,easy|,desired| + V apply|ͿĨ,material=material|,industrial| + V GoUp|ȥ + STRU {Vdirection|,upper|} + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| + N part|,%waters|ˮ + N organization|֯ +¥ V climb|ʵ,LocationFin=part|,#building| +¥ V climb|ʵ,LocationFin=part|,#building| +· V start|ʼ,content=leave|뿪 + V GoUp|ȥ,LocationFin=livestock| + V begin|ʼ + V shut|ر + V visit| + N community|,official| + N part|,%entity|ʵ,aspect| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,past|,year| + ADJ aValue|ֵ,age|,aged| +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N disease| +Ƥ֯ N part|,%AnimalHuman|,skin|Ƥ +Ʒ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +· N attribute|,outlook|ǰ,good|,desired|,&situation|״ +· N facilities|ʩ,route|· + N location|λ,space|ռ + V pant| +ǧ NUM qValue|ֵ,amount|,many| +ǰ V approach|ӽ +ȥ V GoUp|ȥ +ȥ STRU {Vdirection|,upper|} +Ȧ׶ V misunderstand| + V undertake|,content=official| +ɫ V AlterColor|ɫ +ɫ ADJ aValue|ֵ,rank|ȼ,superior|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,all|ȫ + N clothing|,#body|,generic|ͳ + N part|,%AnimalHuman|,body|,half|,upper| + N sound|,#language| + V BecomeMore| + V rise| +ʿ N human|,#occupation|ְλ,military| + V appear|,location=InstitutePlace|,commercial| + V know|֪ + N location|λ,HighRank|ߵ + V start|ʼ + V tell| + ADJ aValue|ֵ,kind|,special| +˰ V pay|,possession=expenditure|,commercial| +˾ N human|,official| + V accuse|ظ,police| + N human|,*accuse|ظ,police| + V worth|ֵ + ADJ aValue|ֵ,age|,aged| + V fix|ס +̨ V appear|,location=facilities|ʩ,entertainment| +̨ V control|,content=power|,politics| +̨ V obtain|õ,possession=power|,politics| + N part|,%AnimalHuman|,mouth| + V undergo|,content=feed|ι,military| + V misunderstand| + N part|,%AnimalHuman|,body|,half|,upper| + N humanized| + V rise|,LocationFin=celestial| +ͷ N community|,official| +ͷ N part|,%entity|ʵ,aspect| + V engage|,content=affairs|,#duty|,#sequence|,night| +ξ N human|,#occupation|ְλ,official|,military| +ֶ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(the Upper Volta|ֶ) +ֶ N place|ط,country|,ProperName|ר + N time|ʱ,morning| + N human|,#age|,mass| + N human|,#clan|,mass| + N human|,#rank|ȼ,mass| +´ V look| + V deceive|ƭ + V do|,content=crime|,crime| + N text| + N attribute|,boundary|,&entity|ʵ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +У N human|,#occupation|ְλ,official|,military| + N time|ʱ,week|,past| +ڶ N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| + N time|ʱ,day|,#week|,past| +һ N time|ʱ,day|,#week|,past| + V punish|,police| + ADJ aValue|ֵ,direction|,upper| +Ч V imitate|ģ +ѧ V engage|,content=study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + V perform|,entertainment| + V rise| +ҹ V engage|,content=affairs|,#duty|,#sequence|,night| + N clothing|,#body|,generic|ͳ + V MoveItUp| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) +ӳ V perform|,content=shows|,entertainment| + N aValue|ֵ,location|λ + N location|λ,%waters|ˮ + N part|,%waters|ˮ + N time|ʱ,month|,past| + V engage|,content=affairs|,#duty|,#sequence|,morning| + V BecomeMore|,commercial| + V rise| + V engage| + V engage|,content=fight|,military| +֫ N part|,%human|,limb|֫ + N time|ʱ,week|,past| +װ V MakeUp|ױ,entertainment| +װ N clothing|,#body|,generic|ͳ + N location|λ,space|ռ + N part|,%AnimalHuman|,mouth|,upper| + N part|,%AnimalHuman|,mouth|,upper| + N character|,surname|,human|,ProperName|ר + V respect| + ADV {Vcontinue|} +в ADJ aValue|ֵ,ability|,unable|ӹ,kill|ɱ +д V unfixed|δ +з N weapon|,royal|,mark|־ + ADV {emphasis|ǿ} +δ ADV {neg|,past|} + N clothing|,#leg|,female|Ů + N part|,%inanimate|,head|ͷ + N part|,%plant|ֲ,head|ͷ +ҹ N human|,*drive|Ԧ,#ship| + V transport| +Ӵ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +ӻ V disseminate|,content=information|Ϣ +ӽ V transport| +Ŷ V disseminate|,content=information|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ʤһ V surpass|ǿ,degree=ish| +΢ ADV aValue|ֵ,degree|̶,ish| +Ϊ ADV aValue|ֵ,degree|̶,ish| +Ϣ V rest|Ϣ + ADV aValue|ֵ,degree|̶,ish| +ѷһ ADJ inferior|,degree=ish| +ݼ ADJ aValue|ֵ,duration|,TimeShort| + V WarmUp| + V burn| + V cook| + V fever| +ձ N tool|þ,cubic|,@put|,*WarmUp| +ձ N food|ʳƷ +ջ V burn| +ջ V burn|,agricultural|ũ +ջ V destroy| +ջ V lighting|ȼ +ռ N food|ʳƷ +ռ N chemical|ѧ +վ N drinks|Ʒ,$addict|Ⱥ + V produce|,literature| + V wounded| + V burn|,patient=tool|þ +ĵ N weapon|,*lighting|ȼ + V burn| + N character|,(China|й) +ҩ N FlowerGrass| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,surname|,human|,ProperName|ר +ع N time|ʱ,#young| +ع N time|ʱ,beautiful| +ػ N time|ʱ,#young| +ػ N time|ʱ,beautiful| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,age|,young| + V cease|ͣ + V lack|ȱ + V lose|ʧȥ + ADJ qValue|ֵ,amount|,few| +ٰ EXPR expression|,*soothe|ο +ٰͷ N human|,young| +ٲ ADJ aValue|ֵ,importance|,important| +ٲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ٲ ADJ aValue|ֵ,importance|,important| +ٴ V wait|ȴ,duration=TimeShort| +ٵÿ ADJ qValue|ֵ,amount|,few| +ٶ N human|,young| +ٸ N human|,female|Ů,adult|,#GetMarried| +ٺ V wait|ȴ,duration=TimeShort| +ټ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +ٽ N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| + N human|,family|,female|Ů,adult| + N human|,female|Ů,adult| + N human|,young|,male| + N human|,young| +ͯ N human|,young| +그 N human|,crime|,young|,undesired|ݬ +깬 N InstitutePlace|,#young|,@recreation| +ϳ ADJ aValue|ֵ,ability|,able|,desired| +ϳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ů N human|,female|Ů,young| +ʱ ADV aValue|ֵ,duration|,TimeShort| + ADJ qValue|ֵ,amount|,few| + N community| +ξ N human|,#occupation|ְλ,official|,military| +ȶ N community|,#young| +ȶԱ N human|,%community|,#young| +У N human|,#occupation|ְλ,official|,military| + ADJ qValue|ֵ,amount|,few| +ү N human|,family|,male|,young| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż +׳ ADJ aValue|ֵ,age|,adult| + V cry|,#bird| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N sound|,#bird| + N tool|þ,*MakeSound| +ڱ N human|,military|,*look|,*defend| +ڿ N part|,%place|ط,mouth| + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N tool|þ,*MakeSound| + N character|,surname|,human|,ProperName|ר + V explain|˵ +˾ N drinks|Ʒ,$addict|Ⱥ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ݳƷ N physical|,extravagant| +ݻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + N aspiration|Ը + V expect|,manner=extravagant| + N aspiration|Ը + V OnCredit| +޹ V buy|,manner=OnCredit| +Ƿ V OnCredit| + V sell|,manner=OnCredit| + N beast| + N FlowerGrass|,?medicine|ҩ +Ы N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,form|״,curved|,linear| + V crawl| + N thing|,redundant| + N part|,%AnimalHuman|,mouth| + N shape| +ִ V HungryThirsty| + N sound|,#language| + N sound|,#language| +̦ N physical| +ͷ N human|,military|,#information|Ϣ,$catch|׽ס +ͷ N part|,%AnimalHuman|,mouth| +ս V debate| +״ ADJ aValue|ֵ,form|״ +״ N FlowerGrass| + ADJ aValue|ֵ,kind|,firstPerson| + V abandon| + V donate| + N facilities|ʩ,space|ռ,@foster|,#livestock| + N house| +᱾ĩ V WorthNot|ֵ +᲻ V grudge| + V GrudgeNot| +Ἲ V endeavour| + N human|,*supervise|,#reside|ס +Զ V WorthNot|ֵ + N part|,%human|,bone|,religion|ڽ + V abandon| + N human|,family| + V endeavour| + V endeavour| + N human|,friend|,#reside|ס + V remove|,police| + V remove|,police| + V TakePicture| + V consume|ȡ + V handle| +㻤 N part|,%AnimalHuman|,nerve| +㻤ٷʴ N disease| +㻤 N disease| +¼ V TakePicture| + N tool|þ,*measure| +ȡ V TakePicture| +ȡ V consume|ȡ + V maintain|,patient=BeWell|׳ + ADJ aValue|ֵ,standard|׼,#temperature|¶ +϶ ADJ aValue|ֵ,standard|׼,#temperature|¶ + V TakePicture| + N tool|þ,*TakePicture|,#shows| +Ӱ V record|¼,content=image|ͼ,entertainment| +Ӱ N tool|þ,*TakePicture| +Ӱ N human|,#occupation|ְλ,*TakePicture|,#news| +Ӱ N facilities|ʩ,space|ռ,@TakePicture|,#shows| +Ӱʦ N human|,#occupation|ְλ,*TakePicture| +Ӱ N facilities|ʩ,space|ռ,@TakePicture| +Ӱչ N fact|,display|չʾ,#image|ͼ,#TakePicture| + V control|,content=power|,politics| + V produce|,entertainment| + V firing| + V jet| + V shoot| + N attribute|,distance|,firing|,&weapon| + V firing| + N facilities|ʩ,space|ռ,#weapon|,@AimAt|,@firing| +ָ N part|,%army| +ָ N part|,%army| + V firing|,patient=weapon| +侫 V excrete|й + N inanimate|,generic|ͳ,liquid|Һ + V shoot|,sport| + N human|,*shoot|,sport| +Ƶ N attribute|,frequency|Ƶ,&shoot| + N human|,*firing| + N human|,*shoot|,sport| + N lights| + V fear| + V defeat|սʤ + V surrender| + V relate|й + V undergo| + V walk| +漰 V relate|й + V read| + N bird| + V obtain|õ,possession=experience| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V relate|й,partner=affairs|,diplomatic|⽻ + V relate|й,crime| + V engage| + N community|,generic|ͳ + N institution| + N institution|,generic|ͳ + ADJ aValue|ֵ,attachment|,organization|֯ + N organization|֯ +ᱣ N affairs|,#guarantee|֤,commercial| +ᱣϻ N system|ƶ,#guarantee|֤,commercial| +ᱣƶ N system|ƶ,#guarantee|֤,commercial| +Ƹ N wealth|Ǯ +İ N attribute|,circumstances|,peaceful|,&country| +λ N attribute|,status|,&human| + N attribute|,SocialMode|,&organization|֯ +ḣ N fact|,#organization|֯,help| +Ṥ N affairs|,$undertake| +ϵ N attribute|,relatedness|,&human| +ữ V ize|̬ + N affairs|,$undertake| +ᾭ ADJ aValue|ֵ,attachment|,organization|֯,commercial| +ѧ N knowledge|֪ʶ +ѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N human|,desired|,able|,glorious| +ɳ N human|,*like|ϧ,country|,undesired|ݬ +ʹ N human|,desired|,glorious| +Ч N attribute|,effect|Ч,&act|ж +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,attachment|,organization|֯,politics| +ƶ N system|ƶ,politics| +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +м N human|,desired|,important|,able| + N system|ƶ + N human| +罻 V associate| +罻 N human|,*associate|,desired|,able|,glorious| +罻 N attribute|,performance|,associate|,&organization|֯,&human| +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N text|,estimate| + N place|ط,#community| + N community| +ŷ N community| +Ա N human|,#institution| + N place|ط,#human|,country|,politics| + V establish| + V forming|γ + CONJ {condition|} +豸 N machine|,generic|ͳ +豸ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +趨 V establish| +跨 V try| + V defend|,military| + V hide| + CONJ {condition|} + V forming|γ,PatientProduct=plans|滮 + N plans|滮 + V plan|ƻ +ʦ N human|,#occupation|ְλ,*plan|ƻ +ʦ N human|,*plan|ƻ +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ + N human|,#occupation|ְλ,*plan|ƻ +۶ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V establish| + V hide| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + CONJ {condition|} +ɫ V AlterColor|ɫ + V guess|²,content=circumstances| +ʩ N facilities|ʩ,generic|ͳ +ʹ CONJ {condition|} + V guess|² + N thought|ͷ + V entertain|д + V entertain|д,ResultEvent=eat| +Ӫ V reside|ס,military| +Ӫ N place|ط,@reside|ס,military| + V install|װ + V choose|ѡ,content=place|ط,#entertain|д + N chemical|ѧ + N character|,surname|,human|,ProperName|ר + V express|ʾ +걨 V tell| +걨 V tell|,commercial| + V debate| + V debate|,police| + V ExpressAgainst|Ǵ + V express|ʾ + V request|Ҫ + N human|,*request|Ҫ + N document|,*request|Ҫ + N shows| +ʱ N time|ʱ,hour|ʱ + V explain|˵ +˵ V explain|˵ + V accuse|ظ,police| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ,politics| + N character|,surname|,human|,ProperName|ר +л V thank|л +ѩ V amend|,content=wrong| +ԩ V amend|,content=wrong| + V ExpressAgainst|Ǵ + V persuade|Ȱ˵ + N character|,(China|й) + V MakeSound| + V CausePartMove| + V enlarge| +Ԯ V help| +Ԯ V rescue| + V CausePartMove|,PatientPartof=body| + V CausePartMove|,PatientPartof=hand| + V request|Ҫ,ResultEvent=help| + V CausePartMove| + ADJ aValue|ֵ,ability|,able|,CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| + V CausePartMove|,PatientPartof=leg| +ѩ V amend|,content=wrong| + V CausePartMove|,PatientPartof=body| +ԩ V amend|,content=wrong| +չ V CausePartMove| +չ V enlarge| +չ V unfold|̯ +չ ADJ aValue|ֵ,ability|,unable|ӹ,$enlarge| + V endorse|ӵ + V endorse|ӵ,content=fair| + CLAS NounUnit|,&clothing| + N attribute|,behavior|ֹ,&human| + N part|,%AnimalHuman|,body| + N part|,%physical|,%organization|֯,body| + PRON {self|} + V unfortunate|,scope=disgraced| + N attribute|,physique|,&AnimalHuman| + N part|,%AnimalHuman|,body| +ɼ V depend| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,height|߶,&human| + N attribute|,posture|,&animate| + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +ֲ ADJ aValue|ֵ,status|,unfixed|δ + N attribute|,behavior|ֹ,stately|ׯ,&human| + N attribute|,status|,&human| +֤ N document|,*prove|֤,#status| + N attribute|,height|߶,&human| + V die| + V time|ʱ,#die| + V pregnant| + N attribute|,status|,&human| +Ӹλ N human|,HighRank|ߵ +侳 V undergo|,content=circumstances| + N attribute|,height|߶,&human| +ǿ׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%AnimalHuman|,body| + N location|λ,%human|,body| + N experience| + N phenomena| + N attribute|,ability|,&animate| + V undergo| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| +彡׳ N human|,physique|,strong|ǿ,desired| +ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V endeavour| +ǰҹƵ N human|,*display|չʾ + N attribute|,physique|,&human| + V die| +޷ ADJ aValue|ֵ,richness|ƶ,poor| +ʿ V guide| + V suffer|,content=detain|ס,#police| + N part|,%AnimalHuman|,body|,mental| +Ӱ N trace|,#body| + V pregnant| + V PutOn| + N attribute|,posture|,&AnimalHuman| + N part|,%AnimalHuman|,body| + N pregnant| +ӹǶ N attribute|,physique|,&human| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,earliness|,late| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,content|,profound|,desired| +ͬ V ShowEmotion|ʾ,content=pity| +ɲ ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + ADJ aValue|ֵ,behavior|ֹ,steady| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,hue|Ũ,NotLight|Ũ + N emotion|,hate|,undesired|ݬ + N location|λ,internal|,space|ռ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,content|,&information|Ϣ + N attribute|,depth|,&physical|,#cubic| +ʹ V hate| +ҹ N time|ʱ,day|,night| + N facilities|ʩ,space|ռ,military|,@hide|,#fight| + ADJ aValue|ֵ,range|,extensive| + N room|,#female|Ů,@reside|ס + N waters|ˮ,surfacial| + N attribute|,color|ɫ,red|,&physical| +ɫ ADJ aValue|ֵ,color|ɫ,red| + ADJ aValue|ֵ,content|,profound|,desired| + V respire| + V MakeBetter|Ż +ĸ V MakeBetter|Ż,patient=improve| +ɫ ADJ aValue|ֵ,color|ɫ,yellow|,NotLight|Ũ + N attribute|,relatedness|,&human| + V investigate|,manner=attentive|ϸ + ADJ aValue|ֵ,content|,profound|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,blue|,NotLight|Ũ +ɫ N attribute|,color|ɫ,blue|,&physical| +ıԶ V think|˼,manner=profound| +dz N attribute|,depth|,&physical| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,degree|̶,very| + N emotion|,love|,desired| + N emotion|,friend|,desired| + N emotion|,friend|,desired| + N time|ʱ,autumn|,ending|ĩ + V GoInto| + ADJ aValue|ֵ,range|,all|ȫ +dz ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ɽ N land|½ + ADV aValue|ֵ,degree|̶,very| + V undergo|,content=accept| +ܸж V excited| +ˮ N waters|ˮ,deep| +ˮ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ +ˮը N weapon| +˼ V think|˼ +˼ V think|˼ +˼ N human|,*think|˼ +ͨʵ N human|,ability|,able|,desired| + V believe|,manner=very| +Ų V believe|,manner=very| +ҹ N time|ʱ,night| + N thinking|˼,profound| +Ԩ N waters|ˮ,deep| +Զ ADJ aValue|ֵ,content|,profound|,desired| + V study|ѧ,education| +տ ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,circumstances|,urgent| + V BeAble|ܹ + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,depth|,deep| + N human|,HighRank|ߵ + N tool|þ,linear|,*fasten|˩ +ʿ N human|,HighRank|ߵ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,bearing|̬,&AnimalHuman| + N humanized| + N mental| + N attribute|,demeanor|,&human| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ʹ N fact|,*fit|ʺ +û ADJ appear|,manner=secret| + N human|,religion|ڽ + N human|,religion|ڽ +񹤹 ADJ aValue|ֵ,quality|,refined|,desired| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N place|ط,city|,ProperName|ר,(Japan|ձ) + N text|,humanized| +񻰰 ADJ aValue|ֵ,kind|,queer| + N mental| + N part|,%AnimalHuman|,nerve| +񾭲 N disease|,#mad| +񾭲ר N human|,medical|ҽ,*cure|ҽ +񾭴 N disease|,#mad| +񾭹֢ N disease| +ĩ N part|,%AnimalHuman|,nerve| +ʹ N disease| +Ƥ N disease| +ѧ N human|,medical|ҽ,*cure|ҽ + N disease| + N mental|,uneasy| + V uneasy| + N part|,%AnimalHuman|,nerve| + N attribute|,strength|,strong|ǿ,&human| + N humanized| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,content|,profound| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N humanized| +Ů N humanized|,female|Ů + N human|,*firing|,able| + N human|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,bearing|̬,strong|ǿ,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V show|,content=arrogant| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʮ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǹ N human|,*firing|,able| + N attribute|,bearing|̬,&AnimalHuman| + N material|,?medicine|ҩ +ɫ N attribute|,bearing|̬,&AnimalHuman| + N facilities|ʩ,space|ռ,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥַ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +˼ N mental| + ADJ aValue|ֵ,similarity|ͬ,alike| + ADJ aValue|ֵ,speed|ٶ,fast| +̬ N attribute|,countenance|,&AnimalHuman| +ͨ N attribute|,ability|,&animate| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͯ N human|,young|,wise|,desired| + V expect| + N attribute|,strength|,&human|,&organization|֯ + N humanized| + N image|ͼ,$draw|,#humanized| +ѧ N knowledge|֪ʶ,religion|ڽ +ѧʿ N human|,religion|ڽ +ҽ N human|,*cure|ҽ,medical|ҽ,able| + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,demeanor|,beautiful|,desired|,&human| +ְԱ N human|,#occupation|ְλ,religion|ڽ +־ N mental| + N place|ط,country|,ProperName|ר,(China|й) + N facilities|ʩ,religion|ڽ + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + V check| + V interrogate|,police| + V know|֪ + V check| +Ա N human|,*investigate| + V check| + V amend| + V estimate| + V check|,content=readings| + V check| + V check|,commercial| +Ƴ N human|,#occupation|ְλ,official|,*check|,commercial| +Ʒ N law|ɷ +ƾ N part|,%institution|,*check|,commercial| + N part|,%institution|,*check|,commercial| +Ա N human|,#occupation|ְλ,*check|,commercial| + V judge|ö,police| + V understand|,content=beautiful| + N thinking|˼,*understand|,#beautiful| + V judge|ö,police| +г N human|,#occupation|ְλ,official|,*judge|ö,#crime|,police| +д N fact|,judge|ö,#crime|,police| +л N institution|,*judge|ö,#crime|,police| +ǰ ADJ aValue|ֵ,time|ʱ,#police| +Ȩ N rights|Ȩ,*judge|ö,#crime|,police| +ͥ N institution|,*judge|ö,#crime|,police| +Ա N human|,#occupation|ְλ,*judge|ö,#crime|,police| + V check| + V estimate| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʱ V estimate|,manner=correct|ȷ + V look|,manner=attentive|ϸ + V interrogate|,police| +У V amend| +Ѷ V interrogate|,police| + V discuss| + V think|˼ + V check| + N human|,family|,female|Ů + N human|,female|Ů,adult| +ĸ N human|,family|,female|Ů + N human|,family|,female|Ů + ADV aValue|ֵ,degree|̶,very| + ADJ aValue|ֵ,kind|,question| + V surpass|ǿ + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} +ô ADJ aValue|ֵ,kind|,question| +Ϊ ADV aValue|ֵ,degree|̶,extreme| + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + ADV {emphasis|ǿ} + CONJ {emphasis|ǿ} + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| +ʯ N disease| +ʯ N disease|,#viscera| + N part|,%AnimalHuman|,nerve| + N medicine|ҩ +´ N disease| + N disease| + N part|,%AnimalHuman|,viscera| + N disease| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V soak| + N part|,%building| +© V leak|© + V GoInto| + V influence|Ӱ +ˮ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +͸ N fact|,soak| +͸ V influence|Ӱ +͸ V leak|© +͸ N army| +͸ N attribute|,ability|,drain|ų,#liquid|Һ +͸ѹ N attribute|,strength|,&entity|ʵ +͸ N human|,*influence|Ӱ + CLAS NounUnit|,&sound| + N attribute|,SoundVolume|,#AnimalHuman| + N attribute|,SoundVolume|,&sound| + N attribute|,reputation|,&human|,&organization|֯ + N sound| + N sound|,#language| + V debate| + N sound| + V announce| + N part|,%AnimalHuman|,#MakeSound| + N part|,%tool|þ,#shows| + N attribute|,SoundVolume|,&sound| + V MakeMisunderstand|ʹ֪ + ADJ aValue|ֵ,performance|,#sound|,$control| + N music| + V weep| + N part|,%AnimalHuman|,#MakeSound| + V announce| + N attribute|,reputation|,&human|,&organization|֯ +Ǽ ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ + N method|,#sound|,*scout| +ɱ N human|,military|,#sound| + N attribute|,SoundVolume|,#AnimalHuman| + N information|Ϣ +ɫ N attribute|,countenance|,&human| +ɫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,&event|¼ +ƺƴ ADJ aValue|ֵ,quality|,strong|ǿ,desired| + N attribute|,speed|ٶ,&sound| + V ExpressAgainst|Ǵ + N attribute|,reputation|,&human|,&organization|֯ + N attribute|,reputation|,&human|,&organization|֯ +Ϣ N information|Ϣ +Ϣ N sound| + N sound| +ѧ ADJ aValue|ֵ,attachment| +ѧ N knowledge|֪ʶ,#sound| +ѧ N human|,#knowledge|֪ʶ,#sound| + V announce| + N sound| + N sound|,#AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ +Ԯ V help| +ѧ N knowledge|֪ʶ,#language| + V reveal|¶ + V GiveBirth|,medical|ҽ + V SufferFrom| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,^cook| + ADJ aValue|ֵ,physique|,unripe| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + V alive| + N attribute|,circumstances|,&human| + N attribute|,strength|,&animate|,&organization|֯ + V exist| + N fact|,exist| + V grow|ɳ + V happen| + N human|,*study|ѧ,education| + N human|,male|,*perform|,entertainment| + V lighting|ȼ +Ӳ V imitate|ģ +Ӳ V imitate|ģ,manner=stiff| + V ill|̬,medical|ҽ + V earn|׬,possession=wealth|Ǯ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V GiveBirth|,medical|ҽ + V produce| +λ N part|,%organization|֯,*produce|,*build|,industrial| +ʣ N quantity|,amount|,over|,&inanimate| + N attribute|,ability|,&produce| + N attribute|,ability|,&produce| + N quantity|,amount|,&produce|,industrial| + N human|,*produce| + N inanimate|,generic|ͳ + V grow|ɳ + N location|λ,#grow|ɳ + N medicine|ҩ + N time|ʱ,#grow|ɳ + N medicine|ҩ + N time|ʱ,day|,@ComeToWorld| + ADJ aValue|ֵ,ability|,able|,create| + V create| + V eat|,^cook| + N expression| + V alive| + V exist| + N attribute|,ability|,*MakeLiving|ı,&animate|,&organization|֯ +Ȩ N rights|Ȩ,*alive| + N FlowerGrass|,?medicine|ҩ + N land|½,desolate| +ػ N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V grow|ɳ + V grow|ɳ,experiencer=hair|ë + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ +Һ N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + N tool|þ,*resume|ָ,#hair|ë,#MakeUp|ױ + V catch|׽ס + N human|,family|,male| + V exist| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V alive| + N land|½,desolate| + V alive| + N attribute|,circumstances|,&human| +Ʒ N artifact|˹,#alive|,$need|,necessary|Ҫ,generic|ͳ + N expenditure| + N fact|,#alive| +ˮƽ N attribute|,quality|,&CauseToLive|ʹ +ˮƽ N attribute|,quality|,&CauseToLive|ʹ,#wealth|Ǯ + N artifact|˹,generic|ͳ + V lighting|ȼ,patient=fire| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,circumstances|,&human| + N method|,*earn|׬,*alive| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,source|Դ,original|ԭ +Ӳק ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ӳק V pull|,manner=rash|ç + ADJ aValue|ֵ,duration|,TimeLong| +ϲ N time|ʱ,process|,@alive| + ADJ aValue|ֵ,physique|,^cook| + V farewell| + N attribute|,performance|,&human| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ˮ N liquid|Һ,?medicine|ҩ + N army| + N attribute|,strength|,new|,&physical| + N human|,mass| +Ϳ̿ V unfortunate| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +· N method|,*earn|׬,*alive| +췹 V fixed|Ѷ + N attribute|,strength|,&animate|,&organization|֯ + N attribute|,strength|,&animate|,&organization|֯ + N part|,%entity|ʵ,heart| +ĸ N human|,family|,female|Ů + V fear| +ơ N drinks|Ʒ,$addict|Ⱥ +Ƨ ADJ aValue|ֵ,kind|,queer| +ƽ N time|ʱ,process|,@alive| + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ + V angry| + N attribute|,strength|,&animate|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ǰ ADV aValue|ֵ,time|ʱ,InFront|ǰ,#alive| + V catch|׽ס +Ȥ N emotion|,joyful|ϲ,desired| + N human| + N time|ʱ,day|,@ComeToWorld|,$congratulate|ף +ɫ V MakeBetter|Ż +ɬ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ɱ ADJ aValue|ֵ,power|,strong|ǿ +ĸ N human|,family| +ʯ N stone|ʯ,?material| +ʯ N stone|ʯ,?material| + N human|,unable|ӹ + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ˮ N water|ˮ +˿ N material|,?clothing|,?tool|þ + ADJ aValue|ֵ,importance|,important| + N fact|,alive|,die| + N fact|,alive|,die| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,importance|,important| +̬ N attribute|,circumstances|,&animate| +̬ƽ N attribute|,circumstances|,&animate| +̬ѧ N knowledge|֪ʶ +̬ѧ N human|,#knowledge|֪ʶ + N metal|,material| + N stone|ʯ +̻ V study|ѧ,manner=stiff| + ADJ aValue|ֵ,attachment| + N animate|,generic|ͳ + N fact|,*control|,#animate| +ﻯѧ N knowledge|֪ʶ + N chemical|ѧ +Ĥ N material| +Ȧ N animate|,generic|ͳ + N animate|,generic|ͳ +ѧ N knowledge|֪ʶ,#animate| +ѧ N human|,#knowledge|֪ʶ + N attribute|,speed|ٶ,&animate| +Ϣ V alive| +Ϣ V own|,possession=fund|ʽ +Ф N attribute|,kind|,&human| +Ч V function| + N attribute|,behavior|ֹ,&AnimalHuman| + V OutOfOrder| + N attribute|,occupation|ְλ,&human| + N process|,#alive|,#engage| + V GiveBirth|,medical|ҽ + V doubt| + N affairs|,#buy|,#sell|,commercial| +⾭ N method|,#buy|,#sell|,commercial| + N human|,#occupation|ְλ,commercial| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N material|,?food|ʳƷ + V GiveBirth|,medical|ҽ + V forge|α +ֳ V GiveBirth|,medical|ҽ +ֳ ADJ aValue|ֵ,attachment|,#GiveBirth| +ֳ N part|,%AnimalHuman|,viscera|,*mating| +ֳ N part|,%AnimalHuman|,viscera|,*mating| + N livestock| + N part|,%livestock|,body| + N human|,family|,male| +Ů N human|,family|,female|Ů + N livestock| + N tool|þ,#livestock|,*salute|¾ + N livestock| + N livestock| + V BecomeMore| + V appear| + V lift| + V rise| + CLAS unit|λ,&volume|ݻ + V upgrade| + V rise| + V rise| + V upgrade| + V undergo|,content=upgrade| + V StateChange|̬,StateFin=gas|,industrial| + V prosper| + V refine| + V upgrade| + V rise| + N part|,%aircraft|,*lift| + N machine|,*lift| + V rise|,LocationFin=sky| +ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V lift|,patient=tool|þ +ʽ N fact|,lift|,#tool|þ + V appear| +Ǩ V undergo|,content=upgrade| + V rise| +ѧ V upgrade|,#education| +ѹ V BecomeMore|,scope=voltage|ѹ +ֵ V BecomeMore|,scope=value|ֵ,commercial| + N tool|þ,linear|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N tool|þ,route|· +֮Է V CauseToDo|ʹ,ResultEvent=$punish|,police| + N tool|þ,linear|,*fasten|˩ +ʡ V check| +ʡ V discharge| +ʡ V economize|ʡ +ʡ V know|֪ +ʡ N place|ط,provincial|ʡ +ʡ N human|,official|,#provincial|ʡ +ʡ N place|ط,city|,#provincial|ʡ +ʡԼ V economize|ʡ +ʡ V escape| +ʡ N place|ط +ʡ N place|ط +ʡ N attribute|,rank|ȼ,&entity|ʵ +ʡ N place|ط +ʡ V economize|ʡ,patient=strength| +ʡ V discharge| +ʡ V SayHello|ʺ +ʡȥ V discharge| +ʡȴ V economize|ʡ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʡ V check| +ʡ V investigate| +ʡ V visit| +ʡί N institution|,politics|,(China|й) +ʡ V know|֪ +ʡ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʢ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢ N character|,surname|,human|,ProperName|ר +ʢ V contain| +ʢ V exist| +ʢ V load|װ +ʢ ADJ qValue|ֵ,amount|,many|,desired| +ʢ V exist|,manner=many| +ʢ V undergo|,$disseminate|,manner=extensive| +ʢ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ʢıʽ N fact|,check|,#army|,military| +ʢ N fact|,congratulate|ף,stately|ׯ +ʢ N clothing|,generic|ͳ +ʢ N fact|,stately|ׯ +ʢһʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʢ V pregnant| +ʢ N phenomena|,stately|ׯ +ʢǰ N phenomena|,stately|ׯ +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ N tool|þ,cubic|,@put|,generic|ͳ +ʢ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ʢ N emotion|,generous|,desired| +ʢ N time|ʱ,autumn| +ʢ N time|ʱ,flourishing|,desired| +ʢ N fact|,stately|ׯ +ʢ N time|ʱ,season|,hot| +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ˥ N attribute|,effect|Ч,&human|,&organization|֯ +ʢ N time|ʱ,summer| +ʢļ N time|ʱ,summer| +ʢʱ N time|ʱ,summer| +ʢ ADJ aValue|ֵ,circumstances|,flourishing| +ʢ N attribute|,reputation|,glorious|,&human|,&organization|֯ +ʢ V praise|佱 +ʢװ ADJ aValue|ֵ,attire|װ,stately|ׯ,desired| +ʢװ N clothing| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ʣ N part|,%physical|,*surplus|ʣ +ʣ V surplus|ʣ +ʣ V surplus|ʣ +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ N thing|,*surplus|ʣ +ʤ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ʤ V succeed|ɹ +ʤ V surpass|ǿ +ʤ V undertake| +ʤ V win|ʤ +ʤ N attribute|,effect|Ч,&event|¼ +ʤ N place|ط,glorious|,@tour| +ʤ N attribute|,effect|Ч,&event|¼ +ʤ V surpass|ǿ +ʤ N place|ط,beautiful|,desired| +ʤ ADJ aValue|ֵ,circumstances|,good|,desired| +ʤ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʤ N result|,win|ʤ +ʤ V win|ʤ +ʤ N human|,*win|ʤ +ʤȯ N attribute|,ability|,#win|ʤ,&event|¼ +ʤ V BeAble|ܹ +ʤ V undertake|,manner=able| +ʤ V surpass|ǿ +ʤ V surpass|ǿ +ʤ V win|ʤ,scope=fact|,#police| +ʤ V surpass|ǿ +ʤ N result|,win|ʤ +ʤ N human|,*win|ʤ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N human|,desired| +ʥ N human|,royal| +ʥ N place|ط,city|,ProperName|ר,(Brazil|) +ʥ N place|ط,city|,ProperName|ר,(US|) +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N time|ʱ,day|,festival|,@congratulate|ף +ʥ N humanized|,*congratulate|ף,#festival|,*GiveAsGift| +ʥ N tree|,*congratulate|ף +ʥҹ N time|ʱ,night|,festival|,@congratulate|ף +ʥ N facilities|ʩ,religion|ڽ +ʥ N place|ط,religion|ڽ +ʥǸ N place|ط,capital|,ProperName|ר,(Chile|) +ʥ N place|ط,capital|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sao tome and Principe|ʥ) +ʥ N place|ط,country|,ProperName|ר,(Africa|) +ʥ N place|ط,capital|,ProperName|ר,(Dominica|) +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N readings|,religion|ڽ +ʥ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʥ N humanized|,religion|ڽ +ʥŵ N place|ط,capital|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(San Marino|ʥŵ) +ʥŵ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ʥĸ N humanized|,religion|ڽ +ʥ N place|ط,capital|,ProperName|ר,(Grenada|ɴ) +ʥ N human|,desired| +ʥ N human|,desired|,wise| +ʥ߶ N place|ط,capital|,ProperName|ר,(El Salvador|߶) +ʥͽ N attribute|,status|,&human|,religion|ڽ +ʥͽ N attribute|,status|,religion|ڽ,&human| +ʥ N human|,desired|,wise| +ʥӤ N phenomena|,#WeatherChange| +ʥԼɪ N place|ط,capital|,ProperName|ר,(Costa Rica|˹) +ʥս N fact|,fight| +ʦ N army|,generic|ͳ +ʦ N character|,surname|,human|,ProperName|ר +ʦ N human|,#occupation|ְλ,*teach|,education| +ʦ N human|,*teach|,education| +ʦ N human|,able|,desired| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,desired|,$study|ѧ,$imitate|ģ +ʦ N part|,%army| +ʦ N human|,#occupation|ְλ,official|,military| +ʦ N human|,*teach|,education| +ʦ V study|ѧ +ʦ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ V imitate|ģ +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ ADJ aValue|ֵ,attachment| +ʦѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ʦ N human|,*teach| +ʦ N human| +ʦ N human|,religion|ڽ +ʦ N human|,female|Ů,#teach| +ʦ N human|,*study|ѧ,*teach|,mass|,education| +ʦͽ N human|,*study|ѧ,*teach|,mass|,education| +ʦ N part|,%army| +ʦү N human|,#occupation|ְλ,official|,past| +ʦү N human|,friend| +ʦ N human|,*teach|,education|,mass| +ʧ N attribute|,effect|Ч,useless|,undesired|ݬ,&event|¼ +ʧ V disobey|Υ +ʧ V fail|ʧ +ʧ V lose|ʧȥ +ʧ N result|,wrong|,undesired|ݬ +ʧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʧ V defeated| +ʧ V defeated|,military| +ʧ V fail|ʧ +ʧ N human|,*defeated| +ʧ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧ V fail|ʧ +ʧ ADJ aValue|ֵ,kind|,special|,undesired|ݬ +ʧ V unfortunate| +ʧ V disappear|ʧ +ʧ V disable|м,scope=listen| +ʧ V flurried| +ʧ N bill|Ʊ +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ N place|ط,#country|,$lose|ʧȥ +ʧ V lose|ʧȥ +ʧ V BeBad|˥ +ʧ V obtain|õ +ʧ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʧ V flurried| +ʧ V unfortunate|,cause=fire|,police| +ʧ V fail|ʧ +ʧ V FallDown| +ʧ V disloyal| +ʧ N disease| +ʧ V BeUnable|,content=control| +ʧ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ʧ V disobey|Υ,content=regulation| +ʧ V defeated| +ʧ V lose|ʧȥ,possession=love| +ʧ V BeUnable|,content=control| +ʧ V lose|ʧȥ +ʧ V exposure|¶,experiencer=fact| +ʧ V ill|̬,scope=sleep|˯,medical|ҽ +ʧ V disable|м,scope=look| +ʧ V suffer|,content=steal|͵ +ʧȥ V UndergoNot| +ʧȥ V lose|ʧȥ +ʧȥ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ʧȥ֪ V dizzy| +ʧȴ V lose|ʧȥ +ʧɢ V disappear|ʧ +ʧɫ V uneasy| +ʧɫ V unfortunate| +ʧ N phenomena|,unfortunate|,undesired|ݬ +ʧ V FeelingByBad| +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ʧ V BeUnable|,content=MakeSound| +ʧ V MakeSound|,manner=careless| +ʧʹ V weep| +ʧʱ V lose|ʧȥ,possession=time|ʱ +ʧʵ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʧ V unfortunate|,police| +ʧ V lose|ʧȥ,possession=power| +ʧ V fall|,manner=careless| +ʧ V defeated|,military| +ʧˮ V remove|,patient=liquid|Һ +ʧ V OutOfOrder| +ʧ V fail|ʧ +ʧ V disappointed|ʧ +ʧ N artifact|˹,generic|ͳ +ʧ N result|,wrong|,undesired|ݬ +ʧ V suffer|,content=occupy|ռ,military| +ʧЦ V laugh|Ц,manner=WithstandNot|ס +ʧЧ V end|ս +ʧ V disobey|Υ,content=MakeAppointment|Լ +ʧ V OutOfOrder| +ʧѧ V lose|ʧȥ,possession=education| +ʧѪ V bleed|Ѫ +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ ADJ lose|ʧȥ,possession=affairs| +ʧҵ V lose|ʧȥ,possession=affairs| +ʧҵ N quantity|,rate|,#lose|ʧȥ,#affairs|,&human| +ʧҵ N human|,lose|ʧȥ,#affairs| +ʧ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ʧ V disappointed|ʧ +ʧ V unfortunate|,scope=aspiration|Ը +ʧ V disable|м,scope=MakeSound| +ʧԼ V disobey|Υ,content=MakeAppointment|Լ +ʧ V BeBad|˥,scope=accurate|׼ +ʧ֮ V lose|ʧȥ +ʧ֮ V lose|ʧȥ,possession=time|ʱ +ʧְ V disobey|Υ,content=system|ƶ +ʧ V lose|ʧȥ,possession=weight| +ʧ N phenomena|,#lose|ʧȥ,#weight| +ʧ N human|,#lose|ʧȥ +ʧ V disappear|ʧ +ʧ V FallDown| +ʧ V err| +ʨ N beast| +ʨ N beast| +ʨӹ N livestock| +ʨͷ N food|ʳƷ +ʩ N character|,surname|,human|,ProperName|ר +ʩ V conduct|ʵʩ +ʩ V grant| +ʩ V use| +ʩ V damage| +ʩ V shoot| +ʩ V feed|ι,patient=material|,agricultural|ũ +ʩ V build|,industrial| +ʩ N facilities|ʩ,space|ռ,@build| +ʩ N human|,*WellTreat|ƴ +ʩ V conduct|ʵʩ +ʩ V teach| +ʩ V rescue| +ʩ V salute|¾ +ʩ V donate| +ʩ N part|,%language| +ʩ V show|,content=fierce| +ʩ V conduct|ʵʩ +ʩҩ V GiveAsGift|,possession=medicine|ҩ +ʩ V use| +ʩ V use| +ʩ V grant| +ʩչ V conduct|ʵʩ +ʩ V conduct|ʵʩ,content=thinking|˼,politics| +ʩ V cure|ҽ +ʩ N human|,*donate|,#religion|ڽ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ V moisten|ʪ +ʪ N attribute|,dampness|ʪ,&physical| +ʪȼ N tool|þ,*measure|,#dampness|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N gas|,wet|ʪ +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ ADJ aValue|ֵ,hardness|Ӳ,soft| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ͸ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʪ N disease| +ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +ʫ N text| +ʫ N text| +ʫ N text| +ʫ N readings| +ʫ N readings| +ʫ N expression| +ʫƪ N fact| +ʫƪ N text| +ʫ黭 N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N human|,*compile|༭,literature| +ʫ N human|,literature| +ʫ N readings| +ʫ̳ N community|,literature| +ʫ N text| +ʫ N emotion| +ʫѡ N readings| +ʫ N attribute|,circumstances|,beautiful|,&entity|ʵ +ʫ N readings| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,bone| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N part|,%AnimalHuman|,*die|,body| +ʬ N fact|,check|,#AnimalHuman|,#die| +ʬλ V slack|͵ +ʬλز V slack|͵ +ʭ N InsectWorm|,undesired|ݬ +ʭ N InsectWorm|,undesired|ݬ +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮߵ N land|½ +ʮ N time|ʱ,winter| +ʮ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮָ N part|,%AnimalHuman|,viscera| +ʮָ N disease| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʮ ADV aValue|ֵ,degree|̶,extreme| +ʮ V satisfied| +ʮ ADJ aValue|ֵ,ability|,nimble|,desired| +ʮҪ ADJ aValue|ֵ,importance|,important| +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,attachment| +ʮ CLAS unit|λ,&length| +ʮþ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ʮ N time|ʱ +ʮ궯 N fact|,ProperName|ר,(China|й) +ʮƽ N fact|,ProperName|ר,(China|й) +ʮŲ ADJ qValue|ֵ,frequency|Ƶ,rarely|ż +ʮȫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮȫʮ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʮ N place|ط,ProperName|ר,(China|й) +ʮ CLAS unit|λ,&volume|ݻ +ʮҾſ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ʮʫ N text| +ʮʫ N human|,literature| +ʮǧ ADJ aValue|ֵ,distance|,far|Զ +ʮ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ʮһ N time|ʱ,month| +ʮһ· N time|ʱ,month| +ʮа˾ ADV aValue|ֵ,possibility|,possible| +ʮ N time|ʱ,month| +ʮ· N time|ʱ,month| +ʮ֮˾ ADV aValue|ֵ,possibility|,possible| +ʮּ N tool|þ,religion|ڽ +ʮֽͷ N facilities|ʩ,route|· +ʮ· N facilities|ʩ,route|· +ʮ ADJ aValue|ֵ,form|״ +ʮ ADJ aValue|ֵ,content|,pure|,desired| +ʮ ADJ aValue|ֵ,degree|̶,extreme| +ʯ N character|,surname|,human|,ProperName|ר +ʯ N image|ͼ,#stone|ʯ +ʯ N stone|ʯ,?material| +ʯ N fish| +ʯ N material|,#stone|ʯ,*build| +ʯ N tool|þ,*print|ӡˢ +ʯ N facilities|ʩ,$carve| +ʯ N PenInk|ī,*write|д +ʯ N part|,%land|½ +ʯ V disappear|ʧ +ʯ N SportTool|˶ +ʯ N image|ͼ,$carve| +ʯ N part|,%vegetable|߲,embryo|,$eat| +ʯ N vegetable|߲ +ʯ CLAS NounUnit|,&stone|ʯ +ʯ N chemical|ѧ +ʯ N tool|þ,medical|ҽ +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N material|,*build| +ʯʯ N material|,*build| +ʯ N material|,*build| +ʯׯ N place|ط,city|,ProperName|ר,(China|й) +ʯ N human|,#occupation|ְλ,industrial|,#stone|ʯ +ʯ N medicine|ҩ,(Chiina|й) +ʯ N image|ͼ,$carve| +ʯ N building| +ʯ N stone|ʯ +ʯ N material| +ʯ N stone|ʯ +ʯ N fruit|ˮ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯ N material| +ʯĥ N tool|þ,*grind|ĥ +ʯī N stone|ʯ +ʯ N chemical|ѧ +ʯ쾪 ADJ aValue|ֵ,impression|ӡ,good|,desired| +ʯ N tool|þ,generic|ͳ +ʯʱ N time|ʱ +ʯ N material|,*apply|ͿĨ,*decorate|װ +ʯʨ N place|ط,city|,ProperName|ר,(China|й) +ʯ N SportTool|˶ +ʯͷ N stone|ʯ,?material| +ʯͷӶ N stone|ʯ,?material| +ʯ N livestock| +ʯӡ V print|ӡˢ +ʯӢ N material|,?tool|þ,#decorate|װ,precious| +ʯӢ N tool|þ,*tell|,#time|ʱ +ʯ N material|,liquid|Һ,$burn| +ʯ N material|,gas|,$burn| +ʯ N human|,#occupation|ְλ,commercial| +ʯ֯ N community| +ʯ N stone|ʯ,?material| +ʯӶ N stone|ʯ,?material| +ʰ V gather|ɼ +ʰ V pick|ʰ +ʰ NUM qValue|ֵ,amount|,cardinal|,mass| +ʰ V PutInOrder| +ʰ V punish| +ʰ V repair| +ʰ ADJ aValue|ֵ,behavior|ֹ,public| +ʰ V pick|ʰ +ʰȡ V gather|ɼ +ʰȡ V pick|ʰ +ʰ V imitate|ģ +ʰ촦 V InstitutePlace|,@collect|,#lose|ʧȥ +ʰ V gather|ɼ,possession=$lose|ʧȥ +ʰŲ V recompense| +ʰ N tool|þ,*disseminate| +ʱ ADJ aValue|ֵ,time|ʱ,now| +ʱ N attribute|,time|ʱ,&language| +ʱ N character|,surname|,human|,ProperName|ר +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ N time|ʱ,hour|ʱ,special| +ʱ N time|ʱ,important| +ʱ N time|ʱ,season| +ʱ ... ʱ CONJ {accompaniment|} +ʱ N publications|鿯,#news| +ʱ N phenomena|,bad| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱҴ ADJ aValue|ֵ,circumstances|,urgent| +ʱ ADJ aValue|ֵ,value|ֵ,precious| +ʱ N attribute|,different|,&time|ʱ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ +ʱʱ ADJ aValue|ֵ,behavior|ֹ,^continuous| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ ... ʱ CONJ {accompaniment|} +ʱ N time|ʱ +ʱ CONJ {time|ʱ} +ʱ ADV aValue|ֵ,duration|,TimeShort| +ʱ N time|ʱ +ʱǨ V change| +ʱ N time|ʱ +ʱ N time|ʱ,important| +ʱ N attribute|,price|۸,&inanimate| +ʱ N time|ʱ +ʱ N readings|,#plans|滮 +ʱ N aValue|ֵ,property|,#time|ʱ +ʱ N time|ʱ +ʱ N time|ʱ,season| +ʱ N attribute|,circumstances|,&country|,politics| +ʱ N time|ʱ +ʱ N time|ʱ,hour|ʱ +ʱ̱ N readings|,#plans|滮,#transport|,#VehicleGo|ʻ +ʱ N time|ʱ,season| +ʱ N time|ʱ +ʱ N human|,now| +ʱ N time|ʱ +ʱ N attribute|,SocialMode|,&entity|ʵ +ʱʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱʱ̿ ADV aValue|ֵ,frequency|Ƶ,often| +ʱ N fact| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N attribute|,speed|ٶ,&AlterLocation|ռλ +ʱ̬ N attribute|,property|,&language| +ʱ N attribute|,outlook|ǰ,&event|¼ +ʱ N fact| +ʱ N time|ʱ,now| +ʱ ADJ aValue|ֵ,newness|¾,new|,desired| +ʱ N attribute|,boundary|,#time|ʱ,&event|¼ +ʱЧ N attribute|,boundary|,&time|ʱ +ʱЧ N attribute|,effect|Ч,&entity|ʵ,&act|ж +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʱ N attribute|,sequence|,&event|¼ +ʱ N attribute|,circumstances|,&thing| +ʱ˲ V unfortunate| +ʱ N part|,%tool|þ,#tell|,#time|ʱ +ʱֵ N time|ʱ +ʱ N time|ʱ,near| +ʱ N tool|þ,*tell|,#time|ʱ +ʱװ N clothing|,#body| +ʱװ N fact|,display|չʾ,#clothing| +ʱװģ N human|,*display|չʾ,#clothing| +ʱ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +ʱ ADJ aValue|ֵ,pattern|ʽ,new|,desired| +ʱ V prosper| +ʲ ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ʲ NUM qValue|ֵ,amount|,cardinal|,mass| +ʲ N tool|þ,*decorate|װ +ʲ ADJ qValue|ֵ,amount|,many| +ʲô ADJ aValue|ֵ,kind|,question| +ʲô N entity|ʵ,question| +ʲ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ʲ N tool|þ,generic|ͳ +ʳ V eat| +ʳ N food|ʳƷ,*feed|ι,#animal|,generic|ͳ +ʳ N food|ʳƷ,generic|ͳ +ʳ V HungryThirsty| +ʳ ADJ aValue|ֵ,performance|,*eat|,#FlowerGrass| +ʳݶ N animal|,*eat|,#FlowerGrass| +ʳ N part|,%AnimalHuman|,viscera| +ʳ N disease| +ʳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ֪ζ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N tool|þ,*feed|ι,*catch|׽ס,#fish| +ʳŲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ʳ N part|,%AnimalHuman|,viscera| +ʳܰ N disease| +ʳ N bird| +ʳ N human|,*eat| +ʳ N human|,*help| +ʳ N food|ʳƷ,generic|ͳ +ʳ N material|,?food|ʳƷ,#crop|ׯ +ʳ N attribute|,ability|,&eat| +ʳ N method|,*cure|ҽ +ʳƷ N food|ʳƷ,generic|ͳ +ʳƷ N InstitutePlace|,*sell|,@buy|,commercial| +ʳ N account|,*record|¼,#edible|ʳ +ʳ ADJ aValue|ֵ,performance|,*eat|,#flesh| +ʳ⶯ N animal|,*eat|,#flesh| +ʳ N fact|,#eat|,#reside|ס +ʳ N InstitutePlace|,space|ռ,@eat| +ʳ N material|,?food|ʳƷ +ʳ N edible|ʳ,generic|ͳ +ʳ N fact|,#eat| +ʳж N disease|,#poison| +ʳ N attribute|,habit|ϰ,#consume|ȡ,&AnimalHuman| +ʳ N material|,?food|ʳƷ +ʳ V disobey|Υ,content=MakeAppointment|Լ +ʳ N beast| +ʳ ADJ aValue|ֵ,ability|,able|,$consume|ȡ +ʳ ADJ aValue|ֵ,performance|,$use|,#consume|ȡ +ʳþ N AlgaeFungi|ֲ +ʳ N material|,liquid|Һ,?food|ʳƷ +ʳ N aspiration|Ը,expect|,#consume|ȡ +ʳָ N part|,%AnimalHuman|,hand| +ʴ V InDebt| +ʴ V bite|ҧ,industrial| +ʴ V InDebt|,possession=fund|ʽ,commercial| +ʴ V affairs|,*InDebt|,commercial| +ʴ V carve|,means=bite|ҧ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact| +ʵ N part|,%plant|ֲ,embryo| +ʵʵ V recompense| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ N expression| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ʵ ADJ aValue|ֵ,property|,own|,#weapon| +ʵ V load|װ,patient=weapon| +ʵ ADJ aValue|ֵ,location|λ,special| +ʵ V do|,manner=endeavour| +ʵɼ N human|,*endeavour| +ʵ N text|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ N phenomena|,pros| +ʵ N result|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N entity|ʵ,true| +ʵ N fact|,true| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ N attribute|,price|۸,true|,&physical|,commercial| +ʵ V conduct|ʵʩ +ʵ V fulfil|ʵ +ʵ N attribute|,effect|Ч,&thing| +ʵ N information|Ϣ,*prove|֤ +ʵ N example|ʵ +ʵ N attribute|,strength|,&human|,&organization|֯ +ʵλ N attribute|,strength|,&human|,&organization|֯ +ʵ¼ N text| +ʵ N attribute|,circumstances|,&entity|ʵ +ʵȨ N attribute|,power|,&human|,&organization|֯ +ʵʩ V conduct|ʵʩ +ʵʩ ADJ aValue|ֵ,ability|,able|,desired| +ʵʩ N human|,*conduct|ʵʩ +ʵʱ ADJ aValue|ֵ,duration|,TimeShort| +ʵʱ ADV aValue|ֵ,time|ʱ,alike| +ʵʵ ADV aValue|ֵ,degree|̶,very| +ʵ N fact|,substantial|ʵ,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,substantial|ʵ,desired| +ʵ N entity|ʵ +ʵ N physical|,generic|ͳ +ʵ﹤ N payment| +ʵϰ V drill|ϰ +ʵϰ N human|,study|ѧ,education| +ʵϰҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ʵϰҽԺ N InstitutePlace|,@cure|ҽ,#disease|,@teach|,@study|ѧ,medical|ҽ,education| +ʵ V fulfil|ʵ +ʵЧ N attribute|,effect|Ч,&entity|ʵ +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +ʵʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ V conduct|ʵʩ +ʵ V experiment|ʵ +ʵ N InstitutePlace|,@research|о,@experiment|ʵ,#knowledge|֪ʶ +ʵ N human|,*experiment|ʵ +ʵҵ N affairs|,industrial|,commercial| +ʵҵ N human|,#occupation|ְλ,industrial|,commercial| +ʵ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʵ N attribute|,effect|Ч,&thing| +ʵ N thinking|˼,#effect|Ч +ʵ N human| +ʵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADV {comment|} +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵս N fact|,fight| +ʵ֤ N information|Ϣ,*explain|˵ +ʵ N entity|ʵ,generic|ͳ +ʵ N part|,%entity|ʵ,heart| +ʵ ADV aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ ADJ qValue|ֵ,amount|,sufficient| +ʶ N knowledge|֪ʶ +ʶ V know|֪ +ʶ V distinguish|ֱ +ʶ V distinguish|ֱ +ʶ V attribute|,ability|,#distinguish|ֱ,&human| +ʶ V know|֪,content=artifact|˹ +ʶ V know|֪ +ʶȤ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ʶʱΪ V obey|ѭ +ʶ; N human|,wise|,desired| +ʶ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ʶ V study|ѧ,content=character| +ʷ N character|,surname|,human|,ProperName|ר +ʷ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷ N fact| +ʷ N place|ط,#fact|,#time|ʱ +ʷ N readings| +ʷ N information|Ϣ +ʷǰ ADJ aValue|ֵ,time|ʱ,past| +ʷʫ N text| +ʷʫ ADJ aValue|ֵ,content|,great|ΰ,desired| +ʷʫ N human|,literature| +ʷʵ N fact|,#time|ʱ +ʷ N fact|,#time|ʱ +ʷǰ ADJ aValue|ֵ,kind|,special| +ʷѧ N knowledge|֪ʶ +ʸ V swear| +ʸ N text|,$swear| +ʸ N weapon|,$firing| +ʸڷ V deny| +ʸ N symbol|,#quantity| +ʸͼ N image|ͼ +ʸ־ V endeavour| +ʸ־ V endeavour| +ʸ־ V endeavour| +ʹ V CauseToDo|ʹ +ʹ N human|,*transmit|,#letter|ż +ʹ V use| +ʹ ... V CauseToDo|ʹ,ResultEvent=^PayAttention|ע +ʹ ...ķ V MakeWorried| +ʹ V stabilize|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʹɳ V CauseToGrow|ʹɳ +ʹ V CauseToExist|ʹ +ʹ V CauseToDo|ʹ +ʹ ADJ aValue|ֵ,effect|Ч,superior|,desired| +ʹ V CauseToDo|ʹ +ʹ V sharpen|ʹ +ʹ N institution|,diplomatic|⽻ +ʹ V MakeTrouble| +ʹ V dispatch|Dz +ʹ V use| +ʹ V CauseToLive|ʹ +ʹ V KeepOn|ʹ +ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ʹ N attribute|,status|,diplomatic|⽻ +ʹ V endeavour| +ʹ V clean|ʹ +ʹ V brighten|ʹ +ʹ N affairs|,#dispatch|Dz +ʹŮ N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů +ʹȻ V ResultIn| +ʹ˲ ADJ aValue|ֵ,ability|,able|,upset| +ʹ˷ŭ ADJ aValue|ֵ,ability|,able|,angry| +ʹ˷ ADJ aValue|ֵ,ability|,able|,itch| +ʹƣ ADJ aValue|ֵ,ability|,able|,tired|ƣ +ʹŷ ADJ aValue|ֵ,ability|,able|,believe| +ʹ ADJ aValue|ֵ,ability|,able|,joyful|ϲ +ʹܽ ADJ aValue|ֵ,ability|,able|,StateChange|̬ +ʹ˸֪ V MakeOthersKnowledge|ʹ˸֪ +ʹ N community|,diplomatic|⽻ +ʹ֪ V MakeMisunderstand|ʹ֪ +ʹϲ V MakeHappy|ʹϲ +ʹ V MakeEqual|ʹ +ʹʧ V CauseToBeHidden|ʹʧ +ʹ V angry| +ʹɫ V tell|,manner=secret| +ʹ V use| +ʹ÷ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +ʹüֵ V attribute|,value|ֵ,&thing| +ʹ V attribute|,age|,&artifact|˹ +ʹ V pollute|ʹ +ʹթ V deceive|ƭ +ʹ N human|,$dispatch|Dz,official| +ʹ N human|,*transmit|,#letter|ż +ʹ֮ V CauseNotToBe|ʹ֮ +ʹ֮ V CauseToBe|ʹ֮ +ʺ N stone|ʯ,#AnimalHuman|,waste| +ʺ N InsectWorm| +ʻ V VehicleGo|ʻ +ʼ ADV aValue|ֵ,duration|,TimeShort| +ʼ V begin|ʼ +ʼ V start|ʼ +ʼĩ N process| +ʼҵ V start|ʼ,content=study|ѧ,education| +ʼ ADV aValue|ֵ,duration|,TimeLong| +ʼղи ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼղ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ʼ N human|,past| +ʼ N bird|,past| +ʼٸ N human|,*start|ʼ +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,kind|,&language| +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N fact| +ʽ N symbol| +ʽ N attribute|,kind|,&entity|ʵ +ʽ N attribute|,pattern|ʽ,&physical| +ʽ N attribute|,posture|,&animate| +ʽ N symbol| +ʾ V express|ʾ +ʾ V order| +ʾ V tell| +ʾ V ShowLove|ʾ +ʾ N tool|þ,*measure| +ʾ N tool|þ,*measure|,#electricity| +ʾ V ExpressDissatisfaction|ʾ +ʾͬ V ExpressDisagreement|ʾͬ +ʾ V show|,content=example|ʵ +ʾ V show|,content=example|ʵ +ʾŭ V ExpressAnger|ʾŭ +ʾ V surrender| +ʾ˼ V commemorate|ʾ˼ +ʾͬ V ExpressAgreement|ʾͬ +ʾ V uprise| +ʾϲ V ShowJoy|ʾϲ +ʾ V express|ʾ +ʾͼ N readings|,express|ʾ +ʿ N human| +ʿ N human|,able| +ʿ N human|,literature| +ʿ N human|,male| +ʿ N human|,military| +ʿ N tool|þ,#recreation| +ʿ N human|,#occupation|ְλ,military| +ʿ N human|,literature| +ʿŮ N human|,mass|,young| +ʿ N attribute|,will|־,&human|,&army| +ʿ N human|,HighRank|ߵ +ʿ N human|,#occupation|ְλ,military| + N attribute|,clan|,&physical| + N place|ط + N time|ʱ + N time|ʱ,#alive| + N emotion|,hate|,undesired|ݬ + N human|,undesired|ݬ,enemy| + V PassOn| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ +ഫ V PassOn| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N time|ʱ +ĩ N time|ʱ,ending|ĩ + N community|,family| + N location|λ,%earth| + N attribute|,relatedness|,&human| + N human|,friend| + N place|ط +籭 N tool|þ,#compete|,*reward|,desired|,sport|,entertainment| +ս N fact|,fight|,military| +緶Χ ADJ aValue|ֵ,range|,extensive| + N standpoint| +ʳ» N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +ó֯ N InstitutePlace|,ProperName|ר,commercial| +֯ N part|,%institution|,#agricultural|ũ,(institution|=UN|Ϲ) +֯ N part|,%institution|,#medical|ҽ,(institution|=UN|Ϲ) +ݼ N land|½,tall| + N part|,%institution|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(institution|=UN|Ϲ) + N thought|ͷ,public| + N language|,#country|,ProperName|ר +ѧ N human|,#language| +֪ʶȨ֯ N part|,%institution|,#politics|,(institution|=UN|Ϲ) + N human| +ó N InstitutePlace|,ProperName|ר,commercial| + N attribute|,environment|,earth| + N human|,ordinary| + N location|λ,%earth| + ADJ aValue|ֵ,duration|,TimeLong| + N fact| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Դ N celestial|,#humanized| +Ϯ V PassOn| +Ϯ ADJ aValue|ֵ,source|Դ + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ +ӽ N part|,%vegetable|߲,embryo|,$eat| +ӽ N vegetable|߲ + V TakeCare| + N affairs|,#earn|׬,#alive|,#occupation|ְλ + N duty| + V engage| + N fact| + N phenomena|,unfortunate|,undesired|ݬ +°빦 V succeed|ɹ +± V fail|ʧ +±ع ADJ do|,manner=self| +± N fact| +± N phenomena|,sudden|,#unfortunate|,undesired|ݬ +²˳ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +³ ADV {comment|} +¶ N fact|,undesired|ݬ +¹ N phenomena|,unfortunate|,undesired|ݬ +¹ش ADJ aValue|ֵ,importance|,important| +¹Ǩ V change| +º N time|ʱ,future| +¼ N result|,desired| +¼ N time|ʱ,@rest|Ϣ +¼ N fact| +¼ N {EventResult|¼} + N reason| + N example|ʵ +ǰ N time|ʱ,past| + N fact| +Ȩ N duty| +ʵ N fact| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵ ADV aValue|ֵ,trueness|α,true| +ʵ ADJ aValue|ֵ,trueness|α,true| +ʵʤ۱ EXPR aValue|ֵ,trueness|α,true| + N fact| + N attribute|,circumstances|,&entity|ʵ +̬ N attribute|,circumstances|,&entity|ʵ + N entity|ʵ + N affairs| + N institution| + N time|ʱ,past| + N fact| +ҵ N affairs| +ҵ N institution| +ҵλ N institution| +ҵ N expenditure|,*CauseToLive|ʹ,#institution| +ҵ N emotion|,endeavour|,desired| + N affairs| + N cause|ԭ + N part|,%fact| +ԸΥ V FitNot|,contrast=aspiration|Ը + N human|,undesired|ݬ,#crime|,$MakeBad|Ӻ + V remove| + V wipe| +ĿԴ V wait|ȴ + V swear| + N text|,$swear| +IJ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ĵ N text|,$swear| +ʦ V swear| +ʦ V swear|,military| + V swear| + N text|,$swear| +Ը N text|,$swear| +Լ N text|,$swear| + V die| + V disappear|ʧ + V die| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&physical| + N attribute|,outlook|ǰ,&physical| + N attribute|,power|,&AnimalHuman|,&organization|֯ + N attribute|,strength|,&physical| + N mark|־ + N part|,%AnimalHuman|,viscera| +Ʊ ADV aValue|ֵ,possibility|,possible| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋɵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +Ʋ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ +Ƴﻢ V embarrassed|Ϊ +ƽ ADV aValue|ֵ,possibility|,possible| +ƾ V equal|,scope=strength| + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + N attribute|,behavior|ֹ,sly|,undesired|ݬ,&human| + N human|,sly|,undesired|ݬ + N attribute|,power|,&AnimalHuman|,&organization|֯ +Χ N attribute|,range|,#power|,&organization|֯ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +̬ N attribute|,circumstances|,&entity|ʵ +ͷ N attribute|,outlook|ǰ,&physical| +ͷ N attribute|,strength|,&physical| +ڱ V fixed|Ѷ + ADV aValue|ֵ,correctness|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,kind|,special| + V be| +ǵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +Ƿ N attribute|,correctness|,&event|¼ +Ƿ N fact|,quarrel| +Ƿ CONJ {question|} + V addict|Ⱥ +Ⱥ N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| +Ⱥ N fact|,$FondOf|ϲ,#WhileAway| +Ⱥ N addictive|Ⱥ +ɱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ѫ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V bite|ҧ +ɾ N part|,%AnimalHuman| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V fit|ʺ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʵ䷴ V fail|ʧ +ʶ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʷ CONJ {time|ʱ} +ʷ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ʺ V fit|ʺ +ʿɶֹ V cease|ͣ +ʿ ADJ aValue|ֵ,taste|ζ,good|,desired| + N quantity|,amount|,some|Щ + ADJ aValue|ֵ,age|,proper| +ʱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V fit|ʺ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ V fit|ʺ +Ӧ N attribute|,ability|,#fit|ʺ,&thing| +Ӧ֢ N disease| + ADJ aValue|ֵ,behavior|ֹ,proper| + N attribute|,effect|Ч,&artifact|˹ +ں ADJ aValue|ֵ,ability|,able|,VehicleGo|ʻ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V alive|,condition=fit|ʺ + ADJ aValue|ֵ,standard|׼,average|,desired| + V engage|,politics| +Ů N image|ͼ,#beautiful|,#female|Ů +; N process|,#official|,#engage| + V TakeCare| +̴ N human|,#occupation|ְλ,*TakeCare|,employee|Ա +̷ V TakeCare| +̺ V TakeCare| +Ů N human|,#occupation|ְλ,*TakeCare|,employee|Ա,female|Ů + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V explain|˵ + V release|ͷ + V remove| +ͷ V release|ͷ +ͷ N human|,*release|ͷ,police| +Ȼ V AtEase| + V explain|˵ + N information|Ϣ +IJ N human|,ProperName|ר,religion|ڽ + V MakeBetter|Ż + V MakeUp|ױ + V RegardAs| + V RegardAs|,entertainment| + V cover|ڸ + V decorate|װ + N tool|þ,*decorate|װ,generic|ͳ +δ N reason|,fake|α,undesired|ݬ +Ʒ N tool|þ,*decorate|װ,generic|ͳ + N tool|þ,*decorate|װ,generic|ͳ + V RegardAs|,entertainment| + N attribute|,name|,&human| + N human|,family| + N community| + N InstitutePlace|,commercial| + N place|ط,city| +г N InstitutePlace|,*sell|,@buy|,commercial| +г N attribute|,price|۸,&artifact|˹,commercial| +г N human|,#occupation|ְλ,official|,#city| +гְλ N occupation|ְλ,official|,#city| +и N institution|,*manage|,#city| +л N FlowerGrass|,#mark|־,#city| +м N InstitutePlace|,*sell|,@buy|,commercial| +м ADJ aValue|ֵ,attachment|,#city| +м N attribute|,price|۸,&artifact|˹,commercial| +н N part|,%place|ط,surrounding|Χ,#city| +н CLAS unit|λ,&weight| +о N place|ط,commercial| +оС N human|,vulgar|,undesired|ݬ +о֮ͽ N human|,vulgar|,undesired|ݬ +п N human|,commercial| +пϰ N attribute|,behavior|ֹ,vulgar|,undesired|ݬ,&human| + ADJ aValue|ֵ,attachment|,#city| + N attribute|,environment|,&event|¼,commercial| + N human|,#city| + N part|,%place|ط,city|,body| + N attribute|,appearance|,&city| +ί N institution|,politics|,(China|й) + N place|ط,city| + ADJ aValue|ֵ,attachment|,#affairs|,#city| + N affairs|,#city| + N institution|,*manage|,#city| + N part|,%place|ط,city|,heart| + V depend| +ѲŰ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ǿ V damage|,means=use|,#power| + V damage|,means=use|,#power| + N part|,%organization|֯ + N room| + N location|λ,%room|,internal| + N music| +ֶ N community|,*perform|,#music| +װʦ N human|,#occupation|ְλ,*decorate|װ + N location|λ,%room|,external| + N attribute|,temperature|¶,&room| + V investigate| + V look| + V treat|Դ +Ӳ V investigate| +Ӳ N result|,wrong|,#calculate|,#measure| +Ӵ N software|,#(Microsoft|΢) +Ӷ V ignorant|֪,#look| +ӽ N standpoint| +Ӿ N experience|,#look| + N attribute|,ability|,#look|,&AnimalHuman| +Ƶ N attribute|,frequency|Ƶ,&image|ͼ + V RegardAs| + N part|,%AnimalHuman|,nerve|,#look| + V undertake|,content=official| + ADJ aValue|ֵ,attachment|,#experience| + N experience| +ͬ V RegardAs| +ͬϷ V despise| +ͬ· ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ͼ N image|ͼ +Ĥ N part|,%AnimalHuman|,#eye| +Ĥ N disease| +Ϊ V RegardAs| + N attribute|,scene|,&inanimate| +Ұ N attribute|,range|,*look|,&entity|ʵ + V RegardAs| + N fact|,exam| + V try| +԰ V handle|,manner=try| +Բ V disseminate| +Գ N facilities|ʩ,space|ռ,@exam| +Գ V experiment|ʵ,content=CauseToLive|ʹ +Դ V PutOn|,manner=try| +Ե V experiment|ʵ +Ե N organization|֯,@experiment|ʵ +Ե N tool|þ,*check|,#electricity| +Թ N tool|þ,cubic|,*experiment|ʵ +Ժ V experiment|ʵ +Ի V experiment|ʵ,content=GetMarried| +Լ N chemical|ѧ,*experiment|ʵ +Խʯ N stone|ʯ +Ծ N paper|ֽ,*exam| + N {Vtry|} +Կ V try| +̽ V investigate|,manner=try| + N problem| + N measure|,content=temperature|¶ +ͼ V try| + V ask| + V sell|,manner=try| + V try| + V perform|,manner=try|,entertainment| + V experiment|ʵ,manner=try| +鳡 N facilities|ʩ,@experiment|ʵ + N land|½,@planting|ֲ,agricultural|ũ + V try| +ת V experiment|ʵ,content=CauseToLive|ʹ +ֽ N paper|ֽ,*experiment|ʵ + V produce|,manner=try|,industrial| + V planting|ֲ,agricultural|ũ + V cease|ͣ + V detain|ס + V finish| + V gather|ɼ + V gather|ɼ,agricultural|ũ + V include| + V receive| + V restrain|ֹ +ձ V include|,ResultWhole=army|,military| +ձ V cease|ͣ,content=fight|,military| +ղ V store| +ղ V store|,literature| +ղؼ N human|,*store|,literature| +ճ V finish| +ճ N result|,$obtain|õ,#crop|ׯ,agricultural|ũ +յ V fulfil|ʵ +յ V receive| +շ V transmit| +շ N part|,%account|,commercial|,#human| +շ V levy| +շѵ绰 N facilities|ʩ,*communicate| +ո V TakeBack|ȡ +ո V collect|,agricultural|ũ +ո N LandVehicle|,*collect|,agricultural|ũ +չ V cease|ͣ,content=affairs| +չ V buy|,commercial| +չ N attribute|,price|۸,#buy|,&artifact|˹ +չ۸ N attribute|,price|۸,#buy|,&artifact|˹ +չվ N InstitutePlace|,*buy|,commercial| +չ V TakeBack|ȡ +չ V ize|̬,PatientAttribute=public|,#country| +ջ V TakeBack|ȡ +ջ V remove| +ջ V collect|,agricultural|ũ +ջ N result|,$obtain|õ,desired| +ռ V gather|ɼ +ռ N human|,gather|ɼ +ռ V detain|ס,police| +ռ V suffer|,content=detain|ס,crime|,police| +ս V levy| +ս V tighten|ս +վ N bill|Ʊ,#wealth|Ǯ +տ V look| +տ V BeRecovered|ԭ,medical|ҽ +տ V weave| +տ N tool|þ,*count|,#money| +տ N human|,*collect|,#wealth|Ǯ +տ N human|,*receive|,#money| + V receive|,possession=physical| + N symbol|,#quantity|,#DoSum| + V detain|ס,purpose=TakeCare| +£ V CausePartMove| +¼ V employ| +¼ V include| +¼ V record|¼ +¼ N tool|þ,*record|¼,#sound| + V gather|ɼ + V include| + V buy|,commercial| + V entice|,means=GiveAsGift|,crime| + V finish|,commercial| + V cease|ͣ +ȡ V collect| + V detain|ס,crime|,police| + N InstitutePlace|,@escape|,#unfortunate| + V include| + V take|ȡ + N wealth|Ǯ,$earn|׬ + N wealth|Ǯ,$earn|׬,commercial| +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ + V detain|ס,purpose=interrogate| +ʰ V PutInOrder| +ʰ V load|װ +ʰ V punish| +ʰ V remove| +ʰ V repair| + V pause|ͣ,commercial| + V look| + V receive| + N human|,*receive| + V control| + V load|װ + V restrain|ֹ +˰ V collect|,possession=expenditure|,commercial| +˰ V collect|,possession=expenditure|,politics| +˰ N human|,#occupation|ְλ,*receive|,#expenditure|,official| + V CausePartMove| + V assemble|ۼ,military| + V shrink|С + V shrink|С,medical|ҽ + V assemble|ۼ,patient=army|,military| +̯ V cease|ͣ,content=affairs| +̯ V cease|ͣ,content=affairs|,commercial| +̯ V finish|,commercial| + N bill|Ʊ,#wealth|Ǯ + V listen| +β V cease|ͣ +Ч V succeed|ɹ + N human|,*receive|,#letter|ż +Ѷ̨ N InstitutePlace|,@receive|,information|Ϣ +Ѻ V detain|ס,crime|,police| + V CauseToLive|ʹ + N wealth|Ǯ,$earn|׬,commercial| + ADJ aValue|ֵ,attachment| + N fact|,gather|ɼ,#sound| + N machine|,*disseminate| + V gather|ɼ,possession=fund|ʽ +֧ N wealth|Ǯ,commercial| +ִ N bill|Ʊ,#wealth|Ǯ + V put| + N human|,employee|Ա + N part|,%human|,hand| +ְ N part|,%human|,hand| +ֱ N part|,%human|,hand| +ֱ N information|Ϣ,#image|ͼ +ֱ N information|Ϣ,#readings| +ֱ N method|,*compile|༭,*draw| +ֱ N part|,%AnimalHuman|,arm| +ֱ N location|λ,surrounding|Χ +ֱ N tool|þ,*tell|,#time|ʱ +ֱ N part|,%implement|,hand| +ֲ; ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ֲ N publications|鿯 +ֳ N publications|鿯,$copy|д +ֳ N LandVehicle| +ֳ V hold| +ִ N stationery|ľ +ֵ N tool|þ,*illuminate|,#electricity| +ֵͲ N tool|þ,*illuminate| +ֶ N method| +ֶ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N method| +ַ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ַ N MusicTool| +ַ N human|,*perform|,entertainment| +ַ N machine|,#crop|ׯ,*transport| +ָ N experience|,#feel| +ָ N readings| +ֹ ADJ aValue|ֵ,source|Դ +ֹ N fact| +ֹҵ N affairs| +ֹ N affairs| +ֹƷ N tool|þ,*decorate|װ +ֹ N MusicTool| +ֻ N tool|þ,*communicate| +ּ N information|Ϣ,#image|ͼ +ּ N information|Ϣ,#readings| +ּۿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| +ּ V record|¼ +ֽ N fact|,#act|ж +ֽ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ +ֽŲɾ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֽ N tool|þ,*wipe| +ֽ V OwnNot|,possession=money| +ֽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +־ N tool|þ,*break|۶ +־ N tool|þ,*wipe| +ֿ ADJ aValue|ֵ,ability|,able|,desired| + ADV aValue|ֵ,behavior|ֹ,together|ͬ + N weapon| + N information|Ϣ + N weapon| +¯ N tool|þ,*WarmUp| +æ V flurried| +ģ N trace| + N tool|þ,*wipe| + N attribute|,circumstances|,&human|,&organization|֯ +ǹ N weapon|,*firing| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + N SportTool|˶ + ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +ɲ N part|,%vehicle|ͨ,*fix|ס + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N mark|־ + V write|д + N fact|,cure|ҽ,#split|ƿ,#part|,medical|ҽ + N tool|þ,*cure|ҽ,medical|ҽ + N room|,*cure|ҽ,medical|ҽ +̨ N tool|þ,@cure|ҽ,medical|ҽ + ADJ aValue|ֵ,tolerance|,generous|,desired| + N SportTool|˶,#clothing|,#hand| + N clothing|,#hand| + ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ʽ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| + N tool|þ,cubic|,@put| +ͷ N attribute|,environment|,#wealth|Ǯ +ͷ N location|λ,surrounding|Χ,space|ռ +Ƴ N LandVehicle| + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N part|,%AnimalHuman|,arm| +޴ ADJ aValue|ֵ,quality|,weak|,undesired|ݬ +޸֮ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +㵸 V joyful|ϲ + ADJ aValue|ֵ,attachment| + N attribute|,environment|,#wealth|Ǯ,&human| + V forgive|ԭ + N human|,*guess|² +д V write|д + N fact|,control| + N part|,%human|,hand| + N method| + N payment| + N attribute|,ability|,&human| + N fact|,#mating| +ӡ N trace|,#hand| + N readings|,past| + N part|,%human|,hand| + N tool|þ,#disable|м,*walk| +ָ N part|,%AnimalHuman|,hand| +ָͷ N part|,%AnimalHuman|,hand| +ֽ N paper|ֽ,*wipe| + N human|,family|,mass|,male| +޴ V flurried| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*decorate|װ,$PutOn| + ADJ aValue|ֵ,importance|,important| + N human|,#occupation|ְλ,official| + N part|,%AnimalHuman|,head|ͷ + NUM qValue|ֵ,sequence|,ordinal| +׳ N fact|,perform| +׳ NUM qValue|ֵ,sequence|,ordinal| +׳ N human|,#occupation|ְλ,official| +׳ V start|ʼ +״ V start|ʼ +׵ V suffer|,content=attack| +׶ N place|ط,capital|,#country| +׶ N human|,crime|,undesired|ݬ +׸ N place|ط +׺ V VehicleGo|ʻ +׺ V fly| +׼ N part|,%AnimalHuman|,*die|,head|ͷ +׿ V agree|ͬ + N human|,official| + N human|,#occupation|ְλ,official| +һָ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +շ N coupon|Ʊ֤,*post|ʼ,#letter|ż + N tool|þ,*decorate|װ,$PutOn| + V hesitate|ԥ +; V start|ʼ,content=leave|뿪 +β ADV frequency|Ƶ +β N process| +λ N attribute|,rank|ȼ,HighRank|ߵ +ϯ ADJ aValue|ֵ,importance|,important| +ϯ N location|λ,glorious| +ϯ N human|,official| +ϯִй N human|,#occupation|ְλ,official| + ADV aValue|ֵ,sequence|,ordinal| + N human|,#occupation|ְλ,official| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + V uprise| +ӳʽ N fact| +ս V win|ʤ +ս V win|ʤ,sport| + N human|,religion|ڽ + V aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near| + V check| + V defend| + V defend|,military| + V obey|ѭ +ر V defend|,military| +ر N army|,*defend|,military| +زū N human|,greedy|̰,miser|,undesired|ݬ +زū N human|,greedy|̰,undesired|ݬ +س N LandVehicle| +صס ADJ aValue|ֵ,ability|,withstand|ס,desired| +ص N army|,*defend|,military| +ط ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ط V obey|ѭ,content=law|ɷ +ط V InstitutePlace|,*obey|ѭ,#law|ɷ +ع V unfortunate|,scope=lose|ʧȥ,family| +غ V keep|,patient=lasting| +غ V check| +غ V expect| +غ V wait|ȴ +ػ V defend| +ػ N humanized|,*defend| +ؽ V obey|ѭ,content=loyal|Т +ؾ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ؾ N human|,stiff|,undesired|ݬ +ؾ N army|,*defend|,military| +ؿƿ V KeepSilence|˵ + V condole|° +Ա N human|,*exercise|,(football|) + V congratulate|ף + V check| + V defend| + V defend|,military| + V obey|ѭ,content=MakeAppointment|Լ +ҵ V maintain|,patient=artifact|˹ +ҹ V check|,time=night| + N regulation| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N attribute|,age|,&animate| + N character|,surname|,human|,ProperName|ר +ٲ N tool|þ,cubic|,@store|,#die| +ٳ N time|ʱ,day|,@ComeToWorld| +ٵ N time|ʱ,day|,@ComeToWorld| + N tool|þ,#ComeToWorld|,$GiveAsGift| + N food|ʳƷ,*congratulate|ף,#ComeToWorld| + N attribute|,age|,&animate| + V guarantee|֤,scope=die|,commercial| + N human|,aged| + N human|,aged|,$congratulate|ף + N clothing|,#die| + V die| + V grant| + V teach| +ڷ V disseminate|,purpose=GiveBirth|,agricultural|ũ +ڼ V teach|,content=plans|滮 +ڽ V reward|,possession=tool|þ +ھ V disseminate|,purpose=GiveBirth| +ڿ V teach|,knowledge|֪ʶ,education| + V order| +Ȩ V order| +Ȩ N document|,*order| + V grant| + V reward|,possession=rank|ȼ,military| +ѫ V reward|,possession=tool|þ +ҵ V teach|,knowledge|֪ʶ,education| + V teach|,knowledge|֪ʶ + V incite|ָʹ + V teach| + V grant| + V sell| +ۺ N affairs|,*TakeCare|,commercial| +ۻ V sell|,possession=artifact|˹ +ۻԱ N human|,#occupation|ְλ,employee|Ա,*sell|,commercial| +ۼ N attribute|,price|۸,&artifact|˹,commercial| + V sell| +Ʊ V sell|,possession=coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +Ʊ N InstitutePlace|,*sell|,@buy|,#coupon|Ʊ֤ +ƱԱ N human|,#occupation|ְλ,employee|Ա,*sell|,#coupon|Ʊ֤,#vehicle|ͨ + V disappear|ʧ,#sell|,commercial| + V endure| + V receive| + V suffer| + V undergo| +ܱ N human|,$guarantee|֤ +ܲ V ill|̬,agricultural|ũ +ܲ V ill|̬,medical|ҽ +ܳ V suffer|,content=moisten|ʪ +ܳ V undergo|,content=like|ϧ +ܴ V fail|ʧ +ܵ V suffer| +ܵ V undergo| +ܵ V withstand|ס +ܷ V suffer|,content=punish| +ܷ V pregnant|,agricultural|ũ +ܹ V suffer|,content=punish| +ܺ V suffer|,content=damage| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$MakeBad|Ӻ,#crime| +ܺ N human|,$damage| +ܺ V fever| +ܻ N tool|þ,*listen| +ܻ V receive|,possession=pros| +ܻݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ܻ V receive|,possession=artifact|˹,crime| +ܼ̤ V suffer|,content=damage| +ܽ V receive|,possession=reward| +ܽ V win|ʤ +ܾ V suffer| +ܾ V suffer|,content=frighten|Ż +ܾ V suffer|,content=frighten|Ż +ܾ V pregnant|,#medical|ҽ +ܾ N part|,%AnimalHuman|,embryo| +ܾ V shy| +ܿ V suffer|,content=unfortunate| + V relate|й + V unfortunate| + V handle|,police| + N receive|,possession=physical| + V fever| + V receive| + V receive|,possession=order| + V suffer|,content=unfortunate| + N human|,$MakeBad|Ӻ,#crime| +ƭ V misunderstand| +ƭ V human|,*misunderstand| +Ƹ V accept|,content=employ| +Ƹ V accept|,content=tool|þ,#GetMarried| + V suffer|,content=damage| + V suffer|,content=poor| +Ȩ V receive|,possession=power| + V undergo|,content=WarmUp| +˰ ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + ADJ aValue|ֵ,ability|,able|,$endorse|ӵ + V wounded| + V suffer|,content=interrogate|,police| + N part|,%language| + V suffer|,content=lose|ʧȥ +̥ V pregnant|,#medical|ҽ + V undergo|,content=entrust|ί + N human|,$entrust|ί +ϴ V undergo|,religion|ڽ + V undergo|,content=delimit| +ѵ V undergo|,content=teach| + V obtain|õ,possession=pros| + N human|,obtain|õ,#pros| + V enjoy| + V obtain|õ,possession=pros| +Ԯ V obtain|õ,possession=help| +Ԯ N place|ط,country|,$help|,#commercial| +Լ N human|,*MakeAppointment|Լ + V pregnant|,#medical|ҽ + V suffer|,content=unfortunate| + V suffer|,content=control| + V suffer|,content=control| + V suffer|,content=obstruct|ֹ + V suffer|,content=unfortunate| + ADJ aValue|ֵ,fatness|,bony| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ +ݳ ADJ aValue|ֵ,height|߶,tall| +ݹ N part|,%plant|ֲ,embryo| +ú N material|,*lighting|ȼ,$burn| + N human|,bony| + N part|,%animate|,flesh|,bony| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,fatness|,bony| +С ADJ aValue|ֵ,fatness|,bony| + N human|,bony| + N beast| +޻ N part|,%building|,#mouth| + N LandVehicle| + N beast| +ҽ N human|,#occupation|ְλ,*cure|ҽ,#animal|,medical|ҽ + N vegetable|߲ +߲ N vegetable|߲ +߹ N vegetable|߲ + N part|,%thing|,heart| +Ŧ N part|,%thing|,heart| + V MakeUp|ױ + V PutInOrder| + N tool|þ,*MakeUp|ױ + V MakeUp|ױ + V PutInOrder|,industrial| +ͷ V MakeUp|ױ,patient=hair|ë +ϴ V MakeUp|ױ +ױ V MakeUp|ױ + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ⲻ֪ V ignorant|֪ + N attribute|,reputation|,glorious|,desired|,&human|,&organization|֯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +;ͬ V BeSame|ͬ +ѫ N result|,#succeed|ɹ,superior|,desired| + V express|ʾ +㷢 V express|ʾ + V express|ʾ,content=emotion| +д V describe|д + V defeated| + V donate| + V transport| + V transport|,commercial| + N place|ط,country|,*transport| + V transmit|,patient=electricity|,industrial| + N tool|þ,linear|,@transmit| + V defeated| +侫 N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ѹ N part|,%AnimalHuman|,viscera| +ѹ N disease| + N part|,%AnimalHuman|,viscera| + V GoInto|,commercial| + V transport|,commercial| + V transport| +ʹ N part|,%implement|,*transmit| +Ѫ V give|,possession=liquid|Һ,medical|ҽ +Ѫ V help| +Һ V feed|ι,patient=medicine|ҩ,#cure|ҽ,medical|ҽ +Ӯ N attribute|,effect|Ч,&event|¼ +͹ N facilities|ʩ,linear|,cubic|,@transmit| +͹ܵ N facilities|ʩ,*transmit| + N human|,*defeated| + N human|,family|,male| + N human|,male| +岮 ADJ aValue|ֵ,clan| +常 N human|,family|,male| +ĸ N human|,family|,female|Ů + N human|,family|,male| + N human|,family|,male| +ĸ N human|,family|,female|Ů + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + V unfold|̯ +泩 ADJ aValue|ֵ,circumstances|,happy|,desired| +泩 V joyful|ϲ + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V satisfied| +滺 ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +滺 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +滺 ADJ aValue|ֵ,circumstances|,relax|,desired| + V CausePartMove| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + ADJ aValue|ֵ,circumstances|,tranquil|,desired| + V satisfied| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V AtEase| +̹ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̹ V satisfied| + ADJ aValue|ֵ,circumstances|,happy|,desired| +չ V CausePartMove| +չ V unfold|̯ + V CausePartMove|,medical|ҽ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ů N human|,female|Ů,kindhearted|,desired| + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + V despise| + V dredge|ͨ,agricultural|ũ + ADJ qValue|ֵ,amount|,few|,undesired|ݬ + V spread| +赼 V dredge|ͨ,agricultural|ũ +赼 V persuade|Ȱ˵ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +迣 V dredge|ͨ,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +© N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + N attribute|,density|ܶ,&physical| +ɢ ADJ aValue|ֵ,density|ܶ,sparse| +ɢ ADJ aValue|ֵ,density|ܶ,unattached|ɢ +ɢ V disperse|ɢ +ɢ V spread| +ʧ N result|,wrong|,undesired|ݬ + ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +ͨ V dredge|ͨ,agricultural|ũ +ͨ V mediate| + V despise| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ + N attribute|,form|״,&character| + N attribute|,style|,&character| + N document| + N letter|ż + N publications|鿯 + V write|д + N tool|þ,cubic|,#study|ѧ,@put| +鱨 N publications|鿯 +鱾 N readings| + N furniture|Ҿ,cubic|,@put|,#publications|鿯 + N human|,NotQuick|ګ + N InstitutePlace|,*sell|,@buy|,readings| +鷨 N method|,*write|д +鷨 N human|,*write|д,literature| +鷿 N room|,@study|ѧ + N readings|,#text| + N furniture|Ҿ,@put|,#publications|鿯 +黭 N artifact|˹,#image|ͼ,entertainment| +鼮 N publications|鿯 + N human|,#occupation|ְλ,employee|Ա +Ǵ N part|,%organization|֯ +Ա N human|,#occupation|ְλ,employee|Ա + N furniture|Ҿ,@put|,#publications|鿯 + N InstitutePlace|,publish| + N attribute|,behavior|ֹ,gracious|,&human| +鿯 N publications|鿯 + N room|,@put|,#publications|鿯 + ADJ aValue|ֵ,source|Դ +Ŀ N readings| + N text|,estimate| + N InstitutePlace|,publish| + N human|,#knowledge|֪ʶ + ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| +̯ N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + N tool|þ,*protect|,#publications|鿯 +ͤ N facilities|ʩ,space|ռ,@sell|,#readings| + N InstitutePlace|,*sell|,@buy|,#readings|,commercial| + ADJ aValue|ֵ,attachment| +д V write|д + N letter|ż +Ժ N InstitutePlace|,*research|о,#knowledge|֪ʶ +ի N room|,@study|ѧ +չ N fact|,*display|չʾ,#readings| + N furniture|Ҿ,space|ռ,@put| + V amend| + V redeem| +굱 V redeem|,possession=artifact|˹ + V redeem| + V buy|,commercial| + V redeem|,possession=human| + V redeem|,possession=self| + ADJ aValue|ֵ,kind|,question| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,physique|,$cook| + ADJ aValue|ֵ,physique|,ripe| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N food|ʳƷ + N FlowerGrass|,?medicine|ҩ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ػ N FlowerGrass|,?medicine|ҩ + N human|,*visit| + ADJ aValue|ֵ,ability|,able|,desired| + N human|,able|,industrial| + N human|,able|,industrial| + N human|,able|,desired| + N material| +· N facilities|ʩ,route|· + N time|ʱ,desired|,#crop|ׯ + N time|ʱ,year|,desired|,#crop|ׯ + N human|,friend| +ʳ N food|ʳƷ +ʶ ADJ aValue|ֵ,relatedness|,intimate|,desired| +޶ V despise|,target=ordinary| +˯ V sleep|˯,manner=very| +˼ V think|˼,manner=attentive|ϸ + N material|,metal| + N stone|ʯ,material| +Ϥ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ϥ V know|֪ +ϰ V know|֪ +֪ V know|֪ + V BeAble|ܹ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,@rest|Ϣ,@WhileAway|,#education| + N time|ʱ,@rest|Ϣ,@WhileAway| + N gas|,#season| + N gas|,hot| + N weather|,#season|,hot| + N time|ʱ,season|,hot| + N time|ʱ,morning| + N lights|,#morning| + V arrange| + N part|,%institution|,politics| + V sign|д + V handle| + N character|,$sign|д + V sign|д,ContentProduct=name| + N place|ط,ProperName|ר,(Sichuan|Ĵ) + N crop|ׯ + N beast| + N human|,undesired|ݬ,vulgar| + N part|,%computer| +Ŀ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N disease| + V BeMember| + V BelongTo| + V be| + N place|ط,#country| + N place|ط,country|,#BeMember| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N attribute|,&entity|ʵ +ֵ N aValue|ֵ + V BeMember| + V BelongTo| +ԫж V exposure|¶ + V BelongTo| + N method| + N part|,%language| + V explain|˵ + N text|,*explain|˵ +˵ V explain|˵ +ְ V tell| + V cultivate| + V endorse|ӵ + V establish| + V put| + N tree| + V praise|佱 + N tree| + N beast| +ɢ V disperse|ɢ + N part|,%tree|,body| + N InsectWorm|,*fly| + N part|,%tree|,body| + N part|,%tree|,base| + N part|,%tree|,head|ͷ + N material| + V establish| + N tree| + N tree|,young| +ľ N tree| +Ƥ N part|,%tree|,skin|Ƥ + N part|,%tree|,head|ͷ + N beast| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷïʢ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +Һ N part|,%tree|,liquid|Һ + N place|ط,chilly| + N place|ط,#tree| +֦ N part|,%plant|ֲ,limb|֫ +֬ N material| + N attribute|,kind|,&tree| + CLAS NounUnit|,&inanimate|,&plant|ֲ + N character|,surname|,human|,ProperName|ר + V restrain|ֹ + V wrap| + V restrain|ֹ + V wrap| +޲ V BeUnable| +֮߸ V delay| + V defend|,military| + V defend|,military| + ADJ aValue|ֵ,posture|,straight|ֱ + N part|,%character| + V put|,manner=straight|ֱ + N facilities|ʩ,#mine|,*dig|ھ + V put|,manner=straight|ֱ + V put|,manner=straight|ֱ + N MusicTool| + N human| + N human|,undesired|ݬ + N human|,young| + N house| + ADJ aValue|ֵ,clan| + ADJ qValue|ֵ,amount|,many|,desired| + N human|,mass| +ĸ N human|,family|,female|Ů + N affairs| + N human|,#occupation|ְλ,employee|Ա,commercial| + N human|,family|,young| + N attribute|,circumstances|,&human|,&organization|֯ + V count| + N quantity|,amount|,&physical| + V quote| + N symbol|,#quantity| + ADJ qValue|ֵ,amount|,many| +ʤ ADJ qValue|ֵ,amount|,many| + N part|,%language| + ADJ aValue|ֵ,importance|,important| + N quantity|,amount|,&entity|ʵ + ADJ aValue|ֵ,kind|,ordinary| + N time|ʱ,season|,cold| + N information|Ϣ +ݿ N software|,@store|,information|Ϣ + ADJ aValue|ֵ,performance|,#quantity|,$control| + N quantity|,amount|,&entity|ʵ + N part|,%language| +ϵ V arithmetic|ϵ +ֵ N qValue|ֵ + V ExpressAgainst|Ǵ + N quantity|,amount|,&entity|ʵ + N symbol|,#quantity| +Ŀ N quantity|,amount|,&entity|ʵ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +԰ټ ADJ qValue|ֵ,amount|,many| +ǧ ADJ qValue|ֵ,amount|,many| + ADJ qValue|ֵ,amount|,many| +ֵ N symbol|,#quantity| + N quantity|,amount|,&entity|ʵ + N symbol| +ּ N computer| + V wash|ϴ + V wash|ϴ,patient=mouth| +ˡ V forgive|ԭ +ˢ V apply|ͿĨ +ˢ V remove| +ˢ N tool|þ,*wipe| +ˢ V wipe| +ˢ ADJ aValue|ֵ,color|ɫ,white| +ˢϴ V wipe| +ˢ V improve| +ˢ V repair| +ˢ V wash|ϴ +ˢ N tool|þ,*wipe| +ˣ V WhileAway| +ˣ V deceive|ƭ +ˣ V shake|ҡ +ˣ V deceive|ƭ +ˣ V deceive|ƭ +ˣ V slack|͵ +ˣͷ V deceive|ƭ +ˣͷ V slack|͵ +ˣ V IllBehave| +ˣå V IllBehave|,crime| +ˣŪ V IllTreat| +ˣŪ V deceive|ƭ +ˣƶ V TalkNonsense|Ϲ˵ +ˣǮ V gamble|IJ,crime| +ˣ V IllBehave| +ˣ۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +ˣƤ V TalkNonsense|Ϲ˵ +ˤ V FallDown| +ˤ V break|۶ +ˤ V fall| +ˤ V throw| +ˤ V beat| +ˤ V study|ѧ +ˤ V FallDown| +ˤͷ V FallDown| +ˤͷ V err| +ˤ V FallDown| +ˤ V exercise|,sport| +ˤ V FallDown| +ˤ N fact|,exercise|,sport| +˥ V decline|˥ +˥ V decline|˥ +˥ V change|,industrial| +˥ V BecomeLess|,industrial| +˥ V decline|˥,medical|ҽ +˥ ADJ aValue|ֵ,age|,aged| +˥ V decline|˥,scope=age| +˥ V decline|˥ +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥ +˥ V perish| +˥΢ V decline|˥ +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˥ V decline|˥,scope=age| +˦ V abandon| +˦ V throw| +˦ V wave|ڶ +˦ V abandon| +˦ V throw| +˦ V sell|,cost=cheap|,commercial| +˦ V CausePartMove|,PatientPartof=arm| +˦ V refuse| +˧ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˧ N human|,#occupation|ְλ,official|,military| +˧ N part|,%tool|þ,#recreation| +˨ N part|,%tool|þ +˨ N tool|þ,*BlockUp| +˨ N tool|þ,*fasten|˩ +˨ N medicine|ҩ +˨ N disease| +˩ V fasten|˩ +˩ V wrap| +˩ V wrap| +˩ V fasten|˩ +˪ N RainSnow|ѩ +˪ ADJ aValue|ֵ,color|ɫ,white| +˪ N shape| +˪ N RainSnow|ѩ +˪ N time|ʱ,day| +˪ N time|ʱ +˫ N character|,surname|,human|,ProperName|ר +˫ ADJ qValue|ֵ,amount|,double| +˫̥ N human|,family|,mass| +˫ ADJ aValue|ֵ,attachment| +˫ó N affairs|,#buy|,#sell|,commercial| +˫ N part|,%entity|ʵ +˫ N fact|,compete|,sport| +˫ N human|,mass| +˫ N part|,%entity|ʵ,double|,aspect| +˫ N beast| +˫ N SportTool|˶ +˫ V endeavour| +˫ N facilities|ʩ,route|· +˫ɹ N MusicTool| +˫ɹ N human|,*perform|,entertainment| +˫ N crop|ׯ +˫ ADJ aValue|ֵ,quality|,good|,desired| +˫˫ N tool|þ,#crop|ׯ +˫ N attribute|,name|,&human| +˫ N human|,family|,mass| +˫ N shape|,linear| +˫ȫ ADJ aValue|ֵ,range|,all|ȫ +˫˴ N furniture|Ҿ,space|ռ,@sleep|˯ +˫˷ N room| +˫˼ N room| +˫ N time|ʱ,day| +˫ N human|,female|Ů,#disease| +˫ ADJ aValue|ֵ,source|Դ +˫ N symbol|,#quantity| +˫˫ ADJ qValue|ֵ,amount|,double| +˫ N chemical|ѧ +˫崬 N ship| +˫Ͳ ADJ aValue|ֵ,form|״ +˫͹͸״ ADJ aValue|ֵ,form|״ +˫̬ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +˫ϲ N phenomena|,lucky|,desired| +˫ϲ EXPR phenomena|,lucky|,desired| +˫ ADJ aValue|ֵ,form|״ +˫ ADJ aValue|ֵ,form|״ +˫ N tool|þ,*WhileAway|,*congratulate|ף +˫ ADJ aValue|ֵ,direction|,double| +˫ N celestial| +˫ N attribute|,name|,surname|,&human| +˫Ƥ N part|,%AnimalHuman|,skin|Ƥ +˫ˮ N chemical|ѧ +˫ N aircraft| +˫Ӯ V win|ʤ +˫ N celestial| +˫ ADJ aValue|ֵ,kind|,#language| +˫ ADJ aValue|ֵ,time|ʱ,month|,double| +˫¿ N publications|鿯 +˫ְ N human|,employee|Ա,mass|,family| +˫ ADJ aValue|ֵ,property|,double| +˫ع N attribute|,attachment|,#country|,&human| +˫ؼ N human|,police|,military|,*scout| +˫˸ N attribute|,behavior|ֹ,&human| +˫ ADJ aValue|ֵ,time|ʱ,week|,double| +˫ܿ N publications|鿯 +˫ N celestial| +˫ N material|,?clothing| +ˬ V BeWell|׳ +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +ˬ V satisfied| +ˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ˬ ADJ aValue|ֵ,brightness|,bright| +ˬ N tool|þ,*MakeUp|ױ +ˬֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˭ PRON human|,question| +˭ ADV aValue|ֵ,behavior|ֹ,sudden| +˭ PRON human|,question| +˭֪ ADV aValue|ֵ,property|,^$predict|Ԥ +ˮ N character|,surname|,human|,ProperName|ר +ˮ N waters|ˮ,generic|ͳ +ˮ N waters|ˮ,linear| +ˮ N water|ˮ,generic|ͳ +ˮ N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +ˮ N tool|þ,*inhale|,#liquid|Һ +ˮ N PenInk|ī,*write|д +ˮ N land|½,surrounding|Χ,#waters|ˮ +ˮ N tool|þ,*measure|,#water|ˮ +ˮ N human|,military|,#waters|ˮ +ˮ N water|ˮ +ˮ N material|,colored|,*draw| +ˮʻ N image|ͼ +ˮ N FlowerGrass| +ˮ N artifact|˹,generic|ͳ,#fish| +ˮƷ N artifact|˹,generic|ͳ,#fish| +ˮҵ N affairs|,#fish| +ˮ N facilities|ʩ,space|ռ,*produce|,#water|ˮ +ˮ N LandVehicle| +ˮ N tool|þ +ˮ N place|ط,city| +ˮ N waters|ˮ,surfacial| +ˮ N fact|,handle|,#water|ˮ +ˮ V succeed|ɹ +ˮ N crop|ׯ +ˮ N facilities|ʩ,route|·,#waters|ˮ +ˮ N water|ˮ +ˮʯ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +ˮ N land|½,#crop|ׯ +ˮ N electricity| +ˮ糧 N facilities|ʩ,space|ռ,*produce|,#electricity| +ˮ N expenditure|,#water|ˮ,#electricity| +ˮվ N facilities|ʩ,space|ռ,#electricity| +ˮ N disease| +ˮ N expenditure|,#water|ˮ +ˮ N attribute|,dampness|ʪ,&physical| +ˮ N information|Ϣ,$boast|,undesired|ݬ +ˮ N food|ʳƷ +ˮ N tool|þ,*MakeUp|ױ +ˮ N crop|ׯ +ˮ N tool|þ,cubic|,@put| +ˮ N facilities|ʩ,space|ռ,linear|,*drain|ų +ˮ N stone|ʯ,waste| +ˮ N material|,linear| +ˮ N fruit|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,red| +ˮ N tool|þ,cubic|,@put|,#liquid|Һ +ˮ N tool|þ,cubic|,@put|,#liquid|Һ,*irrigate| +ˮ N water|ˮ +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ N phenomena|,lack|ȱ,#water|ˮ +ˮ ADJ phenomena|,undesired|ݬ,#unfortunate| +ˮ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +ˮ N land|½,#crop|ׯ +ˮ N food|ʳƷ +ˮ V StateChange|̬,StateFin=liquid|Һ,industrial| +ˮ N material|,?tool|þ,#decorate|װ,precious| +ˮ N facilities|ʩ,*obtain|õ,#liquid|Һ +ˮ N drinks|Ʒ,$addict|Ⱥ +ˮ N facilities|ʩ,space|ռ,*store|,#liquid|Һ +ˮ N weapon|,*attack|,#ship| +ˮ N affairs|,*manage|,#water|ˮ +ˮ N institution|,*manage|,#water|ˮ,ProperName|ר,politics| +ˮѧ N human|,#knowledge|֪ʶ +ˮ V produce|,PatientProduct=electricity| +ˮƷ N method|,*cure|ҽ +ˮҽ N human|,medical|ҽ,*cure|ҽ +ˮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ˮ ADJ aValue|ֵ,taste|ζ,good|,desired| +ˮ N waters|ˮ,linear| +ˮ N water|ˮ +ˮͷ N part|,%tool|þ,*OpenShut| +ˮ· N facilities|ʩ,route|·,#waters|ˮ +ˮ½ N earth| +ˮ½ ADJ aValue|ֵ,ability|,able|,alive|,#land|½,#waters|ˮ +ˮ ADJ aValue|ֵ,color|ɫ,green| +ˮ N tool|þ +ˮַ N machine|,*produce|,#electricity| +ˮֻ N machine| +ˮ N part|,%building|,*drain|ų,#liquid|Һ +ˮʯ V exposure|¶ +ˮ͡ N material|,*build| +ˮ N fruit|ˮ +ˮ N attribute|,area|,&waters|ˮ +ˮ N attribute|,surfacial|,&waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮĥ N tool|þ,*grind|ĥ +ˮĥ N tool|þ,@grind|ĥ +ˮĥʯ N material| +ˮī N image|ͼ,$draw| +ˮ N material|,*build| +ˮ೧ N InstitutePlace|,@produce|,#material|,factory|,industrial| +ˮ N tool|þ,*grind|ĥ +ˮţ N livestock| +ˮů N affairs|,*provide|,#warm| +ˮů N human|,#occupation|ְλ,industrial| +ˮ N disease| +ˮ N shape|,liquid|Һ +ˮƽ ADJ aValue|ֵ,posture|,horizontal| +ˮƽ N attribute|,rank|ȼ,&thing| +ˮƽ N shape|,surfacial|,level|ƽ +ˮƽ N shape|,linear|,level|ƽ +ˮ N gas| +ˮ N bird| +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N fact|,sport| +ˮ N tree| +ˮ N facilities|ʩ,#liquid|Һ,linear| +ˮҺ N water|ˮ,*contain|,#material| +ˮ齻 ADJ aValue|ֵ,relatedness|,intimate|,desired| +ˮɼ N tree| +ˮ ADJ aValue|ֵ,performance| +ˮϷɻ N aircraft|,*SelfMove|,#waters|ˮ +ˮϻ ADJ aValue|ֵ,performance| +ˮϻԱ N human|,#occupation|ְλ,*check|,police|,#waters|ˮ +ˮϾ N human|,*reside|ס,#waters|ˮ +ˮ N beast| +ˮ N attribute|,depth|,&water|ˮ +ˮ N animal|,#waters|ˮ +ˮֲ N plant|ֲ,#waters|ˮ +ˮʦ N army|,#waters|ˮ +ˮʭ N InsectWorm|,undesired|ݬ +ˮ N attribute|,circumstances|,&water|ˮ +ˮ N human|,#occupation|ְλ,employee|Ա,#ship| +ˮ N facilities|ʩ,*provide|,#water|ˮ +ˮ̡ N beast| +ˮ N waters|ˮ,surfacial| +ˮ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ˮͰ N tool|þ,cubic|,@put|,#liquid|Һ +ˮͷ N water|ˮ +ˮ N attribute|,circumstances|,&entity|ʵ +ˮ N land|½ +ˮ N fact|,*maintain|,#land|½ +ˮʧ N phenomena|,lose|ʧȥ,#stone|ʯ +ˮ ADJ aValue|ֵ,brightness|,bright| +ˮλ N attribute|,height|߶,&waters|ˮ +ˮ N attribute|,temperature|¶,&water|ˮ +ˮ N knowledge|֪ʶ,#waters|ˮ,#liquid|Һ +ˮѧ N human|,#knowledge|֪ʶ +ˮվ N InstitutePlace|,check|,#waters|ˮ,#water|ˮ +ˮȾ N fact|,pollute|ʹ,#water|ˮ +ˮϵ N waters|ˮ +ˮ N location|λ,beneath|,#waters|ˮ +ˮ N FlowerGrass| +ˮɻ N FlowerGrass| +ˮ N mark|־,#liquid|Һ,#ship| +ˮ N tool|þ,cubic|,@put| +ˮ N place|ط,#waters|ˮ +ˮйͨ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ˮк V StomachTrouble|֢ +ˮ N celestial| +ˮ N attribute|,ability|,#swim|,&human| +ˮѭ N weather| +ˮѹ N attribute|,strength|,&water|ˮ +ˮ N addictive|Ⱥ +ˮ N tree| +ˮ N chemical|ѧ +ˮ N metal| +ˮӡ N mark|־,#money| +ˮ N waters|ˮ +ˮԴ N location|λ,#waters|ˮ +ˮ V transport| +ˮ N phenomena|,undesired|ݬ,#unfortunate| +ˮ V bury| +ˮ N AlgaeFungi|ֲ +ˮ N InsectWorm| +ˮբ N facilities|ʩ,#waters|ˮ +ˮǴ V prosper| +ˮ N gas| +ˮ N attribute|,quality|,&liquid|Һ +ˮ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ˮ N disease|,swollen| +ˮ N water|ˮ +ˮ N water|ˮ +ˮ׼ N attribute|,rank|ȼ,&thing| +ˮԴ N water|ˮ +ˮ N community| +ˮ N fish|,generic|ͳ +ˮ N InstitutePlace|,*display|չʾ,#fish| +ˮ N facilities|ʩ,space|ռ,@reside|ס +ˮ N InsectWorm| +ˮ N InsectWorm| +ˮ N InsectWorm| +˯ V sleep|˯ +˯ N tool|þ,cubic|,@sleep|˯ +˯ V sleep|˯ +˯ N human|,*sleep|˯,lazy| +˯ N FlowerGrass| +˯ñ N clothing|,#head|ͷ,#sleep|˯ +˯ N fact|,sleep|˯ +˯ V sleep|˯ +˯ V awake| +˯ N clothing|,#sleep|˯ +˯ V sleep|˯ +˰ N expenditure| +˰ N quantity|,amount|,&expenditure| +˰ N expenditure| +˰ N affairs|,#expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N expenditure| +˰ N quantity|,rate|,&expenditure| +˰Ŀ N part|,%affairs|,#expenditure| +˰ N fund|ʽ,$levy| +˰ N fact|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N institution|,*levy|,#expenditure| +˰Ա N human|,#occupation|ְλ,*receive|,#expenditure|,official| +˰ N regulation|,#expenditure| +˰ N system|ƶ,#expenditure| +˰ N attribute|,kind|,&expenditure| +˱ V drink| +˱ V drink| +˲ V CausePartMove|,PatientPartof=eye| +˲ ADJ aValue|ֵ,duration|,TimeShort| +˲ʱ ADJ aValue|ֵ,duration|,TimeShort| +˲Ϣ ADJ aValue|ֵ,ability|,able|,change| +˳ V PutInOrder| +˳ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +˳ V lucky| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ N quantity|,amount|,#earn|׬,&commercial| +˳ ADJ aValue|ֵ,circumstances|,free|,desired| +˳ ADJ aValue|ֵ,content|,fluent|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ V surrender| +˳ N place|ط,city|,ProperName|ר,(China|й) +˳ ADJ aValue|ֵ,SoundQuality|,good|,desired| +˳ V visit| +˳ N use| +˳ N wind| +˳Ͷ V please|ȡ +˳ N phenomena|,desired|,#lucky| +˳ ADJ aValue|ֵ,behavior|ֹ,careless| +˳ ADJ aValue|ֵ,content|,easy|,desired| +˳ ADJ aValue|ֵ,taste|ζ,good|,desired| +˳ N text| +˳ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,succeed|ɹ,desired| +˳· N location|λ,%route|· +˳ʱ ADJ aValue|ֵ,direction| +˳ ADV aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ ADV aValue|ֵ,time|ʱ,convenient| +˳ ADJ aValue|ֵ,behavior|ֹ,convenient|,desired| +˳ǣ V steal|͵ +˳ˮ V use| +˳ V lucky| +˳ V investigate| +˳ ADJ aValue|ֵ,circumstances|,good|,desired| +˳ ADJ aValue|ֵ,sequence| +˳ N attribute|,sequence|,&entity|ʵ +˳ V delay| +˳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +˳Ӧ V obey|ѭ +˳ PREP {direction} +˴ N human|,royal|,ProperName|ר,past| +˵ V ExpressAgainst|Ǵ +˵ V explain|˵ +˵ N knowledge|֪ʶ +˵ V mean|ָ +˵ V persuade|Ȱ˵ +˵ V speak|˵ +˵ ADV {comment|} +˵ȥ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +˵ V FitNot| +˵ V ignorant|֪ +˵ V sing|,entertainment| +˵ V speak|˵ +˵ V reveal|¶ +˵ N text|,$speak|˵ +˵ V boast| +˵ ADV {comment|} +˵ V speak|˵ +˵ùȥ ADJ aValue|ֵ,standard|׼,average| +˵ V fit|ʺ +˵ V MakeAppointment|Լ +˵ V explain|˵,content=reason| +˵ N method|,*use|,#expression|,#compile|༭ +˵ N thought|ͷ +˵ V persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,unable|ӹ,$persuade|Ȱ˵ +˵ ADJ aValue|ֵ,ability|,persuade|Ȱ˵ +˵ V mediate| +˵ V mediate| +˵ V speak|˵ +˵ V talk|̸ +˵ V deceive|ƭ +˵ N human|,*deceive|ƭ +˵ V explain|˵ +˵ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +˵ V debate| +˵ý V mediate|,ResultEvent=GetMarried| +˵ V explain|˵ +˵ N readings|,*explain|˵ +˵ ADJ aValue|ֵ,ability|,able|,explain|˵ +˵ N human|,*explain|˵ +˵ V mediate|,ResultEvent=GetMarried| +˵ V request|Ҫ,ResultEvent=forgive|ԭ +˵ V TalkNonsense|Ϲ˵ +˵ V perform| +˵ͷ N information|Ϣ +˵ͷ N reason|,undesired|ݬ +˵ V praise|佱 +˵Ц V speak|˵ +˵һ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +˵ V boast| +˵ V debate| +˵ V quarrel| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ ADJ aValue|ֵ,size|ߴ,big| +˶ N result|,desired|,#succeed|ɹ +˶ N physical|,precious| +˶ ADJ qValue|ֵ,amount|,few| +˶ʿ N human|,*study|ѧ,education| +˶ʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +˶ѧ ADJ aValue|ֵ,wise|,desired| +˶ѧ N human|,wise|,desired| +˶ѧͨ N human|,wise|,desired| +˷ ADJ aValue|ֵ,direction|,north| +˷ N celestial|,space|ռ +˷ N time|ʱ,day| +˷ N time|ʱ,day| +˷ N celestial|,space|ռ +˸ ADJ aValue|ֵ,brightness|,bright| +˸ ADJ aValue|ֵ,brightness|,bright| +˸˸ V illuminate| +˹ ADJ aValue|ֵ,kind|,special| +˹ N human|,official|,ProperName|ר,(USSR|) +˹¸Ħ N place|ط,capital|,ProperName|ר,(Sweden|) +˹ά N place|ط,ProperName|ר +˹ά N human|,(Scandinavia|˹ά) +˹ͼ N place|ط,capital|,ProperName|ר,(Brunei|) +˹ N place|ط,country|,ProperName|ר,(Asia|) +˹¬ N money|,(Sri Lanka|˹) +˹工 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovakia|˹工) +˹工 N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹工 N language|,#country|,ProperName|ר +˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Slovenia|˹) +˹ N place|ط,country|,ProperName|ר,(Europe|ŷ) +˹ N language|,#country|,ProperName|ר +˹˹ N place|ط,city|,ProperName|ר,(France|) +˹ͼ N place|ط,city|,ProperName|ר,(Germany|¹) +˹ϣ N language|,#country|,ProperName|ר +˹ʿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Swaziland|˹ʿ) +˹ʿ N place|ط,country|,ProperName|ר,(Africa|) +˹ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V split|ƿ +˺ V quarrel| +˺ V split|ƿ +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˻ V cry|,#livestock| +˻ V cry| +˻ V cry|,#livestock| +˻ ADJ aValue|ֵ,SoundVolume|,weak| +˼ V ThinkOf|˼ +˼ N thinking|˼ +˼ V think|˼ +˼ N attribute|,outlook|ǰ,&thinking|˼ +˼ V think|˼ +˼ V ThinkOf|˼ +˼ V think|˼ +˼· N thinking|˼ +˼ V think|˼ +˼Ľ V admire|Ľ +˼ V ThinkOf|˼ +˼ V think|˼ +˼Ω N thinking|˼ +˼Ω V think|˼ +˼ά N thinking|˼ +˼ά V think|˼ +˼ V ThinkOf|˼,content=family| +˼粡 N disease| +˼ N thinking|˼ +˼ N thought|ͷ +˼뷽 N method|,*think|˼ +˼ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +˼ N human|,#knowledge|֪ʶ +˼ϵ N thinking|˼ +˼ N problem|,#thinking|˼ +˼ʶ N thinking|˼ +˼ N thinking|˼ +˼ V think|˼ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret| +˽ ADJ aValue|ֵ,standard|׼,useless|,crime|,undesired|ݬ +˽ V flee|,cause=GetMarried| +˽ V own|,manner=crime| +˽ N emotion|,hate|,undesired|ݬ +˽ V GoInto|,manner=secret| +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N law|ɷ +˽ ADJ aValue|ֵ,content|,secret| +˽ N wealth|Ǯ +˽Ǯ N wealth|Ǯ +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle|˽) +˽ N artifact|˹,undesired|ݬ,generic|ͳ,$(smuggle˽) +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N wealth|Ǯ,private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ѧ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ѧУ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ V handle|,manner=private|˽ +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽ N human|,private|˽ +˽˷ V visit|,manner=private|˽ +˽˹ϵ V attribute|,relatedness|,private|˽,&human| +˽ V human|,#occupation|ְλ,employee|Ա,private|˽ +˽ҵ V InstitutePlace|,private|˽,commercial| +˽ N human|,#occupation|ְλ,commercial| +˽ N fact|,private|˽ +˽ N human|,family|,young| +˽ N fact|,private|˽ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ N thought|ͷ,undesired|ݬ,greedy|̰ +˽Ӫ ADJ aValue|ֵ,attachment|,private|˽ +˽Ӫҵ N InstitutePlace|,commercial|,industrial| +˽ ADJ aValue|ֵ,attachment|,private|˽ +˽л V ize|̬,PatientAttribute=private|˽ +˽ N system|ƶ,#attachment|,private|˽ +˽ V speak|˵,manner=secret| +˽ N aspiration|Ը,expect|,self| +˽ V transport|,manner=secret|,crime|,commercial| +˽ N stationery|ľ +˽ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +˽ۡ N house|,private|˽ +˽ N InstitutePlace|,@teach|,@study|ѧ,education|,private|˽ +˽ N human|,undesired|ݬ,female|Ů,crime|,#SeekPleasure|Ѱ,*(be a prostitute|) +˾ N character|,surname|,human|,ProperName|ר +˾ V manage| +˾ N part|,%institution| +˾ ADJ aValue|ֵ,attachment|,#police| +˾ ADJ aValue|ֵ,performance|,*conduct|ʵʩ,#law|ɷ,police| +˾ V conduct|ʵʩ,patient=law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾ N human|,police|,*judge|ö,#crime| +˾ N institution|,*conduct|ʵʩ,#law|ɷ,police| +˾Ա N human|,military| +˾ N human|,#occupation|ְλ,*drive|Ԧ,#LandVehicle| +˾ N character|,surname|,human|,ProperName|ר +˾ռ ADJ aValue|ֵ,kind|,ordinary| +˾ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N part|,%army|,*order| +˾ N human|,#occupation|ְλ,official|,military| +˾Ա N human|,#occupation|ְλ,official|,military| +˾¯ N human|,#occupation|ְλ,industrial| +˾ N character|,surname|,human|,ProperName|ר +˾ͽ N character|,surname|,human|,ProperName|ר +˾ N human|,#occupation|ְλ,official|,military| +˾ N human|,*manage| +˿ CLAS NounUnit|,&thing| +˿ N material|,?clothing|,?tool|þ +˿ N shape| +˿ N material|,?clothing|,?tool|þ +˿֮· N place|ط,ProperName|ר,(China|й) +˿ N tool|þ,linear|,*fasten|˩,*decorate|װ,$PutOn| +˿ N food|ʳƷ +˿ N part|,%vegetable|߲,embryo|,$eat| +˿ N vegetable|߲ +˿Ͻ N tool|þ,*wipe| +˿ N lights|,bright| +˿ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +˿ ADJ qValue|ֵ,amount|,few| +˿ N material|,?clothing|,?tool|þ +˿˿ ADJ aValue|ֵ,content|,concise|,desired| +˿ N clothing|,#foot| +˿ N tool|þ +˿ N part|,%MusicTool| +˿ N tool|þ,linear|,*fasten|˩ +˿֯Ʒ N clothing| +˿ N MusicTool| +˿״ N shape| +˿׶ N tool|þ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,physique|,die| + V die| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + V labour|ٲ + N human|,undesired|ݬ,friend| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N human|,enemy| + N phenomena|,dangerous|Σ + N waters|ˮ,ProperName|ר +ͬ N facilities|ʩ,route|· + N fact|,punish|,#detain|ס,police| +Ҹȼ V BeRecovered|ԭ + ADJ aValue|ֵ,will|־,strong|ǿ,desired| +Ӳ V study|ѧ,manner=stiff| + N location|λ + N shape| + V escape|,ResultEvent=die| + N material|,?food|ʳƷ + V die| +ʿ N human|,*die|,desired| +Ƥ V IllBehave| +Ƥ V shameless|û + V IllBehave| + V aValue|ֵ,behavior|ֹ,passive| + N human|,crime|,undesired|ݬ,$judge|ö,#die| +ȥ V die| +ȥ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N human|,*die| + N phenomena|,wounded|,die| + N humanized|,*kill|ɱ,undesired|ݬ +ʬ N part|,%AnimalHuman|,*die|,body| + V defend|,manner=endeavour|,military| + V obey|ѭ,manner=stiff| +ˮ N water|ˮ +̥ N part|,%AnimalHuman|,embryo| + ADJ aValue|ֵ,physique|,die| + V die| + N quantity|,rate|,die|,&human| + N location|λ,#die| + V abandon|,possession=thought|ͷ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +۶ N human|,stiff|,stubborn|,undesired|ݬ + N information|Ϣ,$tell|,#die| + N letter|ż,unable|ӹ,$post|ʼ + N fact|,punish|,#kill|ɱ,police| +һ ADJ aValue|ֵ,behavior|ֹ,passive| + N cause|ԭ,#die| +Ӳ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +๼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ڷ V die| + N human|,*die| + N human|,die| + N InstitutePlace|,commercial|,*sell| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + NUM qValue|ֵ,amount|,cardinal|,mass| +Ű V damage| +޼ɵ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N facilities|ʩ,religion|ڽ,space|ռ +¹ N facilities|ʩ,space|ռ,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ +Ժ N facilities|ʩ,religion|ڽ,space|ռ + ADV aValue|ֵ,time|ʱ + N human| + N human|,*receive| +ú ADV aValue|ֵ,time|ʱ + NUM qValue|ֵ,amount|,cardinal|,mass| + N symbol|,#music| +ı ADJ aValue|ֵ,form|״ +IJ ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +IJ N beast| +Ĵ ADJ aValue|ֵ,range|,all|ȫ +Ĵ N location|λ +Ĵ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ĵ ADJ aValue|ֵ,frequency|Ƶ +ķ ADJ aValue|ֵ,form|״,square| +ķ N direction| +ķ N location|λ +ķ V disperse|ɢ +ĺ N place|ط +ĺ N waters|ˮ,surfacial| +ĺԺ N building| +Ļ N medicine|ҩ +ļ N time|ʱ,season| +ļ N part|,%vegetable|߲,embryo|,$eat| +ļ N vegetable|߲ +Ľ N part|,%place|ط,surrounding|Χ,#city| +Ľ N beast| + N human|,*reside|ס,near| + ADV aValue|ֵ,space|ռ,all|ȫ +˷ N direction| +˷ N location|λ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,space|ռ,all|ȫ +ƽ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N human|,mass| + N sound|,#language| +ʱ N time|ʱ,season| +ͨ˴ ADV aValue|ֵ,space|ռ,all|ȫ + V look| +Χ N location|λ + ADV aValue|ֵ,space|ռ,all|ȫ + N location|λ +ԭ N regulation|,ProperName|ר,(China|й) +Ұ N place|ط + N time|ʱ,month| +· N time|ʱ,month| +֫ N part|,%AnimalHuman|,limb|֫ + N location|λ + V TakeCare| + V wait|ȴ +ź V TakeCare| +Ż V wait|ȴ,content=time|ʱ + V BeSimilar| + ADJ aValue|ֵ,behavior|ֹ,hidden| +ƺ ADJ aValue|ֵ,behavior|ֹ,hidden| +Ƕ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ʶ ADJ aValue|ֵ,relatedness|,intimate| + V foster|,agricultural|ũ +Dz N FlowerGrass|,*feed|ι,#animal| + N food|ʳƷ,*feed|ι,#animal| + V foster|,agricultural|ũ + N InstitutePlace|,@foster|,agricultural|ũ +Ա N human|,#occupation|ְλ,*foster|,agricultural|ũ + N symbol| +ʱ N time|ʱ,hour|ʱ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,tightness|ɽ,loose| + N character|,surname|,human|,ProperName|ר + V loosen| +ɰ V exempt|,ResultEvent=restrain|ֹ +ɰ V loosen| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɳ ADJ aValue|ֵ,circumstances|,relax|,desired| +ɳ ADJ aValue|ֵ,tightness|ɽ,loose| +ɳ ADJ aValue|ֵ,circumstances|,relax| +ɶ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ɶ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɶ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +ɹ N part|,%tree|,embryo| +ɹ N part|,%AnimalHuman|,head|ͷ +ɻ N food|ʳƷ +ɻ N food|ʳƷ +ɻ N waters|ˮ,linear|,ProperName|ר,(China|й) +ɼ N bird| +ɽ N attribute|,strength|,&inanimate| +ɽ N attribute|,tightness|ɽ,&inanimate| +ɾ V slack|͵ +ɿ V loosen| +ɿ ADJ aValue|ֵ,occasion|,^crowded|,desired| +ɿ V enjoy| + N tree| +ë N InsectWorm| + N material|,*lighting|ȼ +ľ N material|,wood|ľ + ADJ aValue|ֵ,hardness|Ӳ,soft| + ADJ aValue|ֵ,tightness|ɽ,loose| +ɢ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɢ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + V release|ͷ + N beast| + N tree| +ɿ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ɿ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ + N material| + N material|,liquid|Һ +и ADJ aValue|ֵ,circumstances|,relax| +и V weaken| +ī N PenInk|ī,*write|д + N part|,%plant|ֲ,hair|ë +֬ N material| + N part|,%tree|,embryo| +ަ N AlgaeFungi|ֲ,$eat| + ADJ aValue|ֵ,height|߶,tall| + V frighten|Ż + V upmove| +ʼ V CausePartMove|,PatientPartof=arm| + V stand|վ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V incite|ָʹ + V praise|佱 +̸ N text|,*praise|佱 + V praise|佱 + V GiveAsGift| + V farewell| + V follow| + V transmit| +ͱ V farewell| +͸ V GiveAsGift| +ͻ V return| +ͻ V transport|,patient=physical| +ͽ V submit| +ͽ V transmit| +Ϳ V farewell| + V GiveAsGift|,possession=physical| + V die| + V exhale| + V GiveAsGift|,possession=physical| + V help| +ӭ V welcome|ӭ +Ŷ V tell| + N human|,*post|ʼ + V farewell| + V condole|° + V condole|° + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +γ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +δ N text| +δ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N fact|,quarrel| +Ϲ N human|,police|,undesired|ݬ + V recite|ж +ж V recite|ж +о V recite|ж,content=text|,religion|ڽ + V LookFor|Ѱ +Ѳ V catch|׽ס,means=LookFor|Ѱ,police| +Ѳ V LookFor|Ѱ +ѹ V rob| +Ѽ V gather|ɼ,means=LookFor|Ѱ + V gather|ɼ,means=LookFor|Ѱ + V include|,means=LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,location=body| + V LookFor|Ѱ,location=human| + V LookFor|Ѱ +Ѱ V LookFor|Ѱ + CLAS NounUnit|,&ship| + V pant| + N sound| + V awake| + N character|,surname|,human|,ProperName|ר +մ N chemical|ѧ +յ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sudan|յ) +յ N place|ط,country|,ProperName|ר,(Africa|) +յ N money|,(Sudan|յ) +յ N language|,#country|,ProperName|ר +ո N place|ط,ProperName|ר,(UK|Ӣ) +ոǶ N language|,#country|,ProperName|ר +ո N human|,(Scotland|ո) +տ N money|,(Ecuador|϶) +տ N place|ط,capital|,ProperName|ר,(Bolivia|ά) + N place|ط,city|,ProperName|ר,(Switzerland|ʿ) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Surinam|) + N place|ط,country|,ProperName|ר,(South America|) +϶ N money|,(Surinam|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Soviet Union|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N place|ط,capital|,ProperName|ר,(Fiji|쳼) + V awake| + N tool|þ,*decorate|װ +ʿ˺ N waters|ˮ,linear|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,hardness|Ӳ,crisp| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ִ ADJ aValue|ֵ,hardness|Ӳ,crisp| + V paralyse|̱ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N food|ʳƷ +Ͳ N food|ʳƷ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + ADJ aValue|ֵ,kind|,ordinary| + ADJ attribute|,habit|ϰ,&human|,&organization|֯ +׳ V naming| +׻ N expression| +׻˵ ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ + N human|,^religion|ڽ + N human|,vulgar|,undesired|ݬ + N attribute|,habit|ϰ,&human|,&organization|֯ + N text| + ADJ aValue|ֵ,color|ɫ,plain| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ + N food|ʳƷ + N part|,%thing| +زʶ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +ز N information|Ϣ,?publications|鿯,#shows|,literature| +ز N food|ʳƷ +ز V eat| +ز N food|ʳƷ +س ADV aValue|ֵ,frequency|Ƶ,regular| +ص ADJ aValue|ֵ,color|ɫ,plain| +ؾ ADJ aValue|ֵ,color|ɫ,plain| +ؾ N drinks|Ʒ,$addict|Ⱥ + ADV aValue|ֵ,frequency|Ƶ,often| +ƽ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ + V draw|,manner=simple| + ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + ADV aValue|ֵ,frequency|Ƶ,regular| +ɫ N attribute|,color|ɫ,plain|,&physical| +ʳ V eat| +ʳ N food|ʳƷ +ʳ N human|,*eat|,#vegetable|߲ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,rank|ȼ,#mental|,&human| + N material|,?food|ʳƷ + N attribute|,quality|,&human| + N attribute|,quality|,&human|,&organization|֯ + ADJ aValue|ֵ,speed|ٶ,fast| + N attribute|,speed|ٶ,&act|ж +ٳ ADJ aValue|ֵ,speed|ٶ,fast| +ٵ V post|ʼ +ٶ V cool| +ٶ N attribute|,speed|ٶ,&AlterLocation|ռλ +ٶ N attribute|,boundary|,&speed|ٶ +ټ N human|,*record|¼,fast| +ټ V record|¼,manner=fast| +ټԱ N human|,*record|¼ +پ V handle|,manner=fast| + N quantity|,rate|,&speed|ٶ +Ч ADJ aValue|ֵ,effect|Ч +д V draw|,manner=fast| + N crop|ׯ + V produce| +ܽ N material| + N material|,?tool|þ +ϲ N material| +ϴ N tool|þ,cubic|,@put| + N image|ͼ,$carve| + N attribute|,behavior|ֹ,flexible|,&thing| + V produce| + V LookBack| +Դ V LookFor|Ѱ,content=base| + ADJ aValue|ֵ,age|,aged| + N character|,surname|,human|,ProperName|ר + V reside|ס +޸ N part|,%plant|ֲ,base| +޽ N human|,official|,military| + ADJ aValue|ֵ,attachment|,knowledge|֪ʶ + N knowledge|֪ʶ + N human| + N house| +Ӫ V reside|ס,military| +Ը N aspiration|Ը,expect| + N animate| + V accuse|ظ + V explain|˵ + V tell| +߾ V tell|,target=police| +߿ V tell|,content=unfortunate| +˵ V explain|˵ + N fact|,accuse|ظ,police| +ϵ N human|,*accuse|ظ,police| +Ϸ N law|ɷ + N human|,*accuse|ظ,police| +״ N document|,*accuse|ظ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V stand|վ,manner=stately|ׯ + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V destroy| + N part|,%army| +Ȼ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| + N food|ʳƷ + V sorrowful| + N quantity|,rate|,#chemical|ѧ,&inanimate| + N quantity|,rate|,#chemical|ѧ,&inanimate| + ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,sour| + V painful|ʹ + V sorrowful| +÷ N food|ʳƷ +÷ N fruit|ˮ + N drinks|Ʒ +ţ N drinks|Ʒ + V paralyse|̱ + N phenomena|,undesired|ݬ +ʹ V painful|ʹ +ϴ V produce| + ADJ aValue|ֵ,taste|ζ,sour| + N attribute|,property|,#chemical|ѧ,&inanimate| + N RainSnow|ѩ + N fruit|ˮ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N food|ʳƷ,#vegetable|߲ +ͷ N vegetable|߲ + V RegardAs| + V calculate| + V contain| + V plan|ƻ + V think|˼ + V RegardAs| +㷨 N method|,#software| + V calculate| + V plan|ƻ + V predict|Ԥ + V think|˼ + V guess|² + N human|,*guess|² + N tool|þ,*calculate| + ADV aValue|ֵ,time|ʱ,ending|ĩ + N method|,*calculate| + V be|,descriptive=true| + V calculate| + V calculate|,content=wealth|Ǯ + V revenge| + CONJ {concession|ò} +Ȼ CONJ {concession|ò} +˵ CONJ {concession|ò} + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +峯 N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + V BeSimilar| + V act|ж,manner=free| + V follow| + V obey|ѭ + N text| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V act|ж,manner=free| +沨 V obey|ѭ +沨 ADJ obey|ѭ +泵Я V bring|Я +洦 ADV aValue|ֵ,location|λ,all|ȫ + V follow| + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + V obey|ѭ,content=mass| + V bring|Я + ADJ aValue|ֵ,range|,all|ȫ +絹 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ת ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +溯 V include| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADV aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + N attribute|,behavior|ֹ,free|,&event|¼ +Ӧ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +漴 ADV aValue|ֵ,duration|,TimeShort| +浽 EXPR LeaveFor|ǰ + V follow|,partner=army| + ADJ aValue|ֵ,behavior|ֹ,careless| + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ʱ ADV aValue|ֵ,frequency|Ƶ,often| +ʱı䲻֪ͨ EXPR expression| +ʱ ADV aValue|ֵ,frequency|Ƶ,often| + ADV aValue|ֵ,behavior|ֹ,convenient|,desired| + V obey|ѭ,content=regulation| +ͬ V follow| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V follow| +о V QuantityChange|,commercial| +Ա N human|,*TakeCare| + ADV aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +Ա N human|,#occupation|ְλ,*TakeCare|,employee|Ա +Ա N human|,#occupation|ְλ,official|,diplomatic|⽻ + V bury| +֮ PREP {accompaniment} + PREP {accompaniment} + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +羸 V attack| + N part|,%AnimalHuman| + N part|,%AnimalHuman|,bone| + V AlterForm|״ + ADJ aValue|ֵ,behavior|ֹ,boring|,undesired|ݬ + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + V AlterForm|״ +Ƭ N part|,%physical| +ʯ N stone|ʯ +м N shape| + N human|,*FondOf|ϲ,#speak|˵ + N attribute|,age|,&animate| + N time|ʱ,year| +ĩ N part|,%time|ʱ,year|,ending|ĩ +ĺ N time|ʱ,ending|ĩ,year| +ʱ N time|ʱ,season| + N time|ʱ,early|,year| + N attribute|,age|,&animate| + N time|ʱ,year| +β N part|,%time|ʱ,year|,ending|ĩ + N celestial| + N time|ʱ + N part|,%plant|ֲ,hair|ë + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + V fulfil|ʵ + V succeed|ɹ + V satisfied| + V satisfied| + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N facilities|ʩ,route|· + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N human|,family|,mass| +Ů N human|,family|,female|Ů +ɽ N human|,official|,politics|,ProperName|ר,(China|й) + N human|,family|,male| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V exhaust| + V subtract| +𹫷˽ V steal|͵ + V damage| + V offend| + V exhaust| + V damage| + V destroy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V damage| + V wounded| +ʧ V lose|ʧȥ +ʧ⳥ N expenditure|,$recompense| + N attribute|,effect|Ч,&event|¼ + N document| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N bird| + N clothing|,#RainSnow|ѩ + N part|,%machine| + CLAS NounUnit|,&weapon| + N part|,%machine| + N part|,%weapon| +з N fish| + V incite|ָʹ +ʹ V incite|ָʹ + V CausePartMove| + V shrink|С + V shrink|С,scope=length| + V StateChange|̬,industrial| + V CausePartMove| + V subtract| + N human|,*subtract| + ADJ aValue|ֵ,behavior|ֹ,cautious|,undesired|ݬ +ˮ V FormChange|α,StateFin=shrink|С +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ͷ V evade|ر,content=duty| +ͷ V fear| +΢ V shrink|С +С V shrink|С +С V subtract| +д V compile|༭,means=subtract| +ӡ V print|ӡˢ,means=subtract| +Ӱ N entity|ʵ + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + N fact|,trivial| + ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ϸ ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ + V LookFor|Ѱ + ADJ aValue|ֵ,content|,boring|,undesired|ݬ + V beg| + N character|,surname|,human|,ProperName|ר + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,route|· +Ȳ N place|ط,capital|,ProperName|ר,(Zimbabwe|ͲΤ) + N place|ط,capital|,ProperName|ר,(Bulgaria|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Somalia|) + N place|ط,country|,ProperName|ר,(Africa|) + N money|,(Somalia|) + N language|,#country|,ProperName|ר + V request|Ҫ,ResultEvent=recompense| +ȡ V request|Ҫ +Ȼ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ȼζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +Ҫ V request|Ҫ + N document|,@record|¼ + V fasten|˩ + V fix|ס + N method|,*fasten|˩ + N tool|þ,*fix|ס,*fasten|˩ + N part|,%AnimalHuman|,bone| + N part|,%machine| + N tool|þ,police|,*fix|ס,#crime| + V *fix|ס,Vachieve| +Կ N part|,%place|ط,important|,mouth| +Կ N tool|þ,*open| +ס V *fix|ס,Vachieve| + N InstitutePlace| + N InstitutePlace|,*research|о + CLAS NounUnit|,&InstitutePlace|,&house| + STRU {DeChinese|} + N attribute|,quality|,strong|ǿ,desired|,&thing| + N human|,#occupation|ְλ,official| +˰ N expenditure| + N information|Ϣ + N place|ط,country|,ProperName|ר +Ⱥ N place|ط,ProperName|ר +Ⱥ N place|ط,ProperName|ר,(Oceania|) +ν ADJ aValue|ֵ,trueness|α,fake|α +ν V be| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ǰ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ҵ ADV {comment|} + CONJ {EventResult|¼} +Ȼ N reason| + V own| + ADJ qValue|ֵ,amount|,all|ȫ +е N human|,mass| +и ADJ aValue|ֵ,attachment| +Ȩ N rights|Ȩ,#own| + N human|,*own| + N human|,own| + N system|ƶ,#rights|Ȩ,#own| + N location|λ,space|ռ +ڵ N place|ط +Ϊ N attribute|,behavior|ֹ,&human| + V FallDown| + V FormChange|α,StateFin=dented| + ADJ aValue|ֵ,form|״,dented| + V sink|³ + ADJ aValue|ֵ,form|״,flat| + N fact|,sink|³,#land|½ + V FallDown| +ʵ V AtEase| +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̨ V FallDown| +̨ V end|ս + V sink|³ + ADJ aValue|ֵ,kind|,other| + PRON {ThirdPerson|,male|} +» N language|,#country|,ProperName|ר + EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ + PRON {ThirdPerson|,mass|} + PRON {ThirdPerson|} + N time|ʱ,future| +ɱ N fact|,$kill|ɱ,#police| + N place|ط,other| + V CauseToMove| + PRON {it|} + PRON {ThirdPerson|,mass|} + PRON {it|,mass|} + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,mass|} + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,religion|ڽ + N implement|,@produce|,#chemical|ѧ + N machine|,*lift| + N material|,?clothing| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) + N place|ط,country|,ProperName|ר +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tajikistan|˹̹) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר + N money|,(Bangladesh|ϼ) +¥ N house|,tall| +¥ N part|,%house|,head|ͷ + N place|ط,capital|,ProperName|ר,(Madagascar|˹) +ʲ N place|ط,capital|,ProperName|ר,(Uzbekistan|ȱ˹̹) +˹ N institution|,news|,ProperName|ר,(Russia|˹) +̨ N facilities|ʩ,space|ռ,@control|,#aircraft| +̡ N beast| +̢ V beat| +̤ V kick|߲ +̤ N part|,MusicTool| +̤ N part|,implement| +̤ V kick|߲ +̤ V investigate| +̤ V investigate| +̤ V tour| +̤ʵ V AtEase| +̤ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̤̤ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̥ N fact|,ComeToWorld| +̥ N material|,*fill| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%LandVehicle|,leg| +̥ N part|,%tool|þ,#produce|,embryo| +̥ N phenomena|,#embryo| +̥ N part|,%AnimalHuman|,embryo| +̥ N part|,%AnimalHuman|,hair|ë +̥ N trace|,#human|,#ComeToWorld| +̥ N fact|,teach|,#embryo| +̥ë N part|,%AnimalHuman|,hair|ë +̥Ĥ N part|,%AnimalHuman| +̥ N part|,%AnimalHuman| +̥ ADJ aValue|ֵ,attachment| +̥λ N location|λ,#embryo|,@situated| +̥ N part|,%AnimalHuman|,embryo| +̦ N AlgaeFungi|ֲ +̦޺ N AlgaeFungi|ֲ +̧ V hold| +̧ V lift| +̧ V BecomeMore| +̧ V add| +̧ V BecomeMore|,scope=price|۸ +̧ V praise|佱 +̧ V quarrel| +̧ͷ V CausePartMove|,PatientPartof=head|ͷ +̧ͷ N trace|,#head|ͷ +̨ N InstitutePlace|,@disseminate| +̨ CLAS NounUnit|,&implement| +̨ N character|,surname|,human|,ProperName|ר +̨ N facilities|ʩ,@disseminate| +̨ N furniture|Ҿ,space|ռ,@put| +̨ N implement|,*PropUp|֧ +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N shape| +̨ N shape|,space|ռ +̨ N place|ط,city|,ProperName|ר,(China|й) +̨ N tool|þ +̨ N text| +̨ N tool|þ,*illuminate| +̨ N land|½ +̨ N wind| +̨ N facilities|ʩ,mine| +̨ N part|,%building|,nerve| +̨ N time|ʱ,@escape|,#circumstances| +̨ N tool|þ,*show|,#time|ʱ +̨ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +̨ǯ N tool|þ,*hold| +̨ N SportTool|˶ +̨ N fact|,exercise| +̨ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +̨ N human|,important|,able|,desired| +̨ N SportTool|˶ +̨ N furniture|Ҿ,space|ռ,@put| +̨ N shape|,space|ռ +̩ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̩ N place|ط,country|,ProperName|ר,(Thailand|̩) +̩ N human|,able|,desired| +̩ N human|,ProperName|ר,literature| +̩ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Thailand|̩) +̩ N place|ط,country|,ProperName|ר,(Asia|) +̩¬ N language|,#country|,ProperName|ר +̩Ȼ V calm| +̩Ȼ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ N human|,family|,male| +̩ɽ N land|½,ProperName|ר,(China|й) +̩ɽ N human|,desired| +̩ɽѹ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +̩ N language|,#country|,ProperName|ר +̩ N money|,(Thailand|̩) +̪ N chemical|ѧ +̫ ADV aValue|ֵ,degree|̶,very| +̫ N celestial| +̫ N human|,young|,rash|ç,undesired|ݬ +̫ N human|,family|,male| +̫ N time|ʱ,past| +̫ N human|,royal|,female|Ů +̫ȭ N fact|,exercise|,sport| +̫ N human|,employee|Ա,#royal| +̫ N sky| +̫ N facilities|ʩ,space|ռ,religion|ڽ +̫ƽ ADJ aValue|ֵ,circumstances|,peaceful|,desired| +̫ƽ N room|,@put|,#human|,#die|,medical|ҽ +̫ƽ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +̫ƽ N waters|ˮ,surfacial|,ProperName|ר +̫ N human|,family|,female|Ů +̫ϻ N human|,official| +̫ϻ N human|,royal| +̫ ADV aValue|ֵ,degree|̶,very| +̫ʦ N furniture|Ҿ,@sit| +̫ N character|,surname|,human|,ProperName|ר +̫ͷ϶ V offend| +̫̫ N human|,female|Ů +̫Ϣ V sigh|̾ +̫ N celestial|,space|ռ +̫ N celestial| +̫ N lights|,#celestial| +̫ N tool|þ,#lights|,#celestial| +̫ N part|,%celestial| +̫ N tool|þ,*protect|,#eye|,#look| +̫ N attribute|,strength|,&celestial| +̫ϵ N system|ƶ,celestial| +̫ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| +̫ N celestial| +̫ԭ N place|ط,city|,ProperName|ר,(China|й) +̫ N human|,royal|,male| +̫Ӹ N place|ط,capital|,ProperName|ר,(Haiti|) +̬ N attribute|,PhysicState|״̬,&physical| +̬ N attribute|,appearance|,&physical| +̬ N attribute|,circumstances|,&physical| +̬ N attribute|,property|,&language| +̬ V StateChange|̬ +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,circumstances|,&physical| +̭ V discharge| +̮ V FallDown| +̮ V FallDown| +̨̮ V end|ս +̨̮ V suffer|,content=disgraced| +̨̮ V unfortunate| +̯ N InstitutePlace|,*sell|,commercial| +̯ CLAS NounUnit|,&liquid|Һ +̯ V bear|е +̯ V cook| +̯ V unfold|̯ +̯ N InstitutePlace|,*sell|,commercial| +̯ N InstitutePlace|,*sell|,commercial| +̯ N human|,#occupation|ְλ,*sell|,commercial| +̯ V issue|ַ +̯ V undergo| +̯ N sell|,commercial| +̯ V sell|,possession=artifact|˹ +̯ N InstitutePlace|,*sell|,commercial| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V need|,manner=greedy|̰ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#drink|,#addictive|Ⱥ,undesired|ݬ +̰ V need|,manner=greedy|̰,content=cheap| +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#wealth|Ǯ,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̰ N human|,*cheat|ƭ,official|,undesired|ݬ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ V FondOf|ϲ,manner=greedy|̰ +̰ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +̰ͼ V need|,manner=greedy|̰ +̰ͼ V seek|ıȡ +̰ V cheat|ƭ +̰۸ N cheat|ƭ +̰Сʧ V WorthNot|ֵ +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +̰ N aspiration|Ը,expect|,greedy|̰ +̰ V receive|,possession=artifact|˹,crime| +̰ V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α +̰ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat|,undesired|ݬ +̱ V paralyse|̱ +̱ V OutOfOrder| +̱ N disease| +̱ V paralyse|̱ +̱ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +̱ V paralyse|̱ +̲ N land|½,#waters|ˮ +̲Ϳ N land|½ +̳ N community| +̳ N facilities|ʩ,space|ռ +̳ N facilities|ʩ,space|ռ,@planting|ֲ +̳ N fact|,communicate| +̳ N furniture|Ҿ,space|ռ,@put| +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̳ N tool|þ,cubic|,@put|,#edible|ʳ +̴ N tree| +̴ N MusicTool| +̴ N tree| +̴ľ N wood|ľ +̴ɽ N place|ط,city|,ProperName|ר,(US|) +̴ N tool|þ,#wind|,*cool| +̵ N part|,%AnimalHuman|,waste|,liquid|Һ +̵Ͱ N tool|þ,cubic|,@put|,#liquid|Һ +̵ N tool|þ,cubic|,@put|,#liquid|Һ +̶ N waters|ˮ,surfacial| +̷ N character|,surname|,human|,ProperName|ר +̸ N character|,surname|,human|,ProperName|ר +̸ V discuss| +̸ V talk|̸ +̸ N text|,$talk|̸ +̸ V FitNot|,scope=associate| +̸ V explain|˵ +̸ V fit|ʺ,scope=associate| +̸ V attribute|,strength|,#talk|̸,&human| +̸ ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̸ɫ V fear| +̸ V talk|̸ +̸ N text|,$speak|˵ +̸ V associate|,#male|,#female|Ů,#love| +̸ V explain|˵ +̸ V discuss| +̸д N human|,*discuss| +̸ N furniture|Ҿ,*discuss| +̸ V explain|˵ +̸˵ V associate|,#male|,#female|Ů,#love| +̸̸ V talk|̸ +̸ V talk|̸ +̸˵ V talk|̸ +̸ N attribute|,behavior|ֹ,&human| +̸² N aValue|ֵ,behavior|ֹ,gracious|,desired| +̸Ц V talk|̸ +̸Ц V talk|̸,manner=joyful|ϲ +̸Ц V calm| +̸ V talk|̸,manner=sincere| +̸΢ ADJ aValue|ֵ,content|,profound|,desired| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ V calm| +̹ N place|ط,country|,ProperName|ר,(Tanzania|̹ɣ) +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹ V admit| +̹ ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +̹ ADJ aValue|ֵ,form|״,smooth|̹ +̹ ADJ aValue|ֵ,tolerance|,generous|,desired| +̹ N weapon|,LandVehicle|,military| +̹˲ N army| +̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ̹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +̹Ȼ ADJ aValue|ֵ,circumstances|,safe|,desired| +̹Ȼ V calm| +̹ɣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tanzania|̹ɣ) +̹ɣ N place|ط,country|,ProperName|ר,(Africa|) +̹ɣ N human|,(Tanzania|̹ɣ) +̹ɣ N money|,(Tanzania|̹ɣ) +̹; N facilities|ʩ,route|· +̺ N tool|þ,*cover|ڸ +̺ N tool|þ,*cover|ڸ,#LieDown| +̺ N tool|þ,*cover|ڸ,#LieDown| +̻ V CauseToAppear| +̻ V protect|,manner=biased|ƫ +̻ V protect|,manner=biased|ƫ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼⻯ N chemical|ѧ +̼ˮ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̼ N chemical|ѧ +̽ V CausePartMove| +̽ V investigate| +̽ V measure| +̽ V visit| +̽ V investigate| +̽ V measure| +̽ N tool|þ,*LookFor|Ѱ +̽ V check| +̽ V investigate| +̽ V visit| +̽ N human|,*succeed|ɹ,#exam|,past| +̽ V SayHello|ʺ,target=family| +̽ V visit|,target=human|,#police| +̽ V investigate|,industrial| +̽ V research|о +̽ V investigate| +̽ V investigate|,industrial| +̽· V investigate|,content=route|· +̽ V investigate| +̽ȡ ADJ aValue|ֵ,easiness|,easy|,desired| +̽ V SayHello|ʺ,target=family| +̽ V SayHello|ʺ,target=human| +̽׼ N time|ʱ,@SayHello|ʺ,#family| +̽ V seek|ıȡ +̽ V diagnose|,industrial| +̽ V visit| +̽ V investigate| +̽ N human|,*investigate| +̽ V investigate| +̽ V investigate| +̽ N human|,*investigate| +̽ͷ V CausePartMove|,PatientPartof=head|ͷ +̽ͷ̽ V look| +̽ V look| +̽ V visit| +̽ V ask| +̽Ϥ V investigate| +̽Ϥ V know|֪ +̽ V investigate| +̽ѯ V investigate| +̽Ѱ V LookFor|Ѱ +̽յ N tool|þ,*illuminate| +̽ N human|,military|,*scout| +̽ N tool|þ,*inhale| +̾ V praise|佱 +̾ V sigh|̾ +̾ N part|,%language| +̾ V praise|佱 +̾ V sigh|̾ +̾ V praise|佱 +̾ V sigh|̾,cause=repent|û +̾Ϊֹ V praise|佱 +̾Ϣ V sigh|̾ +̾ϧ V sigh|̾,cause=repent|û +̾ V praise|佱 +̿ N material|,*lighting|ȼ,$burn| +̿ N fire| +̿ N disease| +̿ N tool|þ,*WarmUp| + N character|,surname|,human|,ProperName|ר + N food|ʳƷ,$eat|,liquid|Һ + N medicine|ҩ,liquid|Һ,(China|й) + N water|ˮ,hot| + N tool|þ,*hold|,#drinks|Ʒ + N tool|þ,@put|,#liquid|Һ,hot| + N medicine|ҩ,liquid|Һ,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tonga|) + N money|,(Tonga|) + N place|ط,country|,ProperName|ר,(Oceania|) + N language|,#country|,ProperName|ר + N food|ʳƷ +ˮ N food|ʳƷ,$eat|,liquid|Һ +ҩ N medicine|ҩ,liquid|Һ,(China|й) +Բ N food|ʳƷ + N facilities|ʩ,#hot|,@wash|ϴ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N waters|ˮ,surfacial| + N facilities|ʩ,#liquid|Һ,space|ռ + N material|,$feed|ι,#crop|ׯ + N facilities|ʩ,#liquid|Һ,space|ռ + V apply|ͿĨ + V evade|ر + V obstruct|ֹ + V slack|͵ +´ N material|,?tool|þ + V slack|͵ + ADJ aValue|ֵ,clan| + N institution|,police|,@judge|ö,#crime|,past| + N room| +ð N reason| +ö֮ ADJ aValue|ֵ,behavior|ֹ,opened|,undesired|ݬ +ö֮ ADJ aValue|ֵ,behavior|ֹ,suitable| +÷ ADJ aValue|ֵ,clan| +ù N MusicTool| +û ADJ aValue|ֵ,scene|,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + N room| + N human|,#occupation|ְλ,*TakeCare|,#InstitutePlace|,commercial| + N fruit|ˮ + N tree| + N FlowerGrass| + N tree| + N part|,%AnimalHuman|,body| + N part|,%physical|,viscera| + N character|,surname|,human|,ProperName|ר + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƴ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ƻ N FlowerGrass| + N human|,ProperName|ר,(China|й) + N artifact|˹,entertainment| +ɽ N place|ط,city|,ProperName|ר,(China|й) +ʫ N text| +ͻ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ +dz N InstitutePlace|,*produce|,#material|,factory|,industrial| +Ǵ N attribute|,taste|ζ,sweet|,sour|,&food|ʳƷ +Ǵ N material|,#food|ʳƷ,$eat| +ǹ N food|ʳƷ,sweet| +Ǻ« N food|ʳƷ +ǻ N chemical|ѧ +ǽ N material|,?edible|ʳ,?medicine|ҩ +Ǿ N material|,?edible|ʳ + N chemical|ѧ +ܲ N crop|ׯ,?material| + N disease| +ζ ADJ aValue|ֵ,taste|ζ,sweet|,desired| + CONJ {condition|} + CONJ {condition|} + V LieDown| + V LieDown| + V LieDown| + N furniture|Ҿ,space|ռ,@LieDown|,@sit| + V fall| + V flow| +ʺ V excrete|й,patient=waste| + CLAS ActUnit|,&AlterLocation|ռλ + CLAS NounUnit|,&LandVehicle| + CLAS NounUnit|,&inanimate| + V MakeUp|ױ + V WarmUp| + ADJ aValue|ֵ,temperature|¶,hot| + V damage| + V press|ѹ +̷ V MakeUp|ױ,patient=hair|ë +̷ V MakeUp|ױ,scope=hair|ë +̽ V apply|ͿĨ,material=metal|,industrial| + N material|,?food|ʳƷ + N disease| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + V PickOut|γ + V dig|ھ + V steal|͵ +ͳ V PickOut|γ +͵ V investigate| + V pay|,possession=wealth|Ǯ + N water|ˮ + V spill| + ADJ qValue|ֵ,amount|,many| +ϲ ADJ aValue|ֵ,behavior|ֹ,fluent| + ADJ aValue|ֵ,degree|̶,extreme| + N tool|þ,linear|,*fasten|˩,*decorate|װ +г N InsectWorm|,#disease| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,linear|,*fasten|˩,*decorate|װ + N fruit|ˮ + N shape| +Һ ADJ aValue|ֵ,color|ɫ,red| +һ N FlowerGrass| +һľ N wood|ľ +һѴ N water|ˮ +һ N fish| + N human|,*study|ѧ,mass| + N food|ʳƷ + N medicine|ҩ +ɫ ADJ aValue|ֵ,color|ɫ,red| +ɫ ADJ aValue|ֵ,color|ɫ,red|,light| +ɫ N fact|,#love|,undesired|ݬ +ɫ N fact|,#love|,undesired|ݬ,#police| +ɫ N news|,#fact|,#love|,undesired|ݬ + N tree|,#fruit|ˮ + N fruit|ˮ + V escape| + V evade|ر + V flee| +ӱ V escape| +ӱʵ ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ӱʵ N fact|,escape|,#circumstances|,undesired|ݬ +ӱʵ N human|,*escape| +ӱ N human|,*escape| +ӳ V flee| +Ӵ V flee| +Ӷ V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +ӻ V escape|,cause=phenomena| +ӻ V escape|,cause=GetMarried| + V flee| + V escape|,cause=die| + V escape|,cause=unfortunate| + V hide| + V flee| +ɢ V disperse|ɢ + V escape|,cause=die| +˰ V evade|ر,content=expenditure|,commercial| +˰ N human|,*evade|ر,#expenditure|,commercial| + V flee| + V flee| + N human|,*flee| +ѧ V evade|ر,content=study|ѧ,education| +ѧ N human|,*evade|ر,#study|ѧ,education| + V flee| +ծ V escape|,cause=owe|Ƿ +֮زز V flee| + V flee| + ADJ aValue|ֵ,behavior|ֹ,mischievous| + V dredge|ͨ + V wash|ϴ +Ժ N bird| +Խ V gather|ɼ + N tool|þ,cubic|,@put|,*wash|ϴ + V wash|ϴ,patient=material| + ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ +̭ V disappear|ʧ +̭ V discharge| +̭ V perish| +̭ V discharge|,sport| +̭ N fact|,compete| +ϴ V wash|ϴ + ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ + N tool|þ,generic|ͳ +մ N material| +չ N material|,*build| +չ N tool|þ,cubic|,@put| + N tool|þ,generic|ͳ +Ȼ V joyful|ϲ + N material|,mine| +ұ V burn|,industrial| +ұ V cultivate| + N knowledge|֪ʶ + V joyful|ϲ +ٸ N tool|þ + V ExpressAgainst|Ǵ + V MarryFrom|Ȣ + V ResultIn| + V attack|,military| + V beg| + V discuss| +ֱ V seek|ıȡ,possession=pros| +ַ V attack|,military| +ַ V beg|,patient=artifact|˹ +ֺ V please|ȡ +ֻ V seek|ıȡ +ּ V discuss|,content=price|۸,commercial| +ּۻ V discuss|,content=price|۸,commercial| +ֽ V ask| + V discuss| +ۻμ N human|,*discuss| + V beg|,patient=artifact|˹ + V beg|,possession=edible|ʳ + V do|,manner=sly| + V MarryFrom|Ȣ + V request|Ҫ,ResultEvent=forgive|ԭ + V surrender| + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V disgust| + N human|,$disgust| + N human|,*irritate|ŭ +ծ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| + V PutOn| + N clothing| + V cover|ڸ + V fasten|˩ + N material|,$fill| + N part|,%earth| + N tool|þ,cubic|,@put| +װ N tool|þ,*print|ӡˢ +׷ N house| +׹ V buy|,crime| +׻ N information|Ϣ,stiff| +׻ N text|,waste| +׻ N fact|,commercial| +׼ N house| +׼ N room| +׿ N clothing|,#leg| +· N knowledge|֪ʶ +Ь N clothing|,#foot| + N part|,%clothing|,#arm| +ӡ V print|ӡˢ + V use| + V planting|ֲ +װ N clothing| + N information|Ϣ,stiff| + N material|,$fill| + N tool|þ,cubic|,@put| + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,kind|,special| + N human|,#occupation|ְλ,military|,police|,*scout| + N human|,#occupation|ְλ,police|,military|,*scout| +ر ADJ aValue|ֵ,kind|,special| +ر CONJ {emphasis|ǿ} +رȨ N rights|Ȩ,collect|,commercial| +ز N artifact|˹,special|,generic|ͳ +س N attribute|,ability|,special|,&organization|֯,&human| +س ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ش ADV {emphasis|ǿ} +ش ADJ aValue|ֵ,range|,extensive| +ش ADJ aValue|ֵ,size|ߴ,big| +ص ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ص ADJ aValue|ֵ,kind|,special| +ص N attribute|,property|,&entity|ʵ +ض ADJ aValue|ֵ,kind|,special| +ع N affairs|,military|,secret| +عӶ N place|ط,capital|,ProperName|ר,(Honduras|鶼˹) +ػ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ؼ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ؼ N fact|,dangerous|Σ,#perform| +ؼ N attribute|,price|۸,cheap|,&inanimate| +ؿ ADJ aValue|ֵ,kind|,special| +ؿ N LandVehicle| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N example|ʵ,special| +Ͷ͸ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Trinidadian and Tobagan|Ͷ͸) +Ͷ͸ N place|ط,country|,ProperName|ר,(South America|) +Ͷ͸Ԫ N money|,(Tonga|Ͷ͸) +ľ N plans|滮 +ȫȨʹ N human|,#occupation|ְλ,official|,politics|,diplomatic|⽻ + V dispatch|Dz,manner=special| +ɼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ա N human|,#occupation|ְλ,$dispatch|Dz,official| +Dz N part|,%army| + N place|ط +Ȩ N rights|Ȩ +ɫ N attribute|,property|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +ίԱ N institution|,politics|,special| +ʹ N human|,official|,politics|,diplomatic|⽻ + ADJ aValue|ֵ,kind|,special| +ⲡ֢ ADJ aValue|ֵ,kind|,special|,&disease| +⻯ N rights|Ȩ + N attribute|,kind|,special|,&entity|ʵ +Ϊ ADJ aValue|ֵ,kind|,special| +ά N language|,#country|,ProperName|ר +ί N institution|,politics|,special| + N human|,#occupation|ְλ,military|,police|,*scout| +Ч N attribute|,effect|Ч,superior|,&entity|ʵ,&act|ж +Чҩ N medicine|ҩ,superior| +д N text| + N attribute|,property|,&entity|ʵ + V agree|ͬ,manner=special| + V invite|,manner=special| + ADV aValue|ֵ,kind|,special| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,kind|,special| + N attribute|,kind|,special|,&entity|ʵ + ADJ aValue|ֵ,kind|,special| +Լ V invite|,manner=special| +Լ༭ N human|,*compile|༭ + N attribute|,property|,&entity|ʵ +ָ V mean|ָ + V produce|,manner=special| + N attribute|,kind|,special|,&entity|ʵ +ֲ N army| + N tree| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N FlowerGrass| + N weapon|,*defend| + N SportTool|˶ + N fact|,exercise|,sport| + N furniture|Ҿ,space|ռ,@sit| + N tree| + V dump| + V jump| + V rise| +ڳ V dump| +ڷ V fly| +ڷ V grow|ɳ +ڹ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ڿ V dump| +ڿ V rise| +Ų V TakeAway|ᶯ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Խ V cross|Խ +Ծ V jump| +Ƽ V dizzy| +Ƽ ADJ fly|,manner=fast| + V like|ϧ + V painful|ʹ +۰ V like|ϧ +ʹ V painful|ʹ + V copy|д +¼ V copy|д + V copy|д +д V copy|д + N part|,%building|,nerve| + N shape| + N tool|þ,@climb|ʵ +ݴζ N shape| +ݶ N attribute|,slope|¶,&inanimate| +ݶ N part|,%army| +ݶ N weapon| +ݼ N part|,%building|,nerve| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,form|״ + N image|ͼ +״ ADJ aValue|ֵ,form|״ + N tool|þ,@climb|ʵ + V clean|ʹ + N part|,%character| + V pick|ʰ + V remove| +޳ V remove| + V kick|߲ + V kick|߲,sport| +߲ V kick|߲ +ߵ V kick|߲ +߽ V kick|߲,sport| + V kick|߲,sport| + N metal| + V MakeEarlier| + V collect|,commercial| + V gather|ɼ + V hold| + V lift| + V mention|ἰ + N part|,%character| + V propose| + V upgrade| +᰸ N text|,$propose|,$discuss|,$debate| + V upgrade| + N tool|þ,cubic|,@put| + V pick|ʰ,patient=PenInk|ī +ᳫ V endorse|ӵ +ᳫ N human|,*improve| + V collect|,commercial| + V propose| + N human|,*propose| +ᴿ V refine|,industrial| +ᵥ N bill|Ʊ,#wealth|Ǯ +ᵽ V mention|ἰ +ᷨ N method|,*express|ʾ + V obstruct|ֹ + N part|,%text|,bone| + V MakeBetter|Ż + V add| + V improve| + V lift| + N language|,#country|,ProperName|ר +ṩ V provide| + V collect|,possession=artifact|˹,commercial| + N bill|Ʊ,#wealth|Ǯ +ἰ V mention|ἰ + V BecomeMore|,scope=price|۸ +ύ V submit| + V collect|,possession=money|,commercial| + N tool|þ,cubic|,@put| + V produce|,industrial| + V refine|,industrial| + V RegardAs| + N human|,*RegardAs| + V lift| + V mention|ἰ + V mobilize| +ǰ V MakeEarlier| +ǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ + N MusicTool| + V request|Ҫ +ȡ V collect| +ȡ V collect|,commercial| +ȡ V collect|,industrial| +ȡ V gather|ɼ +ȡ V gather|ɼ,industrial| +ȡ V obtain|õ + V improve| + V interrogate|,police| + V lift| + V upgrade| +ʾ V persuade|Ȱ˵ +ʾ N symbol| + V ask| + N tool|þ,cubic|,@put| +ĵ V fear| + V write|д + V persuade|Ȱ˵ +ѡ V choose|ѡ +Ҫ N text|,#readings| + V propose| + N text|,$propose|,$discuss|,$debate| + N human|,*propose| + V MakeEarlier| + V gather|ɼ,industrial| + V produce|,industrial| + V guide| + V help| + N part|,%text|,heart| + N part|,%text|,name| + N problem| + V sign|д + N attribute|,content|,&information|Ϣ +ķΧ N attribute|,range|,&content|,#information|Ϣ + V write|д,ContentProduct=text| + N part|,name|,%text| + V sign|д,ContentProduct=name| +Ŀ N part|,%text|,heart| +Ŀ N part|,name|,%text| +Ŀ N problem| +Ϊ V be|,#name| +д V sign|д + V sign|д,ContentProduct=text| + N text|,$sign|д + N part|,%beast|,foot| + N part|,%beast|,foot| + N food|ʳƷ + N part|,%beast|,foot| + V cry|,#bird| + V weep| +伢ź V HungryThirsty| + V weep| +ЦԷ V embarrassed|Ϊ + N attribute|,PhysicState|״̬,&physical| + N attribute|,kind|,&language| + N attribute|,pattern|ʽ,&information|Ϣ + N attribute|,performance|,&language| + N entity|ʵ,generic|ͳ + N part|,%AnimalHuman|,body| + N system|ƶ + N part|,%AnimalHuman|,skin|Ƥ,external| + N attribute|,pattern|ʽ,&information|Ϣ + N fact|,sport| +ٷ N clothing|,*exercise|,sport| +˶Ա N human|,sport| + V understand| +巣 N fact|,punish| + N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N fact|,check|,#physique|,medical|ҽ + V understand| + N attribute|,size|ߴ,&physical| +强 ADJ aValue|ֵ,content|,secret| +强 ADJ aValue|ֵ,relatedness|,intimate|,desired| + N fact|,check|,#physique|,medical|ҽ + N attribute|,pattern|ʽ,&readings| + N attribute|,strength|,&AnimalHuman| +֧ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +Ͷ N affairs|,#physique|,engage| + V forgive|ԭ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,location|λ,internal| + N location|λ,%entity|ʵ,body|,internal| + N attribute|,strength|,&AnimalHuman| + N attribute|,physique|,&AnimalHuman| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʽ N attribute|,form|״,&character| +ʽ N attribute|,pattern|ʽ,&information|Ϣ +̬ N attribute|,posture|,&human| +̬ӯ ADJ aValue|ֵ,posture|,gracious|,desired| +̳ N community|,*exercise|,sport| +̳ N community|,sport| + V WellTreat|ƴ +΢ V WellTreat|ƴ,manner=attentive|ϸ +ͳ N attribute|,property|,&human| + ADJ aValue|ֵ,location|λ,external| + N location|λ,%entity|ʵ,body|,external| +ܾ N method|,*cure|ҽ,medical|ҽ +ѭ N method|,*cure|ҽ,medical|ҽ +ζ V enjoy| +λ N location|λ,%body| + N attribute|,temperature|¶,&AnimalHuman| +¼ N tool|þ,*measure|,#temperature|¶ + V fail|ʧ + V wounded| +ϧ V pity| +ϵ N part|,%entity|ʵ,body| + V mean|ָ +У N InstitutePlace|,@teach|,@study|ѧ,#sport|,education| + N attribute|,kind|,&physical| + N attribute|,form|״,&AnimalHuman| + V pity| + V know|֪ +Һ N part|,%AnimalHuman|,liquid|Һ + N affairs|,education|,#physique| + N affairs|,exercise|,sport| + N facilities|ʩ,@exercise|,sport| + N attribute|,behavior|ֹ,#exercise|,#sport|,&human| + N facilities|ʩ,@exercise|,sport| + N affairs|,exercise|,sport| + N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#sport| + N fact|,exercise|,sport|,education| +Ʒ N tool|þ,*exercise|,sport| +˶ N affairs|,exercise|,sport| + N attribute|,appearance|,medical|ҽ,&AnimalHuman| + N part|,%entity|ʵ,body| +Ƹĸ N fact|,improve|,patient=organization|֯ + N attribute|,physique|,&AnimalHuman| + N attribute|,weight|,&AnimalHuman| +ؼ N BecomeLess|,scope=weight| + N BecomeMore|,scope=weight| + V replace| +油 V replace| +油Ա N human|,*replace|,sport| + V replace| +湤 N human|,*replace|,industrial| +滻 V replace| + N entity|ʵ,*replace| + N human|,*replace| + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + N human|,*replace|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N part|,%AnimalHuman|,liquid|Һ + V weep| + V weep| + V weep| + V cut| +굶 N tool|þ,*cut|,#hair|ë,*MakeUp|ױ +ͷ V MakeUp|ױ,scope=hair|ë +뵶 N tool|þ,*cut| + N tool|þ,*cut| +֦ N InsectWorm| + N part|,%furniture|Ҿ,cubic|,@put| + N part|,%furniture|Ҿ,cubic|,@put| + ADJ aValue|ֵ,location|λ,upper| + ADJ aValue|ֵ,source|Դ,original|ԭ + N humanized|,desired| + N natural|Ȼ,generic|ͳ + N sky| + N time|ʱ + N time|ʱ,#season| + N time|ʱ,day| + N weather| +찲 N building|,ProperName|ר,(China|й) +찲ų¥ N building|,ProperName|ר,(China|й) +찲Ź㳡 N building|,ProperName|ר,(China|й) + N location|λ,%earth|,edge| + N part|,%earth|,edge| + N place|ط,far|Զ + V WeatherChange| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,ability|,&human| + N human|,able|,desired| +쳤ؾ ADJ aValue|ֵ,duration|,TimeLong| +쳤վ ADJ aValue|ֵ,duration|,TimeLong| +쳵 N machine|,*lift| + N celestial| +촰 N part|,%house| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N natural|Ȼ,enemy| + N attribute|,range|,&event|¼ + N natural|Ȼ,#celestial|,#earth| + N InsectWorm| + N InsectWorm|,*fly| + N bird| + N material|,?clothing|,?tool|þ +췭ظ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +췽ҹ̷ N fact|,wrong| +췽ҹ̷ N readings| +츮֮ N place|ط,rich| +츳 ADJ aValue|ֵ,source|Դ,original|ԭ +ߵغ ADJ attribute|,content|,&event|¼ +һ ADJ aValue|ֵ,distance|,far|Զ +һ V disperse|ɢ +칫 N humanized| +칫 V WeatherBad| +칫ص ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +칬 N facilities|ʩ,space|ռ,humanized| +칵 N part|,%house| + N time|ʱ,day| + N time|ʱ,early|,day| + N celestial|,#humanized|,religion|ڽ +캮ض ADJ aValue|ֵ,temperature|¶,cold| + N celestial| + ADJ aValue|ֵ,brightness|,dark| + N time|ʱ,night| + N weather| +컨 N disease| +컨 N part|,%building| +컨 N medicine|ҩ + N human|,royal|,ProperName|ר,(Japan|ձ) +ذ V WeatherBad| +ذ ADJ aValue|ֵ,brightness|,dark| +ذ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +ذ V unfortunate| + N fact|,secret| + N part|,%earth|,edge| + N place|ط,city|,ProperName|ר,(China|й) +쾭 ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +쾮 N facilities|ʩ,mine| +쾮 N part|,%building| +쾮 N part|,%house| +쾮 N part|,%house|,space|ռ + N sky| + ADJ aValue|ֵ,color|ɫ,blue| + N attribute|,behavior|ֹ,fair|,desired|,&event|¼ + V WeatherFine| + ADJ aValue|ֵ,brightness|,bright| + N part|,%AnimalHuman|,head|ͷ + N attribute|,relatedness|,&human| +֮ N phenomena|,lucky|,desired| + N FlowerGrass| +п ADJ aValue|ֵ,posture|,strong|ǿ,desired| + V WeatherFine| + N aspiration|Ը,#humanized|,#circumstances| + N attribute|,circumstances|,&human|,&organization|֯ +Ļ N sky| +Ļ N tool|þ,#perform| +ϵر ADJ aValue|ֵ,distance|,far|Զ +Ϻ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +Ϻ ADJ aValue|ֵ,distance|,far|Զ + N attribute|,age|,&animate| +ţ N InsectWorm| +ŭԹ V angry| + N house| + N part|,%building| +ƽ N tool|þ,*measure|,#weight| + N weather| +Ԥ N fact|,disseminate|,#weather| +ǵ N waters|ˮ,linear| + N facilities|ʩ,route|· + ADJ aValue|ֵ,color|ɫ,black| +Ȼ ADJ aValue|ֵ,source|Դ,original|ԭ +Ȼ N material|,gas|,$burn| +Ȼ N natural|Ȼ +֮ ADJ attribute|,similarity|ͬ,different|,&entity|ʵ +ɫ N weather| + N location|λ,%sky| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʦ N human|,religion|ڽ +ʱ N time|ʱ,important| +ʱ N weather| +ʱ˺ N attribute|,ProsCons|,pros|,#time|ʱ,#earth|,#human|,&event|¼ +ʹ N humanized|,desired| + N document|,royal|,past| + N text|,difficult| + N celestial|,#humanized| + N celestial|,generic|ͳ + N time|ʱ,day| +ͥ N part|,%AnimalHuman|,head|ͷ + N humanized| + N human|,able| + N celestial| +ֻ ADJ aValue|ֵ,performance|,strict|,#police| + N knowledge|֪ʶ,#celestial|,#weather| +Ĺ N InstitutePlace|,@look|,#celestial|,#weather| +̨ N InstitutePlace|,*investigate|,#weather| +ѧ N knowledge|֪ʶ +ѧ N knowledge|֪ʶ,#weather| +ѧ N human|,#knowledge|֪ʶ + N attribute|,power|,&entity|ʵ + N place|ط + N place|ط,country|,ProperName|ר,(China|й) +µһ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѻһ V aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ѻһ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N humanized|,desired|,female|Ů + N human|,desired|,female|Ů,beautiful| + N place|ط,military| + N tool|þ,linear|,*transmit| + N weather| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V lucky| + N phenomena|,#lucky| + ADJ aValue|ֵ,&behavior|ֹ,original|ԭ + N attribute|,&behavior|ֹ,original|ԭ +ת ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ת V dizzy|,medical|ҽ + N part|,%earth|,edge| +ĺ N part|,%earth|,edge| +޷ ADJ aValue|ֵ,quality|,good|,desired| + N aspiration|Ը,#humanized|,#circumstances| + N sky| +Ԩ ADJ aValue|ֵ,distance|,far|Զ + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +˻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + V bury| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +֮ N human|,desired|,*lucky| +ְ N duty| + ADJ knowledge|֪ʶ,religion|ڽ + N knowledge|֪ʶ,religion|ڽ +ͽ N human|,religion|ڽ + N attribute|,ability|,&human| + N human|,royal| + N celestial| + N sky| + N place|ط,country|,ProperName|ר,(India|ӡ) +ÿ N FlowerGrass| + N beast| + N sound|,#music| + V add| + V enrich|ʵ + V add| +Ӽ N chemical|ѧ + V MakeTrouble| + V enrich|ʵ,commercial| + V obtain|õ,commercial| + V fill| + V write|д + V fill| +...Ŀհ V cover|ڸ + V fill| + V write|д + V fill| + N material|,generic|ͳ,*fill| + V fill| +ƽ V fill| + V fill| + V BlockUp| +д V write|д +Ѽ N bird|,$feed|ι +Ѽ V feed|ι,patient=bird| + N character|,surname|,human|,ProperName|ר + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,circumstances|,&event|¼,hardship|,undesired|ݬ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +﹡ N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ +F N beast| + N community|,agricultural|ũ + N land|½,#crop|ׯ,agricultural|ũ + N place|ط,village| +ᄊ N fact|,exercise|,sport| +ᄊ N fact|,exercise|,sport| + V engage|,content=catch|׽ס,#animal|,agricultural|ũ + N fish| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N beast| +Ұ N land|½ +Ұ N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +԰ N place|ط,village| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,sweet| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + N crop|ׯ,?material| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N fruit|ˮ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,taste|ζ,sweet|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| +潴 N material|,?food|ʳƷ +Ʒ N food|ʳƷ,sweet| +ʳ N food|ʳƷ,sweet| +ˮ N phenomena|,lucky|,desired| +ˮ N water|ˮ +˿˿ ADJ aValue|ֵ,taste|ζ,sweet|,desired| +˿˿ V joyful|ϲ +ͷ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ͷ N attribute|,taste|ζ,sweet|,&edible|ʳ +ζ N attribute|,taste|ζ,sweet|,&edible|ʳ + N text|,gentle| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + V calm| +֪ V shameless|û + ADJ aValue|ֵ,behavior|ֹ,arrogant| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| +Ȼ V calm| + V savor| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ + V CarryOnBack| + V choose|ѡ + V incite|ָʹ + V lift| + N part|,%character| + V pick|ʰ + V touch| + V incite|ָʹ + V separate| + V separate| +̶ V ExpressAgainst|Ǵ + V incite|ָʹ + V entice| + V tease|ȡ +ʼ V choose|ѡ + N human|,#occupation|ְλ,*transport|,employee|Ա + V choose|ѡ + V incite|ָʹ + V choose|ѡ + V incite|ָʹ + V IllTreat| + V incur| +ѡ V choose|ѡ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ +ս V incite|ָʹ +ս N human|,*incite|ָʹ + N artifact|˹,commercial| +۶ V IllTreat| + CLAS NounUnit|,&entity|ʵ + N part|,%document| + N part|,%plant|ֲ,limb|֫ + N shape| + N furniture|Ҿ,space|ռ,@put| + V spread|,agricultural|ũ + V analyze| + N mark|־ + N regulation| + N attribute|,circumstances|,&entity|ʵ + N attribute|,standard|׼,&entity|ʵ + N part|,%regulation| + N attribute|,behavior|ֹ,proper|,desired|,&event|¼ + N regulation| + N regulation| +Ŀ N agreement|Լ +Ŀ N expression| + N material|,?clothing|,?tool|þ + N regulation| + N text|,#regulation| + N image|ͼ + N symbol|,#information|Ϣ +Լ N agreement|Լ + N human|,police| + N readings| + N shape| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,distance|,far|Զ + V look| + V look| + V cross|Խ + V discharge| + V jump| + V shiver| + N SportTool|˶ + V alter|ı,patient=affairs| + N InsectWorm| + N recreation|,entertainment| + V shiver| + V recreation| + V exercise|,sport| + V cross|Խ + V discharge| + V CausePartMove|,PatientPartof=foot| + V exercise|,sport| +С N human|,undesired|ݬ +С N human|,undesired|ݬ + V exercise|,sport| + N tool|þ,*recreation| + V exercise|,sport| +ɡ V exercise| +ɡ V exercise|,sport| +ɡ V fall|,sport|,military| + V jump| + V exercise|,sport| +ˮ V exercise|,sport| +̨ N facilities|ʩ,space|ռ + V recreation| + N SportTool|˶ + V alter|ı,patient=affairs| + V discharge| +Զ V exercise|,sport| +Ծ V jump| +Ծ N human|,*jump| + N InsectWorm| + N InsectWorm| + V apply|ͿĨ + V approach|ӽ + N payment| +߶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V provide| + V approach|ӽ + ADJ aValue|ֵ,content|,proper|,desired| + V BeNear|,partner=skin|Ƥ + V follow| + ADJ aValue|ֵ,content|,accurate|׼,desired| +Ϣ V collect|,commercial| + V subtract|,commercial| + N quantity|,rate|,&money|,$earn|׬,commercial| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| + ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ + N metal| + N weapon|,generic|ͳ +ɽ ADJ aValue|ֵ,trueness|α,true|,desired| + N shape|,flat|,surfacial| + N PenInk|ī,*write|д + N tool|þ,*carve| + N SportTool|˶ + N fact|,*exercise| + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N part|,%building|,eye| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + N facilities|ʩ,route|· + N army|,*build|,#facilities|ʩ + N institution|,transport|,ProperName|ר,politics| + N tool|þ,*fix|ס,metal|,acute| + ADJ aValue|ֵ,behavior|ֹ,lasting| + N affairs|,#earn|׬,#alive|,#occupation|ְλ,safe| +˶ ADJ aValue|ֵ,behavior|ֹ,stubborn| +˶ ADJ aValue|ֵ,trueness|α,true|,desired| + N affairs|,industrial| + N human|,#occupation|ְλ,industrial| + N human|,undesired|ݬ,greedy|̰ + N material|,metal| + N human|,desired|,lasting| +Ͻ N metal| + N tool|þ,*fasten|˩ + N clothing|,*protect|,#body|,#fight| + N material|,*protect|,#body|,#fight| + N human|,#occupation|ְλ,industrial| + N InstitutePlace|,mine| + N stone|ʯ,mine| +ʯ N stone|ʯ,mine| +ľ N wood|ľ,material| + N tool|þ,linear|,*fasten|˩ + N tool|þ,police|,#crime|,#foot|,*detain|ס +· N facilities|ʩ,route|· +·ְ N human|,#occupation|ְλ,industrial| + N part|,%building|,mouth| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ţ N machine|,#crop|ׯ +Ƥ N material|,metal| + N army| + N tool|þ,generic|ͳ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,color|ɫ,BlueGreen|,undesired|ݬ + N tree| + ADJ aValue|ֵ,kind|,special| +ˮ N metal|,liquid|Һ +˿ N tool|þ,linear| +˿ N facilities|ʩ,space|ռ,military|,@defend| +˿ N tool|þ + N tool|þ,linear|,*fasten|˩ + N facilities|ʩ,space|ռ +м N metal|,small|С + N phenomena|,OutOfOrder|,#metal| +֤ N information|Ϣ,*prove|֤ +ĥ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N letter|ż + N letter|ż,*invite| + N publications|鿯 + N part|,%organization|֯ + N room| + N human|,#occupation|ְλ,official| + N room| + V listen| + V obey|ѭ + V perception|֪ + N tool|þ,cubic|,@store| + V indulge| + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ + N human|,#occupation|ְλ,employee|Ա,past| + V obey|ѭ + V perception|֪ + V understand| + V ignorant|֪,#listen| + V wait|ȴ + ADJ obey|ѭ + V perception|֪ + V listen|,content=text| + V study|ѧ,education| + N experience|,#listen| + ADJ aValue|ֵ,ability|,able|,listen| + V study|ѧ,education| + N attribute|,ability|,#listen|,&AnimalHuman| + V obey|ѭ +ƾ V indulge| +Ա V indulge| +Ȼ V indulge| + V be| +ȡ V listen| + V indulge| +˵ V perception|֪ + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +Ͳ N tool|þ,*listen| +Ͳ N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V believe| + V wait|ȴ,content=information|Ϣ + N human|,*listen| + V method|,*diagnose|,#listen|,medical|ҽ + N tool|þ,*listen|,#cure|ҽ,medical|ҽ + V control|,patient=power| +֮֮ V indulge| + N human|,*listen| +װ ADJ aValue|ֵ,property|,$store|,#cubic| + N chemical|ѧ +͡ N land|½ +͢ N institution|,official|,past| +͢ N place|ط,capital|,ProperName|ר,(Bhutan|) +ͣ V CeaseSelfMove|ֹ +ͣ V TurnOff|ֹ +ͣ V cease|ͣ +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V stay|ͣ +ͣ V end|ս +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ V cease|ͣ,content=affairs|,commercial| +ͣ N tool|þ,*tell|,#time|ʱ +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣ V cease|ͣ,content=produce| +ͣ V end|ս,industrial| +ͣ V put| +ͣ V stay|ͣ +ͣ N facilities|ʩ,space|ռ,*put|,#LandVehicle| +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣ V finish| +ͣ V TurnOff|ֹ,experiencer=electricity| +ͣ N phenomena|,TurnOff|ֹ,#electricity| +ͣ V end|ս +ͣ V pause|ͣ +ͣ V put| +ͣ V cease|ͣ,content=fly| +ͣ V cease|ͣ,content=affairs| +ͣ V cease|ͣ,content=transport| +ͣ V cease|ͣ,content=fight|,military| +ͣƺ N facilities|ʩ,space|ռ,*put|,#aircraft| +ͣ V cease|ͣ,content=build| +ͣ V cease|ͣ,content=publish| +ͣ V stay|ͣ +ͣ V cease|ͣ,content=education|,education| +ͣ V put| +ͣ V stay|ͣ +ͣˮ V TurnOff|ֹ,content=liquid|Һ +ͣ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +ͣϢ V end|ս +ͣϢ V stay|ͣ +ͣ V CeaseSelfMove|ֹ +ͣЪ V cease|ͣ +ͣЪ V cease|ͣ,content=affairs|,commercial| +ͣЪ V end|ս +ͣЪ V rest|Ϣ +ͣѧ V cease|ͣ,content=study|ѧ,education| +ͣѧ V discharge| +ͣҵ V cease|ͣ,content=affairs|,commercial| +ͣ ADJ aValue|ֵ,content|,neat|,desired| +ͣ ADJ aValue|ֵ,form|״,even|,desired| +ͣ V cease|ͣ,content=transport| +ͣս V cease|ͣ,content=fight|,military| +ְͣ V dismiss| +ֹͣ V CeaseSelfMove|ֹ +ֹͣ V cease|ͣ +ֹͣ V end|ս +ͣ V CeaseSelfMove|ֹ +ͣ V end|ս +ͣͲǰ ADJ aValue|ֵ,ability|,unable|ӹ,prosper| +ͣ V cease|ͣ +ͤ N facilities|ʩ,space|ռ +ͤͤ ADJ aValue|ֵ,posture|,upright| +ͤͤ ADJ aValue|ֵ,posture|,gracious|,desired| +ͤ ADJ aValue|ֵ,content|,neat|,desired| +ͤ N facilities|ʩ +ͤ N facilities|ʩ,space|ռ +ͤӼ N room|,small|С +ͥ N institution|,official|,police| +ͥ N part|,%house|,space|ռ +ͥ N human|,#occupation|ְλ,official|,police| +ͥ԰ N facilities|ʩ,space|ռ,#FlowerGrass| +ͦ V CausePartMove| +ͦ ADV aValue|ֵ,degree|̶,ish| +ͦ ADJ aValue|ֵ,form|״,straight|ֱ +ͦ V endure| +ͦ ADJ aValue|ֵ,posture|,upright|,desired| +ͦ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ͦ V GoForward|ǰ +ͦ V exercise|,sport| +ͦ ADJ aValue|ֵ,form|״,level|ƽ +ͦ V stand|վ +ͦ V CausePartMove|,PatientPartof=body| +ͦ V GoOut|ȥ,manner=brave| +ͦ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ֱͦ V CausePartMove| +ֱͦ ADJ aValue|ֵ,posture|,straight|ֱ +ͧ N ship| +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ N character|,surname|,human|,ProperName|ר +ͨ V communicate| +ͨ V connect| +ͨ V dredge|ͨ +ͨ N human|,able|,desired| +ͨ V know|֪ +ͨ ADJ qValue|ֵ,amount|,all|ȫ +ͨ V tell| +ͨ V disseminate| +ͨ V excrete|й,patient=waste| +ͨ N attribute|,quality|,weak|,undesired|ݬ,&thing| +ͨ N human|,able|,desired| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,frequency|Ƶ,regular| +ͨ ADV aValue|ֵ,frequency|Ƶ,regular| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,property|,^$BlockUp| +ͨ V function|,experiencer=LandVehicle| +ͨ V become|Ϊ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨ N facilities|ʩ,route|· +ͨ V betray| +ͨ V function|,experiencer=electricity| +ͨ V tell| +ͨ N place|ط,city| +ͨ V read| +ͨ V DoSum| +ͨ V clean|ʹ,scope=gas| +ͨ籨 V tell|,content=information|Ϣ,manner=secret| +ͨ V machine|,*clean|ʹ,#gas| +ͨ羮 V facilities|ʩ,*clean|ʹ,#gas|,mine| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V announce| +ͨ ADV aValue|ֵ,range|,all|ȫ +ͨ V accept| +ͨ V cross|Խ +ͨ PREP {means} +ͨ V function|,experiencer=vehicle|ͨ +ͨ V associate| +ͨ ADJ aValue|ֵ,color|ɫ,red| +ͨ V talk|̸ +ͨ V GetMarried| +ͨ N money| +ͨ N phenomena|,#money|,BecomeLess|,commercial| +ͨ N phenomena|,#money|,BecomeMore|,commercial| +ͨ V catch|׽ס,police| +ͨ V endeavour| +ͨ V cooperate|,manner=endeavour| +ͨ V associate| +ͨ V relate|й +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ V announce|,content=text| +ͨ N text|,*order| +ͨ· N facilities|ʩ,route|· +ͨ ADJ aValue|ֵ,brightness|,bright| +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,range|,all|ȫ +ͨ V clean|ʹ,scope=gas| +ͨ V communicate| +ͨ V facilities|ʩ,*clean|ʹ,#gas| +ͨ V know|֪ +ͨ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ͨȨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ͨ N human|,able|,desired| +ͨ V adjust| +ͨ V endorse|ӵ +ͨ V provide| +ͨ V associate|,commercial| +ͨ N part|,%AnimalHuman|,body| +ͨʷ N fact|,#time|ʱ +ͨ˳ ADJ aValue|ֵ,content|,easy|,desired| +ͨ ADJ aValue|ֵ,content|,easy|,desired| +ͨ׻ V AlterProperty|,PatientAttribute=ordinary| +ͨ׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +ͨ N physical| +ͨ ADJ aValue|ֵ,ability|,able|,desired| +ͨͨ ADV aValue|ֵ,range|,all|ȫ +ͨͬ V collude| +ͨ͸ ADJ aValue|ֵ,content|,detailed|,desired| +ͨ; N facilities|ʩ,route|· +ͨ V LeadTo|ͨ +ͨ V LeadTo|ͨ +ͨ ADJ aValue|ֵ,duration|,TimeLong| +ͨﵩ ADJ aValue|ֵ,duration|,TimeLong| +ͨ V know|֪ +ͨķ N food|ʳƷ +ͨ V communicate|,instrument=letter|ż +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,ability|,able|,@GoThrough| +֤ͨ N document|,*agree|ͬ,#SelfMove| +ͨѶ N affairs|,communicate| +ͨѶ V communicate| +ͨѶ¼ N document| +ͨѶ N institution|,#news| +ͨѶ N facilities|ʩ,#communicate| +ͨѶ N aircraft|,#communicate| +ͨѶԱ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ͨҹ ADJ aValue|ֵ,duration|,TimeLong| +ͨ ADJ aValue|ֵ,kind|,ordinary| +ͨ ADJ aValue|ֵ,property|,$exchange|,#use| +ͨ ADJ aValue|ֵ,property|,$use|,extensive| +ͨ V function|,experiencer=affairs| +ͨ N law|ɷ +֪ͨ V tell| +֪ͨ N document|,*tell| +֪ͨ N document|,*tell| +ͨ N facilities|ʩ,route|· +ͨ N document|,*tell|,#fight| +ͩ N tree| +ͩ N material|,liquid|Һ +ͪ N chemical|ѧ +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͫ N part|,%AnimalHuman|,#eye| +ͬ V BeSame|ͬ +ͬ ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ COOR {and|} +ͬ PREP {coagent} +ͬ PREP {contrast} +ͬ PREP {partner} +ͬ N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,attachment|,alike| +ͬ N human|,*study|ѧ,education|,friend| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,clan| +ͬ N human|,#country| +ͬ ADJ aValue|ֵ,clan|,alike| +ͬ V pity|,target=EachOther|໥ +ͬ ADJ aValue|ֵ,speed|ٶ,alike| +ͬ ADJ aValue|ֵ,time|ʱ,alike| +ͬ N machine| +ͬ N machine| +ͬ V hate|,manner=together|ͬ +ͬ N human|,*study|ѧ,education|,friend| +ͬ V study|ѧ,manner=together|ͬ,education| +ͬ V differ|ͬ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ V aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬѧ ADJ aValue|ֵ,status|,alike|,#education| +ͬѧ N attribute|,rank|ȼ,#study|ѧ,alike|,&human| +ͬԼ ADJ aValue|ֵ,power|,alike| +ͬҪ ADJ aValue|ֵ,importance|,alike| +ͬ ADJ aValue|ֵ,clan| +ͬ V mating| +ͬĸ ADJ aValue|ֵ,clan| +ͬʹ V undergo|,manner=together|ͬ,content=circumstances| +ͬ N emotion|,alike| +ͬͬ N payment|,alike| +ͬ V BeSame|ͬ,scope=result| +ͬھ V perish|,manner=together|ͬ +ͬ V engage|,manner=together|ͬ +ͬ V ize|̬,PatientAttribute=alike|,medical|ҽ +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage|,#crime| +ͬ N attribute|,rank|ȼ,BeSame|ͬ,&education| +ͬôѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ͬ V alive|,manner=together|ͬ,#GetMarried| +ͬ V reside|ס,manner=together|ͬ +ͬ ADJ aValue|ֵ,kind|,alike| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,age|,alike| +ͬ V collude| +ͬ· V walk|,manner=together|ͬ +ͬ ADJ aValue|ֵ,relatedness|,intimate| +ͬ˹ N place|ط,country|,*ally|,military| +ͬ˻ N community|,politics|,(China|й) +ͬı V engage|,content=crime|,manner=together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬı N human|,*engage|,#crime|,together|ͬ,undesired|ݬ +ͬ ADJ aValue|ֵ,age|,alike| +ͬ N time|ʱ,year|,alike| +ͬ N time|ʱ +ͬ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ͬ V pity| +ͬ N emotion|,pity| +ͬ N human|,friend|,*engage| +ͬ N human|,friend|,*engage| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ N time|ʱ,alike| +ͬʱ CONJ {supplement|ݽ} +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬʱ ADJ aValue|ֵ,time|ʱ,alike| +ͬ V engage|,manner=together|ͬ +ͬ N human|,*engage|,together|ͬ +ͬҲٸ V fight|,#family| +ͬ ADJ aValue|ֵ,age|,alike| +ͬλ N part|,%physical| +ͬ N human|,friend| +ͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +ͬ ADJ aValue|ֵ,form|״ +ͬͬ V ally| +ͬЭ V cooperate| +ͬ V SelfMoveInManner|ʽ,manner=together|ͬ +ͬ ADJ aValue|ֵ,occupation|ְλ,alike| +ͬ N human|,#occupation|ְλ,alike| +ͬ N fact|,love| +ͬ N human|,love| +ͬѧ N human|,*study|ѧ,education|,friend| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬҵ N community|,commercial| +ͬһ ADJ aValue|ֵ,similarity|ͬ,alike| +ͬһ N attribute|,similarity|ͬ,alike|,&entity|ʵ +ͬ V agree|ͬ +ͬ ADJ aValue|ֵ,similarity|ͬ,alike|,#information|Ϣ +ͬ N expression| +ͬ N attribute|,similarity|ͬ,alike|,&sound| +ͬԴ ADJ aValue|ֵ,source|Դ,alike| +ͬԴ ADJ aValue|ֵ,source|Դ,original|ԭ +ͬ־ N human|,friend|,*engage|,together|ͬ +ͬ۹ V ally| +ͬ N material|,linear|,@transmit| +ͬס N human|,*reside|ס,together|ͬ +ͬ ADJ aValue|ֵ,clan| +ͭ N metal| +ͭ N money| +ͭ N tool|þ,*print|ӡˢ +ֽͭ N paper|ֽ +ͭ N MusicTool| +ͭ© N tool|þ,*tell|,#time|ʱ +ͭ N human|,#occupation|ְλ,industrial| +ͭ N chemical|ѧ +ͭɫ ADJ aValue|ֵ,color|ɫ,green| +ͭģ N tool|þ +ͭ N tool|þ,*reward|,$GiveAsGift|,desired| +ͭ N tool|þ,generic|ͳ +ͭǮ N money| +ͭ˿ N tool|þ,linear| +ͭ N image|ͼ,$carve| +ͮ ADJ aValue|ֵ,color|ɫ,red| +ͮ N CloudMist| +ͯ N character|,surname|,human|,ProperName|ר +ͯ N human|,young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯ N text|,humanized| +ͯ N experience|,#young|,ignorant|֪ +ͯ N time|ʱ,#young| +ͯ N human|,#occupation|ְλ,employee|Ա,young| +ͯɽ N land|½ +ͯ N sound|,#music|,#young| +ͯ N emotion|,young| +ͯϱ N human|,family|,female|Ů +ͯװ N clothing|,#young| +ͯ N human|,young| +ͯӼ N bird| +ͯӾ N human|,young|,#military| +ͯ ADJ aValue|ֵ,behavior|ֹ,fair|,desired|,commercial| +Ͱ CLAS NounUnit|,&physical| +Ͱ N tool|þ,cubic|,@put| +Ͱ״ ADJ aValue|ֵ,form|״ +ͱ V reveal|¶ +ͱ V stab| +ͱ¦ V err| +ͱ V err| +Ͳ CLAS NounUnit|,&physical| +Ͳ N part|,%clothing| +Ͳ N part|,%tree|,body| +Ͳ N shape| +Ͳ״ N FlowerGrass| +Ͳ N shape| +ͳ V include| +ͳ V merge|ϲ +ͳ ADJ qValue|ֵ,amount|,all|ȫ +ͳ N room|,%vehicle|ͨ +ͳ N attribute|,name|,generic|ͳ,&entity|ʵ +ͳ V plan|ƻ +ͳ ADJ aValue|ֵ,range|,all|ȫ +ͳ ADJ aValue|ֵ,performance| +ͳ V calculate| +ͳƱ N account| +ͳƾ N institution|,*calculate|,ProperName|ר,politics| +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N quantity|,amount|,&calculate| +ͳѧ N knowledge|֪ʶ,#calculate| +ͳѧ N human|,#knowledge|֪ʶ +ͳԱ N human|,#occupation|ְλ,*calculate| +ͳ N fact|,exam| +ͳ N human|,military|,official| +ͳ V order| +ͳ V order| +ͳ N location|λ,@LieDown| +ͳ˧ N human|,#occupation|ְλ,official|,military| +ͳ˧ N part|,%army|,*order| +ͳͳ ADV qValue|ֵ,range|,all|ȫ +ͳϽ V manage| +ͳһ ADJ aValue|ֵ,content|,neat|,desired| +ͳһ V merge|ϲ +ͳһ N entity|ʵ +ͳһ N attribute|,content|,neat|,&entity|ʵ +ͳһս N community|,ally| +ͳһ N human|,*merge|ϲ +ͳս N community|,ally| +ͳս N part|,%community| +ͳ V control| +ͳ V manage| +ͳ N human|,*manage| +ʹ ADJ aValue|ֵ,degree|̶,extreme| +ʹ N emotion|,sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V painful|ʹ +ʹ V sorrowful| +ʹ V ExpressAgainst|Ǵ +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N location|λ,#experience|,undesired|ݬ,#unfortunate| +ʹ V beat|,manner=fierce| +ʹˮ V beat|,manner=fierce| +ʹ˼ʹ V LookBack|,content=experience| +ʹ˼ʹ V LookBack|,content=painful|ʹ +ʹ V disgust| +ʹ N disease| +ʹǰ V amend|,content=wrong| +ʹ V perception|֪ +ʹ V disgust| +ʹ V painful|ʹ +ʹ V weep| +ʹ N experience|,undesired|ݬ,#unfortunate| +ʹ N phenomena|,undesired|ݬ +ʹ V unfortunate| +ʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹ V satisfied| +ʹʹ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ʹϧ V sorry|ϧ +ʹ V sorrowful| +ʹļ V repent|û +ʹ N attribute|,importance|,&thing| +ʹ N phenomena|,hardship|,undesired|ݬ +͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵ V steal|͵,crime| +͵ V slack|͵ +͵ V steal|͵,crime| +͵ V cross|Խ,#crime| +͵ ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ +͵ʴ V WorthNot|ֵ +͵ V look|,manner=secret| +͵ N human|,*look|,secret|,undesired|ݬ +͵ V use|,patient=time|ʱ +͵ V obtain|õ,means=steal|͵,crime| +͵ V slack|͵ +͵ ADJ slack|͵ +͵ V deceive|ƭ +͵ V steal|͵,crime| +͵ V ShowLove|ʾ,manner=secret| +͵ȡ N human|,*steal|͵,undesired|ݬ,crime| +͵ V alive|,manner=disgraced| +͵˰ V evade|ر,content=expenditure|,crime|,commercial| +͵컻 V deceive|ƭ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵͵ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ +͵Ϯ V attack|,manner=secret|,military| +͵Ϯ V attack|,manner=sudden|,military| +͵ V rest|Ϣ +͵ V slack|͵ +͵ V look|,manner=secret| +͵Ӫ V attack|,manner=sudden|,patient=place|ط,military| +Ͷ V GoInto| +Ͷ V drop|Ͷ +Ͷ V fit|ʺ +Ͷ V illuminate| +Ͷ V post|ʼ +Ͷ V put| +Ͷ V send| +Ͷ V throw| +Ͷ V admit|,content=crime|,police| +Ͷ V admit|,content=crime|,police| +Ͷ V buy|,possession=guarantee|֤ +Ͷ N human|,*buy|,#guarantee|֤ +Ͷ V SeekRefuge|Ͷ +Ͷʴ V include|,ResultWhole=army|,military| +Ͷҵ绰 N facilities|ʩ,*communicate| +Ͷ V propose|,content=price|۸,commercial| +Ͷ V start|ʼ,content=produce|,industrial| +Ͷ V surrender|,military| +Ͷ V drop|Ͷ,patient=weapon| +Ͷ V throw|,patient=weapon| +Ͷ N human|,*throw|,military| +Ͷ V betray|,military| +Ͷ V post|ʼ +ͶԱ N human|,#occupation|ְλ,*post|ʼ +Ͷ V spend| +Ͷ V submit|,possession=readings| +Ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ͷ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷ V venture|ð,content=earn|׬,commercial| +Ͷѷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,treacherous|,politics| +Ͷȡ V venture|ð,content=seek|ıȡ +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ N human|,*venture|ð,#earn|׬,commercial| +Ͷ V surrender| +Ͷ V surrender|,military| +Ͷ V put| +Ͷ V engage|,content=exam| +Ͷ V SeekRefuge|Ͷ +Ͷ V shoot|,sport| +ͶƱ V drop|Ͷ,patient=document|,time=select|ѡ +ͶƱ V drop|Ͷ,patient=document|,purpose=oppose| +ͶƱ N time|ʱ,day|,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N tool|þ,*drop|Ͷ,#document|,#select|ѡ +ͶƱ޳ V drop|Ͷ,patient=document|,purpose=agree|ͬ +ͶƱվ N facilities|ʩ,space|ռ,@drop|Ͷ,#document|,#select|ѡ +ͶƱ N human|,*select|ѡ +Ͷ V fit|ʺ +Ͷ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +Ͷ N fund|ʽ,$provide| +Ͷ V provide|,possession=fund|ʽ +Ͷ V put| +Ͷ V illuminate| +Ͷ V throw| +Ͷ V include| +Ͷʦ V study|ѧ +Ͷ N human|,*exercise| +Ͷ V transmit| +Ͷ V reside|ס +Ͷ V accuse|ظ +Ͷұ V associate|,manner=friend| +Ͷ V drop|Ͷ +ͶЧ V endeavour| +ͶӰ N trace|,#lights| +Ͷ V throw| +Ͷע V put| +Ͷ V provide|,possession=fund|ʽ,commercial| +Ͷ N human|,*provide|,#fund|ʽ,commercial| +ͷ ADJ aValue|ֵ,importance|,important| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ͷ N attribute|,pattern|ʽ,&head|ͷ +ͷ N human|,official| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%event|¼,aspect| +ͷ N part|,%physical|,*surplus|ʣ +ͷ N part|,%physical|,edge| +ͷ N part|,%physical|,head|ͷ +ͷ N part|,%physical|,tail|β +ͷ N part|,%time|ʱ,ending|ĩ +ͷ NUM qValue|ֵ,sequence|,ordinal| +ͷ N part|,%publications|鿯 +ͷͷ N part|,%publications|鿯 +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N fund|ʽ +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%human|,hair|ë +ͷ N part|,%AnimalHuman|,head|ͷ +ͷǹ N part|,%AnimalHuman|,head|ͷ +ͷ N result|,#succeed|ɹ,desired| +ͷ N part|,%AnimalHuman|,bone| +ͷ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͷ V dizzy| +ͷ N attribute|,ability|,&human| +ͷ N clothing|,#head|ͷ +ͷ N part|,%AnimalHuman|,head|ͷ +ͷ N part|,%furniture|Ҿ +ͷ N clothing|,#head|ͷ,*protect| +ͷ N location|λ,InFront|ǰ +ͷ N time|ʱ,past| +ͷ­ N part|,%AnimalHuman|,head|ͷ +ͷ N livestock| +ͷ ADJ aValue|ֵ,reputation|,glorious|,desired| +ͷ N tool|þ,*decorate|װ,#female|Ů +ͷ N human|,desired|,important| +ͷĿ N human|,official|,undesired|ݬ,crime| +ͷ N thinking|˼ +ͷԷ V flurried| +ͷԿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷƤ N part|,%AnimalHuman|,skin|Ƥ +ͷƤ N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷƤм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷѪ V unfortunate| +ͷ N phenomena|,sport| +ͷ N human|,official| +ͷ N material|,linear|,*weave| +ͷ N tool|þ,linear|,*fasten|˩ +ͷʭ N InsectWorm|,undesired|ݬ +ͷ N tool|þ,*decorate|װ +ͷ V painful|ʹ +ͷ N time|ʱ,begin|ʼ,day| +ͷ N time|ʱ,past|,day| +ͷʹ ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ͷʹ V painful|ʹ +ͷͷǵ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ͷ N attribute|,occupation|ְλ,&human| +ͷ N image|ͼ,$carve| +ͷм N stone|ʯ,#AnimalHuman|,#hair|ë,waste| +ͷ N part|,%event|¼,nerve| +ͷ N bird| +ͷ N livestock| +ͷһ NUM qValue|ֵ,sequence|,ordinal| +ͷ N tool|þ,*MakeUp|ױ +ͷ V dizzy| +ͷ N human|,official| +͸ V GoThrough| +͸ ADJ aValue|ֵ,degree|̶,extreme|,desired| +͸ V appear| +͸ V soak| +͸ V stab| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ ADJ aValue|ֵ,content|,deep|,desired| +͸ ADJ aValue|ֵ,content|,profound|,desired| +͸ V dredge|ͨ +͸ V reveal|¶ +͸ V reveal|¶,patient=event|¼ +͸ V GoThrough| +͸ N tool|þ,*look| +͸״ ADJ aValue|ֵ,form|״ +͸ ADJ aValue|ֵ,brightness|,bright| +͸ V understand| +͸© V reveal|¶ +͸¶ V reveal|¶ +͸ ADJ aValue|ֵ,clearness|,clear| +͸ N attribute|,clearness|,thing| +͸ƽ N machine| +͸ V dredge|ͨ +͸ V respire| +͸ V GoThrough| +͸ V diagnose|,means=look|,medical|ҽ +͸ N RainSnow|ѩ +͸֧ V collect| +͸֧ V collect|,commercial| +͹ V FormChange|α,StateFin=protruding|͹ +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹ N tool|þ,*print|ӡˢ +͹߽ ADJ aValue|ֵ,form|״ +͹ N part|,%implement| +͹ N part|,%machine| +͹ ADJ aValue|ֵ,form|״,protruding|͹ +͹澵 N tool|þ,*look|,#enlarge| +͹͸ N tool|þ,*look|,#enlarge| +ͺ ADJ aValue|ֵ,form|״,blunt| +ͺ ADJ aValue|ֵ,fullness|,empty| +ͺ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ͺ ADJ aValue|ֵ,fullness|,empty|,#hair|ë +ͺ N human|,#disease|,#hair|ë +ͺ N bird| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ V run| +ͻ V change|,manner=sudden| +ͻ N fact|,change| +ͻ V FormChange|α,StateFin=protruding|͹ +ͻ V GoOut|ȥ +ͻ ADJ aValue|ֵ,content|,opened| +ͻ ADJ aValue|ֵ,form|״,protruding|͹ +ͻ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ͻ V express|ʾ +ͻ N part|,%entity|ʵ,important| +ͻΧ V GoOut|ȥ,LocationIni=surround|Χ +ͻͽ V GoForward|ǰ,manner=fast| +ͻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻ V attack|,manner=sudden|,military| +ͻ V endeavour| +ͻ N part|,%army| +ͻ N human|,*endeavour| +ͻ N human|,able|,desired| +ͻ˹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Tunisiaͻ˹) +ͻ˹ N place|ط,capital|,ProperName|ר,(Tunisia|ͻ˹) +ͻ˹ N place|ط,country|,ProperName|ר,(Africa|) +ͻ˹ N human|,(Tunisia|ͻ˹) +ͻ V MakeBetter|Ż +ͻ V split|ƿ +ͻƿ N part|,%place|ط,mouth| +ͻ V happen|,manner=sudden| +ͻ V rise| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADJ aValue|ֵ,behavior|ֹ,sudden| +ͻȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ͻ V happen|,manner=sudden| +ͻΧ V split|ƿ,patient=surround|Χ,military| +ͻϮ V attack|,manner=sudden|,military| +ͻأ ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ +ͻأ ADJ aValue|ֵ,height|߶,tall| +ͻ N community|,ProperName|ר,(China|й) +ͼ N image|ͼ +ͼ N image|ͼ,#earth|,#country| +ͼ N image|ͼ,$draw| +ͼ N plans|滮 +ͼ V plan|ƻ +ͼ V seek|ıȡ +ͼ N thought|ͷ +ͼ V try| +ͼ N image|ͼ +ͼ N tool|þ,*print|ӡˢ +ͼ N symbol|,#computer| +ͼ ADJ image|ͼ +ͼ N stationery|ľ,*fix|ס +ͼ N money|,(Mongolia|ɹ) +ͼ N image|ͼ,$draw| +ͼ N stationery|ľ +ͼ N publications|鿯,#image|ͼ +ͼ N image|ͼ +ͼ N attribute|,scene|,&inanimate| +ͼ N text|,*explain|˵ +ͼı V plan|ƻ +ͼƬ N image|ͼ +ͼƬ N image|ͼ,$TakePicture| +ͼ N publications|鿯,#image|ͼ +ͼذ V CauseToAppear|,patient=purpose|Ŀ +ͼ N publications|鿯,mass| +ͼ N InstitutePlace|,@read|,@borrow|,#readings| +ͼݹԱ N human|,#occupation|ְλ,*manage| +ͼ N room|,@read| +ͼ N thing| +ͼIJï ADJ aValue|ֵ,GoodBad|û,good|,desired| +ͼ N image|ͼ +ͼ N image|ͼ +ͼ N image|ͼ,*produce| +ͼ N stationery|ľ +ͼֽ N image|ͼ,*build| +ͽ ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ N human| +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ N human|,*study|ѧ +ͽ N human|,*study|ѧ,#religion|ڽ +ͽ ADJ aValue|ֵ,performance|,walk| +ͽ N human|,*study|ѧ +ͽ N human|,#occupation|ְλ,*study|ѧ,employee|Ա +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ޹ V fail|ʧ +ͽ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽȻ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ͽ ADJ aValue|ֵ,behavior|ֹ,#fight| +ͽ N fact|,punish|,#detain|ס,police| +ͽͽ N human|,*study|ѧ,mass| +ͽͽ N human|,*study|ѧ,undesired|ݬ,mass| +; N facilities|ʩ,route|· +; N facilities|ʩ,space|ռ,#tour|,@reside|ס +; PREP {LocationThru} +; N method| +; N location|λ,%route|· +Ϳ V apply|ͿĨ +Ϳ V draw| +Ϳ V remove| +Ϳ N part|,%physical|,skin|Ƥ +Ϳ V alter|ı,manner=apply|ͿĨ +Ϳ N material|,*apply|ͿĨ,generic|ͳ +ͿĨ V apply|ͿĨ +ͿĨ V draw| +Ϳ N character|,surname|,human|,ProperName|ר +Ϳ V apply|ͿĨ +Ϳˢ V apply|ͿĨ +Ϳѻ V draw| +Ϳ֬Ĩ V MakeUp|ױ +Ϳ֬Ĩ V beautify| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + N tool|þ,*cut|,*split|ƿ + N human|,*cut|,*split|ƿ,#livestock| + N human|,undesired|ݬ,*kill|ɱ + N human|,#occupation|ְλ,*cut|,*split|ƿ,#livestock| +¾ V kill|ɱ,crime| +ɱ V kill|ɱ,agricultural|ũ +ɱ V kill|ɱ,crime| + V kill|ɱ,agricultural|ũ +׳ N InstitutePlace|,*kill|ɱ,agricultural|ũ +˰ N expenditure|,#kill|ɱ,agricultural|ũ + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + ADJ aValue|ֵ,source|Դ,original|ԭ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N land|½ + N place|ط,country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Turkmenistan|˹̹) + N stone|ʯ + N human|,undesired|ݬ,unable|ӹ + N bird| +߽ V perish| + N InsectWorm| + N beast| + N material|,?clothing| + N InsectWorm| + N artifact|˹,generic|ͳ + N humanized| + N land|½ +ظĸ V improve|,patient=land|½ + N humanized| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Turkey|) + N place|ط,country|,ProperName|ר,(Asia|) + N money|,(Turkey|) + N human|,(Turky|) + N language|,#country|,ProperName|ר + N method| + CLAS NounUnit|,&stone|ʯ + N affairs| + N document|,medical|ҽ,#medicine|ҩ + N human|,crime|,undesired|ݬ,*rob| + V improve|,patient=land|½ + ADJ aValue|ֵ,color|ɫ,yellow| +ʵ N human|,undesired|ݬ,fierce|,official| + N artifact|˹,generic|ͳ + N community|,ProperName|ר,(China|й) + V build| + N affairs|,*build| +˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +˹̹ N place|ط,country|,ProperName|ר,(Asia|) +˹̹ N human|,(Turkmenistan|˹̹) + N language|,#country|,ProperName|ר +ù N medicine|ҩ +ľ N building| +ľ N affairs|,*build| + N material|,*build| + ADJ aValue|ֵ,pattern|ʽ,ugly|,undesired|ݬ + N stone|ʯ +ѧ N knowledge|֪ʶ,#stone|ʯ +ѧ N human|,#knowledge|֪ʶ + N human|,#place|ط +ɫ ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,source|Դ,original|ԭ +ʯ N stone|ʯ +ʯ N stone|ʯ,?material| +ʯ CLAS NounUnit|,&stone|ʯ +˾ N human|,official| +ز N artifact|˹,generic|ͳ +زƷ N artifact|˹,generic|ͳ + N celestial| + N sound|,#language| + V bury| + N regulation|,politics| +ֽ N paper|ֽ + ADJ aValue|ֵ,source|Դ,stone|ʯ + N attribute|,property|,stone|ʯ + N human|,#place|ط + N human|,*reside|ס +ר N human|,#knowledge|֪ʶ +״ ADJ aValue|ֵ,form|״ + N community|,ProperName|ר,(China|й) + V return| + V speak|˵ + V vomit|³ +³ V vomit|³ +¹ V improve| +¶ V reveal|¶ +¶ V tell| +ĭ N part|,%AnimalHuman|,liquid|Һ + V pregnant|,agricultural|ũ +к V StomachTrouble|֢ +Ѫ V bleed|Ѫ +緼 N bird| + N livestock| +ô N disease|,#mouth| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V sorrowful| + V flee|,manner=fast| + N livestock| +βͳ ADJ aValue|ֵ,duration|,TimeShort| + N human|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + ADJ qValue|ֵ,amount|,many| + N water|ˮ +ļ ADJ aValue|ֵ,speed|ٶ,fast| +ļ ADJ qValue|ֵ,amount|,many| + N water|ˮ + V PlayWith|Ū + ADJ aValue|ֵ,form|״,round|Բ + N community| + N community|,ProperName|ר + N part|,%army| + N shape|,round|Բ +ų N human|,#occupation|ְλ,official|,entertainment| +ų N human|,#occupation|ְλ,official|,military| +ų N human|,official| +ŶӾ N mental|,#coordinate|Э,desired| +ŷ N material|,?food|ʳƷ +Ż N community|,undesired|ݬ +Ž ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ž V ally| +Žһ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Žһ V ally| +ž V meet| + N fish| + N part|,%fish|,body| + N community| + N fact|,sport| + N fact|,sport| + ADJ aValue|ֵ,form|״,round|Բ + N fish| +Ա N human|,#community| +Ա N human|,#organization|֯ +Բ V meet| +Բ N time|ʱ,festival|,@congratulate|ף + N food|ʳƷ + V TakeAway|ᶯ + V deduce| + V delay| + V endorse|ӵ + V push| + V refuse| + V select|ѡ + V turn|Ťת + V urge|ʹ +ƱԴ V investigate| +Ʋ V CauseToGrow|ʹɳ +Ʋ ADJ aValue|ֵ,trueness|α,^true| +Ʋ V deduce| +Ʋ V guess|² +Ƴ N human|,*push|,#LandVehicle| +Ƴ³ V improve| +Ƴ V WellTreat|ƴ +Ƴ V delay| +Ƴ V endorse|ӵ +Ƴ V propose| +ƴ V reject|ؾ +Ƶ V deny| +Ƶ V reverse|ߵ +Ƶ V deduce| +ƶ V choose|ѡ +ƶ V deduce| +ƶ V urge|ʹ +ƶ N attribute|,strength|,&physical| +ƶ N human|,*urge|ʹ +ƶ V deduce| +ƶ V guess|² +ƶ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ƶ V deduce| +Ʒ V defeat|սʤ +Ʒ V deny| +Ʒ V reverse|ߵ +ƹ V disseminate| +Ƽ V recommend|Ƽ +Ƽ N human|,*recommend|Ƽ +ƽ V GoForward|ǰ +ƽ V GoForward|ǰ,military| +ƽ V mobilize| +ƽ N material|,*mobilize| +ƽ N human|,*urge|ʹ +ƾ V check| +ƾ V research|о +ƾ V select|ѡ + V deduce| + N attribute|,strength|,&entity|ʵ + V deduce| + V cure|ҽ,means=press|ѹ,medical|ҽ + V think|˼ + V investigate| +ȴ V refuse| + V refuse| + V refuse| + N human|,#occupation|ְλ,police|,*judge|ö + V calculate| +ͷ V MakeUp|ױ,patient=hair|ë +ͷ V MakeUp|ױ,scope=hair|ë + N LandVehicle| + V refuse| + V refuse| +ί V refuse| + V guess|² + V sell|,commercial| +Ա N human|,#occupation|ְλ,*sell|,commercial| +ж V refuse| +ø V believe| + V conduct|ʵʩ +ѡ V select|ѡ + V delay| + V disappear|ʧ + V grow|ɳ + N tool|þ,*MakeUp|ױ + V refuse| +õ N human|,*reject|ؾ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + V decline|˥ + V disheartened| +ǰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +Ƿ V disheartened| + V disheartened| + ADJ disheartened| +Ȼ V disheartened| +ɥ V disheartened| + N attribute|,circumstances|,wane|˥,&entity|ʵ + ADJ attribute|,outlook|ǰ,wane|˥,&thing| + V disheartened| + N food|ʳƷ + N part|,%AnimalHuman|,leg| + N part|,%physical|,leg| +ȶ N part|,%AnimalHuman|,leg| +Ƚ N attribute|,ability|,#walk|,&human| + N part|,%AnimalHuman|,leg| + N human|,crime|,undesired|ݬ + V StripOff|ȥ +ɱ V change| +ɻ V StripOff|ȥ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ɻʷ N human|,extravagant|,crime|,undesired|ݬ + V StripOff|ȥ +ɫ V AppearanceChange|۱,scope=color|ɫ + V GoBackward| + V MoveItBack| + V cease|ͣ + V decline|˥ + V refuse| + V remove| + V return| + V withdraw|˳ +˱ V escape| +˱ V escape| +˱ V GoBackward|,military| +˱ V GoBackward|,patient=army|,military| +˲ V inferior| +˳ V withdraw|˳,SourceWhole=fact| +˳ V decline|˥ +˳ V withdraw|˳ +˵ V withdraw|˳,SourceWhole=organization|֯,politics| +˹ V withdraw|˳,SourceWhole=community|,commercial| +˻ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +˻ ADJ aValue|ֵ,standard|׼,bad| +˻ V decline|˥ +˻ V return| +˻ V exchange| +˻ V GoBack| +˻ V return| +˻ V cease|ͣ,content=GetMarried| +˻ V cease|ͣ,content=community| +˻ V withdraw|˳,SourceWhole=community| +˻ N method|,produce| +˻ V return|,possession=physical|,commercial| +˾ N decline|˥ +˾ V withdraw|˳ +˿ V return|,possession=fund|ʽ +· N facilities|ʩ,linear|,route|·,@GoBackward| +· N space|ռ + V recompense| +Ʊ V coupon|Ʊ֤,commercial| +Ʊ V return|,possession=coupon|Ʊ֤,commercial| + V decline|˥ + V cease|ͣ,content=GetMarried| +ȴ V GoBackward| +ȴ V GoBackward|,military| + V surrender| + V remove|,patient=fever| +ɫ V AppearanceChange|۱,scope=color|ɫ + V remove|,patient=fever| +˰ V return|,possession=expenditure|,commercial| + V GoBackward| +λ V cease|ͣ,content=undertake|,politics| + V withdraw|˳,SourceWhole=army|,military| +ϯ V withdraw|˳,SourceWhole=fact| + V cease|ͣ,content=undertake| +ݽ N payment| + N attribute|,age|,&cease|ͣ,#occupation|ְλ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N human|,*cease|ͣ +ѧ V cease|ͣ,content=study|ѧ,education| + V withdraw|˳,SourceWhole=army|,military| + V cease|ͣ,content=undertake|,politics| +ְ V cease|ͣ,content=undertake| + V swallow| + V take|ȡ +̲ V occupy|ռ +̲ V occupy|ռ,military| +û V cheat|ƭ +û V occupy|ռ + V endure| +ʳ V swallow| + V swallow| + V handle| + N quantity|,amount|,#transport|,&physical| + V KeepSilence|˵ + V swallow| + N place|ط,village| + V reside|ס,military| + V store| +Ϳ V engage|,content=affairs|,agricultural|ũ,military| + V engage|,content=affairs|,agricultural|ũ,military| + V reside|ס,military| + N part|,%AnimalHuman|,body| +β N part|,%AnimalHuman|,body| + N part|,%animal|,tail|β + V delay| + V pull| +ϰ N tool|þ,*wipe| +ϳ N LandVehicle|,$pull| +ϴ N ship|,*pull| +ϴ V pull| +Ϻ V obstruct|ֹ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,speed|ٶ,slow|,undesired|ݬ + N machine|,#crop|ׯ,*transport| + V obstruct|ֹ + V relate|й + N ship|,*pull| +ˮ ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ˮ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +Ƿ V owe|Ƿ + N tool|þ,*catch|׽ס,#fish| +洬 N ship|,*catch|׽ס,#fish| +Ь N clothing|,#foot| + V delay| + N human|,*delay| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + V ServeAsFoil| + V SupportWeight|ס + V depend| + V entrust|ί + V refuse| + N tool|þ,*SupportWeight|ס +б N place|ط,ProperName|ר +д N reason| +ж N human|,friend|,*engage|,#crime| +ж N InstitutePlace|,*TakeCare|,#young|,#human| +и V depend| +и V entrust|ί +й V deceive|ƭ +й V manage| +й» N part|,%institution|,politics|,(institution|=UN|Ϲ) +лҰ N tool|þ,*SupportWeight|ס,#build| +м N tool|þ,*PropUp|֧ +˹ N InstitutePlace|,*sell|,@buy|,#physical|,commercial| + V entrust|ί + N tool|þ,cubic|,@put|,#edible|ʳ + V entrust|ί +Ҷ N part|,%plant|ֲ,hair|ë + V entrust|ί,ResultEvent=transport| +˵ N bill|Ʊ,*entrust|ί,#transport| + N human|,*entrust|ί,#transport| + N physical|,$transport| +ס V SupportWeight|ס + N tool|þ,*SupportWeight|ס + V StripOff|ȥ + V fall| + V leave|뿪 + V remove| +Ѱ V due| +Ѳ V cease|ͣ,content=produce| +ѳ V leave|뿪 +ѷ N disease| +Ѹ V disease| +Ѹ V succeed|ɹ +ѹ V disconnect| +ѹ V separate|,partner=facilities|ʩ +ѻ V BeIndependent|,partner=computer| +ѽ V lose|ʧȥ,possession=material| +ѽ V separate|,patient=material| +ѽ V separate| +Ѿ N disease| +ѿ V separate| +ѿڶ V speak|˵,manner=sudden| + V disconnect| +Ӵ V disconnect| +Σ ADJ aValue|ֵ,circumstances|,safe|,desired| + V separate|,patient=crop|ׯ,agricultural|ũ + N machine|,*separate|,#crop|ׯ,agricultural|ũ + V remove|,patient=material|,industrial| +© V disappear|ʧ + V fall| +ä V study|ѧ,content=character| +ë V lose|ʧȥ,possession=hair|ë +ë V remove|,patient=hair|ë +ë N medicine|ҩ,*remove|,#hair|ë +ë ADJ aValue|ֵ,property|,remove|,#hair|ë +ñ V StripOff|ȥ,patient=clothing| +ƶ V disconnect|,partner=poor| +ƶ¸ V become|Ϊ,isa=rich| + V due| + V remove|,patient=gas|,industrial| +ɫ V AlterColor|ɫ +ɫ V AppearanceChange|۱,scope=color|ɫ + V leave|뿪 + V fall| + V fulfil|ʵ + V sell| +ˮ V disease| +ˮ V remove|,patient=liquid|Һ +ˮ V remove|,patient=liquid|Һ,industrial| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +̥ V forming|γ +̥ V amend| + V flee| +λ N disease| + V escape|,cause=dangerous|Σ + V disappear|ʧ,#sell|,commercial| + V remove|,patient=chemical|ѧ + V remove|,patient=gas|,industrial| +Ǻ N part|,%animate| +ӱ V appear| + V lose|ʧȥ,possession=hair|ë +֬ V remove|,patient=material|,industrial| + N bird|,^fly| + N bird|,^fly| + N regulation|,politics| + N character|,(China|й) + N tool|þ,*recreation| + V CarryOnBack| + N livestock| + N inanimate|,commercial| + N beast| + V disable|м,partof=body| +ձ V disable|м,partof=body| +ձ N human|,undesired|ݬ,*disable|м +շ N part|,%livestock| +¹ N beast| + N material|,?clothing|,?tool|þ +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N human|,undesired|ݬ,*disable|м + N character|,(China|й) +Բ ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +׵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Э V coordinate|Э + V CauseToGrow|ʹɳ + N character|,surname|,human|,ProperName|ר + V produce| +ذ N character|,surname|,human|,ProperName|ר +ػ V engage|,agricultural|ũ +ػ N human|,*start|ʼ +ؿ V enlarge| + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +չ V enlarge| + N part|,%AnimalHuman|,liquid|Һ + V vomit|³ + V ExpressAgainst|Ǵ +ĭ N part|,%AnimalHuman|,liquid|Һ + V abandon| +Һ N part|,%AnimalHuman|,liquid|Һ + V dig|ھ +ڳ V dig|ھ +ھ V dig|ھ +ھ N machine|,*dig|ھ +ھDZ V use|,patient=strength| +ڿ˼ V think|˼ +ڿ V satirize| +DZ V use|,patient=strength| +ǽ V MakeTrouble| + ECHO sound| + N beast| + N human|,military| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,form|״,dented| +ݵ N land|½ + ADJ aValue|ֵ,form|״,dented| + N human|,young| + N livestock|,young| + N human|,young| + N fish| + N human|,employee|Ա,young| + N human|,young| + N livestock|,young| + N material|,?building| + CLAS unit|λ,&electricity| +ߵ N tool|þ,*build| +߶ N place|ط,capital|,ProperName|ר,(Liechtenstein|֧ʿ) +߷ N house| +߹ N affairs|,#build| +߹ N human|,#occupation|ְλ,*build|,industrial| +߼ӶŹ N place|ط,capital|,ProperName|ר,(the Upper Volta|ֶ) +߽ N human|,#occupation|ְλ,*build|,industrial| +߽ V destroy| +߽ V end|ս +߽ V perish| + N place|ط,capital|,ProperName|ר,(Malta|) +ֽ N material| + N stone|ʯ +¢ N part|,%building|,skin|Ƥ +¢ N fish| +˹ N material|,gas|,*burn| + CLAS unit|λ,&electricity| + N clothing|,#foot| + N tool|þ,linear|,*fasten|˩ + N clothing|,#foot| +Ͳ N part|,%clothing|,#foot| + N clothing|,#foot| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,form|״,slanted| + N attribute|,SocialMode|,bad|,&human|,&organization|֯ +а N attribute|,SocialMode|,bad|,&human|,&organization|֯ + V alter|ı,StateIni=true|,StateFin=fake|α +ŤŤ ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| + ADJ aValue|ֵ,behavior|ֹ,informal|ʽ + ADJ aValue|ֵ,kind|,other| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| +װ N tool|þ,*wrap| + N money|,foreign| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external| + N place|ط + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + N human|,foreign|,*visit| +Ⲻ N place|ط,city|,other| +ⲿ ADJ aValue|ֵ,location|λ,external| +ⲿ N location|λ,external| +ⲿ N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,location|λ,external| + N part|,%entity|ʵ +ռ N celestial| +ⳤ N human|,#occupation|ְλ,official|,diplomatic|⽻ + V GoOut|ȥ +⴫ V disseminate| +⴫ N readings| + N part|,%computer| + N part|,%LandVehicle|,leg| + N human|,enemy|,foreign| + N place|ط,other| + N human| + N news| + V transport| + N part|,%AnimalHuman|,*listen| + N disease| +ⷽ N human|,foreign| + V apply|ͿĨ + N facilities|ʩ,#ship|,*stay|ͣ +⹫ N human|,family|,male| +⹺ V buy|,source=foreign| + N attribute|,appearance|,&physical| +۱ V AppearanceChange|۱ + ADJ aValue|ֵ,attachment|,external|,country| + N place|ط,country| + N human|,foreign| + N language|,foreign| +Ƥ N part|,%plant|ֲ,embryo| + N attribute|,name|,&entity|ʵ +⻼ N phenomena|,undesired|ݬ + N money|,foreign| +㴢 N fund|ʽ +Ƽ N quantity|,rate|,&money|,commercial| + N artifact|˹,commercial|,foreign|,generic|ͳ +⼮ N attribute|,attachment|,foreign|,&human| + V add| + ADJ qValue|ֵ,amount|,many| + N community| + N place|ط + N room|,%house| +⽻ ADJ aValue|ֵ,attachment|,diplomatic|⽻ +⽻ N institution|,diplomatic|⽻,ProperName|ר,politics| +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ N human|,official|,diplomatic|⽻ +⽻ N attribute|,behavior|ֹ,&human|,#diplomatic|⽻ +⽻ʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +⽻ʹ N community|,official|,diplomatic|⽻ + N image|ͼ,angular| +Բ N image|ͼ + ADJ aValue|ֵ,source|Դ,foreign| + N location|λ,external|,space|ռ + N place|ط +⾭ó N institution|,*cooperate|,#commercial|,ProperName|ר,politics| +⾰ N scene|,#TakePicture| +⾰ N scene|,#perform| +⾰ N scene|,external| + N army|,foreign| +⿯ N publications|鿯,foreign| + N knowledge|֪ʶ,medical|ҽ + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ + N part|,%physical|,skin|Ƥ + N wealth|Ǯ,$earn|׬ + ADJ aValue|ֵ,source|Դ,foreign| + N human| + N attribute|,strength|,&human|,&organization|֯ + N attribute|,strength|,&inanimate| + V GoOut|ȥ,commercial| +¶ V exposure|¶ + N ship|,foreign| +ò N attribute|,appearance|,&human| +ò N attribute|,appearance|,&physical| +ó N affairs|,commercial|,#country| + ADJ aValue|ֵ,location|λ,external| + ADJ aValue|ֵ,source|Դ,foreign| + N attribute|,appearance|,&physical| + N location|λ,external| + N part|,%physical|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ƥ N part|,external| + N human|,family|,female|Ů + N human|,family|,#royal| + N InstitutePlace|,commercial|,industrial| +Ǩ V SelfMove| +ǿи ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + N human|,#space|ռ,foreign| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N human|,#space|ռ,foreign| + N human|,*RelateNot|޹ + N disease|,wounded| + N human|,commercial| + N human|,family|,male| +Ů N human|,family|,female|Ů +ʡ N place|ط,other| + N affairs|,diplomatic|⽻ + N location|λ + N human|,family|,male| +Ů N human|,family|,female|Ů +̥ N part|,%LandVehicle|,leg| + V flee|,LocationFin=foreign| + V flee|,LocationFin=other| + N clothing| + N clothing|,$PutOn| + N part|,%AnimalHuman|,*listen| +ͷ ADJ aValue|ֵ,source|Դ,foreign| +ͷ N location|λ,external| +Χ ADJ aValue|ֵ,location|λ,external| +Χ N part|,%inanimate|,%space|ռ,edge| + N language|,foreign| + N affairs| + N affairs|,#country| + N facilities|ʩ,linear| + N human|,#occupation|ְλ,official|,diplomatic|⽻ + N place|ط + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,property|,$transport|,#foreign| + V sell| + N aspiration|Ը,expect|,undesired|ݬ + N image|ͼ,dot| + N humanized| + N attribute|,form|״,&physical| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,undesired|ݬ,unable|ӹ + N information|Ϣ + N fire| + N attribute|,appearance|,&physical| + N attribute|,attire|װ,&physical| + N clothing|,#body| + V MoveItOut| + N cause|ԭ + V use| + N language|,foreign| +Ԯ V help|,source=foreign| + ADJ aValue|ֵ,location|λ,external| +ծ N wealth|Ǯ,$owe|Ƿ,$return|,foreign| + N clothing| + N fund|ʽ +ҵ N InstitutePlace|,commercial|,industrial| + N human|,#space|ռ,foreign| +游 N human|,family|,male| +ĸ N human|,family|,female|Ů +㶹 N part|,%vegetable|߲,embryo|,$eat| +㶹 N vegetable|߲ +㶹 N food|ʳƷ + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N place|ط,curved| + N facilities|ʩ,route|·,curved| +· N facilities|ʩ,route|·,curved| +· N method|, wrong| +· N method|,wrong| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + N place|ط,curved| + N part|,%waters|ˮ,curved| + V WhileAway| + V despise| + V enjoy| + V WhileAway| + V despise| + V enjoy| +ת V BeUnable| + V MakeTrouble| + V venture|ð + V end|ս + V despise| +ְ V despise|,target=duty| + V venture|ð +Է V perish| + N tool|þ,*recreation|,generic|ͳ + V WhileAway| + V venture|ð +Ū V SeekPleasure|Ѱ +ż N tool|þ,*recreation| + V enjoy| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ˣ V WhileAway| +ζ V think|˼ + N tool|þ,*recreation|,generic|ͳ +Ц N fact|,tease|ȡ + N entity|ʵ,generic|ͳ + N tool|þ,*recreation|,generic|ͳ + ADJ aValue|ֵ,behavior|ֹ,mischievous| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +繣 ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +̷ N human|,stubborn|,undesired|ݬ + N human|,stubborn|,undesired|ݬ +缲 N disease|,stubborn| +翹 V resist|,manner=stubborn| +Ƥ ADJ aValue|ֵ,behavior|ֹ,mischievous|,undesired|ݬ +ǿ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ʯͷ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ͯ N human|,young|,mischievous| +֢ N disease|,stubborn| + N medicine|ҩ + N shape|,round|Բ + N medicine|ҩ +ҩ N medicine|ҩ + N food|ʳƷ + N shape|,round|Բ + N chemical|ѧ + N chemical|ѧ + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V disappear|ʧ + V finish| + V pay| +걸 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V finish| + V fulfil|ʵ +군 V fail|ʧ + V fulfil|ʵ,patient=text| +깤 V fulfil|ʵ,patient=fact| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + V GetMarried| + V finish| +꿢 V finish| + V finish| + ADJ aValue|ֵ,circumstances|,good|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,good|,desired| +ȱ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ȫ ADV aValue|ֵ,degree|̶,extreme| +ȫ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +ȫҪ ADJ aValue|ֵ,importance|,secondary| +ȫͬ ADJ aValue|ֵ,similarity|ͬ,alike| + N human|,desired|,great|ΰ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + V finish| +˰ V pay|,possession=expenditure| +ȫȫ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| + N attribute|,wholeness|ȱ,&physical| + N tool|þ,cubic|,@put|,#food|ʳƷ + N furniture|Ҿ,cubic|,@put|,#tool|þ + N furniture|Ҿ,cubic|,@put|,#tool|þ +ܹ N furniture|Ҿ,cubic|,@put|,#tool|þ + V coil| + V condole|° + V pull| + N music|,*condole|° + V TakeBack|ȡ + V rescue| + N text|,*condole|° + V detain|ס +ʫ N music|,*condole|° + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + N time|ʱ,day|,night| + EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,night| + N publications|鿯 + ADJ aValue|ֵ,clan| + N human|,clan| + N fact|,eat|,night| + N LandVehicle|,#night| + N crop|ׯ + V due| + N fact|,eat|,night| + N wind|,night| + N fact|,*recreation| + V GetMarried|,manner=late| + N time|ʱ,day|,night| + ADJ aValue|ֵ,age|,aged| + N time|ʱ,#aged| + N human|,family|,female|Ů + ADJ aValue|ֵ,time|ʱ + N time|ʱ,ending|ĩ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,autumn|,ending|ĩ + N time|ʱ,day|,night| + ADJ aValue|ֵ,physique|,ripe|,late|,agricultural|ũ +˪ N RainSnow|ѩ +ϼ N CloudMist| + N FlowerGrass| + N fact|,eat|,entertain|д + V GiveBirth|,late| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sorry|ϧ +ϧ V sorry|ϧ + ADJ aValue|ֵ,form|״,curved| + CONJ {contrast} + PREP {contrast} + CONJ {contrast} + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,behavior|ֹ,tactful| + V refuse|,manner=tactful| + N text|,tactful| + ADJ aValue|ֵ,behavior|ֹ,tactful| +Ȱ V persuade|Ȱ˵,manner=tactful| +л V refuse|,manner=tactful| +л V reject|ؾ,manner=tactful| +Լ ADJ aValue|ֵ,behavior|ֹ,tactful| +ת ADJ aValue|ֵ,SoundQuality|,good|,desired| +ת ADJ aValue|ֵ,behavior|ֹ,tactful| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + ADJ qValue|ֵ,amount|,many| + ADV aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,kind|,many| + V BeUnable| +䲻 ADJ aValue|ֵ,behavior|ֹ,lasting| + ADJ aValue|ֵ,kind|,many| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N location|λ + ADV aValue|ֵ,degree|̶,extreme| +֮һ NUM qValue|ֵ,amount|,few| + ADJ aValue|ֵ,duration|,TimeLong| +ų ADJ aValue|ֵ,circumstances|,exuberant|ï,desired| + N part|,%institution|,#facilities|ʩ,(institution|=UN|Ϲ) +Ͳ N tool|þ,*recreation| +Ͳ ADJ aValue|ֵ,kind|,many| +ҵƻ N lights| + N human|,unable|ӹ,undesired|ݬ + N medicine|ҩ +ﳤ N facilities|ʩ,ProperName|ר,(China|й) +¡ N place|ط,city|,ProperName|ר,(Indonesia|ӡ) + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ǧ ADJ aValue|ֵ,kind|,many| +ǧ ADJ qValue|ֵ,amount|,many| +ȫ ADJ aValue|ֵ,effect|Ч,superior|,desired| +˿ ADJ aValue|ֵ,occasion|,bustling|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + N event|¼,all|ȫ +´ V lucky| +ºͨ V lucky| + V lucky| +ͨ N human|,able| +ͨ N human|,able|,desired| +޽ ADJ aValue|ֵ,duration|,TimeLong| +ˮǧɽ ADJ aValue|ֵ,distance|,far|Զ + N human|,royal| + ADV aValue|ֵ,degree|̶,extreme| + ADV {neg|} +û ADV {neg|} +ά N facilities|ʩ,#software|,@disseminate|,@communicate|,#information|Ϣ +һʧ ADJ aValue|ֵ,effect|Ч,superior|,desired| + N entity|ʵ + ADJ aValue|ֵ,effect|Ч,all|ȫ,desired| + N place|ط,capital|,ProperName|ר,(Laos|) + V lucky| +һ N attribute|,circumstances|,dangerous|Σ,undesired|ݬ,&situation|״ +һ NUM qValue|ֵ,amount|,few| +һ ADJ qValue|ֵ,amount|,few| +һ CONJ {condition|} +Ӧ鵤 N medicine|ҩ + N attribute|,strength|,&physical| + ADJ aValue|ֵ,depth|,deep| + ADJ aValue|ֵ,height|߶,tall| + N human|,mass| +һ V ally| +ǧ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N part|,%AnimalHuman|,arm| + N attribute|,strength|,&part|,#AnimalHuman|,#arm| + N part|,%AnimalHuman|,arm| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,area|,wide| + N waters|ˮ,surfacial| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,royal| + N fish| + N human|,male|,undesired|ݬ +˵ EXPR expression|,*ExpressDissatisfaction|ʾ,undesired|ݬ +˵ N human|,evil|,undesired|ݬ +˵ N human|,undesired|ݬ + N institution|,royal| + N time|ʱ,#royal| + N human|,royal| + N regulation|,*manage|,#country| + N house|,royal| + N human|,royal| + N house|,royal| + N clothing|,#head|ͷ,royal| + N place|ط,country| + N place|ط,country|,royal| + N human|,royal| + N human|,royal|,female|Ů + N food|ʳƷ,*cure|ҽ + N tool|þ,strong|ǿ,desired|,*win|ʤ +Ȩ N attribute|,power|,royal|,&country| + N human|,royal|,family| + N institution|,royal| + N human|,royal| +λ N attribute|,status|,royal|,&country| + N human|,royal|,male| + N human|,royal|,female|Ů + V defeat|սʤ + V die| + V disappear|ʧ + V flee| + V lose|ʧȥ + V perish| + V die| + V perish| +ū N human|,*lose|ʧȥ,#country| + N humanized|,undesired|ݬ + N humanized|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + V flee| +ͽ N human|,fierce|,crime|,undesired|ݬ + V rescue| + V IllTreat| + ADV aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + V lavish|˷ +Ļ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ȼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V catch|׽ס + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| + N shape| + N tool|þ,*catch|׽ס,#AnimalHuman| + N InstitutePlace|,commercial|,*sell|,@buy| + N tool|þ,cubic|,@put| +һ ADJ aValue|ֵ,behavior|ֹ,lenient|,desired| + N tool|þ,cubic|,@put| +· N facilities|ʩ,#disseminate|,#communicate|,#transport| +· N internet| + V include| + N facilities|ʩ,#disseminate|,#communicate|,#transport| + N internet| +ṩ N InstitutePlace|,*provide|,#internet| +ṩ N InstitutePlace|,*provide|,#internet| + N human|,#internet| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,@exercise|,#(tennis|) + N SportTool|˶,#(tennis|) +Ȧ N community|,sport| + N location|λ,%internet| +̳ N community|,sport| + N shape| +״ ADJ aValue|ֵ,form|״ + V LeaveFor|ǰ + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADV aValue|ֵ,frequency|Ƶ,regular|,past| + ADV aValue|ֵ,direction|,external| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| +Ʊ N bill|Ʊ,#wealth|Ǯ,*TakeVehicle|,#aircraft|,ToAndFro| + V ToAndFro| + ADJ aValue|ֵ,direction|,#ToAndFro| + N time|ʱ,future| + V associate| + V ToAndFro| + V associate| + N time|ʱ,past| + N time|ʱ,year|,past| + N time|ʱ,day|,past| + N fact|,past| + ADV aValue|ֵ,frequency|Ƶ,often| + N time|ʱ,past| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N fire|,strong|ǿ + N time|ʱ,season|,busy|æ,#commercial|,#agricultural|ũ +ʢ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + N time|ʱ,month|,busy|æ,#commercial| + N attribute|,reputation|,&human|,&organization|֯ + N celestial| + V expect| + V look| + N time|ʱ,day| + V visit| + N material|,wood|ľ,*build| +Ī V inferior| +ȴ V GoBackward| +η V fear| + V check| + V flee| + V flee| + V perception|֪,means=look| +¥ N facilities|ʩ,@look|,@check| +÷ֹ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N engage|,content=affairs|,religion|ڽ +ȥ V look| + N time|ʱ,day| + V look| + V expect| +̾ V BeUnable| +Զ N tool|þ,*look|,#far|Զ + N celestial| +ӳ V expect|,content=succeed|ɹ + V forget| + V forget| + ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ + V satisfied| + V forget| + V forget| +꽻 N attribute|,relatedness|,intimate|,&human| +꽻 N human|,friend|,intimate|,desired| + V aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V indulge| +ȴ V forget| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,behavior|ֹ,honest|,desired| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ӳ² V guess|²,manner=rash|ç +ָ V estimate|,manner=rash|ç + N human|,greedy|̰ + N human|,unable|ӹ,undesired|ݬ +ͼ V lavish|˷ + N thought|ͷ,empty|,undesired|ݬ +ԷƱ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce| + N attribute|,strength|,&human|,&organization|֯ + V force|ǿ +ʿ N place|ط,ProperName|ר +ʿ N language|,#country|,ProperName|ר + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N attribute|,reputation|,&human|,&organization|֯ + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + N place|ط,city|,ProperName|ר,(China|й) + N attribute|,strength|,&human|,&organization|֯ +˹ N place|ط,city|,ProperName|ר,(Italy|) +Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ + V frighten|Ż +ʿ N drinks|Ʒ,$addict|Ⱥ +˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N attribute|,power|,&human|,&organization|֯,&information|Ϣ + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V frighten|Ż +в V frighten|Ż + N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ɨ V unfortunate|,scope=disgraced| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +Ρ ADJ aValue|ֵ,height|߶,tall| +Ρ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,height|߶,tall| +ΡȻ ADJ aValue|ֵ,scene|,stately|ׯ,desired| +ΡȻ V stand|վ,manner=durable| +ΡΡ ADJ aValue|ֵ,height|߶,tall| +΢ ADJ aValue|ֵ,degree|̶,insufficiently|Ƿ +΢ ADJ aValue|ֵ,quality|,small|С +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ ADJ aValue|ֵ,color|ɫ,white|,light| +΢ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +΢ N shape| +΢¯ N tool|þ,cubic|,@cook| +΢ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N part|,%computer| +΢ N part|,%computer| +΢ N text|,*ExpressDissatisfaction|ʾ +΢һɫ ADJ aValue|ֵ,color|ɫ,yellow|,light| +΢ N computer| +΢ N part|,%physical| +΢ N image|ͼ,$carve| +΢ V adjust| +΢ N knowledge|֪ʶ +΢ N wind|,weak| +΢ ADJ aValue|ֵ,attachment| +΢ N lights| +΢΢ ADJ qValue|ֵ,amount|,few| +΢ N fire|,weak| +΢ N computer| +΢ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +΢ ADJ aValue|ֵ,temperature|¶,chilly| +΢ N fund|ʽ,$earn|׬,commercial| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ N part|,%physical| +΢ N shape|,small|С +΢ ADJ aValue|ֵ,kind| +΢Ԫ N part|,%physical| +΢ã ADJ aValue|ֵ,clearness|,blurred| +΢ N unit|λ,&length| +΢ N unit|λ,&time|ʱ +΢ ADJ aValue|ֵ,content|,refined| +΢ĩ ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +΢ N InstitutePlace|,#software|,commercial| +΢˾ N InstitutePlace|,#software|,commercial| +΢ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +΢ N character|,surname|,human|,ProperName|ר +΢ N bacteria|΢,generic|ͳ +΢ ADJ aValue|ֵ,taste|ζ,sour|,ish| +΢΢ ADJ aValue|ֵ,behavior|ֹ,gentle| +΢΢ ADV aValue|ֵ,behavior|ֹ,gentle| +΢ϸ ADJ aValue|ֵ,size|ߴ,small|С +΢С ADJ aValue|ֵ,size|ߴ,small|С +΢Ц V laugh|Ц,manner=gentle| +΢ ADJ aValue|ֵ,size|ߴ,small|С +΢ͻ N computer| +΢Ѫ N part|,%AnimalHuman|,nerve| +΢Դ ADJ aValue|ֵ,content|,profound|,desired| +Σ N character|,surname|,human|,ProperName|ר +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,capital|,ProperName|ר,(Guatemala|Σ) +Σ N place|ط,country|,ProperName|ר,(South America|) +Σ N human|,(Guatemala|Σ) +Σ N building|,dangerous|Σ +Σ V damage| +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σķ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V damage| +Σ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N attribute|,circumstances|,dangerous|Σ,&human|,&organization|֯ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ,undesired|ݬ +Σ N phenomena|,dangerous|Σ +Σ V frighten|Ż +ΣڵϦ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Σ V ill|̬,manner=dangerous|Σ +Σ V ill|̬,dangerous|Σ +Τ N character|,surname|,human|,ProperName|ר +Τ N material|,?clothing|,?tool|þ +Υ V FitNot| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=law|ɷ +ΥҼ V disobey|Υ,content=law|ɷ +ΥΪ N fact|,act|ж,crime|,#police| +Υ V disobey|Υ +Υ V disobey|Υ +Υ N human|,*disobey|Υ +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ,content=regulation| +Υ V disobey|Υ +Υ V disobey|Υ +Υ V err|,sport| +Υ V delay| +Υ V disobey|Υ,content=law|ɷ +Υ V disobey|Υ,content=willing|Ը +ΥԼ V disobey|Υ,content=MakeAppointment|Լ +Υ V disobey|Υ,content=system|ƶ +Υ V disobey|Υ +Φ N part|,%ship| +Φ N tool|þ,#ship|,*illuminate| +Φ N part|,%ship| +Χ V surround|Χ +Χ N clothing|,#head|ͷ +Χ N place|ط,@catch|׽ס,#beast|,agricultural|ũ +Χ V surround|Χ,content=city| +ΧǴԮ V attack|,military| +Χ V attack|,means=surround|Χ,military| +Χ V look| +Χ V protect| +Χ V attack|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ V destroy|,means=surround|Χ,military| +Χ N clothing|,#head|ͷ +Χ V block|ס,means=surround|Χ,military| +Χ N facilities|ʩ,space|ռ,@foster|,#livestock| +Χ£ V ComeTogether| +Χ N furniture|Ҿ,*decorate|װ,*cover|ڸ +Χ N SportTool|˶,*recreation| +Χǽ N part|,%building|,skin|Ƥ +Χȹ N clothing|,#leg|,#cook| +Χ V GoRound|Χ +Χ V surround|Χ +Χ N tool|þ,*catch|׽ס,#fish| +Χκ V help| +Χ N facilities|ʩ,#water|ˮ,space|ռ +Χ V sit| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ ADJ aValue|ֵ,kind|,single| +Ψ V fear| +Ψ² V expect|,content=unfortunate| +Ψͼ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ΨΨŵŵ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +ΨҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ψ֤ N thinking|˼ +Ψ N thinking|˼ +Ψʷ N knowledge|֪ʶ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψ N thinking|˼ +Ψ N human|,#thinking|˼ +Ψһ ADJ aValue|ֵ,kind|,single| +Ψһ ADJ aValue|ֵ,kind|,special| +Ψ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ω COOR {but|} +Ω ADJ aValue|ֵ,kind|,single| +ΩҶ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ωһ ADJ aValue|ֵ,kind|,single| +Ω ADJ aValue|ֵ,kind|,single| +Ϊ V become|Ϊ +Ϊ V be| +Ϊ V do| +Ϊ V mean|ָ +Ϊ PREP {beneficiary} +Ϊ PREP {cause} +Ϊ PREP {purpose} +Ϊ ... V mobilize| +Ϊ ... V remove|,patient=bacteria|΢ +Ϊ ... ϴ V wash|ϴ,religion|ڽ +Ϊ CONJ {cause|ԭ} +Ϊ V do|,content=crime|,crime| +Ϊ V damage| +Ϊ ADV reason|,question| +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V help|,patient=undesired|ݬ +Ϊ V MakeTrouble| +Ϊ V seek|ıȡ,possession=pros| +Ϊ PREP {purpose} +Ϊ CONJ {purpose} +Ϊ PREP {purpose} +Ϊ V seek|ıȡ,possession=glorious| +Ϊ V MakeTrouble| +Ϊ V embarrassed|Ϊ +Ϊ V be|,isa=time|ʱ +ΪڲԶ ADJ aValue|ֵ,duration|,TimeShort| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ˴ N attribute|,behavior|ֹ,&human| +Ϊ V do|,beneficiary=human| +Ϊʦ V worth|ֵ,content=example|ʵ +Ϊ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ϊɶ ADV reason|,question| +Ϊ V MakeLiving|ı +Ϊʱ V be|,isa=time|ʱ +Ϊʱ ADJ aValue|ֵ,earliness|,early|,over| +Ϊʲô ADV {cause|ԭ,question|} +Ϊ V be|,descriptive=official| +Ϊ V AmountTo|ܼ +Ϊ ADJ qValue|ֵ,amount|,few| +Ϊ ADJ qValue|ֵ,amount|,many| +Ϊڶ ADJ qValue|ֵ,amount|,many| +ΪΪ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ϊ V associate| +Ϊ ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| +Ϊ֮ PP {cause} +Ϊֹ PREP {TimeFin} +Ϋ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ϋ N place|ط,city|,ProperName|ר,(China|й) +ά V connect| +ά V keep| +ά V protect| +ά V keep| +ά N place|ط,capital|,ProperName|ר,(Seychelles|) +ά V endorse|ӵ +ά V protect| +ά N human|,*protect| +ά N material| +άάФ V BeSimilar| +άάФ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +ά N medicine|ҩ,*improve| +άA N medicine|ҩ,*improve| +άB N medicine|ҩ,*improve| +άC N medicine|ҩ,*improve| +άD N medicine|ҩ,*improve| +ά N community|,ProperName|ר,(China|й) +ά N community|,ProperName|ר,(China|й) +άϵ V connect| +άϵ V keep| +ά V improve| +ά V repair| +ά޹ N human|,#occupation|ְλ,*repair| +άҲ N place|ط,capital|,ProperName|ר,(Austria|µ) +έ N FlowerGrass|,?material| +έ N waters|ˮ,#FlowerGrass| +έϯ N tool|þ,@LieDown| +έ N FlowerGrass|,?material| +ή V decline|˥ +ή V decline|˥,agricultural|ũ +ή N disease| +ή V decline|˥,agricultural|ũ +ή V decline|˥ +ή V decline|˥,commercial| +ή V decline|˥,medical|ҽ +ήл V decline|˥ +ήл V decline|˥,agricultural|ũ +ί V CauseToBe|ʹ֮ +ί V TakeAway|ᶯ +ί V entrust|ί +ί V refuse| +ί V tired|ƣ +ί V disheartened| +ί ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Venezuela|ί) +ί N place|ط,country|,ProperName|ר,(South America|) +ί N human|,(Venezuela|ί) +ί V employ| +ί ADJ aValue|ֵ,form|״,curved| +ί N part|,%event|¼ +ίȫ V surrender| +ί V IllTreat| +ί V unsatisfied| +ί V CauseToBe|ʹ֮ +ί N human|,*CauseToBe|ʹ֮ +ίʵ ADV aValue|ֵ,trueness|α,true|,desired| +ί ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +ί ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ί V entrust|ί +ίд N human|,*help| +ί N human|,*entrust|ί +ί N document|,*entrust|ί +ί ADJ aValue|ֵ,behavior|ֹ,tactful| +ί V CauseToBe|ʹ֮ +ίԱ N human|,official| +ίԱ N human|,official|,politics| +ίԱ N institution| +ί V IllTreat| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +ΰ ADJ aValue|ֵ,quality|,great|ΰ,desired| +ΰĴ N affairs|,new|,special|,great|ΰ +ΰ N result|,desired|,#succeed|ɹ +ΰ N attribute|,strength|,strong|ǿ,&entity|ʵ +ΰ N human|,great|ΰ +ΰҵ N affairs|,great|ΰ +ΰҵ N result|,desired|,#succeed|ɹ +α ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α N money|,fake|α +α N money|,undesired|ݬ +α N money|,fake|α +α N army|,undesired|ݬ +α N human|,undesired|ݬ,fake|α +α ADJ aValue|ֵ,quality|,fake|α,undesired|ݬ +α V forge|α +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α V forge|α +αȨ N institution|,undesired|ݬ +α֤ N information|Ϣ,*prove|֤,fake|α,#police| +αװ V cover|ڸ +αװ V cover|ڸ,military| +αװ N method|,&physical|,fake|α,*deceive|ƭ +αװ V pretend|װ +αװ N tool|þ,&physical|,fake|α,*deceive|ƭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical|,*surplus|ʣ +β N part|,%time|ʱ,ending|ĩ +β N human|,*obey|ѭ +β N part|,%AnimalHuman|,tail|β +β N part|,%physical| +β N part|,%physical|,tail|β +β N part|,%physical|,tail|β +β N part|,%vehicle|ͨ,*illuminate| +β N InstitutePlace|,mine| +β N gas|,#vehicle|ͨ +β N part|,%event|¼,tail|β +β N part|,music|,ending|ĩ +β N process|,ending|ĩ +β N quantity|,amount|,&inanimate| +β V follow| +β׷ V chase|׷ +β N quantity|,amount|,&inanimate| +β N InsectWorm| +β N part|,%animal|,tail|β +γ N attribute|,distance|,&earth| +γ N attribute|,distance|,&earth| +γ N part|,%clothing|,nerve| +γ N part|,%earth|,nerve| +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,property|,^$provide|,#fund|ʽ +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,property|,^$defeat|սʤ +δ ADJ aValue|ֵ,property|,^$sense|о +δ֪ ADJ aValue|ֵ,property|,^$tell| +δ ADJ aValue|ֵ,property|,^$sense|о +δ ADJ aValue|ֵ,property|,^$block|ס +δ ADJ aValue|ֵ,property|,^$GetKnowledge|֪ +δȾ ADJ aValue|ֵ,property|,^$pollute|ʹ +δ֤ ADJ aValue|ֵ,property|,^$prove|֤ +δ ADV {comment|,neg|} +δ ADJ aValue|ֵ,behavior|ֹ,difficult|,undesired|ݬ +δ֪ V predict|Ԥ +δ ADV {neg|,past|} +δ ADJ aValue|ֵ,age|,young| +δ ADJ aValue|ֵ,physique|,unripe| +δ ADJ aValue|ֵ,property|,^$forming|γ +δ ADJ aValue|ֵ,property|,^$handle| +δ ADJ aValue|ֵ,property|,^$refine| +δû ADJ aValue|ֵ,property|,^$weaken| +δ¼ ADJ aValue|ֵ,property|,^$record|¼ +δȼ ADJ aValue|ֵ,property|,^$lighting|ȼ +δ V unfixed|δ +δ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$publish| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δ ADJ aValue|ֵ,property|,^$separate| +δ N payment| +δѡ ADJ aValue|ֵ,property|,^$classify| +δ ADJ aValue|ֵ,property|,^$admit| +δ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +δͽ ADJ aValue|ֵ,property|,^reconcile| +δ ADJ aValue|ֵ,property|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ N human|,male|,friend|,^GetMarried| +δ N human|,female|Ů,friend|,^GetMarried| +δ ADV aValue|ֵ,earliness|,late| +δ ADJ aValue|ֵ,property|,^$build| +δ¶ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +δ༭ ADJ aValue|ֵ,property|,^$compile|༭ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$request|Ҫ +δ ADJ aValue|ֵ,property|,^$check| +δ˼ ADJ aValue|ֵ,property|,^$think|˼ +δ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^$announce| +δҪ ADJ aValue|ֵ,property|,^$request|Ҫ +δ V unfixed|δ +δ V unfixed|δ +δ N human|,crime|,*wait|ȴ,#judge|ö +δ ADJ aValue|ֵ,property|,^$cultivate| +δɺ ADJ aValue|ֵ,standard|׼,average|,desired| +δ ADJ aValue|ֵ,time|ʱ,future| +δ N attribute|,outlook|ǰ,&thing| +δ N time|ʱ,future| +δѧ N knowledge|֪ʶ,#time|ʱ,future| +δ˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +δ ADJ aValue|ֵ,property|,^finish| +δ CONJ {comment|} +δмƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +δĿ¼ ADJ aValue|ֵ,property|,^$classify| +δ ADV aValue|ֵ,degree|̶,ish| +δ׼ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,ability|,unable|ӹ,$distinguish|ֱ +δȷ ADJ aValue|ֵ,property|,^$decide| +δȷ֤ ADJ aValue|ֵ,property|,^$decide| +δʱ N time|ʱ,hour|ʱ +δܹ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +δܾ ADJ aValue|ֵ,property|,^$persuade|Ȱ˵ +δܿ ADJ aValue|ֵ,property|,^$control| +δʶ ADJ aValue|ֵ,property|,^$appreciate|޳ +δ ADJ aValue|ֵ,property|,^wounded| +δ˵ ADJ aValue|ֵ,property|,^$explain|˵ +δ ADJ aValue|ֵ,property|,^$fulfil|ʵ +δ ADJ aValue|ֵ,property|,^finish| +δ ADJ aValue|ֵ,property|,^$consume|ȡ +δ޸ ADJ aValue|ֵ,property|,^$amend| +δڱ ADJ aValue|ֵ,ability|,unable|ӹ,$hide| +δ V prepare|׼ +δԤ ADJ aValue|ֵ,property|,^$predict|Ԥ +δ ADV {neg|,past|} +δ֪ ADJ aValue|ֵ,property|,^$know|֪ +δ֪ N symbol|,#quantity|,^$know|֪ +ε ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ε N character|,surname|,human|,ProperName|ר +ε ADJ aValue|ֵ,color|ɫ,blue| +εȻɷ V prosper| +εΪ V show|,content=exuberant|ï +ζ N attribute|,odor|ζ,&physical| +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion|,FondOf|ϲ +ζ N attribute|,taste|ζ,&edible|ʳ +ζ N emotion| +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N material|,?food|ʳƷ +ζ N experience|,#taste|ζ +η V fear| +η V respect| +η V escape|,ResultEvent=fear| +η V fear| +η N emotion|,fear| +η V fear| +η V fear|,cause=hardship| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ηηβ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V PartSelfMove| +η; N phenomena|,dangerous|Σ,#unfortunate|,undesired|ݬ +η N human|,friend| +η V fear|,cause=crime|,crime| +η ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +η V fear| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N disease| +θ N part|,%AnimalHuman|,viscera| +θ N disease| +θ N tool|þ,medical|ҽ +θ N aspiration|Ը,expect|,#consume|ȡ +θ N disease| +θ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,nerve| +θ N disease| +θҺ N part|,%AnimalHuman|,liquid|Һ +θ N part|,%AnimalHuman|,viscera| +ι V feed|ι +ι V feed|ι,patient=drinks|Ʒ +ιʳ V feed|ι +ι V feed|ι +ι V foster|,agricultural|ũ +κ N character|,surname|,human|,ProperName|ר +λ CLAS NounUnit|,&human| +λ N attribute|,occupation|ְλ,&human|,royal| +λ N location|λ +λ N mark|־,#arithmetic|ϵ +λ V undertake| +λӰ V succeed|ɹ,scope=compete| +λ V SelfMoveInDirection| +λ V situated| +λ ADJ aValue|ֵ,location|λ,beneath| +λ N location|λ +λ N location|λ +μ N waters|ˮ,linear|,ProperName|ר,(China|й) +ν V naming| +ν V speak|˵ +ν N part|,%language| +ξ N character|,surname|,human|,ProperName|ר +ξ N character|,surname|,human|,ProperName|ר +ξ N human|,#occupation|ְλ,official|,military| +ο V AtEase| +ο V soothe|ο +ο V soothe|ο +ο V soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο V SayHello|ʺ,means=soothe|ο +ο ADJ aValue|ֵ,property|,soothe|ο +ο V SayHello|ʺ + N character|,surname|,human|,ProperName|ר + V defend| + N human|,military|,*protect| + N community|,*protect| + V protect|,patient=country| + V defend| + V protect|,patient=status| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + N attribute|,cleanness|ྻ,spotless|,&physical|,&space|ռ,&organization|֯ + N institution|,#medical|ҽ,ProperName|ר,politics| + N room|,@excrete|й + N paper|ֽ,*wipe| + N tool|þ,*obstruct|ֹ,InsectWorm| +Ա N human|,#occupation|ְλ,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ѧ N human|,#knowledge|֪ʶ,medical|ҽ +Ա N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ֽ N paper|ֽ,*wipe| +֯ N part|,%institution|,#medical|ҽ,ProperName|ר,(institution|=UN|Ϲ) +ʿ N human|,*protect| + V defend|,military| + N army| + N place|ط,military|,$defend| + N aircraft| + N celestial| +dz N place|ط,city| + N disease| + N disease| + V WarmUp| + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,temperature|¶,&physical| + N character|,surname|,human|,ProperName|ר + V drill|ϰ +± N attribute|,circumstances|,alive|,&human| +² N attribute|,similarity|ͬ,temperature|¶ +´ N facilities|ʩ,@planting|ֲ +´ N place|ط,@ExistAppear|,@grow|ɳ +´ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +´ N part|,%earth|,warm| +µúͿ N place|ط,capital|,ProperName|ר,(Namibia|ױ) +¶ N attribute|,temperature|¶,&physical| +¶ȱ N tool|þ,*measure|,#temperature|¶ +¶ȼ N tool|þ,*measure|,#temperature|¶ +¸绪 N place|ط,city|,ProperName|ר,(Canada|ô) +º ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +º ADJ aValue|ֵ,temperature|¶,warm| +º ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ů ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ȫ N waters|ˮ,surfacial| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N facilities|ʩ,@planting|ֲ +ЧӦ N phenomena|,#weather| +˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +Ķ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ϰ V drill|ϰ +Ѫ N AnimalHuman|,generic|ͳ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + N place|ط,city|,ProperName|ר,(China|й) +ܰ ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,temperature|¶,warm| + ADJ aValue|ֵ,temperature|¶,warm| + N InsectWorm|,undesired|ݬ,#disease| +ó N InsectWorm|,undesired|ݬ,#disease| + N tool|þ,$burn|,*expel|,#InsectWorm| + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N InsectWorm|,undesired|ݬ,#disease| + ADJ aValue|ֵ,attachment| + N character| + N character|,surname|,human|,ProperName|ר + N language| + N text| +ı N text| +ı N attribute|,style|,&text| +IJ ADJ aValue|ֵ,content|,unattached|ɢ,undesired|ݬ +IJӵ ADJ aValue|ֵ,quality|,refined|,desired| +IJ N attribute|,ability|,&compile|༭ +IJ N attribute|,ability|,&compile|༭ +ij N human|,undesired|ݬ,*copy|д,*steal|͵ +Ĵ˳ ADJ aValue|ֵ,content|,fluent|,desired| +ĵ N fruit|ˮ +ķ N knowledge|֪ʶ,#language| +ķı N stationery|ľ,generic|ͳ +ķ N attribute|,style|,&text| +ĸ N readings|,#text| +ĸ N text| +ĸ N text|,*announce| +ĸ N text|,*tell| +ĸ N fact|,ProperName|ר,(China|й) +ĸ N fish| +Ĺ N community|,*perform|,entertainment| +Ĺ N human|,#occupation|ְλ,official| +Ĺη V HideTruth| +ĺ N human|,literature|,able|,desired| +Ļ ADJ aValue|ֵ,attachment|,literature| +Ļ N knowledge|֪ʶ +Ļ N mental| +Ļ N institution|,#knowledge|֪ʶ,ProperName|ר,politics| +Ļ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fact|,ProperName|ר,(China|й) +Ļ N InstitutePlace|,@recreation| +Ļ N InstitutePlace|,@recreation| +Ļ N affairs|,literature|,entertainment|,education| +Ļҵ N affairs|,literature|,entertainment|,education| +Ļˮƽ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +Ļ N attribute|,rank|ȼ,#knowledge|֪ʶ,&human| +ĻŲ N mental| +ĻƷ N stationery|ľ,generic|ͳ +Ļվ N InstitutePlace|,@recreation| +ĻרԱ N human|,#occupation|ְλ,official|,literature|,diplomatic|⽻ +Ļ N fire|,weak|,*cook| +ļ N readings| +ļ N document| +Ľ N affairs|,literature|,entertainment|,education| +ľ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ľ N stationery|ľ,generic|ͳ +ľߺ N tool|þ,cubic|,@put|,#PenInk|ī +ľ N human|,#occupation|ְλ,#stationery|ľ,commercial| +Ŀ N knowledge|֪ʶ +Ŀ N readings| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Brunei|) + N place|ط,country|,ProperName|ר,(Asia|) +Ԫ N money|,(Brunei|) + N attribute|,content|,&text| +ä N human|,undesired|ݬ,foolish| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + N mental| +Ź N place|ط,#human|,country|,politics| +Ʀ N human|,literature|,undesired|ݬ +ƾ N document|,*prove|֤,#status|,#study|ѧ,education| + N human|,literature| +ī N human|,literature| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ʷ N knowledge|֪ʶ + N document| + N human|,#occupation|ְλ,employee|Ա +˼ N thought|ͷ,#text| +̳ N community|,literature| + N attribute|,pattern|ʽ,&text| + N attribute|,style|,&text| + N fact|,#sport|,#literature| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,attachment| + N physical| +ﱣ V protect|,patient=physical| + N readings| +ѡ N readings| +ѧ N affairs|,literature| +ѧ N human|,*compile|༭,literature| +ѧ N community|,literature| +ѧʿ N human|,literature| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N affairs|,literature|,entertainment| +ո N fact|,resume|ָ,#knowledge|֪ʶ +ս N community|,literature|,entertainment| + N human|,friend|,#literature| + N affairs|,entertainment| +Է N community|,literature| +ժ N text| + N text| +ְ N attribute|,occupation|ְλ,&human| +ְԱ N human|,#occupation|ְλ,official| +ʱ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ʱ ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N character| + N text| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N regulation|,complicated|,undesired|ݬ + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + V perception|֪,#listen| + V smell| +ŷ V perception|֪,content=news| +ŷ V VieFor| +ŷɥ V fear| +Źϲ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N character|,surname|,human|,ProperName|ר + N human|,desired|,glorious| +δ ADJ aValue|ֵ,kind|,queer| +Ѷ V perception|֪,content=news| + N trace| + N trace| +· N trace| +˿ ADJ aValue|ֵ,performance| + N metal|,material| + V ShowLove|ʾ,means=CausePartMove| + N fact|,ShowLove|ʾ + N part|,%AnimalHuman|,mouth| +Ǻ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADV {comment|} +Ȳ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ȳʤȯ V fixed|Ѷ,content=succeed|ɹ +Ȳʤ V fixed|Ѷ,content=succeed|ɹ +Ȳ N fact|,create|,manner=steady| +Ȳ߲ N fact|,create|,manner=steady| +ȵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ȵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +ȶ ADJ aValue|ֵ,circumstances|,safe|,desired| +ȶ V stabilize|ʹ +ȶ N attribute|,behavior|ֹ,steady|,&thing| +ȹ ADJ aValue|ֵ,circumstances|,safe|,desired| +Ȼ V obtain|õ,comment| +Ƚ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +̩ɽ ADJ aValue|ֵ,circumstances|,safe|,desired| +̬ ADJ aValue|ֵ,PhysicState|״̬,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +Ӯ V defeated|,comment| +Ӯ V win|ʤ,comment| +ȴ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ס V stabilize|ʹ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V SayHello|ʺ + V ask| + V interrogate| +ʰ V SayHello|ʺ +ʰ V interrogate|,police| +ʳʶ V ask| +ʵä ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʺů V SayHello|ʺ +ʺ V SayHello|ʺ +ʺ N problem| +ʺ N symbol|,#ask| +ʺ V SayHello|ʺ +ʻ V ask| +ʽ V ask| + V ComeToWorld| + N phenomena|,unfortunate|,undesired|ݬ + N problem| + V FeelNoQualms| + V shy| +ѯ V ask| +Ѷ V ask| + V diagnose|,means=ask|,medical|ҽ + N sound| + N sound| + N character|,surname|,human|,ProperName|ר + N human|,aged|,male| + N human|,intimate|,male| + N tool|þ,cubic|,@put| +֮ N beast|,$catch|׽ס + N InsectWorm| +ϸ N part|,%machine| +Ͼ N house| + N part|,%machine| +ţ N InsectWorm| + N water|ˮ + N water|ˮ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N phenomena|,#weather| + ADJ aValue|ֵ,form|״,curved| + V bend| + V hide| + N house|,#animal|,#alive| + N location|λ + N part|,%human| + N place|ط,crime| +Ѳ V hide| +ѵ N place|ط,crime| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V upset| +ҷ N human|,unable|ӹ,undesired|ݬ + N facilities|ʩ,space|ռ,@reside|ס,@put| +ͷ N food|ʳƷ +ͷ N food|ʳƷ + N human|,crime|,undesired|ݬ,*hide| + PRON {firstPerson|} +ҷ PRON {firstPerson|,mass|} +ҹ N place|ط,country| +Ҿ N army| + PRON {firstPerson|,mass|} + ADJ aValue|ֵ,behavior|ֹ,lasting| + V rotate|ת + V mediate| + V LieDown| + V sit| +Բ V ill|̬ +Գ N LandVehicle| +Գ N LandVehicle|,@sleep|˯ +Դ V ill|̬ +Դ V ill|̬ +Ե V FallDown| +Ե N human|,#occupation|ְλ,*scout|,police| +Է N room|,@sleep|˯ +Ծ N tool|þ,generic|ͳ,*sleep|˯ + N LandVehicle|,@sleep|˯ +ʽ ADJ aValue|ֵ,posture|,horizontal| + N room|,@sleep|˯ +н V endeavour| + N furniture|Ҿ,@sleep|˯ + V hold| +ձ V farewell| + V ShowLove|ʾ +Ժ V reconcile| +ס V hold|,Vachieve| + ADJ aValue|ֵ,quality|,fertile|,desired| + N character|,surname|,human|,ProperName|ר + V irrigate|,agricultural|ũ + N language|,#country|,ProperName|ר + N language|,#country|,ProperName|ר + N land|½,#crop|ׯ +Ұ N land|½ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ + N character|,surname|,human|,ProperName|ר + N human|,*deceive|ƭ,~undesired|ݬ +ʦ N human|,*deceive|ƭ,undesired|ݬ +ʦ N human|,*deceive|ƭ,~undesired|ݬ + N sound| +غ V die| +غ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +غ V die| +غ V end|ս + V weep| + N metal| + ADJ aValue|ֵ,color|ɫ,black| + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Uganda|ڸɴ) + N place|ط,country|,ProperName|ר,(Ukraine|ڿ) + N place|ط,country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(Uzbekistan|α˹̹) +ڶ N language|,#country|,ProperName|ר +ڷ N part|,%human|,hair|ë,black| +ڸɴ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uganda|ڸɴ) +ڸɴ N place|ط,country|,ProperName|ר,(Africa|) +ڸɴ N human|,(Uganda|ڸɴ) +ڸɴ N money|,(Brunei|ڸɴ) +ڹ N fish| +ڹ N human|,male|,undesired|ݬ +ں֮ N human|,unable|ӹ,mass| +ں ADJ aValue|ֵ,color|ɫ,black| +ڼ N money|,(Mauritania|ë) +ڽ N stone|ʯ,material|,*lighting|ȼ,$burn| +ڿ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Ukraine|ڿ) +ڿ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ڿ N language|,#country|,ProperName|ר + N clothing|,#foot| + N place|ط,ProperName|ר + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uruguay|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,#country|,(Uruguay|) + N human|,(Uruguay|) + N place|ط,capital|,ProperName|ר,(Mongolia|ɹ) + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N material|,?drinks|Ʒ +³ľ N place|ط,city|,ProperName|ר,(China|й) +÷ N food|ʳƷ +÷ N fruit|ˮ +߰ ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ +߰ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +ɴñ N attribute|,occupation|ְλ,&human| +ɴñ N clothing|,#head|ͷ,#official| +а ADJ aValue|ֵ,trueness|α,fake|α +а N place|ط,#humanized| +ѻ N bird| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + N fish| + N CloudMist|,dark|,#WeatherBad| + N fish| +ȱ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹ N place|ط,country|,ProperName|ר,(Asia|) +ȱ˹̹͹ N place|ط,country|,ProperName|ר,(Asia|) +α˹̹ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Uzbekistan|α˹̹) +α˹̹ N place|ط,country|,ProperName|ר,(Asia|) +α N language|,#country|,ProperName|ר + N tree| + N fish| + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V slander|̰ + N stone|ʯ,waste| +۵ N attribute|,quality|,weak|,undesired|ݬ,&thing| +۵ N trace|,viscera| +۹ N stone|ʯ,waste| +ۻ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +ۼ N trace|,dirty| + V slander|̰ + N stone|ʯ,viscera| +Ⱦ V pollute|ʹ +Ⱦ N place|ط,$pollute|ʹ +Ⱦ N physical|,*pollute|ʹ +ȾԴ N location|λ,*pollute|ʹ +Ⱦ N human|,*pollute|ʹ + V damage| + V slander|̰ +ˮ N water|ˮ,viscera| + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V accuse|ظ,means=forge|α,police| +ܸ V accuse|ظ,means=forge|α,police| +ܺ V slander|̰ + V slander|̰ + V slander|̰ + V damage| + N house|,generic|ͳ + N room| +ݶ N part|,%house|,head|ͷ +ݶ԰ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ +ݼ N part|,%house|,head|ͷ + N location|λ,%house| + N location|λ,%room| + N part|,%house| + N house|,generic|ͳ + N human|,*own|,#house| + N room| + N part|,%building|,head|ͷ + V ExistNot| + V OwnNot| +ް ADJ aValue|ֵ,circumstances|,unfixed|δ +ް ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ޱ ADJ aValue|ֵ,kind|,special| +ޱ ADJ aValue|ֵ,range|,extensive| +ޱ޼ ADJ aValue|ֵ,boundary|,wide| +ޱ仯 ADJ aValue|ֵ,property|,^change| +ޱ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į +ޱҶ N part|,%plant|ֲ,hair|ë +޲ V cry| +޲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޲ ADJ aValue|ֵ,range|,all|ȫ +޲ ADJ aValue|ֵ,similarity|ͬ,alike| +޲׼ N community| +޲׼Ļ N fact|,ProperName|ר,(China|й) +޲ N human|,mass| +޳ ADJ aValue|ֵ,ability|,able|,change| +޳ V die| +޳ N humanized| +޳ ADJ aValue|ֵ,price|۸,empty| +޳ ADJ aValue|ֵ,property|,^$pay| +޳ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +޳ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޳ ADJ aValue|ֵ,kind|,special| +޴ ADJ aValue|ֵ,quality|,good|,desired| +޴ V BeUnable| +޴ ADJ aValue|ֵ,correctness|,upright|,desired| +޵ ADJ aValue|ֵ,performance| +޵ʿ N human| +޵¹ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +޵ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +޵׶ N part|,%inanimate|,mouth| +޵ V shy| +޶ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +޶ ADJ aValue|ֵ,cleanness|ྻ,^poison| +޶ż ADJ qValue|ֵ,amount|,many| +޶ ADJ aValue|ֵ,degree|̶,extreme| +޶ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޶ V IllBehave|,crime| +޷ V BeUnable| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$express|ʾ +޷ش ADJ aValue|ֵ,ability|,unable|ӹ,$reply| +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$handle| +޷д ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷ƽϢ ADJ aValue|ֵ,ability|,unable|ӹ,$BeRecovered|ԭ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޷ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +޷ ADJ aValue|ֵ,ability|,unable|ӹ,$describe|д +޷Ԥ ADJ aValue|ֵ,ability|,unable|ӹ,$predict|Ԥ +޷׷ ADJ aValue|ֵ,time|ʱ,past| +޷ ADV {comment|} +޷IJ N material| +޷ ADV {emphasis|ǿ} +޷ֹ N material|,linear|,metal| +޸ V RelateNot|޹ +޸ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +޹ N human|,desired|,#police| +޹ ADV aValue|ֵ,correctness|,wrong|,undesired|ݬ +޹ CONJ {comment|} +޹ֺ CONJ {comment|} +޹ V RelateNot|޹ +޹ ADJ aValue|ֵ,necessity|Ҫ,redundant| +޹ؽҪ ADJ aValue|ֵ,importance|,secondary| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,brightness|,dark| +޹ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +޹糵 N LandVehicle| +޹ ADJ aValue|ֵ,attachment|,#country| +޺ ADJ aValue|ֵ,GoodBad|û,good|,desired| +޺ ADJ aValue|ֵ,ProsCons|,pros|,desired| +޻ N fruit|ˮ +޻ N tree| +޻ ADJ aValue|ֵ,content|,simple|,desired| +޻ ADJ aValue|ֵ,kind| +޻ N chemical|ѧ +޻ N chemical|ѧ +޻ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +޻̸֮ N text|,fake|α +޼ ADJ qValue|ֵ,amount|,few| +޼ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +޼ƻ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +޼ƿʩ V BeUnable| +޼ ADJ aValue|ֵ,behavior|ֹ,secret| +޼ͶƱ N method|,*drop|Ͷ,#document|,#select|ѡ +޼ ADJ aValue|ֵ,range|,extensive| +޼ҿɹ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +޼ ADJ aValue|ֵ,value|ֵ,precious|,desired| +޼֮ N physical|,precious| +޼ֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +޼ ADJ aValue|ֵ,duration|,TimeLong| +޽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +޽ ADJ aValue|ֵ,degree|̶,extreme| +޾ ADJ aValue|ֵ,behavior|ֹ,lasting| +޾ V FeelingByBad| +޾ V disheartened| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,behavior|ֹ,free| +޾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +޿ɰο ADJ aValue|ֵ,ability|,unable|ӹ,$soothe|ο +޿ɱ ADJ aValue|ֵ,kind|,special| +޿ɱ粵 ADJ aValue|ֵ,trueness|α,true|,desired| +޿ɷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɷ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ɺ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ɾҩ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ,undesired|ݬ +޿κ V BeUnable| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$resume|ָ +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$rescue| +޿޲ ADJ aValue|ֵ,importance|,secondary| +޿ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,correctness|,upright|,desired| +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +޿ָ ADJ aValue|ֵ,ability|,unable|ӹ,$ExpressAgainst|Ǵ +޿ ADJ aValue|ֵ,trueness|α,true|,desired| +޿ײ V catch|׽ס,patient=time|ʱ +޿ڲ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + V FeelNoQualms| + V worth|ֵ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ȡ V IllBehave| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ͼ ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬ + ADJ aValue|ֵ,strength|,weak|,undesired|ݬ + V tired|ƣ + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,content|,boring|,undesired|ݬ +Ч N attribute|,effect|Ч,useless|,undesired|ݬ,&cure|ҽ,medical|ҽ + CONJ {concession|ò} + CONJ {concession|ò} + ADJ aValue|ֵ,reputation|,Notwellknown| +Ӣ N human|,able|,desired| +Ӣ N human|,military| +Ŀ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V BeUnable| + CONJ {but|} + V BeUnable| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +Ϊ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +ǣ޹ ADJ aValue|ֵ,circumstances|,relax|,desired| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,range|,extensive| +޾ ADJ aValue|ֵ,range|,extensive| +޾ ADJ qValue|ֵ,amount|,many| +˼ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ʻ ADJ aValue|ֵ,performance| +˾ס ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N attribute|,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| +ɫ ADJ aValue|ֵ,color|ɫ,colorless|ɫ +˴ ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + N human| + ADJ aValue|ֵ,occasion|,quiet|,desired| +Ƭ N shows| +ǹ N weapon| +޳ ADJ aValue|ֵ,reputation|,Notwellknown| +Ϣ ADJ aValue|ֵ,reputation|,Notwellknown| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N inanimate| +ʱ޿ ADV aValue|ֵ,frequency|Ƶ,often| +ʵЧ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ʵ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V IllBehave| + V despise| + ADJ qValue|ֵ,amount|,many| +˪ N time|ʱ,#weather| +˫ ADJ aValue|ֵ,kind|,special| +ˮ ADJ aValue|ֵ,dampness|ʪ,waterless| +˽ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +˽η ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,ability|,able|,desired| +Ϊ V IllBehave| + ADJ aValue|ֵ,range|,extensive| +֪ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V flurried| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V slack|͵ +ʴ V ignorant|֪ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν V BeNot| +ν ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +ν V despise| +Ϊ V DoNot| +ɫ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,property| +ʹ ADJ aValue|ֵ,property|,^painful|ʹ +ͷ N fact|,undesired|ݬ,#police| +ͷ N fact|,undesired|ݬ,secret| + ADJ aValue|ֵ,performance| + V succeed|ɹ +ʤ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +֮ N phenomena|,unfortunate|,undesired|ݬ +΢ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +Ϊ N fact| +ζ ADJ aValue|ֵ,content|,boring|,undesired|ݬ +ζ ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ +η ADJ aValue|ֵ,courage|,brave|,desired| +ν ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +νķ N fact|,secondary|,undesired|ݬ +Ⱦ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + ADJ aValue|ֵ,correctness|,upright|,desired| + ADJ aValue|ֵ,appearance|,^beautiful|,undesired|ݬ + N place|ط,city|,ProperName|ר,(China|й) +Ϣ ADJ aValue|ֵ,property|,^pay| +Ϣ N money|,$lend|,commercial| +϶ɳ ADJ aValue|ֵ,range|,all|ȫ +Ͼ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,extensive|,desired| +޹˾ N InstitutePlace|,commercial| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,performance| +ߵ N tool|þ,*disseminate| +ߵ绰 N tool|þ,*communicate| +ߵ N tool|þ,*look|,#image|ͼ,#shows| +Ч ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +иɻ ADJ aValue|ֵ,range|,all|ȫ,desired| +иɻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| + V unwilling|Ը + ADJ aValue|ֵ,form|״,empty| + ADJ aValue|ֵ,behavior|ֹ,special| +״ ADJ aValue|ֵ,form|״,empty| +ʲ N wealth|Ǯ + ADJ aValue|ֵ,attachment| +ֹ ADJ aValue|ֵ,duration|,TimeLong| + ADV {modality|} + ADV {modality|} + ADJ aValue|ֵ,range|,extensive| +̻ҩ N material|,?weapon| +ú N material|,stone|ʯ,$burn| +Զ V BeUnable|,content=reply| +ҵ V OwnNot|,possession=occupation|ְλ +޿ V aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ qValue|ֵ,amount|,all|ȫ + ADJ aValue|ֵ,trueness|α,true|,desired| + V unwilling|Ը +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + ADJ aValue|ֵ,ProsCons|,cons|,undesired|ݬ + ADJ aValue|ֵ,ability|,unable|ӹ,earn|׬,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N bird| +Ӱ N tool|þ,*illuminate|,#medical|ҽ +Ӱ ADV aValue|ֵ,property|,disappear|ʧ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| +ױ ADJ aValue|ֵ,kind|,special| +ԭ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Դ ADJ aValue|ֵ,property|,#electricity| +Ե V OwnNot|,possession=time|ʱ +Ե޹ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +ծ ADJ aValue|ֵ,ability|,return|,#owe|Ƿ + ADJ aValue|ֵ,ability|,unable|ӹ,$debate| + N thinking|˼ + N human| + N human|,#thinking|˼ +״̬ N attribute|,circumstances|,disorder|,&country| +֢״ ADJ aValue|ֵ,performance|,#disease| +֤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ N experience|,ignorant|֪ +֪ V ignorant|֪ +ֹ ADJ aValue|ֵ,range|,extensive|,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,performance| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,importance|,secondary| + ADJ aValue|ֵ,quality|,negligible| + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,behavior|ֹ,^crime|,#police| + ADJ aValue|ֵ,area|,wide| +覴 ADJ aValue|ֵ,GoodBad|û,good|,desired| + V BeWell|׳ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + ADJ aValue|ֵ,scene|,exuberant|ï + N land|½,#FlowerGrass| +ߺ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ +ݼ N part|,%vegetable|߲,embryo|,$eat| +ݼ N vegetable|߲ + N character|,(China|й) +ͩ N tree| + PRON {firstPerson|,mass|} + PRON {firstPerson|} +٭ PRON {firstPerson|,mass|} + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADV {neg|} + ADV {comment|} +ӹ AUX {modality|,neg|} +ӹ V {modality|,neg|,#KeepSilence|˵} +ӹ V {modality|,neg|,#doubt|} +ӹ׸ V {modality|,neg|,#trivial|} + ADJ aValue|ֵ,courage|,brave|,desired| + N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N fish| + V perform|,sport| +䵱ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +书 N result|,desired|,#succeed|ɹ,military| + N human|,#occupation|ְλ,official|,military|,diplomatic|⽻ +人 N place|ط,city|,ProperName|ר,(China|й) + N fire|,strong|ǿ,*cook| +侯 N human|,#occupation|ְλ,police| + N facilities|ʩ,space|ռ,@store|,#weapon| + N attribute|,strength|,&army|,military| + N attribute|,strength|,fierce|,undesired|ݬ,&organization|֯ + N community|,sport| + N weapon|,generic|ͳ +ר N human|,#knowledge|֪ʶ,#weapon| +װ ADJ aValue|ֵ,standard|׼,useless|,#weapon|,military| +ʿ N human|,past|,military| + N knowledge|֪ʶ,#sport|,(China|й) + N human|,desired| +С˵ N text| + N knowledge|֪ʶ,#sport|,(China|й) +װ N army| +װ V provide|,possession=weapon|,military| +װ N weapon| +װ N army|,generic|ͳ +װͻ V fight|,military| +װ V provide|,possession=weapon|,degree=extreme| +װ V obstruct|ֹ,military| +װ N human|,#occupation|ְλ,police| +װ N army| + NUM qValue|ֵ,amount|,cardinal|,mass| +屶 ADJ qValue|ֵ,amount|,cardinal|,mass| +屶 N FlowerGrass|,?medicine|ҩ,(China|й) + ADJ aValue|ֵ,form|״ +岽 N beast| + ADJ aValue|ֵ,color|ɫ,colored| +ͷ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,hour|ʱ,night| + N crop|ׯ +ȷ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + N attribute|,appearance|,AnimalHuman| + N part|,%human| +ʮɫ ADJ aValue|ֵ,color|ɫ,colored| +ʮɫ ADJ aValue|ֵ,kind|,many| +ĺ N location|λ,%earth| +廨 ADJ aValue|ֵ,kind|,many| +廨 N food|ʳƷ +Ǵ¥ N house|,institution|,#politics|,(US|) + N fittings| + N metal| +𽻵 N fittings| + N fruit|ˮ,$eat| + N attribute|,relatedness|,&human| + N part|,%AnimalHuman|,viscera| +ʮ NUM qValue|ֵ,amount|,cardinal|,mass| +ʮЦٲ V BeSimilar| +ζ N attribute|,odor|ζ,&physical| +ζ N FlowerGrass|,?medicine|ҩ,(China|й) + N material|,?food|ʳƷ +ԭ N regulation|,#country|,diplomatic|⽻ +Ǽ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +ɫ ADJ aValue|ֵ,color|ɫ,colored| + N time|ʱ,month| +· N time|ʱ,month| + N part|,%AnimalHuman|,viscera| +ָ N part|,%AnimalHuman|,hand| + N place|ط + N tool|þ,*recreation| + V cover|ڸ + V cover|ڸ,patient=circumstances| + N time|ʱ,afternoon| + N fact|,eat|,afternoon| + N food|ʳƷ +緹 N fact|,eat|,afternoon| +緹 N food|ʳƷ,generic|ͳ + N time|ʱ,afternoon| + N time|ʱ,afternoon| +ǰ N time|ʱ,early|,day| +ʱ N time|ʱ,hour|ʱ,afternoon| +˯ V sleep|˯ + V rest|Ϣ + N fact|,eat|,#entertain|д +ҹ N time|ʱ,day|,night| + N fact|,recreation|,entertainment| + V recreation|,entertainment| + V shake|ҡ + N shows| + N human|,friend|,*recreation| + N fact|,deceive|ƭ +貽 N attribute|,posture|,perform|,&human| +賡 N InstitutePlace|,@perform|,#shows| + N facilities|ʩ,@perform|,#shows| +赸 N fact|,recreation|,entertainment| +赸 N disease| +赸 N human|,*perform|,entertainment| +赸Ա N human|,#occupation|ְλ,*perform|,entertainment| +趯 V shake|ҡ +趯 V wave|ڶ + N fact|,recreation| +輧 N human|,female|Ů,*perform|,entertainment| + N shows| + N human|,#occupation|ְλ,male|,*recreation| +Ū V shake|ҡ +Ū V wave|ڶ +Ů N human|,#occupation|ְλ,female|Ů,*recreation| + N music| +̨ N facilities|ʩ,space|ռ,@perform|,#shows| + N InstitutePlace|,@perform|,#shows| + N room|,@perform|,#shows| +Ūī V ShowOff|ҫ,content=ability|,literature| +Ūī V alter|ı,patient=law|ɷ,StateIni=true|,StateFin=fake|α + N attribute|,posture|,#recreation|,&human| + N army|,generic|ͳ + N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + V damage| + V IllTreat| + V damage| + ADJ aValue|ֵ,property|,IllTreat| + N facilities|ʩ,#city| + N facilities|ʩ,space|ռ,#ship|,@stay|ͣ,#waters|ˮ + N symbol| + N CloudMist| + N CloudMist| +״ ADJ aValue|ֵ,form|״,#gas| + V meet| + V meet| +̸ V talk|̸ + N attribute|,content|,&readings|,&information|Ϣ + N entity|ʵ,generic|ͳ + N artifact|˹,generic|ͳ + V die| +ﻯ V die| +ﻻ V change| + N attribute|,price|۸,&thing|,commercial| +۾ N institution|,*manage|,#price|۸,ProperName|ר,politics| + N artifact|˹,generic|ͳ +ᄉ N tool|þ,*look|,#physical| + ADJ aValue|ֵ,content|,substantial|ʵ + N knowledge|֪ʶ +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ + N attribute|,strength|,physical|,&organization|֯,&country|,&human| + ADJ aValue|ֵ,price|۸,cheap| +Ʒ N artifact|˹,generic|ͳ +ɫ V LookFor|Ѱ +ɫ V choose|ѡ + N physical|,generic|ͳ + N image|ͼ + N phenomena| + N shape| + N aspiration|Ը,expect| +֤ N information|Ϣ,*prove|֤ + N physical|,generic|ͳ + N mental| + N attribute|,kind|,&animate| + N material|,generic|ͳ + AUX {neg|} + N affairs|,generic|ͳ + V engage| + AUX {modality|} + AUX {modality|} +ũ V engage|,agricultural|ũ +͹ EXPR expression|,*welcome|ӭ + ADV {modality|} +ʵ V handle|,patient=substantial|ʵ +ʹ V CauseToDo|ʹ + V discuss| + V understand| + N attribute|,ability|,#understand|,&human| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V damage| + V lose|ʧȥ + N result|,wrong|,undesired|ݬ + N result|,wrong|,#calculate|,#measure| + ADJ aValue|ֵ,earliness|,late|,undesired|ݬ + V due| + V delay|,content=affairs| + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| + N result|,#misunderstand|,undesired|ݬ + V misunderstand| +; V err| +ɱ V kill|ɱ,manner=careless|,police| + V damage|,manner=careless| + V OutOfOrder| + V delay|,content=affairs| + V misunderstand| +Ϊ V misunderstand| + V diagnose|,wrong|,medical|ҽ + N time|ʱ,past| + N time|ʱ,past| + N time|ʱ,past| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,occasion|,bustling| + V analyze| + V separate| + V separate| + ADJ aValue|ֵ,source|Դ,foreign| + N direction|,west| + N place|ط,country|,ProperName|ר,(Spain|) + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Spain|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N money|,(Andorra|) + N place|ط,capital|,ProperName|ר,(Trinidad and Tobago|Ͷ͸) + N language|,#country|,ProperName|ר + N part|,%earth|,west| + N direction|,north|,west| + N location|λ,north|,west| + N location|λ,west| + N place|ط,ProperName|ר,(Russia|˹) + N location|λ,west| + N edible|ʳ,foreign| +͹ N InstitutePlace|,@eat|,#foreign|,commercial| + N InstitutePlace|,@eat|,#foreign|,commercial| + N place|ط,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N language|,#country|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N location|λ,ending|ĩ,west| + N FlowerGrass| + N aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,source|Դ,foreign| + N aValue|ֵ,source|Դ,foreign| + N location|λ,west| + N place|ط,ProperName|ר,west|,(Africa|) + N wind| + N clothing|,foreign| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N place|ط,city|,ProperName|ר,(Vietnam|Խ) + N fruit|ˮ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +« N part|,%vegetable|߲,embryo|,$eat| +« N vegetable|߲ + V ize|̬,PatientAttribute=foreign| + N part|,%place|ط,surrounding|Χ,#city|,west| + N law|ɷ,#earth| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,#tool|þ,#communicate|,commercial| + N location|λ,west| + N direction|,west|,south| +ϲ N location|λ,west|,south| +Ͻ N location|λ,west|,south| + N place|ط,city|,ProperName|ר,(China|й) +ŷ N place|ط,ProperName|ר,west|,(Europe|ŷ) +Ħ N place|ط,country|,ProperName|ר +ɳȺ N place|ط,#waters|ˮ,ProperName|ר,(China|й) +ʽ ADJ aValue|ֵ,kind|,foreign| +˹ N language|,#country|,ProperName|ר + N celestial|,#humanized|,religion|ڽ +ͷ N location|λ,west| + N place|ط,ProperName|ר,(Italy|) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ѧ N knowledge|֪ʶ +ͼ N place|ط,ProperName|ר,(US|) + N place|ط,ProperName|ר,west|,(Asia|) + ADJ aValue|ֵ,attachment|,foreign| + N FlowerGrass|,?medicine|ҩ +ҩ N medicine|ҩ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N affairs|,medical|ҽ,foreign| +ӡȺ N place|ط,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +װ N clothing|,foreign| +װ ADJ aValue|ֵ,appearance| + N chemical|ѧ + N chemical|ѧ + N disease| + N metal| + N place|ط,ProperName|ר,#computer|,#software|,(US|) + ADJ aValue|ֵ,content|,opened| + ADJ joyful|ϲ + V attract| + V consume|ȡ + V inhale| + N tool|þ,*clean|ʹ,#inhale| + N bacteria|΢ + N tool|þ,*illuminate|,#room| + V addict|Ⱥ,patient=addictive|Ⱥ,crime| + N human|,*addict|Ⱥ,undesired|ݬ + N human|,*addict|Ⱥ,undesired|ݬ + ADJ aValue|ֵ,property|,inhale| + V inhale| + N chemical|ѧ,*clean|ʹ,#inhale| + N tool|þ,#drinks|Ʒ + N attribute|,strength|,&entity|ʵ +īֽ N paper|ֽ,*inhale| + V inhale| +ȡ V GetKnowledge|֪ +ȡ V consume|ȡ +ȡѵ V GetKnowledge|֪,content=experience| + V consume|ȡ,patient=hot| + V inhale| +ʪ V consume|ȡ,patient=wet|ʪ +ʪ ADJ aValue|ֵ,property|,consume|ȡ,#wet|ʪ +ʳ V drink| + V consume|ȡ + V include| +ռ N chemical|ѧ,*clean|ʹ,#inhale| +ϵ N symbol|,#MoveItInto| +˱ V drink| +ʯ N metal| +Ѫ N human|,greedy|̰,undesired|ݬ + V addict|Ⱥ + V room|,@addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ + V attract| + N attribute|,ability|,&attract| + N metal| + N tool|þ,*condole|°,#die| + N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Sikkim|) + N place|ط,country|,ProperName|ר,(Asia|) +ֽ N paper|ֽ +ֽ N tool|þ,*condole|°,#die| + V abandon| + V die| + N livestock|,*salute|¾ +Ʒ N entity|ʵ,$abandon| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N food|ʳƷ +ϡ N human|,*visit| +ϡ ADJ aValue|ֵ,hardness|Ӳ,soft| +ϡͿ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ϡ ADJ aValue|ֵ,kind|,queer| +ϡȱ ADJ qValue|ֵ,amount|,few| +ϡȱƷ N artifact|˹,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ ADJ qValue|ֵ,amount|,few| +ϡ V dilute|嵭 +ϡͼ V chemical|ѧ,*dilute|嵭 +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,importance|,secondary|,undesired|ݬ +ϡˮ ADJ aValue|ֵ,concentration|Ũ,watery|ϡ +ϡ N metal| +ϡԪ N part|,%entity|ʵ +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡϡ ADJ aValue|ֵ,density|ܶ,sparse| +ϡ ADJ aValue|ֵ,kind|,queer| +ϡн N metal| +ϡԪ N part|,%entity|ʵ +ϡ N food|ʳƷ +Ϣ V end|ս +Ϣ N fact|,respire| +Ϣ N fund|ʽ +Ϣ V rest|Ϣ +Ϣŭ V calm| +Ϣ N disease| +Ϣ V mediate| +ϢϢ V relate|й +ϣ V expect| +ϣ N place|ط,country|,ProperName|ר,(Greece|ϣ) +ϣ ADJ qValue|ֵ,amount|,few| +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ V like|ϧ +ϣ ADJ qValue|ֵ,amount|,few| +ϣ V expect| +ϣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Greece|ϣ) +ϣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ϣ N human|,#country|,ProperName|ר +ϣ N language|,#country|,ProperName|ר +ϣ ADJ aValue|ֵ,kind|,queer| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ ADJ qValue|ֵ,amount|,few| +ϣ֮ N treasure|䱦 +ϣ N human|,official|,politics|,ProperName|ר,(Germany|¹) +ϣͼ V expect| +ϣ V expect| +Ϥ V know|֪ +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V endeavour| +Ϥ N place|ط,city|,ProperName|ר,(Australia|) +Ϥ ADJ qValue|ֵ,amount|,all|ȫ +Ϥ V do|,manner=attentive|ϸ +ϥ N part|,%AnimalHuman|,leg| +ϥ N part|,%AnimalHuman|,leg| +ϥؽ N part|,%AnimalHuman|,leg| +ϥ ADJ aValue|ֵ,attachment| +ϥ״ ADJ aValue|ֵ,form|״,curved| +Ϧ N time|ʱ,day|,night| +Ϧ N CloudMist| +Ϧ N celestial| +Ϧ V GoDown|ȥ,#celestial| +Ϧ N lights|,#celestial| +Ϧ N lights|,#celestial| +ϧ V grudge| +ϧ V like|ϧ +ϧ V sorry|ϧ +ϧ V farewell| +ϧ V grudge|,content=strength| +Ϩ V destroy| +Ϩ V TurnOff|ֹ,patient=tool|þ +Ϩ V remove|,patient=fire| +Ϩ V disappear|ʧ +ϩ N chemical|ѧ +ϩ N chemical|ѧ +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫ N waters|ˮ,linear| +Ϫˮ N waters|ˮ,linear| +ϫ N water|ˮ +Ϭ N beast| +Ϭ N part|,%AnimalHuman|,*feel| +Ϭ ADJ aValue|ֵ,content|,profound|,desired| +Ϭţ N beast| +ϭ N document|,*call|ٻ,#fight| +ϭ N document|,*ExpressAgainst|Ǵ,#enemy| +ϭ N document|,*call|ٻ,#fight| +Ϯ V attack| +Ϯ V attack|,military| +Ϯ V imitate|ģ +Ϯ V attack|,manner=sudden|,military| +Ϯ N human|,*attack| +Ϯȡ V occupy|ռ,manner=sudden| +Ϯ V attack|,manner=again|,military| +Ϯ V use| +ϯ N character|,surname|,human|,ProperName|ר +ϯ N fact|,eat|,#entertain|д +ϯ N location|λ +ϯ N tool|þ,@LieDown| +ϯϾů ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +ϯ ADJ aValue|ֵ,location|λ,place|ط +ϯض ADJ sit|,location=place|ط +ϯ N time|ʱ,#eat|,#entertain|д +ϯ V contain| +ϯ V occupy|ռ +ϯ˼ N tool|þ,@LieDown| +ϯλ N location|λ +ϰ N character|,surname|,human|,ProperName|ר +ϰ V drill|ϰ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ V fit|ʺ +ϰ V fit|ʺ +ϰ N attribute|,habit|ϰ,bad|,&human|,&organization|֯ +ϰȾ V suffer| +ϰȾϰ V suffer|,content=habit|ϰ +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰ N text|,*drill|ϰ +ϰ V drill|ϰ,content=sport| +ϰϰ V WeatherFine| +ϰ N attribute|,habit|ϰ,&human|,&organization|֯ +ϰΪ V fit|ʺ +ϰ V study|ѧ,content=symbol| +ϰ V study|ѧ,content=compile|༭ +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,family|,female|Ů +ϱ N human|,female|Ů,adult| +ϲ V FondOf|ϲ +ϲ N fact|,desired|,$congratulate|ף +ϲ N fact|,pregnant| +ϲ V joyful|ϲ +ϲ V FondOf|ϲ +ϲ N text|,*congratulate|ף,#happy| +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=very| +ϲ V FondOf|ϲ +ϲ V FondOf|ϲ +ϲ V joyful|ϲ +ϲʩ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲָֻ ADJ aValue|ֵ,behavior|ֹ,active|Ը,#order| +ϲ V succeed|ɹ +ϲԵ V GetMarried| +ϲ N drinks|Ʒ,$addict|Ⱥ,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,*congratulate|ף,#GetMarried|,#entertain|д +ϲ N fact|,lucky|,#joyful|ϲ +ϲ N shows|,#joyful|ϲ,entertainment| +ϲԱ N human|,*perform|,entertainment| +ϲɽ N land|½,ProperName|ר,(China|й) +ϲŭ N emotion| +ϲ N attribute|,countenance|,joyful|ϲ,&human| +ϲ N attribute|,environment|,joyful|ϲ,&human| +ϲ V joyful|ϲ +ϲ ADJ aValue|ֵ,circumstances|,happy|,desired| +ϲ V congratulate|ף +ϲ N fact|,desired|,$congratulate|ף +ϲȵ N bird| +ϲ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲɫ N attribute|,countenance|,joyful|ϲ,&human| +ϲü V joyful|ϲ +ϲ N fact|,$congratulate|ף,desired| +ϲ N fact|,GetMarried|,desired| +ϲ N fact|,desired|,$congratulate|ף +ϲּ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ϲЦտ V laugh|Ц +ϲ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ϲɫ V joyful|ϲ +ϲɫ V laugh|Ц +ϲѶ N news|,happy| +ϲ V joyful|ϲ +ϲ N RainSnow|ѩ +ϲ V joyful|ϲ +ϲ V joyful|ϲ +ϳ V grind|ĥ,industrial| +ϳ N machine|,*produce| +ϳ N machine|,*cut| +ϳ N fact|,cut| +ϳ N human|,#occupation|ְλ,*cut|,industrial| +ϳ N metal| +ϴ V amend| +ϴ V mix| +ϴ V produce|,#TakePicture| +ϴ V rob| +ϴ V wash|ϴ +ϴ V entertain|д +ϴ V AlterProperty|,PatientAttribute=SoundVolume| +ϴ V wash|ϴ +ϴӼ N tool|þ,*wash|ϴ +ϴ V listen| +ϴ N tool|þ,*wash|ϴ,#hair|ë +ϴ N medicine|ҩ,*wash|ϴ +ϴ V rob| +ϴ V wash|ϴ +ϴ V accept|,religion|ڽ +ϴ N fact|,exam|,important| +ϴ N fact|,religion|ڽ +ϴ V wash|ϴ,patient=skin|Ƥ +ϴȾ V wash|ϴ,AlterColor|ɫ +ϴ V wash|ϴ,patient=hand| +ϴּ V room|,@excrete|й,@wash|ϴ +ϴˢ V amend| +ϴˢ V wash|ϴ +ϴͷ V wash|ϴ,patient=hair|ë +ϴ N tool|þ,*wash|ϴ,#tool|þ +ϴθ V cure|ҽ +ϴĸ V amend|,content=wrong| +ϴѩ V amend| +ϴ V wash|ϴ,patient=clothing| +ϴµ N InstitutePlace|,*wash|ϴ,#clothing|,commercial| +ϴ· N material|,*wash|ϴ,#clothing| +ϴ¹ N human|,#occupation|ְλ,*wash|ϴ,#clothing| +ϴ» N tool|þ,*wash|ϴ,#clothing| +ϴŮ N human|,#occupation|ְλ,*wash|ϴ,#clothing|,female|Ů +ϴӡ V produce| +ϴԡ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ,PartOfTouch=body| +ϴ V wash|ϴ +ϴ V wash|ϴ +ϵ V be| +ϵ V fasten|˩ +ϵ N part|,%InstitutePlace|,education| +ϵ N part|,%entity|ʵ +ϵ N part|,%entity|ʵ,body| +ϵ V relate|й +ϵ V worried|ż +ϵ N part|,%language| +ϵ V wrap| +ϵ CLAS attribute|,amount|,&entity|ʵ +ϵо N shows| +ϵƬ N shows| +ϵ V worried|ż +ϵ N symbol|,#quantity| +ϵͳ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +ϵͳ N part|,%entity|ʵ,body| +ϵͳ V analyze|,content=part|,#entity|ʵ,body| +ϵͳ N affairs| +ϵͳ V ize|̬,PatientAttribute=accurate|׼ +ϵͳ N attribute|,correctness|,accurate|׼,&entity|ʵ +ϵָ V mean|ָ +϶ N attribute|,relatedness|,sparse|,&human| +϶ N fact|,oppose| +϶ N part|,%inanimate|,mouth| +϶ N time|ʱ +϶ N time|ʱ,important| +϶ N place|ط +Ϸ V WhileAway| +Ϸ N shows| +Ϸ N community|,*perform|,entertainment| +Ϸ N community|,*perform|,entertainment| +Ϸ N shows| +Ϸ N shows| +Ϸ N human|,*compile|༭,#shows|,entertainment| +Ϸ N community|,#compile|༭,#shows|,entertainment| +Ϸ ADJ aValue|ֵ,behavior|ֹ,important| +Ϸ¥ N InstitutePlace|,@perform|,entertainment| +Ϸ N human|,*FondOf|ϲ,#shows| +ϷŪ V tease|ȡ +Ϸ N shows| +Ϸˣ V tease|ȡ +Ϸ̨ N facilities|ʩ,space|ռ,@perform| +Ϸ N text|,tease|ȡ +ϷԺ N InstitutePlace|,@perform|,entertainment| +Ϸװ N clothing|,#perform| +Ϸ V tease|ȡ +ϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,content|,trivial| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸ ADJ aValue|ֵ,size|ߴ,small|С +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸ N part|,%animate| +ϸĤ N part|,%animate| +ϸѧ N knowledge|֪ʶ,#animate| +ϸ N part|,%animate| +ϸ N material|,?clothing| +ϸ N part|,%image|ͼ +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ ADJ aValue|ֵ,length|,long| +ϸ N human|,*read| +ϸ ADJ aValue|ֵ,height|߶,tall| +ϸ N human|,tall| +ϸ N fact|,secondary| +ϸ N affairs|,attentive|ϸ +ϸ N fact|,secondary|,detailed| +ϸ N bacteria|΢ +ϸ N disease| +ϸѧ N knowledge|֪ʶ,#bacteria|΢ +ϸѧ N human|,#knowledge|֪ʶ,#bacteria|΢ +ϸս N fact|,fight|,#bacteria|΢ +ϸ N material|,?eat|,#crop|ׯ +ϸë N livestock| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,density|ܶ,dense| +ϸĿ N attribute|,content|,&information|Ϣ +ϸĿ N part|,%thing|,kind| +ϸ ADJ aValue|ֵ,hardness|Ӳ,delicate|,desired| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,refined|,desired| +ϸ ADJ aValue|ֵ,quality|,refined|,desired| +ϸë ADJ aValue|ֵ,fineness|ϸ,fine| +ϸ ADJ aValue|ֵ,SmoothFinish|,polished|,desired| +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +ϸɴ N material|,?clothing| +ϸɴ N machine| +ϸϸ ADJ aValue|ֵ,SoundVolume|,weak| +ϸˮ ADJ do|,manner=lasting| +ϸˮ ADJ economize|ʡ,purpose=exempt|,#lack|ȱ +ϸ˵ V describe|д +ϸ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +ϸ΢ ADJ aValue|ֵ,content|,refined| +ϸϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N material|,?clothing| +ϸС ADJ aValue|ֵ,content|,trivial| +ϸС ADJ aValue|ֵ,size|ߴ,small|С +ϸ N material|,?medicine|ҩ +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N RainSnow|ѩ +ϸ N regulation|,detailed| +ϸ N account| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ֦ĩ N part|,%event|¼,secondary| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ N human|,#occupation|ְλ,*scout|,military| +Ϲ ADV aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ϲ ADV aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ϲ V disable|м,scope=look| +Ϲ V TalkNonsense|Ϲ˵ +Ϲ V IllBehave| +Ϲ˵ V TalkNonsense|Ϲ˵,manner=fake|α +Ϲָ V guide|,manner=improper| +Ϲ N human|,undesired|ݬ,*disable|м,#look| +Ϻ N fish| +Ϻ N material|,?food|ʳƷ +Ϻ N fish| +Ϻ N food|ʳƷ,#fish| +ϺƤ N food|ʳƷ,#fish| +Ϻ N food|ʳƷ,#fish| +Ϻ N material|,?food|ʳƷ,liquid|Һ +Ϻ N fish| +ϻ N tool|þ,cubic|,@put| +ϻ N tool|þ,cubic|,@put| +ϼ N CloudMist|,colored| +ϼ N lights| +Ͻ V manage| +Ͻ N place|ط,$manage| +Ͼ ADJ aValue|ֵ,circumstances|,idle|,desired| +Ͼ N time|ʱ,idle| +Ͽ N land|½ +Ͽ N land|½ +Ͽ N part|,%land|½,mouth| + N human|,desired| + N human|,desired| + ADJ aValue|ֵ,tolerance|,generous|,desired| + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + ADJ aValue|ֵ,length|,long| +· V meet| +С ADJ aValue|ֵ,width|,narrow|խ + N information|Ϣ + N knowledge|֪ʶ +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,width|,narrow|խ + CLAS ActUnit|,&event|¼ + V GiveBirth| + V GoDown|ȥ + V GoOut|ȥ + V LeaveFor|ǰ + ADJ aValue|ֵ,rank|ȼ,LowRank|͵ + ADJ aValue|ֵ,sequence|,hind| + V announce| + V cease|ͣ + V dismount|ж + V drop|Ͷ + V fall| + V forming|γ + V leave|뿪 + N location|λ + V occupy|ռ + ADJ qValue|ֵ,amount|,few|,more| + V recreation| + STRU {Vdirection|,beneath|} +° N part|,%AnimalHuman|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° N part|,%human|,skin|Ƥ +° V cease|ͣ,content=affairs|,#duty| +°볡 N fact|,compete|,sport|,hind| +° N time|ʱ,year|,half|,hind| +° V put|,patient=mark|־ +° N time|ʱ,afternoon| +° N location|λ,%human|,body|,half|,beneath| +° N part|,%human|,body|,half|,beneath| +°ҹ N time|ʱ,day|,night|,half|,hind| +° N time|ʱ,month|,half|,hind| +± N human|,clan| +± V write|д +± ADJ aValue|ֵ,sequence|,hind| +± N community|,#rank|ȼ,LowRank|͵,employee|Ա +² V BeUnable|,content=GoDown|ȥ +² V BeUnable|,content=fulfil|ʵ +²̨ V embarrassed|Ϊ +²Ϊ ADV aValue|ֵ,behavior|ֹ,only| +² N part|,%physical|,beneath| +² N method|,useless|,undesired|ݬ +² N attribute|,status|,LowRank|͵,&human| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#compete|,sport| +³ V leave|뿪,LocationIni=facilities|ʩ,purpose=cease|ͣ,#perform|,entertainment| +³ N result| +³ V leave|뿪,LocationIni=LandVehicle| +³ V sink|³ +´ N place|ط,@reside|ס +´ V leave|뿪,LocationIni=ship| +´ V leave|뿪,LocationIni=furniture|Ҿ +´ ADJ aValue|ֵ,direction|,beneath| +´ N part|,%AnimalHuman|,mouth| +´ ADJ aValue|ֵ,sequence|,hind| +´ V surplus|ʣ,commercial| +´ V announce| +µ V GiveBirth|,PatientProduct=animal| +µ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +µ V BeRecovered|ԭ,StateIni=disease|,medical|ҽ +µ V LeaveFor|ǰ,LocationFin=land|½,agricultural|ũ +µ V leave|뿪,LocationIni=machine|,#lift| +µ V BecomeLess|,commercial| +µ V fall| +¶ V kill|ɱ +· V MoveItDown|,patient=part|,#ship| +· V arrive| +· ADJ aValue|ֵ,taste|ζ,good|,desired| +· N aValue|ֵ,direction|,beneath| +· V dispatch|Dz +· V entrust|ί +·ɻ V leave|뿪,LocationIni=aircraft| +¸ V pause|ͣ +¸ N time|ʱ,week|,future| +¸ N time|ʱ,month|,future| +¹ V cease|ͣ,content=affairs| +¹ V cease|ͣ,content=affairs|,#duty| +¹ V endeavour| +¹ V eat|,location=InstitutePlace| +¹ V sit| +º V LeaveFor|ǰ,LocationFin=waters|ˮ +º V engage|,content=commercial| +¼ N human|,#rank|ȼ,LowRank|͵,employee|Ա +¼ְԱ N human|,#occupation|ְλ,employee|Ա,LowRank|͵ +¼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +½ V BecomeLess| +½ V GoDown|ȥ +½ V fall| +½ N artifact|˹,waste| +½ N entity|ʵ,generic|ͳ,waste| +½ ADJ aValue|ֵ,sequence|,hind| +¾ ADJ aValue|ֵ,taste|ζ,good|,desired| +¾ V decide| +¿ V cease|ͣ,content=study|ѧ,education| + V GoDown|ȥ + STRU {Vdirection|,beneath|} + N readings| + ADJ aValue|ֵ,kind|,special| + V order| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N part|,%waters|ˮ +¥ V GoDown|ȥ,LocationFin=part|,#building| +¥ V GoDown|ȥ,LocationFin=part|,#building| + N location|λ,#arrive|,#ExistAppear| + V GoDown|ȥ,LocationIni=livestock| + V end|ս + ADJ aValue|ֵ,importance|,secondary| + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ᵽ ADJ aValue|ֵ,kind|,special| +Ʒ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +Ʒ ADJ aValue|ֵ,rank|ȼ,useless|,undesired|ݬ +· N facilities|ʩ,route|· +· N phenomena|,wane|˥,undesired|ݬ + N location|λ,#vehicle|ͨ + V recreation|,sport| + N attribute|,circumstances|,&entity|ʵ + N mental| +ȥ V GoDown|ȥ +ȥ V GoOn| +ȥ STRU {Vcontinue|} +ȥ STRU {Vdirection|,beneath|} + N clothing|,#leg| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ʣ V surplus|ʣ +ʿ N human|,#occupation|ְλ,military| + V do| + N human|,#rank|ȼ,LowRank|͵,employee|Ա + N human|,friend| + N location|λ + N location|λ + N human|,#rank|ȼ,LowRank|͵,employee|Ա +ˮ V GoInto|,LocationFin=waters|ˮ +ˮ ADJ aValue|ֵ,direction|,beneath| +ˮ V do|,content=crime|,crime| +ˮ N part|,%AnimalHuman|,viscera| +ˮ V start|ʼ,content=VehicleGo|ʻ +ˮ N part|,%building| +̨ V GoDown|ȥ,LocationIni=facilities|ʩ +̨ V lose|ʧȥ,possession=power|,politics| + N part|,%AnimalHuman|,body| + N part|,%human|,body|,half|,beneath| +ͷ N human|,#rank|ȼ,LowRank|͵,employee|Ա + ADJ aValue|ֵ,performance|,#sound|,$control| + N part|,%text| + N result| + N time|ʱ,afternoon| + V FormChange|α + N attribute|,boundary|,&entity|ʵ + V LeaveFor|ǰ,LocationFin=village| + N time|ʱ,week|,future| +ڶ N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| + N time|ʱ,day|,#week|,future| +һ N time|ʱ,day|,#week|,future| + ADJ aValue|ֵ,direction|,beneath| +ѩ V WeatherChange| +ѩ N quantity|,amount|,&WeatherChange|,#RainSnow|ѩ +Ѯ N time|ʱ,TenDays|Ѯ,ending|ĩ +ҩ V produce|,PatientProduct=medicine|ҩ +Ұ V cease|ͣ,content=undertake|,politics| +ҹ V cease|ͣ,content=affairs|,#duty|,#sequence|,night| +һ N method| +һô N do|,question| +һ N human|,future| + V MoveItDown| +ʶ ADJ aValue|ֵ,behavior|ֹ,passive| +ʶ N mental| +Ժ N institution|,politics| +Ժ N institution|,politics|,ProperName|ר,(UK|Ӣ) + N location|λ,undesired|ݬ + N part|,%waters|ˮ + V WeatherChange| + N time|ʱ,month|,future| + V record|¼ + V bury| +֫ N part|,%human|,limb|֫ +ũ N human|,#occupation|ְλ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N time|ʱ,week|,future| +װ V StripOff|ȥ,patient=clothing|,entertainment| +׹ V StomachTrouble|֢ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V GiveBirth|,PatientProduct=animal| + V reside|ס + V stay|ͣ + N part|,%AnimalHuman|,mouth|,beneath| + N part|,%human|,skin|Ƥ + N part|,%AnimalHuman|,mouth|,beneath| + N house| + N place|ط,city|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| +IJ N material|,?clothing| +ij N time|ʱ,summer|,early| +ĺ N character|,surname|,human|,ProperName|ר +ļ N time|ʱ,summer| + N law|ɷ,#time|ʱ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + N time|ʱ,summer| + N weather|,#summer| +Ӫ N InstitutePlace|,@exercise|,#summer| + N time|ʱ,summer| + V collect|,#summer|,agricultural|ũ + N time|ʱ,summer| + N human|,female|Ů,%publications|鿯 + N place|ط,provincial|ʡ,ProperName|ר,(US|) + N clothing|,#summer| + N time|ʱ,day|,summer| +װ N clothing|,#summer| + V frighten|Ż +Ż V frighten|Ż + ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + V StripOff|ȥ +ƶ V StripOff|ȥ +ƶ V start|ʼ +ƿ V StripOff|ȥ +ƿ V reverse|ߵ + V StripOff|ȥ + V start|ʼ + N tool|þ + ADV aValue|ֵ,earliness|,early| + ADV aValue|ֵ,time|ʱ,InFront|ǰ + N human|,past| +ȱ N human|,past| +ȵ N human|,guide| +ȷ V attack|,time=InFront|ǰ +ȷ N human|,guide| +ȷ N human|,guide| +Ⱥ N example|ʵ +Ⱥ N process|,early| +Ⱥ ADJ aValue|ֵ,sequence| +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ N attribute|,sequence|,&entity|ʵ +Ⱥ˳ N attribute|,sequence|,&entity|ʵ +Ƚ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +Ⱦ ADJ aValue|ֵ,necessity|Ҫ,necessary|Ҫ + N example|ʵ + N human|,*die|,desired| + N time|ʱ,past| +ǰ N time|ʱ,past| +Dz ADJ aValue|ֵ,property|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ +Dz N army|,$dispatch|Dz,InFront|ǰ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N human|,guide| + N human|,guide| + N human|,intimate|,male| + N human|,past| + N information|Ϣ,guide| + V attack|,time=InFront|ǰ + N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) + N human|,#occupation|ְλ,*teach|,education| + N human|,male| + N human|,past| + ADJ aValue|ֵ,source|Դ,original|ԭ +첻 N attribute|,quality|,weak|,undesired|ݬ,&human| + ADJ aValue|ֵ,source|Դ,original|ԭ +Լ N disease| +ͷ N time|ʱ,past| +ͷ N part|,%army| +ͷֶ N part|,%army| + N human|,desired| + ADJ aValue|ֵ,earliness|,early| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +й N human|,official| + N human|,past| + N knowledge|֪ʶ + N human| +ն V VieFor| + N information|Ϣ + N human|,desired|,past|,wise| +֪ N human|,desired|,wise| +֪Ⱦ N human|,desired|,wise| + N humanized|,desired| +ɹ N humanized|,desired|,female|Ů +ɹ N humanized|,female|Ů +ɺ N bird| +ɺײ N FlowerGrass|,?medicine|ҩ +ɾ N place|ط,#humanized|,beautiful|,happy| +Ů N humanized|,desired|,female|Ů + N humanized|,desired| + N FlowerGrass| + N humanized|,desired|,female|Ů + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N edible|ʳ,#taste|ζ,good| +ʲ N vegetable|߲,new| +ʵ N food|ʳƷ,new|,#bird| +ʹ N fruit|ˮ,new| +ʺ ADJ aValue|ֵ,color|ɫ,red| +ʻ N FlowerGrass| +ʻ ADJ aValue|ֵ,newness|¾,new|,desired| +ʻ N artifact|˹,commercial|,#fruit|ˮ,#vegetable|߲,new|,generic|ͳ +ʻ N food|ʳƷ,commercial|,generic|ͳ +ʻ N medicine|ҩ,commercial|,generic|ͳ +ʼ ADJ aValue|ֵ,frequency|Ƶ,rarely|ż + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,taste|ζ,good|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,hardness|Ӳ,tender|,desired| +ơ N drinks|Ʒ,$addict|Ⱥ +Ϊ֪ ADJ aValue|ֵ,reputation|,Notwellknown| +Ѫ N part|,%AnimalHuman|,liquid|Һ + ADJ aValue|ֵ,color|ɫ,colored| +޶Ŀ ADJ aValue|ֵ,color|ɫ,colored| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,size|ߴ,small|С +˷ N human|,#occupation|ְλ,#ship| +ë N part|,%AnimalHuman|,hair|ë + ADJ aValue|ֵ,quality|,refined|,desired| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ά N material| +ά N material| +άѧ ADJ aValue|ֵ,attachment|,knowledge|֪ʶ +ά N chemical|ѧ +ά״ ADJ aValue|ֵ,form|״ +ϸ ADJ aValue|ֵ,fineness|ϸ,fine| +С ADJ aValue|ֵ,fineness|ϸ,fine| + ADJ aValue|ֵ,taste|ζ,salty| + N character|,surname|,human|,ProperName|ר +̲ N vegetable|߲,salty| +ˮ N liquid|Һ,salty| +ζ N attribute|,taste|ζ,salty|,&inanimate| + N attribute|,taste|ζ,salty|,&inanimate| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired|,able| +Ͳ N human|,desired|,able| +ʹ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ʹ N human|,desired|,glorious| +ͻ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,ability|,able|,desired| +ĸ N human|,desired| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + N human|,desired| + V HoldInMouth| + V cherish|Ļ +ν V connect| + V HoldInMouth| +ԩ V unsatisfied| + N part|,%ship|,edge| +ϴ N part|,%ship|,eye| + N tool|þ,#aircraft|,nerve| + N tool|þ,#ship|,nerve| + ADJ aValue|ֵ,circumstances|,idle|,desired| + N time|ʱ,idle| +г V talk|̸ +е V roam| +е V walk| +й N time|ʱ,idle| +й V roam| +й V walk| +л V talk|̸ +о V reside|ס +оӼ V reside|ס +п ADJ aValue|ֵ,circumstances|,idle|,desired| +п N time|ʱ,idle| + V talk|̸ +Ǯ N fund|ʽ + N emotion|,#WhileAway| + N emotion|,#WhileAway| + N human|,*RelateNot|޹ + N human|,idle| +ɢ ADJ aValue|ֵ,circumstances|,idle|,desired| + N fact|,#RelateNot|޹ + ADJ aValue|ֵ,circumstances|,idle|,desired| +̸ V talk|̸ +Ͼ N time|ʱ,idle| + N emotion|,#WhileAway| +Ա N human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ + V abandon| + N part|,%AnimalHuman|,liquid|Һ +Ƥ V shameless|û +ˮ N part|,%AnimalHuman|,liquid|Һ + N image|ͼ + N part|,%MusicTool| + N part|,%implement| + N part|,%weapon| + N MusicTool| + N MusicTool| + V disgust| + N emotion|,blame|Թ + N experience|,doubt| + N thought|ͷ,undesired|ݬ +Ӷ V disgust| +ӷ N human|,$doubt|,#crime| + V disgust| +϶ N emotion|,blame|Թ +϶ N thought|ͷ,undesired|ݬ + N experience|,doubt| +ɷ N human|,$doubt|,#crime| +ɷ N human|,$doubt|,#crime| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V display|չʾ +԰ V ShowOff|ҫ +Դ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ե V become|Ϊ +Զ׼ ADJ aValue|ֵ,content|,opened| +Ժ ADJ aValue|ֵ,reputation|,glorious|,desired| +Լ ADJ aValue|ֵ,content|,opened| +¶ V appear| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,behavior|ֹ,opened|,desired| +Ȼ ADV aValue|ֵ,content|,opened| +ʾ V display|չʾ +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +ʾ N tool|þ,*display|չʾ,#image|ͼ,#sound| +΢ N tool|þ,*look|,#enlarge| + V appear| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| + N part|,%tool|þ,*display|չʾ,#image|ͼ,#sound| +Ч V produce|,PatientProduct=effect|Ч +Ч N result|,opened| + V exposure|¶ + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,opened| +Ҫ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ N human|,importance| +Ӱ V produce|,#TakePicture| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,possibility|,almost| + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + N place|ط,important| +հ N place|ط,important| +ն ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ն ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +շ N part|,%land|½,head|ͷ,dangerous|Σ +չ N place|ط,dangerous|Σ,undesired|ݬ +վ N attribute|,circumstances|,threatening| +վ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N attribute|,circumstances|,threatening|,&entity|ʵ +ʤ V win|ʤ +̲ N waters|ˮ,linear| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Щ ADJ aValue|ֵ,possibility|,almost| +Ҫ ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ +թ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,scene|,threatening|,undesired|ݬ + N phenomena|,unfortunate|,dangerous|Σ,undesired|ݬ + ADV aValue|ֵ,time|ʱ,immediate| + ADJ aValue|ֵ,time|ʱ,now| + V appear| + N money| +ֳ N place|ط,#fact| +ֳ N place|ط,#fact|,#police| +ֳ V investigate|,purpose=disseminate| +ֳɷ V investigate|,purpose=disseminate| +ֳ N fact|,discuss| +ֳ N fact|,discuss| +ֳ N money| +ֳ ADJ aValue|ֵ,source|Դ,original|ԭ +ֳ V exposure|¶ +ִ ADJ aValue|ֵ,property|,exist|,now| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ ADJ aValue|ֵ,time|ʱ,now| +ִ N time|ʱ,now| +ִ V ize|̬,PatientAttribute=modern| +ִ ADJ aValue|ֵ,newness|¾,new|,desired| +ִ N community|,literature|,entertainment| +ִ N human|,new| +ִʷ N fact|,#time|ʱ,now| +ִ N fact|,recreation|,entertainment|,now| +ִϷ N shows| +ֻ N artifact|˹,commercial|,generic|ͳ +ֽ N money| +ֽ N aValue|ֵ,time|ʱ,now| +ֿ N money| + N attribute|,age|,&animate| +Ǯ N money| + V undertake| +˵ V teach| +ʱ N aValue|ֵ,time|ʱ,now| +ʵ ADJ aValue|ֵ,content|,substantial|ʵ +ʵ N attribute|,environment|,&event|¼ +ʵ N human| + V suffer|,content=disgraced| + N time|ʱ,now| + ADV aValue|ֵ,time|ʱ,now| + N phenomena| + V exposure|¶ + ADJ aValue|ֵ,effect|Ч,superior|,now| + ADJ aValue|ֵ,property|,do|,#crime|,now| +з ADJ human|,crime|,now| + V suffer|,content=disgraced| + ADV {tense|ʱ̬,past|} + N affairs|,engage|,military| +۾ N human|,#occupation|ְλ,military| + ADJ aValue|ֵ,time|ʱ,now| + N time|ʱ,now| +״ N attribute|,circumstances|,&entity|ʵ + V donate| + V show| + V submit| +ױ V submit|,possession=precious| +ױ V teach|,content=thinking|˼,precious| +ײ V teach|,content=thinking|˼ +׳ V perform| +״ N text|,*congratulate|ף +׸ V submit| +׻ V GiveAsGift|,possession=FlowerGrass| +׼ V show|,content=ability| +׼ V teach|,content=thinking|˼ + V GiveAsGift|,possession=artifact|˹ + V please|ȡ + V GiveAsGift|,possession=mark|־ + V die| + V engage| + N human|,*engage| +Ѫ V donate|,possession=liquid|Һ,medical|ҽ +Ѫ N human|,*submit| + V perform| + V please|ȡ + N place|ط +س N human|,#occupation|ְλ,official| +س N place|ط +ظ N institution|,*manage|,#place|ط +ؼ N attribute|,rank|ȼ,politics| + N human|,#occupation|ְλ,official| +ί N institution|,politics|,(China|й) + N institution|,*manage|,#place|ط +־ N publications|鿯 + N part|,%AnimalHuman|,nerve| +ٰ N disease| + N disease| + N part|,%AnimalHuman|,nerve| +״ ADJ aValue|ֵ,form|״ + N material|,?food|ʳƷ +ڱ N food|ʳƷ +ڶ N material|,?food|ʳƷ +ڶ N food|ʳƷ + V admire|Ľ +Ľ V admire|Ľ + N law|ɷ +ܱ N army| +ܱ N human|,military| +ܱ N army| +ܷ N law|ɷ + N law|ɷ + N system|ƶ,politics| + V damage| + V sink|³ + V suffer|,content=occupy|ռ,military| +ݺ V damage| +ݽ V sink|³ +ݽ V situated| +ݿ N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + V sink|³ + V suffer|,content=occupy|ռ,military| + V cherish|Ļ + V sink|³ + V situated| +뽩 V situated|,location=circumstances|,hardship| + V situated| + V suffer|,content=detain|ס,#police| + V situated| + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N attribute|,boundary|,&entity|ʵ + V delimit| +޶ V delimit| +޶ N attribute|,boundary|,&entity|ʵ +޶ N attribute|,boundary|,#quantity|,&event|¼ +޼ N attribute|,price|۸,$delimit|,&artifact|˹,commercial| +޼ V delimit|,patient=price|۸,commercial| + V delimit|,patient=quantity| + V order| + N attribute|,boundary|,#time|ʱ,&event|¼ + N delimit|,patient=time|ʱ +λ N fact|,delimit| + V undergo|,content=delimit| +ֹ V delimit| + V delimit| + ADJ aValue|ֵ,property|,delimit| + N facilities|ʩ,route|· + N location|λ + N mark|־,linear| + N part|,%phenomena| + N regulation|,politics| + N shape|,linear| + N tool|þ,linear|,*fasten|˩ +߲ N material|,metal|,linear| +߳ N bacteria|΢ +ߴ N material|,?clothing| +߶ N part|,image|ͼ +߹ N tool|þ,*measure| +· N facilities|ʩ,linear|,#electricity| +· N facilities|ʩ,route|· + N material|,?clothing| +Ȧ N part|,implement|,#electricity| + N human|,*help|,#police|,crime| + N part|,%phenomena| +̺ N tool|þ,*cover|ڸ + N shape|,linear| +ͷ N part|,%tool|þ,tail|β + N tool|þ,$burn| + ADJ aValue|ֵ,form|״,linear| +ζ N AnimalHuman|,generic|ͳ + ADJ aValue|ֵ,performance| + N tool|þ,*fasten|˩ +װ ADJ aValue|ֵ,property|,$fasten|˩ +װ ADJ publications|鿯 +״ ADJ aValue|ֵ,form|״,linear| + N character|,surname|,human|,ProperName|ר + V estimate|,means=look| + V help| + V look| + ADV {EachOther|໥} +మ V love|,manner=EachOther|໥ +ల ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + V help| + V compare|Ƚ +ȹϵ V comparison|ȹϵ +֮ ADV comparison|ȹϵ + N account|,#TakePicture| + V differ|ͬ + V fit|ʺ + V BeOpposite| +ദ V associate| +ഫ V PassOn| +ഫ V disseminate| +൱ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +൱ ADV aValue|ֵ,degree|̶,ish| +൱ V equal| +൱Ҫ ADJ aValue|ֵ,importance|,important| + V fit|ʺ,manner=EachOther|໥ + ADJ aValue|ֵ,similarity|ͬ,alike| + V equal| + V equal| + V FitNot| + N knowledge|֪ʶ +෴ ADJ aValue|ֵ,contrariness|,negative| +෴ ADV aValue|ֵ,contrariness|,negative| + V BeSimilar| + V meet| + V fit|ʺ + V fit|ʺ +ศ V fit|ʺ,manner=EachOther|໥ +ศ V fit|ʺ,manner=EachOther|໥ + V relate|й + V from| + ADJ aValue|ֵ,property|,relate|й + V relate|й + ADJ aValue|ֵ,relatedness|,intimate|,desired| + V associate| + N human|,female|Ů,*love|,*mating|,undesired|ݬ + N human|,friend| +໥ ADV {EachOther|໥} +໥ V depend| + V meet| + N tool|þ,*record|¼,*TakePicture| + ADJ aValue|ֵ,sequence| + V from| +ཻ V BeAcross|ཻ +ཻ V associate| + V connect| + V BeSimilar| + ADJ aValue|ֵ,distance|,near| + V from| + V BeNear| + V love|,EachOther|໥ + V BeNear| +ò N attribute|,appearance|,skin|Ƥ,AnimalHuman| + V fit|ʺ +Ƭ N image|ͼ,$TakePicture| + V look| +Ȱ V persuade|Ȱ˵ + V discuss| + N shows| +ʶ V associate| +˼ V ThinkOf|˼ +˼ N part|,%tree|,#love|,embryo| +˼ N part|,%tree|,embryo| +˼ N tree| + V BeSimilar| + ADJ aValue|ֵ,similarity|ͬ,alike| +֮ N attribute|,similarity|ͬ,alike|,&entity|ʵ +Ტ V MakeEqual|ʹ +ͨ V communicate| +ͬ ADJ aValue|ֵ,similarity|ͬ,alike| +Ͷ V fit|ʺ + V BeSimilar| + ADJ aValue|ֵ,direction| + V facing| + V believe| +μ V inferior| +֮ V comparison|ȹϵ +سϰ V become|Ϊ,isa=habit|ϰ + V depend| +Ϊ V depend| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧ ADJ aValue|ֵ,property|,fit|ʺ +ӳ V ServeAsFoil| +ӳȤ V ServeAsFoil| + V associate| + V meet| +Լ V MakeAppointment|Լ +֪ N human|,friend| +ֽ N paper|ֽ,#TakePicture| + V love| +ײ V bump|ײ + V FitNot| + N location|λ + N room| + N room|,%InstitutePlace|,@recreation|,#shows| + N room|,%LandVehicle| +᷿ N room| + V inlay|Ƕ +ⱦʯ ADJ aValue|ֵ,appearance| +Ƕ V inlay|Ƕ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| + N attribute|,odor|ζ,&physical|,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| +㰸 N furniture|Ҿ,*salute|¾,#humanized| +㲨 N tool|þ,*wash|ϴ,#hair|ë + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +㳦 N food|ʳƷ + N attribute|,GoodBad|û,&thing| +㴻 N part|,%vegetable|߲,embryo|,$eat| +㴻 N vegetable|߲ + N tool|þ,*MakeUp|ױ,fragrant| + N food|ʳƷ + N place|ط,city|,ProperName|ר,(China|й) +ۻع V include|,patient=place|ط +ر N place|ط,city|,ProperName|ר,(China|й) + N place|ط,happy|,#lucky| +㹽 N part|,%vegetable|߲,embryo|,$eat| +㹽 N vegetable|߲ + N fruit|ˮ + N tool|þ,$burn|,*salute|¾,#humanized| +㽶 N fruit|ˮ +㾫 N material|,?edible|ʳ,?tool|þ,fragrant| + N human|,religion|ڽ,*salute|¾ + N material|,?edible|ʳ,fragrant| + N material|,?tool|þ,fragrant| +ϳ N InstitutePlace|,*produce|,#material|,fragrant| + N human|,commercial| +¯ N tool|þ,@burn|,*salute|¾,#humanized| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +Ƭ N material|,?drinks|Ʒ + N FlowerGrass|,?material| + N attribute|,odor|ζ,&physical|,fragrant| +ˮ N tool|þ,*MakeUp|ױ,fragrant| + ADJ aValue|ֵ,degree|̶,very|,desired| + ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ N attribute|,odor|ζ,&physical|,fragrant| + N CloudMist| + N addictive|Ⱥ + N material|,?food|ʳƷ,liquid|Һ +ɴ N material|,?clothing| + N tool|þ,*wash|ϴ,fragrant| + N tool|þ,$burn|,*salute|¾,#humanized| + N fruit|ˮ + N drinks|Ʒ,$addict|Ⱥ +ľ N drinks|Ʒ,$addict|Ⱥ + N tree| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N shape|,cubic| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + V help| + N human|,#occupation|ְλ,official| + V help| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N tool|þ,*decorate|װ + N tree| + N tree| + N institution|,#place|ط,politics| + N place|ط,#agricultural|ũ,village| + N place|ط,@ComeToWorld| + N human|,vulgar|,village|,undesired|ݬ +糤 N human|,#occupation|ְλ,official|,village| + N place|ط,#agricultural|ũ,village| + N place|ط,#agricultural|ũ,village| + N human|,#reside|ס,village| + N place|ط,@ComeToWorld| + N place|ط,@ComeToWorld|,village| + N human|,#reside|ס,village| + N human|,village| +Ƨ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N human|,#place|ط + N human|,#place|ط,village| + N human|,#reside|ס,village| + N human|,village| + N human|,#village| + ADJ aValue|ֵ,source|Դ,original|ԭ + N place|ط,@ComeToWorld| + N place|ط,village| + N human| + N sound|,#language|,original|ԭ +Ը N human|,fake|α,undesired|ݬ + N place|ط,village|,city| + N place|ط,@ComeToWorld| + V fly| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + N CloudMist|,desired| + N mark|־,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + V check| + V read| + N text|,detailed| +꾡 ADJ aValue|ֵ,content|,detailed|,desired| + N attribute|,content|,&information|Ϣ + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + ADJ aValue|ֵ,content|,detailed|,desired| + N information|Ϣ,detailed| +ʵ ADJ aValue|ֵ,content|,accurate|׼,desired| + V express|ʾ +̸ V express|ʾ +ϸ ADJ aValue|ֵ,content|,detailed|,desired| +ע V explain|˵,manner=detailed| +ע N part|,%text|,$explain|˵,detailed| + V ThinkOf|˼ + V regard|Ϊ + V think|˼ + V willing|Ը + ADV {comment|} +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +벻 V upset| +벻 V BeUnable|,content=remember|ǵ +뵱Ȼ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ÿ V AtEase| +뷨 N thought|ͷ +뷨 V try| +뷽跨 V try| + V ThinkOf|˼,content=family| + V deduce| + ADV {comment|} + V ThinkOf|˼ + V remember|ǵ + V remember|ǵ,Vachieve| +Ƿ V guess|² +ͷ N aspiration|Ը,expect| + V expect| + V think|˼ + ADJ aValue|ֵ,ability|,able|,guess|² + V guess|² + N attribute|,ability|,#guess|²,&human| + V MakeSound| + ADJ aValue|ֵ,SoundVolume|,loud| + N sound| +쳹 V MakeSound| +쳹 V MakeSound|,LocationFin=sky| +쵱 ADJ aValue|ֵ,trueness|α,true|,desired| +춯 N sound| + N attribute|,SoundVolume|,&MakeSound|,&physical| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundVolume|,loud| + V MakeSound| + N MusicTool| + N sound| +β N beast| + ADJ aValue|ֵ,SoundVolume|,loud| +Ӧ V respond|Ӧ + V enjoy| + V enjoy|,content=happy| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V enjoy|,content=joyful|ϲ + ADJ thinking|˼,#expect|,#enjoy| + V pass|ȹ + V enjoy| + V enjoy| + V own| +ʢ V own|,possession=glorious| + V own|,possession=glorious| + V own|,possession=glorious|,location=place|ط + CLAS NounUnit|,&event|¼ + N character|,surname|,human|,ProperName|ר + N fund|ʽ + N part|,%AnimalHuman|,head|ͷ + N symbol| + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ,$PutOn| +Ŀ N affairs| +Ȧ N tool|þ,*decorate|װ,$PutOn| + N facilities|ʩ,route|· + N facilities|ʩ,mine| + N part|,%facilities|ʩ,route|·,mouth| +β N part|,%facilities|ʩ,route|·,tail|β + N expression| +ս N fact|,fight|,#route|· + N facilities|ʩ,route|· + N tree| + N material|,?tool|þ +Ƥ N material|,?tool|þ +Ƥ N stationery|ľ,*wipe| +ʵ N part|,%tree|,embryo| + N tree| + V BeSimilar| + N attribute|,similarity|ͬ,&entity|ʵ + N image|ͼ + N image|ͼ,#human| + ADJ {comment|} + ADV {comment|} + PREP {contrast} + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ƭ N image|ͼ,$TakePicture| + ADJ aValue|ֵ,standard|׼,average| + N tool|þ,*PutOn| + N character|,surname|,human|,ProperName|ר + N direction| + V endorse|ӵ + V facing| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + PREP {beneficiary} + PREP {direction} + PREP {source} + PREP {target} + ... V ExpressAgainst|Ǵ + ... V call|ٻ + N human|,*guide| +Ϸ ADJ aValue|ֵ,direction|,east|,south| + ADJ aValue|ֵ,direction|,east| + N attribute|,performance|,&inanimate| + ADV aValue|ֵ,direction|,hind| + ADV aValue|ֵ,frequency|Ƶ,often| + N symbol|,#quantity| + ADV aValue|ֵ,direction|,external| + ADV aValue|ֵ,direction|,internal| +ǰ ADJ aValue|ֵ,direction|,InFront|ǰ +ǰ V look|,direction=future| +տ N crop|ׯ + ADV aValue|ֵ,direction|,upper| +б ADJ aValue|ֵ,form|״,slanted| + V expect| + ADJ aValue|ֵ,direction|,west|,south| + ADV aValue|ֵ,direction|,beneath| +б ADJ aValue|ֵ,form|״,slanted| + N attribute|,strength|,&physical| + V facing|,direction=(sun|̫) + N FlowerGrass| + ADV aValue|ֵ,direction| +ҿ N expression|,*order| + V melancholy| + V melancholy| + V endorse|ӵ + V facing| + ADV aValue|ֵ,direction| + N expression|,*order| + N attribute|,form|״,&physical| + N beast| + N part|,%tool|þ,#recreation| + ADJ aValue|ֵ,correctness|,correct|ȷ + N tool|þ,*recreation| + N part|,%space|ռ + N character| + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,ProperName|ר + N facilities|ʩ,HighRank|ߵ + ADJ aValue|ֵ,standard|׼,average| + V mean|ָ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V obey|ѭ,content=regulation| +ǽ N part|,%building|,skin|Ƥ +ɪ V MakeSound| +ɪ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +ɭ ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,density|ܶ,sparse| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + V decline|˥,commercial| + N sound| + N chemical|ѧ + V produce| + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N chemical|ѧ + N CloudMist|,#weapon|,#fight| + N CloudMist| + N sky| + N sky| + V cut| + V cut|,sport| + V subtract| + N part|,%land|½,skin|Ƥ + V subtract|,scope=price|۸,commercial| + V subtract| + V subtract|,commercial| + V beat|,patient=SportTool|˶ + V weaken| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V cry| + N disease| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V StateChange|̬,StateFin=liquid|Һ,industrial| + V remove| + V sell|,commercial| + V spend|,commercial| + V destroy| + V joyful|ϲ + V tell|,content=due| + N attribute|,price|۸,#sell|,&artifact|˹,commercial| + N quantity|,amount|,$sell|,physical|,commercial| +· N attribute|,circumstances|,&sell| +伣 V disappear|ʧ + V sell|,commercial| +۶ N quantity|,amount|,#sell|,&money| + N quantity|,amount|,$sell|,physical|,commercial| +һ V disappear|ʧ,#sell|,commercial| + V handle|,crime| + V remove|,LocationIni=account|,commercial| + N tool|þ,*fix|ס + V WhileAway| + V disappear|ʧ + V pass|ȹ + V remove| + V change| + V disheartened| + V remove| + V AlterProperty|,PatientAttribute=property| + V AlterProperty|,PatientAttribute=spotless|,medical|ҽ + N medicine|ҩ,*AlterProperty|,#spotless| + N affairs|,obstruct|ֹ,#fire| + N fact|,remove|,#fire| + N LandVehicle|,*remove|,#fire| + N institution|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +ͧ N ship|,*remove|,#fire| +Ա N human|,#occupation|ְλ,*remove|,#fire| +վ N institution|,*remove|,#fire| + V exhaust| + V spend|,commercial| +Ʒ N artifact|˹,generic|ͳ + N human|,*spend|,*buy|,commercial| + V exhaust| + V exhaust|,commercial| + V spend|,commercial| + V consume|ȡ + N disease| +֢ N disease| +ϵͳ N part|,%AnimalHuman|,viscera|,*consume|ȡ +˨ N facilities|ʩ,*remove|,#fire| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ + V remove| + V destroy| + V disappear|ʧ +ĥ V exhaust| +ĥ V pass|ȹ + V calm| +Dz V WhileAway| +Dz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V StateChange|̬,StateFin=liquid|Һ,industrial| +ɢ V disappear|ʧ + V remove|,ResultEvent=sound| +ʧ V disappear|ʧ +ʳ V consume|ȡ + V disappear|ʧ + V remove| + V endure| + V enjoy| + ADJ aValue|ֵ,fatness|,bony| + V pass|ȹ + V restrain|ֹ,ResultEvent=hot| + V exhaust| + N disappear|ʧ + V perish| +Ϣ N information|Ϣ +Ϣͨ V know|֪,#information|Ϣ,manner=fast| + V pass|ȹ,patient=summer| + V WhileAway| + V cure|ҽ +ҹ N food|ʳƷ,generic|ͳ + V cure|ҽ + V remove|,patient=swollen| + V restrain|ֹ + N time|ʱ,day|,night| + N fact|,restrain|ֹ,night|,police| + V MakeMisunderstand|ʹ֪ + V know|֪ + N time|ʱ,day|,early| + V know|֪ +ʾ V tell| +Դ V tell|,content=correct|ȷ + V tell|,content=ProsCons| + V tell| +С ADJ aValue|ֵ,age|,young| +С ADV aValue|ֵ,duration|,TimeShort| +С ADJ aValue|ֵ,importance|,secondary| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +Сײ N part|,%vegetable|߲,embryo|,$eat| +Сײ N vegetable|߲ +Сٻ N artifact|˹,commercial|,generic|ͳ +С N part|,%InstitutePlace|,education| +С N publications|鿯,#news| +С ADJ aValue|ֵ,clan| +С N human|,clan|,young| +С V excrete|й,patient=liquid|Һ +С N liquid|Һ,#AnimalHuman|,waste|,$excrete|й +С N part|,%AnimalHuman|,male|,*excrete|й,#liquid|Һ +С N part|,%AnimalHuman|,hair|ë +С N part|,%human|,hair|ë +С N result|,wrong|,undesired|ݬ +С N part|,%text|,name| +С ADJ aValue|ֵ,size|ߴ,small|С +С N human|,young| +С V walk|,military| +С V music| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +С V labour|ٲ +С N part|,%AnimalHuman|,viscera| +С N LandVehicle| +С N food|ʳƷ +С N food|ʳƷ,generic|ͳ +СԲ N InstitutePlace|,@eat|,commercial| +СԵ N InstitutePlace|,@eat|,commercial| +С N human|,*perform|,entertainment| +С V IllBehave| +С N ship| +С N time|ʱ,month| +С N time|ʱ,season| +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N facilities|ʩ,route|· +СϢ N information|Ϣ,$disseminate|,hidden| +С N human|,family|,male| +С PRON {firstPerson|} +С N attribute|,SoundQuality|,&music| +С N music| +С N method|,sly|,undesired|ݬ +С N part|,%vegetable|߲,embryo|,$eat| +С N vegetable|߲ +С N part|,%AnimalHuman|,body| +С N community| +С N quantity|,amount|,few|,&physical| +СС N phenomena|,desired| +С N human|,intimate|,male|,young| +С N human|,young| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N part|,%InstitutePlace|,*cure|ҽ,#young| +С֢ N disease| +С N human|,#occupation|ְλ,commercial| +С N payment|,#commercial| +Сֶ N part|,%army|,military| +С N part|,%AnimalHuman|,body| +С N shows| +С N human|,#occupation|ְλ,employee|Ա +С N human|,intimate|,female|Ů +С N MusicTool| +С N clothing|,#body| +С N humanized|,young| +С N human|,young| +С N human|,royal|,young| +С N human|,young| +С N time|ʱ,day|,cold| +С N MusicTool| +С N human|,religion|ڽ,male|,young| +С N human|,young|,male| +С N community|,undesired|ݬ +С N FlowerGrass|,?medicine|ҩ +Сұ N human|,female|Ů,beautiful| +С ADJ aValue|ֵ,size|ߴ,small|С +С N time|ʱ,month| +С N human|,brave| +С N part|,%human|,female|Ů,past|,foot| +Сγ N LandVehicle| +С N fact|,secondary| +С N part|,%music| +С V explain|˵ +С N text|,#readings| +С V excrete|й,patient=liquid|Һ +С N human|,female|Ů +С N part|,%clothing|,body| +С N time|ʱ,month| +С N facilities|ʩ,route|· +С N human|,intimate|,male| +С N human|,young|,rich| +С V despise| +С ADJ aValue|ֵ,richness|ƶ,rich|,desired| +С N human|,intimate|,female|Ů +С N human|,intimate|,mass|,family| +С N quantity|,amount|,few|,&physical| +С· N facilities|ʩ,route|· +С N crop|ׯ +С N InstitutePlace|,*sell|,@buy|,commercial| +С N time|ʱ,day| +Сè N beast| +С N human|,family|,female|Ů +С N material|,?food|ʳƷ,#crop|ׯ +СĴָ N part|,%AnimalHuman|,hand| +С N part|,%AnimalHuman|,head|ͷ +С N human|,young| +Сũ N human|,#occupation|ְλ,agricultural|ũ +Сũ N affairs|,produce|,nonextensive| +СŮ N human|,family|,female|Ů +С V run| +С N human|,young| +СƷ N shows| +Сҵ N human|,#occupation|ְλ,commercial| +С ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N human|,miser|,undesired|ݬ +С N LandVehicle| +СǮ N money| +СǮ N payment|,#commercial| +С ADJ aValue|ֵ,quality|,refined|,desired| +С N human|,young| +С N place|ط,@reside|ס,#house| +СȦ N community| +С N human|,secondary| +С N human|,undesired|ݬ,evil| +С N publications|鿯 +С N human|,secondary| +С N phenomena|,family| +С N part|,%AnimalHuman|,mouth| +Сʱ N time|ʱ,hour|ʱ +Сʱ ADJ aValue|ֵ,time|ʱ,#young| +С N fact|,secondary| +С N human| +С V despise| +С N fact|,cure|ҽ +СС ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +СС ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С N time|ʱ,day| +С N symbol|,#quantity|,#DoSum| +С N symbol|,#quantity| +С˯ V sleep|˯ +С˵ N publications|鿯 +С˵ N human|,*compile|༭,#readings|,literature| +Сմ N material| +С N MusicTool| +С N human|,*perform|,entertainment| +С N space|ռ,private|˽ +Сͧ N ship| +С͵ N human|,*steal|͵,crime|,undesired|ݬ +С N part|,%AnimalHuman|,leg| +СԳ N LandVehicle| +С׼ V inferior| +С N house| +С N fittings| +СϪ N waters|ˮ +Сд ADJ aValue|ֵ,pattern|ʽ,&character| +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +СĽ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +С۶ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ +С ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +С ADJ aValue|ֵ,size|ߴ,small|С +С N weapon|,ship|,military| +Сè N beast| +Сѧ N InstitutePlace|,@teach|,@study|ѧ,elementary|,education| +Сѧ N human|,*study|ѧ,education| +СѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +Сѩ N time|ʱ,day| +Сѭ N phenomena| +С N time|ʱ,month| +С N artifact|˹,generic|ͳ,#example|ʵ +С N clothing|,#leg| +С˼ N fact|,secondary| +С˼ N tool|þ,generic|ͳ,$GiveAsGift| +С ADJ aValue|ֵ,size|ߴ,small|С,more| +С ADJ qValue|ֵ,amount|,few|,more| +С N RainSnow|ѩ +С N disease|,#GiveBirth| +С N time|ʱ,month| +С N edible|ʳ,generic|ͳ +Сվ N facilities|ʩ,space|ռ,#LandVehicle|,@stay|ͣ,@TakeVehicle| +С N place|ط,city| +Сָ N part|,%AnimalHuman|,hand| +С N human|,young| +С N attribute|,name|,&entity|ʵ +С N character|,small|С +Сֱ ADJ aValue|ֵ,clan| +С N part|,%organization|֯ +С N human|,young| +С N human|,young| +С N human|,young|,female|Ů +С V rest|Ϣ +Т ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N emotion|,condole|° +Т N emotion|,loyal|Т +Т N clothing|,*condole|° +Т V GiveAsGift| +Т V loyal|Т +Т˳ N emotion|,loyal|Т +Т˳ V loyal|Т +Т N emotion|,loyal|Т +Т N human|,*loyal|Т,family|,desired| +Т N human|,desired|,family|,*condole|° +Т N human|,*loyal|Т,family|,desired| +У N InstitutePlace|,@teach|,@study|ѧ,education| +У V check| +У N human|,#occupation|ְλ,official|,education| +У N human|,official|,education| +У V check| +У V check| +УԱ N human|,#occupation|ְλ,*check| +У N institution|,education| +У N attribute|,behavior|ֹ,&InstitutePlace|,education| +У N clothing|,education| +У V amend| +У N human|,#occupation|ְλ,official|,military| +У V check| +У N human|,female|Ů,education| +У N tool|þ,$PutOn|,mark|־,education| +У ADJ aValue|ֵ,attachment| +У V check| +У N part|,%InstitutePlace|,mouth| +У N fact|,congratulate|ף,education| +У N house|,education| +У ADJ aValue|ֵ,attachment|,education| +У N affairs|,education| +У V check| +Уҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,education| +У N human|,friend|,education| +Уѻ N community|,friend|,education| +У԰ N part|,%InstitutePlace|,education| +У V check| +У V amend| +Уַ N location|λ,%InstitutePlace|,education| +У׼ N fact|,check| +Ф V BeSimilar| +Ф N image|ͼ +Ф N image|ͼ +Ф񻭼 N human|,*draw|,literature| +Х V MakeSound| +Х V cry| +Х V MakeSound|,manner=free| +Х V collude| +Х V MakeSound| +Ц V LaughAt|Ц +Ц V laugh|Ц +Ц N information|Ϣ,*LaughAt|Ц +Ц V laugh|Ц +Ц V LaughAt|Ц +Ц N information|Ϣ,*LaughAt|Ц +Цٳ V err| +Цڳ V laugh|Ц,frequency=often| +Цص ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ц N attribute|,countenance|,laugh|Ц,&human| +Ц N information|Ϣ,*LaughAt|Ц +Ц V ExpressAgainst|Ǵ +Ц V laugh|Ц +Ц滢 N human|,fake|α,sly|,undesired|ݬ +Ц V receive| +Ц N gas| +Ц N attribute|,countenance|,laugh|Ц,&human| +Цݿ V laugh|Ц +Ц V laugh|Ц +Ц̸ N information|Ϣ,*LaughAt|Ц +Ц N part|,%AnimalHuman|,skin|Ƥ +Ц V laugh|Ц +ЦЦ V laugh|Ц +Цտ V laugh|Ц +Ц N part|,%human|,skin|Ƥ +Ц N part|,%human|,skin|Ƥ,#laugh|Ц +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V imitate|ģ +Ч V imitate|ģ +Ч N attribute|,effect|Ч,&act|ж +Ч V engage| +Ч V engage| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Чʺܲ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ч V engage|,manner=endeavour| +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +ЧӦ N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч N attribute|,effect|Ч,&entity|ʵ,&act|ж +Ч V imitate|ģ +Ч V endeavour|,manner=faithful| +Ш V beat| +Ш N part|,%artifact|˹,*fix|ס +Ш N tool|þ,*fix|ס +Щ ADV aValue|ֵ,degree|̶,ish| +Щ΢ ADV aValue|ֵ,degree|̶,ish| +Щ ADJ qValue|ֵ,amount|,some|Щ +Ъ V cease|ͣ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V sleep|˯ +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V cease|ͣ,content=affairs|,#duty| +Ъ V rest|Ϣ +Ъ V rest|Ϣ,#SelfMove| +Ъ V enjoy|,content=chilly| +Ъ V sleep|˯,time=afternoon| +Ъ V cease|ͣ +Ъ V reside|ס,time=night| +ЪϢ V rest|Ϣ +ЪϢ V sleep|˯ +ЪЪ V rest|Ϣ +Ъҵ V cease|ͣ,content=affairs|,commercial| +Ы N InsectWorm| +Ы N InsectWorm| +Ы N InsectWorm| +Ь N clothing|,#foot| +Ь N tool|þ,#clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N part|,clothing|,#foot| +Ь N part|,%clothing|,#foot| +Ь N fittings|,%clothing|,#foot| +Ь N human|,#occupation|ְλ,#clothing|,#foot|,industrial| +Ьñ N clothing|,#head|ͷ,#foot| +Ьˢ N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Ь N tool|þ,*wipe|,#clothing|,#foot| +Ь N clothing|,#foot| +Э V help| +Э V coordinate|Э +Э N human|,*coordinate|Э,military| +Эһ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э V fit|ʺ +Э N community| +Э V help|,scope=manage| +Э V cooperate| +Э V discuss| +Э N human|,*discuss| +Эͬ V cooperate| +Э V MakeAppointment|Լ +Э N agreement|Լ +Э N agreement|Լ +Э V help| +Э N music| +Э V cooperate| +Э N human|,*cooperate| +Ю V hold| +Ю V control|,means=fierce| +Ю V control|,means=fierce| +Я V bring|Я +Я V guide| +Я V bring|Я +Я N human|,*bring|Я +Я ADV aValue|ֵ,behavior|ֹ,together|ͬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +а ADJ aValue|ֵ,strength|,strong|ǿ,undesired|ݬ +а· N facilities|ʩ,route|·,wrong| +аŶ ADJ aValue|ֵ,kind|,queer| +а N attribute|,SocialMode|,evil|,&entity|ʵ +б ADJ aValue|ֵ,form|״,slanted| +б N attribute|,slope|¶,&inanimate| +б N facilities|ʩ,mine| +б N attribute|,slope|¶,&inanimate| +б N part|,%physical|,surfacial|,slanted| +б N part|,%land|½,skin|Ƥ +б V firing|,manner=slanted|,military| +б V illuminate|,manner=slanted| +б V disease|,#eye| +б V look|,manner=slanted| +б ADJ aValue|ֵ,form|״,slanted| +б ADJ aValue|ֵ,form|״,slanted| +б N shape|,#clothing| +б N image|ͼ,linear| +б N disease|,#eye| +б N human|,*disable|м,#eye| +б N celestial| +в V force|ǿ +в V force|ǿ +в V hold| +вЦ V please|ȡ +в V force|ǿ +г ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +г N shape| +г ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +г N attribute|,similarity|ͬ,alike|,&sound| +г N phenomena|,#sound| +г V LaughAt|Ц +д V compile|༭ +д V describe|д +д V write|д +д N attribute|,style|,&text| +д N method|,*write|д +д V draw|,literature| +дʵ V describe|д +д V write|д,ContentProduct=letter|ż +д ADJ aValue|ֵ,circumstances|,peaceful|,desired| +д V satisfied| +д V describe|д +д N text|,*describe|д +д V describe|д +д V draw| +д V write|д +дּ N room|,#employee|Ա,@engage| +д̨ N furniture|Ҿ,@put| +д V compile|༭ +е N implement|,generic|ͳ +е N tool|þ,police|,*punish|,#crime| +е V fight| +ж V TakeAway|ᶯ +ж V dismount|ж +ж V refuse| +ж V remove| +ж V TakeAway|ᶯ,LocationIni=LandVehicle| +ж V TakeAway|ᶯ,patient=artifact|˹ +жĥɱ¿ ADJ aValue|ֵ,behavior|ֹ,treacherous|,undesired|ݬ +ж V cease|ͣ,content=undertake| +ж V TakeAway|ᶯ +жװ V StripOff|ȥ,patient=clothing|,entertainment| +з N fish| +з N food|ʳƷ +з ADJ aValue|ֵ,color|ɫ,BlueGreen| +и ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +й V release|ͷ +й V reveal|¶ +й V reveal|¶,patient=event|¼ +й V release|ͷ,patient=water|ˮ +й V disheartened| +й© V reveal|¶ +й¶ V reveal|¶ +й V reveal|¶,patient=event|¼ +й V disheartened| +к V StomachTrouble|֢ +к V flow| +к V StomachTrouble|֢ +л V apologize|Ǹ +л N character|,surname|,human|,ProperName|ר +л V decline|˥ +л V thank|л +л V reject|ؾ +л V die| +лл V grateful|м +л N letter|ż,*thank|л +лл V thank|л +л N emotion|,grateful|м +л V apologize|Ǹ +м ADJ aValue|ֵ,content|,trivial|,undesired|ݬ +м N shape| +н N material|,wood|ľ,*lighting|ȼ,$burn| +н N payment| +н N payment| +н V PassOn| +нˮ N payment| +нˮ׼ N human|,$employ| +н̿ N tree|,?material| +о N part|,%artifact|˹,heart| +оƬ N part|,%artifact|˹,heart| +о N part|,%tool|þ,$burn|,heart| +о N part|,beast|,mouth| +п N metal| +п N tool|þ,*print|ӡˢ + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ +Ȼ V aValue|ֵ,circumstances|,happy|,desired| +Ȼ ADV aValue|ֵ,circumstances|,happy|,desired| + V FondOf|ϲ + V enjoy| +ο V satisfied| +Ϥ V know|֪,manner=joyful|ϲ +ϲ V joyful|ϲ +ϲ V joyful|ϲ,degree=extreme| + V admire|Ľ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V joyful|ϲ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,peppery| + N character|,surname|,human|,ProperName|ר + N fact|,past|,ProperName|ר,(China|й) + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + ADJ aValue|ֵ,taste|ζ,peppery| + V endeavour| + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + N FlowerGrass|,?medicine|ҩ + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,time|ʱ,now| + N place|ط,country|,ProperName|ר,(Singapore|¼) +± N money|,(Uruguay|) +± N human|,military|,$include| +³ ADJ aValue|ֵ,pattern|ʽ,modern|,desired| +³´л V metabolize|л,medical|ҽ +³ɺ N emotion|,hate|,undesired|ݬ +´ N time|ʱ,spring|,early| +´ѽ N time|ʱ,festival|,@congratulate|ף +´½ N place|ط,ProperName|ר +µ N place|ط,capital|,ProperName|ר,(India|ӡ) +· N room|,@reside|ס,#GetMarried| +¸ N human|,female|Ů,*GetMarried| +ºʲ N place|ط,provincial|ʡ,ProperName|ר,(US|) +» N institution|,news|,ProperName|ר,(China|й) +»ͨѶ N institution|,news|,ProperName|ר,(China|й) +» V GetMarried|,now| +» N human|,family|,mass|,*GetMarried| +¼Ԫ N time|ʱ +¼ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Singapore|¼) +¼ N place|ط,country|,ProperName|ר,(Asia|) +¼ N human|,#country|,ProperName|ר,(Singapore|¼) +¼Ԫ N money|,(Singapore|¼) +½ V build| +½ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ά N place|ط,provincial|ʡ,ProperName|ר,(China|й) +½ N human|,friend|,now| +½ ADV aValue|ֵ,time|ʱ,now| +¾ N {newness|¾} +¾ N house|,new| +¿ N attribute|,pattern|ʽ,new|,&artifact|˹ + N human|,male|,*GetMarried| + N knowledge|֪ʶ +ī N place|ط,provincial|ʡ,ProperName|ר,(US|) + N time|ʱ,festival|,@congratulate|ף + N human|,female|Ů,*GetMarried| + N human|,female|Ů,*GetMarried| +ƪ N part|,%readings|,new| + ADJ aValue|ֵ,kind|,queer| + N place|ط,new|,#human| + N human| + N human|,female|Ů,*GetMarried| + ADJ aValue|ֵ,newness|¾,new|,#undertake| + N attribute|,newness|¾,new|,occupation|ְλ + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,*study|ѧ,education| + N human|,*study|ѧ,education|,now| + N phenomena|,desired| + N time|ʱ,past| + N human|,young|,$GiveBirth|,now| +ʫ N text| +ʯʱ N time|ʱ,past| +ʽ ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,unable|ӹ + N publications|鿯,immediate| + N publications|鿯,new| +ľ N army|,ProperName|ר,past| + N money|,(Peru|³) +̨ N money|,(Taiwan|̨) + N news| +ų N institution|,#news| +Ŵ N institution|,#news| +ŷ N human|,announce| +Ÿ N readings|,#news| +Ÿ N text|,news| +Ź N affairs|,#news| +Ź N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +Ź N readings|,#news| +Ź㲥 N fact|,disseminate|,#news| +ż N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +ż V check|,content=news| +Ž N community|,#news| +Žʿ N human|,*gather|ɼ,*compile|༭,#news| +ý N institution|,*disseminate|,#news| +Ƭ N shows|,#news| +Ա N human|,*analyze|,#news| + N human|,#news| +ҵ N affairs|,#news| +ֽ N paper|ֽ +רԱ N human|,#occupation|ְλ,official|,*manage|,news|,diplomatic|⽻ + N system|ƶ,#news|,free| + N place|ط,country|,ProperName|ר,(Oceania|) + N human|,#country|,ProperName|ר,(New Zealand|) +Ԫ N money|,(New Zealand|) + ADJ aValue|ֵ,kind|,queer| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + ADJ aValue|ֵ,newness|¾,new|,desired| + N human|,able|,new|,desired| +һ N attribute|,clan|,new|,&thing| +ɫл˶ N money|,(Israel|ɫ) + N thinking|˼,new| +ӱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ԫ N money|,(Singapore|¼) + N celestial| + N place|ط,provincial|ʡ,ProperName|ר,(US|) + V add| + N regulation|,politics|,new| +װ N clothing|,new| +ߗ N place|ط,@reside|ס,#house| + N character|,surname|,human|,ProperName|ר + V joyful|ϲ + ADJ joyful|ϲ + V joyful|ϲ + N mental| + N part|,%AnimalHuman|,heart| + N part|,%thing|,heart| +İ V like|ϧ +İ V AtEase| +İ V AtEase| +İ N part|,%AnimalHuman|,heart| +İ N disease| +IJ N fact|,secret| +IJ N fact|,worried|ż +IJ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +IJ N thought|ͷ +ij N thought|ͷ +ij N thought|ͷ +ij V excited| +ij V expect| +Ĵ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ĵ N experience| +ĵ N location|λ,%heart| +ĵ N attribute|,behavior|ֹ,&human| +ĵխ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +ĵͼ N image|ͼ,#cure|ҽ,medical|ҽ +Ķ V excited| +Ķ V jump| +Ķ N part|,%AnimalHuman|,heart| +ķ V upset| +ķ V upset| +ķ N part|,%AnimalHuman|,heart| +ķڷ V believe| +ĸ ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +ĸ ADJ aValue|ֵ,content|,secret| +ĸ N human|,friend| +ĸ֮ N disease| +ĸ֮ N phenomena|,undesired|ݬ,#unfortunate|,dangerous|Σ +ĸԸ V willing|Ը +ĸ N attribute|,behavior|ֹ,&human| +ĸ N human|,$like|ϧ +Ĺ ADJ aValue|ֵ,fatness|,fat| +ĺ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +Ļŭ V joyful|ϲ +Ļ V cherish|Ļ +Ļ V flurried| +Ļ V disheartened| +Ļ V disheartened| +Ļ N thinking|˼ +ļ N part|,%AnimalHuman|,heart| +ļ N disease| +ļ N disease| +ļ N thinking|˼ +ļ V worried|ż +ļ V worried|ż +ļ V ill|̬ +ļ V plan|ƻ +Ľ V worried|ż +Ľʹ N disease| +ľս V fear| +ľ V fear| +ľ V calm| +ľ N attribute|,circumstances|,&mental| +Ŀ N thinking|˼ +Ŀ N part|,%AnimalHuman|,heart| +Ŀһ ADJ aValue|ֵ,behavior|ֹ,true|,desired| +Ŀ V satisfied| + N mental| + ADJ aValue|ֵ,attachment|,mental| +ѧ N knowledge|֪ʶ,#mental| +ѧ N human|,#knowledge|֪ʶ,#mental| +ս N fact|,fight|,#mental| +ﻰ N experience|,sincere|,desired| + N mental| + N tired|ƣ +˥ N disease| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + N mental| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| + V understand| + V understand| +· N attribute|,tolerance|,&human| +· N attribute|,wisdom|ǻ,&AnimalHuman| +· N purpose|Ŀ + N attribute|,speed|ٶ,&jump| + N quantity|,rate|,&jump| + V uneasy| + V satisfied| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +Ŀ N thinking|˼ +ƽ V AtEase| + ADJ aValue|ֵ,behavior|ֹ,urgent| + N attribute|,circumstances|,&thinking|˼ + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + N mental| +絶 V sorrowful| +絶 V sorrowful| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ + N location|λ,%heart| + N human|,$love| + N mental| + N aspiration|Ը,expect| + N thinking|˼ + N part|,%AnimalHuman|,heart| + N thought|ͷ +˼ N mental| +˼ N thought|ͷ + V sorrowful| + V calculate| + V sorrowful| +̬ N attribute|,circumstances|,&thinking|˼ + V like|ϧ + V sorry|ϧ + N mental| + V ill|̬ +ʹ V sorrowful| +ʹ ADJ sorrowful| +ͷ N mental| + N stone|ʯ,?material| +Ѷ N part|,%AnimalHuman|,heart| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N mental| + V think|˼ + V admire|Ľ +ӡ ADJ FondOf|ϲ,manner=EachOther|໥ + N attribute|,behavior|ֹ,&human| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ + V GuiltilyConscious| + N attribute|,circumstances|,&thinking|˼ + V FeelingByBad| +Ѫ N mental| +Ѫ N part|,%AnimalHuman|,nerve| +Ѫ V excited| +۶ N attribute|,tolerance|,&human|,&organization|֯ +۶ N attribute|,wisdom|ǻ,&AnimalHuman| +۶ N experience|,doubt| +۶ N purpose|Ŀ +۶ N thinking|˼ + N emotion|,kindhearted|,desired| + N purpose|Ŀ + V BeUnable| + V fear| +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ը N aspiration|Ը,expect| +óϷ V believe| + N part|,%AnimalHuman|,heart| +Ĥ N disease| +ಡ N disease| +ֱڿ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N location|λ,%heart| + V ignorant|֪ + V know|֪ + N part|,%physical|,heart| + V joyful|ϲ + N part|,%human|,heart| + V believe| + N experience|,believe| + N information|Ϣ + N information|Ϣ,*prove|֤ + N letter|ż + N part|,%weapon| +Ų V walk| +Ŵ N affairs|,lend|,borrow|,commercial| +ŵ N language|,#country|,ProperName|ר +ŷ V communicate| +ŷ N tool|þ,@put|,#letter|ż +ŷ N wind| +ŷ V believe| +ŷ V believe| +Ÿ N bird|,*post|ʼ +ź N letter|ż +ź N symbol| +ź N symbol|,#hand|,$show| +źŵ N tool|þ +Ż V post|ʼ,instrument=letter|ż +ż N paper|ֽ,@write|д +ż N letter|ż +Ž V include|,religion|ڽ +ſڴƻ V TalkNonsense|Ϲ˵ +ſڿ V TalkNonsense|Ϲ˵ + V believe| + N human|,*believe| + N experience|,believe| +ȿ N letter|ż + V believe| +ͱط ADJ aValue|ֵ,SocialMode|,good|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʹ N human|,#occupation|ְλ,*post|ʼ +ĵ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V obey|ѭ + N thinking|˼ +ͽ N human|,*obey|ѭ +ͽ N human|,religion|ڽ + V entrust|ί +й˾ N InstitutePlace|,commercial| + N artifact|˹,generic|ͳ +Ϣ N information|Ϣ +Ϣḻ ADJ aValue|ֵ,content|,substantial|ʵ,desired| +Ϣ N quantity|,amount|,&information|Ϣ +Ϣ N knowledge|֪ʶ,#information|Ϣ + N tool|þ,cubic|,@put|,#letter|ż + N emotion|,believe| +İٱ V believe| + V believe| + N experience|,believe| +Ϊ V believe| + N experience|,believe| + N attribute|,reputation|,&human|,&organization|֯ +÷ſ N money|,$lend|,commercial| +ÿ N coupon|Ʊ֤,#money| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֤ N letter|ż,#fund|ʽ,commercial| + N attribute|,reputation|,&human|,&organization|֯ + N letter|ż +ֽ N paper|ֽ,@write|д,#letter|ż + N celestial| + N human|,*perform|,entertainment| + N mark|־ + N shape| +dz N celestial| +dz N InsectWorm| +Ƕ N celestial| +ǹ N lights| +Ǻ N celestial| +ǻ N celestial| +ǻ N fire| +Ǽ ADJ aValue|ֵ,rank|ȼ +Ǽ ADJ aValue|ֵ,location|λ,#celestial| +ǿ N sky| +岼 ADJ qValue|ֵ,amount|,many| + N time|ʱ,week| +ڶ N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| +һ N time|ʱ,day|,#week| + N celestial| +ս N plans|滮,*defend|,#celestial|,military| +ɢ V disperse|ɢ + N celestial| + N celestial| + N mark|־,#country|,(US|) + N celestial| +ϵ N celestial| +ϵ ADJ aValue|ֵ,location|λ,#celestial| + N celestial| + N shape| +ǵ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| +ƶת V SelfMoveInManner|ʽ,#time|ʱ + N celestial| +״ ADJ aValue|ֵ,form|״ + N celestial| + ADJ aValue|ֵ,odor|ζ,stinky| +ȳ ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ +ȷѪ N phenomena|,miserable|,undesired|ݬ + ADJ aValue|ֵ,odor|ζ,stinky| +ζ ADJ aValue|ֵ,odor|ζ,stinky| + ADJ aValue|ֵ,odor|ζ,stinky| + N beast| +ɺ ADJ aValue|ֵ,color|ɫ,red| +ɺ N disease| + N beast| +̬ V pretend|װ + N emotion|,FondOf|ϲ + V prosper| + V start|ʼ + V urge|ʹ +˰ V establish| +˳ V excited| +˷ V excited| +˷ ADJ excited| +˷ܲ V excited|,degree=extreme| +˷ܼ N medicine|ҩ,*CauseToDo|ʹ,#excited|,sport|,undesired|ݬ +˷ܼ N InstitutePlace|,*check|,#medicine|ҩ,sport| +˷ V MakeTrouble| +˸߲ V joyful|ϲ +˹ V CauseToGrow|ʹɳ,patient=country| +˻ N thought|ͷ +˽ V build| + V improve| +¡ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ũ V CauseToGrow|ʹɳ,patient=agricultural|ũ + V appear| + V begin|ʼ + V prosper| +Ȥ N emotion|,FondOf|ϲ +ʢ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʦ V dispatch|Dz,patient=army| +ʦ V mobilize| +ʦ V attack| +˥ N attribute|,effect|Ч,&human|,&organization|֯ +̾ V sigh|̾ +ͷ N emotion|,excited| +ͷ V excited| + N attribute|,effect|Ч,&human|,&organization|֯ + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V prosper| + V prosper| +ζ N emotion|,FondOf|ϲ + V build| + ADV {comment|} +ѧ V establish|,patient=education| + V MakeTrouble| + N emotion|,FondOf|ϲ +² V joyful|ϲ + N fact|,damage| + N fact|,punish|,#police| +̳ N facilities|ʩ,space|ռ,@punish|,#crime|,police| +̷ N fact|,punish| +̷ N law|ɷ,*punish|,#crime| +̾ N human|,#occupation|ְλ,police| +̾ V part|,%institution|,*scout|,#crime|,police| +̾ N tool|þ,police|,*punish|,#crime| + N law|ɷ,*punish|,#crime| +ͷ V undergo|,content=release|ͷ,crime|,#police| + N time|ʱ,@punish|,#crime|,police| + ADJ aValue|ֵ,attachment|,crime| +· N human|,crime|,undesired|ݬ +· N fact|,do|,#crime|,crime| +¾ N human|,#occupation|ְλ,police| + N fact|,accuse|ظ,police| +Ϸ N law|ɷ,*punish|,#crime| + N duty|,crime| + V scout|,content=crime|,police| + V part|,%institution|,*scout|,#crime|,police| +Ѷ V interrogate|,police| +촦 V part|,%institution|,*scout|,#crime|,police| + N attribute|,kind|,&physical| + N tool|þ,*produce| +Ͱ N part|,%machine| +͸ N metal| +ͺ N attribute|,kind|,&artifact|˹ + N attribute|,form|״,&physical| +α V FormChange|α +γ V forming|γ +εӰֻ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +ζѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +κ N part|,%AnimalHuman|,body| +κ N part|,%human|,body| +μ N attribute|,bearing|̬,&human| + V describe|д +ݴ N part|,%language| +ʽ N attribute|,form|״,&entity|ʵ +ʽ ADJ aValue|ֵ,range|,extensive|,desired| +ʽ ADJ aValue|ֵ,appearance| +ʽ N thinking|˼ + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&earth| + V BeSimilar| +ƶʵȫȻͬ ADJ aValue|ֵ,similarity|ͬ,different| +̬ N attribute|,form|״,&physical| +̬ѧ N knowledge|֪ʶ,#language| + N attribute|,form|״,&human| + N attribute|,form|״,&inanimate| +ͬ ADJ aValue|ֵ,performance|,useless|,undesired|ݬ + N image|ͼ +ɫɫ ADJ aValue|ֵ,kind|,many| +Ӱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ӱ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +״ N attribute|,form|״,&physical| + N character|,surname|,human|,ProperName|ר +̨ N place|ط,city|,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N InstitutePlace|,commercial| + CLAS NounUnit|,&physical| + V SelfMove| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,effect|Ч,superior| + N affairs| + N attribute|,behavior|ֹ,&human| + N attribute|,clan|,&human| + V conduct|ʵʩ + V exist| + EXPR expression|,*ExpressAgreement|ʾͬ +вͨ ADJ aValue|ֵ,effect|Ч,useless| +г N human|,#occupation|ְλ,official|,commercial| +г V VehicleGo|ʻ,#LandVehicle| +г N attribute|,distance|,&event|¼ +г N process|,wave|ڶ,#machine| +д V VehicleGo|ʻ,#ship| +д V kill|ɱ,manner=crime|,police| +е N affairs| +еͨ ADJ aValue|ֵ,effect|Ч,superior| +ж V do| +ж N fact|,#act|ж +з N human|,#occupation|ְλ,commercial| +з V mating| +и V benefit| +й N house|,royal| +к V WellTreat|ƴ +л N expression| +л V entice|,means=GiveAsGift|,crime| +м N human|,desired|,able| +м N human|,desired|,able| +н ADV aValue|ֵ,time|ʱ,future| +нľ V decline|˥ +н V rob| +н V GoForward|ǰ +н N community|,#LandVehicle|,*SelfMove| +о V GoThrough| +о V excrete|й,medical|ҽ +о N fact|,act|ж +о N SelfMove|,#army|,military| + V SeekPleasure|Ѱ + N artifact|˹,#tour| + V salute|¾ + N shape|,linear| + V engage|,content=catch|׽ס,agricultural|ũ + N human|,*tour|,*AlterLocation|ռλ + N tool|þ,cubic|,@put| +ƭ V engage|,content=cheat|ƭ + V engage|,content=beg| + V engage|,content=steal|͵ + N attribute|,price|۸,&physical|,commercial| + N human|,*walk| + V calm| +ɫҴ V walk|,manner=busy|æ + V engage|,content=WellTreat|ƴ + N human|,*WellTreat|ƴ + N human|,#occupation|ְλ,commercial| +ʬ N human|,unable|ӹ,undesired|ݬ +ʱ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ʹ V conduct|ʵʩ +ʻ V VehicleGo|ʻ + V do| + N attribute|,price|۸,&physical|,commercial| + N attribute|,kind|,&character|,&symbol| + N part|,%organization|֯,*manage| +Ϊ N attribute|,behavior|ֹ,&human| +Ϊ N fact|,act|ж +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +Ϊֱ N human|,fair|,desired| + V announce| + V sell|,commercial| + N celestial| + V kill|ɱ,police| +̶ N part|,%army|,police| + V kill|ɱ,crime| +ҵ N affairs| +ҵ N expression| +ҽ V engage|,content=cure|ҽ,medical|ҽ +ˮ ADJ aValue|ֵ,behavior|ֹ,dexterous|,desired| + N affairs|,manage| +λ N part|,%organization|֯,*manage| + N part|,%organization|֯,*manage| + N affairs|,manage| + N place|ط,%country|,*manage| + N affairs|,manage|,public| +֮Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +ֹ N attribute|,behavior|ֹ,&human| +ֹ N location|λ,@stay|ͣ +װ N tool|þ,cubic|,@put| + N location|λ,@stay|ͣ +ٲ V unfixed|δ,scope=location|λ,#stay|ͣ + V walk| + V BeRecovered|ԭ,scope=mental| + V awake| + V understand| +ѻ ADJ aValue|ֵ,content|,opened|,desired| +Ŀ ADJ aValue|ֵ,content|,opened|,desired| + V understand| + N character|,surname|,human|,ProperName|ר + N phenomena|,lucky|,desired| + ADV {comment|} +Ҵ V alive| +Ҵ N human|,*alive| +Ҷ ADV {comment|} +Ҹ ADJ aValue|ֵ,circumstances|,happy|,desired| +Ҹ N phenomena|,lucky|,desired| +Һ ADV {comment|} +һ V joyful|ϲ,cause=meet| +ҿ ADV {comment|} + V escape| + V escape|,ResultEvent=die| + V lucky|,degree=extreme| + N phenomena|,lucky|,desired| +ϲ ADV {comment|} + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + V lucky| + N phenomena|,lucky|,desired| +˶ N human|,*lucky|,desired| +ֻ V joyful|ϲ,cause=unfortunate|,other| + N fruit|ˮ +Ӻ ADJ aValue|ֵ,color|ɫ,red| +ӻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + ADJ aValue|ֵ,behavior|ֹ,#sex|Ա,#mating| + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,property|,&entity|ʵ + N attribute|,sex|Ա,&animate| + N attribute|,sex|Ա,&language| +԰ V love| +Ա N attribute|,sex|Ա,&animate| +Բ N disease|,#SeekPleasure|Ѱ +Ը ADJ aValue|ֵ,appearance| +Ը N attribute|,behavior|ֹ,&AnimalHuman| +Լ N medicine|ҩ +Լ ADJ aValue|ֵ,behavior|ֹ,BadTemper|Ƣ,undesired|ݬ +Լ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Խ V mating| +Խ߳ N part|,%event|¼,#mating| +Խ N fact|,education| + N attribute|,strength|,&animate| + N attribute|,performance|,&implement| +ܼ۸ N attribute|,effect|Ч,#price|۸,&artifact|˹,commercial| +Ű N human|,*damage|,crime| + N part|,%AnimalHuman|,viscera|,*mating| + N attribute|,behavior|ֹ,&AnimalHuman| +鼱 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,nerve|,#mating| +Ϊ N fact|,mating| +ѧ N knowledge|֪ʶ + N aspiration|Ը,expect|,#mating| + N attribute|,property|,&entity|ʵ +״ N attribute|,property|,entity|ʵ + N attribute|,behavior|ֹ,&AnimalHuman| + N attribute|,name|,surname|,&human| + V mean|ָ + N attribute|,name|,&human| + N attribute|,name|,surname|,&human| + N human|,family|,male| + N human|,male| +ֳ N human|,family|,male| +ֵ N human|,family|,male| +ֵ N human|,family|,mass|,male| +ֵ N human|,male| +ֵܰ ADJ aValue|ֵ,relatedness|,intimate| +ֵ N human|,family|,mass|,male| +ֵǽ V fight| + N human|,family|,mass| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,degree|̶,very| +ױ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ײ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׶༪ V unfortunate| +׶ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׷ N human|,*kill|ɱ,undesired|ݬ,crime| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ N information|Ϣ,#die| +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +׺ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N weapon|,*kill|ɱ,undesired|ݬ,crime| +ɱ V kill|ɱ,crime| + N humanized|,evil|,undesired|ݬ +ɷ N humanized|,evil|,undesired|ݬ +ɷ N human|,evil|,undesired|ݬ + N fact|,undesired|ݬ,#unfortunate| + N human|,*kill|ɱ,undesired|ݬ,crime| + V die|,#crime| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N information|Ϣ,#die| + N information|Ϣ,bad| + N mental| + N part|,%AnimalHuman|,body| +ز N part|,%AnimalHuman|,body| +ظ N part|,%AnimalHuman|,body| +ع N part|,%AnimalHuman|,bone| +ػ N mental| +ؽ N mental| +ؿ N part|,%AnimalHuman|,body| +Ĥ N part|,%AnimalHuman| +Ĥ N disease| +ǻ N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,body| +Χ N attribute|,size|ߴ,body|,&human| +޵ī ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +г V know|֪ + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N tool|þ,#female|Ů,*decorate|װ,$PutOn| + N part|,%animal|,tail|β + N place|ط,country|,ProperName|ר,(Hungary|) +ū N human|,past| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Hungary|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר,(Hungary|) + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ӿ ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,power|,strong|ǿ,desired| + ADJ aValue|ֵ,sex|Ա,male| + N human|,strong|ǿ + N place|ط,#country|,strong|ǿ +۱ N attribute|,ability|,&debate| +۷ N InsectWorm| +۷ N attribute|,bearing|̬,stately|ׯ,desired| +۷ N wind| +۹ N part|,%place|ط,mouth| +ۺ ADJ qValue|ֵ,amount|,many| +ۻ N part|,%FlowerGrass|,male| +ۻ N stone|ʯ,?material| +ۻ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ۼ N bird| +۽ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N part|,%FlowerGrass|,heart|,male| +ͼ N aspiration|Ը,expect|,desired| +ΰ ADJ aValue|ֵ,scene|,stately|ׯ,desired| + N aspiration|Ը,expect|,desired| +IJ ADJ aValue|ֵ,will|־,strong|ǿ +׳־ N aspiration|Ը,expect|,desired| + ADJ aValue|ֵ,sex|Ա,male| + N InsectWorm| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N attribute|,bearing|̬,brave|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,brave|,desired| + V ExpressAgainst|Ǵ + N beast| + N character|,surname|,human|,ProperName|ר +ܷ N InsectWorm| +è N beast| + ADJ aValue|ֵ,strength|,strong|ǿ + N part|,%beast|,foot| + V cease|ͣ + V rest|Ϣ + V separate| +ݻ V cease|ͣ,content=discuss| +ݼ N time|ʱ,@WhileAway| +ݿ V dizzy|,medical|ҽ + V sleep|˯ + N emotion| + V relate|й,scope=affairs| +빲 V relate|й,scope=affairs| +˹ N place|ط,city|,ProperName|ר,(US|) +Ϣ V rest|Ϣ +Ϣ N room|,@rest|Ϣ + V WhileAway| + AUX {modality|} +ѧ V cease|ͣ,content=study|ѧ,education| + V maintain|,medical|ҽ +Ϣ V rest|Ϣ +Ϣ V resume|ָ +ҵ V cease|ͣ,content=affairs|,commercial| +ҵ V finish| +ս V cease|ͣ,content=fight|,military| + V rest|Ϣ,military| +ֹ V cease|ͣ + V rest|Ϣ + V PutInOrder| + V build| + V compile|༭ + V decorate|װ + V repair| + V study|ѧ +޲ V repair| +޲ V repair|,medical|ҽ +޳ ADJ aValue|ֵ,length|,long| +޴ N expression| +޴ѧ N human|,literature| +޵ V cultivate|,religion|ڽ +޶ V amend| +޶ N human|,*amend| +޸ V repair| +޸ N human|,*repair| +޸ V alter|ı +޸ V amend| +޺ V compile|༭,content=letter|ż +޺ V associate| +޺ V engage|,content=WellTreat|ƴ +޼ V PutInOrder| +޽ V build| +޿ V dredge|ͨ + V repair| + N human|,#occupation|ְλ,*repair| + N human|,*repair| + V exercise| +· V build|,PatientProduct=route|· +· N human|,#occupation|ְλ,*repair|,#route|· + V MakeUp|ױ,patient=skin|Ƥ + ADJ aValue|ֵ,SocialMode|,good|,desired| +Ů N human|,religion|ڽ,female|Ů + V repair| +䳧 N InstitutePlace|,@repair|,factory|,industrial| + V repair| + V cultivate| +ʿ N human|,religion|ڽ,male| + V MakeBetter|Ż + V MakeUp|ױ + V decorate|װ + V improve| + N part|,%language| + V cultivate|,religion|ڽ +޲ V repair| + N attribute|,behavior|ֹ,&human| + N attribute|,rank|ȼ,#mental|,&human| +ҵ V study|ѧ + V build| + V PutInOrder| + V repair| + V adjust| + V amend| + N readings| + N thinking|˼ + V build| + V repair| + V shy| +߲ V shy| +߳ N emotion|,shy| +ߴ V shy| + V shy| + V shy| + V shy| + V damage| + N human|,*damage| +ɬ V shy| + ADJ aValue|ֵ,age|,aged| + V decline|˥ + ADJ aValue|ֵ,age|,aged| + V decline|˥,scope=age| +ľ N human|,unable|ӹ,undesired|ݬ +ľ N wood|ľ,bad|,undesired|ݬ +ľ N human|,unable|ӹ,undesired|ݬ +ľ N inanimate|,waste|,undesired|ݬ + V smell| + N experience|,smell| +̽ N human|,*investigate| + V OutOfOrder| + N phenomena|,OutOfOrder|,#metal| + N trace|,#OutOfOrder| +ʴ ADJ aValue|ֵ,property|,$OutOfOrder| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,*succeed|ɹ,#exam|,past| + N human|,literature| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,quality|,refined|,desired| +ɫ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N part|,%clothing|,#arm| + N mark|־ + N part|,%clothing|,#arm| + N fittings|,%clothing|,#arm| +Թ V unwilling|Ը,content=help| + N mark|־,#arm| + ADJ aValue|ֵ,size|ߴ,small|С + N part|,%clothing|,#arm| + V fasten|˩ +廨 V decorate|װ +廨ͷ N human|,unable|ӹ,undesired|ݬ +廨ͷ N tool|þ,#sleep|˯ +Ʒ N artifact|˹ + N tool|þ,*decorate|װ + N InstitutePlace|,*sell|,@buy|,commercial| + N symbol| +ʱ N time|ʱ,hour|ʱ + V need| + N physical|,$need| + N aspiration|Ը,need| + N quantity|,amount|,&need| +Ҫ V need| +Ҫ N quantity|,amount|,&need| + ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N knowledge|֪ʶ +鱨 V TalkNonsense|Ϲ˵ + N part|,%language| + V lavish|˷ +鸡 ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ +鸡 ADJ aValue|ֵ,content|,NotProfound|dz,undesired|ݬ +鹹 V forge|α +黳 ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N attribute|,reputation|,fake|α,&human|,&organization|֯ + ADJ aValue|ֵ,trueness|α,fake|α + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,fatness|,fat|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + N emotion|,ParticularAbout|,#fake|α + N emotion|,ParticularAbout|,#fake|α + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α +ʵ ADJ aValue|ֵ,content| +ʵ N attribute|,circumstances|,&entity|ʵ + N disease| + V dizzy| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +α ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +α ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +λԴ V wait|ȴ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ +Ʈ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N knowledge|֪ʶ + N image|ͼ,linear| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +Ӧ V slack|͵ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ί V pretend|װ,content=WellTreat|ƴ + V ExpressDissatisfaction|ʾ + V MakeSound| + V WarmUp| + V damage| + V exhale| + V sigh|̾ +꺮ů V SayHello|ʺ + V weep| + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + N part|,%human|,hair|ë + AUX {comment|} +뷢 N part|,&AnimalHuman|,hair|ë + N part|,%plant|ֲ,base| +ü N human|,male| +ü N part|,%human|,hair|ë +Ҫ AUX {modality|} +֪ N information|Ϣ + N part|,%AnimalHuman|,*feel| + N part|,%artifact|˹,*decorate|װ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,speed|ٶ,slow| + N character|,surname|,human|,ProperName|ר +첽 V walk| + ADJ aValue|ֵ,speed|ٶ,slow| + N place|ط,city|,ProperName|ר,(China|й) + V agree|ͬ + N character|,surname|,human|,ProperName|ר + ADV qValue|ֵ,amount|,almost| + N place|ط,city|,ProperName|ר,(China|й) + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,property|,ExpressAgreement|ʾͬ + V agree|ͬ +֤ N document|,*ExpressAgreement|ʾͬ +ŵ V agree|ͬ + V MarryTo| + ADJ qValue|ֵ,amount|,many| +Ը V swear| + V SetAside| + V cherish|Ļ + V keep| + V store| + N part|,%artifact|˹,#electricity| + V SetAside|,patient=water|ˮ + V SetAside| + V store| +ˮ V store|,patient=water|ˮ +ˮ N facilities|ʩ,space|ռ,@store|,#water|ˮ +ˮ N affairs|,#liquid|Һ + ADJ aValue|ֵ,behavior|ֹ,active|Ը + V addict|Ⱥ + V explain|˵ + N place|ط,country|,ProperName|ר,(Syria|) + V speak|˵ + V talk|̸ + V farewell| + V talk|̸ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Syria|) + N place|ط,country|,ProperName|ר,(Asia|) +ǰ N money|,(Syria|) + N human|,(Syria|) + V explain|˵ + V explain|˵ + ADJ aValue|ֵ,property|,explain|˵ + N human|,*speak|˵ +˵ V explain|˵ +̸ V talk|̸ + V employ| + N lights|,#celestial| + N celestial|,*rise| + N attribute|,sequence|,&entity|ʵ + N part|,%text| + N attribute|,sequence| +Ļ N process|,early| + N part|,%music| + N part|,%text| + N part|,%text| + N livestock| + N artifact|˹,generic|ͳ,livestock| +Ʒ N physical|,#livestock| + N material|,*feed|ι,#crop|ׯ + ADJ aValue|ֵ,attachment|,#livestock| + V foster|,patient=livestock| +ҵ N affairs|,*foster|,#livestock| + N livestock| + V foster|,agricultural|ũ + V pity| + V recompense| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + V inlay|Ƕ + N shape| + V talk|̸,content=empty| + N text|,content=empty| +߶ ADJ aValue|ֵ,content|,complicated|,undesired|ݬ + N human|,family|,male| + N affairs| + N part|,%physical|,*surplus|ʣ + N part|,%time|ʱ,head|ͷ + V KeepOn|ʹ + ADJ aValue|ֵ,behavior|ֹ,continuous| + V add| + V buy|,means=MakeAppointment|Լ + N shows| + V KeepOn|ʹ,patient=time|ʱ + V MarryFrom|Ȣ + N human|,family|,female|Ů + N LandVehicle| + ADJ aValue|ֵ,height|߶,tall| + N part|,%building|,mouth| + N room| + ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| + ADJ aValue|ֵ,area|,wide| +Ȼ N fact|,undesired|ݬ +ԯ N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V cry| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V announce| + N character|,surname|,human|,ProperName|ר + V dredge|ͨ + V announce| +ֹͣж״̬ V cease|ͣ,content=attribute|,military| + V announce| + V disseminate| + N part|,%community| + N human|,*disseminate| +Ա N human|,*disseminate| + V recite|ж + V announce| + V announce| + N fact|,disseminate| + V judge|ö,police| +ʾ V announce| + V swear| +ͳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +й V ShowEmotion|ʾ +й V dredge|ͨ + N document|,*announce| + V disseminate| +ս V announce|,content=fight|,military| +ֽ N paper|ֽ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,similarity|ͬ,different| + V hang| + V unfixed|δ + V worried|ż + N fact|,^$handle| + N fact|,police|,^$handle| + N part|,%building|,*hang|,arm| + N part|,%machine|,arm| + V hang| +δ V unfixed|δ + V float|Ư,industrial| + V hang| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + V hang| + V suicide|ɱ +Ծ V suicide|ɱ +ľ N tree| + N experience|,worried|ż + V worried|ż + V reward| + N attribute|,similarity|ͬ,different|,&entity|ʵ,&aValue|ֵ + N facilities|ʩ,route|· + N part|,%land|½,skin|Ƥ + V cease|ͣ +ͱ N part|,%land|½,skin|Ƥ +Ӻ N part|,%AnimalHuman|,mouth| + V GoBack| + V circle| + V cut| + V cut|,industrial| + N image|ͼ,round|Բ + N part|,%human|,hair|ë + V rotate|ת + N machine|,*produce|,industrial| + N wind| + ADV aValue|ֵ,duration|,TimeShort| + N attribute|,SoundQuality|,&music| +ť N part|,%implement|,*hold|,*OpenShut|,hand| + V circle| + N phenomena|,#liquid|Һ +ת ADJ aValue|ֵ,property|,rotate|ת +ת V rotate|ת +תǬ V alter|ı,patient=natural|Ȼ + ADJ aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black|,NotLight|Ũ + N human|,family|,female|Ů +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N human|,#knowledge|֪ʶ +֮ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ +ѡ V choose|ѡ +ѡ N publications|鿯 +ѡ V select|ѡ +ѡ V choose|ѡ +ѡ N fact|,compete|,*choose|ѡ,sport| +ѡ V compile|༭ +ѡ N publications|鿯 +ѡ V choose|ѡ,content=material| +ѡ V choose|ѡ,Vachieve| +ѡ V dispatch|Dz +ѡ V decide| +ѡ V study|ѧ,education| +ѡ V buy|,commercial| +ѡ V choose|ѡ,Vachieve| +ѡ N publications|鿯 +ѡ ADJ aValue|ֵ,property|,select|ѡ +ѡ V select|ѡ +ѡٷ N law|ɷ,#select|ѡ +ѡǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#select|ѡ +ѡȨ N rights|Ȩ,*select|ѡ +ѡ N human|,*select|ѡ +ѡ˶ N fact|,select|ѡ,politics| +ѡ V choose|ѡ,content=mine|,industrial| +ѡ N InstitutePlace|,*choose|ѡ,#mine|,industrial| +ѡ V choose|ѡ,content=human|,female|Ů +ѡ N human|,*select|ѡ +ѡ V dispatch|Dz +ѡƱ N document|,*select|ѡ +ѡƸ V employ| +ѡ N place|ط,#select|ѡ +ѡȡ V choose|ѡ +ѡ V RegardAs| +ѡ N human|,$choose|ѡ,*compete|,sport| +ѡΪ V undergo|,content=RegardAs| +ѡ V study|ѧ,education| +ѡ޿ N affairs|,$choose|ѡ,education| +ѡ V check| +ѡ V use| +ѡ N choose|ѡ,agricultural|ũ +ѡ V choose|ѡ +ѡ N problem| +ѡ ADJ aValue|ֵ,property|,$choose|ѡ +ѡ N human|,*select|ѡ +ѡ V choose|ѡ,Vachieve| +ѡ V choose|ѡ,agricultural|ũ +ѡ ADJ aValue|ֵ,source|Դ,$choose|ѡ +Ѣ N disease| +ѣ V dizzy| +ѣĿ V illuminate|,PartOfTouch=eye| +ѣ V dizzy| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +Ѥ ADJ aValue|ֵ,color|ɫ,beautiful|,desired| +ѥ N clothing|,#foot| +ѥ N clothing|,#foot| +Ѧ N character|,surname|,human|,ProperName|ר +ѧ N InstitutePlace|,education| +ѧ V imitate|ģ +ѧ N knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ +ѧ V study|ѧ +ѧ N publications|鿯 +ѧ V study|ѧ,content=walk| +ѧ N part|,%institution|,#knowledge|֪ʶ +ѧίԱ N human|,#knowledge|֪ʶ +ѧ N human|,*study|ѧ,education|,friend| +ѧ N fact|,uprise|,education| +ѧ V study|ѧ,Vachieve| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ѧ N human|,#knowledge|֪ʶ,undesired|ݬ +ѧ V FitNot|,relevant=do|,contrast=study|ѧ +ѧ N expenditure|,$pay|,#education| +ѧ N result|,#study|ѧ +ѧ N system|ƶ,#result|,#study|ѧ +ѧ N attribute|,SocialMode|,&education| +ѧ N attribute|,behavior|ֹ,#study|ѧ,&human| +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N attribute|,circumstances|,&study|ѧ +ѧ V study|ѧ,Vachieve| +ѧ V study|ѧ,source=good| +ѧ N community|,#knowledge|֪ʶ +ѧ V study|ѧ,Vachieve| +ѧ N attribute|,status|,#study|ѧ,&human| +ѧ N human|,#knowledge|֪ʶ +ѧ N community|,education| +ѧ N human|,stiff|,undesired|ݬ +ѧ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ѧ N part|,%knowledge|֪ʶ +ѧ N part|,%knowledge|֪ʶ,education| +ѧ N attribute|,status|,#education|,&human| +ѧ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N community|,#study|ѧ +ѧ N attribute|,age|,#study|ѧ,&human| +ѧͯ N human|,#age|,#study|ѧ +ѧǰ ADJ aValue|ֵ,time|ʱ,InFront|ǰ,#education| +ѧǰͯ N human|,young|,#age|,#study|ѧ +ѧ N attribute|,name|,formal|ʽ,#education|,&human| +ѧ N attribute|,name|,formal|ʽ,&entity|ʵ +ѧ N time|ʱ,education| +ѧ N community|,#knowledge|֪ʶ +ѧ N community|,knowledge|֪ʶ +ѧ N time|ʱ,education| +ѧǰ N affairs|,education| +ѧ V TalkNonsense|Ϲ˵ +ѧ V imitate|ģ +ѧ V imitate|ģ,content=speak|˵ +ѧ N human|,*study|ѧ +ѧ N human|,*study|ѧ,education| +ѧ N community|,education| +ѧ˶ N fact|,uprise|,education| +ѧʱ N time|ʱ,hour|ʱ,education| +ѧʶ N knowledge|֪ʶ +ѧʶdz ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ѧʶԨ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧʿ N human|,*study|ѧ,education| +ѧʿ N human|,literature| +ѧʿѧλ N attribute|,rank|ȼ,&human|,#study|ѧ,education| +ѧ N knowledge|֪ʶ +ѧɾ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#research|о,#study|ѧ +ѧ N community|,knowledge|֪ʶ +ѧ N human|,desired|,able|,glorious| +ѧ N part|,%knowledge|֪ʶ,aspect| +ѧ N text|,#research|о +ѧۻ N fact|,discuss|,#knowledge|֪ʶ +ѧ ADJ aValue|ֵ,attachment|,#knowledge|֪ʶ +ѧֻ N fact|,discuss|,#knowledge|֪ʶ +ѧ˵ N knowledge|֪ʶ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧͽ N human|,#occupation|ְλ,*study|ѧ,industrial| +ѧλ N attribute|,rank|ȼ,#study|ѧ,&human| +ѧ N knowledge|֪ʶ +ѧϰ V study|ѧ +ѧϰɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧϰ N time|ʱ,@study|ѧ,education| +ѧϰ N human|,*study|ѧ +ѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education|,friend| +ѧҵ N affairs|,education| +ѧҵɼ N result|,desired|,#succeed|ɹ,#knowledge|֪ʶ,#study|ѧ +ѧ V study|ѧ,purpose=use| +ѧ N knowledge|֪ʶ +ѧ V study|ѧ,content=affairs|,#MakeLiving|ı +ѧר ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ѧ N human|,*study|ѧ,education|,friend| +ѧԱ N human|,*study|ѧ +ѧԺ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧԺ ADJ aValue|ֵ,attachment|,InstitutePlace|,#education| +ѧ N fact|,uprise|,education| +ѧӷ N expenditure|,$pay|,#education| +ѧ N human|,#knowledge|֪ʶ +ѧ N system|ƶ,education| +ѧ N time|ʱ,@study|ѧ,education| +ѧ N human|,*study|ѧ +Ѩ N facilities|ʩ,space|ռ,@bury|,#human|,#die| +Ѩ N part|,%AnimalHuman| +Ѩ N part|,%earth|,mouth| +Ѩ V reside|ס +Ѩλ N part|,%AnimalHuman| +ѩ N RainSnow|ѩ +ѩ V remove| +ѩ ADJ aValue|ֵ,color|ɫ,white| +ѩ N beast| +ѩ N phenomena|,unfortunate|,#RainSnow|ѩ +ѩ N drinks|Ʒ +ѩ V amend|,content=wrong| +ѩ N land|½,#RainSnow|ѩ +ѩ N land|½,#RainSnow|ѩ +ѩ N drinks|Ʒ,ice| +ѩ N land|½,#RainSnow|ѩ +ѩ V amend|,content=wrong| +ѩ N RainSnow|ѩ +ѩ N tool|þ,*MakeUp|ױ +ѩޮ N part|,%vegetable|߲,embryo|,$eat| +ѩޮ N vegetable|߲ +ѩ N drinks|Ʒ,$addict|Ⱥ +ѩ N FlowerGrass| +ѩ ADJ aValue|ֵ,brightness|,bright| +ѩ N tree| +ѩä N disease| +ѩä V disease| +ѩƬ N RainSnow|ѩ +ѩ N LandVehicle|,#RainSnow|ѩ +ѩ N addictive|Ⱥ +ѩ ADJ aValue|ֵ,color|ɫ,purple| +ѩ N human| +ѩɽ N land|½,#RainSnow|ѩ +ѩϼ˪ ADJ aValue|ֵ,circumstances|,hardship|,more|,undesired|ݬ +ѩϼ˪ V unfortunate| +ѩˮ N water|ˮ,#RainSnow|ѩ +ѩ N tree| +ѩ N drinks|Ʒ,ice| +ѩԩ V amend|,content=wrong| +ѩԭ N land|½,#RainSnow|ѩ +ѩ̿ V help| +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N disease| +Ѫ N fact|,undesired|ݬ,#kill|ɱ,#die|,crime| +Ѫ N fund|ʽ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N fact|,check|,#liquid|Һ,medical|ҽ +Ѫ N part|,%AnimalHuman|,nerve| +Ѫܲ N disease| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N attribute|,strength|,&human|,&organization|֯ +ѪǮ N payment| +Ѫ ADJ aValue|ֵ,color|ɫ,red| +Ѫ쵰 N part|,%AnimalHuman| +Ѫ N trace|,#AnimalHuman|,#liquid|Һ +Ѫ N trace|,#bleed|Ѫ +Ѫ N part|,%AnimalHuman| +Ѫ V slander|̰ +Ѫ N facilities|ʩ,@store|,#part|,#liquid|Һ,medical|ҽ +Ѫ N attribute|,strength|,&human|,&organization|֯ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫɺ N part|,%AnimalHuman|,liquid|Һ,many| +Ѫ N attribute|,attachment|,&AnimalHuman| +Ѫ N attribute|,physique|,&AnimalHuman| +ѪŨˮ V aValue|ֵ,relatedness|,intimate| +Ѫ N disease| +Ѫ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman|,flesh| +Ѫ V phenomena|,miserable| +Ѫģ ADJ phenomena|,miserable| +Ѫ ADJ aValue|ֵ,relatedness|,intimate| +Ѫɫ N attribute|,color|ɫ,&skin|Ƥ +Ѫ˨ N disease| +Ѫˮ N part|,%AnimalHuman|,liquid|Һ +Ѫ N part|,%AnimalHuman| +Ѫͳ N attribute|,source|Դ,&human| +Ѫ N bacteria|΢ +Ѫ没 N disease| +ѪС N part|,%AnimalHuman|,liquid|Һ +Ѫ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +Ѫ N attribute|,kind|,&part|,#AnimalHuman|,#liquid|Һ +Ѫ N attribute|,courage|,&human| +Ѫѹ N attribute|,strength|,&AnimalHuman| +Ѫѹ N tool|þ,*measure| +ѪҺ N attribute|,strength|,&human|,&organization|֯ +ѪҺ N part|,%AnimalHuman|,liquid|Һ +ѪҺѧ N knowledge|֪ʶ +Ѫ N clothing| +Ѫӡ N trace|,#liquid|Һ +ѪѲ N disease| +Ѫȷ ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +ѪԵ N attribute|,attachment|,&AnimalHuman| +Ѫծ N thing|,$owe|Ƿ,#kill|ɱ +ѪծѪ V revenge| +Ѫս V fight|,military| +Ѫ N disease| +Ѫ N trace|,#liquid|Һ +Ѫհ߰ N aValue|ֵ,appearance| +ѫ N result|,desired|,#succeed|ɹ +ѫ N result|,desired|,#succeed|ɹ +ѫ N human|,royal| +ѫ N result|,desired|,#succeed|ɹ +ѫҵ N result|,desired|,#succeed|ɹ +ѫ N tool|þ,*reward|,$GiveAsGift|,desired| +Ѭ V cook| +Ѭ V pollute|ʹ +Ѭ V remove|,instrument=gas| +Ѭ N wind| +ѬȾ V CauseAffect|Ⱦ +Ѭ V cultivate| +Ѭ ADJ aValue|ֵ,temperature|¶,hot| +Ѭ N medicine|ҩ +Ѭ V cook| +ѭ V obey|ѭ +ѭ ADJ aValue|ֵ,property|,circulate|ѭ +ѭ V circulate|ѭ +ѭ N symbol|,#quantity|,#DoSum| +ѭ N fact|,compete|,sport| +ѭ V circulate|ѭ +ѭϵͳ N part|,%AnimalHuman|,viscera|,*circulate|ѭ +ѭС N symbol|,#quantity|,#DoSum| +ѭ򽥽 V prosper|,manner=steady| +ѭѭ V teach| +Ѯ N time|ʱ,TenDays|Ѯ +Ѯ N time|ʱ,year| +ѯ V ask| +ѯ V ask|,content=price|۸,commercial| +ѯ V ask| +ѯ N human|,*ask| +Ѱ V LookFor|Ѱ +Ѱ ADJ aValue|ֵ,kind|,ordinary| +Ѱ ADJ aValue|ֵ,rank|ȼ,average| +Ѱ̼ V suicide|ɱ +Ѱ V LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=place|ط +Ѱ V investigate| +Ѱ V LookFor|Ѱ,means=cry| +Ѱ N tool|þ,*LookFor|Ѱ,#cry| +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V SeekPleasure|Ѱ +Ѱ V obtain|õ,means=LookFor|Ѱ +Ѱ V LookFor|Ѱ,content=time|ʱ +Ѱ V tease|ȡ +Ѱ V LookFor|Ѱ +Ѱ V seek|ıȡ +Ѱ˼ V think|˼ +Ѱ V suicide|ɱ +Ѱ V MakeTrouble| +Ѱժ V compile|༭ +Ѱ V LookFor|Ѱ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V control| +ѱ V cultivate|,agricultural|ũ +ѱ V cultivate|,agricultural|ũ +ѱ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ˳ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +ѱ V cultivate|,agricultural|ũ +Ѳ V check| +Ѳ V check|,police|,military| +ѲԱ N human|,employee|Ա,sport| +Ѳ N human|,#occupation|ְλ,police| +Ѳ N institution|,police|,past| +Ѳ V check| +Ѳ V check| +Ѳ V VehicleGo|ʻ +Ѳ N weapon|,$firing| +Ѳ V circulate|ѭ +Ѳشʹ N human|,#occupation|ְλ,official|,diplomatic|⽻ +Ѳ V investigate| +Ѳ N human|,#occupation|ְλ,police| +Ѳ V tour| +Ѳ V check| +Ѳ߳ N LandVehicle|,check|,police| +Ѳ߶ N part|,%institution|,*check|,police| +Ѳͧ N ship|,*check|,police| +Ѳ V investigate| +Ѳ V look| +ѲԱ N human|,*investigate| +Ѳ N human|,*investigate| +Ѳ V investigate|,royal| +Ѳ N weapon|,ship|,military| +Ѳ V cure|ҽ +Ѳ߮ V VehicleGo|ʻ,military| +ѳ V bury| +ѳ V die| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V die|,time=undertake|,#duty|,desired| +ѳ V bury| +ѳְ V die|,time=undertake|,#duty|,desired| +Ѵ N water|ˮ,#unfortunate| +Ѵ N time|ʱ,#water|ˮ,#unfortunate| +Ѵ N attribute|,circumstances|,#water|ˮ,#unfortunate|,&waters|ˮ +ѵ N regulation| +ѵ V teach| +ѵ N text| +ѵ V ExpressAgainst|Ǵ +ѵ N text|,*persuade|Ȱ˵ +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V teach| +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V ExpressAgainst|Ǵ +ѵ V persuade|Ȱ˵ +ѵ V drill|ϰ +ѵ V teach| +ѵ N InstitutePlace|,@teach|,@study|ѧ +ѵ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ѵ ADJ aValue|ֵ,property|,$teach|,desired| +ѵ N human|,*drill|ϰ +ѵ N text|,*teach| +ѵ V urge|ʹ +ѵʾ N text|,*teach| +ѵ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ѵ V teach| +ѵ V fact|,teach|,#behavior|ֹ +ѵڬ N fact|,research|о,#language| +ѵڬѧ N knowledge|֪ʶ,#language| +Ѷ V ask| +Ѷ N information|Ϣ +Ѷ N symbol| +Ѷ V ask| +Ѷ V interrogate| +ѶϢ N information|Ϣ +ѷ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +ѷ ADJ inferior| +ѷɫ V inferior| +ѷλ V cease|ͣ,content=undertake|,politics| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADV aValue|ֵ,duration|,TimeShort| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹײڶ ADJ aValue|ֵ,behavior|ֹ,sudden| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +Ѹ ADJ aValue|ֵ,speed|ٶ,fast| +ѹ V approach|ӽ +ѹ N attribute|,strength|,&entity|ʵ +ѹ V delay| +ѹ V frighten|Ż +ѹ V gamble|IJ,crime| +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹ N tool|þ,#young|,*recreation| +ѹ ADJ aValue|ֵ,ability|,unable|ӹ,$OutOfOrder| +ѹס V BeUnable|,content=restrain|ֹ +ѹ N material|,heavy|,#ship|,#transport| +ѹ ADJ aValue|ֵ,weight|,heavy| +ѹ V surpass|ǿ +ѹס V BeAble|ܹ,content=restrain|ֹ +ѹ V MakeLower| +ѹ V subtract|,patient=price|۸,commercial| +ѹ V defeat|սʤ +ѹ ADV {emphasis|ǿ} +ѹ V subtract|,patient=price|۸,commercial| +ѹ V soothe|ο +ѹ N attribute|,strength|,&entity|ʵ +ѹ N tool|þ,*measure| +ѹ N tool|þ,cubic|,*cook| +ѹ N machine|,*press|ѹ +ѹ N tool|þ,*measure| +ѹ· N machine|,*press|ѹ,#route|· +ѹ V damage| +ѹ N human|,*damage| +ѹǮ N money|,$GiveAsGift|,#young| +ѹ V shrink|С +ѹ V subtract| +ѹ N food|ʳƷ +ѹ N machine|,*shrink|С +ѹ N gas|,$shrink|С +ѹʹ V painful|ʹ +ѹ V press|ѹ +ѹ V restrain|ֹ +ѹե V press|ѹ +ѹե V rob| +ѹ V restrain|ֹ +ѹ ADJ aValue|ֵ,property|,restrain|ֹ +ѹ V produce|,industrial| +Ѻ V detain|ס,police| +Ѻ V pawn|Ѻ +Ѻ V pawn|Ѻ,commercial| +Ѻ V sign|д +Ѻ N symbol|,#name| +Ѻ V transport|,manner=defend|,police| +Ѻ V transport|,patient=artifact|˹,manner=defend| +Ѻ V pawn|Ѻ,commercial| +Ѻ V pawn|Ѻ +Ѻ V transport|,manner=defend|,police| +Ѻ N expenditure|,$pawn|Ѻ +Ѻ V borrow|,possession=fund|ʽ +Ѻ N fund|ʽ,$borrow| +Ѻ V transport|,manner=defend|,police| +Ѻβ V sign|д +Ѻ V transport|,manner=defend| +Ѻ N expenditure| +ѻ N bird| +ѻƬ N medicine|ҩ,?addictive|Ⱥ +ѻƬս N fact|,fight|,ProperName|ר +ѻȸ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ѽ N bird| +Ѽ N part|,%bird|,$eat|,embryo| +Ѽ̽ N waters|ˮ,linear|,ProperName|ר,(China|й) +Ѽ N material|,?clothing| +Ѽñ N clothing|,#head|ͷ +Ѽ N bird| +ѼӶ N food|ʳƷ,#bird| +Ѽ N PenInk|ī,*write|д +ѽ ECHO surprise| +Ѿ N shape| +Ѿͷ N human|,employee|Ա,female|Ů,past| +Ѿͷ N human|,young|,female|Ů +Ѿ N part|,%plant|ֲ,limb|֫ +Ѿ N human|,employee|Ա,female|Ů,past| +ѿ N part|,%plant|ֲ,embryo| +ѿ N material|,?drinks|Ʒ + N material|,?tool|þ,*decorate|װ + N part|,%AnimalHuman|,*bite|ҧ + N shape| + N disease| + N part|,%AnimalHuman|,*bite|ҧ + N furniture|Ҿ,@sleep|˯ + N part|,%AnimalHuman|,*bite|ҧ + N image|ͼ,$carve| + N tool|þ,*wipe| + N location|λ,%part|,#AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N tool|þ,*wipe| + N part|,%AnimalHuman|,#bite|ҧ + N stone|ʯ,waste| + N part|,%AnimalHuman|,#bite|ҧ + N part|,%AnimalHuman|,#bite|ҧ + N tool|þ,#wipe| + N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ + N part|,%implement| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jamaica|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Jamaica|) +Ԫ N money|,(Jamaica|) +ǩ N tool|þ,*clean|ʹ +ʯ N stone|ʯ,waste| +ˢ N tool|þ,*wipe| +ʹ V painful|ʹ + N tool|þ,*clean|ʹ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N human|,*cure|ҽ,medical|ҽ +ܲ N disease| + N disease| + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,bad|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ,*fly| + N part|,%land|½,skin|Ƥ +± N part|,%land|½,skin|Ƥ + N part|,%information|Ϣ,heart| + N institution|,politics|,past|,(China|й) + N institution|,politics|,past|,(China|й) + N human|,past| + N location|λ,surrounding|Χ,space|ռ + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ŵ N place|ط,capital|,ProperName|ר,(Greece|ϣ) +Ź ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ź N attribute|,name|,&human| +ź N attribute|,name|,other|,&entity|ʵ +żӴ N place|ط,capital|,ProperName|ר,(Indonesia|ӡ) +³ز N waters|ˮ,linear|,ProperName|ר,(China|й) +ʿ N human|,literature| +׹ ADJ aValue|ֵ,kind|,mass| +µ N place|ط,capital|,ProperName|ר,(Cameroon|¡) + N emotion|,#WhileAway| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + V amend| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N location|λ,#InstitutePlace| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ +ư V KeepSilence|˵ +ư N human|,undesired|ݬ,*disable|м,#speak|˵ +ƾ N shows| +ƿ V KeepSilence|˵ + N SportTool|˶ +Ů N human|,undesired|ݬ,female|Ů,*disable|м,#speak|˵ + N human|,undesired|ݬ,*disable|м,#speak|˵ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N place|ط,ProperName|ר +ǵ N human|,male|,%publications|鿯 +ǵǺ N waters|ˮ,linear|,ProperName|ר,(Italy|) +ǵ˹DZ N place|ط,capital|,ProperName|ר,(Ethiopia|) +Ƕ N place|ط,capital|,ProperName|ר,(Yemen|Ҳ) +Ƿ N place|ط,ProperName|ר +Ǿ N human|,desired|,*compete|,*win|ʤ,$reward|,sport| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +ɣ N place|ط,provincial|ʡ,ProperName|ר,(US|) + N chemical|ѧ + N crop|ׯ,?material| + N waters|ˮ,linear|,ProperName|ר,(South America|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Armenia|) + N place|ط,country|,ProperName|ר,(Asia|) + N language|,#country|,ProperName|ר +ŷ½ N place|ط,ProperName|ר +ȴ N part|,%earth| +ɭ N place|ط,capital|,ProperName|ר,(Paraguay|) +̫֯ N community|,commercial|,ProperName|ר,(Asia|) + N place|ط,city|,ProperName|ר,(US|) + N chemical|ѧ +ͭ N metal| +ϸ N community|,country|,ProperName|ר,(Asia|) +ϸ N place|ط,ProperName|ר,(Asia|) + N chemical|ѧ +Ƶ ADJ aValue|ֵ,speed|ٶ,#sound| + ADJ aValue|ֵ,speed|ٶ,#sound| + N fact|,compete|,sport|,(Asia|) +˻ N fact|,compete|,sport|,(Asia|) + ADJ aValue|ֵ,attachment|,ProperName|ר,(Asia|) + N place|ط,ProperName|ר,(Asia|) + N human|,(Asia|) + V flurried| + STRU {MaChinese|} + N part|,%AnimalHuman|,mouth| + V swallow| +ʺ N part|,%AnimalHuman|,mouth| +ʺ N place|ط,important| +ʺ N disease| + V die| +ͷ N part|,%AnimalHuman|,mouth| + V swallow| + N disease| +˸ V cut|,PartOfTouch=part|,#mating| +˸ N cut|,PartOfTouch=part|,#mating| +˸ V cut|,PartOfTouch=part|,#mating| +˸ V damage| +˸ N human|,*damage| + N CloudMist| + N addictive|Ⱥ + N medicine|ҩ,?addictive|Ⱥ +̲ N addictive|Ⱥ +̳ N CloudMist|,stone|ʯ,waste| +̴ N part|,%building|,%implement|,*exhale|,#gas| +̴ N tool|þ,*addict|Ⱥ +̴˶ N part|,%tool|þ,#addict|Ⱥ +̴ N part|,%tool|þ,#addict|Ⱥ +̵ N part|,%addictive|Ⱥ,waste|,tail|β +̶ N tool|þ,*addict|Ⱥ +̶˿ N addictive|Ⱥ +̸ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̹ N human|,*addict|Ⱥ,undesired|ݬ +̹ N human|,*addict|Ⱥ,undesired|ݬ,crime| +̹ N part|,%tool|þ,#addict|Ⱥ +̺ N tool|þ,cubic|,@put|,#addictive|Ⱥ +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N tool|þ,*WhileAway|,*congratulate|ף +̻ N place|ط,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +̻ N stone|ʯ,waste|,#addictive|Ⱥ +̻Ҹ N tool|þ,cubic|,@put|,#waste|,#addictive|Ⱥ +̻ N edible|ʳ,generic|ͳ +̻ N fire| +̻ N tool|þ,*WhileAway|,*congratulate|ף +̼ N natural|Ȼ,#addictive|Ⱥ,undesired|ݬ +̾ N addictive|Ⱥ +̾ N tool|þ,*addict|Ⱥ,generic|ͳ +̾ N addictive|Ⱥ +ú N material|,$burn| + N human|,*addict|Ⱥ,undesired|ݬ +Ļ N CloudMist| +ũ N human|,*planting|ֲ,#addictive|Ⱥ,agricultural|ũ +ƨ N part|,%addictive|Ⱥ,waste|,tail|β +˿ N addictive|Ⱥ + N chemical|ѧ +̨ N place|ط,city|,ProperName|ר,(China|й) +Ͳ N part|,%building|,%implement|,*exhale|,#gas| +ͷ N part|,%addictive|Ⱥ,waste|,tail|β + N addictive|Ⱥ + N CloudMist| + ADJ aValue|ֵ,clearness|,blurred| +ɢ V disappear|ʧ +Ҷ N addictive|Ⱥ + N RainSnow|ѩ + N CloudMist| + N CloudMist| + N tool|þ,*addict|Ⱥ + N CloudMist| + N gas| + V sink|³ + V spill| + V sting| +͹ V irrigate|,agricultural|ũ +û V sink|³ +û V spill| + V die|,cause=sink|³ + N material|,?food|ʳƷ,salty| +ΰ N material|,?food|ʳƷ,salty| +γ N InstitutePlace|,@produce| +γ N facilities|ʩ,*produce|,#material|,industrial| +κ N waters|ˮ,surfacial|,salty| +λ N material|,?food|ʳƷ,salty| +μ N land|½,barren| +ξ N InstitutePlace|,@produce| +± N material|,?food|ʳƷ +Ũ N attribute|,concentration|Ũ,&inanimate| +ˮ N drinks|Ʒ +Ȫ N liquid|Һ,?material| +˪ N natural|Ȼ,salty| +ˮ N liquid|Һ,?medicine|ҩ + N chemical|ѧ + N InstitutePlace|,*produce|,#material|,industrial| +ҵ N affairs|,*produce|,#material|,industrial| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,tightness|ɽ,tight| + N character|,surname|,human|,ProperName|ר +ϰ V punish|,police| +ϳ V punish|,police| +ϳͲ V punish| +ϴ V attack|,manner=strong|ǿ,police| +϶ N time|ʱ,winter| +Ϸ V obstruct|ֹ +ϸ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,strict| +ϸ V conduct|ʵʩ,manner=strict| +Ϻ ADJ aValue|ֵ,temperature|¶,cold| +Ͻ ADJ aValue|ֵ,tightness|ɽ,tight| +Ͻ ADJ aValue|ֵ,behavior|ֹ,strict| +Ͻ ADJ aValue|ֵ,content|,concise|,desired| +Ͻ V prohibit|ֹ,manner=strict| +Ͼ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ͽ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strict| + V order| + ADJ aValue|ֵ,tightness|ɽ,tight| + ADJ aValue|ֵ,behavior|ֹ,strict| +ʵ ADJ aValue|ֵ,tightness|ɽ,tight| + V obey|ѭ,manner=strict| +˿Ϸ V fit|ʺ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,occasion|,stately|ׯ,desired| + V conduct|ʵʩ,manner=strict| + N fact|,damage| +ʵʵ ADJ aValue|ֵ,tightness|ɽ,tight| +ɼ V treat|Դ,target=self|,manner=strict| +Դ V wait|ȴ,military| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؼ N disease| + N attribute|,property|,urgent|,&event|¼ + V grind|ĥ + V research|о +ж V study|ѧ,manner=attentive|ϸ +з V produce| +о V discuss| +о V research|о +о V think|˼ +о N human|,*study|ѧ,*research|о,education| +о N part|,%InstitutePlace|,*research|о,#knowledge|֪ʶ +о N InstitutePlace|,@research|о,#knowledge|֪ʶ +о뿪 V produce| +оԱ N human|,#occupation|ְλ,*research|о,#knowledge|֪ʶ +оԺ N InstitutePlace|,@research|о,#knowledge|֪ʶ +о N human|,*research|о +ĥ V grind|ĥ +ĥ V rub|Ħ +ĥ N material|,*rub|Ħ +ĥ ADJ aValue|ֵ,ability|,able|,rub|Ħ + V discuss| + V think|˼ +ֻ N fact|,discuss|,#knowledge|֪ʶ +ϰ V research|о + V research|о + V produce| + V produce|,industrial| + V produce|,medical|ҽ,(China|й) + N human|,*produce| + N part|,%land|½,skin|Ƥ + N stone|ʯ,?material| +Ҷ N part|,%earth|,mouth| +ҽ N stone|ʯ,liquid|Һ +ʯ N stone|ʯ,?material| + N material|,?food|ʳƷ,salty| + N livestock| + V delay| + V enlarge| +Ӱ N place|ط,city|,ProperName|ר,(China|й) +ӱ N place|ط,ProperName|ר,(China|й) +ӳ V enlarge| +ӳ V delay| +Ӹ V delay| +ӻ V delay| + V MakeBetter|Ż,PatientAttribute=strength| + V MakeBetter|Ż,PatientAttribute=strength| +Ƹ V employ| + V delay| + V employ| + V employ|,commercial| + V FormChange|α,StateFin=enlarge| + V enlarge| + V delay| + V GoOn| + V KeepOn|ʹ + V delay| + N character| + N character|,surname|,human|,ProperName|ר + V speak|˵ + N text|,$speak|˵ +Ա ADJ aValue|ֵ,correctness|,accurate|׼,desired| +Բ ADJ aValue|ֵ,behavior|ֹ,^sincere|,undesired|ݬ +Գ ADJ aValue|ֵ,behavior|ֹ,strict| +Դ V explain|˵ +Դ V teach| +Դ N text|,$speak|˵ +Դ N text|,$speak|˵ +Զ V disobey|Υ,content=MakeAppointment|Լ +Թں V reconcile| +Թʵ V boast| +Ժ V reconcile| +Լ ADJ aValue|ֵ,content|,concise|,desired| + N text|,$speak|˵ + N system|ƶ,#speak|˵,free| +С˵ N text| + V differ|ͬ,scope=thought|ͷ +̸ N text|,$speak|˵ +̸ֹ N attribute|,behavior|ֹ,&human| +ƴ V obey|ѭ +֮ N information|Ϣ + N fact|,#act|ж,#text| + V language|,$speak|˵ + V speak|˵ + ADJ aValue|ֵ,behavior|ֹ,fluent|,desired| +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N attribute|,color|ɫ,&physical| + N attribute|,countenance|,&AnimalHuman| + N attribute|,reputation|,&human|,&organization|֯ + N character|,surname|,human|,ProperName|ר + N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N attribute|,reputation|,&human|,&organization|֯ +ɫ N attribute|,color|ɫ,&physical| +ɫ N attribute|,countenance|,&AnimalHuman| +ɫ N material|,#color|ɫ,*apply|ͿĨ,*draw|,*AlterColor|ɫ + N character|,surname|,human|,ProperName|ר + N human|,religion|ڽ + N humanized|,#die| + N human|,fierce|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,hot| + N disease| +׵ N human|,official|,ProperName|ר,(China|й) +׻ N human|,official|,ProperName|ר,(China|й) +׻ N human|,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,hot| + N time|ʱ,season|,hot| + N time|ʱ,summer| + ADJ aValue|ֵ,temperature|¶,hot| +֢ N disease| + V obey|ѭ + N part|,%inanimate|,%space|ռ,edge| + N part|,%land|½,#waters|ˮ,edge| + N part|,%waters|ˮ,edge| + V wrap| + PREP {direction} +ذ ADJ aValue|ֵ,location|λ +ذ N part|,%land|½,#waters|ˮ,edge| +ر V wrap| +ر߶ V wrap| +ظ N fact|,prosper| +ظ N process| +غ ADJ aValue|ֵ,location|λ +غ N part|,%land|½,#waters|ˮ,edge| +غ N place|ط,#waters|ˮ +غ N location|λ,%waters|ˮ +ؽ ADJ aValue|ֵ,location|λ +ؽ N location|λ,%route|· +ؽײ N FlowerGrass| +· N location|λ,%route|· +; N location|λ,%route|· +Ϯ V obey|ѭ + ADJ aValue|ֵ,location|λ + V use| + PREP {direction} +һϢ V ill|̬,medical|ҽ + V cover|ڸ + V press|ѹ + V shut|ر +ڱ V cover|ڸ +ڱ V hide| +ڲ V hide| +ڶ V deceive|ƭ +ڸ V HideTruth| +ڸ V cover|ڸ +ڻ V protect| +ڻ V protect|,military| +ڻ N army| + V bury| +˶Ŀ V HideTruth| +˶Ŀ V deceive|ƭ +ɱ V attack|,manner=sudden|,military| + V HideTruth| + N facilities|ʩ,space|ռ,*protect|,military| +Ϯ V attack|,manner=sudden|,military| +ӳ V ServeAsFoil| + N part|,%AnimalHuman|,#eye| + N shape| +۰Ͱ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +۰ N part|,%AnimalHuman|,#eye| +۲ N disease|,#eye| +۲ V jealous|ʼ +۵ N location|λ,%eye| +۸ N attribute|,circumstances|,happy|,#look|,&human| +۹ N experience| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +۹Զ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ۺ V jealous|ʼ +ۻ V disable|м,scope=look| +ۻ ADJ aValue|ֵ,content|,disorder| +ۼ ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +ۼ ADV aValue|ֵ,duration|,TimeShort| +۽ N part|,%AnimalHuman|,#eye| +۽ë N part|,%AnimalHuman|,hair|ë +۽ N experience| +۾ N part|,%AnimalHuman|,#eye| +۾ ADJ aValue|ֵ,form|״,dented| +۾ N tool|þ,*look|,#eye| +۾ N beast| +ۿ ADJ aValue|ֵ,duration|,TimeShort| +ۿ N knowledge|֪ʶ,medical|ҽ +ۿ N part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +ۿҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ۿ N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,liquid|Һ + N location|λ,%eye| + N attribute|,ability|,#judge|ö,&human| + N attribute|,ability|,#look|,&AnimalHuman| + N part|,%AnimalHuman|,#eye| +ֿ ADJ aValue|ֵ,behavior|ֹ,clever|,desired| + N part|,%AnimalHuman|,skin|Ƥ +Ƥ N part|,%AnimalHuman|,skin|Ƥ +Ƥ N location|λ +Ƥ N time|ʱ,now| +ǰ N time|ʱ,now| +ǰ N wealth|Ǯ + N part|,%AnimalHuman|,#eye| +Ȧ N part|,%AnimalHuman|,#eye| + V jealous|ʼ +ɫ N attribute|,countenance|,&AnimalHuman| + N attribute|,ability|,#look|,&AnimalHuman| + N attribute|,countenance|,&AnimalHuman| + N experience| + ADJ aValue|ֵ,relatedness|,unfamiliar|϶,undesired|ݬ +ʺ N stone|ʯ,#eye|,waste| + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N part|,%AnimalHuman|,#eye| + N time|ʱ,now| + N human|,*help|,#police|,crime| + N image|ͼ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,#eye| +ҩ N medicine|ҩ,#eye| +ҩˮ N medicine|ҩ,#eye| +Ӱ N image|ͼ + V BeUnable| + V stupefied|ľȻ +ж N human|,enemy| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N stone|ʯ,#eye|,waste| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ +ܱ V change| + V illuminate|,industrial| + V grow|ɳ + N chemical|ѧ + N text|,redundant| + V RegardAs|,entertainment| + V change| + V deduce| + V drill|ϰ + V explain|˵ + V perform|,entertainment| +ݱ V change| +ݲ V disseminate|,entertainment| +ݳ V perform|,entertainment| +ݳ V perform|,entertainment| +ݻ V change| +ݼ N attribute|,ability|,perform|,&human| +ݽ V speak|˵ +ݽ N text|,$speak|˵ +ݽ N fact|,prosper| +ݾ V perform|,entertainment| + V drill|ϰ,military| +ʾ V show|,content=example|ʵ +ʾ N fact|,*show|,#example|ʵ +˵ V speak|˵ +˵ N text|,$speak|˵ +˵ N human|,*speak|˵ + V calculate| + V study|ѧ +ϰ V drill|ϰ,military| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| + N knowledge|֪ʶ,#perform|,entertainment| + N text| + V deduce| +Ա N human|,#occupation|ְλ,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + V RegardAs|,ResultIsa=human|,important|,entertainment| + V perform|,entertainment| + N human|,*perform|,entertainment| +Ա N human|,*perform|,entertainment| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +޸ N attribute|,circumstances|,happy|,#love|,&human| +޸ N music|,#love| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,content|,#love| +ʫ N text|,#love| +ʷ N fact|,#love| + N weather| + N facilities|ʩ,#liquid|Һ,space|ռ + N bird| + N character|,surname|,human|,ProperName|ר + N crop|ׯ +ȸ N bird| +β N clothing|,#body| + N food|ʳƷ + N fish| + N bird| + V disgust| + V disgust| +ᷳ V disgust| + V disgust| + V disgust| + V disgust| +ʳ֢ N disease| + N bacteria|΢ + N stationery|ľ,#write|д,#draw| + N stationery|ľ,#write|д,#draw| +̨ N stationery|ľ,#write|д,#draw| + N bird| + N sound| + N text|,*condole|° + N attribute|,behavior|ֹ,&human| + N fire| + N tool|þ,*WhileAway|,*congratulate|ף + N fact|,eat|,#entertain|д + N fact|,eat|,entertain|д + V entertain|д +ϯ N fact|,eat|,#entertain|д + N expression| + N expression| + V check| + V prove|֤ + N tool|þ,*measure|,#electricity| +鷽 N document|,#medicine|ҩ,#medical|ҽ,(China|й) + V check|,content=artifact|˹,commercial| + V check|,content=ability|,#look| + V check| + V check|,content=artifact|˹,commercial| +鿴 V check| + V check|,content=liquid|Һ,medical|ҽ +ʬ V check|,content=body|,#die|,medical|ҽ,police| +ʬ N human|,#occupation|ְλ,*check|,#body|,#die|,medical|ҽ,police| + V check| + V check| +Ѫ V check|,content=liquid|Һ,medical|ҽ +֤ V prove|֤ +֤ N human|,*prove|֤ + V check|,content=fund|ʽ,commercial| + V damage| + N phenomena|,undesired|ݬ,#unfortunate| +꼰 V damage| + V request|Ҫ + V request|Ҫ + V request|Ҫ + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| + ADJ aValue|ֵ,age|,young| + N animal|,young| + N crop|ׯ,young| + N fish|,young| + N plant|ֲ,young| + N shows| + N bird| + N crop|ׯ,young| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| +÷ N fruit|ˮ + N tree| + N fruit|ˮ +֦ N fish| + V disseminate| + V lift| + V spread| + V shake|ҡ,patient=tool|þ +ﳤܶ V show|,content=able| +ﳤ V show|,content=able| +ﳤȥ V leave|뿪 +﷫ V start|ʼ,content=VehicleGo|ʻ +ü V satisfied| + V WellKnown| + V remove| + N MusicTool| + N tool|þ,*disseminate|,#sound| + V frighten|Ż + V satisfied| +Ե V satisfied| + N place|ط,city|,ProperName|ר,(China|й) + N waters|ˮ,linear|,ProperName|ר,(China|й) +ӽ N waters|ˮ,linear|,ProperName|ר,(China|й) + N beast| + V pretend|װ + V attack|,manner=pretend|װ,military| + V deceive|ƭ +װ V pretend|װ + N disease| + N livestock| +С N facilities|ʩ,route|· + N place|ط,city|,ProperName|ר,(China|й) + N FlowerGrass| +ަ N AlgaeFungi|ֲ + N livestock|,young| + N PenInk|ī,*write|д + N part|,%AnimalHuman|,*feel| +ë N part|,%livestock|,hair|ë,?material| +ë N clothing| +ë N human|,#occupation|ְλ,commercial| +ë״ ADJ aValue|ֵ,form|״ +Ĥ N part|,%AnimalHuman| +Ƥ N part|,%livestock|,skin|Ƥ,?material| +Ƥֽ N paper|ֽ + N part|,%livestock|,hair|ë,?material| + N food|ʳƷ,#livestock| + N character|,surname|,human|,ProperName|ר +ˮ N part|,%AnimalHuman|,liquid|Һ + N fruit|ˮ +ʻƤ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N human|,#occupation|ְλ,agricultural|ũ,*foster|,*TakeCare|,#livestock| + ADJ aValue|ֵ,source|Դ,foreign| + ADJ aValue|ֵ,time|ʱ,now| + N money| + N waters|ˮ,surfacial| +ײ N part|,%vegetable|߲,embryo|,$eat| +ײ N vegetable|߲ + N material|,?edible|ʳ + N LandVehicle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ػ N FlowerGrass|,?medicine|ҩ + N house|,foreign| + N clothing|,foreign| + N tool|þ,*beat| + N human|,foreign|,undesired|ݬ + N material|,*build| + N tool|þ,*lighting|ȼ + N artifact|˹,foreign| + ADJ aValue|ֵ,pattern|ʽ,foreign| + N water|ˮ,#waters|ˮ + ADJ aValue|ֵ,pattern|ʽ,foreign| + N MusicTool| + N human|,foreign| +ɤ N sound|,#music| +ʽ ADJ aValue|ֵ,kind|,foreign| + N tool|þ,#young|,*recreation| +Ϊ V use|,patient=foreign| + N InstitutePlace|,past|,commercial| + ADJ aValue|ֵ,area|,wide| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,posture|,great|ΰ,desired| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + V satisfied| + ADJ aValue|ֵ,content|,complicated|,undesired|ݬ +Ե V satisfied| + V exist| + N material|,liquid|Һ,$burn| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,behavior|ֹ,opened| + ADJ aValue|ֵ,contrariness|,positive| + ADJ aValue|ֵ,time|ʱ,now| + N celestial| + N time|ʱ,spring| + N electricity| +Υ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,strong|ǿ + N facilities|ʩ,#house| +ص N facilities|ʩ,route|· + N lights|,#celestial| + N part|,%electricity| + N part|,%electricity| + N law|ɷ,#time|ʱ +ƽ N sound|,#language| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ +ɡ N tool|þ,*protect|,#weather| +̨ N part|,%house|,space|ռ + ADJ aValue|ֵ,kind| +١ N character|,surname|,human|,ProperName|ר + N disease| + N gas| + V ize|̬ + N chemical|ѧ + N metal| +þ N metal| + N metal| + N chemical|ѧ + N gas| + V CausePartMove|,direction=upper| + N character|,surname|,human|,ProperName|ר + V depend| + V respect| + V depend| + N place|ط,capital|,ProperName|ר,(Burma|) + N shape|,angular| + V CausePartMove|,direction=upper| +Ľ V respect| +˱Ϣ V depend| + V look|,direction=upper| + V look|,direction=upper| +쳤̾ V sigh|̾ + V look|,direction=upper| + V request|Ҫ + V LieDown| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + V depend| + V itch| + V itch| + V GiveBirth| + V ProvideFor| + ADJ aValue|ֵ,clan| + N character|,surname|,human|,ProperName|ר + V cultivate| + V maintain| + V provide| + V rest|Ϣ + V ProvideFor|,patient=army|,military| + V rest|Ϣ,cause=ill|̬ + V cultivate| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ + N human|,family|,male| +ĸ N human|,family| + V maintain| + V ProvideFor| + N InstitutePlace|,@foster|,#bird| + V maintain| + V MakeLiving|ı + V provide| +Ͻ N payment| +Ժ N InstitutePlace|,@TakeCare|,#aged| + N natural|Ȼ,*CauseToLive|ʹ,*CauseToGrow|ʹɳ,$consume|ȡ +· V maintain|,patient=space|ռ +· N expenditure| +ĸ N human|,family|,female|Ů +Ů N human|,family|,female|Ů,young| + V maintain|,patient=mental| + V maintain|,medical|ҽ + V foster|,patient=fish| + N facilities|ʩ,*foster|,#fish| + V ProvideFor| +ֳ V foster|,agricultural|ũ + V foster|,patient=livestock| + N InstitutePlace|,@foster|,#livestock| + N human|,family|,male|,young| + ADJ aValue|ֵ,circumstances|,peaceful|,desired| + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,kind|,&physical| + N example|ʵ +Ϸ N shows| + N readings| + N machine| +Ƭ N shows| +Ʒ N artifact|˹,generic|ͳ,#example|ʵ +ƷԱ N human|,#occupation|ְλ,*check| +ʽ N attribute|,pattern|ʽ,&physical| + ADJ qValue|ֵ,amount|,all|ȫ + N artifact|˹,generic|ͳ,#example|ʵ + N attribute|,appearance|,&physical| + N attribute|,bearing|̬,&human| + V spill| + V invite| + V request|Ҫ + V please|ȡ + V request|Ҫ,ResultEvent=praise|佱 + V attack|,military| + V assemble|ۼ + ADJ aValue|ֵ,property|,invite| + V invite| + N fact|,*compete|,sport| + N human|,*invite| + N location|λ,middle| + N part|,%AnimalHuman|,body| + N part|,%clothing|,body| + N attribute|,physique|,&human| + N part|,%AnimalHuman|,body| + N tool|þ,cubic|,@put| + N part|,%AnimalHuman|,body| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,linear|,*fasten|˩ + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N fact|,endorse|ӵ + N part|,%AnimalHuman|,body| + N MusicTool| + N fruit|ˮ + N tree| + N food|ʳƷ + N attribute|,size|ߴ,&AnimalHuman| + N attribute|,size|ߴ,&human| + N part|,%AnimalHuman|,body| +ᱳʹ V painful|ʹ +ʹ N disease| +Χ N attribute|,size|ߴ,body|,&human| +Χ N tool|þ,linear|,*fasten|˩ + N part|,%AnimalHuman|,body| +׵ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,viscera| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,undesired|ݬ,evil| + N humanized|,undesired|ݬ + N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,female|Ů,evil| + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ħ N humanized|,undesired|ݬ,evil| +ħ N human|,undesired|ݬ,evil| + N human|,undesired|ݬ,evil| + N method|,undesired|ݬ,*deceive|ƭ +Ի V deceive|ƭ + ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ +ұ ADJ aValue|ֵ,prettiness|,beautiful|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N treasure|䱦 + N community|,ProperName|ר,(China|й) +ҡ V shake|ҡ +ҡ V hesitate|ԥ +ҡ V wave|ڶ +ҡ N part|,%machine|,arm| +ҡ V VehicleGo|ʻ +ҡ V TalkNonsense|Ϲ˵ +ҡ V wave|ڶ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N music| +ҡ N music| +ҡ V shake|ҡ +ҡ V shake|ҡ +ҡ V wave|ڶ +ҡ N furniture|Ҿ,space|ռ,@sleep|˯ +ҡź V help|,scope=mental| +ҡǮ N place|ط,#wealth|Ǯ +ҡһ V change| +ҡͷ V reject|ؾ +ҡͷβ V satisfied| +ҡͷ V satisfied| +ҡβ V request|Ҫ,ResultEvent=pity| +ҡҡλ V shake|ҡ +ҡҡ׹ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +ҡҷ V wave|ڶ +ҡ N furniture|Ҿ,@sit| +Ң N human|,royal|,ProperName|ר,past| +Ң˴ N human|,desired|,past| +ң ADJ aValue|ֵ,distance|,far|Զ +ң V measure|,industrial| +ң V perception|֪ +ң V control| +ң V look|,direction=far|Զ +ңӦ V cooperate| +ңң ADJ aValue|ֵ,distance|,far|Զ +ңң V surpass|ǿ +ңң ADJ aValue|ֵ,duration|,TimeLong| +ңԶ ADJ aValue|ֵ,distance|,far|Զ +ңԶ ADJ aValue|ֵ,duration|,TimeLong| +Ҥ N facilities|ʩ,space|ռ,@produce|,#material| +Ҥ N facilities|ʩ,space|ռ,mine| +Ҥ N house| +Ҥ N house| +Ҥ N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +Ҥ N InstitutePlace|,commercial|,undesired|ݬ,@SeekPleasure|Ѱ +ҥ N information|Ϣ,undesired|ݬ,fake|α +ҥ N text|,literature| +ҥ V disseminate| +ҥ N information|Ϣ,undesired|ݬ,fake|α +Ҧ N character|,surname|,human|,ProperName|ר +ҧ V accuse|ظ +ҧ V bite|ҧ +ҧ V cry| +ҧ V hold| +ҧ V speak|˵ +ҧ V sting| +ҧ V judge|ö +ҧ V speak|˵ +ҧ V bite|ҧ,#fish|,patient=InsectWorm| +ҧ V connect| +ҧ V endure| +ҧ N bite|ҧ +ҧ N human|,undesired|ݬ,*disable|м,#speak|˵ +ҧĽ V PayAttention|ע,target=expression| +ҧ V bite|ҧ +ҧг V bite|ҧ +ҧס V bite|ҧ +ҧס V hold| +ҧ۶ V PayAttention|ע,target=expression| +ҧ ADJ aValue|ֵ,easiness|,difficult|,#speak|˵ +Ҩ V TakeOutOfWater| +Ҩ N tool|þ,cubic|,*TakeOutOfWater| +ҩ N chemical|ѧ +ҩ V kill|ɱ,instrument=poison| +ҩ N medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N material|,?medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N InstitutePlace|,*produce|,#medicine|ҩ,factory|,industrial| +ҩ N publications|鿯,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N document|,#medicine|ҩ,medical|ҽ +ҩ N InstitutePlace|,@sell|,@buy|,#medicine|ҩ +ҩ N expenditure|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ +ҩ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +ҩ N tool|þ,cubic|,*produce|,#medicine|ҩ +ҩ N medicine|ҩ +ҩʦ N human|,#occupation|ְλ,#medicine|ҩ +ҩ N drinks|Ʒ,#medicine|ҩ +ҩ N knowledge|֪ʶ,#medicine|ҩ +ҩ N tool|þ,*cure|ҽ +ҩ N medicine|ҩ +ҩũ N human|,#occupation|ְλ,agricultural|ũ +ҩũ N human|,#occupation|ְλ,agricultural|ũ,#medicine|ҩ +ҩƬ N medicine|ҩ +ҩƷ N medicine|ҩ,generic|ͳ +ҩƿ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩ N edible|ʳ,#medicine|ҩ +ҩʯ N medicine|ҩ +ҩˮ N medicine|ҩ,liquid|Һ +ҩ N medicine|ҩ +ҩζ N attribute|,odor|ζ,&medicine|ҩ +ҩζ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,contain|,#medicine|ҩ +ҩ N medicine|ҩ +ҩ N medicine|ҩ,generic|ͳ +ҩж N disease| +ҩ N tool|þ,@put|,#medicine|ҩ,medical|ҽ +ҩЧ N attribute|,effect|Ч,&medicine|ҩ +ҩ N attribute|,property|,&medicine|ҩ +ҩѧ N knowledge|֪ʶ,#medicine|ҩ +ҩҺ N medicine|ҩ +ҩҺ N medicine|ҩ,*wash|ϴ +ҩ N medicine|ҩ +ҩ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҩ N tool|þ,*sleep|˯,#medicine|ҩ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ ADV aValue|ֵ,time|ʱ,future| +Ҫ V beg| +Ҫ V expect| +Ҫ V request|Ҫ +Ҫ V spend| +Ҫ CONJ {condition|} +Ҫ AUX {modality|} +Ҫ N place|ط,route|·,military|,important| +Ҫ N fact|,important|,#police| +Ҫ CONJ {condition|} +Ҫ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ҪȻ CONJ {transition|ת} +Ҫ CONJ {condition|} +Ҫ N place|ط,military|,important| +Ҫ N facilities|ʩ,route|·,important| +Ҫ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ҫ N place|ط,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N part|,%entity|ʵ,important| +Ҫ N human|,crime|,undesired|ݬ +Ҫ V beg|,patient=artifact|˹ +Ҫ N human|,poor|,*beg|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫ N place|ط,military|,important| +Ҫ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ҫ V propose|,content=price|۸,commercial| +Ҫ N document|,important| +Ҫ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ V worried|ż +Ҫ N method|,important| +Ҫ N part|,%entity|ʵ,heart| +Ҫô COOR {or|} +Ҫ ADV aValue|ֵ,degree|̶,extreme| +Ҫ N fact|,$disgust|,undesired|ݬ +Ҫ V kill|ɱ +Ҫǿ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ҫ V request|Ҫ +Ҫ N human|,desired|,important| +Ҫ N facilities|ʩ,space|ռ,military| +Ҫ N fact|,important| +Ҫ CONJ {condition|} +Ҫ N part|,%entity|ʵ,heart| +Ҫ N information|Ϣ +Ҫ N information|Ϣ,important| +ҪЮ V force|ǿ +ҪЮ V frighten|Ż +ҪԲ ADJ aValue|ֵ,content|,simple|,desired| +ҪԱ N human|,desired|,important| +Ҫ V request|Ҫ,ResultEvent=wealth|Ǯ,commercial| +Ҫְ N affairs|,duty|,important| +Ҫּ N part|,%entity|ʵ,heart| +ҫ V AppearanceChange|۱ +ҫ ADJ aValue|ֵ,reputation|,glorious|,desired| +ҫ V illuminate| +ҫ ADJ aValue|ֵ,brightness|,bright| +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ +Ҭ N fruit|ˮ,$eat| +ҭ V ill|̬ +ҭ V refute| +Ү N character|,(China|й) +Үͻ N human|,religion|ڽ,ProperName|ר +Ү· N place|ط,capital|,ProperName|ר,(Israel|ɫ) +Ү N human|,religion|ڽ,ProperName|ר +Үջ N human|,religion|ڽ,ProperName|ר +ү N humanized| +ү N human|,family|,male| +ү N human|,male|,adult| +ү N human|,male|,mass| +ү N human|,male|,mass| +ү N human|,family|,male| +ү N human|,male| +үү N human|,family|,male| +үү N human|,male|,adult| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұ N place|ط +Ұ N part|,%vegetable|߲,embryo|,$eat| +Ұ N vegetable|߲ +Ұ N fact|,eat| +Ұ N FlowerGrass| +Ұ N land|½,surfacial|,desolate|,undesired|ݬ +Ұ N place|ط,desolate| +Ұ N fruit|ˮ +Ұ N fire| +Ұ N fire|,#land|½ +Ұ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ұ N bird| +Ұ N human|,undesired|ݬ,female|Ů,#crime|,$SeekPleasure|Ѱ +Ұѧ N InstitutePlace|,@teach|,@study|ѧ,education|,informal|ʽ +Ұ¿ N beast| +Ұ N beast| +Ұ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +Ұ N human|,fierce|,undesired|ݬ +Ұè N beast| +Ұţ N beast| +ҰǾޱ N FlowerGrass| +ҰȤ N emotion| +Ұ N human| +Ұ ADJ aValue|ֵ,source|Դ,original|ԭ +Ұﱣ N human|,*protect|,#animate| +Ұ N beast|,generic|ͳ +Ұ N beast| +Ұ N place|ط +Ұζ N food|ʳƷ +Ұ N aspiration|Ը,expect| +ҰIJ ADJ aValue|ֵ,will|־,strong|ǿ +Ұļ N human|,evil|,undesired|ݬ +Ұ N human|,evil|,undesired|ݬ +Ұ N attribute|,behavior|ֹ,fierce|,&AnimalHuman| +ҰӪ V reside|ס +Ұս N fact|,fight|,military| +Ұս N army| +Ұս N army| +Ұսڱ N army| +Ұսڱ N part|,%army| +Ұ N beast| +ұ V burn|,industrial| +ұ ADJ aValue|ֵ,attachment| +ұ V burn|,patient=metal|,industrial| +ұѧ N human|,#knowledge|֪ʶ +ұ V burn|,industrial| +ұ N InstitutePlace|,*burn|,factory|,industrial| +ұ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ҳ ADV also|Ҳ +Ҳ EXPR expression|,*ExpressAgreement|ʾͬ +Ҳ CONJ {and|} +Ҳ CONJ {and|} +Ҳ ADV {comment|} +Ҳ˵ CONJ {supplement|ݽ} +Ҳ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Yemen|Ҳ) +Ҳ N place|ط,country|,ProperName|ר,(Asia|) +Ҳŵɶ N money|,(Yemen|Ҳ) +ҲǶ N money|,(Yemen|Ҳ) +Ҳ N human|,(Yemen|Ҳ) +Ҳ ADV {comment|} +ҳ N NounUnit|,&paper|ֽ +ҳ CLAS NounUnit|,&paper|ֽ +ҳ N attribute|,number|,&readings| +ҳ N tool|þ,*print|ӡˢ +ҳ N stone|ʯ +Ҵ V HoldWithHand| +Ҵ V help| +Ҵ V insert| +Ҵ V upgrade| +ҵ N affairs| +ҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ҵ N institution| +ҵ N wealth|Ǯ +ҵ N wealth|Ǯ,#earth|,#building| +ҵ N result|,undesired|ݬ,#unfortunate| +ҵ N InstitutePlace|,@teach|,@study|ѧ,education| +ҵ N result|,desired|,#succeed|ɹ +ҵ ADV time|ʱ +ҵ N affairs| +ҵ N affairs|,commercial| +ҵԱ N human|,#occupation|ְλ,commercial| +ҵ֪ʶ N knowledge|֪ʶ +ҵ ADV time|ʱ +ҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,informal|ʽ +ҵʱ N time|ʱ,idle| +ҵ N human|,rich| +Ҷ CLAS NounUnit|,&paper|ֽ +Ҷ N character|,surname|,human|,ProperName|ר +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N part|,time|ʱ,past| +Ҷ N shape|,surfacial|,thin| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N InsectWorm| +Ҷ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ҷ N part|,%plant|ֲ +Ҷ N part|,%machine| +Ҷ V GoBack|,LocationFin=place|ط,original|ԭ +Ҷ N part|,%plant|ֲ,hair|ë +ҶƬ N part|,%machine| +ҶƬ N part|,%plant|ֲ,hair|ë +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N chemical|ѧ +Ҷ N part|,%plant|ֲ,hair|ë +ҷ V pull| +ҷⵯ N weapon|,*guide| +Ҹ N part|,%AnimalHuman|,arm| +Ҹ N part|,%AnimalHuman|,arm| +Ҹѿ N part|,%plant|ֲ,embryo| +ҹ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹ N time|ʱ,day|,night| +ҹζ V change| +ҹ N LandVehicle|,night| +ҹ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ N InsectWorm| +ҹ N fact|,eat|,night| +ҹ N time|ʱ,day|,night| +ҹ N tool|þ,*tell|,#time|ʱ +ҹ V VehicleGo|ʻ +ҹ N tool|þ,cubic|,@put|,#waste|,#excrete|й +ҹ ADV time|ʱ,day|,night| +ҹ乤 N affairs|,#duty|,#sequence|,night| +ҹ N attribute|,scene|,&inanimate|,&building| +ҹ N sky| +ҹ N FlowerGrass| +ҹ˾ ADJ time|ʱ,day|,night| +ҹԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ҹ N time|ʱ,day|,night| +ҹä֢ N disease| +ҹè N bird| +ҹè N human|,#sleep|˯,late| +ҹĻ N time|ʱ,day|,night| +ҹ N affairs|,#duty|,#sequence|,night| +ҹɫ N lights| +ҹ˾ N time|ʱ,day|,night| +ҹ N fact|,#act|ж,time=night| +ҹ N InstitutePlace|,@sell|,@buy|,night|,commercial| +ҹ N time|ʱ,day|,night| +ҹϮ V attack|,military| +ҹ N edible|ʳ +ҹУ N InstitutePlace|,@teach|,@study|ѧ,education| +ҹ V SelfMoveInManner|ʽ +ҹ V VehicleGo|ʻ +ҹҹ N time|ʱ,night| +ҹԼ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N human|,*act|ж,night| +ҹܻ N InstitutePlace|,@WhileAway|,commercial| +ҹݺ N bird| +Һ N drinks|Ʒ +Һ N liquid|Һ,generic|ͳ +Һ V ize|̬,PatientAttribute=liquid|Һ,industrial| +Һ N material|,gas|,$burn| +Һ N natural|Ȼ,generic|ͳ +Һ N part|,%liquid|Һ,skin|Ƥ +Һ̬ ADJ aValue|ֵ,PhysicState|״̬,liquid|Һ +Һ N liquid|Һ,generic|ͳ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,range|,all|ȫ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ qValue|ֵ,amount|,single| +һ ADJ aValue|ֵ,age|,aged| +һ N human| +һ N human|,able|,desired| +һ N human|,official| +һˮ V defeated| +һͿ V defeated| +һ N part|,%entity|ʵ +һ ADJ aValue|ֵ,kind|,ordinary| +һ ADV aValue|ֵ,similarity|ͬ,alike| +һ˵ ADV {comment|} +һ ADV {comment|} +һ㻯 V ize|̬ +һ˵ ADV {comment|} +һ˵ ADV {comment|} +һ N attribute|,kind|,ordinary|,&physical| +һһ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һ NUM qValue|ֵ,amount|,half| +һ V fulfil|ʵ,patient=aspiration|Ը,scope=listen| +һڸ V fulfil|ʵ,patient=aspiration|Ը,scope=eat| +һ۸ V enjoy|,content=look|,#beautiful| +һ۸ V fulfil|ʵ,patient=aspiration|Ը,scope=look| +һʮ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +һ ADJ aValue|ֵ,duration|,TimeLong| +һ N time|ʱ,#alive| +һ ADJ aValue|ֵ,behavior|ֹ,strict| +һǿ׳ V collude| +һʹ V remove| +һĨɱ V remove| +һ N part|,%entity|ʵ,aspect| +һ V ill|̬,medical|ҽ +һ ADV aValue|ֵ,property|,$merge|ϲ +һ ADJ aValue|ֵ,circumstances|,hardship| +һδƽһ EXPR happen|,experiencer=fact|,manner=again| +һС ADV aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +һ V prosper| +һһӡ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +һ N part|,&entity|ʵ +һ N location|λ,edge| +һ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +һ V fail|ʧ +һ ADJ aValue|ֵ,duration|,TimeShort| +һһϦ ADJ aValue|ֵ,duration|,TimeShort| +һȾ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һȾ ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| +һɲ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һĪչ V BeUnable| +һ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +һ ADJ aValue|ֵ,strength|,weak|,undesired|ݬ +һ V decide| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,effect|Ч,^lasting| +һ ADJ aValue|ֵ,frequency|Ƶ +һ ADJ aValue|ֵ,age|,aged| +һ ADJ qValue|ֵ,amount|,many| +һ N time|ʱ,morning|,early| +һ N place|ط +һ N time|ʱ,#alive| +һ N time|ʱ,now| +һ N time|ʱ,royal|,past| +һ CONJ {time|ʱ} +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ֮ N result|,desired|,#succeed|ɹ +һ֮ N thought|ͷ +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һȹ N result|,desired|,#succeed|ɹ +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ ADV aValue|ֵ,degree|̶,ish| +һ N image|ͼ,dot| +һ N part|,%character| +һ ADJ qValue|ֵ,amount|,few| +һ V tell| +һ N time|ʱ,special| +һ V touch| +һ ADV aValue|ֵ,degree|̶,ish| +һ ADJ qValue|ֵ,amount|,few| +һһ ADV qValue|ֵ,amount|,all|ȫ +һ ADV aValue|ֵ,degree|̶,insufficiently|Ƿ +һ ADJ qValue|ֵ,amount|,few| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +һ ADJ aValue|ֵ,kind|,special| +һ ADV {comment|} +һ N quantity|,amount|,&entity|ʵ +һ֮ N method| +һ֮ N regulation| +һһ ADJ aValue|ֵ,distance|,far|Զ +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,frequency|Ƶ,past| +һ N part|,%entity|ʵ,aspect| +һ ADJ qValue|ֵ,amount|,few| +һ ADV aValue|ֵ,degree|̶,more| +һǧ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +һ˳ V lucky| +һ̬ V alter|ı +һ N part|,%entity|ʵ,aspect| +һ紵 V remove| +һ ADV aValue|ֵ,wholeness|ȱ,complete| +һŶ V treat|Դ,manner=alike| +һɶ ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ۶ ADJ aValue|ֵ,behavior|ֹ,lasting| +һ ADV aValue|ֵ,range|,all|ȫ +һ V fulfil|ʵ,manner=fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting| +һӴ V damage| +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N system|ƶ +һɢ V disperse|ɢ +һŵ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һӦ ADJ aValue|ֵ,power|,strong|ǿ,desired| +һһ ADJ aValue|ֵ,content|,concise|,desired| +һ V illuminate| +һ V pass|ȹ +һӶ V fulfil|ʵ,manner=fast| +һ V BeSame|ͬ +һ ADV aValue|ֵ,duration|,TimeShort| +һ N time|ʱ +һ ADJ aValue|ֵ,GoodBad|û,good|,desired| +һ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +һ֮ N attribute|,ability|,special|,&organization|֯,&human| +һ ADJ aValue|ֵ,relatedness|,intimate| +һ V love| +һ˫ V succeed|ɹ +һ N part|,%fact|,#act|ж +һٳ V WellKnown| +һ V succeed|ɹ +һһ N fact|,#act|ж +һ V HaveContest| +һǧ ADJ aValue|ֵ,value|ֵ,precious|,desired| +һ֮ N thought|ͷ,empty| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һ ADJ aValue|ֵ,range|,all|ȫ +һ N thought|ͷ +һ N document| +һ V look| +һ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ qValue|ֵ,amount|,many| +һ ADJ qValue|ֵ,amount|,many| +һ˰ V finish| +һ۰צ N inanimate|,secondary| +һб V walk| +һ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +һ· V SelfMoveInManner|ʽ,manner=together|ͬ +һ· ADV process| +һ· N entity|ʵ,alike|,undesired|ݬ +һ·ɫ N entity|ʵ,alike|,undesired|ݬ +һ·ƽ EXPR expression|,*SayHello|ʺ +һ· ADV process| +һ·˳ EXPR expression|,*SayHello|ʺ +һ ADJ aValue|ֵ,content|,neat|,desired| +һ N celestial| +һǧ V decline|˥ +һ V BeSame|ͬ +һ V guide| +һƽ N land|½,smooth|̹ +һ ADJ aValue|ֵ,attachment|,alike| +һ˼ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,#occupation|ְλ,official|,diplomatic|⽻ +һ N part|,%entity|ʵ,aspect| +һ֮ ADJ aValue|ֵ,relatedness|,sparse| +һ V WellKnown| +һ V die| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike| +һģһ ADJ aValue|ֵ,similarity|ͬ,alike|,desired| +һĿȻ ADJ aValue|ֵ,content|,NotProfound|dz +һĿʮ ADJ read|,manner=fast| +һ N time|ʱ,year| +һ굽ͷ ADJ aValue|ֵ,duration|,TimeLong| +һ ADJ aValue|ֵ,frequency|Ƶ,year| +һļ ADJ aValue|ֵ,duration|,TimeLong| +һһ ADJ aValue|ֵ,frequency|Ƶ,year| +һŭȥ V leave|뿪,manner=angry| +һŵǧ N text|,*MakeAppointment|Լ,$obey|ѭ +һļ V fit|ʺ,manner=easy| +һƫ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +һƶϴ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ ADJ aValue|ֵ,time|ʱ,alike| +һ ADV aValue|ֵ,behavior|ֹ,together|ͬ +һ NUM qValue|ֵ,amount|,cardinal| +һ ADV aValue|ֵ,frequency|Ƶ +һdz ADJ aValue|ֵ,content|,concise|,desired| +һdz V fulfil|ʵ,manner=fast| +һǮֵ ADJ aValue|ֵ,value|ֵ,negligible|,undesired|ݬ +һϲͨ V ignorant|֪ +һ N entity|ʵ +һ ADJ qValue|ֵ,amount|,all|ȫ +һ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +һ ADJ aValue|ֵ,clearness|,clear| +һ ADJ aValue|ֵ,content|,opened| +һ֮ N human|,alike|,undesired|ݬ +һȥ V disappear|ʧ +һԾɹ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +һǧ ADJ aValue|ֵ,speed|ٶ,fast| +һ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +һɨ V CauseToBeHidden|ʹʧ +һɫ ADJ aValue|ֵ,similarity|ͬ,alike| +һɲ ADJ aValue|ֵ,duration|,TimeShort| +һ N human|,single| +һ N part|,%AnimalHuman|,body| +һ ADJ qValue|ֵ,amount|,single|,#clothing| +һ V undertake| +һǵ ADJ aValue|ֵ,courage|,brave|,desired| +һ V KeepSilence|˵ +һ N time|ʱ,process|,@alive| +һһ N time|ʱ,process|,@alive| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ N time|ʱ +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱ ADJ aValue|ֵ,duration|,TimeShort| +һʱһ ADJ aValue|ֵ,frequency|Ƶ,often| +һ޳ V DoNot| +һͬ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +һ ADJ aValue|ֵ,behavior|ֹ,single| +һְ V handle|,manner=single| +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һ˲ ADJ aValue|ֵ,duration|,TimeShort| +һ˿ ADJ qValue|ֵ,amount|,few| +һ˿ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +һ˿ V exposure|¶ +һ˿һ ADJ qValue|ֵ,amount|,few| +һͿ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һͿ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ N entity|ʵ,complete| +һ廯 ADJ aValue|ֵ,wholeness|ȱ,complete|,desired| +һ쵽 ADJ aValue|ֵ,duration|,TimeLong| +һ N process| +һ N shape|,linear| +һ ADJ aValue|ֵ,relatedness|,intimate| +һͬ ADJ aValue|ֵ,behavior|ֹ,together|ͬ +һͳ V merge|ϲ +һͷ ADV aValue|ֵ,behavior|ֹ,forthright|ˬ +һͷ N part|,%entity|ʵ,aspect| +һͷ N furniture|Ҿ,space|ռ,@put| +һź ADJ aValue|ֵ,behavior|ֹ,gentle|,undesired|ݬ +һ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +һ ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ +һ V catch|׽ס +һ V like|ϧ +һǰ V GoForward|ǰ +һ޼ ADJ aValue|ֵ,area|,wide| +һζ ADV {emphasis|ǿ} +һIJ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V ignorant|֪ +һѷ ADJ aValue|ֵ,behavior|ֹ,disorder|,undesired|ݬ +һ޿ȡ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һǴ ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +һ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +һ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +һ֪ V NoKnowledge|֪ +һһʮ ADJ aValue|ֵ,content|,detailed|,desired| +һ V err| +һϢд V alive| +һϯ֮ N place|ط,small|С +һϵ ADJ qValue|ֵ,amount|,many| +һ ADJ aValue|ֵ,duration|,TimeShort| +һ ADV aValue|ֵ,behavior|ֹ,sudden| +һ ADV aValue|ֵ,frequency|Ƶ +һ ADJ qValue|ֵ,amount|,few| +һϣ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һԸ N aspiration|Ը,expect| +һ ADV aValue|ֵ,frequency|Ƶ,often| +һС ADJ qValue|ֵ,amount|,few| +һЦ֮ V IllTreat| +һЩ ADV aValue|ֵ,degree|̶,ish| +һЩ ADJ qValue|ֵ,amount|,some|Щ +һкǧ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +һ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һһ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +һ N human|,mass|,*tour| +һԲ V KeepSilence|˵ +һ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +һΪ V obey|ѭ +һһ N fact|,#act|ж,#text| +һԱ֮ V speak|˵ +һ̼ N gas| +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һҹ֮ ADJ aValue|ֵ,duration|,TimeShort| +һһ ADJ aValue|ֵ,sequence| +һһӦ V fit|ʺ +һ´ˮ ADJ aValue|ֵ,distance|,near| +һ V RashlyAct| +һӦȫ ADJ aValue|ֵ,range|,all|ȫ +һӵ V LeaveFor|ǰ,manner=fast| +һ V explain|˵ +һƵ V explain|˵ +һ˫ ADJ aValue|ֵ,content|,profound| +һԪ ADJ aValue|ֵ,content|,neat|,desired| +һ N time|ʱ,month| +һ· N time|ʱ,month| +һ ADV aValue|ֵ,frequency|Ƶ,again| +һ ADJ time|ʱ,morning|,early| +һգ N time|ʱ,TimeShort| +һգ۵Ĺ N time|ʱ,TimeShort| +һѪ ADJ aValue|ֵ,content|,accurate|׼,desired| +һ N time|ʱ +һ N wind| +һ N time|ʱ +һ N time|ʱ +һ ADJ aValue|ֵ,range|,all|ȫ +һ֪ V ignorant|֪ +һֱ ADV aValue|ֵ,frequency|Ƶ,often| +һֽ N document|,useless| +һǧ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +һ ADJ aValue|ֵ,similarity|ͬ,alike| +һ N attribute|,similarity|ͬ,alike|,&entity|ʵ +һר ADJ aValue|ֵ,ability|,able|,desired| +һ겻 V decline|˥ +һ V fulfil|ʵ,manner=fast| +Ҽ NUM qValue|ֵ,amount|,cardinal| +ҽ N affairs|,medical|ҽ +ҽ V cure|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ ADJ aValue|ֵ,ability|,unable|ӹ,$cure|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽ N attribute|,behavior|ֹ,&human|,#cure|ҽ,medical|ҽ +ҽԱ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽƴѧ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽѧ N human|,*study|ѧ,education|,medical|ҽ +ҽ N knowledge|֪ʶ,medical|ҽ +ҽ V cure|ҽ +ҽƶ N human|,*cure|ҽ,medical|ҽ +ҽƺվ N InstitutePlace|,@rescue|,military|,medical|ҽ +ҽ¹ N fact|,wrong|,medical|ҽ,#cure|ҽ,undesired|ݬ +ҽվ N InstitutePlace|,@cure|ҽ,medical|ҽ +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽʿ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ҽ N publications|鿯,#medical|ҽ +ҽ N method|,#medical|ҽ +ҽ N affairs|,medical|ҽ +ҽ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽѧ N knowledge|֪ʶ,#cure|ҽ,medical|ҽ +ҽѧ N knowledge|֪ʶ,medical|ҽ +ҽѧ N human|,#knowledge|֪ʶ,medical|ҽ +ҽѧʿ N human|,*study|ѧ,education|,medical|ҽ +ҽѧԺ N InstitutePlace|,@teach|,@study|ѧ,#medical|ҽ,education| +ҽҩ N medicine|ҩ +ҽ ADJ aValue|ֵ,property|,cure|ҽ,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽ V cure|ҽ +ҽ N text|,#cure|ҽ,medical|ҽ +ҿ N metal| +ҿ N PenInk|ī,*write|д + V depend| + V obey|ѭ + V surrender| + PREP {AccordingTo} + V depend| + ADJ aValue|ֵ,sequence| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence| + V obey|ѭ + V surrender| + V exist| + N language|,#country|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,proper|,police| + V depend| + V tie| + V tie| + V ChangeNot| + ADV aValue|ֵ,behavior|ֹ,lasting| + N reason| + PREP {AccordingTo} + V depend| + V depend| + N attribute|,property|,depend|,&human| + V grudge| +ƾ V depend| +Ȼ V ChangeNot| +Ȼ ADV aValue|ֵ,behavior|ֹ,lasting| +Ȼ V ChangeNot| +Ȼ V ChangeNot| +ɽˮ ADV aValue|ֵ,location|λ +˳ V fit|ʺ + V depend| +ϡ ADJ aValue|ֵ,clearness|,blurred| +« ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +« V imitate|ģ + V grudge| + V grudge|,content=separate| +ϧ V farewell| + V depend| + PREP {AccordingTo} + V lean|п + N character|,surname|,human|,ProperName|ר + N place|ط,country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Iraq|) + N place|ط,city|,ProperName|ר,(China|й) +԰ N place|ط,happy|,#lucky| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iraq|) + N place|ط,country|,ProperName|ר,(Asia|) +˵ɶ N money|,(Iraq|) + N human|,(Iraq|) + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Iran|) + N place|ط,country|,ProperName|ר,(Asia|) + N human|,(Iran|) +ŵ˹ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ʼ N part|,%time|ʱ,head|ͷ +˹ N place|ط,capital|,ProperName|ר,(Pakistan|ͻ˹̹) +˹ N community|,religion|ڽ +˹ N law|ɷ,#time|ʱ +˹ͽ N human|,religion|ڽ +˹̹ N place|ط,city|,ProperName|ר,(Turkey|) + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + N part|,%AnimalHuman|,embryo| + N part|,%physical|,skin|Ƥ +° N place|ط,provincial|ʡ,ProperName|ר,(US|) +° N part|,%AnimalHuman|,embryo| +³ N furniture|Ҿ,cubic|,@put|,#clothing| +´ N part|,%clothing|,cubic|,@put| +¶ N part|,%clothing|,cubic|,@put| +· N clothing|,generic|ͳ +¹ N clothing| +¹ N human|,evil|,undesired|ݬ +¹ڣ N facilities|ʩ,space|ռ,@bury|,#die| +¹ N furniture|Ҿ,cubic|,@put|,#clothing| +¼ N attribute|,appearance|,&human| +¼ N furniture|Ҿ +½ N part|,%clothing|,body| +½ V GoBack|,time=succeed|ɹ + N material|,?clothing|,generic|ͳ + N part|,%clothing|,#head|ͷ +ñ N room|,@put|,#clothing| + N clothing| + N clothing|,generic|ͳ +ʳס V fact|,MakeLiving|ı +ʳס N fact|,MakeLiving|ı + N clothing|,generic|ͳ + N part|,%clothing|,#arm| + N InsectWorm|,undesired|ݬ + N clothing|,generic|ͳ + V maintain| + N part|,%AnimalHuman|,skin|Ƥ +ú԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,ProperName|ר,(China|й) + V maintain| +ָʹ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,safe|,desired| + ADJ aValue|ֵ,form|״,smooth|̹ + ADJ aValue|ֵ,source|Դ,foreign| + V destroy|,military| + N human|,#space|ռ,past| + N human|,foreign| + N place|ط,foreign|,country| + V destroy| + V PassOn| + N artifact|˹,generic|ͳ,$lose|ʧȥ + V lose|ʧȥ +Ų N wealth|Ǯ,#die|,#police|,$PassOn| +Ų N human|,*receive|,#wealth|Ǯ +Ų˰ N expenditure| +ų ADJ aValue|ֵ,reputation|,disgraced|,undesired|ݬ +ų V unfortunate| +Ŵ V give|,#animate| +Ŵ N knowledge|֪ʶ +Ŵ N part|,%animate|,#PassOn| +Ŵѧ N knowledge|֪ʶ +Ŵѧ N human|,#knowledge|֪ʶ +Ŵ V SetAside| +Ŵ N part|,%AnimalHuman|,*die|,body| +ŷ N attribute|,habit|ϰ,&human| +Ÿ N human|,family|,young| +Ź N human|,family|,young| +Ź N part|,%AnimalHuman|,*die|,body| +ź N part|,%AnimalHuman|,*die|,body| +ź V repent|û +ż N part|,%building|,waste|,body| +ż N trace|,#building| +ž V excrete|й,medical|ҽ + N human|,aged|,mass| + N human|,mass|,undesired|ݬ + V PassOn| + V SetAside| +© V discharge| + N human|,mass| + V excrete|й,patient=liquid|Һ,medical|ҽ + V abandon| + N attribute|,appearance|,#die|,&human| + N image|ͼ,#die| + N human|,mass|,young| +ʧ V lose|ʧȥ +ʸ V excrete|й,patient=waste| + N fact|,past| + N letter|ż + N readings| + N readings|,$lose|ʧȥ + N human| + N part|,%AnimalHuman|,*die|,body| + V forget| +֢ N disease| + N tool|þ,generic|ͳ + N image|ͼ,#die| + N text|,#die|,$SetAside| +Ը N aspiration|Ը,expect|,#die|,$SetAside| +ַ N place|ط +־ N aspiration|Ը,expect|,#die|,$SetAside| + N text|,#die|,$SetAside| + N human|,female|Ů + V SelfMoveInManner|ʽ + V TakeAway|ᶯ + V alter|ı + V change| +Ƶ V alter|ı,entertainment| +ƶ V SelfMoveInManner|ʽ +ƶ V TakeAway|ᶯ +ƶ N affairs|,#internet|,commercial| +Ʒ V SelfMoveInManner|ʽ,purpose=defend|,military| +Ʒ V improve|,patient=habit|ϰ +ƻľ V deceive|ƭ +ƽ V entrust|ί +ƽ V submit| +ƽ V transport|,manner=defend|,police| +ƾ V SelfMoveInManner|ʽ,#country| +ƾ ADJ aValue|ֵ,property|,SelfMoveInManner|ʽ,#country| + V planting|ֲ,agricultural|ũ + N human|,#country| + V transport|,manner=defend|,police| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,medical|ҽ + N attribute|,bearing|̬,&human| + N fact| + N tool|þ,$GiveAsGift| + N tool|þ,generic|ͳ +DZ N attribute|,bearing|̬,&human| +DZ N tool|þ,*measure| +DZ N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N tool|þ,generic|ͳ + N InstitutePlace|,@produce|,tool|þ,factory|,industrial| + N attribute|,appearance|,&human| +ʽ N fact| +̬ N attribute|,bearing|̬,&human| +̬ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̶ N community| + N part|,%AnimalHuman|,viscera| +ȵ N medicine|ҩ + N part|,%AnimalHuman|,viscera| + N disease| +Һ N part|,%AnimalHuman|,liquid|Һ + N tool|þ,*wash|ϴ + ADJ aValue|ֵ,property|,$doubt| + V doubt| +ɰ N fact|,difficult|,police| +ɰ N problem|,difficult| +ɵ N problem|,difficult| +ɷ N human|,$doubt|,#crime| +ɻ V doubt| +ɾ N experience|,doubt| + V doubt| + N experience|,doubt| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + N experience|,doubt| +ɹ V doubt| + N experience|,doubt| +Ŷ EXPR ^doubt| + ADJ aValue|ֵ,property|,ask| + N experience|,doubt| + N problem| +ʾ N part|,%language| + N experience|,doubt| +IJ N experience|,doubt| + EXPR fear|,cause=doubt| + N experience|,doubt| + N experience|,doubt| + N method| + N shape|,military|,*deceive|ƭ,#enemy| + N experience|,doubt| + N waters|ˮ,linear|,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + AUX {modality|} +˱ N place|ط,city|,ProperName|ר,(China|й) +˲ N place|ط,city|,ProperName|ר,(China|й) +˴ N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,impression|ӡ,good|,desired| + N place|ط,city|,ProperName|ר,(China|й) + V fit|ʺ + ADJ aValue|ֵ,ability|,able|,$defend| + N human|,family|,female|Ů +ֵ̱ N human|,family|,mass|,male| +̶ N human|,family|,female|Ů +̷ N human|,family|,male| + N human|,family|,female|Ů +ĸ N human|,family|,female|Ů +̫̫ N human|,family|,female|Ů + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + N furniture|Ҿ,space|ռ,@sit| + N furniture|Ҿ,space|ռ,@sit| + N InsectWorm| +ϲ N InsectWorm| +ȩ N chemical|ѧ + N chemical|ѧ + V depend| + V lean|п +п V lean|п + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V depend| + ADV {tense|ʱ̬,past|} +Ѷ V fixed|Ѷ +ѹ ADJ aValue|ֵ,time|ʱ,#die|,past| +ѻ ADJ aValue|ֵ,property|,GetMarried| +Ѽ ADV aValue|ֵ,degree|̶,extreme| +Ѿ ADV {tense|ʱ̬,past|} +Ѿ N human|,crime|,undesired|ݬ,$detain|ס +Ȼ V fixed|Ѷ + ADV aValue|ֵ,degree|̶,extreme| +ˮ ADJ aValue|ֵ,property|,$shrink|С + ADJ aValue|ֵ,time|ʱ,past| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ N symbol|,quantity|,$know|֪ + NUM qValue|ֵ,sequence|,ordinal| + N symbol| +Ұ N chemical|ѧ +ұ N chemical|ѧ +Ҵ N chemical|ѧ,?medicine|ҩ,liquid|Һ,$burn| +Ҵ N chemical|ѧ,liquid|Һ,$burn|,#medicine|ҩ +ҷ N human|,organization|֯,#associate| +Ҹ N disease| + N chemical|ѧ +ȩ N chemical|ѧ +Ȳ N gas| +Ȳ N gas|,*illuminate|,*fasten|˩,*break|۶,#metal| + N chemical|ѧ + N chemical|ѧ,$burn| +ϩ N chemical|ѧ +ϩ N chemical|ѧ +͸ N disease| + N chemical|ѧ + STRU {MaChinese|} + N place|ط,country|,ProperName|ר,(Israel|ɫ) + PREP {AccordingTo} + PREP {cause} + PREP {means} + PREP {purpose} + ... Ϊ V RegardAs| + ... Ϊ V RegardAs|,ResultIsa=secondary| + ... Ϊ V aValue|ֵ,property|,$guide| + ... Ϊ V RegardAs|,ResultIsa=boundary| + ... Ϊ V RegardAs|,ResultIsa=cause|ԭ + ... Ϊ V PayAttention|ע + ... Ϊ V PayAttention|ע + ... Ϊ V RegardAs|,ResultIsa=important| + ... Ϊ׼ V RegardAs|,ResultIsa=law|ɷ +Ա ADV aValue|ֵ,location|λ,north| +Ա CONJ {purpose} +Գ V WellTreat|ƴ +Դ V deduce| +Դ ADJ aValue|ֵ,sequence| +Դ ADJ aValue|ֵ,sequence|,beneath| +ԴΪ V RegardAs|,patient=main|,ResultIsa=important| +Ե±Թ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Զ ADV aValue|ֵ,location|λ,east| +Զﴫ V disseminate|,content=wrong| +Ժ N aValue|ֵ,time|ʱ,future| +Ժ N time|ʱ,future| +Լ COOR {and|} +Լ V deceive|ƭ +Խ ADJ aValue|ֵ,distance|,near| + STRU {TimeIni} + V persuade|Ȱ˵ + V benefit| +Ϊ V damage| + V escape| + ADV aValue|ֵ,location|λ,south| + ADV aValue|ֵ,location|λ,external| + ADJ qValue|ֵ,amount|,few|,more| +ǰ N time|ʱ,past| + V expect| +Ȩı˽ V seek|ıȡ +ɫ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Israel|ɫ) +ɫ N place|ط,country|,ProperName|ר,(Asia|) +ɫ N human|,(Israel|ɫ) + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +Է V HaveContest|,patient=law|ɷ +ѳְ V die| + V guide| + ADJ aValue|ֵ,location|λ,external| + N time|ʱ,past| +Ϊ V regard|Ϊ +Ϊ V RegardAs|,patient=self|,ResultIsa=important| +֮ ADV {comment|} + V exchange|,patient=artifact|˹,commercial| + ADV aValue|ֵ,location|λ,west| + ADJ aValue|ֵ,kind|,special| + ADJ qValue|ֵ,amount|,many| +ϱʻΪ ADV aValue|ֵ,sequence| +һʮ ADJ aValue|ֵ,ability|,able|,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Թ ADJ aValue|ֵ,behavior|ֹ,evil|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + CONJ {EventResult|¼} + PREP {means} +Ч V persuade|Ȱ˵,instrument=example|ʵ + N knowledge|֪ʶ,entertainment| + N method| +ռ N human|,entertainment|,(Japan|ձ) + N community|,entertainment| + N attribute|,age|,#entertainment|,&human| + N attribute|,name|,&human|,entertainment| + N human|,*perform|,entertainment| + ADJ aValue|ֵ,appearance|,beautiful|,desired| + N knowledge|֪ʶ,entertainment| + N method| + N InstitutePlace|,*display|չʾ,entertainment| + N human|,entertainment| + N community|,entertainment| +Ʒ N inanimate|,entertainment| + N community|,entertainment| + N attribute|,property|,entertainment|,&entity|ʵ +̳ N community|,entertainment| + N readings| + N thing|,#entertainment|,#literature| +Է N community|,entertainment|,literature| + V restrain|ֹ +ֻ CONJ {or|} + V upset| +ֹ V restrain|ֹ + V restrain|ֹ +Ƽ N chemical|ѧ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + ADJ aValue|ֵ,easiness|,easy|,desired| + V alter|ı + N character|,surname|,human|,ProperName|ר + V exchange|,commercial| +ױ ADJ aValue|ֵ,ability|,able|,FormChange|α +ױ ADJ aValue|ֵ,ability|,able|,$forget| +ױ ADJ aValue|ֵ,ability|,able|,change| +ױ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +׵ V replace|,patient=place|ط +׶ ADJ aValue|ֵ,content|,easy|,desired| +׶ ADJ aValue|ֵ,easiness|,easy|,$understand| +׶ ADJ aValue|ֵ,ability|,able|,$read| +׸ο ADJ aValue|ֵ,ability|,able|,$soothe|ο +׻ V exchange|,patient=artifact|˹,commercial| +׻ó V exchange|,patient=artifact|˹,commercial| +׽ӽ ADJ aValue|ֵ,ability|,able|,$approach|ӽ +׾ N publications|鿯,ProperName|ר + N tool|þ,cubic|,@put|,#drinks|Ʒ +ŭ ADJ aValue|ֵ,easiness|,easy|,$irritate|ŭ +ȼ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ +ȼ N inanimate|,easy|,#lighting|ȼ +ȼױ ADJ aValue|ֵ,ability|,able|,$lighting|ȼ + V replace|,patient=human|,sport| +練 ADJ aValue|ֵ,easiness|,easy|,desired| +ɢ ADJ aValue|ֵ,ability|,able|,disappear|ʧ +ܹ ADJ aValue|ֵ,ability|,able|,$attack| +ַ ADJ aValue|ֵ,ability|,able|,$damage| +˺ ADJ aValue|ֵ,ability|,able|,$split|ƿ + ADJ aValue|ֵ,ability|,able|,$break|۶ + ADJ aValue|ֵ,easiness|,easy|,$damage| +ѧ ADJ aValue|ֵ,easiness|,easy|,$study|ѧ +ѹ ADJ aValue|ֵ,ability|,able|,$break|۶ + V AptTo| + ADJ aValue|ֵ,ability|,able|,$misunderstand| +⹥ ADJ aValue|ֵ,ability|,able|,$attack| + N place|ط + N place|ط,city| + ADJ aValue|ֵ,height|߶,tall| + V stand|վ +Ȼ ADJ aValue|ֵ,height|߶,tall| + NUM qValue|ֵ,amount|,cardinal|,mass| + NUM qValue|ֵ,amount|,cardinal|,mass| + N human|,rich| +˹ ADJ aValue|ֵ,duration|,TimeLong| + N affairs|,engage| + N affairs|,engage|,military| + N fact|,fight|,military| +ʹ V use|,agricultural|ũ + N livestock| +ܲ V guess|² +ܶ V guess|² + V forge|α + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ + N human|,past| + N fact| + N fact| + V study|ѧ +ҵ V study|ѧ,^finish| + N disease| +߲ N disease| + N medicine|ҩ + N attribute|,circumstances|,#disease|,&place|ط,&organization|֯ + N place|ط,#disease|,@happen| + ADV also|Ҳ +ಽ V imitate|ģ + N human|,future| + N place|ط,far|Զ + N aspiration|Ը,expect| + V express|ʾ + N information|Ϣ + N place|ط,country|,ProperName|ר,(Italy|) + V predict|Ԥ + N thought|ͷ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Italy|) + N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + V know|֪ + N thought|ͷ + N thought|ͷ,different|,#oppose| + N readings|,@record|¼,#thought|ͷ + N text|,$propose|,$discuss|,$debate| + N tool|þ,@put|,#text|,#thought|ͷ +⽳ N thought|ͷ +⾳ N attribute|,circumstances|,&entity|ʵ + V predict|Ԥ +֮ ADJ aValue|ֵ,property|,^$predict|Ԥ +֮ ADJ aValue|ֵ,property|,$predict|Ԥ +Գ ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N thought|ͷ + N attribute|,behavior|ֹ,&human| + N emotion|,undesired|ݬ + N mental| +緢 V excited| +Ȥ N attribute|,interest|Ȥζ,&entity|ʵ +Ȥ N emotion|,FondOf|ϲ +ʶ N mental| +ʶ V understand| +ʶ V understand| +ʶ̬ N thinking|˼ +˼ N aspiration|Ը,expect| +˼ N attribute|,interest|Ȥζ,&entity|ʵ +˼ N emotion|,FondOf|ϲ +˼ N emotion|,grateful|м +˼ N information|Ϣ +˼ N thought|ͷ +ͼ N purpose|Ŀ + ADJ aValue|ֵ,property|,^$predict|Ԥ + N phenomena|,unfortunate|,undesired|ݬ +ζ N attribute|,interest|Ȥζ,&entity|ʵ +ζ N information|Ϣ +ζ ADJ attribute|,content|,profound| +ζ V mean|ָ +벻 ADJ aValue|ֵ,property|,^$predict|Ԥ +õ ADJ aValue|ֵ,property|,$predict|Ԥ + N purpose|Ŀ + N document|,commercial| + N attribute|,circumstances|,&entity|ʵ + N emotion|,excited| +˼˼ V hesitate|ԥ + N information|Ϣ + V translate| + V willing|Ը +Ը N aspiration|Ը,expect| + N information|Ϣ + ADJ aValue|ֵ,content|,profound| +־ N aspiration|Ը,expect| +־ᶨ N human|,#will|־,strong|ǿ +־ N attribute|,will|־,&human| + N human|,$love|,friend|,desired| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N attribute|,will|־,strong|ǿ,desired|,&human| +Ȼ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ȻȻ ADJ aValue|ֵ,will|־,strong|ǿ,desired| + V LookBack| + V LookBack| + ADJ aValue|ֵ,clan| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,source|Դ,artificial| + N attribute|,behavior|ֹ,fair|,desired|,&human|,&organization|֯ + N attribute|,relatedness|,&human| + N information|Ϣ +岻ݴ V endeavour| + N part|,%human|,fake|α,#medical|ҽ,*bite|ҧ + V angry| + N emotion|,angry|,desired| + V angry|,desired| + N affairs|,great|ΰ +ʵ N publications|鿯,#expression| + N reason| + N fact|,sell| + V sell|,commercial| + N mark|־,military| + N attribute|,behavior|ֹ,faithful|,desired|,&human| +ʿ N human|,fair|,desired| +޷ V GoForward|ǰ,scope=duty| +޷ V GoForward|ǰ,scope=duty| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + N duty| + N human|,military| + N affairs|,#education| + N fact|,perform|,entertainment| +¾ N army| + V cure|ҽ + ADJ aValue|ֵ,behavior|ֹ,strict|,desired| +֫ N part|,%human|,fake|α,#medical|ҽ,limb|֫ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,more| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ + N InsectWorm|,desired| +洦 N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +淢 ADV aValue|ֵ,degree|̶,more| +ĸ N FlowerGrass|,?medicine|ҩ,(China|й) + N bird|,desired| + N human|,friend| + ADJ qValue|ֵ,amount|,many| + V spill| + V spill| + V spill| +Ա V express|ʾ + V discuss| +鰸 N text|,$propose|,$discuss|,$debate| +鳤 N human|,#occupation|ְλ,official|,politics| + N plans|滮,#sequence|,&fact| +鶨 V decide|,manner=discuss| +鶨 N document|,$discuss|,$MakeAppointment|Լ +鹺 V buy|,manner=discuss| + V reconcile|,politics| + N institution|,politics|,#country|,*forming|γ,#law|ɷ + N system|ƶ,politics| + N attribute|,price|۸,#discuss|,&artifact|˹,commercial| + V discuss|,commercial| + V decide| + V discuss| + V speak|˵ +۷׷ V {comment|} + V discuss|,content=affairs|,politics| + N problem|,$discuss| +ϯ N location|λ,#institution| +Ա N human|,official|,politics| +Ժ N institution|,#country|,@discuss|,@debate| + V discuss|,content=affairs|,politics| + N attribute|,relatedness|,&human| + V translate| +뱾 N attribute|,kind|,$translate|,&readings| + V translate| +Ա N human|,#occupation|ְλ,*translate| + V translate| + N attribute|,name|,$translate|,&entity|ʵ + N text|,$translate| + N fact|,translate|,#sound| +Ա N human|,#occupation|ְλ,literature|,*translate| + N human|,literature|,*translate| + V translate| + N readings|,$translate| + N readings|,$translate| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,similarity|ͬ,different| + V surprise| +첽 ADJ aValue|ֵ,performance| + N attribute|,brightness|,bright|,&thing| +쳣 ADJ aValue|ֵ,kind|,special| + N place|ط,foreign| + N place|ط,country|,foreign| +Ѱ ADJ aValue|ֵ,kind|,special| +컯 V ize|̬,PatientAttribute=different| +켺 N human|,different| + N community|,religion|ڽ,different| +ͽ N human|,religion|ڽ +ͻ V appear| +ͬ V BeSame|ͬ +ͬ V BeSame|ͬ,scope=result| +ͬ N attribute|,similarity|ͬ,&entity|ʵ +ζ N attribute|,odor|ζ,special|,&physical| +ζ N food|ʳƷ + N humanized| + N inanimate|,foreign| + N place|ط,foreign| +쿪 V think|˼ + N shape|,queer| + V differ|ͬ + N thought|ͷ,different|,#oppose| + ADJ aValue|ֵ,kind|,special| + N thought|ͷ,different|,#oppose| + N place|ط,country|,foreign| + N place|ط,foreign| + N community|,different| + N part|,%artifact|˹,wing| + N part|,%bird|,wing|,*fly| + N place|ط,edge|,military| + N time|ʱ,year|,future| + N time|ʱ,day|,future| + N tool|þ,@LieDown| + N tool|þ,@LieDown| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,temperature|¶,chilly| + V protect| + V cover|ڸ + V hide| + V protect| + ADJ aValue|ֵ,temperature|¶,chilly| + N cause|ԭ + CONJ {cause|ԭ} + PREP {cause} +ʩ ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + ADV aValue|ֵ,behavior|ֹ,proper|,desired| + CONJ {EventResult|¼} + CONJ {EventResult|¼} + N attribute|,circumstances|,&physical| + N process|,#cause|ԭ,#result| +ªͼ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +ŬƤǿ N language|,#country|,ProperName|ר + V guide| + N symbol|,#quantity| + N part|,%entity|ʵ + N internet| +Ϊ CONJ {cause|ԭ} +Ϊ PREP {cause} +Ϯ V imitate|ģ +Сʧ V WorthNot|ֵ +ѭ V delay| +ѭ V obey|ѭ +ѭؾ ADV aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ҭʳ V cease|ͣ,cause=fear| + N cause|ԭ +֮ CONJ {EventResult|¼} + N symbol|,#quantity| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many|,desired| + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + N experience| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ʵ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N attribute|,SoundVolume|,&music| + N information|Ϣ + N sound| + N attribute|,SoundVolume|,&music| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + N symbol|,#music| + N sound|,#language| + N music| +ֻ N fact|,@perform|,@listen|,#music| +ּ N human|,#knowledge|֪ʶ,#music|,entertainment| +ֽ N community|,#music|,entertainment| + N InstitutePlace|,@listen|,#music| + N attribute|,SoundVolume|,&sound| +Ƶ N attribute|,frequency|Ƶ,&sound| +ɫ N attribute|,SoundQuality|,&sound| + N expression| + N attribute|,speed|ٶ,#sound|,&SelfMove| +λ N expression| + N tool|þ,*disseminate| + N sound| + N tool|þ,*listen|,#music| +Ч N attribute|,effect|Ч,#sound|,&artifact|˹ + N shows| + N information|Ϣ,#letter|ż +Ѷ N information|Ϣ,#letter|ż + V translate| + N attribute|,SoundQuality|,&sound| + N attribute|,quality|,&sound| + V WeatherBad| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,contrariness|,negative| + N celestial| + N character|,surname|,human|,ProperName|ר + N direction| + N part|,%AnimalHuman|,#female|Ů,viscera| + N place|ط,#lights|,dark| + ADJ aValue|ֵ,brightness|,dark| + N part|,bad|,undesired|ݬ,%organization|֯ + N part|,%AnimalHuman|,#female|Ů,viscera| + ADJ aValue|ֵ,brightness|,dark| + N part|,%AnimalHuman|,#female|Ů,viscera| +ʿ N material|,*AlterColor|ɫ + N part|,%AnimalHuman|,#female|Ů,viscera| + N disease| + N electricity| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N wind| + V dry| + N part|,%house| + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%electricity| + N place|ط,humanized|,#die| + N part|,%AnimalHuman|,#male|,viscera| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N part|,%physical| + N law|ɷ,#time|ʱ + ADJ aValue|ֵ,temperature|¶,chilly| + N place|ط,chilly| +ë N part|,%AnimalHuman|,hair|ë + N part|,%AnimalHuman|,#female|Ů,viscera| + N part|,%physical|,dark| +ı N plans|滮,undesired|ݬ +ı V plan|ƻ,undesired|ݬ +ı N plans|滮,undesired|ݬ +ı N human|,*plan|ƻ,undesired|ݬ + N part|,%AnimalHuman|,#male|,viscera| +ƽ N sound|,#language| +ɭ ADJ aValue|ֵ,brightness|,dark| +ʪ ADJ aValue|ֵ,property|,dark|,wet|ʪ +ʭ N InsectWorm| +˽ N fact|,undesired|ݬ,secret| + N weather|,WeatherBad| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,kind| + N attribute|,property|,&event|¼,entity|ʵ + ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + N human| +Ӱ N trace|,#lights| + ADJ aValue|ֵ,property|,WeatherBad|,RainSnow|ѩ + V sad|dz + N CloudMist| + V WeatherBad| + ADJ aValue|ֵ,relatedness|,#GetMarried| + N attribute|,relatedness|,#GetMarried|,&human| +Ե N attribute|,circumstances|,happy|,#GetMarried|,&human| + N human|,intimate| + V recite|ж + V recite|ж +Ū V sing| +ʫ V recite|ж,content=text| + V recite|ж +ζ V recite|ж +ӽ V recite|ж + ADJ aValue|ֵ,color|ɫ,white| + N metal| + ADJ aValue|ֵ,color|ɫ,white| + N money| + N place|ط,city|,ProperName|ר,(China|й) + N material|,#metal| + N AlgaeFungi|ֲ,?medicine|ҩ + N part|,%human|,hair|ë,white| + N fund|ʽ + N celestial| + N celestial| +ϵ N celestial| + N beast| + ADJ aValue|ֵ,color|ɫ,grey| +ɫ ADJ aValue|ֵ,color|ɫ,grey| + N tool|þ,*reward|,#sport| + N human|,#occupation|ְλ,industrial| + N metal|,#money| + N money| +¥ N InstitutePlace|,*sell|,@buy|,#treasure|䱦,commercial| +Ļ N tool|þ,#shows| + N tool|þ,*reward|,#sport| + N tool|þ,#metal| +ɫ N attribute|,color|ɫ,white|,&physical| + N beast| + N metal| + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +м N human|,#InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| +ҵ N affairs|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial| + N fruit|ˮ + N money| + N fish| +Ԫ N money| +Բ N money| +ʽ N tool|þ,*reward|,#sport| + ADJ aValue|ֵ,color|ɫ,red| + N metal|,?material| + N fish| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + N expression|,lascivious|,undesired|ݬ + N text|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,female|Ů,lascivious|,undesired|ݬ + N human|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +ý N human|,#SeekPleasure|Ѱ,undesired|ݬ +ý N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N attribute|,power|,undesired|ݬ,&human| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N knowledge|֪ʶ +î V InDebt| +ʱ N time|ʱ,hour|ʱ +֧î V InDebt| + N drinks|Ʒ + V drink| + V feed|ι + V feed|ι,agricultural|ũ + N medicine|ҩ + V drink|,drinks|Ʒ + V suffer|,content=firing| + V suffer|,content=kill|ɱ,means=firing| + V cherish|Ļ,possession=hate| + V drink|,drinks|Ʒ,#addict|Ⱥ + N drinks|Ʒ,generic|ͳ +Ƭ N medicine|ҩ,(China|й) +Ʒ N drinks|Ʒ + V weep| +ʳ N edible|ʳ,generic|ͳ +ʳҵ N affairs|,#edible|ʳ +ˮ N water|ˮ,$drink| + ADJ aValue|ֵ,ability|,able|,$drink| +ˮ N water|ˮ,$drink| + N medicine|ҩ,(China|й) +ֹ V RashlyAct| + N character|,surname|,human|,ProperName|ר + V guide| + V incur| + V leave|뿪 + V pull| + V quote| + V lighting|ȼ,purpose=CauseToDo|ʹ,#FormChange|α + N material|,wood|ľ,*lighting|ȼ + V guide|,ResultEvent=GiveBirth| + V ResultIn| + V guide| + V entice| + V tease|ȡ + V catch|׽ס,police| + V ResultIn| + V guide|,ResultEvent=VehicleGo|ʻ + N symbol| + N waters|ˮ,linear| + V ResultIn|,result=damage| + V recommend|Ƽ + V propose| + V recommend|Ƽ + V propose| +ݵ V quote|,content=publications|鿯 + V ExpressAgainst|Ǵ,target=self| +Ը߸ V sing| + V incur| + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N attribute|,strength|,#attract|,&physical| + V expect| + V guide| + V cure|ҽ,manner=drain|ų +· V guide| + V ResultIn| +𷴶 ADJ aValue|ֵ,ability|,able|,$oppose| +𷴸 ADJ aValue|ֵ,ability|,able|,$disgust| +𾪻 ADJ aValue|ֵ,ability|,able|,flurried| + N facilities|ʩ,route|· + N part|,%machine|,heart| +ʤ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Ŀ ADJ aValue|ֵ,impression|ӡ,good|,desired| +עĿ ADJ aValue|ֵ,impression|ӡ,good|,desired| +ע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע + V guide|,ResultEvent=GoInto| + V enlarge| + V quote| +ˮ V guide|,ResultEvent=VehicleGo|ʻ +ˮ V guide|,patient=liquid|Һ + V cease|ͣ,content=undertake|,politics| + N part|,%text| + N tool|þ,*fasten|˩ + N part|,%weapon| + N part|,%text| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=regulation| +Ϊ V RegardAs|,ResultIsa=glorious| + V quote| + V recommend|Ƽ + V entice| +֤ V quote|,purpose=prove|֤ +֤ N human|,*quote| + V ResultIn| + V recommend|Ƽ,content=embryo|,agricultural|ũ + N medicine|ҩ + N part|,%music| + N part|,%text| + N text|,#entertainment| +Ա N human|,#occupation|ְλ,#shows|,*guide| + ADJ aValue|ֵ,possibility|,impossible|,$perception|֪ + V hide| + V hide| + V HideTruth| + V hide| + V mean|ָ + N phenomena|,undesired|ݬ,dangerous|Σ,#unfortunate|,hidden| + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + V HideTruth| + V reside|ס,manner=hide| + V HideTruth| + V HideTruth| + ADJ aValue|ֵ,behavior|ֹ,hidden| + N fact|,secret| + V hide| + N fact|,secret| + V mean|ָ +ʿ N human| +˽ N fact|,secret| +˽Ȩ N rights|Ȩ,#fact|,secret| +ʹ N experience|,painful|ʹ + V cease|ͣ,content=undertake|,politics| +īˮ N PenInk|ī,liquid|Һ,*write|д + ADJ aValue|ֵ,ability|,unable|ӹ,$perception|֪ +۾ N tool|þ,*look|,#eye| + ADJ aValue|ֵ,behavior|ֹ,hidden| + ADJ aValue|ֵ,content|,hidden| + ADJ aValue|ֵ,clearness|,blurred| +ԼԼ ADJ aValue|ֵ,clearness|,blurred| +ʹ V painful|ʹ + V sad|dz + N expression|,#BeSimilar| +Լ ADJ aValue|ֵ,clearness|,blurred| + N emotion| +ӡ V carve| +ӡ N character|,surname|,human|,ProperName|ר +ӡ V obey|ѭ +ӡ N place|ط,country|,ProperName|ר,(India|ӡ) +ӡ V print|ӡˢ +ӡ N stationery|ľ +ӡ N trace| +ӡ N readings|,$print|ӡˢ +ӡ N language|,#country|,ProperName|ר +ӡڰ N place|ط,provincial|ʡ,ProperName|ר,(US|) +ӡڰ N human| +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(India|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ¬ N money|,(India|ӡ) +ӡ¬ N money|,(Sikkim|) +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N money|,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר +ӡ N place|ط,country|,ProperName|ר,(Asia|) +ӡ N language|,#country|,ProperName|ר +ӡ N human|,(India|ӡ) +ӡ N waters|ˮ,surfacial|,ProperName|ר +ӡ V print|ӡˢ,send| +ӡ N trace| +ӡ ADJ aValue|ֵ,color|ɫ,colored| +ӡ N coupon|Ʊ֤ +ӡ N material|,?clothing| +ӡ˰ N expenditure| +ӡ˰Ʊ N coupon|Ʊ֤ +ӡ N trace| +ӡ N mark|־ +ӡ N mark|־,*check| +ӡ N stationery|ľ +ӡ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Indonesia|ӡ) +ӡ N place|ط,country|,ProperName|ר,(Indonesia|ӡ) +ӡŷ N language|,#country|,ProperName|ר +ӡȾ V AlterColor|ɫ,industrial| +ӡȾ N InstitutePlace|,*AlterColor|ɫ,factory|,industrial| +ӡ N quantity|,amount|,print|ӡˢ,&readings| +ӡˢ V print|ӡˢ +ӡˢ N InstitutePlace|,*print|ӡˢ,factory| +ӡˢ N tool|þ,*print|ӡˢ +ӡˢƷ N publications|鿯 +ӡˢ N attribute|,style|,#print|ӡˢ,&character| +ӡˢ N attribute|,style|,character| +ӡ̨ N stationery|ľ +ӡֽ N paper|ֽ,#TakePicture| +ӡ N experience| +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ N stationery|ľ +ӡ֤ V prove|֤ +ӡ N trace| +Ӣ N FlowerGrass| +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ N place|ط,country|,ProperName|ר,(UK|Ӣ) +Ӣ N unit|λ,&weight| +Ӣ N money|,(UK|Ӣ) +Ӣ CLAS unit|λ,&money|,(UK|Ӣ) +Ӣ N human|,able|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(UK|Ӣ) +Ӣ N place|ط,country|,ProperName|ר,(Europe|ŷ) +ӢʼҺ N army|,ProperName|ר,(UK|Ӣ) +Ӣ N human|,(UK|Ӣ) +Ӣ ADJ language|,#country|,ProperName|ר +Ӣ N human|,able|,desired| +Ӣ N human|,superior|,able|,desired| +Ӣ N human|,able|,desired| +Ӣ ADJ aValue|ֵ,ability|,able|,desired| +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ CLAS unit|λ,&length| +Ӣ N place|ط,country|,ProperName|ר +Ӣ CLAS unit|λ,&weight| +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N human|,*die|,desired| +Ӣ N mental|,humanized| +Ӣ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӣ N attribute|,name|,&human| +Ӣģ N human|,desired| +ӢĶ CLAS unit|λ,&length| +Ӣ V die| +Ӣ N language|,ProperName|ר,(UK|Ӣ) +Ӣ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ӣ N human|,able|,desired| +Ӣ۳ N human|,*salute|¾ +Ӣ ADJ aValue|ֵ,courage|,brave|,desired| +Ӣ N language|,#country|,ProperName|ר +Ӣ N regulation|,(UK|Ӣ) +Ӣ N attribute|,bearing|̬,brave|,desired|,&human| +Ӣˬ ADJ aValue|ֵ,courage|,brave|,desired| +ӣ N FlowerGrass| +ӣ N fruit|ˮ +ӣ N FlowerGrass| +ӣ N FlowerGrass| +Ӥ N human|,young| +Ӥ N human|,young| +ӥ N bird| +ӥ N human|,*FondOf|ϲ,#fight|,military| +ӥȮ N human|,undesired|ݬ,evil| +ӥ N bird| +Ӧ V agree|ͬ +Ӧ N character|,surname|,human|,ProperName|ר +Ӧ V obey|ѭ +Ӧ V reply| +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V change|,industrial| +Ӧ V handle|,patient=change| +Ӧ V agree|ͬ +Ӧ V associate| +Ӧ V reply| +Ӧ AUX {modality|} +Ӧ V reply| +Ӧ V handle| +Ӧ V slack|͵ +Ӧ V treat|Դ +Ӧ AUX {modality|} +Ӧ V handle|,patient=change| +ӦӲϾ ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +Ӧ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +Ӧ N attribute|,strength|,&inanimate| +Ӧ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +ӦĻ V include|,ResultWhole=army|,military| +Ӧŵ V agree|ͬ +ӦƸ V accept|,content=employ| +Ӧ V happen| +Ӧ N human|,passive| +Ӧʱ ADJ aValue|ֵ,newness|¾,new|,desired| +Ӧ V engage|,content=exam| +ӦܷԺ ADJ aValue|ֵ,ability|,able|,$judge|ö +ӦǴ ADJ aValue|ֵ,ability|,able|,$ExpressAgainst|Ǵ +Ӧ V succeed|ɹ +Ӧ V accept|,content=invite| +Ӧ ADJ aValue|ֵ,property|,$use| +Ӧ V use| +Ӧ N text| +Ӧ V use| +Ӧ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +Ӧо V own|,manner=all|ȫ +Ӧͨ ADJ aValue|ֵ,ability|,able|,$tell| +Ӧ V agree|ͬ +Ӧ˶ V appear| +Ӧս V accept|,content=fight| +Ӧս V accept|,content=fight|,military| +Ӧ V cure|ҽ +Ӧ V accept|,content=include|,military| +Ӧ V submit|,possession=text| +Ӧ˰ ADJ aValue|ֵ,performance|,#collect| +ӧ N shape| +ӧ N tool|þ,*decorate|װ +Ө ADJ aValue|ֵ,clearness|,clear| +Ө N stone|ʯ +ө N InsectWorm| +ө N InsectWorm| +өʯ N stone|ʯ,mine|,material| +Ӫ N facilities|ʩ,space|ռ +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ V manage| +Ӫ V manage|,commercial| +Ӫ N part|,%army| +Ӫ V seek|ıȡ +Ӫ N part|,%army|,*order| +Ӫ N human|,#occupation|ְλ,official|,military| +Ӫ N place|ط,military| +Ӫ N facilities|ʩ,space|ռ,military|,@reside|ס +Ӫ N fire| +Ӫ V build|,industrial| +Ӫ V rescue| +Ӫ N place|ط,city|,ProperName|ר,(China|й) +Ӫ N facilities|ʩ,space|ռ +Ӫ V seek|ıȡ,possession=wealth|Ǯ +Ӫ V MakeLiving|ı +Ӫ˽ V use|,means=steal|͵,crime| +Ӫ V sell|,commercial| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӫ N physical|,*maintain| +Ӫ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ӪƷ N physical|,*maintain| +Ӫ N physical|,*maintain| +Ӫҵ V function|,commercial| +Ӫҵ N human|,#occupation|ְλ,official|,commercial| +Ӫҵʱ N time|ʱ,#employee|Ա,@engage|,commercial| +ӪҵĿ N part|,%affairs|,commercial| +Ӫ V function|,commercial| +Ӫ V build|,industrial| +ӫ ADJ aValue|ֵ,brightness|,bright| +ӫ N lights| +ӫ N tool|þ,*illuminate| +ӫ N material|,#illuminate| +ӫ N part|,%tool|þ,#show| +ӫ V MakeMisunderstand|ʹ֪ +ӫ N part|,%tool|þ,#show| +ӫ N tool|þ,*look|,#image|ͼ,#shows| +Ӭ N InsectWorm|,undesired|ݬ +Ӭ N attribute|,rank|ȼ,#weight|,&compete|,sport| +Ӭ N tool|þ,*kill|ɱ,#InsectWorm| +Ӭͷ ADJ qValue|ֵ,amount|,few|,undesired|ݬ +Ӭͷ΢ ADJ payment|,few| +ӬͷС ADJ payment|,few| +ӬӪ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +Ӭ N InsectWorm|,undesired|ݬ +ӭ V GoForward|ǰ +ӭ V welcome|ӭ +ӭ V welcome|ӭ,target=human| +ӭ N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +ӭ N music|,*welcome|ӭ +ӭ N FlowerGrass| +ӭ V facing|,direction=wind| +ӭ V fit|ʺ,contrast=wind| +ӭ V please|ȡ +ӭ V welcome|ӭ +ӭ V resist|,military| +ӭ V welcome|ӭ +ӭ V welcome|ӭ +ӭ V facing|,direction=human| +ӭ V meet|,partner=female|Ů,#GetMarried| +ӭж ADJ aValue|ֵ,easiness|,easy|,desired| +ӭ V meet| +ӭͷ V facing|,direction=human| +ӭͷ V chase|׷ +ӭ V congratulate|ף,cause=festival| +ӭ V welcome|ӭ +ӭս V resist|,military| +ӭ V welcome|ӭ +Ӯ V defeat|սʤ +Ӯ V obtain|õ +Ӯ V win|ʤ +Ӯ V obtain|õ +Ӯ N human|,*win|ʤ +Ӯ V earn|׬ +Ӯ V surplus|ʣ +ӯ V exist| +ӯ V surplus|ʣ +ӯ N attribute|,effect|Ч,&event|¼ +ӯ V earn|׬ +ӯӯ ADJ aValue|ֵ,bearing|̬,delicate|,desired| +ӯӯ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӯӯ ADJ aValue|ֵ,clearness|,clear| +ӯӯ V exist| +ӯ V surplus|ʣ +Ӱ N image|ͼ +Ӱ N image|ͼ,$TakePicture| +Ӱ N shows| +Ӱ N trace| +Ӱ N trace|,#lights| +Ӱ N part|,%building|,skin|Ƥ +Ӱ N part|,%house| +Ӱ N tool|þ,#shows| +Ӱ N account|,@gather|ɼ,#image|ͼ +Ӱ N shows| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱ¥ N InstitutePlace|,*TakePicture| +Ӱ N human|,*FondOf|ϲ,#shows| +ӰƬ N shows| +Ӱ N text|,*estimate|,#shows| +Ӱ V mean|ָ +Ӱ N shows| +Ӱӳ N InstitutePlace|,@produce|,#shows| +Ӱ̳ N community|,#shows|,entertainment| +Ӱ V CauseAffect|Ⱦ +Ӱ N attribute|,power|,&AnimalHuman|,&organization|֯ +Ӱ V influence|Ӱ +Ӱ N image|ͼ +Ӱ N human|,*perform|,glorious|,entertainment| +Ӱҵ N affairs|,*produce|,#shows| +Ӱӡ V print|ӡˢ +ӰӰ´ ADJ aValue|ֵ,clearness|,blurred| +ӰԺ N InstitutePlace|,@perform|,entertainment| +Ӱչ N fact|,*display|չʾ,#readings|,#image|ͼ +Ӱչ N fact|,*display|չʾ,#shows| +Ӱ N image|ͼ +Ӱ N trace| +Ӱ N trace|,#lights| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ N part|,%inanimate|,head|ͷ +ӱ N part|,%plant|ֲ,embryo| +ӱ N part|,%plant|ֲ,embryo| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +ӱ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +Ӳ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ӳ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,will|־,strong|ǿ +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳ ADJ aValue|ֵ,hardness|Ӳ,hard|Ӳ +Ӳ N money| +Ӳ N part|,%computer|,*store| +Ӳ N attribute|,hardness|Ӳ,&physical| +Ӳͷ N human|,desired|,stubborn| +Ӳͷ N part|,hard|Ӳ,bone| +Ӳ N human|,desired|,stubborn| +Ӳ N human|,desired|,stubborn| +Ӳ V ize|̬,PatientAttribute=hard|Ӳ +Ӳ V ize|̬,PatientAttribute=hard|Ӳ,medical|ҽ +Ӳ N part|,%computer|,*store| +Ӳ N inanimate|,#disease| +Ӳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +Ӳú N material|,$burn| +Ӳ N material|,?food|ʳƷ +Ӳľ N wood|ľ,material| +Ӳ N part|,%computer|,*store| +Ӳ ADV {emphasis|ǿ} +Ӳˮ N liquid|Һ +Ӳͨ N money| +Ӳ N part|,%LandVehicle|,@sleep|˯ +Ӳϯ N part|,%LandVehicle|,@sit| +Ӳϯ N part|,%LandVehicle|,@sleep|˯ +Ӳ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +Ӳ N material|,?tool|þ,#decorate|װ,precious| +Ӳ N fact|,engage|,hardship|,military| +Ӳ N fact|,fight|,hardship|,military| +Ӳָ N quantity|,amount|,&artifact|˹ +Ӳָ N quantity|,amount|,&event|¼ +ӲʺϽ N metal| +ӲͷƤ V endeavour| +Ӳ N part|,%LandVehicle|,@sit| +Ӳ N part|,%AnimalHuman|,mouth| +ӳ V illuminate| +ӳ V ServeAsFoil| +ӳ V illuminate| +ӳɽ N FlowerGrass| +ӳ V illuminate| +ӳ V illuminate| +Ӵ ECHO sound| +ӵ V ComeTogether| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V own| +ӵ V HoldInArm|§ +ӵ V endorse|ӵ +ӵ V endorse|ӵ +ӵ N human|,*endorse|ӵ +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V push| +ӵ ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ +ӵ V GoInto| +ӵ V BlockUp| +ӵ V own| +ӵ V WellTreat|ƴ,politics| +Ӷ V employ| +Ӷ N human|,#family| +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,#family| +Ӷ N human|,#occupation|ְλ,employee|Ա +Ӷ N payment| +Ӷ N human|,#occupation|ְλ,employee|Ա +ӷ ADJ aValue|ֵ,content|,layered|,undesired|ݬ +ӷ ADJ aValue|ֵ,fatness|,fat| +Ӹ N disease| +ӹ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹµ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ӹҽ N human|,fake|α,medical|ҽ,undesired|ݬ +ӹ N human|,unable|ӹ,undesired|ݬ +ӹٮٮ N human|,able| +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ N character|,surname|,human|,ProperName|ר +Ӻ ADJ attribute|,relatedness|,intimate|,&human| +Ӻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ӻݻ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +ӻ V jump| +ӻԾ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +ӻԾ V jump| +Ӽ N InsectWorm| +ӽ V recite|ж +ӽ̾ V recite|ж +ӽ V praise|佱 +Ӿ V swim| +Ӿ V part|,%facilities|ʩ,route|·,@swim|,sport| +Ӿ̳ N community|,#swim|,sport| +Ӿװ N clothing|,#body|,*swim| +ӿ V appear| +ӿ V jet| +ӿ V jet| +ӿ V flow| +ӿ V GoInto| +ӿ V flow| +ӿ V jet| +ӿ N GoInto| +ӿ V GoInto| +ӿ V appear| +ӿ V LeaveFor|ǰ + ADV aValue|ֵ,duration|,TimeLong| + V die| + V farewell| + ADV {neg|} + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + V die| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| +ֹ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,duration|,TimeLong| +־ V remember|ǵ + ADJ aValue|ֵ,courage|,brave|,desired| +¸ ADJ aValue|ֵ,courage|,brave|,desired| +¸ҵ N human|,brave|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + N attribute|,courage|,&AnimalHuman| +ʿ N human|,desired|,brave| +ʿ N human|,military| +ֱǰ V GoForward|ǰ + ADJ aValue|ֵ,courage|,brave|,desired| + V dare| + N human|,brave| + N attribute|,effect|Ч,&thing| + V consume|ȡ + N expenditure| + V need| + V use| + PREP {instrument} +ñ V use|,patient=army|,military| +ò V WorthNot|ֵ +ò ADV aValue|ֵ,necessity|Ҫ,redundant| +ò N tree|,commercial| +ò V eat|,patient=edible|ʳ +ó N attribute|,effect|Ч,&thing| +ô N attribute|,effect|Ч,&thing| +÷ N method|,use| +ù V include| +ù ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +û N human|,*use| +þ V exhaust| +þ ADJ aValue|ֵ,circumstances|,decline|˥,undesired|ݬ +þ N implement|,generic|ͳ + PREP {purpose} + V endeavour| + N quantity|,amount|,exhaust|,&thing| +Ʒ N tool|þ,generic|ͳ + N human|,#occupation|ְλ,employee|Ա + V use|,patient=human| + V function| + V obtain|õ,possession=power|,politics| +ˮ N quantity|,amount|,exhaust|,&water|ˮ +; N attribute|,range|,$use|,&entity|ʵ + V fight|,military| + V show|,content=ability| + N fact|,spend| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + N purpose|Ŀ + PREP {purpose} + N purpose|Ŀ + V undergo|,content=use| + N expression| +֮ ADJ qValue|ֵ,amount|,many| + V use| + ADJ aValue|ֵ,attachment| + ADJ aValue|ֵ,behavior|ֹ,secret| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,occasion|,quiet|,desired| + V detain|ס,police| +İ ADJ aValue|ֵ,brightness|,dark| +ı V detain|ס +ı V detain|ס,police| +Ĺ N land|½ +Ļ V meet|,manner=secret| +Ļ N humanized| +ļ ADJ aValue|ֵ,occasion|,quiet|,desired| +Ľ V detain|ס,police| +ľ ADJ aValue|ֵ,occasion|,quiet|,desired| + N humanized| + N part|,%AnimalHuman|,viscera| +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N attribute|,interest|Ȥζ,interesting|Ȥ,&human| +Ĭ N emotion|,interesting|Ȥ +Ĭ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +Ĭ N human|,interesting|Ȥ +Ȥ N emotion|,#FondOf|ϲ + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ +˼ V think|˼ +΢ ADJ aValue|ֵ,quality|,weak| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,scene|,gracious|,desired| + ADJ aValue|ֵ,SoundVolume|,weak| + V weep| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*perform|,entertainment| +Ŵ V WellTreat|ƴ +Ŵ N fact|,WellTreat|ƴ +ŵ ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ŵ N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ŵ N attribute|,quality|,strong|ǿ,desired|,&thing| +Ÿ V WellTreat|ƴ +Ÿ N human|,$WellTreat|ƴ +ź ADJ aValue|ֵ,GoodBad|û,good|,desired| +Ż V ize|̬,PatientAttribute=superior| +Ż ADJ aValue|ֵ,GoodBad|û,good|,desired| +Żݴ N fact|,WellTreat|ƴ +Żݼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| +Ż N regulation|,WellTreat|ƴ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,GoodBad|û + N human|,*perform|,entertainment| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ȱ N attribute|,quality|,&event|¼,&thing| + V WellTreat|ƴ +ѧ N knowledge|֪ʶ + V GiveBirth| +ʤ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʤ̭ V alive|,condition=fit|ʺ +ʤ N human|,*win|ʤ + N attribute|,power|,strong|ǿ,&entity|ʵ + V enjoy|,content=sequence| +ȹ N coupon|Ʊ֤,#fund|ʽ +Ȩ N rights|Ȩ,#sequence| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N human|,*study|ѧ,education|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + V surpass|ǿ +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Խ ADJ aValue|ֵ,GoodBad|û,good|,desired| +Խ N emotion|,cherish|Ļ,#superior| +Խ N attribute|,property|,good|,&entity|ʵ + ADJ aValue|ֵ,circumstances|,idle|,desired| + V satisfied| + ADJ aValue|ֵ,GoodBad|û,good|,desired| +ʲƷ N artifact|˹,good|,desired| +ʷ N affairs|,*TakeCare|,good| +Ʒ N artifact|˹,refined|,generic|ͳ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V wave|ڶ +Ƴ ADJ aValue|ֵ,duration|,TimeLong| +Ƶ V wave|ڶ +ƺ ADJ aValue|ֵ,circumstances|,idle|,desired| +ƾ ADJ aValue|ֵ,duration|,TimeLong| +Ȼ ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,SoundQuality|,good|,desired| + ADJ aValue|ֵ,circumstances|,idle|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ƺ ADJ slack|͵ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,duration|,TimeLong| +Զ ADJ aValue|ֵ,time|ʱ,past| + N emotion|,worried|ż + V worried|ż +dz V sad|dz +Ƿ V worried|ż +ǻ N phenomena|,hardship|,undesired|ݬ +Ǿ V sad|dz + V worried|ż + V upset| + V sad|dz +˼ N thinking|˼,worried|ż +˼ V worried|ż + N emotion|,worried|ż + V worried|ż + V worried|ż + V sad|dz + V sad|dz +֢ N disease| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADV aValue|ֵ,degree|̶,extreme| + N character|,surname|,human|,ProperName|ר + N result|,undesired|ݬ,wrong| + ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,more| +Ϊ ADV aValue|ֵ,degree|̶,very| + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,very| + N cause|ԭ + V depend| + PREP {LocationIni} + PREP {LocationThru} + PREP {StateIni} + PREP {TimeIni} + PREP {agent} + PREP {cause} + PREP {means} +ɱ ADV aValue|ֵ,content| +ɴ ADV source +ɴ˲һк N result| +ɴ˿ ADV source +ɴ˿ɼ CONJ {comment|} +ɴ˿֪ CONJ {comment|} + N cause|ԭ +Ѿ ADJ aValue|ֵ,duration|,TimeLong| +dz ADV aValue|ֵ,content| +˲ ADJ aValue|ֵ,property|,$drive|Ԧ +ͷ N cause|ԭ + PREP cause|ԭ + CONJ {cause|ԭ} + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +֮ N text|,sincere| + V post|ʼ +ʰ N physical|,post|ʼ +ʱ N symbol|,#letter|ż +ʲ N human|,#occupation|ְλ,*post|ʼ +ʳ N LandVehicle|,*post|ʼ +ʴ N ship|,#tour| +ʴ N trace| +ʵ V post|ʼ +ʵԱ N human|,#occupation|ְλ,*post|ʼ +ʵ N affairs|,#post|ʼ +ʵ N InstitutePlace|,@post|ʼ +ʷ N expenditure|,*post|ʼ +ʷѸ ADJ aValue|ֵ,property|,$pay| +ʹ V buy|,instrument=letter|ż +ʻ V post|ʼ +ʼ V post|ʼ +ʼ N physical|,post|ʼ +ʾ N InstitutePlace|,@post|ʼ +· N facilities|ʩ,linear|,@post|ʼ,#letter|ż +Ʊ N coupon|Ʊ֤,*post|ʼ,#letter|ż +ͤ N facilities|ʩ,@post|ʼ,#letter|ż +Ͳ N facilities|ʩ,cubic|,@put|,#letter|ż + N facilities|ʩ,cubic|,@put|,#letter|ż +չ N fact|,display|չʾ + N affairs|,@post|ʼ,#letter|ż + N symbol|,#letter|ż + N InstitutePlace|,@post|ʼ +ֳ N human|,#occupation|ְλ,official|,#post|ʼ + N facilities|ʩ,*post|ʼ + N expenditure|,*post|ʼ + N metal| + V BeSimilar| + ADV {Vcontinue|} +̴ N human|,%publications|鿯,treacherous|,undesired|ݬ + V BeSimilar| + N place|ط,provincial|ʡ,ProperName|ר,(US|) +̫ ADJ aValue|ֵ,attachment|,#human| +̫Ů N human|,female|Ů +̫ N knowledge|֪ʶ,religion|ڽ +̫ͽ N human|,religion|ڽ +̫ N community|,(Jew|̫) +̫ N human| + V hesitate|ԥ +ԥ V hesitate|ԥ +ԥ V hesitate|ԥ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + V apply|ͿĨ + N material|,$burn| + N material|,?food|ʳƷ +ͱ N tool|þ,*inhale|,#liquid|Һ +ͱ N food|ʳƷ +Ͳ N material|,?tool|þ,#protect| +Ͳ N part|,%vegetable|߲,embryo|,$eat| +Ͳ N vegetable|߲ +Ͳ N part|,%vegetable|߲,embryo|,agricultural|ũ +Ͳ N place|ط,@store|,#material| +Ͳ N part|,%earth|,*store|,#material| +Ͳ N food|ʳƷ +Ͳ N tree| +Ͳ N food|ʳƷ +ʹ N ship|,*transport|,#material| +͵ N tool|þ,*illuminate| +ͷ N InstitutePlace|,@produce|,#material|,factory| +͸ N material| +͹ N tree| +͹ N tool|þ,cubic|,@put| +͹޳ N LandVehicle|,*transport|,#material| +͹ N LandVehicle|,*transport|,#material| +͹ˮ ADJ aValue|ֵ,brightness|,bright| +͹ ADJ aValue|ֵ,brightness|,bright| +ͺ N quantity|,amount|,exhaust|,#material| +ͻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +ͻ N readings|,#image|ͼ +ͼ N trace| +; N InstitutePlace|,mine| +Ϳ N facilities|ʩ,space|ռ,@put|,@store| + N part|,%plant|ֲ,embryo| + N crop|ׯ,?material| + N ship|,*transport|,#material| + N crop|ׯ + N part|,%LandVehicle|,*SpeedUp|ӿ +ī N stationery|ľ,*print|ӡˢ + N stone|ʯ,waste| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N food|ʳƷ + V apply|ͿĨ + N material|,liquid|Һ,*apply|ͿĨ,*decorate|װ +Ṥ N human|,#occupation|ְλ,*decorate|װ,industrial| + N gas| +ǻ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Ȼ ADV aValue|ֵ,behavior|ֹ,active|Ը +Ȼ V appear|,manner=active|Ը +ʯ N tool|þ,@rub|Ħ +ˮ N material|,?food|ʳƷ +ˮ N wealth|Ǯ + N tree| + N chemical|ѧ + N InstitutePlace|,@gather|ɼ,#material| + N food|ʳƷ +ͩ N tree|,?material| +Ͱ N tool|þ,cubic|,@put| +ͷ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,taste|ζ,undesired|ݬ + N trace|,dirty| + N part|,%vehicle|ͨ,cubic|,@put| + N attribute|,property|,#material| +ѹ N attribute|,strength|,&liquid|Һ + N gas|,waste| +ӡ V print|ӡˢ +ӡ N tool|þ,*print|ӡˢ + N artifact|˹,waste| +ը V cook| +ը N food|ʳƷ +ձ N material| +֬ N material|,?food|ʳƷ +ֽ N paper|ֽ + N human|,undesired|ݬ,sly| + N trace|,dirty| + N tree|,?material| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,undesired|ݬ,sly| +컬 ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N fruit|ˮ + V cook| + N character|,surname|,human|,ProperName|ר + V roam| + V swim| + V tour| +ΰ N human|,friend|,*tour| +α N part|,%tool|þ,#measure| +δ N ship|,#tour| +ε V roam| +ζ V SelfMoveInManner|ʽ +ι V tour| +λ V attack|,military| +λ N fact|,fight|,military| +λ N institution|,military| +λԱ N human|,military| +λ N place|ط,military| +λս N fact|,fight|,military| +μ N text| +ν V walk| +ο N human|,*tour| + V tour| + N place|ط,tour| + N part|,%building|,nerve| + V recreation| +ֳ N InstitutePlace|,@recreation| + V RelateNot|޹ + V tour| + N human| + ADJ aValue|ֵ,property|,function|,#SelfMove| + V function|,means=SelfMove| + N community|,*function|,#SelfMove| + N human|,agricultural|ũ,#livestock| + N fact|,function|,#SelfMove| + N bird| + N human|,*tour| + ADJ aValue|ֵ,ability|,able|,desired| +ɽˮ V tour| +ˮ V swim| +˵ V persuade|Ȱ˵ +ͧ N ship|,*WhileAway| + V WhileAway| +Ϸ V WhileAway| +Ϸ V tool|þ,*WhileAway| + V walk| + N human|,*walk| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + V hesitate|ԥ + V recreation|,entertainment| +ջ V tool|þ,*WhileAway| +Ӿ V swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N community|,*swim|,sport| +Ӿ N facilities|ʩ,@swim|,sport| +Ӿ N clothing|,#leg|,*swim| +Ӿñ N clothing|,#head|ͷ,*swim| +Ӿ N clothing|,#body|,*swim| +԰ V tour| +԰ N fact|,recreation| + N wealth|Ǯ + N human| +߮ V VehicleGo|ʻ + N knowledge|֪ʶ + V cherish|Ļ + V exist| + V own| + ADJ qValue|ֵ,amount|,some|Щ + V undergo| +а V obstruct|ֹ +аհ N aValue|ֵ,prettiness|,ugly|,undesired|ݬ +аɻ ADJ aValue|ֵ,trueness|α,true|,desired| +а ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +б ADV aValue|ֵ,behavior|ֹ,tactful| +б޻ V prepare|׼ +б۶ ADJ aValue|ֵ,content|,detailed|,desired| +в ADJ aValue|ֵ,property|,ill|̬ +в V ill|̬ +в ADV aValue|ֵ,sequence| +вŸ ADJ aValue|ֵ,ability|,able|,desired| +вƲ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +г ADJ aValue|ֵ,property|,$pay| +г ADJ aValue|ֵ,ability|,return|,#owe|Ƿ +гһ ADV aValue|ֵ,time|ʱ,future| +г V succeed|ɹ +д V wait|ȴ +д V wait|ȴ +е ADV {comment|} +е ADJ qValue|ֵ,amount|,some|Щ +еķʸ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +еʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +е ADJ qValue|ֵ,amount|,many| +е V know|֪ +еλ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +е ADV aValue|ֵ,degree|̶,ish| +е㳱ʪ ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +е ADV aValue|ֵ,degree|̶,ish| +е ADJ aValue|ֵ,newness|¾,used|,undesired|ݬ +е ADJ aValue|ֵ,kind|,queer| +е ADJ aValue|ֵ,taste|ζ,salty|,ish| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +ж ADJ aValue|ֵ,cleanness|ྻ,poison| +з EXPR obey|ѭ +з ADV aValue|ֵ,ability|,able| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +и ADJ aValue|ֵ,circumstances|,happy|,desired| +ио ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,effect|Ч,superior|,desired| +й ADJ aValue|ֵ,property|,relate|й +й V relate|й +йز N institution| +йط N part|,%entity|ʵ,relate|й +й ADJ aValue|ֵ,brightness|,bright| +й ADJ aValue|ֵ,kind|,queer|,undesired|ݬ +й֮޲ V surpass|ǿ +к ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +кܺùϵ ADJ aValue|ֵ,relatedness|,intimate| +к ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| +л ADJ aValue|ֵ,duration|,TimeLong| +л ADJ aValue|ֵ,content|,concise| +л ADJ aValue|ֵ,property|,#chemical|ѧ +л N material|,?tool|þ +л N chemical|ѧ +лѧ N knowledge|֪ʶ,#chemical|ѧ +лɳ ADJ aValue|ֵ,ProsCons|,pros|,desired| +л N chemical|ѧ +л N animate| +л N chemical|ѧ +л N chemical|ѧ +л N physical| +м̳Ȩ ADJ aValue|ֵ,ability|,able|,receive| +м֤ȯ N coupon|Ʊ֤,commercial| +мֵ ADJ aValue|ֵ,value|ֵ,precious|,desired| +мڴ ADV cause|ԭ +мʶ ADJ aValue|ֵ,ability|,able|,desired| +н ADJ aValue|ֵ,property|,gamble|IJ +нֵİ N furniture|Ҿ,@sleep|˯ +н ADJ aValue|ֵ,content|,substantial|ʵ,desired| +о N symbol|,#quantity|,#DoSum| +о ADJ aValue|ֵ,strength|,strong|ǿ,desired| +о ADJ aValue|ֵ,taste|ζ,strong|ǿ +о ADJ aValue|ֵ,property|,CauseToDo|ʹ,#surprise| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +пڽԱ V WellKnown| +п ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + V depend| + V depend| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ʽ N expression|,#quantity|,#symbol|,#DoSum|,#calculate| + ADJ aValue|ֵ,correctness|,upright|,desired| +о ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +ò ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ͼ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| + ADJ aValue|ֵ,strength|,strong|ǿ,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + V pregnant|,#medical|ҽ + V succeed|ɹ + ADJ qValue|ֵ,amount|,many| +ë V OutOfOrder| +ë V mad| +йϵ V relate|й + ADJ aValue|ֵ,reputation|,glorious|,desired| + ADJ aValue|ֵ,reputation|,glorious|,desired| +ʵ ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ŀ ADJ aValue|ֵ,trueness|α,true|,desired| +Ŀ ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,duration|,TimeLong| +ͷ ADJ aValue|ֵ,duration|,TimeLong| +б ADJ aValue|ֵ,ability|,able|,distinguish|ֱ + ADJ aValue|ֵ,duration| +ͽ N fact|,punish|,#detain|ס,police| +ζ ADJ aValue|ֵ,odor|ζ +Ǯ ADJ aValue|ֵ,richness|ƶ,rich|,desired| +Ǯ N human|,rich| + N character|,surname|,human|,ProperName|ר + ADV aValue|ֵ,behavior|ֹ,sincere|,desired| + N human|,friend|,*love|,desired| + V own|,possession=human|,#friend|,#love| +Ӧ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȥ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,duration|,TimeLong| + PREP {contrast} +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ N metal| +ɫ N community| +˷绯 ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +͸ ADJ aValue|ֵ,ability|,drain|ų,#liquid|Һ +ɫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADV aValue|ֵ,duration|,TimeLong| + N attribute|,strength|,&organization|֯ + ADV aValue|ֵ,duration|,TimeLong| +֮ N part|,%time|ʱ,@alive| +ʧ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʱ ADV aValue|ֵ,frequency|Ƶ,rarely|ż +ʶ֮ʿ N human|,wise|,desired| +ʷ ADV aValue|ֵ,duration|,TimeLong| +ʼ ADJ aValue|ֵ,behavior|ֹ,TimeShort|,undesired|ݬ +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,circumstances|,busy|æ,undesired|ݬ +޿ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V know|֪ + ADJ qValue|ֵ,amount|,few| +ζ ADJ aValue|ֵ,taste|ζ,sour| + ADV aValue|ֵ,degree|̶,certain|ij +Ϊ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,property| + ADJ aValue|ֵ,content|,neat|,desired| +ͬ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +ͷ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,ability|,able|,$believe| +Ϊ ADJ aValue|ֵ,ability|,able|,desired| +ζ V OutOfOrder| +ζ ADJ aValue|ֵ,content|,profound|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +Ļ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,ability|,able|,consume|ȡ +ϲ V pregnant|,#medical|ҽ +Ϸ ADJ aValue|ֵ,behavior|ֹ,optimistic|ֹ,desired| + ADJ aValue|ֵ,property| + ADJ qValue|ֵ,amount|,few| +޹˾ N InstitutePlace|,commercial| + ADJ aValue|ֵ,property| +ߵ N image|ͼ,shows| +· ADJ aValue|ֵ,ability|,able|,$sell|,commercial| +Ч ADJ aValue|ֵ,effect|Ч,superior|,desired| +Ч N time|ʱ,#effect|Ч +Ч N attribute|,boundary|,&time|ʱ +Ч N attribute|,effect|Ч,superior|,&entity|ʵ +Щ ADJ qValue|ֵ,amount|,some|Щ + N human|,gracious| +żֵ¼ N fact|,#news| + ADV aValue|ֵ,behavior|ֹ,active|Ը + V expect| + N human|,attentive|ϸ,desired| + ADJ aValue|ֵ,wisdom|ǻ,clever|,desired| +۶ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ lucky| + ADJ aValue|ֵ,content|,neat|,desired| +ѡȨ ADJ aValue|ֵ,ability|,able|,select|ѡ +ѧʵ N human|,#knowledge|֪ʶ +Ѫ ADJ aValue|ֵ,courage|,brave|,desired| +Ѫ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ѪԵϵ ADJ aValue|ֵ,source|Դ,family|,#GetMarried| +۹ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| +һ ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,active|Ը +˼ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +˼ ADJ aValue|ֵ,content|,profound|,desired| +ͼ ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADV aValue|ֵ,behavior|ֹ,special| + ADJ aValue|ֵ,content|,substantial|ʵ,desired| + ADJ aValue|ֵ,behavior|ֹ,passive| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +潡 ADJ aValue|ֵ,ProsCons|,pros|,desired| + ADJ aValue|ֵ,ProsCons|,pros|,desired| +ڽ ADJ aValue|ֵ,ProsCons|,pros|,desired| +Ӫ ADJ aValue|ֵ,ability|,able|,maintain| +Ӱ ADJ aValue|ֵ,ability|,able|,control| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,ability|,able|,tell| +Դ ADJ aValue|ֵ,property|,#electricity| +Ե ADV aValue|ֵ,relatedness|,intimate| +Զ ADJ aValue|ֵ,ability|,able|,predict|Ԥ +¿ѭ EXPR obey|ѭ + ADJ aValue|ֵ,ability|,able|,restrain|ֹ + ADJ aValue|ֵ,property|,$debate| +֪ V HaveKnowledge|֪ +־ EXPR endeavour|,purpose=succeed|ɹ +־ N human|,desired| +־¾ EXPR endeavour|,purpose=succeed|ɹ +־֮ʿ N human|,desired| +ǻ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,courage|,brave|,desired| + V benefit| +ڸԪ ADJ aValue|ֵ,ability|,able|,resume|ָ +׬ͷ ADJ aValue|ֵ,ability|,able|,earn|׬,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +ζ ADJ aValue|ֵ,taste|ζ,good|,desired| +֯ ADJ aValue|ֵ,property|,$forming|γ +֯ ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,property|,crime| + V disobey|Υ + ADJ aValue|ֵ,relatedness|,intimate|,desired| + N human|,friend| +Ѱ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѱ N place|ط,country|,friend| +Ѻ ADJ aValue|ֵ,relatedness|,intimate|,desired| +Ѻ N human|,friend| +Ѻó N place|ط,city|,friend| +Ѿ N army|,friend| + N human|,*reside|ס,near| +ڲ N army| + N human|,friend| + N emotion|,friend|,desired| + N human|,friend| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +Э N community| + N attribute|,relatedness|,&human| + N fact|,compete|,sport| + N direction| +ұ N direction| +ұ߷ N human|,*exercise|,(football|) +Ҳ N direction| +ҷ N direction| +ҷ N human|,employee|Ա,*exercise| + N direction| + N human|,politics| + N standpoint|,politics| +Ϸ N location|λ +Ͻ N location|λ + N direction| + N part|,%human|,hand| + N direction| +· N location|λ +½ N location|λ + N part|,%ship| + N community|,politics| + N community|,politics| +ת V TurnRound| +ת V TurnRound| + V protect| +ӻ V protect| + V help| + N material|,?tool|þ +ש N material|,?building| + N material|,?tool|þ + N material|,?tool|þ + V entice| + V guide| + N thing|,*entice| +ճ N tool|þ,*illuminate| +յ ADJ aValue|ֵ,ability|,able|,guide| +յ V guide| +ն N thing|,*entice| +շ V ResultIn| +չ V guide|,ResultEvent=admit| +չ V TakeAway|ᶯ,means=cheat|ƭ,crime| +ջ V attract| +ջ V entice| +ռ V entice|,ResultEvent=mating|,crime| +ս V entice|,ResultEvent=surrender|,military| +ƭ V entice| + ADJ aValue|ֵ,impression|ӡ,good|,desired| +ɱ V entice|,ResultEvent=kill|ɱ +ʹ V entice| + N cause|ԭ + V ResultIn| + ADV aValue|ֵ,frequency|Ƶ,again| + ADV also|Ҳ + COOR {and|} +... COOR {supplement|ݽ} +ֳ V aValue|ֵ,property|,$naming| +ֺר ADJ aValue|ֵ,ability|,able| + V aValue|ֵ,property|,$naming| +һ ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,age|,young| + N human|,young| +׳ N InsectWorm|,young| +׳ N bird|,young| +׶ N human|,young| +׶ N affairs|,#education|,#young| +׶԰ N InstitutePlace|,*TakeCare|,#young|,#human| +׽ N affairs|,#education|,#young| + N tree|,young| + N plant|ֲ,young| + N time|ʱ,#young| +Ů N human|,young|,female|Ů +ʱ N time|ʱ,#young| +ͯ N human|,young| +С ADJ aValue|ֵ,age|,young| +ѿ N part|,%plant|ֲ,embryo| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + ADJ aValue|ֵ,age|,young| + N attribute|,ability|,unable|ӹ,undesired|ݬ +԰ N InstitutePlace|,*TakeCare|,#young|,#human| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ط N human|,stubborn|,undesired|ݬ +ظ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ػ ADJ aValue|ֵ,speed|ٶ,slow| +ػ V GoRound|Χ,military| +ػ ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,content|,empty|,undesired|ݬ + ADJ aValue|ֵ,form|״,curved| +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V exist|,means=BlockUp| + N stone|ʯ +ٵ N land|½ +ٹ V irrigate|,agricultural|ũ +ٻ V exist|,means=BlockUp| + N stone|ʯ + V exist|,means=BlockUp| +Ѫ N part|,%AnimalHuman|,liquid|Һ + N disease| + V exist|,means=BlockUp| + N character|,surname|,human|,ProperName|ר + PREP {contrast} + PREP {location} + PREP {patient} + PREP {scope} + PREP {source} + PREP {time} +ڽ N time|ʱ,now| + CONJ {EventResult|¼} +Ǻ CONJ {EventResult|¼} + N tool|þ,cubic|,@put| + N tree| + N tree| + N character|,surname|,human|,ProperName|ר + V cheat|ƭ + V deceive|ƭ + V worried|ż + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ޱ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޲ɼ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޴ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +޹ɽ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +֪ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V deceive|ƭ,target=human|,politics| + N human|,*ignorant|֪ + N regulation|,*deceive|ƭ,#human|,politics| +Ū V deceive|ƭ + N human|,foolish| + N human|,foolish|,undesired|ݬ +˽ N time|ʱ,day|,festival| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N emotion|,faithful|,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N LandVehicle| + ADJ aValue|ֵ,attachment|,public| + N place|ط + N thought|ͷ,public| +۹ N tool|þ,*disseminate| +ۼල V supervise|,instrument=tool|þ,#disseminate| +۽ N tool|þ,*disseminate| + ADJ aValue|ֵ,necessity|Ҫ,redundant| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N time|ʱ,hind| +ನ N result| +ಿ N army|,*surplus|ʣ +൳ N human|,undesired|ݬ,*surplus|ʣ + N space|ռ + N quantity|,amount|,fulfil|ʵ,&organization|֯ + N quantity|,amount|,surplus|ʣ,&money| + N lights|,#night| + N money|,*surplus|ʣ + N attribute|,strength|,surplus|ʣ,&human| + N material|,?food|ʳƷ,#crop|ׯ + N quantity|,amount|,surplus|ʣ,&inanimate| + N attribute|,circumstances|,hind|,&human| +ȱ N phenomena|,surplus|ʣ,lack|ȱ + N attribute|,strength|,surplus|ʣ,&human| + N attribute|,strength|,surplus|ʣ,&implement| + N attribute|,circumstances|,hind|,&human| +ʣ ADJ aValue|ֵ,necessity|Ҫ,redundant| +ʣ ADJ qValue|ֵ,amount|,redundant| +Ͼ N time|ʱ,idle| + V surplus|ʣ + N emotion|,joyful|ϲ,desired| + N fact|,recreation| +ԣ ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N phenomena|,#weather|,#land|½,#unfortunate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V GoThrough| + V surpass|ǿ + V due| +Խ V GoThrough| +Խ V surpass|ǿ + N character|,surname|,human|,ProperName|ר + N fish| + N part|,%fish|,liquid|Һ,#mating| + N facilities|ʩ,*foster|,#fish| + N food|ʳƷ,#fish| + N food|ʳƷ,*feed|ι,#fish| + N food|ʳƷ +ǰ ADJ aValue|ֵ,color|ɫ,white| + N tool|þ,*feed|ι,*catch|׽ס,#fish| + N food|ʳƷ,*feed|ι,#fish| + N medicine|ҩ +㽺 N material| + N weapon| +׿ͧ N weapon|,ship|,military| +ͧ N weapon|,ship|,military| + N fish| + N part|,%fish|,skin|Ƥ + N physical|,good|,bad|,$mix| +֮ N place|ط,rich| + N fish|,young| +Ŀ V pretend|װ,content=RegardAs| +Ƭ N food|ʳƷ,#fish| +Ư N tool|þ,*catch|׽ס,#fish| + V damage| + N part|,%fish|,flesh| +ˮ N attribute|,relatedness|,intimate|,&human| + N food|ʳƷ + N facilities|ʩ,*foster|,#fish| + N tool|þ,*catch|׽ס,#fish| + N food|ʳƷ,#fish|,generic|ͳ +Ȳ N FlowerGrass|,?medicine|ҩ + N fish|,young| + N fish|,young| +ӥ N bird| + N material| +θ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +Ծ V jump|,sport| + N fish|,young| + N part|,%fish|,embryo| +ӽ N food|ʳƷ,#fish| + N part|,%fish|,viscera| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + N place|ط,city|,ProperName|ר,(Chongqing|) + V affairs|,#catch|׽ס,#fish|,agricultural|ũ + V seek|ıȡ + N artifact|˹,#fish|,generic|ͳ,agricultural|ũ +泡 N place|ط,#fish|,agricultural|ũ +洬 N ship|,*catch|׽ס,#fish|,agricultural|ũ + N place|ط,@catch|׽ס,#fish|,village|,agricultural|ũ + N facilities|ʩ,space|ռ,#fish|,#ship| +湤 N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ + N MusicTool| + N fire| + N community|,*catch|׽ס,#fish|,agricultural|ũ + N tool|þ,*catch|׽ס,#fish|,generic|ͳ,agricultural|ũ + V earn|׬ + N wealth|Ǯ,$earn|׬ + N ship|,*catch|׽ס,#fish|,agricultural|ũ + N human|,#occupation|ְλ,*catch|׽ס,#fish|,agricultural|ũ +ɫ֮ͽ N human|,lascivious|,undesired|ݬ + N tool|þ,*catch|׽ס,#fish| +ҵ N affairs|,#catch|׽ס,#fish|,agricultural|ũ + N location|λ + V CauseToDo|ʹ + V give| + V CauseToDo|ʹ + V please|ȡ + V recreation|,entertainment| +ֳ V InstitutePlace|,@recreation|,entertainment| +ֻ N fact|,recreation|,entertainment| +Ծ N fact|,compete|,recreation| +ҵ N affairs|,#recreation|,entertainment| + N RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + V WeatherFine| + ADJ qValue|ֵ,amount|,many| +꼾 N time|ʱ,season|,@WeatherBad|,#RainSnow|ѩ + N tool|þ,*obstruct|ֹ,#RainSnow|ѩ + N quantity|,amount|,&RainSnow|ѩ + N tree| +¶ N RainSnow|ѩ +¶ N emotion|,like|ϧ,kindhearted|,desired| +ñ N clothing|,#head|ͷ,*obstruct|ֹ,#RainSnow|ѩ +ǰ N material|,#drinks|Ʒ +ɡ N tool|þ,*obstruct|ֹ,#RainSnow|ѩ +ˮ N liquid|Һ,#RainSnow|ѩ +ˮ N time|ʱ,day| + N time|ʱ,day|,@WeatherBad|,#RainSnow|ѩ +Ь N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѥ N clothing|,#foot|,*obstruct|ֹ,#RainSnow|ѩ +ѩ N RainSnow|ѩ + N clothing|,#body|,*obstruct|ֹ,#RainSnow|ѩ + N liquid|Һ,#RainSnow|ѩ + COOR and| + PREP {partner} + PREP {target} + ... ûйϸ V RelateNot|޹ + ... Ϊ V ally| +ͬʱ ADV aValue|ֵ,time|ʱ + CONJ {question|} +빲 V undergo|,manner=together|ͬ +뻢ıƤ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + V engage|,content=discuss| + N place|ط,country|,*engage|,#discuss| + N human|,engage|,#discuss| + CONJ {transition|ת} +˵ CONJ {transition|ת} +վ V BecomeMore| +ͬ V illuminate| + ADJ aValue|ֵ,source|Դ,original|ԭ + V die| + ADJ aValue|ֵ,circumstances|,lonely| + ADJ aValue|ֵ,behavior|ֹ,passive|,undesired|ݬ +ԭһ ADJ aValue|ֵ,size|ߴ +֮ ADV {partner} +ڲͬ ADJ aValue|ֵ,kind|,special| + N land|½ + N character|,surname|,human|,ProperName|ר + N celestial| + N house| + ADJ aValue|ֵ,property|,fly|,#celestial| + V fly|,location=celestial| +Ա N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| + N character|,surname|,human|,ProperName|ר + N celestial| +ɴ N aircraft| +溽 V fly|,location=celestial| +ռ N celestial| + N expression| + N language| + V speak|˵ + N symbol| + N expression| + N sound|,#language| +﷨ N knowledge|֪ʶ,#language| + N expression| + N software| +ᄈ N text| + N expression| + N text| +Ͽ N text| +¼ N text| + N attribute|,behavior|ֹ,speak|˵,&human| + N attribute|,property|,&language| + N part|,%expression| +̬ N attribute|,property|,&language| + N text| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ,literature| +״ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +ϵ N attribute|,kind|,&language| + N attribute|,property|,&language| +ɲ ADJ aValue|ֵ,content|,empty|,undesired|ݬ + N language| +ѧ N knowledge|֪ʶ,#language| +ѧ N human|,#knowledge|֪ʶ,#language| + N information|Ϣ +ѧ N knowledge|֪ʶ,#information|Ϣ + N sound|,#language| + N language| +ij ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N {MaChinese|} + N part|,%bird|,hair|ë + V die| + N attribute|,rank|ȼ,#weight|,&compete|,sport| +ë N part|,%bird|,hair|ë +ë N SportTool|˶ +ë N fact|,exercise|,sport| +ëδ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N material| +޷ N clothing| +ɴ N material|,?clothing| +̳ N community|,sport| + N human|,friend| + N part|,%bird|,wing|,*fly| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N paper|ֽ + V WellTreat|ƴ + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N FlowerGrass| +Ƭ N food|ʳƷ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N crop|ׯ + N part|,%crop|ׯ,embryo| + N material|,?food|ʳƷ + N tool|þ,*decorate|װ,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,BlueGreen| +ʯ N material|,?tool|þ,#decorate|װ,precious| +ʯ V perish| + N crop|ׯ + N celestial| + ADJ aValue|ֵ,property|,#material| + N crop|ׯ + N FlowerGrass| + N tool|þ,*decorate|װ,#head|ͷ + N place|ط + N location|λ,%country|,internal| + N location|λ,%country|,external| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +ͷ N part|,%vegetable|߲,embryo|,$eat| +ͷ N vegetable|߲ +ܵ N part|,%vegetable|߲,embryo|,$eat| +ܵ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,surname|,human|,ProperName|ר + V sad|dz + V cherish|Ļ + N medicine|ҩ,(China|й) + N FlowerGrass| + V sad|dz + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +д ADJ aValue|ֵ,scene|,exuberant|ï,desired| + V request|Ҫ + V sigh|̾ + V request|Ҫ + V request|Ҫ + V meet| + V suffer|,content=kill|ɱ + V meet| + V suffer| + V suffer|,content=kill|ɱ + V meet| + V undergo|,content=rescue| + V die|,police| + V happen| + V suffer|,content=dangerous|Σ,police| + V CompareTo| + N character|,surname|,human|,ProperName|ר + V know|֪ + V tell| + N land|½ + ADJ aValue|ֵ,attachment|,royal| + V drive|Ԧ + V obstruct|ֹ + V obstruct|ֹ,patient=cold| +԰ N facilities|ʩ,@WhileAway|,royal| + V resist|,content=damage|,military| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,royal| + ADJ aValue|ֵ,property|,$use|,politics| + ADJ aValue|ֵ,property|,$use|,royal| +Է N facilities|ʩ,@WhileAway|,royal| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| + ... ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V BeRecovered|ԭ,medical|ҽ + ADV aValue|ֵ,degree|̶,more| + ADV aValue|ֵ,degree|̶,more| + V prosper| + ADV aValue|ֵ,degree|̶,more| + N aspiration|Ը,expect| + V willing|Ը + N aspiration|Ը,expect| + N aspiration|Ը,expect| + N aspiration|Ը,expect| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + N fact|,#police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + N human|,#occupation|ְλ,police| + V GiveBirth| + V cultivate|,education| + V foster| + V cultivate|,patient=human|,education| + V foster|,patient=bird| + V planting|ֲ,patient=tree|,agricultural|ũ + ADJ aValue|ֵ,age|,#GiveBirth| + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V planting|ֲ,patient=crop|ׯ,agricultural|ũ + V planting|ֲ,patient=plant|ֲ,agricultural|ũ + V attribute|,reputation|,&human| + V praise|佱 +ȫ ADJ aValue|ֵ,reputation|,glorious|,desired| +Ϊ V RegardAs|,means=praise|佱 +ԡ V wash|ϴ +ԡ N facilities|ʩ,@wash|ϴ,@swim| +ԡ N InstitutePlace|,@wash|ϴ,commercial| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N tool|þ,*wipe| +ԡ N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ +ԡ N room|,@wash|ϴ +ԡѪ ADJ aValue|ֵ,behavior|ֹ,strong|ǿ +ԡѪս V fight|,manner=endeavour| +ԡ N clothing|,#wash|ϴ +Ԣ V contain| +Ԣ N house| +Ԣ V reside|ס +Ԣ N human| +Ԣ N human|,past| +Ԣ V reside|ס +ԢĿ V check| +Ԣ N house| +Ԣ N house| +Ԣ N text| +Ԣ N information|Ϣ +Ԣ ADJ aValue|ֵ,content|,profound| +Ԣ V situated| +ԣ ADJ qValue|ֵ,amount|,many| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Ԥ V tell| +Ԥ ADJ aValue|ֵ,possibility|,possible|,$choose|ѡ +Ԥ ADJ aValue|ֵ,property|,$prepare|׼ +Ԥ V prepare|׼ +Ԥ N part|,%army| +Ԥ N affairs|,engage|,military| +Ԥ V predict|Ԥ +Ԥ V handle| +Ԥ V MakeAppointment|Լ +Ԥ V MakeAppointment|Լ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V obstruct|ֹ +Ԥ ADJ aValue|ֵ,property|,obstruct|ֹ +Ԥ V pay| +Ԥ V pay| +Ԥ N expenditure| +Ԥ N experience| +Ԥ N perception|֪ +Ԥ V announce| +Ԥ V buy|,commercial| +Ԥ V guess|² +Ԥ N result|,predict|Ԥ +Ԥ V estimate| +Ԥ V predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N thought|ͷ +Ԥ N attribute|,ability|,predict|Ԥ,&human| +Ԥ N attribute|,property|,predict|Ԥ +Ԥ V tell|,content=fact|,police| +Ԥ N InstitutePlace|,@teach|,@study|ѧ,education| +Ԥ V predict|Ԥ +Ԥ V SetAside| +Ԥı V plan|ƻ +Ԥ ADJ aValue|ֵ,property|,$predict|Ԥ +Ԥ V expect| +Ԥ V predict|Ԥ +ԤڵЧ V result|,$predict|Ԥ +Ԥ V WarmUp| +Ԥ V compete|,sport| +Ԥ V interrogate|,police| +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥʾ V mean|ָ +Ԥʾ ADJ aValue|ֵ,property|,mean|ָ +Ԥ V gather|ɼ +Ԥ V sell| +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ N plans|滮,*spend|,#wealth|Ǯ +Ԥ㲦 N fund|ʽ +Ԥ N wealth|Ǯ,$InDebt|,#plans|滮 +Ԥ N wealth|Ǯ,surplus|ʣ,#plans|滮 +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥ ADJ aValue|ֵ,attachment|,#plans|滮,#spend|,#wealth|Ǯ +Ԥʽ N fund|ʽ,#plans|滮 +Ԥϰ V study|ѧ,education| +Ԥ ADJ aValue|ֵ,time|ʱ,InFront|ǰ +ԤȾ N human|,*persuade|Ȱ˵ +Ԥ V predict|Ԥ +Ԥѡ N fact|,select|ѡ +Ԥ ADJ aValue|ֵ,property|,predict|Ԥ +Ԥ V predict|Ԥ +Ԥ N human|,*predict|Ԥ +Ԥ V perform|,entertainment| +ԤӦ N attribute|,strength|,&inanimate| +ԤԼ V MakeAppointment|Լ +Ԥ N information|Ϣ +Ԥ֪ V know|֪ +Ԥ V produce| +Ԥƹ N component|,%building| +Ԥף V congratulate|ף +ԥ N place|ط,provincial|ʡ,ProperName|ר,(China|й) +ԥ N shows| +Ԧ V drive|Ԧ +Ԧ N human|,*drive|Ԧ,#vehicle|ͨ,military| +ԧ N bird| +ԧ N human|,family|,mass| +Ԩ ADJ aValue|ֵ,depth|,deep| +Ԩ N waters|ˮ,surfacial| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +Ԩ ADJ aValue|ֵ,content|,profound|,desired| +ԨԴ N cause|ԭ +Ԩ޴ N place|ط,crime| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N phenomena|,undesired|ݬ,#unfortunate| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩͷ N human|,*spend|,foolish| +ԩ N emotion|,hate|,undesired|ݬ +ԩ N human|,enemy| +ԩҶͷ N human|,enemy| +ԩ·խ V meet| +ԩٴ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ N emotion|,hate|,undesired|ݬ +ԩ N fact|,police|,undesired|ݬ,#IllTreat|,#MakeBad|Ӻ +ԩ V IllTreat| +ԩ N phenomena|,undesired|ݬ,$IllTreat|,$MakeBad|Ӻ +ԩ V IllTreat| +ԩ V WorthNot|ֵ +ԩ N fact|,MakeBad|Ӻ,#police| +Ԫ ADJ aValue|ֵ,importance|,important| +Ԫ N character|,surname|,human|,ProperName|ר +Ԫ N money|,(China|й) +Ԫ N part|,%physical| +Ԫ NUM qValue|ֵ,sequence|,ordinal| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ CLAS unit|λ,&money|,(China|й) +Ԫ N money| +Ԫ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +Ԫ N time|ʱ,festival|,@congratulate|ף +Ԫ N part|,%implement| +Ԫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N human|,politics| +Ԫ N time|ʱ,year|,#royal| +Ԫ N human|,family|,female|Ů +Ԫ N part|,%implement| +Ԫ N attribute|,strength|,&AnimalHuman| +Ԫ ADJ aValue|ֵ,color|ɫ,black| +Ԫ N human|,#occupation|ְλ,official|,military| +Ԫ N human|,#occupation|ְλ,official| +Ԫ˧ N human|,#occupation|ְλ,official|,military| +Ԫ N part|,%entity|ʵ +Ԫڱ N document| +Ԫ N food|ʳƷ +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N time|ʱ,day|,festival|,$congratulate|ף +Ԫ N human|,crime|,undesired|ݬ +Ԫѫ N human|,desired|,*succeed|ɹ,*establish| +Ԫ N sound|,#language| +Ԫ N fish| +Ԫ N time|ʱ,month| +ԫ N part|,%building|,skin|Ƥ +Ԭ N character|,surname|,human|,ProperName|ר +ԭ ADJ aValue|ֵ,physique| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N publications|鿯 +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N material|,generic|ͳ +ԭ N symbol|,#quantity| +ԭ V MakeAppointment|Լ +ԭ N attribute|,strength|,&entity|ʵ +ԭԼ N disease| +ԭ ADJ aValue|ֵ,wholeness|ȱ,complete| +ԭⲻ ADV aValue|ֵ,wholeness|ȱ,complete| +ԭ N publications|鿯,original|ԭ +ԭ N human|,*accuse|ظ,police| +ԭ N attribute|,source|Դ,#ComeToWorld|,&human| +ԭ N attribute|,price|۸,original|ԭ,&artifact|˹,commercial| +ԭ N publications|鿯,original|ԭ +ԭ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N regulation| +ԭ N material|,?food|ʳƷ,#crop|ׯ +ԭ V forgive|ԭ +ԭ N material|,generic|ͳ +ԭò N attribute|,appearance|,original|ԭ,&physical| +ԭú N material|,$burn| +ԭ N material| +ԭ N attribute|,name|,true|,&human| +ԭľ N wood|ľ,material| +ԭ N human|,family|,female|Ů +ԭɫ N attribute|,color|ɫ,&physical| +ԭ V judge|ö,police| +ԭ N AnimalHuman|,generic|ͳ +ԭ N physical| +ԭʼ ADJ aValue|ֵ,behavior|ֹ,vulgar| +ԭʼ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭʼ ADJ aValue|ֵ,time|ʱ,past| +ԭʼ V gather|ɼ +ԭʼ¼ N text|,original|ԭ +ԭʼ N human|,past| +ԭʼɭ N tree|,past| +ԭʼ N organization|֯ +ԭί N part|,%event|¼ +ԭ N text| +ԭ N text|,^$translate| +ԭ N inanimate| +ԭ ADJ aValue|ֵ,time|ʱ,past| +ԭ N example|ʵ,#artifact|˹ +ԭ N attribute|,form|״,&physical|,original|ԭ +ԭ N material| +ԭ N attribute|,circumstances|,original|ԭ,&physical| +ԭҰ N land|½ +ԭ N aspiration|Ը,expect|,original|ԭ +ԭ N cause|ԭ +ԭ N cause|ԭ +ԭ N material|,liquid|Һ,$burn| +ԭ ADJ aValue|ֵ,property|,exist| +ԭԭ ADJ aValue|ֵ,range|,all|ȫ +ԭ N regulation| +ԭ N attribute|,property|,regulation|,&human| +ԭ֭ԭζ ADJ aValue|ֵ,source|Դ,original|ԭ +ԭַ N location|λ +ԭ N human|,*own| +ԭ N readings| +ԭס N human|,*reside|ס +ԭ״ N attribute|,circumstances|,past|,&entity|ʵ +ԭ N part|,%physical| +ԭӵ N weapon| +ԭӺ N part|,%physical| +ԭ N part|,%physical|,strength| +ԭܻ N part|,%institution|,politics|,(institution|=UN|Ϲ) +ԭ N readings| +ԭ V forgive|ԭ +Ԯ V help| +Ԯ V quote| +Ԯ V rescue| +Ԯ N army|,*rescue| +Ԯ V build|,EventProcess=help| +Ԯ V rescue| +Ԯ N human|,*rescue| +Ԯ N army|,*rescue| +Ԯ N fund|ʽ,*help| +Ԯ N fact|,help| +Ԯ V help|,patient=foreign| +Ԯ V quote| +Ԯ V recommend|Ƽ +Ԯ V quote| +Ԯ V help| +ԯ N livestock|,#LandVehicle| +԰ N InstitutePlace|,@recreation| +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N part|,%entity|ʵ,aspect| +԰ N human|,#occupation|ְλ,*planting|ֲ,#FlowerGrass|,agricultural|ũ +԰ N human|,#occupation|ְλ,*teach|,education| +԰ N facilities|ʩ,#plant|ֲ +԰ N facilities|ʩ,space|ռ,@bury|,#die| +԰ N facilities|ʩ,#plant|ֲ +԰ N land|½,@planting|ֲ,agricultural|ũ +԰ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ѧ N knowledge|֪ʶ,#vegetable|߲,#FlowerGrass|,agricultural|ũ +԰ N land|½,@planting|ֲ,agricultural|ũ +Ա CLAS NounUnit|,&human|,military| +Ա N human| +Ա N human|,#occupation|ְλ,employee|Ա +Ա N human|,#occupation|ְλ,employee|Ա +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N image|ͼ +Բ N money| +Բ N money|,(North Korean|) +Բ N money|,(South Korea|) +Բ CLAS unit|λ,&money|,(China|й) +Բײ N part|,%vegetable|߲,embryo|,$eat| +Բײ N vegetable|߲ +Բ N material|,wood|ľ +Բ V help| +Բ N part|,%building|,head|ͷ +Բ N material|,metal| +Բµ ADJ aValue|ֵ,form|״,round|Բ +Բ N tool|þ,*measure| +Բ N MusicTool| +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +Բ N shape| +Բ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ +Բ V die| +Բ N tool|þ,*break|۶ +Բ N symbol| +Բ ADJ aValue|ֵ,impression|ӡ,good|,desired| +Բ V fulfil|ʵ,patient=aspiration|Ը +Բ N shape| +Բ N shape| +ԲȦ N shape|,round|Բ +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| +Բ ADJ aValue|ֵ,ability|,able|,desired| +Բͨ ADJ aValue|ֵ,behavior|ֹ,flexible|,desired| +ԲͲ N shape| +Բ N music| +Բ N part|,%shape|,round|Բ +Բ ADJ aValue|ֵ,form|״,round|Բ +ԲԲ ADJ aValue|ֵ,form|״,round|Բ +Բ䷽ V FitNot| +Բ N image|ͼ +Բ N PenInk|ī,*write|д +Բ N shape| +Բ N shape| +Բ ADJ aValue|ֵ,form|״ +Բ׶ N shape| +Բ׶ ADJ aValue|ֵ,form|״ +Բ N furniture|Ҿ,space|ռ,@put|,round|Բ +Բ N fact|,discuss|,politics| +Բ N food|ʳƷ +Գ N animal| +Գ N beast| +Գ N beast| +Գ N animal|,#human| +Դ N cause|ԭ +Դ N part|,%waters|ˮ,head|ͷ +Դ N software| +Դ N part|,%event|¼,head|ͷ +Դ N part|,%waters|ˮ,head|ͷ +ԴȪ N cause|ԭ +Դͷ N part|,%waters|ˮ,head|ͷ +Դ V ResultFrom|Ե +Դ V begin|ʼ +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԴ ADJ aValue|ֵ,behavior|ֹ,continuous| +ԴԶ ADJ aValue|ֵ,content|,profound|,desired| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե N part|,%inanimate|,%space|ռ,edge| +Ե PREP {location} +Ե N attribute|,relatedness|,&human| +Ե N attribute|,relatedness|,&human| +Ե N cause|ԭ +Ե ADV {cause|ԭ,question|} +Եľ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +Ե N cause|ԭ +Ե N cause|ԭ +Ե V ResultFrom|Ե +Զ ADV aValue|ֵ,degree|̶,more| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADV aValue|ֵ,duration|,TimeShort| +Զ ADJ aValue|ֵ,relatedness|,unfamiliar|϶ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ̺ͽ ADJ aValue|ֵ,distance| +Զ N location|λ,far|Զ +Զ ADJ aValue|ֵ,content|,profound|,desired| +Զ ADJ aValue|ֵ,quality|,great|ΰ,desired| +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ N facilities|ʩ,route|·,far|Զ +Զ N place|ط,ProperName|ר,(Asia|) +Զ N place|ط,far|Զ +Զ V from| +Զ ADJ aValue|ֵ,time|ʱ,past| +Զ N time|ʱ,past| +Զ V VehicleGo|ʻ +Զ N thought|ͷ +Զ׿ʶ N thought|ͷ,wise| +Զ N part|,%place|ط,surrounding|Χ,#city| +Զ ADJ aValue|ֵ,distance| +Զ N attribute|,distance|,&space|ռ +Զ ADJ aValue|ֵ,reputation|,glorious|,desired| +Զ N attribute|,outlook|ǰ,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ V leave|뿪 +Զ N thought|ͷ +Զ N place|ط,ProperName|ר,(Asia|) +Զ ADV aValue|ֵ,duration|,TimeLong| +Զ N human|,family| +Զ V SelfMoveInManner|ʽ +Զ N disease|,#eye| +Զ V look| +Զ V look| +Զ V sell| +Զ V SelfMoveInManner|ʽ +Զ V disseminate| +Զ N waters|ˮ,surfacial| +Զ N cause|ԭ +ԶԶ ADV aValue|ֵ,degree|̶,more| +ԶԶ ADJ aValue|ֵ,distance|,far|Զ +Զ N army| +Զ V leave|뿪 +Զ־ N FlowerGrass|,?medicine|ҩ +Զ־ N aspiration|Ը,expect|,desired| +Զ߸߷ V leave|뿪 +Զ V tour| +Զ N human|,past| +Է N community| +Է N facilities|ʩ,#plant|ֲ,#livestock| +Ը N aspiration|Ը,expect| +Ը V willing|Ը +Ը N aspiration|Ը,expect| +Ը V request|Ҫ +Ը V willing|Ը +ԸЭ N human|,*surrender| +Թ V blame|Թ +Թ V emotion|,hate|,undesired|ݬ +Թ N emotion|,hate|,undesired|ݬ +Թ N entity|ʵ,$hate| +Թ N emotion|,hate|,undesired|ݬ +Թ V hate| +Թ V repent|û +Թż N human|,family|,mass|,#unfortunate| +Թ N emotion|,hate|,undesired|ݬ +Թص V protest| +Թ V blame|Թ +Թ N text|,*blame|Թ +Թ N emotion|,hate|,undesired|ݬ +Ժ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +Ժ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%building|,space|ռ +Ժ N part|,%institution|,official| +Ժ N human|,#occupation|ְλ,official| +Ժ N part|,%building|,space|ռ +Ժ N part|,%house|,space|ռ +Ժǽ N part|,%building|,skin|Ƥ +Ժʿ N human|,able|,#knowledge|֪ʶ +Ժ N InstitutePlace|,@research|о,#knowledge|֪ʶ +ԺУ N InstitutePlace|,@teach|,@study|ѧ,education| +Ժ N part|,%house|,space|ռ +Ի V naming| +Ի V speak|˵ +Լ V MakeAppointment|Լ +Լ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| +Լ ADJ aValue|ֵ,content|,simple|,desired| +Լ N agreement|Լ +Լ N fact|,DoSum| +Լ N fact|,MakeAppointment|Լ +Լ V invite| +Լ ADV qValue|ֵ,amount|,almost| +Լ V restrain|ֹ +Լ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Jordan|Լ) +Լ N place|ط,country|,ProperName|ר,(Asia|) +Լɶ N money|,(Jordan|Լ) +Լ N human|,(Jordan|Լ) +Լ V MakeAppointment|Լ +Լ׳ V forming|γ +Լ V MakeAppointment|Լ +Լ˹ N place|ط,city|,ProperName|ר,(South Africa|Ϸ) +Լ V meet| +Լ V meet| +Լ V AmountTo|ܼ +Լ V calculate| +Լ³ N language|,#country|,ProperName|ר +Լ ADJ aValue|ֵ,behavior|ֹ,simple| +Լ ADV qValue|ֵ,amount|,almost| +Լ ADV qValue|ֵ,amount|,almost| +ԼĪ ADV qValue|ֵ,amount|,almost| +Լ V invite| +Լ V restrain|ֹ +Լ N attribute|,power|,#restrain|ֹ,&thing| +Լ ADJ attribute|,power|,#restrain|ֹ,&thing| +Խ V BeBeyond|Խ +Խ N character|,surname|,human|,ProperName|ר +Խ V cross|Խ +Խ N place|ط,country|,ProperName|ר,(Vietnam|Խ) +Խ ... Խ ADV aValue|ֵ,degree|̶,more| +Խ V pass|ȹ,patient=winter| +Խ N money|,(Vietnam|Խ) +Խ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Խ V cross|Խ +Խ V surpass|ǿ +Խ V cross|Խ +Խ V cross|Խ,LocationThru=country|,crime| +Խ N human| +Խ N shows| +ԽԽ ADV aValue|ֵ,degree|̶,more| +Խ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Vietnam|Խ) +Խ N place|ط,country|,ProperName|ר,(Asia|) +Խ N language|,#country|,ProperName|ר +ԽȨ V BeBeyond|Խ +Խ ADV aValue|ֵ,degree|̶,more| +Խλ V BeBeyond|Խ,sport| +ԽҰ N fact|,cross|Խ +ԽҰ N fact|,compete|,sport| +Խ V flee|,LocationIni=InstitutePlace|,crime| +Խ V human|,*flee|,#InstitutePlace|,crime| +Խ޴ V handle| +Ծ V jump| +Ծ V shiver| +Ծ V GoForward|ǰ +Ծ V jump| +Ծ V become|Ϊ +Ծ V urge|ʹ +ԾȻֽ V appear| +Ծ V become|Ϊ +ԾԾ V willing|Ը +Կ N tool|þ,*open|,*shut|ر +Կ N tool|þ,*open|,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,family|,male| + N land|½ + N human|,family|,male| +ĸ N human|,family|,female|Ů +˧ N character|,surname|,human|,ProperName|ר + N place|ط,city|,ProperName|ר,(China|й) + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N edible|ʳ + N shows| + N language|,#country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,form|״,round|Բ + ADJ aValue|ֵ,time|ʱ,month| + N celestial| + N time|ʱ,month|,special| + N unit|λ,&time|ʱ +° ADJ aValue|ֵ,color|ɫ,blue|,light| +°׷ N time|ʱ,night|,beautiful| +° N time|ʱ,day| +± N document| +± N publications|鿯 +± N food|ʳƷ +² N quantity|,amount|,&crop|ׯ,&artifact|˹ +² N quantity|,amount|,&crop|ׯ,&artifact|˹,#month| +³ N time|ʱ,early|,month| +µ N time|ʱ,ending|ĩ,month| +¶ ADJ aValue|ֵ,frequency|Ƶ,month| +· N time|ʱ,month| +¹ N celestial| +¹ N lights| +» N lights| +¼ N FlowerGrass| +¼ N FlowerGrass| +¾ N phenomena|,#female|Ů,#medical|ҽ +¾ N disease| +¿ N publications|鿯 + N celestial| +ĩ N time|ʱ,month|,ending|ĩ +Ʊ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ + N MusicTool| + N celestial| +ɫ N lights| +̨ N facilities|ʩ,space|ռ,@TakeVehicle|,#LandVehicle| +Ϣ N fund|ʽ,$earn|׬,commercial| + N humanized| + N humanized|,*guide| + N human|,*guide| +н N payment|,#month| + N celestial| + ADJ aValue|ֵ,form|״ +ҹ N time|ʱ,day|,night| + N time|ʱ,month| + N lights| + N time|ʱ,middle|,month| + N time|ʱ,ending|ĩ,month| + N time|ʱ,ending|ĩ,month| + V joyful|ϲ + V please|ȡ +ö ADJ aValue|ֵ,SoundQuality|,good|,desired| +÷ V admire|Ľ +Ŀ ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V check| + V read| +ı V check|,content=army|,military| +ı N fact|,check|,#army|,military| +ıʽ N fact|,check|,#army|,military| +Ķ V read| +Ķд N attribute|,ability|,read|,compile|༭,&human| +ľ V check|,content=result|,#exam| + V read| + N room|,@read| + N experience| + V undergo| + V remove|,agricultural|ũ +ų N tool|þ,#crop|ׯ + V remove|,location=land|½,agricultural|ũ + N CloudMist| + N character|,surname|,human|,ProperName|ר + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +Ʋ N CloudMist| +Ʋ N CloudMist| +ƺ N CloudMist| +ƺ N celestial| +Ƽ V ComeTogether| + N MusicTool| +ĸ N stone|ʯ,material| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + N CloudMist| +ȸ N bird| +ɼ N tree| +ɽ ADJ aValue|ֵ,clearness|,blurred| + N part|,%building|,nerve| + N sky| +ͼ N image|ͼ,#CloudMist| + N CloudMist| +ϼ N CloudMist| + N sky| +ɢ V WeatherFine| +ɢ V disappear|ʧ + N CloudMist| + V roam| + N fact|,mating| + N text| + ADJ aValue|ֵ,clearness|,blurred| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,form|״,even| + V economize|ʡ + V separate| +ȳ ADJ aValue|ֵ,form|״,even| +ȶ V economize|ʡ +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱥ ADJ aValue|ֵ,form|״,even| +Ⱦ ADJ aValue|ֵ,form|״,even| + V MakeUp|ױ + ADJ aValue|ֵ,form|״,even| +ʵ ADJ aValue|ֵ,form|״,even| + N attribute|,speed|ٶ,&event|¼ + ADJ aValue|ֵ,form|״,even| + V fall| + V fall| + V disappear|ʧ + V perish| +ʯ N stone|ʯ,#celestial| + N metal|,#celestial| + N stone|ʯ,#celestial| + V agree|ͬ +ʵ ADJ aValue|ֵ,behavior|ֹ,proper|,desired| +ŵ V agree|ͬ + V agree|ͬ + N attribute|,circumstances|,&human| + N fact|,AlterLocation|ռλ + V transport| + V use| +˳ V plan|ƻ +˳ѧ N knowledge|֪ʶ +˳ V plan|ƻ +˶ N fact|,AlterLocation|ռλ +˶ N fact|,exercise|,sport| +˶ N fact|,function|,politics| +˶ N disease| +˶ N clothing| +˶ N fact|,sport| +˶ N SportTool|˶ +˶ѧ N knowledge|֪ʶ,#sport| +˶ N clothing| +˶Ա N human|,sport| +˷ N expenditure|,transport| +˺ N waters|ˮ,linear| +˼ N attribute|,price|۸,&transport| +˾ N attribute|,distance|,#transport| + N attribute|,ability|,&transport| + N quantity|,amount|,#transport|,&physical| + N attribute|,circumstances|,&human| + V transmit|,medical|ҽ + V TakeAway|ᶯ,sport| + V transport| +䳵 N LandVehicle|,@transport|,#inanimate| +乤 N vehicle|ͨ + N aircraft|,*transport| + N aircraft|,*transport|,#inanimate| + N machine|,*transport|,mine| +ҵ N affairs|,*transport| + V transmit| + V transport| + V calculate| + V sell|,commercial| + V SelfMove| + V function| +Ӫ V function| + V use| + V undergo|,content=use| + V transport| +ع N vehicle|ͨ,*transport| +ػ N vehicle|ͨ,*transport| +ת V circle| +ת V function| + V function| + V handle| + V contain| +̲ V contain| +̲ N quantity|,amount|,&store| +̺ V contain| +̺ V contain| + V exist| + V create| + V think|˼ + V dizzy|,medical|ҽ + N fact|,dizzy| +γ N disease| +γ V dizzy|,medical|ҽ +δ N disease| +δ V dizzy|,medical|ҽ +ε V dizzy|,medical|ҽ +λ N disease| +λ V dizzy|,medical|ҽ +ͷת ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ͷת V dizzy| +κ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V dizzy|,medical|ҽ + N sound|,good| + N attribute|,pattern|ʽ,&text| + N regulation|,#pattern|ʽ,#text| +ɲ N fact|,sport| +ζ N attribute|,demeanor|,beautiful|,desired|,&human| + N fact|,pregnant|,#medical|ҽ + V pregnant|,#medical|ҽ +и N human|,female|Ů,*pregnant| + N time|ʱ,@pregnant|,#medical|ҽ + V pregnant|,agricultural|ũ + V StomachTrouble|֢,cause=pregnant| + N livestock|,female|Ů,pregnant| + V pregnant| + ADJ aValue|ֵ,density|ܶ,dense| + N shape|,round|Բ +ѵ ADJ location|λ,all|ȫ + V beat| + V fail|ʧ +ҷ V CauseToDo|ʹ,ResultEvent=suffer|,#discharge| +ҹ V fail|ʧ +ҹ V abandon|,possession=all|ȫ + V beat| + ADJ aValue|ֵ,content|,mixed|,undesired|ݬ + V mix| +Ӳ N FlowerGrass| +Ӳݴ ADJ aValue|ֵ,occasion|,desolate| +ӷ N expenditure| +Ӹ N text|,mixed| +Ӹ N thought|ͷ,disorder| +ӺͲ N food|ʳƷ,mixed| +Ӻ N material|,?food|ʳƷ,#crop|ׯ +ӻ N entity|ʵ,mixed| +ӻ N food|ʳƷ,mixed| +ӻ N artifact|˹,commercial|,generic|ͳ +ӻ N InstitutePlace|,*sell|,@buy|,commercial| +Ӽ N shows| +Ӽ N community|,*perform|,entertainment| +ӼԱ N human|,*perform|,entertainment| +ӽ V mating|,manner=mixed|,medical|ҽ +Ӿ V reside|ס + N material|,?food|ʳƷ,#crop|ׯ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + N thought|ͷ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ +Ʒ N artifact|˹,generic|ͳ +ɫ ADJ aValue|ֵ,color|ɫ,colored| +ɫ ADJ aValue|ֵ,color|ɫ,mixed| +ˣ N shows| + N food|ʳƷ + N text| + N inanimate| + N sound| +Ժ N house| +־ N publications|鿯 +־׫ N human|,*compile|༭ + N inanimate|,waste| + N animate|,#kind|,mixed| + N human|,undesired|ݬ + ADJ aValue|ֵ,content|,disorder|,undesired|ݬ + V FallDown| + V insert| + V planting|ֲ + N plant|ֲ +Ե V FallDown| +Ըͷ V FallDown| +Ըͷ V fail|ʧ + V MakeBetter|Ż + V cultivate| + V planting|ֲ,agricultural|ũ + V slander|̰ + V slander|̰ +ֲ V planting|ֲ,agricultural|ũ + V planting|ֲ,agricultural|ũ + N plant|ֲ,young| + STRU {MaChinese|} + N attribute|,circumstances|,miserable|,undesired|ݬ,&human| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֺ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather|,#HungryThirsty| +ֻ N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N human|,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ + N time|ʱ,year|,#unfortunate|,#weather| + N attribute|,circumstances|,miserable|,&unfortunate|,#weather| + N place|ط,undesired|ݬ,#unfortunate|,#weather| + N phenomena|,undesired|ݬ,#unfortunate|,#weather| + N character|,surname|,human|,ProperName|ר + V kill|ɱ + V manage|,politics| + V request|Ҫ,ResultEvent=pay|,over| +׸ N character|,surname|,human|,ProperName|ר +ɱ V kill|ɱ + N human|,#occupation|ְλ,official|,past| + V control| + V control|,politics| + V load|װ + V record|¼ + N time|ʱ,year| +ز N shape| +ظ V recreation| +غ V load|װ +ػ V transport|,patient=artifact|˹ +ؿ V transport|,patient=human| + V record|¼ + N tool|þ,@load|װ + V transport| + V load|װ +ضλ CLAS unit|λ,&weight| + N quantity|,amount|,#load|װ,&physical| + N LandVehicle|,@transport|,#inanimate| + ADV aValue|ֵ,frequency|Ƶ,again| +ٰ V print|ӡˢ,frequency=again| +ٴ ADV aValue|ֵ,frequency|Ƶ,again| +ٴ ADV aValue|ֵ,sequence|,ordinal| +ٶ ADV aValue|ֵ,frequency|Ƶ,again| +ٷ V dispatch|Dz +ٻ V repeat|ظ,content=GetMarried| +ټ V repeat|ظ,content=MarryTo| +ټ EXPR expression|,*farewell| +ٽ N fact|,education| +ٽ V endeavour| +پ CONJ {supplement|ݽ} + ADV aValue|ֵ,frequency|Ƶ,again| + V repeat|ظ,content=interrogate|,police| + V BeRecovered|ԭ,medical|ҽ + ADJ aValue|ֵ,property|,$BeRecovered|ԭ + V produce| + N crop|ׯ +ĸ N human|,friend| +˥ ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +˥ V decline|˥ +˵ V delay| +˵ CONJ {supplement|ݽ} + V subtract|,commercial| + V appear|,frequency=again| +ѭ V circle|,frequency=again| + V help| + CONJ {supplement|ݽ} + CONJ {supplement|ݽ} + V ResultFrom|Ե + V alive| + V depend| + V exist| + V situated| + PREP {Vgoingon|չ} + PREP {location} + PREP {scope} + PREP {time} +ڰ V record|¼ +ڱ V undergo|,content=release|ͷ +ڳ V exist| +ں V PayAttention|ע +ڼ ADV aValue|ֵ,duration|,TimeShort| +ڼ V situated| +ڽ V undergo|,Vgoingon|չ + ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| + V include| +ǰ ADJ aValue|ֵ,time|ʱ,past| +DZ V flee|,Vgoingon|չ +֮ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +֮ ADJ aValue|ֵ,distance|,#firing| +֮ ADJ aValue|ֵ,distance|,#firing| + V alive| +ϧ V worth|ֵ + V BeUnable|,content=escape| + V flee| +ӷ N human|,crime|,undesired|ݬ,*flee| +֮ N mental| + ADJ aValue|ֵ,attachment|,special| + ADJ aValue|ֵ,ability|,able|,$fulfil|ʵ + ADJ aValue|ֵ,ability|,able|,$perception|֪,#look| +λ V undertake|,Vgoingon|չ +λ V undertake|,royal|,Vgoingon|չ + V control| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,performance|,#software| + V PayAttention|ע + V know|֪ +Ѻ V suffer|,content=detain|ס,#police| +Ѻ N human|,crime|,undesired|ݬ,$detain|ס +Ұ ADJ aValue|ֵ,power|,empty|,politics| +Ұ N community|,#power|,empty|,politics| + V PayAttention|ע + V ResultFrom|Ե + V depend| +ְ V undertake| + V exist| + PRON {firstPerson|,mass|} +ۼ N community|,family| + PRON {firstPerson|,double|} + PRON {firstPerson|,mass|} + V SetAside| + V gather|ɼ + V ComeTogether| + ADV aValue|ֵ,duration|,TimeShort| +ݴ V SetAside| +ݶ ADJ aValue|ֵ,duration|,TimeShort| +ݻ V delay| +ݾ V reside|ס + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ͣ V pause|ͣ +ͣ V pause|ͣ,sport| + ADJ aValue|ֵ,duration|,TimeShort| +а취 N regulation| + N regulation| +ס V reside|ס + V help| + V praise|佱 + N text| +ޱ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zambia|ޱ) +ޱ N place|ط,country|,ProperName|ר,(Africa|) +ޱ N human|,(Zambia|ޱ) +޲ V praise|佱 +޳ V agree|ͬ +޳Ʊ N bill|Ʊ,#select|ѡ,*agree|ͬ +޳Ʊ N bill|Ʊ,*agree|ͬ,#select|ѡ +޸ N music|,*praise|佱 + V praise|佱 +ʫ V text|,*praise|佱,religion|ڽ + V FondOf|ϲ + V praise|佱 +̾ V praise|佱 +̾ V praise|佱 +ͬ V agree|ͬ + V appreciate|޳ + V praise|佱 + V praise|佱 + N text|,*praise|佱 + V praise|佱 + V help| + N inanimate|,$steal|͵ +߹ N human|,*cheat|ƭ,official|,undesired|ݬ +߿ N money|,$steal|͵ + N inanimate|,$steal|͵ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| +ಡ N disease|,#SeekPleasure|Ѱ +อ N part|,%AnimalHuman|,viscera| +໰ N text|,lascivious|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ +Ҳ ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + N part|,%AnimalHuman|,viscera| + N stone|ʯ,waste| + N expression|,lascivious|,undesired|ݬ + V bury| + N fact|,bury|,salute|¾,#die| + V die| + V destroy| + V suffer| +⵽ V suffer| + V suffer| + N attribute|,circumstances|,&entity|ʵ + V suffer| + V suffer| + V suffer|,content=unfortunate| + N experience| + V suffer| + V suffer|,content=unfortunate|,#weather| + V suffer|,content=unfortunate| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V damage| + V lavish|˷ +㿷 N inanimate|,waste| + N stone|ʯ,waste| +̣ V damage| +̣ V lavish|˷ + V upset| + ADJ aValue|ֵ,trueness|α,true|,desired| + V dig|ھ + N tool|þ,*dig|ھ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,trueness|α,true|,desired| + N tool|þ,*dig|ھ + N AlgaeFungi|ֲ +微 N part|,%house| + N AlgaeFungi|ֲ + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,red| + N material|,?food|ʳƷ + N tree|,#fruit|ˮ +Ҭ N tree| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ + ADJ aValue|ֵ,time|ʱ,early| + ADJ aValue|ֵ,time|ʱ,past| + EXPR expression|,*SayHello|ʺ + N time|ʱ,early|,day| +簲 EXPR expression|,*SayHello|ʺ + N affairs|,#duty|,#sequence|,morning| + N fact|,eat|,early| + N fact|,exercise|,#morning| + V labour|ٲ +糵 N LandVehicle| +糿 N time|ʱ,early|,day| +糿 EXPR expression|,*SayHello|ʺ +紺 N time|ʱ,spring|,early| +絾 N crop|ׯ + N fact|,eat|,early| +緹 N fact|,eat|,early| + V GetMarried| + N time|ʱ,past| + N time|ʱ,early| + V arise|,early| + N time|ʱ,early|,day| + ADJ aValue|ֵ,earliness|,early| + N time|ʱ,early|,day| + V die| + N InstitutePlace|,@sell|,@buy|,morning|,commercial| + ADJ aValue|ֵ,ability|,able|,#young| + ADJ aValue|ֵ,physique|,ripe|,early|,agricultural|ũ + N attribute|,ability|,able|,&young| + V grow|ɳ,manner=MakeEarlier| +˥ ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +˥ V ill|̬,medical|ҽ + V leave|뿪,manner=MakeEarlier| + ADV aValue|ֵ,duration|,TimeShort| + N time|ʱ + N time|ʱ,past| +й N disease| + ADJ aValue|ֵ,time|ʱ,past| + ADJ aValue|ֵ,earliness|,early| + ADV aValue|ֵ,duration|,TimeShort| + V wash|ϴ + N tool|þ,cubic|,@put|,#liquid|Һ,#wash|ϴ + N InstitutePlace|,@wash|ϴ,commercial| + N InstitutePlace|,@wash|ϴ,commercial| + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ +궯 V SelfMove| +꼱 ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N disease| + N human|,rash|ç,undesired|ݬ +֢ N disease| + V cry| + N sound|,undesired|ݬ + V create| + V cultivate| + V forge|α + V create| + V forming|γ +촬 N affairs|,*produce|,#repair|,#ship|,industrial| +촬 V produce|,PatientProduct=ship|,industrial| +촬 N InstitutePlace|,factory|,*produce|,*repair|,#ship|,industrial| +촬ҵ N affairs|,*produce|,#repair|,#ship|,industrial| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V begin|ʼ +췴 V uprise| + V visit| +츣 V benefit| +컯 N humanized| + N expenditure|,commercial| + V cultivate| + N result|,desired|,#succeed|ɹ + V planting|ֲ + N attribute|,form|״,&physical| + V create|,PatientProduct=shape| + V produce|,industrial| + N knowledge|֪ʶ +ҥ V forge|α,PatientProduct=text| +ҥ V forge|α,PatientProduct=text|,purpose=deceive|ƭ +ҥ V forge|α,PatientProduct=text|,purpose=slander|̰ + N attribute|,rank|ȼ,#mental|,&human| +Ӱ N method|,cure|ҽ,medical|ҽ + V incite|ָʹ,patient=thought|ͷ,public| +ֽ V produce|,PatientProduct=paper|ֽ,industrial| +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N human|,#occupation|ְλ,*produce|,#paper|ֽ,industrial| +ֽҵ N affairs|,*produce|,#paper|ֽ,industrial| + ADJ aValue|ֵ,bearing|̬,pretend|װ,undesired|ݬ + ADJ aValue|ֵ,color|ɫ,black| + N tool|þ,*wash|ϴ + V ize|̬ + N chemical|ѧ + N human|,past| +Ƭ N tool|þ,*wash|ϴ + N chemical|ѧ + N chemical|ѧ + N room|,@cook| + N tool|þ,*burn|,*cook| + N tool|þ,*cook| + N humanized| +ү N humanized| + ADJ aValue|ֵ,dampness|ʪ,dried| + ADJ aValue|ֵ,temperature|¶,hot| + V ExpressAgainst|Ǵ + V ask| + N duty| + V punish| + V ExpressAgainst|Ǵ + V order| + V punish|,means=beat| + V punish| + V blame|Թ + V order| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + N duty| +θ N emotion|,#duty| + N emotion|,#duty| + N system|ƶ,#duty| + V ask| +Դ V endeavour| + V endeavour| + V choose|ѡ + V select|ѡ + V choose|ѡ,content=friend| +ż V choose|ѡ,content=friend|,purpose=GetMarried| +ƶ V choose|ѡ,content=desired| +ҵ V choose|ѡ,content=occupation|ְλ + V choose|ѡ,content=superior| +¼ V employ|,patient=superior|,means=choose|ѡ + V choose|ѡ,content=friend| + CLAS NounUnit|,&text| + N attribute|,standard|׼,&entity|ʵ + N law|ɷ + CONJ {but|} + CONJ {condition|} + V speak|˵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N waters|ˮ,surfacial| + N place|ط + N place|ط,#waters|ˮ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N human|,crime|,undesired|ݬ,treacherous| + N human|,undesired|ݬ,*steal|͵,crime| +ü ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ +ȥ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N human|,undesired|ݬ,*steal|͵,crime| +ͷ ADJ aValue|ֵ,behavior|ֹ,secret|,undesired|ݬ + N place|ط,undesired|ݬ,#steal|͵,crime| + N aspiration|Ը,expect|,evil|,undesired|ݬ +IJ V refuse|,content=abandon|,#aspiration|Ը,evil|,undesired|ݬ + N celestial| + N inanimate|,$steal|͵ + ADV {manner|ʽ,question|} + ADJ aValue|ֵ,kind|,question| +ô ADV {manner|ʽ,question|} + ADV {emphasis|ǿ} + ADV {manner|ʽ,question|} + V BecomeMore| + V add| + V add|,patient=army| + V add| + V BecomeMore|,scope=produce| + V BecomeMore| + N quantity|,rate|,BecomeMore|,&event|¼,commercial| + V enlarge| + V add| + V BecomeMore| + N attribute|,range|,BecomeMore|,&price|۸,commercial| + V BecomeMore| + V add|,scope=height|߶ + V MakeBetter|Ż + V MakeBetter|Ż + V BecomeMore| + V add| + V QuantityChange|,commercial| + V MakeBetter|Ż + N publications|鿯 + V BecomeMore|,scope=quantity| +ǿ V MakeBetter|Ż +ɫ V beautify| + V ill|̬,medical|ҽ + V add|,patient=wealth|Ǯ +˰ V add|,patient=expenditure| +ܼ N chemical|ѧ + V add| + V add| +Ԯ V MakeBetter|Ż,military| +Ԯ N army| +ֳ V ill|̬,medical|ҽ +ֵ V BecomeMore|,scope=value|ֵ,commercial| +ֵ˰ N expenditure| + V disgust| + V disgust| + V hate| + ADV aValue|ֵ,time|ʱ,past| + N character|,surname|,human|,ProperName|ר +ʱ ADJ aValue|ֵ,duration|,TimeShort| + ADV aValue|ֵ,time|ʱ,past| +׺ ADJ aValue|ֵ,ability|,able|,desired| + N human|,family|,male| +Ů N human|,family|,female|Ů + N human|,family|,male| +ĸ N human|,family|,female|Ů + V GiveAsGift| + V GiveAsGift| +Ʒ N tool|þ,$GiveAsGift|,generic|ͳ + V GiveAsGift| + V text|,*persuade|Ȱ˵ + V GiveAsGift| + V GoInto| + V stab| + V wrap| + ADJ aValue|ֵ,SoundQuality|,bad|,undesired|ݬ +۶ V stab|,PartOfTouch=part| + V grow|ɳ + V decorate|װ + V sink|³ +ʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ʵ ADJ aValue|ֵ,quality|,durable|,desired| + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + ADJ aValue|ֵ,brightness|,bright|,undesired|ݬ + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Zaire|) + N money|,(Zaire|) + N place|ط,country|,ProperName|ר,(Africa|) + N human|,(Zair|) +Ӫ V reside|ס +ʵʵ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V cure|ҽ + V speak|˵ + N inanimate|,waste| + N material| + N inanimate|,waste| + N letter|ż + N letter|ż,past| + N place|ط,city|,ProperName|ר,(Japanձ) + N text| + V SqueezeOut| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + V associate| + V check| + V press|ѹ + V press|ѹ,industrial| + V press|ѹ,patient=metal|,industrial| +ֳ N InstitutePlace|,factory|,*press|ѹ,patient=metal|,industrial| + N machine| + V press|ѹ,industrial| +ա V break|۶ +ա N tool|þ,*break|۶,#FlowerGrass| +աݻ N tool|þ,*break|۶,#FlowerGrass| +ա N tool|þ,*break|۶,#FlowerGrass| +բ N facilities|ʩ,#waters|ˮ +բ N part|,%implement|,*start|ʼ,*cease|ͣ +բ N part|,%vehicle|ͨ,*fix|ס +բ N part|,%building|,%implement|,#electricity|,*protect| +բ N facilities|ʩ,#waters|ˮ +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +գ V CausePartMove| +գ V CausePartMove|,PatientPartof=eye| +դ N part|,%building|,*defend| +դ N part|,%building|,*defend| +ե V SqueezeOut| +ե V press|ѹ +ե N food|ʳƷ +եȡ V SqueezeOut| +եȡ V rob| +ե V SqueezeOut|,patient=material|,industrial| +եͻ V machine|,*SqueezeOut|,patient=material|,industrial| +զ ADV {cause|ԭ,question|} +զ ADV {manner|ʽ,question|} +զ V ShowOff|ҫ +զ V cry| +զ V ShowOff|ҫ +զ V cry| +զ V surprise| +է ADV aValue|ֵ,behavior|ֹ,sudden| +է ADV aValue|ֵ,time|ʱ,early| +է ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chad|է) +է N place|ط,country|,ProperName|ר,(Africa|) +էȻ ADV aValue|ֵ,behavior|ֹ,sudden| +ը V ExpressAnger|ʾŭ +ը V FormChange|α,StateFin=OutOfOrder| +ը V cook| +ը V firing| +ը V flee| +ը N weapon| +ը V FormChange|α,StateFin=OutOfOrder| +ը N thunder| +ըҩ N weapon| +թ V deceive|ƭ +թ V pretend|װ +թƭ V cheat|ƭ +թƭ N human|,*cheat|ƭ +թƭ N human|,*cheat|ƭ +ժ V PickOut|γ +ժ V StripOff|ȥ +ժ V choose|ѡ +ժ V compile|༭ +ժ N text| +ժ V copy|д +ժ V cut|,#cure|ҽ,medical|ҽ +ժ V publish| +ժ V publish|,means=choose|ѡ +ժ V StripOff|ȥ +ժ V record|¼ +ժ V borrow| +ժ¼ V copy|д +ժ¼ N human|,*copy|д +ժȡ V PickOut|γ +ժҪ V record|¼ +ժҪ N text|,#readings| +ժ V quote| +ժ V copy|д +ժ V quote| +ի N food|ʳƷ,#religion|ڽ +ի N house| +ի V GiveUp|,religion|ڽ +ի N time|ʱ,month|,#religion|ڽ +լ N house| +լ N place|ط,@build| +լ N place|ط,@build| +լ N part|,%building|,mouth| +լԺ N house| +լ N house| +խ ADJ aValue|ֵ,behavior|ֹ,biased|ƫ,undesired|ݬ +խ ADJ aValue|ֵ,richness|ƶ,poor| +խ ADJ aValue|ֵ,width|,narrow|խ +խС ADJ aValue|ֵ,size|ߴ,small|С +ծ N wealth|Ǯ,$owe|Ƿ,$return| +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N money|,$lend|,commercial| +ծȨ N rights|Ȩ,$recompense|,#wealth|Ǯ +ծȨ N place|ط,#human|,country|,politics|,$owe|Ƿ +ծȨ N human|,$owe|Ƿ,#wealth|Ǯ +ծȯ N coupon|Ʊ֤,#fund|ʽ +ծȯ N human|,own|,#coupon|Ʊ֤ +ծ̨ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +ծ̨ V owe|Ƿ,possession=wealth|Ǯ,commercial| +ծ N wealth|Ǯ,$owe|Ƿ +ծ N place|ط,#human|,country|,politics|,*owe|Ƿ +ծ N human|,*owe|Ƿ,#wealth|Ǯ +ծ N human|,*lend|,#wealth|Ǯ +կ N facilities|ʩ,military|,@defend| +կ N place|ط,military|,@defend| +կ N human|,official|,#facilities|ʩ,military| +կ N place|ط,military|,@defend| +հ V look| +հ V look|,purpose=condole|° +հ V look| +հ V think|˼ +հǰ˺ V hesitate|ԥ +հ V look|,direction=InFront|ǰ +հ V look|,purpose=condole|° +ձ N material| +ձ N house| +ձ N material| +ղ N character|,surname|,human|,ProperName|ר +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N attribute|,stickiness|,&inanimate| +ճ V fasten|˩ +ճ V fasten|˩ +ճϼ N material|,*fasten|˩ +ճ V fasten|˩ +ճ N disease| +ճĤ N part|,%AnimalHuman|,skin|Ƥ +ճ˿ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +ճ N stone|ʯ,material| +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ N attribute|,stickiness|,&inanimate| +ճҺ N part|,%AnimalHuman|,liquid|Һ +ճ ADJ aValue|ֵ,stickiness|,sticky| +ճ V fasten|˩ +մ V exist| +մ V moisten|ʪ +մ V obtain|õ +մ V touch| +մ ADJ aValue|ֵ,standard|׼,average|,desired| +մ V obtain|õ,possession=benefit| +մDz V associate|,partner=female|Ů,manner=lascivious| +մ V exist| +մ״ V relate|й +մȾ V suffer|,content=CauseAffect|Ⱦ +մȾ V place|ط,$CauseAffect|Ⱦ +մ V engage| +մ V pollute|ʹ +մմϲ V satisfied| +յ CLAS NounUnit|,&tool|þ,#illuminate| +յ N tool|þ,cubic|,@put| +ն V break|۶ +ն V kill|ɱ +նݳ V destroy| +ն ADJ aValue|ֵ,behavior|ֹ,strong|ǿ,desired| +ն V break|۶ +նʯ N material|,?building| +ն V kill|ɱ +ն ADJ aValue|ֵ,newness|¾,new|,desired| +շ N character|,(China|й) +շ V press|ѹ +շת V CausePartMove|,#LieDown|,#sleep|˯ +շת V roam| +շת V CausePartMove|,#LieDown|,#sleep|˯ +ո ADJ aValue|ֵ,GoodBad|û,good|,desired| +ո¶ͷ V display|չʾ,content=ability| +ո¶ͷ V show|,ability| +ո ADJ aValue|ֵ,newness|¾,new|,desired| +չ V delay| +չ N fact|,display|չʾ +չ V unfold|̯ +չ V use| +չ N fact|,disseminate| +չ V fly| +չ V display|չʾ +չ N facilities|ʩ,@display|չʾ +չ V delay| +չ V conduct|ʵʩ +չ V start|ʼ +չ V unfold|̯ +չ V display|չʾ +չ N fact|,display|չʾ +չ N house|,@display|չʾ +չ N fact|,display|չʾ +չƷ N physical|,$display|չʾ,generic|ͳ +չ N room|,@display|չʾ +չ¶ V appear| +չ V sell|,means=display|չʾ,commercial| +չƷ N physical|,$display|չʾ,generic|ͳ +չ V estimate|,means=display|չʾ +չ V delay| +չ N time|ʱ,@display|չʾ +չ N location|λ,@display|չʾ +չʾ V appear| +չʾ N fact|,display|չʾ +չ N room|,@display|չʾ +չ̨ N location|λ,@display|չʾ +չ N room|,@display|չʾ +չ V predict|Ԥ +չ V appear| +չ V enlarge|,PatientAttribute=boundary|,#time|ʱ +չ V sell|,means=display|չʾ,commercial| +չ N fact|,sell|,#display|չʾ,commercial| +չת V CausePartMove|,#LieDown|,#sleep|˯ +չת V roam| +պ V soak| +պ V moisten|ʪ,purpose=strengthen|ӹ,industrial| +պˮֱ N PenInk|ī,*write|д +ջ N facilities|ʩ,space|ռ,#livestock|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ջ N InstitutePlace|,commercial|,@reside|ס +ջ N facilities|ʩ,space|ռ,@put|,@store| +ջ N facilities|ʩ,route|· +ռ V BeMember| +ռ V guess|² +ռ V obtain|õ +ռ V occupy|ռ +ռ V obtain|õ,possession=benefit| +ռ V guess|² +ռ N human|,*guess|² +ռ V own| +ռ N attribute|,area|,&land|½ +ռ V occupy|ռ +ռ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +ռ V occupy|ռ +ռ N army|,*occupy|ռ +ռ N place|ط,$occupy|ռ +ռ N human|,*occupy|ռ,military| +ռ V guess|² +ռϷ V surpass|ǿ +ռ V surpass|ǿ +ռ V undergo|,content=use| +ռС V obtain|õ,possession=benefit| +ռ V use| +ռ V own| +ռ N quantity|,rate|,&own| +ռ V guess|² +ս N fact|,fight|,military| +ս V fight| +ս V fight|,military| +ս V defeated|,military| +ս V defeat|սʤ,military| +սܹ N place|ط,country|,*defeated|,military| +ս N document|,official|,#fight|,military| +ս N fact|,*prepare|׼,#fight|,military| +ս N place|ط,@fight|,military| +ս N weapon|,LandVehicle|,military| +ս N weapon| +ս N place|ط,@fight|,military| +սؼ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news|,#fight| +ս V shiver| +ս ADJ aValue|ֵ,courage|,brave| +ս V fight|,military| +ս N army| +սλ N part|,%army| +ս N weapon|,aircraft|,military| +ս N part|,%army| +ս N attribute|,strength|,fight|,&army|,military| +ս N human|,*fight|,military| +ս N human|,undesired|ݬ,#fight|,crime| +ս N human|,military|,undesired|ݬ +ս N result|,desired|,#fight|,#succeed|ɹ +ս N MusicTool|,#fight|,#military| +ս N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ս N result|,#fight| +ս N facilities|ʩ,space|ռ,military| +ս N time|ʱ,#fight| +ս N fire|,#fight|,#military| +ս׷ ADJ aValue|ֵ,circumstances|,fight| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս N time|ʱ,#fight| +ս N result|,desired|,#fight|,#succeed|ɹ +ս N weapon|,ship|,military| +ս N human|,military| +ս N attribute|,circumstances|,&fight| +ս N attribute|,circumstances|,&fight| +ս V shiver| +սƷ N artifact|˹,$obtain|õ,#fight| +ս N fact|,fight|,military| +սн N weapon|,ship|,military| +ս N phenomena|,undesired|ݬ,#fight|,#unfortunate| +ս ADJ aValue|ֵ,attachment| +ս N plans|滮 +սԲ N army| +սԲ N plans|滮 +սԺ N weapon| +սԼ N human|,#knowledge|֪ʶ,#fight|,#military| +ս N artifact|˹,*fight| +ս ADJ aValue|ֵ,property|,#fight| +ս N livestock|,#fight| +սĻ N fact|,begin|ʼ,#fight| +սǰ N time|ʱ,#fight| +ս N place|ط,@fight|,military| +սϵͳ N weapon|,*defend| +սʤ V defeat|սʤ +սʤ N place|ط,country|,*defeat|սʤ,military| +սʱ N time|ʱ,#fight|,military| +սʷ N fact|,#time|ʱ,#fight|,military| +սʿ N human|,military| +ս N fact|,fight| +ս ADJ aValue|ֵ,attachment| +ս N weapon| +սվ N army| +սò N army| +ս V die| +ս춷 V fight|,partner=thing| +ս޲ʤ ADJ aValue|ֵ,ability|,able|,defeat|սʤ +ս N place|ط,@fight|,military| +ս N fact|,fight|,military| +ս N human|,friend|,#fight| +սս V fear| +ս N fact|,fight| +ս N human|,undesired|ݬ,*do|,#fight| +ս N aspiration|Ը,expect|,#fight|,undesired|ݬ +ս N human|,undesired|ݬ,*do|,#fight| +ս״̬ N attribute|,circumstances|,&fight| +վ V CeaseSelfMove|ֹ +վ N facilities|ʩ,space|ռ +վ N facilities|ʩ,space|ռ,#LandVehicle| +վ V stand|վ +վ N human|,#occupation|ְλ,official| +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վס ADJ aValue|ֵ,correctness|,correct|ȷ +վ V stand|վ,purpose=defend| +վڷ V stand|վ,purpose=defend| +վ̨ V engage|,content=sell|,commercial| +վ V stand|վ +վƱ N coupon|Ʊ֤,#wealth|Ǯ,*TakeVehicle|,#vehicle|ͨ +վ V stand|վ +վ̨ N facilities|ʩ,space|ռ,@TakeVehicle| +վ V CeaseSelfMove|ֹ +վ V stand|վ +վס V CeaseSelfMove|ֹ +վס V stand|վ +վס V CeaseSelfMove|ֹ +վס V succeed|ɹ +տ ADJ aValue|ֵ,clearness|,clear| +տ ADJ aValue|ֵ,content|,profound|,desired| +տ N place|ط,city|,ProperName|ר,(China|й) +տ ADJ aValue|ֵ,color|ɫ,blue| +տ ADJ aValue|ֵ,content|,profound|,desired| + V FormChange|α,StateFin=OutOfOrder| + V pregnant| + V FormChange|α + V FormChange|α,StateFin=OutOfOrder| + N tree| +ľ N wood|ľ + N material|,*obstruct|ֹ,#InsectWorm| + N tool|þ,*obstruct|ֹ,InsectWorm| + N tool|þ,*obstruct|ֹ,#InsectWorm| + N tree| + N character|,surname|,human|,ProperName|ר + N law|ɷ + N part|,%text| + N stationery|ľ + N tool|þ,$PutOn| +³ N law|ɷ +³ N method| +· N attribute|,behavior|ֹ,&act|ж +· N method|,#text| +½ N part|,%text| + N fish| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + ADJ aValue|ֵ,impression|ӡ,good|,desired| + V reward|,punish| + N place|ط,ProperName|ר,(China|й) + N place|ط,city|,ProperName|ר,(China|й) + CLAS NounUnit|,&furniture|Ҿ,&paper|ֽ + N character|,surname|,human|,ProperName|ר + V open| + V unfold|̯ +Ű V announce|,content=document| +Ŵ V PlayUp|Ĵ +ŵƽ V decorate|װ +Ź V hang| +Ź ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ +Ż V flurried| +żҸ N place|ط,city|,ProperName|ר,(China|й) +żҿ N place|ط,city|,ProperName|ר,(China|й) +ſ V open| +ſ V CausePartMove|,PatientPartof=mouth| +ſڽ V stupefied|ľȻ +ſ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N attribute|,strength|,#pull|,&physical| + V TakeCare| + V gather|ɼ + V prepare|׼ + N human|,ordinary| + V hang| + V look| + V look|,manner=secret| +צ V frighten|Ż + V announce| + V CausePartMove|,PatientPartof=mouth| + V beg| + V beat| + V hold| + V manage| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,hand| + N part|,%clothing|,#foot| +Ʊ N human|,*drive|Ԧ,#vehicle|ͨ +Ƴ V manage|,patient=cook| +Ƶ V lighting|ȼ +ƶ V drive|Ԧ,patient=ship| +ƹ N information|Ϣ +ƹ V manage| +ƹ N human|,#occupation|ְλ,*sell|,commercial| +Ȩ V obtain|õ,possession=power|,politics| + N human|,family|,young| +׶ V manage|,patient=cook| + N sound|,#beat|,#hand| + V control| + V know|֪ + N attribute|,power|,&AnimalHuman|,&organization|֯ + N part|,%AnimalHuman|,hand| +ӡ V manage|,patient=power| +״ ADJ aValue|ֵ,form|״ + N part|,%tool|þ,#livestock|,#foot| + N facilities|ʩ,mine| + V beat|,PartOfTouch=skin|Ƥ + V BecomeMore| + V FormChange|α,StateFin=protruding|͹ +dz V rise| +Ƿ N attribute|,range|,BecomeMore|,&price|۸,commercial| +Ǽ V BecomeMore|,scope=price|۸ + V QuantityChange|,commercial| + N tool|þ + N human|,family|,male| + CLAS unit|λ,&length| +ɷ N human|,family|,male| + V measure| +ĸ N human|,family|,female|Ů +ĸ N human|,family|,female|Ů + N human|,family|,male| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N wealth|Ǯ,$owe|Ƿ,$return| +ʱ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʲ N account|,@record|¼,#wealth|Ǯ +ʵ N bill|Ʊ,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʷ N human|,employee|Ա,#wealth|Ǯ +ʷ N part|,%InstitutePlace|,commercial|,*calculate|,#wealth|Ǯ +ʷ N human|,#occupation|ְλ,*calculate|,#wealth|Ǯ +ʺ N attribute|,number|,&account|,commercial| +ʻ N account|,@record|¼,#wealth|Ǯ +ʿ N fund|ʽ +Ļ N tool|þ,*cover|ڸ +Ŀ N account|,@record|¼,#wealth|Ǯ + N tool|þ,*cover|ڸ + N tool|þ,#sleep|˯,*obstruct|ֹ,#InsectWorm| + N account|,@record|¼,#wealth|Ǯ + N fund|ʽ + N wealth|Ǯ,$owe|Ƿ,$return| +˻ N account|,@record|¼,#wealth|Ǯ + V depend| + N fact|,fight| + N weapon|,generic|ͳ + V damage|,means=use|,#power| + V endorse|ӵ,content=fair| + V loyal|Т + V donate| +ִ V speak|˵ + V FormChange|α,StateFin=enlarge| + V swollen| + N gas|,undesired|ݬ + N gas|,undesired|ݬ + N facilities|ʩ,*obstruct|ֹ + V obstruct|ֹ +ϰ V obstruct|ֹ +ϰ N phenomena|,#obstruct|ֹ +ϰ N fact|,compete|,sport| +ϰ N facilities|ʩ,*obstruct|ֹ +ϱ V obstruct|ֹ +۷ N method|,*deceive|ƭ + V admit| + V attract| + V call|ٻ + V excite|ж + V include| + V incur| + N method| +а V request|Ҫ,ResultEvent=surrender|,military| +б V invite|,ResultEvent=bear|е +б V include|,patient=human|,military| +б V include|,patient=human| +д V entertain|д +д N expenditure|,*entertain|д +д N fact|,entertain|д +д N InstitutePlace|,@reside|ס,@welcome|ӭ,@WellTreat|ƴ +и V CauseToDo|ʹ,ResultEvent=surrender|,military| +й V include| +й V admit| +й V gather|ɼ,possession=fund|ʽ,commercial| +к V SayHello|ʺ +к V TakeCare| +к V cry| +к V tell| +м V obstruct|ֹ +н V request|Ҫ,ResultEvent=surrender|,military| +н V ally|,military| +п V include|,means=exam|,education| + V attract|,commercial| +ļ V include| +Ů V include|,ResultWhole=family| + N mark|־,#commercial| + V sell| +Ƹ V call|ٻ,ResultEvent=request|Ҫ,#employ| +Ƹ˾ N InstitutePlace|,*call|ٻ,#request|Ҫ,#employ| + V request|Ҫ,ResultEvent=MarryTo| + V incur| + V admit|,#police| + V cooperate|,commercial| + V cooperate|,commercial| + V include|,patient=human|,education| + V include| + V CausePartMove|,PatientPartof=hand|,purpose=call|ٻ + N method| + N readings|,#image|ͼ + N readings|,#image|ͼ +Ц ADJ aValue|ֵ,content|,interesting|Ȥ +ҡ ADJ aValue|ֵ,property|,ShowOff|ҫ,undesired|ݬ +ҡ V ShowOff|ҫ +ҡײƭ V deceive|ƭ + V attract| + V incur| +ǻ V incur|,result=damage| +չ V wave|ڶ + V ResultIn| +² ADJ aValue|ֵ,circumstances|,miserable|,undesired|ݬ +׸ V include|,ResultWhole=family| + V call|ٻ,ResultEvent=borrow| + V attract|,commercial| + ADJ aValue|ֵ,content|,opened| +Ȼ ADJ aValue|ֵ,content|,opened| +ʾ V announce| +ѩ V amend| + ADJ aValue|ֵ,content|,opened| + ADJ aValue|ֵ,content|,opened| + V LookFor|Ѱ + V request|Ҫ,ResultEvent=meet| + V return| +Ҳ V MakeEqual|ʹ +Ҳ V ExpressAgainst|Ǵ +Ҳ V MakeTrouble| +ҳ V LookFor|Ѱ,Vachieve| +ҵ V LookFor|Ѱ,Vachieve| +鷳 V MakeTrouble| + V MakeEqual|ʹ +Ǯ V return|,possession=money| +Ѱ V LookFor|Ѱ + V LookFor|Ѱ + V LookFor|Ѱ,Vachieve| + N waters|ˮ,surfacial| + N gas|,$burn| + N facilities|ʩ,#gas|,#burn| + N land|½ + N land|½ + N character|,surname|,human|,ProperName|ר + V TakeCare| + V TakePicture| + V comparison|ȹϵ + N document|,*ExpressAgreement|ʾͬ + V illuminate| + N image|ͼ,$TakePicture| + V tell| + PREP {AccordingTo} + PREP {direction} +հ V imitate|ģ +հ V do|,manner=obey|ѭ +ձ ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ +ձ N part|,%building|,skin|Ƥ +ճ ADV aValue|ֵ,frequency|Ƶ,often| +ճ V copy|д +ն N attribute|,brightness|,#illuminate|,&artifact|˹ +շ V send| +շ V TakeCare| +չ V TakeCare| +չ V TakeCare| +պ«ư V imitate|ģ +ջ V TakeCare| +ջ V tell|,politics| +ջ N text|,*tell|,politics| +վ V ChangeNot| +վ ADV aValue|ֵ,behavior|ֹ,lasting| +տ V TakeCare| + ADV aValue|ֵ,behavior|ֹ,proper| + ADV aValue|ֵ,frequency|Ƶ,often| + V illuminate| + V TakeCare| + V illuminate| +è V imitate|ģ + V appear| + V illuminate| + N human|,*illuminate| + V compile|༭,means=TakePicture| +Ż N machine|,*compile|༭ +Ƭ N image|ͼ,$TakePicture| + V illuminate| +˵ ADV aValue|ֵ,frequency|Ƶ,often| + V TakePicture| + N InstitutePlace|,*TakePicture| + N tool|þ,*TakePicture| + ADV aValue|ֵ,behavior|ֹ,lasting| +ҫ V illuminate| +Ӧ V TakeCare| +Ӧ V coordinate|Э + ADV aValue|ֵ,behavior|ֹ,proper| +׼ V agree|ͬ + V cover|ڸ + N tool|þ,*catch|׽ס,#fish| + N tool|þ,*cover|ڸ + N clothing|,*cover|ڸ + N part|,%building|,head|ͷ + N clothing|,*cover|ڸ + N part|,%clothing|,*cover|ڸ,#arm| + N tool|þ,*cover|ڸ + V express|ʾ + N information|Ϣ + NUM qValue|ֵ,amount|,cardinal|,mass| +׺ CLAS unit|λ,&frequency|Ƶ +ŷ CLAS unit|λ,&resistance| +ͷ N information|Ϣ + CLAS unit|λ,&frequency|Ƶ + V begin|ʼ + V create| +ػ V create|,PatientProduct=phenomena|,undesired|ݬ +ʼ V begin|ʼ + V create|,PatientProduct=phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V human|,*create|,#phenomena|,undesired|ݬ + V call|ٻ +ٻ V call|ٻ +ٻ V dismiss| +ٻ V ResultIn|,result=damage| +ټ V assemble|ۼ +ټ V meet| +ٿ V engage| + V cover|ڸ + V obstruct|ֹ +ڱ V cover|ڸ +ڱ V cover|ڸ,military| +ڱ V obstruct|ֹ +ڲ V HideTruth| +ڲ V hide| +ڵ V obstruct|ֹ +ڶ V cover|ڸ,military| +ڸ V HideTruth| +ڸ V cover|ڸ + V obstruct|ֹ + V cover|ڸ,patient=sky| +ǵ V cover|ڸ,patient=earth| + V HideTruth|,content=shy| + V HideTruth| + V cover|ڸ +۷ N method|,*deceive|ƭ + V cover|ڸ,patient=celestial| +ñ N clothing|,#head|ͷ + V cover|ڸ,patient=celestial| +ס V cover|ڸ,Vachieve| + V AmountTo|ܼ,means=CauseToBe|ʹ֮ + V GoBack| + V InDebt| + N account|,@record|¼,#SetAside|,#money| + V bend| + V break|۶ + V dump| + V fold|ߡ + N quantity|,rate|,$subtract|,&sell|,commercial| + V subtract|,commercial| + N tool|þ,*store|,#document| +۰ V BecomeLess|,range=half|,commercial| +۱ V InDebt|,possession=fund|ʽ,commercial| +۳ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +۳ N tool|þ,*measure| +۳ V discuss|,politics| +۳ V win|ʤ,means=discuss|,politics| +۵ V fold|ߡ +۶ V break|۶ +۷ V GoBack| +۷ V believe| +۷ V defeat|սʤ +۷ V respect| +ۺ V AmountTo|ܼ,means=CauseToBe|ʹ֮ +ۻ V GoBack| +ۼ V AmountTo|ܼ,commercial| +۾ V AmountTo|ܼ,#used|,commercial| +ۿ N BecomeLess|,commercial| +ĥ V damage| +ĥ N fact|,MakeBad|Ӻ,undesired|ݬ + V damage| + N tool|þ,#wind|,*cool| + N fact|,illuminate| + ADJ aValue|ֵ,ability|,able|,illuminate| + N attribute|,ability|,able|,#illuminate|,&inanimate| + V CauseToBe|ʹ֮ + V CausePartMove|,#LieDown|,#sleep|˯ + V damage| + V lavish|˷ + V repeat|ظ +ͷ N BecomeLess|,commercial| + V bend| + N shape|,linear| + V CausePartMove|,PatientPartof=body| + V recompense|,possession=wealth|Ǯ + V reconcile| +з N plans|滮,*reconcile| + V reconcile| +Է V plans|滮,*reconcile| + N thinking|˼,#reconcile| + N account|,*record|¼,wealth|Ǯ + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N reason| + N human|,wise|,desired| +ѧ N knowledge|֪ʶ +ѧ N human|,#knowledge|֪ʶ +ݷ V sleep|˯ +ݾ V reside|ס + N method| + N method|,#music|,#text| + N trace|,#LandVehicle| + V defeated| + SUFFIX human| + PRON {it|} + N metal| + N crop|ׯ,?material| +ũ N human|,#occupation|ְλ,agricultural|ũ + N material|,?food|ʳƷ + N artifact|˹,waste| + ADJ aValue|ֵ,kind|,special| + N time|ʱ + ADJ aValue|ֵ,age|,aged| + ADJ aValue|ֵ,degree|̶,more| + N location|λ + ADJ aValue|ֵ,time|ʱ,now| + N location|λ + N time|ʱ,now| + ADJ aValue|ֵ,kind|,special| + ADV aValue|ֵ,time|ʱ,now| + N location|λ,special| +ô ADJ aValue|ֵ,degree|̶,more| +ô ADJ qValue|ֵ,amount|,few| +ôЩ ADJ qValue|ֵ,amount|,many| +ʱ ADV aValue|ֵ,time|ʱ,now| +Щ ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,degree|̶,more| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) +㽭 N place|ط,provincial|ʡ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + V like|ϧ + N treasure|䱦,generic|ͳ +䰮 V like|ϧ +䱦 N treasure|䱦,generic|ͳ + V store| + ADJ aValue|ֵ,value|ֵ,precious|,desired| +Ʒ N treasure|䱦,generic|ͳ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N bird|,precious| + V like|ϧ + N artifact|˹,generic|ͳ,precious| + N information|Ϣ +ϡ ADJ aValue|ֵ,value|ֵ,precious|,desired| +ϧ V like|ϧ + ADJ aValue|ֵ,value|ֵ,precious|,desired| + EXPR expression|,*SayHello|ʺ + V like|ϧ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(US|) +鼦 N bird| + N crop|ׯ + N food|ʳƷ,generic|ͳ + V dump| + V think|˼ + ADJ aValue|ֵ,content|,accurate|׼ + ADJ aValue|ֵ,trueness|α,true|,desired| + ADV {emphasis|ǿ} +ʵѧ N attribute|,ability|,able|,desired|,&human| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N symbol|,#quantity|,#DoSum| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%plant|ֲ,embryo| +滰 N text|,true| +漣 N artifact|˹,original|ԭ + N attribute|,trueness|α,&entity|ʵ +澭 N publications|鿯 + N AlgaeFungi|ֲ + N space|ռ,empty|,#gas| +ձ N tool|þ,*drain|ų,#gas| + N reason|,true| + N publications|鿯 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +Ŀ N attribute|,trueness|α,true|,&thing| +ʵ N attribute|,name|,true|,&human| +Ƥ N part|,%AnimalHuman|,flesh| +ƾʵ N information|Ϣ,*prove|֤ + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,opened| + N attribute|,circumstances|,true|,&entity|ʵ + N emotion|,sincere| + N fact|,true| +ʵ N emotion|,true| +ȷ ADJ aValue|ֵ,content|,opened| +ȷ ADJ aValue|ֵ,trueness|α,true|,desired| + N human|,able| + N event|¼,true| + N attribute|,property|,true|,good|,beautiful| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| +ʵ N experience|,true| +ʵ N attribute|,property|,trueness|α + STRU {MaChinese|} +˿ N material|,?clothing| + N part|,heart|,%entity|ʵ +α N attribute|,trueness|α,&entity|ʵ + N attribute|,environment|,true|,&entity|ʵ + V exposure|¶ + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ij ADV aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,trueness|α,true|,desired| +֪ N knowledge|֪ʶ,true|,desired| +֪Ƽ N thinking|˼,profound|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N emotion|,sincere| + N material|,?tool|þ,#decorate|װ,precious| + N humanized|,religion|ڽ + N part|,heart|,%entity|ʵ + N character|,surname|,human|,ProperName|ר + V distinguish|ֱ + V select|ѡ + V distinguish|ֱ +ѡ V select|ѡ + N tool|þ,#beat|,#metal| + N tool|þ,*cook| + N tool|þ,#beat|,#metal| + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N attribute|,physique|,#mating|,&female|Ů + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N fact|,cure|ҽ + N medicine|ҩ,liquid|Һ + N shape|,acute| + N tool|þ,*fasten|˩ +Ƕ N part|,tool|þ + V cure|ҽ + V cure|ҽ + V facing| + PREP {AccordingTo} + V disobey|Υ +빿 N tool|þ,*protect| + N medicine|ҩ,liquid|Һ + V cure|ҽ +ͷ N tool|þ,*cure|ҽ +ͷ N tool|þ,*fasten|˩ + N affairs|,*fasten|˩ + N tool|þ,*fasten|˩ +߻ N affairs|,*fasten|˩ + N tool|þ,cubic|,@put| + N disease| + N part|,tool|þ +Ҷ N tree| +֯ V weave| +֯ N InstitutePlace|,@produce|,#artifact|˹,factory|,industrial| +֯Ʒ N artifact|˹ +״ ADJ aValue|ֵ,form|״,acute| + V amend| + V scout|,military|,police| + V scout|,police| + V scout|,military|,police| + N part|,%army| + N aircraft|,*scout| + N aircraft|,*scout| +Ա N human|,#occupation|ְλ,*scout|,police| +켩 V scout|,military|,police| + V reveal|¶,police| +̽ N human|,#occupation|ְλ,*scout|,police| +̽ V scout|,police| + V CausePartMove| + N tool|þ,*sleep|˯ + N tool|þ,*cover|ڸ +ľ N material|,?route|· + N tool|þ,*cover|ڸ +ͷ N tool|þ,*sleep|˯ +ϯ N furniture|Ҿ,@sleep|˯ +ϯ N tool|þ,*cover|ڸ + N tool|þ,*sleep|˯ + N disease|,#skin|Ƥ + V diagnose|,medical|ҽ + V diagnose|,medical|ҽ + ADJ aValue|ֵ,property|,diagnose| + V diagnose|,medical|ҽ + N document|,#diagnose|,medical|ҽ + N tool|þ,*diagnose|,*cure|ҽ,medical|ҽ + V cure|ҽ + V diagnose|,medical|ҽ + N part|,%InstitutePlace|,+diagnose|,+cure|ҽ,medical|ҽ + V diagnose|,medical|ҽ + N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V cure|ҽ + V fear| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + V shiver| + ADJ aValue|ֵ,property|,shiver| + V shiver| + ADJ aValue|ֵ,SoundVolume|,loud| + V shake|ҡ + V shiver| + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,intensity|ǿ,#(earthquake|) + V fear| + V frighten|Ż +ŭ V angry| + V frighten|Ż +Դ N location|λ,base|,#(earthquake|) + N phenomena|,undesired|ݬ,#unfortunate|,#(earthquake|) + N location|λ,base|,#(earthquake|) + N place|ط,#(earthquake|) + V excited| + V shake|ҡ + V CausePartMove|,PatientPartof=arm| + V shiver| + V shiver|,#electricity| + N part|,%machine|,*shiver|,#electricity| + ADJ aValue|ֵ,property|,shiver| + V shiver|,industrial| + V excited| + V excite|ж + ADJ aValue|ֵ,ability|,able|,excite|ж + N attribute|,range|,&shiver|,#electricity| + ADJ aValue|ֵ,ability|,able|,teach| + V MakeBetter|Ż +л V MakeBetter|Ż,patient=(China|й) +д V speak|˵,manner=fluent| + V excited| + V excited| + V cool| + V defend|,military| + N facilities|ʩ,military| + N place|ط,city| + V restrain|ֹ + N human|,#occupation|ְλ,official|,politics| + V calm| + N place|ط,city|,ProperName|ר,(China|й) + ADJ aValue|ֵ,ability|,able|,soothe|ο + V calm| +򾲼 N medicine|ҩ + N tool|þ,*amend|,#electricity| + V defend|,military| +ʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ѹ V kill|ɱ,police| +ѹ V restrain|ֹ,politics| +ѹ N human|,*kill|ɱ,police| +ֽ N stationery|ľ + N attribute|,form|״,&army|,#fight| + N place|ط,military|,@fight| + N time|ʱ + N place|ط,military|,@fight| +ս N fact|,fight| +󷢼Ъ ADJ aValue|ֵ,frequency|Ƶ,#disease| + ADJ aValue|ֵ,frequency|Ƶ,#disease| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&army|,#fight| + N attribute|,form|״,&community|,entertainment|,sport| + N attribute|,circumstances|,&entity|ʵ + N attribute|,form|״,&army|,#fight| +ʹ V painful|ʹ,#labour|ٲ + V die|,military| + N community| +Ӫ N community|,politics| + N RainSnow|ѩ + N time|ʱ + N time|ʱ + V alter|ı,StateFin=gas| + V cook| + N food|ʳƷ + V alter|ı,StateFin=gas| + N tool|þ,cubic|,*cook| + V refine| +ˮ N water|ˮ,$refine| + N tool|þ,cubic|,*cook| + N gas| + N gas| + N machine| + N LandVehicle| + V rise| + ADJ prosper| + V prosper| + ADJ prosper| + V earn|׬ + V escape| + V endeavour| +Ǯ V earn|׬,possession=wealth|Ǯ + V escape| + V endeavour| + V CausePartMove| +۾ V CausePartMove|,PatientPartof=eye| + V CausePartMove|,PatientPartof=eye| +Ϲ N human|,unable|ӹ,undesired|ݬ + V attack|,military| + V beg| + V include|,military| + V leave|뿪 + V levy|,commercial| + V include|,military| + N stone|ʯ,waste| + N fact|,tour| + V undergo|,content=CauseToDo|ʹ + V levy|,possession=land|½ + V include|,military| + V levy|,military| + V request|Ҫ,ResultEvent=buy| + V attack|,military| + V defeat|սʤ,military| + N human|,*defeat|սʤ,military| + V beg|,possession=text| + V levy|,means=buy|,commercial| + V include|,military| + V levy|,commercial| +ļ V include|,military| +Ƹ V request|Ҫ,ResultEvent=undergo|,#employ| + V beg| + V levy|,commercial| +˰ V collect|,possession=expenditure|,commercial| + V attack|,military| +; N fact|,tour| + V beg|,possession=text| + N information|Ϣ +ѯ V ask| + V quote| + V levy| +ս V attack|,military| + N information|Ϣ + V include|,military| + V include|,military| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V HaveContest| + V debate| + V HaveContest|,scope=power|,politics| + V debate| + V quarrel| + N human|,*quarrel| + V debate| + V HaveContest|,scope=$FondOf|ϲ + V VieFor|,purpose=fulfil|ʵ + V obtain|õ + V fight| + N fact|,debate| + V HaveContest|,purpose=obtain|õ +ֶ V VieFor| +Դ V HaveContest|,scope=$FondOf|ϲ + V seek|ıȡ,possession=glorious| + V compete| + ADJ aValue|ֵ,property|,debate| + V debate| + N debate| + V debate| + N debate| +۲ V debate| + N human|,*debate| + V debate| +涷 V HaveContest|,scope=beautiful| + V seek|ıȡ,possession=glorious| +ǿö ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight| + V HaveContest|,purpose=obtain|õ +ȡ V endeavour| +ȡ V seek|ıȡ +Ȩ V HaveContest|,scope=power|,politics| + V VieFor| +ȿֺ V VieFor| + V HaveContest| + V HaveContest|,scope=power|,politics| + V HaveContest|,scope=beautiful| + N debate| +ִ V debate| + V fear| + V fear| + V CauseToDo|ʹ + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,range|,all|ȫ + V amend| + V damage| + V do| + V punish| + ADV qValue|ֵ,amount|,accurate|׼ + V repair| + N part|,%publications|鿯,news|,complete| + V adjust|,military| + V repair|,agricultural|ũ + V adjust| + V amend| + V improve| + N human|,*improve| + N fact|,amend|,patient=behavior|ֹ + V amend|,patient=behavior|ֹ + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,appearance|,neat|,desired| + ADJ aValue|ֵ,cleanness|ྻ,spotless|,desired| + V PutInOrder| + N material|,generic|ͳ + V amend|,#electricity| + N tool|þ,*amend|,#electricity| + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| +뻮һ ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,duration|,TimeLong| + V MakeUp|ױ + N symbol|,#quantity| + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + N attribute|,wholeness|ȱ,&entity|ʵ + ADJ aValue|ֵ,duration|,TimeLong| + N fact|,cure|ҽ,#beautify|,medical|ҽ + N fact|,cure|ҽ,#beautify|,medical|ҽ + V repair|,industrial| +ѵ V teach|,military| +ҹ ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,range|,all|ȫ + ADJ aValue|ֵ,content|,neat|,desired| + ADJ aValue|ֵ,form|״,neat|,desired| + V dredge|ͨ,industrial| + V repair| +װ V PutInOrder| + V PutInOrder| + ADJ aValue|ֵ,content|,neat|,desired| + V PutInOrder| + V rescue| + V rescue| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADV aValue|ֵ,correctness|,accurate|׼ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,form|״,upright| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,positive| + V adjust| + V amend| + STRU {Vgoingon|չ} + ADV {emphasis|ǿ} + N direction|,north| + N document|,original|ԭ +Դ V improve| + N quantity|,rate|,&quantity| + N account|,*record|¼ + ADJ aValue|ֵ,kind|,ordinary|,desired| + N human|,ordinary| +ֵ N quantity|,amount|,&entity|ʵ + N text| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + ADJ aValue|ֵ,standard|׼,passed|ϸ,desired| + CONJ {time|ʱ} + N fact|,defend|,passed|ϸ + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + N location|λ,middle| + N method|,correct|ȷ + ADV aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| + N electricity| + N room|,important| + N direction|,east| + N shape|,cubic| + V kill|ɱ,police| + ADJ aValue|ֵ,contrariness|,positive|,negative| + ADJ aValue|ֵ,form|״,square| + N shape|,square| + N human|,intimate|,female|Ů + N room|,important| + V persuade|Ȱ˵ + ADJ aValue|ֵ,standard|׼,average| +滯 N attribute|,property|,average|,&event|¼ + N army| + N method|,correct|ȷ + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| + N part|,%electricity| +ʻ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +ʻԱ N human|,#occupation|ְλ,*drive|Ԧ,#aircraft| +Σ V sit|,manner=strict| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADJ aValue|ֵ,standard|׼,average| + ADV {emphasis|ǿ} +˰ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + N reason| + N part|,%house|,bone| +· N method|,correct|ȷ + N part|,%building|,mouth| + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,form|״ + N location|λ,InFront|ǰ + N part|,%physical|,edge| + N direction|,south| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| +Ƭ N part|,%tool|þ,#TakePicture| +Ƭ N shows| +Ʒ N physical|,good| + N attribute|,SocialMode|,fair|,&human|,&organization|֯ + N attribute|,strength|,&AnimalHuman| + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + ADV undergo| +ȷ ADJ aValue|ֵ,correctness|,correct|ȷ,desired| +ȷ ADJ aValue|ֵ,correctness|,upright|,desired| +ȷ N attribute|,property|,correct|ȷ,&event|¼ +˾ N human|,gracious|,desired| + V BeSimilar| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +ʽ ADJ aValue|ֵ,behavior|ֹ,formal|ʽ + N affairs| + V treat|Դ + N room|,%InstitutePlace|,#perform| + N room|,important| +ͳ ADJ aValue|ֵ,standard|׼,average| + N text| + N time|ʱ,afternoon| + N {correctness|} + N direction|,west| + N symbol|,#quantity| + V BeSimilar| + N human|,undesired|ݬ,*kill|ɱ,crime| +ɫ ADJ aValue|ֵ,behavior|ֹ,strict| +Ҫ ADV {emphasis|ǿ} + ADJ aValue|ֵ,correctness|,correct|ȷ,desired| + N reason| + N emotion|,fair| + N sound|,#language| + N time|ʱ,month| + STRU {Vgoingon|չ} +ڽ ADJ aValue|ֵ,property|,undergo|,Vgoingon|չ +ڽ V undergo|,Vgoingon|չ +ְ N attribute|,occupation|ְλ,important|,&human| +ֱ ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ֵ N quantity|,amount|,&entity|ʵ + N location|λ,middle| +» V satisfied| + ADJ aValue|ֵ,trueness|α,true|,desired| + N community|,pure| + N affairs|,#country| + N affairs|,#country|,politics| + N affairs|,#organization|֯ + N fact|,uprise|,undesired|ݬ,politics| + N regulation| + N community|,politics| + N human|,enemy| + N affairs|,#country|,politics|,police| + N institution|,#place|ط,politics| + N army| + N affairs|,politics| + N result|,#succeed|ɹ,politics| + N regulation| + N thought|ͷ,politics| + N affairs|,#country|,politics|,religion|ڽ + N community|,#affairs|,#country|,politics| +Ԫ N human|,politics|,HighRank|ߵ + N attribute|,circumstances|,#politics|,&country| + N human|,politics| + N regulation|,#country|,politics| + N text|,*estimate|,#affairs|,#country|,politics| + N affairs|,#country|,politics|,industrial| +󲻷 N fact|,mix|,politics|,industrial| +ֿ N fact|,separate|,politics|,industrial| + N attribute|,circumstances|,#politics|,&country| +Ȩ N attribute|,power|,politics|,&country| + N fact|,check|,#behavior|ֹ,#politics| + N affairs|,#country|,politics| +̳ N community|,#affairs|,#country|,politics| + N attribute|,kind|,politics|,&organization|֯,#country| +ί N human|,#occupation|ְλ,official|,politics| + N affairs|,#country|,politics| +Э N institution|,#country|,politics|,(China|й) + N affairs|,#country|,politics| +β N institution|,politics| +η N human|,crime|,politics|,undesired|ݬ +μ N human|,politics| +ξ N institution|,#country|,politics|,(China|й) +ξ N attribute|,circumstances|,#politics|,&country| +Э̻ N institution|,#country|,politics|,(China|й) + N attribute|,circumstances|,#politics|,&country| +֡ CLAS NounUnit|,&image|ͼ +֡ CLAS NounUnit|,&image|ͼ,#shows| +֢ N disease| +֢ N phenomena|,#disease|,medical|ҽ +֢ N cause|ԭ,important| +֢ N part|,%entity|ʵ,important| +֢״ N phenomena|,#disease|,medical|ҽ +֣ N character|,surname|,human|,ProperName|ר +֣ ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ ADV aValue|ֵ,behavior|ֹ,cautious|,desired| +֣ N place|ط,city|,ProperName|ר,(China|й) +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤ +֤ V prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ N information|Ϣ,*prove|֤,#police| +֤ N document|,*prove|֤ +֤ V prove|֤ +֤ N document|,*prove|֤ +֤ȯ N coupon|Ʊ֤,commercial| +֤ȯ N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ȯг N InstitutePlace|,commercial|,@buy|,@sell|,#coupon|Ʊ֤ +֤ N human|,*prove|֤,#police| +֤ʵ V prove|֤ +֤ N document|,*prove|֤ +֤ N physical|,*prove|֤,#police| +֤ N information|Ϣ,*prove|֤,#police| +֤ V prove|֤ +֤ N mark|־ +֥ N character|,(China|й) +֥Ӹ N place|ط,city|,ProperName|ר,(US|) +֥ N FlowerGrass| +֥ N crop|ׯ,?material| +֥ N material|,?edible|ʳ,#crop|ׯ +֥ N human|,official| +֥齴 N material|,?food|ʳƷ +̶֥ N human|,official| +֥ N material|,?food|ʳƷ,liquid|Һ +֦ CLAS NounUnit|,&plant|ֲ,&PenInk|ī +֦ N part|,%plant|ֲ,limb|֫ +֦Ҷï ADJ aValue|ֵ,scene|,exuberant|ï,desired| +֦ N part|,%plant|ֲ,limb|֫ +֦ V connect|,agricultural|ũ +֦ N part|,%event|¼,secondary|,aspect| +֦ V separate| +֦ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֦ N part|,%plant|ֲ,limb|֫ +֦ͷ N location|λ,space|ռ,%tree| +֦Ҷ N part|,%event|¼,secondary|,aspect| +֦Ҷ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֦ N part|,%plant|ֲ,limb|֫ +֧ V CausePartMove| +֧ CLAS NounUnit|,&entity|ʵ +֧ V PropUp|֧ +֧ V SupportWeight|ס +֧ ADJ aValue|ֵ,importance|,branch|֧ +֧ N character|,surname|,human|,ProperName|ר +֧ V collect|,commercial| +֧ V dispatch|Dz +֧ V endure| +֧ N community|,branch|֧,politics| +֧ N human|,official|,politics| +֧ V PropUp|֧ +֧ V ProvideFor| +֧ V endure| +֧ŵ N part|,%entity|ʵ,important| +֧ V PropUp|֧ +֧ V endorse|ӵ +֧ V endure| +֧ N human|,*endorse|ӵ +֧ V pay|,commercial| +֧ N part|,%space|ռ,dot| +֧ N part|,%army|,military| +֧ӳ N human|,official| +֧ V pay|,commercial| +֧ N tool|þ,*PropUp|֧ +֧ V separate| +֧ N InstitutePlace|,branch|֧,@post|ʼ +֧ V dispatch|Dz +֧ ADJ aValue|ֵ,content|,disorder|,undesired|ݬ +֧ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ +֧ N part|,%event|¼,secondary|,aspect| +֧ N waters|ˮ,linear|,secondary| +֧ V control| +֧ V issue|ַ +֧λ N attribute|,power|,strong|ǿ,&entity|ʵ +֧Ʊ N bill|Ʊ,#wealth|Ǯ +֧ N part|,%AnimalHuman|,viscera| +֧ N disease| +֧ N disease| +֧ǰ V help|,patient=army|,military| +֧ N facilities|ʩ,linear|,#liquid|Һ,#crop|ׯ,secondary| +֧ȡ V collect|,commercial| +֧ʹ V dispatch|Dz +֧ N human|,official|,politics| +֧ V HideTruth| +֧ N facilities|ʩ,linear| +֧ N InstitutePlace|,branch|֧,@SetAside|,@TakeBack|ȡ,#wealth|Ǯ,commercial| +֧Ӧ V TakeCare| +֧Ӧ V handle| +֧Ԯ V help| +֧Ԯ N part|,%army| +֧Ԯ˾ N part|,%army| +֧Ԯϵͳ N software| +֧ N human|,desired|,important|,able| +֧ N part|,%building|,bone| +֧ N tool|þ +֧ N tool|þ,*cook| +֧ V dispatch|Dz +֨ V MakeSound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ N sound| +֨ ECHO sound| +֨ V MakeSound| +֨ V speak|˵ +֩ N InsectWorm| +֩ N tool|þ,#InsectWorm| +֪ N knowledge|֪ʶ +֪ V know|֪ +֪ V manage| +֪ V tell| +֪ V know|֪ +֪ V understand| +֪ V know|֪ +֪ V disobey|Υ,content=law|ɷ,time=know|֪,#law|ɷ +֪ N human|,#occupation|ְλ,official|,past| +֪ V tell| +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪֪ V know|֪ +֪ N human|,friend|,intimate| +֪ N mental| +֪֪ V like|ϧ,manner=gentle| +֪ V like|ϧ,manner=gentle| +֪ N InsectWorm| +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ N attribute|,reputation|,&human|,&organization|֯ +֪ʿ N human|,glorious| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoForward|ǰ,time=know|֪,#hardship| +֪Ѷ V GoBackward|,time=know|֪,#hardship| +֪ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ V know|֪ +֪ ADJ aValue|ֵ,behavior|ֹ,^biased|ƫ,desired| +֪ N human|,*know|֪,#event|¼ +֪ N human|,*know|֪ +֪Ȥ ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| +֪ʶ N knowledge|֪ʶ +֪ʶȨ N rights|Ȩ,#knowledge|֪ʶ +֪ʶ N human|,#knowledge|֪ʶ +֪ʶ ADJ aValue|ֵ,property|,undergo|,#teach| +֪ʶ N community|,#knowledge|֪ʶ +֪ʶ N affairs| +֪ʶ N software|,#knowledge|֪ʶ +֪ʶ N human|,able| +֪ʶܼ ADJ aValue|ֵ,property|,BaseOn|,#knowledge|֪ʶ +֪ʶ N attribute|,range|,#knowledge|֪ʶ,&human| +֪ʶ N human|,*cease|ͣ,#study|ѧ,*leave|뿪,#education| +֪ʶˮ׼ N attribute|,wisdom|ǻ,&human| +֪ʶ N knowledge|֪ʶ +֪ N human|,official|,past| +֪ N software|,#knowledge|֪ʶ +֪Ϥ V know|֪ +֪ N human|,#occupation|ְλ,official|,past| +֪ V know|֪ +֪ ADJ aValue|ֵ,relatedness|,intimate|,desired| +֪ N human|,friend|,intimate| +֪ V tell| +֪ V satisfied| +֫ N part|,%AnimalHuman|,limb|֫ +֫ V separate| +֫ N part|,%AnimalHuman|,body| +֫ N part|,%AnimalHuman|,limb|֫ +֬ N part|,%AnimalHuman|,flesh| +֬ N tool|þ,*MakeUp|ױ +֬ N part|,%AnimalHuman|,flesh| +֬ N chemical|ѧ +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,fatness|,fat| +֬ N part|,%AnimalHuman|,flesh| +֬ N wealth|Ǯ +֬ N crop|ׯ,?material| +֬ N material|,?edible|ʳ,#crop|ׯ +֬ N material|,?food|ʳƷ +֭ N liquid|Һ +֭ˮ N liquid|Һ +֭Һ N liquid|Һ +֮ STRU {DeChinese|} +֮ PRON {ThirdPerson|,mass|} +֮ PRON {it|,mass|} +֮ PRON {it|} +֮ N aValue|ֵ,time|ʱ,future| +֮ N location|λ,hind| +֮ ADV {supplement|ݽ} +֮ STRU {range} +֮ǰ N location|λ,InFront|ǰ +֮ǰ N time|ʱ,past| +֮ N location|λ,hind| +֮ PREP {besides} +֮ PREP {except} +֮ ADV aValue|ֵ,attachment| +֮ ADV aValue|ֵ,location|λ,beneath| +֮ N attribute|,rank|ȼ,&human| +֮ N location|λ,beneath| +֮ N {condition|} +֮· N facilities|ʩ,route|· +֯ V weave| +֯ V repair| +֯ V weave| +֯ N machine|,*weave|,industrial| +֯ N machine|,*weave|,industrial| +֯ N material|,?clothing| +֯Ů N celestial| +֯Ů N humanized|,female|Ů +֯Ů N human|,*weave|,industrial|,female|Ů +֯Ʒ N material|,$weave| +֯ N material|,$weave| +֯ V weave|,industrial| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N attribute|,rank|ȼ,#occupation|ְλ,&human| +ְ N attribute|,occupation|ְλ,&human| +ְ N human|,#occupation|ְλ,employee|Ա +ְ N attribute|,performance|,&organization|֯,&human| +ְȨ N attribute|,power|,#occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְλ N attribute|,occupation|ְλ,&human| +ְ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +ְҵ N affairs|,#earn|׬,#alive|,#occupation|ְλ +ְҵ N disease| +ְҵȭ N human|,sport| +ְҵȭ N fact|,sport| +ְҵ⽻ N human|,#occupation|ְλ,official|,diplomatic|⽻ +ְԱ N human|,#occupation|ְλ,employee|Ա +ְ N duty|,#occupation|ְλ +ְ V manage| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADV aValue|ֵ,direction|,straight|ֱ +ֱ ADJ aValue|ֵ,form|״,straight|ֱ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ N part|,%character| +ֱ V straighten|ֱ +ֱ V LeaveFor|ǰ +ֱ V disseminate| +ֱ V associate|,means=turn|Ťת,#tool|þ +ֱ N place|ط,ProperName|ר,(Europe|ŷ) +ֱ N part|,%AnimalHuman|,viscera| +ֱ N disease| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ N tool|þ,*measure| +ֱ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֱ ADV aValue|ֵ,duration|,TimeLong| +ֱ V arrive| +ֱ N part|,%plant|ֲ,base| +ֱ N material|,?clothing| +ֱ ADJ aValue|ֵ,property|,sense|о +ֱ V fly| +ֱ N shape|,angular| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ +ֱ˵ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N attribute|,distance|,&image|ͼ,&physical|,round|Բ +ֱ N experience|,perception|֪ +ֱ ADJ aValue|ֵ,posture|,upright| +ֱ V stand|վ +ֱ N part|,%plant|ֲ,body| +ֱ ADJ aValue|ֵ,behavior|ֹ,#electricity| +ֱ N electricity| +ֱ N electricity| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V win|ʤ,sport| +ֱü V ExpressAnger|ʾŭ +ֱü V stupefied|ľȻ +ֱɻ N aircraft| +ֱ N aircraft| +ֱ V BeMember| +ֱˬ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱͦͦ ADJ aValue|ֵ,posture|,upright| +ֱͨ ADJ aValue|ֵ,behavior|ֹ,continuous| +ֱͨ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ +ֱϵ N human|,family|,intimate| +ֱϽ ADJ aValue|ֵ,attachment| +ֱϽ N place|ط,city| +ֱ N shape|,linear| +ֱ۶ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ N human|,forthright|ˬ +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱ V speak|˵,manner=forthright|ˬ +ֱԲ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +ֱԲ V speak|˵,manner=forthright|ˬ +ֱ V translate| +ֱ PREP {LocationFin} +ֱ PREP {TimeFin} +ֲ V establish| +ֲ V planting|ֲ,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ V put| +ֲƤ V cure|ҽ +ֲ V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N time|ʱ,festival|,@congratulate|ף +ֲ V planting|ֲ,patient=tree|,agricultural|ũ +ֲ N plant|ֲ,generic|ͳ +ֲ걾 ADJ InstitutePlace|,@display|չʾ,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֲ N human| +ֲ N part|,%AnimalHuman|,nerve| +ֲ ADJ aValue|ֵ,property|,#plant|ֲ +ֲѧ N knowledge|֪ʶ,#plant|ֲ +ֲ N material|,liquid|Һ +ֲ԰ N facilities|ʩ,space|ռ,public|,@WhileAway|,#plant|ֲ +ֲ N plant|ֲ,generic|ͳ +ֳ V GiveBirth| +ֳ V establish|,patient=place|ط,purpose=reside|ס +ֳ N place|ط,$establish|,#reside|ס +ֳع ADJ place|ط,country|,$establish|,#reside|ס +ֳ ADJ human|,#reside|ס +ֳ ADJ place|ط,country|,*establish|,#reside|ס +ֳ N human|,*establish|,#place|ط,#reside|ס +ֳ N system|ƶ,#establish|,#place|ط,politics| +ֳ N human|,*establish|,#place|ط,#reside|ס +ִ V catch|׽ס +ִ V conduct|ʵʩ +ִ V hold| +ִ V keep| +ִ V manage| +ִ V write|д +ִ N human|,*write|д +ִ V engage|,content=teach|,guide|,ResultEvent=perform|,entertainment| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V conduct|ʵʩ,content=law|ɷ,police| +ִ V disobey|Υ,content=law|ɷ,crime| +ִɽ V conduct|ʵʩ,content=law|ɷ,police| +ִ V engage|,content=teach|,education| +ִҵ֤ N human| +ִԲ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V engage|,content=bear|е +ִ N human|,religion|ڽ +ִί N human|,official| +ִί N institution| +ִ V conduct|ʵʩ +ִй N human|,official|,*conduct|ʵʩ +ִ N human|,*conduct|ʵʩ +ִϯ N human|,official| +ִҵ V engage|,content=commercial| +ִ V willing|Ը +ִ N human|,friend|,intimate|,desired| +ִ V manage| +ִ N document|,*ExpressAgreement|ʾͬ +ִ V obtain|õ,possession=power|,politics| +ִ N community|,*obtain|õ,#power| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,will|־,strong|ǿ,desired| +ִ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ +ִ V condole|° +ֵ N attribute|,value|ֵ,&entity|ʵ +ֵ V bear|е +ֵ N quantity|,amount|,&entity|ʵ +ֵ V undergo| +ֵ V worth|ֵ +ֵ V engage|,content=bear|е +ֵ N room|,@engage|,#bear|е +ֵԱ N human|,*engage|,#bear|е +ֵ V worth|ֵ +ֵó ADJ aValue|ֵ,ability|,able|,$praise|佱 +ֵó ADJ aValue|ֵ,ability|,able|,$respect| +ֵü ADJ aValue|ֵ,ability|,able|,$ThinkOf|˼ +ֵĽ ADJ aValue|ֵ,ability|,able|,$admire|Ľ +ֵע ADJ aValue|ֵ,ability|,able|,$PayAttention|ע +ֵǮ ADJ aValue|ֵ,value|ֵ,precious| +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е +ֵ V engage|,content=bear|е,military| +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ֶŮ N human|,family|,female|Ů +ֶ N human|,family|,male| +ֶ N human|,family|,male| +ַ N location|λ +ָ V AimAt| +ָ V depend| +ָ V mean|ָ +ָ N part|,%AnimalHuman|,hand| +ָ N quantity|,amount|,&result|,$expect| +ָ ADV {comment|} +ָ V ExpressAgainst|Ǵ +ָ V express|ʾ +ָ V mean|ָ +ָ V order| +ָԱ N human|,#occupation|ְλ,official|,military| +ָ V teach| +ָԽ V tell|,content=direction| +ָ V CauseToBe|ʹ֮ +ָ ADJ aValue|ֵ,property|,$CauseToBe|ʹ֮ +ָ N human|,*CauseToBe|ʹ֮ +ָ V AimAt| +ָ N tool|þ,*decorate|װ,$PutOn| +ָ N human|,*perform|,entertainment| +ָ N human|,official| +ָ V order| +ָӰ N tool|þ,*order| +ָӲ N part|,%army|,*order| +ָӹ N human|,*order|,military| +ָӽṹ N part|,%army| +ָ N part|,%army| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָԱ N human|,*order|,military| +ָ N part|,%army|,*order| +ָ N part|,%army|,*order| +ָ V ExpressAgainst|Ǵ,manner=tactful| +ָ N part|,%AnimalHuman|,hand| +ָ׵ N tool|þ,*MakeUp|ױ +ָ׻ N FlowerGrass| +ָ޼ʦ N human|,#occupation|ְλ,*MakeUp|ױ +ָ N tool|þ,*MakeUp|ױ +ָ N part|,%human|,#hand| +ָ V teach| +ָ V accuse|ظ,police| +ָ V order| +ָ N text|,*order| +ָ N attribute|,property|,order| +ָ· V guide|,ResultEvent=SelfMove| +ָ· N mark|־,#route|· +ָ V teach| +ָ V mention|ἰ +ָ V mention|ἰ +ָ N readings|,*teach| +ָ N tool|þ,*measure|,#direction| +ָ V CauseToBe|ʹ֮ +ָԽ V tell|,content=direction| +ָտɴ ADJ aValue|ֵ,duration|,TimeShort| +ָɣ V ExpressAgainst|Ǵ,manner=tactful| +ָʹ V incite|ָʹ +ָʾ V mean|ָ +ָʾ V order| +ָʾ V teach| +ָʾ N tool|þ,*mean|ָ +ָʾ N tool|þ,*mean|ָ +ָֻ V CausePartMove| +ָֻ V teach| +ָֻ V CausePartMove| +ָֻ V teach| +ָ N symbol|,#quantity| +ָͷ N part|,%AnimalHuman|,foot| +ָͷ N part|,%AnimalHuman|,hand| +ָ V expect| +ָ N trace| +ָ ADJ aValue|ֵ,property|,facing| +ָҪ N part|,%entity|ʵ,heart| +ָ V guide| +ָӡ N trace| +ָ V ExpressAgainst|Ǵ +ָ N human|,ExpressAgainst|Ǵ +ָժ V ExpressAgainst|Ǵ +ָսԱ N human|,military|,mass| +ָ N part|,%implement| +ָ N regulation| +ָ V estimate| +ֹ V CeaseSelfMove|ֹ +ֹ PREP {TimeFin} +ֹס ADJ aValue|ֵ,ability|,unable|ӹ,$destroy| +ֹ V CeaseSelfMove|ֹ +ֹ V TurnOff|ֹ +ֹ N attribute|,boundary|,&entity|ʵ +ֹ V restrain|ֹ,ResultEvent=pant|,medical|ҽ +ֹ V restrain|ֹ,ResultEvent=HungryThirsty| +ֹˮ N water|ˮ +ֹʹ V restrain|ֹ,ResultEvent=painful|ʹ,medical|ҽ +ֹϢ V end|ս +ֹѪ V restrain|ֹ,ResultEvent=bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪ N tool|þ,*restrain|ֹ,#bleed|Ѫ,medical|ҽ +ֹѪҩ N medicine|ҩ,*restrain|ֹ,#bleed|Ѫ +ֺ N part|,%AnimalHuman|,foot| +ֺ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ֺ N part|,%AnimalHuman|,foot| +ֻ CLAS NounUnit|,&entity|ʵ +ֻ CLAS NounUnit|,&physical| +ֻ ADV {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻ ADV {modality|} +ֻ AUX {modality|} +ֻ ADV {modality|} +ֻ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +ֻ V manage|,manner=only| +ֻ ADV {modality|} +ֻ ADV {modality|} +ֻ ADV aValue|ֵ,behavior|ֹ,single| +ֻ COOR {but|} +ֻ ADV {emphasis|ǿ} +ֻ COOR {emphasis|ǿ} +ֻ ADV {emphasis|ǿ} +ֻҪ CONJ {condition|} +ֻ CONJ {condition|} +ֻϦ V VieFor| +ּ N document|,royal| +ּ N purpose|Ŀ +ּȤ N purpose|Ŀ +ּҪ N part|,%entity|ʵ,heart| +ּ N text|,*order| +ּ ADV {topic} +ֽ CLAS NounUnit|,&document| +ֽ N paper|ֽ,@write|д +ֽ N tool|þ,*print|ӡˢ +ֽס V exposure|¶ +ֽ N money|,material=paper|ֽ +ֽ N InstitutePlace|,@produce|,#paper|ֽ,factory|,industrial| +ֽ N tool|þ,@record|¼ +ֽ N tool|þ,cubic|,@put| +ֽ N material|,?paper|ֽ +ֽ N tool|þ,*wipe| +ֽϻ N human|,undesired|ݬ +ֽ N tool|þ,*gamble|IJ,*recreation| +ֽƬ N paper|ֽ,small|С +ֽǮ N tool|þ,#die| +̸ֽ ADJ aValue|ֵ,content|,empty|,undesired|ݬ +ֽ N paper|ֽ,small|С +ֽ N tool|þ,cubic|,@put| +ֽм N paper|ֽ,small|С +ֽ N tool|þ,*print|ӡˢ +ֽ N addictive|Ⱥ +ֽ N InsectWorm| +ֽ N paper|ֽ,@write|д +ֽ ADJ aValue|ֵ,behavior|ֹ,extravagant|,undesired|ݬ +ֽ N tool|þ,*WhileAway| +־ N account| +־ N aspiration|Ը,expect| +־ N mark|־ +־ V condole|° +־ ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ +־ N aspiration|Ը,expect|,desired| +־Ȥ N emotion|,FondOf|ϲ +־ʿ N human|,desired| +־ʿ N human|,desired|,faithful| +־ͬ V fit|ʺ +־ N aspiration|Ը,expect| +־Ը N aspiration|Ը,expect| +־Ը V willing|Ը +־Ը N human|,*fight|,military| +־Ը N army| +־Ը N human|,willing|Ը +־ڱص V willing|Ը,content=defeat|սʤ +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ V love| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ֿ N human|,friend|,intimate|,desired| + V throw| +ǹ N fact|,sport| +Ͳ N weapon| + N fact|,sport| + PREP {LocationFin} + PREP {StateFin} + PREP {TimeFin} + N treasure|䱦 + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + CONJ {supplement|ݽ} + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +Ҫ ADJ aValue|ֵ,importance|,important| + N human|,friend|,intimate|,desired| + ADV aValue|ֵ,duration|,TimeLong| + N expression| + N human|,family| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADV aValue|ֵ,range|,nonextensive| + N human|,friend|,intimate|,desired| + PREP {concerning} + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ + V CauseAffect|Ⱦ + V ResultIn| + V express|ʾ + V send| + V spend| +° V express|ʾ,content=sorrowful| +° ADJ aValue|ֵ,ability|,able|,CauseAffect|Ⱦ,#disease| +² V ResultIn|,result=ill|̬ +² N bacteria|΢ +² V ResultIn|,result=disable|м +´ V speak|˵ +´ V speak|˵ +µ V send|,patient=information|Ϣ +¸ V become|Ϊ,isa=rich| +¹ N community|,politics|,ProperName|ר,(China|й) +º V write|д +º V congratulate|ף +¾ V salute|¾ + V engage| + V engage| + ADJ aValue|ֵ,content|,concise|,desired| + ADJ aValue|ֵ,density|ܶ,dense| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +Ǹ V apologize|Ǹ +ʹ V ResultIn| + V ResultIn|,result=die| + ADJ aValue|ֵ,ability|,able|,kill|ɱ +л V thank|л + V write|д + V SayHello|ʺ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + V buy|,commercial| + V establish| + V put| +ð V buy|,commercial| +ñ V buy|,commercial| +ñ V debate| +÷ V put| +û V replace| + V IllTreat| + V stay|ͣ + V put| +֮ V IllTreat| +֮ V IllTreat| +֮ V IllTreat| +֮Ժ V IllTreat| + N tool|þ,mark|־ + V stand|վ + V forming|γ + V produce| + V restrain|ֹ + N system|ƶ +ư V print|ӡˢ +Ʊ V produce| +Ʊ V forming|γ,PatientProduct=document| +Ʋ V punish| +Ƴ V produce|,Vachieve| +ƳƷ N artifact|˹ +Ƶ V control| +ƶ V forming|γ +ƶ V forming|γ +ƶ V TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N part|,%implement|,*TurnOff|ֹ +ƶ N law|ɷ +ƶ N system|ƶ +ƶȻ N attribute|,property|,system|ƶ +ƶ ADJ aValue|ֵ,attachment| +Ʒ V control| +Ʒ N clothing| +Ʒ V control| +Ƹߵ N location|λ,military| +Ƹ V produce|,PatientProduct=material| +Ƹﳧ V InstitutePlace|,@produce|,#material| +ƺȨ N attribute|,power|,control|,#waters|ˮ,&country|,&army| +ƺ V restrain|ֹ +ƺ N attribute|,strength|,&human|,&organization|֯ +Ƽ N medicine|ҩ +Ƽ N part|,%artifact|˹,#produce|,industrial| +ƿȨ N attribute|,power|,control|,#sky|,&country|,&army| + ADJ aValue|ֵ,property|,cool| + V cool| + N tool|þ,*cool| +Ƭ N human|,produce|,#shows| +Ƭ V produce|,PatientProduct=shows| +Ƭ N InstitutePlace|,@produce|,#shows| +Ʒ N artifact|˹,generic|ͳ +ʤ V defeat|սʤ +ʽ N attribute|,kind|,tool|þ + V produce|,sell| + V refine|,patient=material|,industrial| +ͼ V draw|,industrial| + V MakeAppointment|Լ,content=law|ɷ +ҩ V produce|,PatientProduct=medicine|ҩ +ҩ N InstitutePlace|,@produce|,#medicine|ҩ,factory|,industrial| +Լ V restrain|ֹ + V create| + V produce| +쳧 N InstitutePlace|,@produce|,factory|,industrial| +ҵ N affairs|,*produce|,industrial| + N human|,*produce| +ֹ V obstruct|ֹ +ֹ V restrain|ֹ +ֹΣ N attribute|,ability|,#restrain|ֹ,dangerous|Σ + V produce| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +dz N part|,%AnimalHuman|,*bite|ҧ +Ƕ N human|,wise|,desired| +ǻ N attribute|,wisdom|ǻ,&AnimalHuman| + ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Chile|) + N place|ط,country|,ProperName|ר,(South America|) + N human|,(Chile|) + N attribute|,wisdom|ǻ,&AnimalHuman| + N human|,able|,wise|,desired| + N human|,able|,wise|,desired| + N community|,able|,wise|,desired| + N attribute|,wisdom|ǻ,&AnimalHuman| +ܻ V ize|̬,PatientAttribute=wise| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ž ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +ȡ V seek|ıȡ,manner=dexterous| + N attribute|,rank|ȼ,wisdom|ǻ,&human| +˫ȫ ADJ aValue|ֵ,courage|,brave|,desired| + N affairs|,education|,#wise| + N human|,wise|,desired| + N attribute|,sequence|,&entity|ʵ + N time|ʱ,year| + N attribute|,sequence|,&entity|ʵ +Ȼ ADJ aValue|ֵ,content|,neat|,desired| +Ȼ ADJ aValue|ֵ,sequence| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,age|,young| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N human|,young| + N attribute|,property|,&entity|ʵ + N attribute|,quality|,&entity|ʵ + N entity|ʵ,generic|ͳ + V interrogate| + V pawn|Ѻ +ʱ N fact|,change|,#quality| +ʴμ۸ ADJ aValue|ֵ,price|۸,expensive|,undesired|ݬ +ʵ N attribute|,property|,&physical| +ʵ N attribute|,quality|,&physical| +ʵ N part|,%physical| +ʼ V check|,content=quality| + N attribute|,quality|,&entity|ʵ + N attribute|,standard|׼,&quality| + N material|,?clothing| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| + V interrogate| +ѯ V ask| + V ask| + V ask| +ż ADJ aValue|ֵ,price|۸,cheap|,desired| + N part|,%physical| + V cook| +ֿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N disease| +̴ N disease| + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ +ͺ V detain|ס,patient=water|ˮ +ͺ V inferior| + V suffer|,content=detain|ס +ɽ N expenditure|,$punish|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,$sell|,commercial|,undesired|ݬ + V control| + V cure|ҽ + V manage| + V punish| + V research|о +ΰ N attribute|,circumstances|,safe|,politics|,&organization|֯ +α V cure|ҽ +α V handle| +α V cure|ҽ +α V handle| +β V cure|ҽ,content=disease|,medical|ҽ +β V cure|ҽ +γ V manage|,patient=factory|,industrial| +ι V manage|,patient=country|,politics| +λ V control|,patient=waters|ˮ +λ V control|,patient=waters|ˮ +ξ V manage|,patient=army| + V control| + V manage|,politics| + ADJ aValue|ֵ,property|,cure|ҽ + V cure|ҽ +ɥ V arrange| +ɳ V control|,patient=stone|ʯ +ɽ V improve|,patient=land|½ + N time|ʱ,flourishing|,desired| +ˮ V control|,patient=waters|ˮ +ѧ V research|о,content=knowledge|֪ʶ + V resume|ָ,medical|ҽ + N quantity|,rate|,#BeRecovered|ԭ,&cure|ҽ +װ V prepare|׼ + V punish|,police| +ϰ V suffer|,content=obstruct|ֹ + ADJ aValue|ֵ,occasion|,stuffy|,undesired|ݬ +Ϣ V obstruct|ֹ +Ϣ V pant| + ADJ aValue|ֵ,effect|Ч,superior|,desired| + ADJ aValue|ֵ,rank|ȼ,average| + V fulfil|ʵ + N location|λ,middle| + N place|ط,country|,ProperName|ר,(China|й) + V suffer| + N time|ʱ,now| +а N affairs|,#duty|,#sequence| +а N part|,%InstitutePlace|,education| +б V cheat|ƭ +б˽ V cheat|ƭ +б V win|ʤ,commercial| +в N electricity| +в ADJ aValue|ֵ,rank|ȼ,average| +в N part|,%entity|ʵ,middle| +в N edible|ʳ,(China|й) +вҩ N medicine|ҩ +в N plans|滮,ordinary| +в N aValue|ֵ,rank|ȼ,average| +в׼ N community| +г N part|,%facilities|ʩ,space|ռ,@compete|,sport| +г ADJ aValue|ֵ,rank|ȼ,average| +г N fact|,exercise|,sport| +г ADJ aValue|ֵ,duration|,TimeLong| +гҩ N medicine|ҩ,(China|й) +г ADJ aValue|ֵ,distance|,medium| +е V suffer|,content=shoot| +е ADJ aValue|ֵ,rank|ȼ,average| +е N crop|ׯ +е ADJ aValue|ֵ,rank|ȼ,average| +е ADJ aValue|ֵ,size|ߴ,medium| +е N attribute|,height|߶,medium|,&human| +е͵ ADJ aValue|ֵ,rank|ȼ,LowRank|͵ +е N location|λ,dot|,middle| +ж ADJ place|ط,ProperName|ר +ж N disease|,#poison| +ж V ill|̬,#poison| +ж ADJ aValue|ֵ,rank|ȼ,average| +ж N part|,%entity|ʵ,middle| +ж V cease|ͣ +ж N part|,%army| +ж N part|,%institution| +жӳ N human|,official|,military| +ж N part|,%AnimalHuman|,*listen| +ж N disease| +з N institution|,police|,@judge|ö,(China|й) +з N fact|,eat|,afternoon| +з N part|,%entity|ʵ,(China|й) +з N place|ط,country|,ProperName|ר,(Africa|) +зǹ͹ N place|ط,country|,ProperName|ר,(Africa|) +зǽڹͬ巨 N money|,(Togo|) +зǽں N money|,(Cameroon|¡) +зǽں N money|,(Central Africa|з) +зǽں N money|,(Chad|է) +зǽں N money|,(Congo|չ) +зǽں N money|,(Equatorial Guinea|) +зǽں N money|,(Gabon|) +з N attribute|,style|,hair|ë +з V separate| +з N human|,*exercise|,(football|) +з N disease| +з V paralyse|̱ +з N time|ʱ,season|,hot| +и߼ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ +й N community|,politics|,ProperName|ר,(China|й) +й N institution|,politics|,ProperName|ר,(China|й) +йɼίԱ N institution|,ProperName|ר,*check|,#regulation| +й N time|ʱ,past| +й ADJ aValue|ֵ,attachment|,#country|,ProperName|ר,(Asia|) +й N place|ط,country|,ProperName|ר,(Asia|) +йƷ׻ N InstitutePlace|,@display|չʾ,commercial| +йũ N army|,ProperName|ר,past|,(China|й) +йѧЭ N community|,knowledge|֪ʶ,ProperName|ר,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йٽ N community|,politics|,ProperName|ר,(China|й) +йũ N community|,politics|,ProperName|ר,(China|й) +йž N army|,ProperName|ר,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,commercial|,(China|й) +йѧԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +йͬ˻ N community|,politics|,(China|й) +й N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial|,(China|й) +й¹ N community|,politics|,ProperName|ר,(China|й) +й ADJ aValue|ֵ,property|,$produce|,#(China|й) +йƤ N part|,%plant|ֲ,embryo| +к V damage|,industrial| +кͼ N chemical|ѧ +л N community|,ProperName|ר,(China|й) +л N place|ط,country|,ProperName|ר,(China|й) +л N time|ʱ,ProperName|ר,past| +л N community|,ProperName|ר,(China|й) +лȫܹ N community|,#employee|Ա,main|,(China|й) +л񹲺͹ N place|ط,country|,ProperName|ר,(China|й) +л N InstitutePlace|,publish|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,rank|ȼ,average| +мԺ N institution|,police|,@judge|ö +м V disseminate| +м N tool|þ,linear|,@transmit| +мί N institution|,*check|,#regulation|,ProperName|ר,(China|й) +м ADJ aValue|ֵ,importance|,important| +м N human|,desired|,important|,able| +м N part|,%entity|ʵ,heart| +м N part|,%thing|,heart| +м N part|,%thing|,heart| +м ADJ aValue|ֵ,rank|ȼ,average| +м N location|λ,middle| +м N human|,commercial| +м N human|,commercial| +мϢ N time|ʱ,@rest|Ϣ,#discuss| +м N language| +н N human|,#occupation|ְλ,official|,military| +н V win|ʤ +н N physical|,*connect| +н N human|,commercial| +п ADJ aValue|ֵ,prettiness|,beautiful|,desired| +пԺ N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) +п ADJ aValue|ֵ,correctness|,accurate|׼,desired| + ADJ aValue|ֵ,relatedness| +Ȩ N rights|Ȩ,#BeIndependent| + N institution|,*associate|,ProperName|ר,(China|й) + N part|,%waters|ˮ + N human|,desired|,important|,able| +· ADV aValue|ֵ,location|λ,middle| +· ADJ aValue|ֵ,rank|ȼ,average| + V decline|˥ + N place|ط,ProperName|ר +Ϻ N house|,institution|,#politics|,(China|й) + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,age|,#adult| + N time|ʱ,#adult| + N human|,adult| +ũ N human|,#occupation|ְλ,agricultural|ũ +ŷ N place|ط,ProperName|ר,middle|,(Europe|ŷ) +ƪС˵ N readings| +Ƶ N attribute|,frequency|Ƶ + N part|,process|,middle| + N human|,adult| + N institution|,#police|,ProperName|ר,politics|,(US|) + N time|ʱ,autumn| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף + N human|,commercial| +ɽѧ N InstitutePlace|,@teach|,@study|ѧ,education|,ProperName|ר +ɽ N human|,undesired|ݬ,treacherous| +ɽװ N clothing| + V slander|̰ + N time|ʱ,past| +ʦ N InstitutePlace|,@teach|,@study|ѧ,education| +ʽ N attribute|,style|,&entity|ʵ,(China|й) +ʿ N human|,#occupation|ְλ,military| + N time|ʱ,past| + N part|,%thing|,heart| + N part|,%AnimalHuman|,nerve| + N disease| + V fever| + N human|,official|,past| + N MusicTool| + N human|,*perform|,entertainment| + N location|λ,%sky| + N place|ط + ADJ aValue|ֵ,SoundQuality|,good|,desired| +; N location|λ,middle| +;ͣ ADJ aValue|ֵ,property|,^CeaseSelfMove|ֹ + N place|ط,(China|й) + N place|ط,country|,ProperName|ר,(China|й) + ADJ aValue|ֵ,source|Դ + ADJ aValue|ֵ,source|Դ +΢ N part|,%physical| +ξ N human|,#occupation|ְλ,official|,military| + N human|,*exercise|,(football|) + N language|,ProperName|ר,(China|й) + N time|ʱ,afternoon| + ADJ aValue|ֵ,source|Դ + N image|ͼ,linear| + N location|λ,%facilities|ʩ,middle|,linear|,sport| + N time|ʱ,night| +С ADJ aValue|ֵ,size|ߴ,small|С +Сҵ N InstitutePlace|,small|С,commercial| +С ADJ aValue|ֵ,range|,small|С +Сѧ N InstitutePlace|,@teach|,@study|ѧ,education| +У N human|,#occupation|ְλ,official|,military| +У N human|,official|,military| + ADJ aValue|ֵ,importance|,important| + N location|λ,middle| + N part|,%entity|ʵ,heart| +ĵ N location|λ,middle|,dot| +˼ N part|,%information|Ϣ,heart| + N location|λ,middle|,linear| + N InstitutePlace|,ProperName|ר,commercial|,(China|й) + N institution|,commercial|,ProperName|ר,(China|й) + V BeRecovered|ԭ + ADJ aValue|ֵ,size|ߴ,medium| +ҵ N InstitutePlace|,medium|,commercial| + ADJ aValue|ֵ,property|,#chemical|ѧ + ADJ aValue|ֵ,property|,#language| + N institution|,*disseminate|,politics|,ProperName|ר,(China|й) +ѡ V win|ʤ +ѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ѧ N human|,*study|ѧ,education| +Ѯ N time|ʱ,TenDays|Ѯ + N place|ط,ProperName|ר,(Asia|) + ADJ aValue|ֵ,attachment| + N location|λ,middle| + N part|,%institution|,important| +봦 N part|,%computer|,heart| +뼯Ȩ N attribute|,power|,&human|,&organization|֯,&information|Ϣ +ί N institution|,military|,ProperName|ר,(China|й) +鱨 N institution|,#police|,ProperName|ר,politics|,(US|) +ίԱ N human|,official|,politics| +о N InstitutePlace|,*research|о,#knowledge|֪ʶ,ProperName|ר,(China|й) + N InstitutePlace|,@SetAside|,@TakeBack|ȡ,@lend|,#wealth|Ǯ,ProperName|ר,commercial| +ҩ N medicine|ҩ,(China|й) +ҩ N material|,?medicine|ҩ,(China|й) +Ҷ N time|ʱ,middle| +ҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽ N knowledge|֪ʶ,medical|ҽ,(China|й) +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ,(China|й) +ҽҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ +ҽԺ N InstitutePlace|,@cure|ҽ,#disease|,medical|ҽ + V satisfied| +ӹ ADJ aValue|ֵ,rank|ȼ,average| +ӹ N knowledge|֪ʶ +ӹ N readings|,(China|й) + ADJ aValue|ֵ,effect|Ч,superior|,desired| + N part|,%waters|ˮ + N RainSnow|ѩ +Ԫ N time|ʱ,festival|,@congratulate|ף +ԭ N place|ط,(China|й) + N CloudMist| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| +ָ N part|,%AnimalHuman|,hand| +ֹ V cease|ͣ + N place|ط,(China|й) +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ת V alter|ı,patient=vehicle|ͨ +ת N InstitutePlace|,space|ռ,commercial| +װ N clothing|,(China|й) + N part|,%physical| +ӵ N weapon| + V cease|ͣ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ҳ N human|,official|,faithful| +ҳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Ҹ V persuade|Ȱ˵ +Һ ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +һ N human|,*die|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + N human|,faithful|,desired| + N human|,*die|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,loyal|Т,desired| +˳ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +Т N attribute|,behavior|ֹ,loyal|Т,&human| + N attribute|,behavior|ֹ,loyal|Т,&human| +Ĺ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V loyal|Т +ְ V loyal|Т + ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +겻 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,#sound| + N tool|þ,*tell|,#time|ʱ + N tool|þ,cubic|,@put| +Ӱ V like|ϧ +ӱ N tool|þ,*tell|,#time|ʱ +ӱ N InstitutePlace|,@buy|,*sell|,*repair|,tool|þ,#time|ʱ +ӱ N human|,#occupation|ְλ,*repair|,tool|þ,#time|ʱ +ӵ N time|ʱ,hour|ʱ +ӵ㹤 N human|,#occupation|ְλ,employee|Ա + N character|,surname|,human|,ProperName|ר +¥ N facilities|ʩ,space|ռ + V love| +ʯ N stone|ʯ,?material| + N sound| +ͷ N time|ʱ,hour|ʱ + N emotion| +Գ N text|,#emotion| + N emotion| + N emotion| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N character|,surname|,human|,ProperName|ר + V die| + V finish| + N time|ʱ,ending|ĩ + ADV {comment|} +ճ V finish|,entertainment|,sport| +յ N location|λ,ending|ĩ +յ N location|λ,ending|ĩ,sport| +յ N location|λ,ending|ĩ,sport| +յվ N facilities|ʩ,space|ռ,#LandVehicle|,ending|ĩ +ն N part|,computer| +ն˻ N part|,computer| +նû N human|,*use| +չ ADJ aValue|ֵ,duration|,TimeLong| +չ ADV {comment|} +ռ N process|,ending|ĩ +ս AUX {comment|} +ս V finish| +ս N process|,ending|ĩ +վ ADV {comment|} +վ ADV {comment|} +վ N process|,ending|ĩ + V finish| + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + N human|,family| + N fact|,important| + N regulation| + N fact|,judge|ö,police| +Ȩ N rights|Ȩ,*judge|ö,police| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,@alive| + ADJ aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + N time|ʱ,#alive| + ADV aValue|ֵ,time|ʱ,ending|ĩ +ֹ V cease|ͣ +ֹ V finish| +ֹ V CeaseSelfMove|ֹ + N attribute|,kind|,&animate| + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N attribute|,kind|,&human| + V cultivate|,agricultural|ũ + N part|,%plant|ֲ,embryo| + V planting|ֲ,agricultural|ũ +ֲ V planting|ֲ,patient=FlowerGrass| +ֵ V engage|,content=planting|ֲ,agricultural|ũ +ֶ V cure|ҽ +ֻ V cure|ҽ +ֻ V planting|ֲ,patient=FlowerGrass| +ֻ N human|,*planting|ֲ,#FlowerGrass|,agricultural|ũ + N attribute|,kind|,&entity|ʵ,&aValue|ֵ,&attribute| + N plant|ֲ,young| + V engage|,content=planting|ֲ,agricultural|ũ + N livestock| +ֲ V planting|ֲ,agricultural|ũ +ֲ N human|,*planting|ֲ,agricultural|ũ + ADJ aValue|ֵ,kind|,many| + ADV aValue|ֵ,kind|,many|,desired| + N part|,%plant|ֲ,embryo| + N human|,$choose|ѡ,*compete|,sport| + N part|,%plant|ֲ,embryo| +Ӷ N community|,$choose|ѡ,*compete|,sport| +ѡ N human|,$choose|ѡ,*compete|,sport| + N community| + V separate|,politics|,undesired|ݬ + V destroy|,politics|,undesired|ݬ + V despise|,politics|,undesired|ݬ + N system|ƶ,#despise|,undesired|ݬ + N human|,*despise|,undesired|ݬ + N human|,undesired|ݬ + V swollen| +׿ N disease| + N disease| + ADJ aValue|ֵ,property|,swollen| + V swollen| + V PayAttention|ע + ADV aValue|ֵ,frequency|Ƶ,again| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,weight|,heavy| + ADJ attribute|,weight|,&physical| + N part|,%entity|ʵ + ADJ qValue|ֵ,amount|,many| + V repeat|ظ +ذ V publish|,manner=again| +ذ V punish|,police| +ر N army|,many| +ز N disease|,strong|ǿ +ز V disseminate|,manner=again| +ز V planting|ֲ,manner=again| +زپҵ V engage|,manner=again| +س V sing|,#perform|,entertainment| +س V sing|,manner=again| +ش V damage|,manner=strong|ǿ +ش V AmountTo|ܼ,scope=weight| +ش ADJ aValue|ֵ,importance|,important| +ص N affairs|,difficult| +ص V repeat|ظ,content=unfortunate| +ص N place|ط,important| +ص ADJ aValue|ֵ,importance|,important| +ص N part|,%entity|ʵ,important| +ص V BeAcross|ཻ +ص ADJ aValue|ֵ,circumstances|,BeAcross|ཻ +ض V MakeSound| +ض N sound|,#language| +ط V punish| +ط V GoBack| +ط N human|,crime|,undesired|ݬ +ط V display|չʾ,manner=again| +ط V meet| +ظ ADJ aValue|ֵ,property|,repeat|ظ +ظ V repeat|ظ +ظ N attribute|,property|,repeat|ظ,&event|¼ +ظ N affairs|,difficult| +عҵ N affairs|,industrial| +ع V estimate| +غ V BeAcross|ཻ +غը N weapon|,aircraft|,military| +ػ V GetMarried|,crime| +ػ N human|,crime|,#GetMarried| +ػ N fact|,crime|,#GetMarried| +ػ N affairs| +ػǹ N weapon|,*firing| +ؽ N fact|,sport| +ؽ V build|,industrial| +ؽ V establish| +ؽ V reward| +ؽ N expenditure|,many| +ؽ N metal| + N attribute|,strength|,&inanimate| +ٶ N attribute|,speed|ٶ,&inanimate| + N attribute|,weight|,&physical| + N attribute|,rank|ȼ,#weight|,&compete|,sport| + N human|,important|,desired| + V BeSame|ͬ,scope=name| +Ů V PayAttention|ע,target=male|,despise|,target=female|Ů + V punish| + N weapon|,*firing| + N place|ط,city|,ProperName|ר,(China|й) + N affairs|,important| + N disease|,#wounded| + N human|,*PayAttention|ע,#commercial| + V explain|˵,manner=again| + V interrogate|,police| + V PayAttention|ע +ˮ N chemical|ѧ + N human|,family|,male| +Ů N human|,family|,female|Ů + V propose|,manner=again| + V disable|м,scope=listen| + N fact|,$entrust|ί +Χ N shape|,#surround|Χ,military| + V LookBack| + N weapon| + N inanimate|,heavy| + V appear| + ADV aValue|ֵ,frequency|Ƶ,again| + N part|,%entity|ʵ,important| + ADJ aValue|ֵ,size|ߴ,big| + V repair| +ѹ N attribute|,strength|,&entity|ʵ + V happen|,manner=again| + N waters|ˮ,surfacial| + N time|ʱ,festival|,@congratulate|ף + N time|ʱ,festival|,@congratulate|ף +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N attribute|,importance|,&entity|ʵ +Ҫ N attribute|,importance|,&physical| + V translate|,manner=again| + N sound|,#language| + N sound|,#music| +ӡ V print|ӡˢ,manner=again| + V employ| + N material|,liquid|Һ,$burn| + V load|װ + V PayAttention|ע + V resume|ָ + N place|ط,military|,important| + V repeat|ظ,content=assemble|ۼ + V repeat|ظ,content=assemble|ۼ +֢ N disease|,strong|ǿ + ADJ qValue|ֵ,amount|,many| + V recreation|,entertainment| + N fact|,crime|,strong|ǿ,undesired|ݬ + V repeat|ظ + N character|,surname|,human|,ProperName|ר +ٲ V judge|ö +ٲ V human|,*judge|ö +ٲ V document|,*judge|ö +ٲ N human|,*judge|ö +ٴ N time|ʱ,spring| +ٶ N time|ʱ,month|,winter| +ٶ N time|ʱ,winter| +ٽ N physical|,*connect| + N time|ʱ,autumn| + N time|ʱ,month|,autumn| + N character|,surname|,human|,ProperName|ר + N time|ʱ,summer| + N human|,mass| + ADJ qValue|ֵ,amount|,many| +ڲԺ N institution|,*manage|,law|ɷ,politics| +ڶ ADJ qValue|ֵ,amount|,many| +ڹ V differ|ͬ +ڿһ V BeSame|ͬ +Ŀ ADJ aValue|ֵ,content|,opened| +Ŀ ADJ aValue|ֵ,content|,opened| + PRON {ThirdPerson|,mass|} + N animate|,mass| +ʸ֮ N entity|ʵ,undesired|ݬ,$ExpressAgainst|Ǵ +˵ N thought|ͷ,different|,many| +˵ N thought|ͷ,different|,many| +֪ ADJ aValue|ֵ,property|,$know|֪ +֪ ADJ aValue|ֵ,reputation|,glorious|,desired| +֪ V {comment|} +֪ ADV {comment|} + N aspiration|Ը,expect| + V enjoy|,content=endorse|ӵ +Ա N human|,#occupation|ְλ,official|,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +Ժ N institution|,*manage|,law|ɷ,politics| +־ɳ V ally| + N ship| +۳ N ship|,LandVehicle| +۳Ͷ V tired|ƣ,cause=tour| +ɽ N place|ط,city|,ProperName|ר,(China|й) + N human|,*drive|Ԧ,#ship| + N ship|,mass| + ADJ aValue|ֵ,range|,all|ȫ + N character|,surname|,human|,ProperName|ר + N shape|,round|Բ + N time|ʱ,#royal|,ProperName|ר,past|,(China|й) + N time|ʱ,week| + CLAS unit|λ,&frequency|Ƶ +ܱ N publications|鿯,#week| +ܱ N attribute|,length|,&round|Բ +ܱ N location|λ,surrounding|Χ,space|ռ +ܱ ADJ aValue|ֵ,range|,all|ȫ +ܳ N attribute|,length|,&round|Բ +ܳ N time|ʱ,#royal|,ProperName|ר,past|,(China|й) +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܵ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ܶʼ V repeat|ظ +ܶ N time|ʱ,day|,#week| +ܼ V help| +ܿ N publications|鿯,#week| + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ĩ N time|ʱ,day|,#week|,@rest|Ϣ +ĩ N publications|鿯,#week| + N time|ʱ,year| + N time|ʱ,regular| + ADJ aValue|ֵ,frequency|Ƶ,regular| + N attribute|,frequency|Ƶ,regular| +ȫ ADJ aValue|ֵ,range|,all|ȫ + N time|ʱ,day|,#week| + N time|ʱ,day|,#week| + N part|,%AnimalHuman|,body| + N time|ʱ,day|,#week| + N attribute|,age|,&animate| +Χ N location|λ,surrounding|Χ +Χ ADJ location|λ,surrounding|Χ +Χ N location|λ,surrounding|Χ + N time|ʱ,day|,#week| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| + V GoRound|Χ + V HaveContest| + V associate| +һ N time|ʱ,day|,#week| + N knowledge|֪ʶ + V tour| + N phenomena|,undesired|ݬ,#unfortunate| + ADJ aValue|ֵ,posture|,upright| + ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ת V SelfMove|,commercial| +ת V lack|ȱ + N place|ط,provincial|ʡ +ݳ N human|,#occupation|ְλ,official| +ݼ ADJ aValue|ֵ,location|λ,#provincial|ʡ + ADJ aValue|ֵ,attachment|,#provincial|ʡ + N land|½ +޼ ADJ aValue|ֵ,location|λ,#land|½ +޼ʵ N weapon|,$firing| + N food|ʳƷ +ɮ V lack|ȱ + N image|ͼ + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N part|,%machine| + N image|ͼ + N image|ͼ + N part|,%machine| +Ĺ N place|ط,country|,*ally|,military|,undesired|ݬ,#(WWII|ս) +Ĺ N place|ط,country|,undesired|ݬ,#(WWII|ս) + N part|,%AnimalHuman|,arm| +ؽ N part|,%AnimalHuman|,arm| + N food|ʳƷ + N part|,%AnimalHuman|,arm| + N tool|þ,*wipe| + V ExpressAgainst|Ǵ + N text|,*ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V FormChange|α,StateFin=wrinkled| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| +ü V CausePartMove|,PatientPartof=eye| +üͷ V CausePartMove|,PatientPartof=eye| +θ N part|,%AnimalHuman|,viscera| + N trace| +Ͱ ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N time|ʱ + N time|ʱ +ҹ ADJ aValue|ֵ,duration|,TimeLong| +ҹ N time|ʱ,day|,afternoon|,night| + ADJ aValue|ֵ,behavior|ֹ,sudden| + V change|,manner=sudden| +轵 V BecomeLess|,manner=sudden| + V BecomeMore|,manner=sudden| + V happen|,manner=sudden| +Ȼ ADJ aValue|ֵ,behavior|ֹ,sudden| + V BecomeMore|,manner=sudden| + N material|,?tool|þ,#decorate|װ,precious| + N shape| +鱦 N tool|þ,*decorate|װ,precious| +鱦 N human|,#occupation|ְλ,#treasure|䱦,commercial| + N land|½,ProperName|ר,(China|й) + N lights| + N material| +麣 N place|ط,city|,ProperName|ר,(China|й) +齭 N waters|ˮ,linear|,ProperName|ר,(China|й) +齭 N place|ط,ProperName|ר,(China|й) + N tree| + N land|½,ProperName|ר,(China|й) + V calculate| +Բ ADJ aValue|ֵ,SoundQuality|,good|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N shape| + N part|,%plant|ֲ,body| + N part|,%tree|,body| + N plant|ֲ + V relate|й +ʽ N InstitutePlace|,commercial| + N place|ط,city|,ProperName|ר,(China|й) + N InsectWorm| +˿ N trace| + N tool|þ,#InsectWorm| + N InsectWorm| + ADJ aValue|ֵ,color|ɫ,red| + N character|,surname|,human|,ProperName|ר + N PenInk|ī,*write|д + ADJ aValue|ֵ,color|ɫ,red| +ī N PenInk|ī,liquid|Һ,*write|д + N material|,liquid|Һ,*apply|ͿĨ +ȸ N bird| +ɰ N material| + N livestock| + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N disease| + N food|ʳƷ + N food|ʳƷ +Ƥ N part|,%livestock|,skin|Ƥ +Ȧ N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ + N facilities|ʩ,*foster|,#livestock| + N food|ʳƷ +ͷ N food|ʳƷ + N material|,?food|ʳƷ +צ N food|ʳƷ + N human|,agricultural|ũ,*foster|,#livestock| + N livestock| + N beast| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,all|ȫ +ֺϳɲ N army| + ADJ qValue|ֵ,amount|,many| + N character|,surname|,human|,ProperName|ר + N human|,official|,politics|,ProperName|ר,(China|й) + N human|,wise|,desired| + N human|,royal|,past| + PRON {SecondPerson|,mass|} + CONJ {supplement|ݽ} + ADJ aValue|ֵ,kind|,special| +λ PRON {SecondPerson|,mass|} + V kill|ɱ,police| + V chase|׷ + V expel| + ADJ aValue|ֵ,sequence|,regular| + V expel| + ADV aValue|ֵ,sequence| + ADJ aValue|ֵ,sequence|,regular| +¹ V fight|,politics| + ADV aValue|ֵ,duration|,TimeLong| + ADJ aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,duration|,TimeLong| + ADV aValue|ֵ,sequence| +һ ADV aValue|ֵ,sequence| + N tree| + N artifact|˹ + N part|,%tree|,body| + N tool|þ,*decorate|װ +ڳ N InsectWorm| +ˮһ V fail|ʧ + N tree|,mass| + N tool|þ,*recreation| + N tool|þ,generic|ͳ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ͳ N part|,%tree|,body| +Ҷ N part|,%plant|ֲ,hair|ë +Ҷ N beast| +Ҷ N drinks|Ʒ,$addict|Ⱥ +ֽ N paper|ֽ,@write|д + N tree| + N tool|þ,*illuminate| + CLAS unit|λ,&electricity| + N lights| +̨ N tool|þ,@put|,#tool|þ,#illuminate| + V illuminate| + V cook| +ȼݽ ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V cook| + N human|,#occupation|ְλ,industrial| + V tilt|б + V look| +Ŀ V PayAttention|ע +Ŀ V look| + V expect| + V persuade|Ȱ˵ + V persuade|Ȱ˵ + V entrust|ί + ADJ aValue|ֵ,importance|,important| + V decide| + N humanized|,religion|ڽ + N human|,#fact| + N human|,*entertain|д + N human|,*own| + V manage| + V mean|ָ + V handle| + V compile|༭ + V compile|༭ + N human|,#occupation|ְλ,*compile|༭,#readings|,literature| + N human|,$entertain|д +ϯ N location|λ,@sit|,#entertain|д + N facilities|ʩ,sport| + N software| + V endorse|ӵ + V handle| + V manage| + N human|,*handle| + V cook| + N human|,#occupation|ְλ,*cook| + ADJ aValue|ֵ,importance| + N attribute|,importance|,&event|¼ + V cure|ҽ + ADJ aValue|ֵ,importance|,important| + N music|,important| + N text|,important| +˵ N text|,important| + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + N attribute|,behavior|ֹ,active|Ը + N part|,%AnimalHuman|,nerve| +Ȩ N attribute|,behavior|ֹ,active|Ը + N attribute|,behavior|ֹ,active|Ը + N community|,$choose|ѡ,*exercise|,*compete| + N community|,*invite|,*compete|,sport| + N human| + N human|,*employ|,commercial| + N human|,family|,male| + N human|,male|,friend|,^GetMarried| + N human|,undesired|ݬ,important|,crime| + N part|,space|ռ,%land|½,head|ͷ + N human|,female|Ů,family| + N organization|֯,important| + N part|,plant|ֲ,body| +ɵ N facilities|ʩ,route|·,important| + N part|,%plant|ֲ,base| + V attack|,military| + N human|,$choose|ѡ,*compete|,sport| + N human|,*buy|,commercial| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + N attribute|,correctness|,wrong|,undesired|ݬ,&mental| + N human|,official|,important| + V manage| + V handle|,patient=GetMarried| + N machine|,important| + N weapon|,aircraft|,military| + N part|,%computer| + V handle|,patient=condole|° + N thought|ͷ + N human|,military| + V speak|˵ + V teach|,education| + N human|,*perform|,important|,entertainment| + N human|,important|,desired| + N human|,religion|ڽ + N human|,#occupation|ְλ,*teach| + V exam|,education| + N human|,#exam| + N human|,$entertain|д + N human|,*entertain|д,$entertain|д,mass| +͹ ADJ aValue|ֵ,correctness| + N affairs|,important| + N human|,important|,#military|,#exercise| + N human|,important|,#military|,#exercise| + N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ + N part|,%event|¼,important|,aspect| + N waters|ˮ,linear| +¥ N building| +ı N human|,undesired|ݬ,important|,crime| + N human|,official|,important| +Ȩ N rights|Ȩ,#country| + N human|,*entertain|д + N human|,*own| +˹ N human|,#readings| + N human|,#readings| + N human|,own| + N human|,#occupation|ְλ,official| +ʳ N edible|ʳ +ʹ V incite|ָʹ +˧ N human|,military| + N attribute|,content|,&information|Ϣ + N expression|,*LookFor|Ѱ,#information|Ϣ + N music|,#shows| + N part|,%thing|,important|,body| + N part|,%readings|,#police| +ϯ N human|,#occupation|ְλ,official| +ϯ N human|,#occupation|ְλ,official|,#country| +ϯ N human|,*handle| +ϯ̨ N facilities|ʩ,space|ռ,@manage| +ϯ N part|,%community|,head|ͷ +ϯְλ N attribute|,occupation|ְλ,&human| + N part|,%event|¼,nerve| +Ĺ N human|,desired|,important|,able| +Ĺ N thought|ͷ + V repair|,industrial| + V study|ѧ,education| + N attribute|,SoundQuality|,&music| + N thinking|˼,important| + V RegardAs|,entertainment| + V perform|,entertainment| +Ҫ ADJ aValue|ֵ,importance|,important| +Ҫ N human|,important|,desired| +Ҫְҵ N affairs|,#occupation|ְλ,important| + N plans|滮 + N thought|ͷ + N thinking|˼ + N cause|ԭ,important| + N sound|,music|,important| + N part|,%language| + V control| +ս V endorse|ӵ,content=fight| + V regard|Ϊ + N thought|ͷ +Ž N human| +ֵ N symbol|,#quantity| +ּ N part|,%entity|ʵ,heart| + N attribute|,performance|,&medicine|ҩ +ҽʦ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ + N part|,%machine|,important| +ץ V manage| + ADJ aValue|ֵ,kind|,special| + V compile|༭ + N readings| + ADJ aValue|ֵ,reputation|,glorious|,desired| +¼ V record|¼ + ADJ aValue|ֵ,reputation|,glorious|,desired| + V compile|༭,ContentProduct=publications|鿯 +˵ V compile|༭,ContentProduct=publications|鿯 + V compile|༭ + N publications|鿯 + V compile|༭,ContentProduct=text| + V compile|༭ + N human|,*compile|༭ + V compile|༭ + N publications|鿯 +Ȩ N rights|Ȩ,#compile|༭ + N image|ͼ + N part|,%building|,bone| + N shape| +ʯ N human|,desired|,important|,able| +ͷ N part|,%FlowerGrass| +ͷ N part|,%building|,bone| +ͷ N part|,%building|,head|ͷ + N part|,%building|,bone| + V help| + V cure|ҽ,#GiveBirth|,medical|ҽ +ʿ N human|,#occupation|ְλ,*cure|ҽ,#GiveBirth|,medical|ҽ + V incite|ָʹ + N part|,%language| + V attack|,military| + N chemical|ѧ + N human|,#occupation|ְλ,*teach|,education| + ADJ aValue|ֵ,importance|,secondary| + N human|,#occupation|ְλ,employee|Ա +ʦ N human|,#occupation|ְλ,industrial| + N attribute|,strength|,#help|,&human| +ȼ ADJ aValue|ֵ,ability|,able|,help|,#burn| +Ϊ V joyful|ϲ,cause=help| + N human|,*help| + N tool|þ,*listen|,medical|ҽ + V MoveItUp| +ƻ N part|,%aircraft|,*MoveItUp| + N part|,%aircraft|,*MoveItUp| + V help|,scope=mental| + V MakeHappy|ʹϲ +ѧ V help|,scope=education| +ѧ N fund|ʽ,*help|,scope=education| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +ս V help|,scope=attack|,military| +ս V help|,scope=mental| + V help|,scope=mental| +ΪŰ V help|,patient=evil| + N InsectWorm| + V bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ,#disease| + N InsectWorm| + N InsectWorm|,undesired|ݬ +ij N InsectWorm| + N part|,%AnimalHuman|,*bite|ҧ,#disease| + V SetAside| + V SetAside| + V SetAside| + V SetAside| + N quantity|,amount|,&store| + V transport| + V produce|,industrial| + N money| + V create| + N material|,metal|,industrial| + N fact|,produce|,#metal|,industrial| + N human|,#occupation|ְλ,industrial| + N material|,metal|,industrial| + N metal|,?material| + V produce|,industrial| + V build| + V build|,PatientProduct=facilities|ʩ,#waters|ˮ +· V build|,PatientProduct=facilities|ʩ,route|· +ס V finish| +ס V reside|ס +ס N human|,religion|ڽ +ס N location|λ,@reside|ס +ס N location|λ,@reside|ס +ס N fact|,reside|ס +סĸ V improve|,patient=reside|ס +ס N community|,family|,*reside|ס +ס N community|,family|,*reside|ס +סҹ N MakeLiving|ı +ס V KeepSilence|˵ +ס V cease|ͣ +ס V reside|ס +ס޷ N expenditure|,*reside|ס +ס N place|ط,@reside|ס +ס V reside|ס +סԺ V reside|ס,location=InstitutePlace|,purpose=$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V part|,%InstitutePlace|,*cure|ҽ,medical|ҽ +סԺ N human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺ V human|,*SufferFrom|,$cure|ҽ,#medical|ҽ +סԺڿҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽ V human|,*cure|ҽ,medical|ҽ +סԺҽ N human|,medical|ҽ,*cure|ҽ +סԺҽʦ N human|,medical|ҽ,*cure|ҽ +סլ N house| +סլ V build|,PatientProduct=house| +סլ N place|ط,@reside|ס,#house| +סլС N place|ط,@reside|ס,#house| +סַ N place|ط,#reside|ס +ס V KeepSilence|˵ +ע V PayAttention|ע +ע V explain|˵ +ע N part|,&text| +ע V record|¼ +ע V spray| +ע N wealth|Ǯ,*gamble|IJ +ע V record|¼ +ע ADJ aValue|ֵ,possibility|,possible| +ע N part|,&text| +ע V explain|˵ +ע V explain|˵ +עĿ V look| +ע V spray| +ע V cure|ҽ +ע N tool|þ,*cure|ҽ,medical|ҽ +ע V explain|˵ +ע V look|,manner=attentive|ϸ +ע N human|,*look| +עˮ V spray|,industrial| +ע V produce|,industrial| +ע V remove| +ע V PayAttention|ע +ע V PayAttention|ע +ף N character|,surname|,human|,ProperName|ר +ף V congratulate|ף +ף V expect| +ף N expression|,@congratulate|ף +ף N expression|,@congratulate|ף +ף V congratulate|ף +ף V congratulate|ף +ף V congratulate|ף,cause=win|ʤ +ף V congratulate|ף +ף V congratulate|ף,cause=festival| +ף V congratulate|ף +ףԸ V expect| +פ V reside|ס,military| +פ V stay|ͣ +פ N place|ط,#organization|֯,@exist| +פ N place|ط,@reside|ס,military| +פ V defend|,military| +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ ADJ aValue|ֵ,property|,reside|ס,#(China|й) +פ N army| +פ V put|,patient=army| +פ V stay|ͣ +פ V defend|,military| +פ V reside|ס,military| +פ ADJ aValue|ֵ,property|,reside|ס,#foreign| +פ N human|,#occupation|ְλ,*gather|ɼ,*compile|༭,#news| +פ V keep|,patient=beautiful| +פ V reside|ס,military| +פ V CeaseSelfMove|ֹ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V catch|׽ס,police| +ץ V manage| +ץ V scratch|ץ +ץ V MakeTrouble| +ץ V catch|׽ס,police| +ץ V scratch|ץ +ץ V endeavour| +ץ V catch|׽ס,police| +ץ V please|ȡ +ץ V PayAttention|ע +ץ V catch|׽ס +ץ V lift|,sport| +ץ͹ V include|,manner=force|ǿ +ץ V PlayWith|Ū +ץ V fight| +ץ N method| +ץ V scratch|ץ +ץ V TakePicture| +ץ V quarrel| +ץϹ V embarrassed|Ϊ +ץҩ V buy|,possession=medicine|ҩ +ץס V attract|,Vachieve| +ץס V catch|׽ס,Vachieve| +ץס V catch|׽ס,police|,Vachieve| +ץ׳ V include|,manner=force|ǿ +ץܶ V bear|е,content=duty|,important| +ץζ V gamble|IJ +צ N part|,%animal|,foot| +צ N part|,%animal|,foot| +צ N part|,%tool|þ,foot| +צ N food|ʳƷ +צ ADJ aValue|ֵ,attachment|,ProperName|ר,(Java|צ) +צ N place|ط,ProperName|ר,(Indonesia|ӡ) +צ N language|,#country|,ProperName|ר +צ N human|,crime|,undesired|ݬ +צ N part|,%animal|,foot| +ק V pull| +ק V throw| +ר ADJ aValue|ֵ,kind|,special| +ר N fact|,$investigate|,special| +ר N fact|,$investigate|,special|,#police| +ר N publications|鿯,special| +ר N fact|,dispatch|Dz,special| +ר N fact|,perform|,special| +ר N attribute|,ability|,able|,&human| +ר N LandVehicle|,special| +ר N fact|,tour|,special| +ר N text|,special|,#news| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N fact|,visit|,special| +ר V study|ѧ +ר V handle|,manner=special| +ר N furniture|Ҿ,cubic|,*display|չʾ,@sell|,commercial| +ר ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N aircraft|,special| +ר N publications|鿯,special| +ר N publications|鿯,special| +ר N human|,able|,desired| +ר N human|,able|,desired|,mass| +ר N publications|鿯,special| +ר N InstitutePlace|,@teach|,@study|ѧ,education| +ר N knowledge|֪ʶ,special| +רѧУ N InstitutePlace|,@teach|,@study|ѧ,education| +רҽ N human|,#occupation|ְλ,*cure|ҽ,medical|ҽ +ר N fund|ʽ,special| +ר N part|,publications|鿯,special| +ר N human|,*compile|༭,literature| +ר N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +ר N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +ר N institution| +רƷ N artifact|˹,$protect|,#knowledge|֪ʶ,commercial| +רȨ N rights|Ȩ,*protect|,#produce|,#knowledge|֪ʶ,commercial| +רȨĻ N human|,*obtain|õ,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +רȨ N human|,*grant|,#rights|Ȩ,#produce|,#knowledge|֪ʶ,commercial| +ר N LandVehicle|,special| +ר V sell|,commercial| +ר N InstitutePlace|,*sell|,@buy|,commercial| +ר ADJ aValue|ֵ,kind|,special| +רСԱ N human| +ר N place|ط +רȨ V control|,patient=power|,manner=self| +ר N human|,$dispatch|Dz,special| +ר V undertake| +ר V RashlyAct| +ר V establish|,manner=special| +רʹ N human|,$dispatch|Dz,special| +ר V engage|,manner=special| +ר N institution|,politics| +ר ADJ aValue|ֵ,attachment|,special| +ר ADJ aValue|ֵ,kind|,special| +ר N facilities|ʩ,linear|,*transmit|,special| +ר N facilities|ʩ,linear|,special| +ר N facilities|ʩ,route|·,special| +ר ADJ aValue|ֵ,kind|,special| +ר V PayAttention|ע +ר־ V PayAttention|ע +ר V study|ѧ +רҵ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רҵ N affairs|,education| +רҵ N affairs|,industrial| +רҵ N community|,family|,*engage|,#occupation|ְλ +רҵ ADJ aValue|ֵ,kind|,special| +רҵ N affairs|,education| +רҵԱ N human|,*engage|,#occupation|ְλ +רһ ADJ qValue|ֵ,amount|,single| +רӪ ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,kind|,special| +ר ADJ aValue|ֵ,attachment| +רԱ N human|,#occupation|ְλ,official|,diplomatic|⽻ +רԱ N institution|,politics| +ר N system|ƶ,fierce| +רְ ADJ aValue|ֵ,attachment|,#occupation|ְλ,formal|ʽ +רְԱ N human|,*engage|,#occupation|ְλ +רֿ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ר ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +ר N institution|,#country|,politics|,fierce| +ר N system|ƶ,#country|,politics|,fierce| +ר N publications|鿯,special| +רע V PayAttention|ע +ש N material|,?build| +ש N material|,?drinks|Ʒ +ש N InstitutePlace|,*produce|,material|,factory|,industrial| +ש N material|,?build| +ש N material|,#build| +שǽ N part|,%building|,skin|Ƥ +שʯ N material|,?build| +שͷ N material|,?build| +שͷ N part|,%material|,#build| +ש N material|,?build| +שҤ N InstitutePlace|,*produce|,material|,factory|,industrial| +ת V alter|ı +ת V rotate|ת +ת V submit| +ת V entrust|ί +ת N human|,commercial| +ת V alter|ı +ת V change| +ת V disseminate| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=TakeVehicle| +ת V tell| +ת V alter|ı,patient=route|· +ת V alter|ı,entertainment| +ת V undergo|,content=alter|ı,#engage| +ת V rotate|ת +ת V change| +ת V issue|ַ +ת V tell| +ת V give| +ת V alter|ı,patient=route|· +ת V alter|ı +ת V alter|ı +ת V alter|ı +ת V GoBack| +ת N time|ʱ,pros| +ת V MarryTo| +ת V give| +ת V submit| +ת N part|,%facilities|ʩ,route|·,angular| +ת V connect| +ת V lend| +ת V GoThrough| +תó N affairs|,#buy|,#sell|,commercial| +ת V CausePartMove|,PatientPartof=head|ͷ +ת ADJ aValue|ֵ,duration|,TimeShort| +ת¯ N machine|,space|ռ,*produce|,#metal| +ת¼ N record|¼ +תǹ N weapon|,*firing| +ת V sell|,commercial| +ת N SportTool|˶ +ת N fact|,perform|,entertainment| +ת N tool|þ +ת V give| +ת V alter|ı +ת V alter|ı,StateFin=BeNormal|̬ +ת V CausePartMove|,PatientPartof=body| +ת V change|,religion|ڽ +ת V change|,religion|ڽ +ת V sell| +ת V submit| +ת V sell| +ת V explain|˵ +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת˲ ADJ aValue|ֵ,duration|,TimeShort| +ת V GiveAsGift| +ת V submit| +ת N attribute|,speed|ٶ,&rotate|ת +ת̨ N facilities|ʩ,space|ռ,@perform| +ת V CausePartMove|,PatientPartof=body|,sport| +ת V TurnRound| +תĨ ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ +תĨ ADJ aValue|ֵ,form|״,curved| +תΣΪ V BeRecovered|ԭ +תΪ V alter|ı +ת V change|,politics| +ת V ignorant|֪ +ת V rotate|ת +ת N tool|þ +ת V sell| +ת V alter|ı,patient=produce| +ת V alter|ı,patient=affairs| +תѧ V alter|ı,education| +ת ADJ aValue|ֵ,duration|,TimeShort| +תۼ ADJ aValue|ֵ,duration|,TimeShort| +תҵ V alter|ı,StateIni=military| +ת V TakeAway|ᶯ +ת V alter|ı +ת V change| +ת V change|,medical|ҽ +ת ADJ aValue|ֵ,property|,change|,medical|ҽ +ת N furniture|Ҿ,space|ռ,@sit| +ת N information|Ϣ,#language| +ת V rotate|ת +ת V walk| +תԺ V SelfMove|,LocationIni=InstitutePlace|,medical|ҽ +ת V BeRecovered|ԭ,StateFin=lucky| +ת V transport| +תվ N InstitutePlace|,*transport| +ת V print|ӡˢ +ת V GiveAsGift| +תս V fight|,military| +ת V submit| +ת֧Ʊ N coupon|Ʊ֤ +ת N fact|,change| +ת۵ N time|ʱ,@change|,important| +ת V become|Ϊ,isa=passed|ϸ +ת N part|,%machine| +תת V walk| +ת N part|,%machine| +ת V lend|,commercial| +ת N time|ʱ,@change|,important| +׫ V compile|༭ +׫ V compile|༭,ContentProduct=text| +׫ N human|,*compile|༭,literature| +׫ V compile|༭,ContentProduct=text| +׫д V compile|༭ +׫ V compile|༭ +׬ V earn|׬ +׬Ǯ V earn|׬,possession=wealth|Ǯ +׬ȡ V earn|׬ +׬ͷ N attribute|,effect|Ч,#earn|׬,&event|¼,commercial| +׭ N stationery|ľ +׭ V carve| +׮ CLAS NounUnit|,&fact|,&affairs| +׮ N part|,%building|,bone| +׮׮ CLAS NounUnit|,&fact|,&affairs|,mass| +׮ N part|,%building|,bone| +ׯ N InstitutePlace|,commercial| +ׯ N character|,surname|,human|,ProperName|ר +ׯ N human|,*gamble|IJ +ׯ N place|ط +ׯ N place|ط,village| +ׯ N community|,family|,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,*gamble|IJ +ׯ N crop|ׯ,generic|ͳ +ׯں N human|,#occupation|ְλ,agricultural|ũ +ׯ N human|,#occupation|ְλ,agricultural|ũ +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ ADJ aValue|ֵ,occasion|,stately|ׯ,desired| +ׯ԰ N place|ط +ׯ ADJ aValue|ֵ,behavior|ֹ,steady|,desired| +ׯ N place|ط,village| +װ V RegardAs|,entertainment| +װ N attribute|,attire|װ,&human| +װ N clothing| +װ V decorate|װ +װ V include| +װ V install|װ +װ V load|װ +װ V pretend|װ +װ V MakeUp|ױ +װ V pretend|װ +װ N implement|,generic|ͳ +װ V provide| +װ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ +װ ADJ aValue|ֵ,GoodBad|û,good|,desired| +װ V load|װ,LocationFin=LandVehicle| +װ V load|װ,LocationFin=ship| +װ V load|װ,LocationFin=tool|þ +װ V decorate|װ +װ V fasten|˩,#publications|鿯 +װ N part|,%InstitutePlace|,factory|,@fasten|˩,#publications|鿯 +װɵ V pretend|װ,content=foolish| +װ V load|װ,patient=physical| +װ N attribute|,ability|,#electricity|,&facilities|ʩ +װ ADJ aValue|ֵ,form|״ +װױ N army| +װ׳ N weapon|,LandVehicle| +װͳ N weapon|,LandVehicle| +װ V pretend|װ +װ V fill| +װ V fill| +װ V pretend|װ,content=ignorant|֪ +װ V fill| +װ V pretend|װ +װģ V pretend|װ +װ V include| +װ N machine| +װǻ V pretend|װ +װǻ ADJ aValue|ֵ,behavior|ֹ,fake|α,undesired|ݬ +װ V install|װ +װ ADJ aValue|ֵ,ability|,able|,decorate|װ +װ V decorate|װ +װ N tool|þ,*decorate|װ +װβ N material|,*decorate|װ +װƷ N tool|þ,*decorate|װ +װ N attribute|,attire|װ,&human| +װ˯ V pretend|װ,content=sleep|˯ +װ V pretend|װ,content=die| +װ V pretend|װ,content=ignorant|֪ +װ V feed|ι,military| +װ V pretend|װ +װ V load|װ,LocationFin=tool|þ +װж V include|,dismount|ж +װж N load|װ,TakeAway|ᶯ +װж N human|,#occupation|ְλ,*load|װ,*TakeAway|ᶯ +װ V decorate|װ +װ V pretend|װ +װ V exist| +װ V transport| +װ V load|װ +װ֡ N attribute|,appearance|,&publications|鿯 +װ N implement|,generic|ͳ +װ V install|װ +װ V pretend|װ +װ N attribute|,appearance|,&artifact|˹ +װ V decorate|װ +װ N attribute|,appearance|,&artifact|˹ +װ V put| +װ V decorate|װ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ױ N tool|þ,*decorate|װ,#female|Ů +ױ V decorate|װ +ױ V MakeUp|ױ +ױ V MakeUp|ױ +ױ N tool|þ,#MarryTo| +ײ V GoForward|ǰ +ײ V bump|ײ +ײ V meet| +ײ V bump|ײ,patient=LandVehicle|,unfortunate|,undesired|ݬ +ײ V differ|ͬ,scope=thinking|˼ +ײ V bump|ײ +ײ V meet| +ײƭ V deceive|ƭ +ײ N tool|þ,*shut|ر +׳ V MakeBetter|Ż +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׳ V BeWell|׳ +׳ V MakeBetter|Ż +׳ V soothe|ο +׳ N human|,adult|,#military|,past| +׳ N music|,great|ΰ +׳ N human|,employee|Ա +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N fact|,great|ΰ +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +׳ ADJ aValue|ֵ,courage|,brave|,desired| +׳ ADJ aValue|ֵ,posture|,great|ΰ,desired| +׳ N time|ʱ,#adult|,#age| +׳ʵ ADJ aValue|ֵ,physique|,strong|ǿ,desired| +׳ʿ N human|,brave|,desired| +׳ N aspiration|Ը,expect|,great|ΰ +׳ V farewell| +׳־ N aspiration|Ը,expect|,great|ΰ +׳־δ V fail|ʧ,scope=succeed|ɹ +׳ N community|,ProperName|ר,(China|й) +״ N attribute|,circumstances|,&entity|ʵ +״ N attribute|,form|״,&physical| +״ N document|,$record|¼ +״ N document|,*accuse|ظ +״ N document|,*prove|֤ +״ V explain|˵ +״ V accuse|ظ +״ N attribute|,circumstances|,&entity|ʵ +״ ADJ aValue|ֵ,GoodBad|û,good|,desired| +״̬ N attribute|,circumstances|,&entity|ʵ +״ N part|,%language| +״Ԫ N human|,*succeed|ɹ,#exam|,past| +״Ԫ N human|,able|,desired| +״ N document|,*accuse|ظ +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ N part|,%AnimalHuman|,bone| +׵ͻ N disease| +׵Ѫ V sorrowful| +׶ N shape|,acute| +׶ N tool|þ,*stab| +׶ N image|ͼ +׶ ADJ aValue|ֵ,form|״ +׶ N tool|þ,*stab| +׷ V LookBack| +׷ V chase|׷ +׷ V investigate| +׷ V seek|ıȡ +׷ V chase|׷,military| +׷ V force|ǿ +׷ V interrogate| +׷ V catch|׽ס,police| +׷ V investigate| +׷ V condole|° +׷ N fact|,condole|° +׷ N fact|,feed|ι,#crop|ׯ,agricultural|ũ +׷ V chase|׷ +׷ V investigate| +׷ V collect| +׷ V collect| +׷ V repent|û +׷Ī V repent|û +׷ V attack|,military| +׷ N army| +׷ V record|¼ +׷ V reward| +׷ V add| +׷Ͷ V add|,patient=fund|ʽ +׷֧ V add|,patient=expenditure| +׷ V destroy|,military| +׷ V collect| +׷ V destroy|,military| +׷ V investigate| +׷ V ShowLove|ʾ +׷ V request|Ҫ +׷ V seek|ıȡ +׷ V admit| +׷ V grant| +׷˼ V LookBack| +׷ V situated| +׷ V accuse|ظ +׷ V follow| +׷ V levy| +׷ V ask| +׷ V LookBack| +׷ N human|,*FondOf|ϲ,#music| +׷ V explain|˵ +׷Ѱ V LookFor|Ѱ +׷ V LookBack| +׷ V grant| +׷ծ V collect|,possession=owe|Ƿ +׷ V chase|׷ +׷ V seek|ıȡ +׷ V follow| +׷ N human|,*follow| +׷ V levy| +׸ V MarryTo| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant| +׸ V speak|˵,manner=redundant| +׸ N human|,family|,male| +׹ V fall| +׹ V sink|³ +׹ N tool|þ,heavy| +׹ V ComeToWorld| +׹ V OutOfOrder| +׹ V fall| +׹ N tool|þ,*decorate|װ +׹ N tool|þ,heavy| +׺ V fasten|˩ +׺ V compile|༭ +׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׻ ADJ persuade|Ȱ˵ +׻׻ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +׼ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ ADJ aValue|ֵ,standard|׼,average| +׼ V agree|ͬ +׼ N attribute|,standard|׼,&entity|ʵ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V plan|ƻ +׼ V prepare|׼ +׼ V exercise|,*prepare|׼ +׼ ADV {comment|} +׼ ADV {comment|} +׼ V fixed|Ѷ +׼ N information|Ϣ,accurate|׼ +׼ N human|,#occupation|ְλ,official|,military| +׼ N affairs|,military| +׼׶ V fixed|Ѷ +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ ADJ aValue|ֵ,correctness|,accurate|׼,desired| +׼ȷ N attribute|,correctness|,accurate|׼,&information|Ϣ +׼ N attribute|,standard|׼,&entity|ʵ +׼ʱ ADJ aValue|ֵ,behavior|ֹ,accurate|׼,#time|ʱ,desired| +׼ξ N human|,#occupation|ְλ,official|,military| +׼ N information|Ϣ,accurate|׼ +׼ N part|,%weapon|,#firing| +׼ V agree|ͬ +׼ V agree|ͬ +׼豣 V agree|ͬ,content=release|ͷ +׼ N attribute|,standard|׼,&entity|ʵ +׽ V catch|׽ס +׽ V hold| +׽ V write|д +׽ V human|,*write|д +׽ V catch|׽ס,patient=gamble|IJ,police| +׽ V catch|׽ס,patient=lascivious| +׽ ADJ aValue|ֵ,circumstances|,hardship|,undesired|ݬ +׽Բ V deceive|ƭ +׽Բ V recreation| +׽ V investigate| +׽ V catch|׽ס +׽ V catch|׽ס,police| +׽Ū V tease|ȡ +׽ס V catch|׽ס,Vachieve| +׾ ADJ aValue|ֵ,kind|,firstPerson| +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N thought|ͷ +׾ N human|,family|,female|Ů +׾ ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾챽 ADJ aValue|ֵ,wisdom|ǻ,NotQuick|ګ,undesired|ݬ +׾ N text| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ N character|,surname|,human|,ProperName|ר +׿ N thought|ͷ,profound| +׿ ADJ aValue|ֵ,degree|̶,extreme| +׿ ADJ aValue|ֵ,kind|,special| +׿Ȼ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿гЧ V succeed|ɹ +׿Խ ADJ aValue|ֵ,quality|,great|ΰ,desired| +׿ ADJ aValue|ֵ,quality|,great|ΰ,desired| + N furniture|Ҿ,space|ռ,@put| + N tool|þ,*illuminate| + N part|,furniture|Ҿ,head|ͷ + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N location|λ,%furniture|Ҿ + N furniture|Ҿ +ΰ N furniture|Ҿ + N furniture|Ҿ,space|ռ,@put| + V carve| +ĥ V MakeBetter|Ż +ĥ V carve| +ĥ V think|˼ +׳ ADJ aValue|ֵ,physique|,strong|ǿ,desired| + V drink| + V dump| + N edible|ʳ,generic|ͳ + V think|˼ +ü V subtract|,condition=think|˼ + V think|˼ + V think|˼ + V eat| +ľ N bird| + V PutOn|,Vgoingon|չ + V StateChange|̬,StateFin=fire|,industrial| + V apply|ͿĨ + V dispatch|Dz + N location|λ + N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + V sleep|˯ + V suffer| + V touch| + STRU {Vachieve|} +ű V write|д +Ż V flurried| +Ż V unfortunate|,cause=fire|,police| +ż V worried|ż + V endeavour| + V fever| +½ V arrive|,#aircraft| + N location|λ + N location|λ,@ExistAppear| +æ V worried|ż + V FondOf|ϲ + STRU {MaChinese|} + V recreation| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ɫ V AlterColor|ɫ +ʵ ADV aValue|ֵ,degree|̶,very| +ʵ ADV {emphasis|ǿ} + V start|ʼ + V PayAttention|ע + V PayAttention|ע +۵ N location|λ,space|ռ,@begin|ʼ +۵ N part|,%thinking|˼ + V endeavour| + V PayAttention|ע + V express|ʾ,manner=emphasis|ǿ +װ V PutOn| +װ V PutOn|,Vgoingon|չ +װ N clothing|,generic|ͳ + ADJ aValue|ֵ,brightness|,bright| + V burn| +Ƽ N thought|ͷ,profound| + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼɼ ADJ aValue|ֵ,content|,opened|,desired| +Ȼ ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,temperature|¶,hot| + V damage|,cause=burn| +ʹ V painful|ʹ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,SoundVolume|,loud| + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + ADJ aValue|ֵ,clearness|,blurred| + N water|ˮ,blurred| + N community|,disorder|,undesired|ݬ + N time|ʱ,disorder|,undesired|ݬ + N sound|,#language| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,now| + N money|,(Poland|) + V ask| + N document|,#country| +ѯ V ask| +ѯ N expenditure| + N attribute|,ability|,&human| + N attribute|,standard|׼,&human| + N expenditure| + V provide| + V provide|,commercial| +ʱ N fund|ʽ +ʱ N human|,#wealth|Ǯ +ʱ V transport|,patient=fund|ʽ +ʱ N system|ƶ +ʲ N wealth|Ǯ +ʲ N fund|ʽ +ʲ N wealth|Ǯ +ʲ׼ N human|,#wealth|Ǯ +ʷ N human|,#wealth|Ǯ +ʸ N attribute|,standard|׼,&human| +ʸ N attribute|,status|,&human| +ʽ N fund|ʽ +ʽ N quantity|,amount|,&fund|ʽ + N attribute|,standard|׼,&human| + N information|Ϣ + N room|,@read| + ADJ aValue|ֵ,ability|,able|,desired| + N attribute|,reputation|,&human|,&organization|֯,commercial| +Ѷ N information|Ϣ +Դ N material|,generic|ͳ + N attribute|,standard|׼,&human| + N attribute|,wisdom|ǻ,&AnimalHuman| + V provide| + N attribute|,appearance|,&physical| + N attribute|,posture|,&AnimalHuman| +ɫ N attribute|,bearing|̬,&female|Ů + N attribute|,posture|,&AnimalHuman| +̬ N attribute|,behavior|ֹ,&AnimalHuman| +̬ N attribute|,posture|,&AnimalHuman| + V GiveBirth| + V grow|ɳ + V jet| +̲ ADJ aValue|ֵ,ability|,maintain|,desired| +̲ V maintain| +̲Ʒ N edible|ʳ,*maintain| +̲Ʒ N material|,*maintain| +̳ V grow|ɳ + V grow|ɳ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + V moisten|ʪ + V GiveBirth| + V ResultIn| + V MakeTrouble| + V human|,MakeTrouble| +ζ N attribute|,taste|ζ,&edible|ʳ +ѿ V pregnant| + V maintain| + N material|,*maintain| +Ʒ N material|,*maintain| +Ͳ N place|ط,city|,ProperName|ר,(China|й) +ʹ N place|ط,city|,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +β ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + V seek|ıȡ + V seek|ıȡ,manner=diligent| + ADJ aValue|ֵ,color|ɫ,purple| +ϲ N food|ʳƷ +϶ N FlowerGrass| +Ϻӳ N part|,%AnimalHuman|,embryo| +Ϻ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ ADJ aValue|ֵ,color|ɫ,red| +Ϻɫ N attribute|,color|ɫ,purple|,&physical| +ϻض N FlowerGrass| +Ͼ N FlowerGrass| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +ɫ ADJ aValue|ֵ,color|ɫ,purple| +̴ N wood|ľ + N FlowerGrass| +ͭ N metal| + N lights| + N lights| +ҩˮ N medicine|ҩ +Ӣ N FlowerGrass| + N tree| + N FlowerGrass| +ޱ N FlowerGrass| + N disease| + N beast| + N beast|,young| + N human|,family|,male|,young| +м N bird| + ADJ aValue|ֵ,density|ܶ,dense| +ϸ ADJ aValue|ֵ,behavior|ֹ,attentive|ϸ,desired| +ϸ ADJ aValue|ֵ,behavior|ֹ,thrifty|,desired| + N livestock|,young| + N livestock|,young| + N part|,%plant|ֲ,embryo| + N material|,#crop|ׯ + ADJ aValue|ֵ,age|,young| + N character|,surname|,human|,ProperName|ר + N human| + N human|,family|,male|,young| + N human|,official|,royal| + N money| + N part|,%AnimalHuman|,embryo| + N part|,%plant|ֲ,embryo| + N shape|,small|С,hard|Ӳ +ӳ N character|,surname|,human|,ProperName|ר +ӳ N software| +ӵ N weapon|,$firing| +ӵ N human|,young| +ӵܱ N human|,military| +Ӹ N human|,family|,female|Ů +ӹ˾ N InstitutePlace|,commercial|,branch|֧ +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹѪ N disease| +ӹ N part|,%AnimalHuman|,viscera|,#pregnant| +ӹ N disease| +ӹ N bird| +Ӻ N symbol|,#quantity|,#DoSum| +Ӽ N bird| +Ӿ N human|,female|Ů,royal| + N part|,%plant|ֲ,embryo| +ĸ N weapon|,$firing| +ĸ۶ N part|,%clothing|,*fasten|˩ +Ŀ¼ N part|,%readings|,content| +Ů N human|,family|,mass|,young| +ʱ N time|ʱ,hour|ʱ +ʵ N part|,%plant|ֲ,embryo| + N human|,family|,male|,young| + N human|,future| + N human|,future| + V own|,possession=human| +î N cause|ԭ + N part|,%earth|,linear| + N tool|þ,*measure| +ϵͳ N software| +Ŀ N affairs| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N livestock|,young| + N human|,family|,male| +Ҷ N part|,%plant|ֲ,hair|ë +ҹ N time|ʱ,day|,night| + N sound|,#language| + ADJ aValue|ֵ,attachment|,self| + ADV aValue|ֵ,possibility|,possible| + PREP {LocationIni} + PREP {TimeIni} + ADV {comment|} + PRON {self|} +԰ V like|ϧ,target=self| +԰ V release|ͷ,patient=self| +԰ V explain|˵ +԰ V create| +Ա V do|,manner=active|Ը +Ա V disappointed|ʧ +Ա ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,undesired|ݬ +Ա V provide|,target=self| +Բ ADJ aValue|ֵ,content|,opened| +Բ V suicide|ɱ +Բλ V shy| +Բ V check| +Բ V check|,content=self| +Բ ADJ aValue|ֵ,property| +Բ V produce| +Գ V naming|,patient=self| +Գһ ADJ aValue|ֵ,kind|,special| +Գ V restrain|ֹ +Գ V gather|ɼ,manner=BeIndependent|,commercial| +Գʽ V gather|ɼ,possession=fund|ʽ,manner=BeIndependent|,commercial| +Դ N text| +Դ V boast| +Դ PREP {TimeIni} +Դ PREP {TimeIni} +Դ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ե V satisfied| +Ե V satisfied| +Զ ADJ aValue|ֵ,ability|,able|,function| +Զ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Զ V ize|̬,ability|,PatientAttribute=able|,#function| +Զ N institution|,#knowledge|֪ʶ +Զ N control| +Է ADJ aValue|ֵ,behavior|ֹ,active|Ը +Է N attribute|,property|,active|Ը,&event|¼ +Է V pay|,possession=expenditure|,manner=self| +Է V RegardAs|,patient=self| +Ը ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V bear|е +Ը N human|,arrogant|,undesired|ݬ +Ըӯ V bear|е +ԸԴ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ը V willing|Ը +Ը PRON {self|} +Ը V provide| +Ը V surplus|ʣ +Ը V BeIndependent| +Ըũ N human|,#occupation|ְλ,agricultural|ũ +Թ V admit| +Թ N place|ط,city|,ProperName|ר,(China|й) +Թ ADV aValue|ֵ,duration|,TimeLong| +Թ ADV aValue|ֵ,duration|,TimeLong| +Ժ ADJ aValue|ֵ,behavior|ֹ,arrogant| +Ժ N experience|,glorious| +Ի V destroy|,patient=self| +Լ ADJ aValue|ֵ,kind| +Լ PRON {self|} +Լ N human|,friend| +Լ PRON {self|} +Լ V recommend|Ƽ,content=self| +Խ V create| +Ծ V suicide|ɱ +Ծ V clean|ʹ,patient=self| +Ծ V rescue|,patient=self| +Ծ V ExpressAgainst|Ǵ,target=self| +Ծ V RegardAs|,patient=self| +ԾĹ V RashlyAct| +ԾĹ N damage|,patient=self| +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ծ V perception|֪ +Ծ N attribute|,behavior|ֹ,active|Ը,&human|,&organization|֯ +ԾԸ ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ծ N fact|,self|,decide| +ԾȨ N rights|Ȩ,*decide| +Կ V control| +Կ V boast|,target=self| + ADJ aValue|ֵ,source|Դ,original|ԭ + N tool|þ,*lighting|ȼ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,undesired|ݬ +ˮ N water|ˮ +ˮ N PenInk|ī,*write|д + V TakeCare|,patient=self| + V provide|,target=self| + V mobilize|,patient=self| + V BeIndependent| + V BeIndependent| + V BeIndependent| + V SetAside| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + V RashlyAct| + V flow| + V restrain|ֹ,patient=self| + V satisfied| + V mobilize|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + V satisfied| + N tool|þ,*tell|,#time|ʱ + V naming|,patient=self| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N human|,arrogant|,undesired|ݬ + V disheartened| + V deceive|ƭ +Dz V tease|ȡ,target=self| +ǿ V improve|,patient=self| +ǿϢ V endeavour|,content=improve|,#self| +Լ V IllTreat|,target=self| +ȡ V perish|,cause=RashlyAct| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| +Ȼ N natural|Ȼ +Ȼ ADV {comment|} +Ȼ N place|ط,#natural|Ȼ,$protect| +Ȼ N InstitutePlace|,@display|չʾ,#natural|Ȼ +Ȼ N place|ط,village| +Ȼ N knowledge|֪ʶ,#earth| +ȻȻ ADV aValue|ֵ,behavior|ֹ,active|Ը +ȻȻ ADJ {comment|} +Ȼ N regulation| +Ȼ N attribute|,environment|,&entity|ʵ +Ȼ N natural|Ȼ +Ȼѧ N knowledge|֪ʶ,#natural|Ȼ +Ȼ N human| +Ȼ V die| +ȻԴ N material|,#natural|Ȼ,generic|ͳ +ȼ V burn| + V agree|ͬ + ADJ aValue|ֵ,effect|Ч,superior|,desired| +ɱ V suicide|ɱ +ɱ ADJ aValue|ֵ,property|,suicide|ɱ +϶ ADV aValue|ֵ,property| + PRON {self|} + V ExistAppear| +ʡ V check|,content=self| +ʳ V unfortunate| +ʳ V BeIndependent| +ʼ ADJ aValue|ֵ,behavior|ֹ,lasting| + ADV {comment|} + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V depend| + V admit|,content=crime|,#police| + V betray| +ױ V betray| + V explain|˵ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ +˽ ADJ aValue|ֵ,behavior|ֹ,greedy|̰,undesired|ݬ + V accuse|ظ,police| +ֿ V ResultIn|,result=damage| +Ͷ V ResultIn|,result=damage| +ο V soothe|ο,target=self| + V defend| + N army| + V ask|,target=self| + PRON {self|} +ұ V ShowOff|ҫ,content=self| +Ҵ V boast|,content=self| +ҽ V cultivate|,patient=self| +˽ V suicide|ɱ + V estimate|,content=self| + V MakeBetter|Ż,patient=self| + V abandon|,possession=self| + V like|ϧ,target=self| + V cultivate|,patient=self| +ϰ V study|ѧ,education| +¶ ADV aValue|ֵ,property| +ɱ V kill|ɱ,patient=EachOther|໥ +ྪ V frighten|Ż,target=EachOther|໥ +ì V FitNot|,contrast=EachOther|໥ +С ADJ aValue|ֵ,time|ʱ,#young| + V believe|,target=self| + N emotion|,believe|,#self| + ADJ aValue|ֵ,behavior|ֹ,active|Ը + ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| + ADJ aValue|ֵ,behavior|ֹ,single| +г N LandVehicle| +г N facilities|ʩ,@put|,#LandVehicle| +г N part|,%LandVehicle|,body| +г N facilities|ʩ,@put|,#LandVehicle| + V RashlyAct| + V study|ѧ,education| +ѡ ADJ aValue|ֵ,kind|,free| +ѧ V study|ѧ,manner=self| +ѧ V teach|,target=self| +ѧ N human|,*study|ѧ,manner=self| + V speak|˵,target=self| + N human|,*speak|˵ + V SelfMove| +Ϊ ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ +Ӫ V manage|,manner=self|,commercial| + ADJ aValue|ֵ,property|,$use|,#self| + ADJ aValue|ֵ,behavior|ֹ,free| + ADJ aValue|ֵ,circumstances|,free|,desired| +ɶ N attribute|,performance|,free| +ɷ V indulge| +ɸ N facilities|ʩ,space|ռ,#ship|,@stay|ͣ +ɻ N attribute|,property|,free| +ɻ V ize|̬,PatientAttribute=free| + N human|,free| + N fact|,sport| +Ӿ V exercise|,#swim|,sport| +Ӿ N fact|,swim|,sport| + ADJ aValue|ֵ,behavior|ֹ,free| + N attribute|,behavior|ֹ,free| + N human| + ADJ aValue|ֵ,circumstances|,free|,desired| + V own|,manner=self| + ADJ aValue|ֵ,time|ʱ,#young| + V recreation|,partner=self| + V recreation|,partner=self| +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը V aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը +Ը ADJ aValue|ֵ,behavior|ֹ,active|Ը,desired| +Ը V willing|Ը +Թ԰ V blame|Թ + ADJ aValue|ֵ,circumstances|,free|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V ExpressAgainst|Ǵ,target=self| + V suffer| +֪֮ N attribute|,ability|,know|֪,#self| + V control|,patient=self| + V produce|,manner=self| + V restrain|ֹ,patient=self| + ADJ aValue|ֵ,attachment|,self| + N place|ط,manage|,#self|,politics| +Ȩ N attribute|,power|,decide|,#self|,&organization|֯,politics| + N place|ط,manage|,#self|,politics| + N place|ط,manage|,#self|,politics| + V like|ϧ,target=self| + V decide|,manner=self| +Ӫ V manage|,manner=self|,commercial| +Ȩ N attribute|,power|,decide|,#self|,&human|,&organization|֯ + V TakeCare|,patient=self| + V help|,patient=self| +ת V rotate|ת + V satisfied| + ADJ aValue|ֵ,behavior|ֹ,steady|,desired| + V like|ϧ,target=self| + N emotion|,like|ϧ,#self| + V decide|,manner=self| + V suffer| + V suicide|ɱ +ڼ V boast|,content=self| + V suicide|ɱ + V suicide|ɱ + V soak| + N trace|,dirty| + N attribute|,kind|,&character| + N attribute|,name|,&human| + N attribute|,style|,&character| + N bill|Ʊ + N character| + N sound|,#language| +ֳ N attribute|,length|,&character| +ִ V handle|,patient=character| +ֵ N publications|鿯,#expression| +ַ N character|,mass| +ַ N attribute|,kind|,&information|Ϣ +ֺ N InstitutePlace|,*sell|,@buy|,commercial| +ֺ N attribute|,name|,&InstitutePlace| +ֺ N attribute|,size|ߴ,&character| +ֻ N artifact|˹,#image|ͼ,entertainment| +ּ N trace|,#character| +ֽ N unit|λ,&information|Ϣ,computer| +־ N bill|Ʊ,#wealth|Ǯ +־ N expression| +ֿ N software|,@store|,character| +м ADJ aValue|ֵ,content|,&text| + ADJ aValue|ֵ,content|,&text| +ģ N tool|þ,*print|ӡˢ +ĸ N symbol| +ĸ N symbol|,mass| +Ļ N text|,#shows| + N quantity|,amount|,&character| + N attribute|,pattern|ʽ,&character| + N attribute|,style|,&character| + N letter|ż + N attribute|,pattern|ʽ,&character| + N expression| + N attribute|,standard|׼,&character| + N expression| + N sound|,#language| + V choose|ѡ,content=expression| + N tree| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| + N tree| + N beast| + N tree| + N trace|,#SelfMove|,#CauseToMove| + N trace|,#SelfMove|,#CauseToMove|,#foot| +ټ N trace|,#SelfMove|,#CauseToMove| +Ӱ N trace|,#SelfMove|,#CauseToMove| + N attribute|,clan|,&human| + N character|,surname|,human|,ProperName|ר + N human|,able|,desired| + N human|,past| + N part|,%community| + N purpose|Ŀ +ڷ N system|ƶ +ڽ N human|,able|,desired| +ڽ N community|,religion|ڽ +ڽ̽ N regulation|,religion|ڽ +ڽ̽ N community|,religion|ڽ +ڽɱ N community|,religion|ڽ +ڽ N community|,religion|ڽ +ڽ N emotion|,believe|,religion|ڽ +ڽʽ N fact|,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + N thinking|˼,biased|ƫ,undesired|ݬ + N human| + N human| +ʦ N human|,able|,desired| + V respect| + N character|,surname|,human|,ProperName|ר +ּ N purpose|Ŀ + N community| + N facilities|ʩ,space|ռ,@reside|ס + V AmountTo|ܼ +۹ V investigate| +ۺ ADJ aValue|ֵ,range|,all|ȫ +ۺ V include| +ۺϲ֢ N disease| +ۺϴѧ N InstitutePlace|,@teach|,@study|ѧ,education| +ۺ V use|,all|ȫ +ۺ N human|,*include| +ۺ֢ N disease| +ۼ V AmountTo|ܼ + V explain|˵ + ADV {comment|} + V explain|˵ + N shows| + ADV aValue|ֵ,frequency|Ƶ,often| + ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,importance|,main| + ADV {comment|} +ܱ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܱ༭ N human|,#occupation|ְλ,*compile|༭,#readings|,literature| +ܲ N part|,%army|,*order| +ܲ N human|,#occupation|ְλ,official|,commercial| +ܲ N human|,#occupation|ְλ,official|,politics| +ܲ N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N institution|,*help|,ProperName|ר,military|,(China|й) +ܲı N human|,#occupation|ְλ,official|,military| +ܲ N quantity|,amount|,all|ȫ,&crop|ׯ,&artifact|˹ +ֵܲ N attribute|,value|ֵ,all|ȫ,&produce|,industrial| +ܳ N attribute|,length|,all|ȫ,&physical| +ܳ N human|,#occupation|ְλ,official|,military| +ܳ N InstitutePlace|,@produce|,factory|,industrial|,main| +ܳ N attribute|,name|,generic|ͳ,&entity|ʵ +ܳ V produce|,industrial| +ܴ N quantity|,amount|,#computer|,&handle| +ܴ N human|,*help| +ܵ AUX {modality|} +ܵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ˵ CONJ {comment|} +ܵ N InstitutePlace|,main|,commercial| +ܶԱ V mobilize| +ܶ N human|,#occupation|ְλ,official|,country| +ܶ N army| +ܶ N quantity|,amount|,&physical| +֮ܶ CONJ {comment|} +ܹʦ N human|,#occupation|ְλ,industrial| +ܹ N community|,#employee|Ա,main| +ܹ V attack|,military| +ܹ˾ N InstitutePlace|,main|,commercial| +ܹ V AmountTo|ܼ +ܺ ADJ qValue|ֵ,amount|,all|ȫ +ܺ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܺڲ N institution|,*provide|,ProperName|ר,military|,(China|й) +ܻ V ComeTogether| +ܻ N tool|þ,*control|,#communicate| +ܼ V AmountTo|ܼ +ܼ N attribute|,price|۸,all|ȫ,commercial| +ܼ N human|,#occupation|ְλ,*check|,official| +ܽ N time|ʱ,#age|,young| +ܽ V explain|˵ +ܾ N human|,#occupation|ְλ,official|,commercial| +ܾ N institution|,main| + V explain|˵ + V bear|е + N human|,#occupation|ְλ,official|,#country| + N part|,%text| + N estimate| +˵ ADV {comment|} +ʦ N human|,#occupation|ְλ,industrial| + ADV aValue|ֵ,frequency|Ƶ,often| + N human|,#occupation|ְλ,official|,country| + N institution|,main| + N quantity|,amount|,&entity|ʵ +˾ N human|,#occupation|ְλ,official|,military| + ADV aValue|ֵ,time|ʱ,ending|ĩ + ADV {comment|} + ADJ aValue|ֵ,range|,all|ȫ + N entity|ʵ + V plan|ƻ +ͳ N human|,#occupation|ְλ,official|,country| +ͳ N house|,institution|,#politics| +ͳ N human|,friend| +ͳ N system|ƶ,politics| + N affairs| + N human|,#occupation|ְλ,employee|Ա + N part|,%computer| + N InstitutePlace|,main|,commercial| + N regulation|,important| + N account|,@record|¼,#wealth|Ǯ + N institution|,politics|,ProperName|ר,military|,(China|й) +β N institution|,politics|,ProperName|ר,military|,(China|й) +֮ CONJ {comment|} +ֵ N quantity|,amount|,&entity|ʵ +ָ N human|,#occupation|ְλ,official| +ָ N human|,#occupation|ְλ,official|,military| + ADJ aValue|ֵ,direction|,straight|ֱ + V indulge| + V jump| + V release|ͷ + CONJ {concession|ò} +ݲ V jump| +ݲ V walk| +ݶ N part|,%inanimate|,surfacial| +ݶ N army| +ݶ N shape|,linear| +ݸ N part|,%AnimalHuman|,viscera| +ݹ V look| +ݹ V cross|Խ +ݺ ADJ aValue|ֵ,posture| +ݺ۳ V SelfMove| +ݺύ V BeAcross|ཻ +ݻ V lighting|ȼ,crime| +ݾ V addict|Ⱥ,patient=drinks|Ʒ + V look| + V talk|̸,manner=free| +Ŀ V look| + V satisfied| +Ȼ CONJ {concession|ò} + ADJ aValue|ֵ,behavior|ֹ,suitable|,desired| + V indulge| + V jump| + N attribute|,depth|,&physical|,#cubic| +ʹ CONJ {concession|ò} +̸ V speak|˵ + ADJ aValue|ֵ,direction|,straight|ֱ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N human|,flighty|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + V SelfMoveInManner|ʽ + V function| + V leak|© + V leave|뿪 + V use| + V visit| + V walk| +߱ V unfortunate| +߱ V roam| +߲ V err|,sport| +ߴ崮 V roam| +ߴ崮կ V roam| +ߵ N facilities|ʩ,route|· +ߵ V walk| +ߵ V decline|˥ +ߵ V AppearanceChange|۱,scope=SoundQuality|,StateFin=improper|,undesired|ݬ +߶ V associate| +߶ V walk| +߶ V study|ѧ,education| +߶ N human|,*study|ѧ,education| +߷ V visit| +߷ V exposure|¶ +߸˿ N human|,*perform|,entertainment| +߹ N human|,undesired|ݬ +߹ V slack|͵ +ߺ V WellKnown| +ߺ V lucky| +ߺ V associate|,manner=undesired|ݬ +߻ V boast| +߻ V err|,scope=electricity| +߻ V err|,scope=firing| +߽ V MakeLiving|ı,means=perform| +ִ߽ V roam| +߽ V GoInto| +߽ V approach|ӽ +߿ V leave|뿪 + N part|,%building|,nerve| +© V evade|ر,crime| +© V exposure|¶ +· V leave|뿪 +· V walk| + V drive|Ԧ,patient=livestock| + N tool|þ,*illuminate| +ۻ V look|,manner=careless| + V undertake| +ϴ V roam| + V associate|,manner=undesired|ݬ + ADJ aValue|ֵ,ability|,able|,$sell|,commercial| + V visit|,target=human| + V leave|뿪 + V GoInto| +ɫ V AppearanceChange|۱ + V use| +ʧ V disappear|ʧ + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + N beast|,generic|ͳ +˽ V transport|,manner=secret|,crime| +˽ N human|,*transport|,crime| +˽ V artifact|˹,$transport|,secret|,crime| + V AppearanceChange|۱,scope=content|,StateFin=improper|,undesired|ݬ +Ͷ· V BeUnable| +· V err| +ζ V AppearanceChange|۱,scope=taste|ζ,StateFin=improper|,undesired|ݬ +· V decline|˥ + V SelfMove|,LocationFin=<> + N attribute|,direction|,&physical| + N attribute|,outlook|ǰ,&human|,&organization|֯,&event|¼ + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ +ʽ V slack|͵ +Ѩ V undertake|,content=other|,entertainment| + V AppearanceChange|۱,scope=form|״,StateFin=improper|,undesired|ݬ + V differ|ͬ + V lucky| + V wait|ȴ + V walk| + N human|,undesired|ݬ + V fulfil|ʵ + V recreation|,entertainment| + V submit| + V win|ʤ +࿭ V win|ʤ + V perform|,content=music| + N music| +Ч V succeed|ɹ + V beat| + V break|۶ + V borrow|,commercial| + N document|,#borrow|,#lend| + N expenditure|,*borrow| + V lend|,commercial| + N human|,lend| + V lend|,commercial| + N expenditure|,*borrow| + N expenditure|,*borrow| + N place|ط,$occupy|ռ + V borrow|,commercial| + V lend|,commercial| + N human|,*lend| + N expenditure|,*borrow| + N human|,*borrow| + V borrow|,commercial| + V lend|,commercial| + N attribute|,duration|,&lend|,&borrow| + N human|,*borrow|,house| + V borrow|,commercial| +Լ N document|,*ExpressAgreement|ʾͬ,#lend| + ADV aValue|ֵ,degree|̶,more| + N part|,%AnimalHuman|,foot| + N part|,%AnimalHuman|,leg| + N part|,%inanimate|,leg| + ADJ qValue|ֵ,amount|,sufficient| +㲿 N part|,%AnimalHuman|,leg| + N quantity|,amount|,accurate|׼,&physical| + N part|,%AnimalHuman|,foot| +㹻 ADJ qValue|ֵ,amount|,sufficient| +㼣 N trace|,#SelfMove|,#CauseToMove| +㼣 N trace|,#SelfMove|,#CauseToMove|,#foot| + V mean|ָ + N metal|,?material|,pure| + N SportTool|˶ + N fact|,exercise| + N facilities|ʩ,space|ռ,@exercise|,@compete|,sport| + N community|,*exercise|,*compete|,sport| +Ȧ N community|,sport| + N fact|,compete|,sport| +ɫ ADJ aValue|ֵ,content|,pure|,desired| +̳ N community|,sport| + ADV aValue|ֵ,degree|̶,more| + N metal|,?material|,pure| + ADJ aValue|ֵ,physique|,ripe|,desired| +Ƕı ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADV aValue|ֵ,degree|̶,more| + V die| + V end|ս + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| +ҵ V finish|,scope=study|ѧ,education| + N human|,#occupation|ְλ,military| + N part|,%tool|þ,#recreation| + N attribute|,clan|,&human| + N attribute|,kind|,&human| + N entity|ʵ +峤 N human|,official| + N human| + N character|,surname|,human|,ProperName|ר + N human|,intimate|,male| + N human|,past| +汲 N human|,past| + N wealth|Ǯ +洫 V PassOn| +洫 ADJ aValue|ֵ,property|,$PassOn| +洫ط N document|,medical|ҽ,#medicine|ҩ + N facilities|ʩ,space|ռ,@bury|,#die| +游 N human|,family|,male| +游ĸ N human|,family| + N place|ط,country| +漮 N place|ط +³ N language|,#country|,ProperName|ר +ĸ N human|,family|,male| +ĸ N material|,?tool|þ,#decorate|װ,precious| + N human|,past| +ʦ N human|,*establish| +ʦү N human|,*establish| + N human|,family| + N human|,family| + N human|,past| +ҵ N wealth|Ǯ + N human|,past| +汲 ADJ aValue|ֵ,duration|,TimeLong| + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + V ExpressAgainst|Ǵ + ADJ aValue|ֵ,property|,ExpressAgainst|Ǵ + V obstruct|ֹ +谭 V obstruct|ֹ +赲 V obstruct|ֹ + V obstruct|ֹ + V obstruct|ֹ + V separate| + V attack|,military| + V obstruct|ֹ,military| +ս N fact|,obstruct|ֹ,military| + V obstruct|ֹ +迹 V obstruct|ֹ,#electricity| + V obstruct|ֹ + N attribute|,strength|,obstruct|ֹ,&thing| + V obstruct|ֹ + V BlockUp| +Ԯ V obstruct|ֹ,content=rescue|,military| +ֹ V obstruct|ֹ + V obstruct|ֹ + CLAS NounUnit|,&inanimate| + V establish| + N part|,%organization|֯ +鳤 N human|,official| + V establish| + V establish|,PatientProduct=community|,sport| + N part|,%entity|ʵ,bone| + V call|ٻ,ResultEvent=compile|༭ + V establish|,patient=organization|֯,politics| + ADJ aValue|ֵ,property|,$merge|ϲ + N entity|ʵ,$merge|ϲ + V establish| +ʽ ADJ aValue|ֵ,property|,$merge|ϲ + N tool|þ,*listen|,#music| + N part|,implement| +齨 V establish| + V establish|,PatientProduct=community|,sport| +ί N part|,%organization|֯,*handle| +Ա N human|,#organization|֯ +֯ V establish| +֯ N organization|֯ +֯ N part|,%animate|,bone| +֯ N part|,%entity|ʵ,bone| +֯ N chemical|ѧ +֯ N part|,%community| +֯ʵ N attribute|,strength|,&organization|֯ +֯ N human|,*establish| +װ V merge|ϲ + V GoInto| + N material|,?tool|þ,#decorate|װ,precious| + V research|о + V stab| + N tool|þ,*stab| + V GoOut|ȥ + V stab| +괲 N machine|,*stab| + V GoThrough| + N machine|,*dig|ھ + N tool|þ,#decorate|װ,precious| + V GoInto| +꾮 V stab|,industrial| +꾮 N community|,*stab|,industrial| + V use|,patient=pros| +ı V seek|ıȡ +ţǼ V research|о +ʯ N material|,?tool|þ,#decorate|װ,precious| +̽ V investigate|,industrial| +ͷ N part|,%machine|,head|ͷ,*stab| +ij N InsectWorm| + V research|о +Ӫ V seek|ıȡ + V compile|༭ + N part|,%human|,hair|ë + V compile|༭ + N part|,%AnimalHuman|,mouth| + N shape| + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + V FondOf|ϲ,target=edible|ʳ +촽 N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ + N location|λ,%mouth| +Ƥ N attribute|,ability|,&human|,#speak|˵ + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + ADJ aValue|ֵ,ability|,able|,CauseToDo|ʹ,#dizzy| + N human|,*dizzy|,#addict|Ⱥ,#drinks|Ʒ + V FondOf|ϲ + V dizzy|,cause=addict|Ⱥ + ADV aValue|ֵ,degree|̶,most| + ADJ aValue|ֵ,distance|,most| + ADJ aValue|ֵ,time|ʱ,InFront|ǰ +Լ N symbol|,#quantity|,#DoSum| +޶ ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,range|,nonextensive| +ͼ N attribute|,price|۸,cheap|,&artifact|˹,commercial| + ADV aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,degree|̶,extreme| + ADJ aValue|ֵ,range|,extensive| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +߼ N fact|,discuss|,HighRank|ߵ +޼ N attribute|,price|۸,expensive|,&artifact|˹,commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +ͨ N document|,*tell|,#fight| + ADJ aValue|ֵ,GoodBad|û,bad|,most|,undesired|ݬ +ݹ N place|ط,country|,$WellTreat|ƴ,#commercial| +ݹ N fact|,WellTreat|ƴ,#commercial| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,rank|ȼ,superior|,desired| +ӽ ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,distance|,near|,most| + N aValue|ֵ,duration|,TimeShort| + ADJ aValue|ֵ,newness|¾,new|,desired| + N aValue|ֵ,time|ʱ,near| + ADJ aValue|ֵ,time|ʱ,near| + N aValue|ֵ,time|ʱ,now| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +϶ ADJ aValue|ֵ,direction|,south| +ڲ ADJ aValue|ֵ,location|λ,internal| + ADV aValue|ֵ,range|,nonextensive| +Ϊ ADV aValue|ֵ,degree|̶,extreme| +С ADJ aValue|ֵ,size|ߴ,small|С +С N symbol|,#quantity|,#DoSum| +С޶ ADJ aValue|ֵ,range|,nonextensive| + ADJ aValue|ֵ,newness|¾,new| + ADJ aValue|ֵ,time|ʱ,now| +ȿǵ N attribute|,sequence|,&event|¼ +Զ ADJ aValue|ֵ,distance|,far|Զ +Զ ADJ aValue|ֵ,distance|,far|Զ,most| + N aValue|ֵ,time|ʱ,hind| + ADJ aValue|ֵ,time|ʱ,hind| +Ҫ ADJ aValue|ֵ,importance|,important| + ADJ aValue|ֵ,reputation|,glorious|,desired| + N fact|,crime|,undesired|ݬ + N result|,#unfortunate|,undesired|ݬ +ﰸ N fact|,#police| +ﲻ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ﷸ N human|,crime|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N result|,crime|,undesired|ݬ + N result|,undesired|ݬ + N human|,crime|,undesired|ݬ + N human|,crime| + N fact|,crime|,$accuse|ظ + N result|,crime|,undesired|ݬ + N aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + N human|,crime|,undesired|ݬ + N fact|,crime|,undesired|ݬ + N duty|,#crime| +֤ N information|Ϣ,#crime| +״ N fact|,crime|,undesired|ݬ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + V respect| + N human|,family|,aged| + N attribute|,name|,$respect|,&human| + V respect| + V salute|¾ + ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| + ADJ aValue|ֵ,property|,respect| + V respect| +ϰ V respect|,target=human| +ʦ V respect|,target=human| +ʦؽ V respect|,target=human| + N attribute|,behavior|ֹ,stately|ׯ,&human| + V PayAttention|ע + V respect| + V obey|ѭ + V obey|ѭ +ط V obey|ѭ,content=regulation| + V obey|ѭ,content=order| + V obey|ѭ + V obey|ѭ +ѭ V obey|ѭ + N place|ط,city|,ProperName|ר,(China|й) + V obey|ѭ + N time|ʱ,past| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day| + N time|ʱ,past|,day|,night| +ҹ N time|ʱ,past|,day|,night| + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,kind|,queer| + N character|,surname|,human|,ProperName|ר + N community| + N location|λ + N location|λ +߷ N human|,*exercise|,(football|) + N location|λ + N human|,#exercise| + V look| + N location|λ,surrounding|Χ + N human|,*reside|ס,near| + N weapon|,*firing| +ǹ N weapon|,*firing| + N location|λ + N human|,politics| +Ʋ N human| +Ǩ V degrade| + N character|,surname|,human|,ProperName|ר +Ϸ N location|λ +Ͻ N location|λ + N location|λ + N part| + N location|λ +̻ V protect| +· N location|λ +½ N location|λ + N location|λ + V control| + N human|,*TakeCare| + N location|λ + ADV qValue|ֵ,amount|,almost| +ҿ V attack| + N human|,friend| +̻ V protect| +Ϊ V embarrassed|Ϊ +֤ N information|Ϣ,*prove|֤ +֧ V BeUnable|,content=handle| +֧ V BeUnable|,content=pay| +ת V TurnRound| +ת V TurnRound| + V help| + V eat| + N material|,?edible|ʳ +֤ N information|Ϣ,*prove|֤ + N tree| +˿ N material|,?clothing| + V RegardAs| + V be| + V compile|༭ + V cook| + V create| + V engage| +B V fact|,diagnose|,medical|ҽ + V mating| + V dream| + V follow| + V BeUnable|,content=decide| + V fulfil|ʵ +ú ADJ aValue|ֵ,GoodBad|û,good|,desired| + V bear|е + N method| + V cook|,PatientProduct=edible|ʳ + N attribute|,performance|,#produce|,&artifact|˹ + N attribute|,price|۸,&artifact|˹,commercial| + V engage|,content=affairs| + V undertake|,content=official|,politics| + V disseminate|,commercial| +µ N human|,do|,desired| + V engage|,content=affairs| + V become|Ϊ + V engage|,content=affairs|,religion|ڽ + V engage|,content=fact|,religion|ڽ + V congratulate|ף,cause=festival| +ý V mediate|,ResultEvent=GetMarried| + V dream| + V associate| +Ȧ V forming|γ,PatientProduct=plans|滮,purpose=deceive|ƭ + V ActGeneral| + V MakeSound| + V congratulate|ף,cause=festival|,#ComeToWorld| + V engage|,content=affairs|,commercial| + V engage|,content=affairs| +ֽ V deceive|ƭ + V cure|ҽ,means=split|ƿ,#part| + V undergo|,content=cure|ҽ,#split|ƿ,#part|,medical|ҽ + V congratulate|ף,cause=festival|,#ComeToWorld| +ͷ V MakeUp|ױ,scope=hair|ë,#female|Ů + V MakeTrouble| + V compile|༭,ContentProduct=text| +Ϸ V deceive|ƭ +Ϸ V perform|,content=shows|,entertainment| +ѧ V engage|,content=research|о +ѧ V research|о,content=knowledge|֪ʶ + V ShowOff|ҫ +һײһ V slack|͵ + V GuiltilyConscious| + V decide| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + V RegardAs| + V compile|༭ + V do| + V happen| + V pretend|װ + N text| + V do|,content=crime| + V cease|ͣ + V follow| + V guarantee|֤ + V deceive|ƭ +Ϲ N look| + V farewell| + V help| + V do| +ŵԵ N human|,*MakeAppointment|Լ,#bear|е + V compile|༭,ContentProduct=text|,#music|,entertainment| + V oppose| + V do|,content=evil| + V do|,content=evil| + N method| +Ա V suffer|,content=restrain|ֹ + N InstitutePlace|,@produce|,factory|,industrial| + V end|ս + N attribute|,behavior|ֹ,&human| + V MakeTrouble| + V obstruct|ֹ + V die| + V MakeTrouble| + V ShowEmotion|ʾ + V draw|,ContentProduct=image|ͼ + N human|,#occupation|ְλ,literature| +Э N community|,literature| + V deceive|ƭ + V pretend|װ + V estimate|,commercial| +鷸 V do|,content=crime| +Ը V suffer|,content=restrain|ֹ + V damage| + V lavish|˷ + V reside|ס + V perform|,content=music| + V tease|ȡ +׼ V prepare|׼ + N material|,?edible|ʳ + V MakeTrouble| + V embarrassed|Ϊ +ɢ V flee| + V do|,content=evil| +Ū V IllTreat| +Ż V ill|̬,#vomit|³ + N attribute|,behavior|ֹ,&human| + V follow| +Ʒ N readings|,literature|,entertainment| + V compile|༭,ContentProduct=music|,entertainment| + N human|,#occupation|ְλ,*compile|༭,#music| + N human|,#occupation|ְλ,*compile|༭,#music|,entertainment| + V ActGeneral| +ɫ V angry| +ʫ V compile|༭,ContentProduct=text| + V fit|ʺ + V suicide|ɱ + V MakeTrouble| +ʹ V painful|ʹ +ͼ V draw|,ContentProduct=image|ͼ +Ϊ V RegardAs| +Ϊ V conduct|ʵʩ +Ϊ V fulfil|ʵ +ΪDz ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +α V forge|α +α֤ V prove|֤,content=information|Ϣ,fake|α,#police| +α֤ N human|,*forge|α,undesired|ݬ,#police| + V compile|༭,ContentProduct=text| + V MakeTrouble| + V compile|༭,ContentProduct=text| + N crop|ׯ,generic|ͳ +Ϣ V engage|,rest|Ϣ + V MakeSound| +Э N community|,literature| +ѧ V research|о,content=knowledge|֪ʶ +ҵ N fact| +ҵ N fact|,#education| + N attribute|,effect|Ч,&entity|ʵ,&act|ж + N fact|,function| + V influence|Ӱ + N purpose|Ŀ +ս ADJ aValue|ֵ,property|,fight| +ս V fight|,military| + N human|,*compile|༭,literature| +֤ V prove|֤ + V GoBackward| + V TakeVehicle| + V facing| + V put| + V sink|³ + V sit| + V obey|ѭ,content=time|ʱ + N image|ͼ + N attribute|,sequence|,&sit| + V wait|ȴ + V wait|ȴ + N tool|þ,@sit| + V sit| + N part|,%AnimalHuman|,nerve| +ʹ N disease| + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=detain|ס,cause=crime|,#police| + ADJ aValue|ֵ,ability|,unable|ӹ,undesired|ݬ + N tool|þ,@sit|,generic|ͳ + V suffer|,content=restrain|ֹ + V suffer|,content=detain|ס,cause=crime|,#police| + V suffer|,content=IllTreat| + V uneasy| + V situated| + N livestock|,@sit| +ɽ N bird| +ɽۻ V refuse| + N human|,#occupation|ְλ,commercial| + V sit| +ʧ V lose|ʧȥ,possession=time|ʱ + V refuse| + V obtain|õ +̽ N human|,military|,*scout| +λ N location|λ,@sit| +Բ V uneasy| + V sit| + V obtain|õ +ҩ N medicine|ҩ +Դ V wait|ȴ,content=die| + V labour|ٲ + V manage| + N attribute|,posture|,#sit|,&human| + V labour|ٲ + N celestial| + N location|λ + N part|,%artifact|˹,base| + N part|,%aircraft| + N part|,%weapon| + N attribute|,sequence|,&sit| + N tool|þ,@sit| + N attribute|,number|,&location|λ,#sit| + N aircraft| + V situated| +ϱ N human|,$WellTreat|ƴ +Ͽ N human|,$WellTreat|ƴ +̸ V discuss| +̸ N fact|,discuss| +λ N location|λ,@sit| +ϯ EXPR aValue|ֵ,fullness|,full| +ϯ N location|λ,@sit| + N furniture|Ҿ,@sit| + N expression|,$obey|ѭ + N tool|þ,*tell|,#time|ʱ + N part|,%LandVehicle| + N part|,%artifact|˹,base| +أ ADJ aValue|ֵ,height|߶,tall| +أ V stand|վ +ؤ N human|,poor|,*beg|,undesired|ݬ +إ NUM qValue|ֵ,amount|,cardinal|,mass| +ئ NUM qValue|ֵ,amount|,cardinal|,mass| +ا ADJ aValue|ֵ,quality|,great|ΰ,desired| +ب ADJ aValue|ֵ,duration|,TimeLong| +ة N human|,*help|,#official|,past|,(China|й) +ة N human|,#occupation|ְλ,official|,past|,(China|й) +ث ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ +ث ADJ aValue|ֵ,courage|,timid|,undesired|ݬ +ث N human|,timid|,undesired|ݬ +ج ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ +ج N information|Ϣ,#die| +ج N thought|ͷ,#dream|,undesired|ݬ +ذ N weapon| +ز V die| +ز V die| +ز V die| +ط N human|,future| +ع V GiveBirth| +ع N character|,surname|,human|,ProperName|ר +ع V foster| +غ N part|,%AnimalHuman|,viscera|,#mating| +غ N part|,%AnimalHuman|,viscera|,#mating| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADV aValue|ֵ,frequency|Ƶ,again| +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؽ ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ؾ N tool|þ,cubic|,@put| +ؿ N character|,surname|,human|,ProperName|ר +ؿб V look|,manner=slanted| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,surname|,human|,ProperName|ר + V put| +Ȼн ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + V dizzy|,medical|ҽ + PRON {ThirdPerson|,female|Ů} + PRON {ThirdPerson|,male|} + PRON {ThirdPerson|,mass|} + PRON {it|} + N human|,male|,employee|Ա,past| + N human|,undesired|ݬ +ɱ V fight| + N part|,%AnimalHuman|,skin|Ƥ + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ +Ʒ N artifact|˹,fake|α,generic|ͳ + N tool|þ,cubic|,@put| + V lack|ȱ +ѷ V lack|ȱ + N tool|þ,$sign|д,*decorate|װ + N tool|þ,cubic|,@put| +Ҷ N tool|þ,$sign|д,*decorate|װ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + ADJ aValue|ֵ,content|,refined| + N symbol|,*guess|² + V break|۶ + V cut| + V dig|ھ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + V cut| + N character|,(China|й) + V dig|ھ +ⲹ ADJ WorthNot|ֵ +ⲹ V WorthNot|ֵ + N character|,surname|,human|,ProperName|ר +⺷ ADJ aValue|ֵ,behavior|ֹ,fierce| +⺷ ADJ aValue|ֵ,courage|,brave|,desired| + V steal|͵ + N human|,steal|͵ + V split|ƿ +忪 V split|ƿ + V punish| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +붽 N character|,surname|,human|,ProperName|ר + NUM qValue|ֵ,amount|,cardinal|,mass| + N community|,ProperName|ר,(China|й) + V CausePartMove| + V separate| + N human|,young| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٳ N human|,family|,mass| + V stand|վ + V wait|ȴ + V stand|վ + V influence|Ӱ + V flee| + V lose|ʧȥ + N phenomena|,idle| + V surpass|ǿ +Ͳ N disease| +١ N character|,surname|,human|,ProperName|ר +٤ CLAS unit|λ +٤ N lights| +٧ V urge|ʹ +٨ ADJ aValue|ֵ,behavior|ֹ,improper|,undesired|ݬ +٨ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +٩ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| +٩ ADJ aValue|ֵ,behavior|ֹ,gentle|,desired| +٩٩̸ V speak|˵ +٪ ADJ aValue|ֵ,height|߶,low| +٪ N human|,low| +٪޼ N time|ʱ,past| +٪ N human|,low| +٭ N human| +ٮ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٮٮ ADJ aValue|ֵ,degree|̶,extreme| +ٮٮ N human|,able|,desired| +ٯ N character|,surname|,human|,ProperName|ר +ٯ PRON {SecondPerson|} +ٲ ADJ aValue|ֵ,bearing|̬,stately|ׯ,desired| +ٲȻ ADJ aValue|ֵ,content|,neat|,desired| +ٲȻ ADV {contrast} +ٳ N human|,family|,mass| +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٵ ADJ aValue|ֵ,behavior|ֹ,vulgar|,undesired|ݬ +ٸ N tool|þ,#die|,$bury| +ٹ N character|,surname|,human|,ProperName|ר +ٹ V wait|ȴ +ٺ N payment| +ٺ» N payment|,past| +ٻ ADJ aValue|ֵ,prettiness|,beautiful|,desired| +ٻӰ N image|ͼ,beautiful| +ټ ADJ aValue|ֵ,kind|,special| +ټ ADJ aValue|ֵ,size|ߴ,big| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| +ٿ ADJ aValue|ֵ,speed|ٶ,fast| + N place|ط,country|,ProperName|ר,(Japan|ձ) + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N human|,crime|,undesired|ݬ,past|,*rob|,#waters|ˮ + CONJ {purpose} + N character|,(China|й) + N human|,#occupation|ְλ,*foster|,*TakeCare|,#livestock|,agricultural|ũ + N human|,#occupation|ְλ,employee|Ա + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V MoveItDown| + V cease|ͣ +Ϣ V cease|ͣ + ADV aValue|ֵ,behavior|ֹ,together|ͬ +ͬ P {partner} + V lean|п +˱ V HoldInArm|§ + V lean|п + N human|,#GetMarried| + V remove| + N place|ط,ProperName|ר,(China|й) + V BeSame|ͬ + ADV aValue|ֵ,behavior|ֹ,together|ͬ + V aValue|ֵ,similarity|ͬ,alike| + COOR {and|} + PREP {coagent} + PREP {contrast} + PREP {partner} + V cook| + V float|Ư + N character|,surname|,human|,ProperName|ר +٦ N character|,surname|,human|,ProperName|ר + N tool|þ,*cook|,past| + N tool|þ,*salute|¾,past| + N human|,undesired|ݬ,$MakeBad|Ӻ + V cook| + N tool|þ,cubic|,*cook| + ECHO {comment|} + N character|,surname|,human|,ProperName|ר + V LieDown| + V crawl| + N bird| + ADJ aValue|ֵ,age|,aged| +ҹ V endeavour| +Ը N aspiration|Ը,expect| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,behavior|ֹ,continuous| + ADJ qValue|ֵ,amount|,many| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + V despise| + V slander|̰ + V receive| + V tell| + N attribute|,ability|,&human| + V tell| + N attribute|,behavior|ֹ,original|ԭ,&human|,&organization|֯ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,temperature|¶,cold| + N character|,surname|,human|,ProperName|ר +ڝ V slide| +ڝ V slide| +ڝŽ V stand|վ +ڣ N facilities|ʩ,space|ռ,@bury|,#die| +ڤ ADJ aValue|ֵ,brightness|,dark| +ڤ ADJ aValue|ֵ,content|,profound| +ڤ N tool|þ,#bury|,#die| +ڤ˼ V think|˼,manner=endeavour| +ڤ N celestial| +ڤ V think|˼ +ڨ V LaughAt|Ц +ڨЦ V LaughAt|Ц +ک V sing| +ک V praise|佱 +ګ ADJ aValue|ֵ,speed|ٶ,slow|,&speak|˵ +ڭ V ExpressAgainst|Ǵ +ڭ N fruit|ˮ +ڮ V slander|̰ +ڮ V slander|̰ +گ N document|,royal|,past| +گ V order|,politics|,royal| +گ N document|,royal|,past| +ڱ V GiveAsGift| +ڱ V PassOn| +ڲ V deceive|ƭ +ڲƭ V deceive|ƭ +ڵ V ask| +ڶг ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ڶг N attribute|,content|,interesting|Ȥ,desired| +ڸ V ExpressAgainst|Ǵ +ڹ V explain|˵ +ڹ V explain|˵ +ڹע V explain|˵ +ں V persuade|Ȱ˵ +ں N human|,friend| +ڼ V boast| +ھ N document|,royal|,past| + V please|ȡ + V know|֪ + V please|ȡ + V please|ȡ + N human|,please|ȡ + V damage| +Ц V laugh|Ц,manner=please|ȡ + V please|ȡ + N character|,surname|,human|,ProperName|ר + V persuade|Ȱ˵ + V tease|ȡ + V salute|¾ + V visit| +˼ V visit| + V order|,politics|,royal| + V tell| + V know|֪ + ADJ aValue|ֵ,ability|,able|,desired| + V BeAble|ܹ + N information|Ϣ + V ask| + N plans|滮 + V arise| + V ExpressAgainst|Ǵ + V degrade| + V exile| + N character|,(China|й) +¥ N facilities|ʩ,space|ռ,@look| + N character|,surname|,human|,ProperName|ר +թ ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + V mad| + N text| + N facilities|ʩ,space|ռ,linear|,route|·,#land|½ +İ N facilities|ʩ,space|ռ,linear|,route|·,#land|½ + N facilities|ʩ,space|ռ,*deceive|ƭ,*MakeBad|Ӻ,undesired|ݬ + N part|,%land|½,skin|Ƥ + N land|½,surrounding|Χ,#waters|ˮ + N part|,%land|½,#waters|ˮ,edge| + N part|,%land|½,skin|Ƥ + N waters|ˮ,surfacial| + N part|,%place|ط,mouth| + N location|λ,angular| + N part|,%land|½,base| + N part|,%country|,edge| + N part|,%earth|,angular| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) +ۡ N house|,#official| +ۣ N character|,surname|,human|,ProperName|ר +ۤ ADV aValue|ֵ,degree|̶,extreme| +ۤ N character|,surname|,human|,ProperName|ר +۪ N character|,surname|,human|,ProperName|ר +۫ N place|ط,ProperName|ר,(China|й) +۬ N character|,surname|,human|,ProperName|ר +ۭ N character|,surname|,human|,ProperName|ר +۰ N place|ط,ProperName|ר,(China|й) +۲ N place|ط,ProperName|ר,(China|й) +۳ N character|,surname|,human|,ProperName|ר +۴ N place|ط,ProperName|ר,(China|й) +۶ N waters|ˮ,ProperName|ר,(China|й) +۷ N place|ط,ProperName|ר,(China|й) +ۺ N character|,surname|,human|,ProperName|ר +ۻ N human|,agricultural|ũ +ۻ N human|,vulgar|,village|,undesired|ݬ +۾ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +ۿ ADJ aValue|ֵ,GoodBad|û,good|,desired| +ۿ V mobilize| + ADJ aValue|ֵ,courage|,brave|,desired| + V mediate| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| +λ N tool|þ,cubic|,@put| +λ N tool|þ,cubic|,@put|,*clean|ʹ + N chemical|ѧ + N stone|ʯ + V BlockUp| + V pile|ѷ + V BlockUp| + N part|,%land|½,linear|,#water|ˮ + N waters|ˮ + N facilities|ʩ,#waters|ˮ,space|ռ,*protect| +׳ N InstitutePlace|,*sell|,@buy|,commercial| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N facilities|ʩ,space|ռ,*protect|,#waters|ˮ + N character|,(China|й) + N facilities|ʩ,space|ռ,linear|,*drain|ų + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + N land|½ + N part|,%country|,edge| + N part|,%land|½,slope|¶ + N part|,%land|½,agricultural|ũ + V FormChange|α,StateFin=OutOfOrder| + V fasten|˩ + N shape| + N shape| + N part|,%land|½ + N part|,%place|ط,mouth| + N attribute|,boundary|,&entity|ʵ + N facilities|ʩ,*protect|,#waters|ˮ,space|ռ + N InstitutePlace|,*sell|,@buy|,commercial| + CLAS NounUnit|,&RainSnow|ѩ + CLAS NounUnit|,&disease|,medical|ҽ + CLAS NounUnit|,&fact|,sport|,entertainment| + N facilities|ʩ,space|ռ + N facilities|ʩ,space|ռ,entertainment|,@perform| + N part|,%shows|,entertainment| + N place|ط + N space|ռ + N part|,%land|½ +ܭ N facilities|ʩ,#city|,skin|Ƥ +ܯ N part|,%building|,nerve| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܰ N attribute|,odor|ζ,fragrant|,&physical| +ܲ ADJ aValue|ֵ,rank|ȼ,HighRank|ߵ,desired| +ܸܸ N FlowerGrass| +ܽ N character|,(China|й) +ܽ N FlowerGrass| +ܽޡ N FlowerGrass| +ܾ N part|,%vegetable|߲,embryo|,$eat| +ܾ N vegetable|߲ +ܾ N tree| +ܾݴ N part|,%vegetable|߲,embryo|,$eat| +ܾݴ N vegetable|߲ +ܿ N FlowerGrass| +ܿ N part|,%vegetable|߲,embryo|,$eat| +ܿ N vegetable|߲ +ܿ N FlowerGrass| +ܿܿ N animate|,mass| +ܿ޷ N part|,%vegetable|߲,embryo|,$eat| +ܿ޷ N vegetable|߲ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N character|,(China|й) + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ +Ȳ N part|,%vegetable|߲,embryo|,$eat| +Ȳ N vegetable|߲ + N character|,(China|й) + N FlowerGrass| + N FlowerGrass|,?medicine|ҩ,(China|й) + N FlowerGrass|,?material| + N crop|ׯ +ͷ N material|,?food|ʳƷ +ʵ N material|,#edible|ʳ + N character|,(China|й) + V break|۶,agricultural|ũ + V remove| +ϳ V remove|,agricultural|ũ + N chemical|ѧ + N FlowerGrass| + N material|,%FlowerGrass| + N FlowerGrass| + N FlowerGrass| + N character|,(China|й) +״ ADJ aValue|ֵ,color|ɫ,green| +״ ADJ aValue|ֵ,scene|,exuberant|ï +ޣ N FlowerGrass| + N crop|ׯ,?material| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#die| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N part|,%vegetable|߲,embryo|,$eat| + N tree|,?medicine|ҩ + N vegetable|߲ + ADJ aValue|ֵ,color|ɫ,red| + N FlowerGrass| + N FlowerGrass| + N place|ط,ProperName|ר,(China|й) + N material|,?food|ʳƷ + N tree| + N part|,%plant|ֲ,body| + N character|,(China|й) + N crop|ׯ + N AlgaeFungi|ֲ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + N crop|ׯ + V disappear|ʧ + N FlowerGrass| + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N drinks|Ʒ + N FlowerGrass| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + ADJ aValue|ֵ,behavior|ֹ,opened|,desired| + N character|,(China|й) +ݡ N disease| +ݥ N FlowerGrass| +ݩ N fruit|ˮ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݫ N part|,%vegetable|߲,embryo|,$eat| +ݫ N vegetable|߲ +ݬ N FlowerGrass| +ݬ N human|,undesired|ݬ +ݭ N character|,(China|й) +ݯ N crop|ׯ +ݰ V arrive| +ݰ V arrive| +ݱ N FlowerGrass| +ݶ N FlowerGrass| +ݷ N character|,(China|й) +ݷ N character|,surname|,human|,ProperName|ר +ݷݷ ADJ qValue|ֵ,amount|,many| +ݷݷѧ N human|,*study|ѧ,education|,mass| +ݸ N character|,(China|й) +ݸ V laugh|Ц +ݸһЦ V laugh|Ц +ݹ N character|,(China|й) +ݹ N material|,?clothing| +ݹ N FlowerGrass| +ݺ N bird| +ݺ ADJ aValue|ֵ,circumstances|,flourishing|,desired| +ݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݼ N part|,%entity|ʵ,heart| +ݼ N part|,%entity|ʵ,heart| +ݼݼ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ݽ N part|,%plant|ֲ,body| + N FlowerGrass| +ɫ ADJ aValue|ֵ,color|ɫ,purple| + N chemical|ѧ + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) +˿ N FlowerGrass|,?medicine|ҩ,(China|й) + V ComeTogether| + N character|,surname|,human|,ProperName|ר + N human|,$ComeTogether| + N thing|,$ComeTogether| +ȡ V gather|ɼ + N character|,(China|й) + N FlowerGrass| + N character|,surname|,human|,ProperName|ר + V coil| +ӻ V circle| + V circle| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + V foster| + V keep| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N part|,%FlowerGrass|,embryo| +ݳ N part|,%FlowerGrass|,embryo| +ݳ֮ N human|,family| + ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N character|,(China|й) + N part|,%FlowerGrass|,embryo| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| + N FlowerGrass| + N FlowerGrass| +޼ N FlowerGrass|,?medicine|ҩ,(China|й) + N character|,(China|й) + N part|,%plant|ֲ,embryo| + N character|,surname|,human|,ProperName|ר +ޤ N FlowerGrass|,?material| +ޥ N FlowerGrass| +ަ N AlgaeFungi|ֲ +ާ N FlowerGrass| +ެ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ެ V GiveBirth| +ޮ ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ޮ N part|,%plant|ֲ,body| +ް V die| +ޱ N character|,(China|й) +޲ N character|,(China|й) +޲ N material|,?edible|ʳ,#crop|ׯ +޶ V PickOut|γ +޷ N FlowerGrass| +޷ N part|,%plant|ֲ,body| +޹ N FlowerGrass| +޹ N attribute|,odor|ζ,fragrant|,&physical| +޹ V cook| +޼ N FlowerGrass| +޽ N part|,%plant|ֲ,hair|ë +޽ N medicine|ҩ + V recreation| + ADJ aValue|ֵ,form|״ + V fall| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + V satirize| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,physique|,strong|ǿ,desired| + ADJ aValue|ֵ,circumstances|,embarrassed|Ϊ + V check|,content=self| + V pull| + V cook| + N food|ʳƷ + V beat| + V beat| + V endeavour| + V merge|ϲ +ղ V endeavour| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,easiness|,difficult|,undesired|ݬ + V break|۶ +ֿ ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N character|,(China|й) +׾ ADJ aValue|ֵ,richness|ƶ,poor|,undesired|ݬ + V force|ǿ + V press|ѹ +ָ V punish| + V rub|Ħ + V LaughAt|Ц + V BeNear| + V approach|ӽ + N part|,%character| + V lift| + V ExpressAgainst|Ǵ + V CarryOnBack| + N human|,#occupation|ְλ,commercial| + V throw| + V PickOut|γ + V fail|ʧ + V press|ѹ + V praise|佱 + V abandon| + V remove| + V PutInOrder| + V abandon| + V guess|² + V estimate| + V guess|² + V press|ѹ + N stationery|ľ,*fix|ס +۶ N part|,%clothing|,*fasten|˩ + V wipe| + N tool|þ,*wipe| + V push| + V pile|ѷ +ߗ N place|ط,@reside|ס,#house| +ߡ V fold|ߡ +ߢ V gather|ɼ +ߤ V economize|ʡ +ߤ V economize|ʡ +ߤ V subtract| +ߥ V VieFor| +ߥ V angry| +ߥ V throw| +ߥ V incite|ָʹ +ߦ V press|ѹ +ߦ N tool|þ,#cook| +ߨ V split|ƿ +ߩ V excrete|й +ߩ V excrete|й,patient=waste| +ߪ V PickOut|γ +ߪ V upgrade| +ߪ ADJ qValue|ֵ,amount|,many| +ߪ V upgrade| +ߪ V upgrade| +߫ V dump| +߬ V hold| +߭ V stab| +߭ N weapon|,*stab| +߮ N weapon|,*firing| +߰ N chemical|ѧ +߲ N character|,(China|й) +߳ V ExpressAgainst|Ǵ +߳ V cry| +߳ V ExpressAgainst|Ǵ +߳ V ExpressAgainst|Ǵ +߳ ADJ aValue|ֵ,strength|,strong|ǿ,desired| +ߴ ECHO sound| +ߴ V speak|˵ +ߵ V beat| +ߵ V salute|¾ +ߵ V beat| +ߵ N human|,*beat| +ߵͷ V salute|¾ +ߵͷ N InsectWorm| +ߵ V ask| +ߵ V diagnose|,means=beat|,medical|ҽ +߶ V speak|˵ +߷ N place|ط,country|,ProperName|ר,(Singapore|¼) +ߺ V cry| +ߺ V cry|,content=sell|,commercial| +ߺ V guide|,means=cry| +߻ N chemical|ѧ + V ill|̬,#respire| + V ill|̬,#respire| + N character|,(China|й) + N chemical|ѧ + STRU {MaChinese|} + V drink| + V savor| + V MakeSound| + ECHO sound| +ߴ N material|,?clothing| + ECHO sound| + V drink| +ɽ ADJ aValue|ֵ,GoodBad|û,good|,desired| +׹ V ComeToWorld| + V MakeSound| +ર N MusicTool| +ર N clothing|,#foot| + N character|,(China|й) + ECHO sound| +ͱ ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +͹ N fact|,queer| +β V speak|˵ + V laugh|Ц + ECHO sound| + V CausePartMove| + ECHO sound| +ز V speak|˵ +ߴ N material|,?clothing| + V ExpressAgainst|Ǵ + N character|,(China|й) + ECHO sound| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + V talk|̸ +߶ V speak|˵ + V pant| + V weep| + ECHO sound| + N MusicTool| + V sigh|̾ + V weep| + N character|,(China|й) + V jet| +Ͳ N tool|þ,*inhale|,#gas|,#liquid|Һ + ECHO sound| + N character|,(China|й) + V cry|,#bird| + V vomit|³ + V eat| + V entice| + N character|,(China|й) + V cry| + ECHO sound| + V drink| + V weep| + V weep| +ੲ V speak|˵ + ECHO sound| + ECHO sound| + N character|,(China|й) + V speak|˵ +Ȼ̾ V sigh|̾ +̾ V sigh|̾ + ECHO sound| + ADJ aValue|ֵ,occasion|,quiet|,desired| + STRU {MaChinese|} + N human|,crime|,undesired|ݬ + N part|,%animal|,mouth| + N character|,(China|й) +໴ V HungryThirsty| +໴ ADJ HungryThirsty| + N part|,%AnimalHuman|,viscera| + V CausePartMove| + ECHO sound| + ECHO sound| + V MakeSound| + V speak|˵ + V bite|ҧ + ECHO sound| + V angry| + V blame|Թ + N phenomena|,#StomachTrouble|֢ + N phenomena|,#ill|̬,#respire| + ECHO sound| + V cry|,#beast| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V StomachTrouble|֢ + ECHO sound| +Ц V LaughAt|Ц + N part|,LandVehicle| +ͷ N part|,LandVehicle| + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + N chemical|ѧ + ECHO sound| +ʹ V incite|ָʹ + N character|,(China|й) +ֹ V ExpressAgainst|Ǵ +ֹ V speak|˵ +ֹ V think|˼ + N chemical|ѧ + ECHO sound| + ADJ aValue|ֵ,SoundVolume|,loud| + V drink| + ECHO sound| + V HoldInMouth| + V KeepSilence|˵,cause=fear| + V laugh|Ц +ͷ ADJ aValue|ֵ,content|,interesting|Ȥ,desired| +ͷ N method|,interesting|Ȥ +ͷ N plans|滮,sly|,*deceive|ƭ,undesired|ݬ + N character|,(China|й) + N character|,(China|й) +ž ECHO sound| + ECHO sound| + V speak|˵ + N human|,young| + N human|,young| + ADJ aValue|ֵ,range|,all|ȫ + V study|ѧ,result=ignorant|֪ + N InstitutePlace|,space|ռ,police|,@detain|ס,#crime|,#punish| + V delimit| + N facilities|ʩ,@foster|,#livestock| + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + N clothing|,#body|,female|Ů + N fund|ʽ,#country| + N clothing|,#head|ͷ,past| + N character|,(China|й) + N tool|þ,*cover|ڸ,*decorate|װ +Ļ N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ,military| + N tool|þ,*cover|ڸ,*decorate|װ + N tool|þ,*cover|ڸ,*decorate|װ,#perform| + N tool|þ,*cover|ڸ + N tool|þ,*cover|ڸ,*decorate|װ + N mark|־ + N mark|־ + ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧲ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ +᧿Σ ADJ aValue|ֵ,circumstances|,dangerous|Σ,undesired|ݬ + N land|½,protruding|͹,desolate| + ADJ aValue|ֵ,similarity|ͬ,different| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|·,branch|֧ + N character|,(China|й) + N land|½ + N character|,surname|,human|,ProperName|ר + N land|½ + N CloudMist| + N land|½ + N land|½,#waters|ˮ +ᵽ N land|½,#waters|ˮ + N land|½ + N part|,%earth|,mouth| + N character|,(China|й) + N land|½ + N character|,(China|й) + N land|½,ProperName|ר,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,kind|,special| + N time|ʱ,special| + N character|,(China|й) +ɽ N land|½,ProperName|ר,(China|й) + V appear| + V appear|,politics| + N character|,(China|й) + V wounded| + N animal|,young| + N human|,family|,male|,young| + N animal|,young| + N human|,undesired|ݬ + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) +϶ ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,height|߶,tall| +ɽ N land|½,ProperName|ר,(China|й) + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + ADJ aValue|ֵ,form|״,rugged| + N part|,%land|½,head|ͷ +۷ N part|,%entity|ʵ,head|ͷ +ء V walk|,manner=slow| + V hesitate|ԥ + V obey|ѭ + V surrender| + V do|,manner=biased|ƫ + V do|,manner=biased|ƫ,undesired|ݬ +˽ V do|,manner=biased|ƫ,undesired|ݬ +˽ N fact|,deceive|ƭ,undesired|ݬ + ADJ aValue|ֵ,location|λ,hind| + ADJ aValue|ֵ,sequence|,ending|ĩ + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + N human|,future| + V SelfMove| + V walk| + N attribute|,property|,&entity|ʵ + V include|,military| + N information|Ϣ,*prove|֤ + V levy| + V request|Ҫ + N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,stiff|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + N beast| + N beast| + N beast| + V engage|,content=catch|׽ס,agricultural|ũ + ADJ aValue|ֵ,behavior|ֹ,sudden| +⧶ ADV aValue|ֵ,behavior|ֹ,sudden| +Ȼ ADV aValue|ֵ,behavior|ֹ,sudden| + N fact|,die|,#medical|ҽ +⨺ N beast| +⨺ N fruit|ˮ + N beast| + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ +⫱ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +⫼ ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ +ª ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lascivious|,undesired|ݬ + ADJ damage| + N beast| + N beast| + N beast| +ͷĿ ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + N beast| + N part|,%AnimalHuman|,*bite|ҧ + N beast| + ADJ qValue|ֵ,amount|,many| +Ե V please|ȡ,purpose=$upgrade| + V ize|̬,PatientAttribute=soft| + N material|,sweet|,?edible|ʳ + V tired|ƣ + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N food|ʳƷ + N food|ʳƷ + N payment| + N food|ʳƷ + ADJ aValue|ֵ,necessity|Ҫ,redundant| + ADJ aValue|ֵ,time|ʱ,hind| + N character|,surname|,human|,ProperName|ר + ADJ qValue|ֵ,amount|,many| + N food|ʳƷ + V cook| + V OutOfOrder|,#edible|ʳ + N food|ʳƷ + ADJ aValue|ֵ,taste|ζ,good|,desired| + V eat| + N human|,#occupation|ְλ,*cook| + N room|,@cook| +ҳ N room|,@cook| + V protect| + N attribute|,length|,&human| + N character|,surname|,human|,ProperName|ר + N InstitutePlace|,religion|ڽ + N house| + V GoOn| + V bear|е + N part|,%AnimalHuman|,body| + V receive| +ѡ V win|ʤ + V guess|² + V think|˼ + V guess|² + V guess|² + V think|˼ + V repent|û + V admit|,religion|ڽ + V repent|û + V angry| + V irritate|ŭ + V angry| + V sad|dz + V disobey|Υ + V disobey|Υ + V sorry|ϧ + V melancholy| + V joyful|ϲ + V shy| + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + V fear| + ECHO sound| + V sorrowful| + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| +Ȼ ADJ aValue|ֵ,circumstances|,happy|,desired| +ȻԵ V satisfied| + V sorrowful| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,happy|,desired| + V joyful|ϲ + ADV aValue|ֵ,behavior|ֹ,cautious|,desired| + V obey|ѭ + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + V disobey|Υ + ADJ aValue|ֵ,correctness|,wrong|,undesired|ݬ + ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V flee| + V respect|,target=human| + V satisfied| + V satisfied| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ +Ȼ V melancholy| + V melancholy| + V angry| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V fear| +Ȼ V fear| + ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + V stupefied|ľȻ + V stupefied|ľȻ +ͷ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ +ס V stupefied|ľȻ +㷲 V uneasy| +Ȼ ADJ aValue|ֵ,behavior|ֹ,strict| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + V tired|ƣ + V understand| + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + V expect| +ͷ ADJ aValue|ֵ,courage|,timid|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V ignorant|֪ +¶ ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + V shy| + V fasten|˩ + N tool|þ,*fasten|˩ + N character|,surname|,human|,ProperName|ר +Ʒ N character|,surname|,human|,ProperName|ר + N InstitutePlace|,@exam|,past| + N part|,%building|,royal|,mouth| + N character|,surname|,human|,ProperName|ר + V pity| + N place|ط,provincial|ʡ,ProperName|ר,(China|й) + V sad|dz + N part|,building|,mouth| + N part|,%place|ط,mouth| + N place|ط,#reside|ס + N place|ط,@ComeToWorld| + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,route|· + N place|ط,ProperName|ר,(China|й) + N part|,%building|,mouth| + N character|,(China|й) + N part|,%building|,mouth| + V supervise|,content=mouth| + N human|,#occupation|ְλ,*defend|,#building| + ADJ aValue|ֵ,occasion|,quiet|,desired| + ADJ aValue|ֵ,range|,all|ȫ +ؼ N community|,family|,all|ȫ + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,space|ռ,military|,@look|,@defend| + N house|,royal| + V lack|ȱ + N result|,wrong|,undesired|ݬ + V lack|ȱ + N character|,surname|,human|,ProperName|ר + CLAS NounUnit|,&InstitutePlace| + CLAS NounUnit|,&land|½ + N wood|ľ + V kill|ɱ + V damage| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V wash|ϴ,patient=hair|ë +ԡ V exist| +ԡ V wash|ϴ + N waters|ˮ,ProperName|ר,(China|й) + ECHO sound| + ECHO sound| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N CloudMist| +һ V collude| +һ V fit|ʺ +ˮ N water|ˮ,liquid|Һ,waste|,#livestock| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,area|,wide| + N place|ط,#human|,country|,politics|,great|ΰ + N part|,%AnimalHuman|,waste|,liquid|Һ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,temperature|¶,chilly| + N character|,surname|,human|,ProperName|ר + V StateChange|̬ + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial| + N material|,?drinks|Ʒ + CLAS NounUnit|,&waters|ˮ + ADJ aValue|ֵ,depth|,deep| + V disappear|ʧ +û V disappear|ʧ + V disappear|ʧ + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,clearness|,clear| + V soak| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,trueness|α,true|,desired| + ADJ aValue|ֵ,clearness|,clear| + V look| + V read| + N land|½,surrounding|Χ,#waters|ˮ + N land|½,surrounding|Χ,#waters|ˮ + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,small|С,linear| +丰 ADJ qValue|ֵ,amount|,few| + V flow| + N waters|ˮ,linear| + V wash|ϴ + N land|½ + N waters|ˮ,ProperName|ר,(China|й) + V wash|ϴ,patient=material| + N waters|ˮ,ProperName|ר,(China|й) + V despise| + N facilities|ʩ,#liquid|Һ,linear| +ְ V disobey|Υ,content=duty| +ְ N fact|,disobey|Υ,content=duty| + N place|ط,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + N character|,(China|й) + N sound|,#water|ˮ + V cook| + V wash|ϴ + V cook| + V food|ʳƷ + V BlockUp| + V disappear|ʧ + V sink|³ +û V destroy| +û V disappear|ʧ + V destroy| + V disappear|ʧ + ADJ aValue|ֵ,form|״,dented| +а ADJ aValue|ֵ,width|,narrow|խ + N waters|ˮ,ProperName|ר,(China|й) +Ⱦ V AlterColor|ɫ +Ⱦ V PlayUp|Ĵ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ +̫ N place|ط,capital|,ProperName|ר,(Canada|ô) + N part|,%land|½,#waters|ˮ,edge| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,area|,wide| + ADJ aValue|ֵ,kind|,ordinary| + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + ADJ aValue|ֵ,dampness|ʪ,wet|ʪ + N phenomena|,disorder|,undesired|ݬ + N room|,@excrete|й + ADJ aValue|ֵ,clearness|,blurred| + N chemical|ѧ + ADJ aValue|ֵ,stickiness|,sticky| + N stone|ʯ,#AnimalHuman|,waste| + ADJ qValue|ֵ,amount|,many| + N waters|ˮ + N waters|ˮ,surfacial| + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,weak| + V transport| + V transport| + N waters|ˮ,ProperName|ר,(China|й) + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V ComeTogether| + N waters|ˮ,surfacial| + N water|ˮ + V filter| + V soak| + N water|ˮ + N water|ˮ + N RainSnow|ѩ,good| + V disappear|ʧ +Ȼ N weep| + N edible|ʳ,*feed|ι,#animal| + N place|ط,ProperName|ר,(China|й) + V flow| + N waters|ˮ,linear| + N waters|ˮ,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,occasion|,quiet|,desired| +̨ N character|,surname|,human|,ProperName|ר + N character|,surname|,human|,ProperName|ר + N waters|ˮ,ProperName|ר,(China|й) + V moisten|ʪ + V soak| +Ⱦ V soak| +Ⱦ V teach| +ʪ V moisten|ʪ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + N facilities|ʩ,#waters|ˮ,*protect| + V wash|ϴ + ADJ aValue|ֵ,fullness|,empty| + ADJ aValue|ֵ,area|,wide| +嫺 N land|½,surfacial|,barren| + N waters|ˮ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,quality|,great|ΰ,desired| + ADJ qValue|ֵ,amount|,many| + V delay| + ADJ aValue|ֵ,occasion|,quiet|,desired| + N character|,surname|,human|,ProperName|ר + V forgive|ԭ + N attribute|,occupation|ְλ,&human|,royal| + N house| + N house|,royal| + N human|,royal| + V awake| + N house| + N place|ط,broad| + N earth| + ADJ aValue|ֵ,behavior|ֹ,unfortunate| + N character|,surname|,human|,ProperName|ר + N human|,undesired|ݬ,*disable|м,#leg| + N livestock| + ADJ aValue|ֵ,behavior|ֹ,fair|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N disease|,scope=speak|˵ + V welcome|ӭ + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ ADJ aValue|ֵ,similarity|ͬ,different| +Ȼ V aValue|ֵ,similarity|ͬ,different| +Ȼͬ ADJ aValue|ֵ,similarity|ͬ,different| + ADJ aValue|ֵ,similarity|ͬ,different| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + ADJ aValue|ֵ,distance|,near| + N character|,(China|й) + ADV aValue|ֵ,behavior|ֹ,forthright|ˬ + N facilities|ʩ,route|· + N method| + N character|,surname|,human|,ProperName|ר +ң ADJ aValue|ֵ,behavior|ֹ,free| +ң V escape|,cause=$punish|,#police| + N facilities|ʩ,route|· + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,strength|,strong|ǿ,desired| +پ ADJ aValue|ֵ,posture|,strong|ǿ,desired| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,duration|,TimeLong| + V dream| + V walk| + V SelfMove| + V read|,#internet| + V fill| + V walk| + V walk| + N character|,(China|й) +ѡ V select|ѡ + ADJ aValue|ֵ,behavior|ֹ,hasty|,undesired|ݬ + V meet| + ADJ aValue|ֵ,distance|,far|Զ + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,attire|װ,careless|,undesired|ݬ + N tool|þ,*wipe| + N celestial| + N livestock| + N part|,%AnimalHuman|,base| + ADJ aValue|ֵ,distance|,near| + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ + ADJ aValue|ֵ,physique|,weak|,undesired|ݬ +ͷ N human|,timid|,undesired|ݬ + N clothing|,#foot| + N weapon|,*firing| + N weapon|,*firing| + V remove| + V help| + V sell| + N human|,royal|,female|Ů +ɫ ADJ aValue|ֵ,color|ɫ,red| + N human|,royal|,female|Ů + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,family|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N human|,female|Ů + N human|,family|,female|Ů + N human|,family|,mass|,female|Ů + N character|,(China|й) + ADJ aValue|ֵ,earliness|,late| + N human|,family|,female|Ů + PRON {firstPerson|,female|Ů} + PRON {firstPerson|,female|Ů} + N character|,(China|й) + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + V GetMarried|,undesired|ݬ +氷 N human|,male|,*love|,*mating|,undesired|ݬ +永 N human|,female|Ů,*love|,*mating|,undesired|ݬ +氾 V GetMarried|,undesired|ݬ +ͷ N human|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +̺ ADJ aValue|ֵ,color|ɫ,colored| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| +浾 ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + ADJ aValue|ֵ,ability|,able|,desired| + ADJ aValue|ֵ,behavior|ֹ,gracious|,desired| + N human|,family|,female|Ů + ADV aValue|ֵ,behavior|ֹ,diligent|,desired| + ADV aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,demeanor|,gracious|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N character|,(China|й) + N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潸 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) +潼 N human|,female|Ů,crime|,#SeekPleasure|Ѱ,undesired|ݬ,(be a prostitute|) + N human|,#occupation|ְλ,employee|Ա,female|Ů +Ů N human|,#occupation|ְλ,employee|Ա,female|Ů + N character|,(China|й) +濲 ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N human|,aged|,female|Ů + N human|,female|Ů,beautiful|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + V GetMarried| + V MakeAppointment|Լ +ź V reconcile| + N character|,(China|й) + V equal| + ADJ aValue|ֵ,prettiness|,ugly|,undesired|ݬ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| +̺ ADJ aValue|ֵ,color|ɫ,red| +Ȼ ADJ aValue|ֵ,bearing|̬,gracious|,desired| + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +μ V SeekPleasure|Ѱ,#mating|,undesired|ݬ +ο N human|,*SeekPleasure|Ѱ,#mating|,undesired|ݬ + V SeekPleasure|Ѱ,#mating|,undesired|ݬ +϶ N humanized| + N character|,(China|й) + V WhileAway| +Ƥʿ N human|,male|,flighty|,undesired|ݬ +ƤЦ V laugh|Ц +Ϸ V WhileAway| +Ц V laugh|Ц +ӱ V change| + N human|,#occupation|ְλ,female|Ů,*feed|ι,employee|Ա + N human|,female|Ů +׸ N human|,female|Ů +׾ N human|,female|Ů +׾ V lose|ʧȥ,possession=family| + N character|,(China|й) + V urge|ʹ,ResultEvent=believe| + V GiveBirth| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ +Ȼ ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N InsectWorm| + N character|,(China|й) + N AlgaeFungi|ֲ + N livestock|,strong|ǿ + N livestock| + N livestock|,mass| + N InstitutePlace|,@reside|ס,official| + N facilities|ʩ,route|· +վ N facilities|ʩ,space|ռ,#LandVehicle|,past| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N livestock|,weak| + N livestock|,weak| + ADJ aValue|ֵ,courage|,brave|,desired| +罫 N human|,military|,brave| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock|,red| + ADJ qValue|ֵ,amount|,double| + N text| +֦ ADJ aValue|ֵ,necessity|Ҫ,redundant| + N livestock|,black| + N livestock|,female|Ů + V seek|ıȡ + N livestock|,strong|ǿ + N livestock|,red| + ADJ aValue|ֵ,courage|,brave|,desired| + N livestock| + N livestock|,strong|ǿ + V SelfMove|,manner=fast| + V stand|վ + N material|,?clothing| + N tool|þ,#wind|,*cool| + ADJ qValue|ֵ,amount|,many| + V FormChange|α,StateFin=spread| + V weaken| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple| + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N image|ͼ + N tool|þ,linear|,*fasten|˩ + N material|,?clothing| +秲 N material|,?clothing| +ɴ N material|,?clothing| + N tool|þ,linear|,*fasten|˩ + ADJ aValue|ֵ,standard|׼,useless|,undesired|ݬ + V inferior| + V fasten|˩ + ADJ aValue|ֵ,color|ɫ,red|,NotLight|Ũ + ADJ aValue|ֵ,color|ɫ,purple|,NotLight|Ũ + N material|,?clothing| + N material|,?clothing| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,color|ɫ,red| +糺 ADJ aValue|ֵ,color|ɫ,red| + V fasten|˩ + V wrap| +統 N fittings|,%clothing|,*decorate|װ +統 V wrap|,instrument=fittings|,#clothing|,#decorate|װ + N tool|þ,linear|,*fasten|˩ +練 N tool|þ,*decorate|װ +練 N bird| + V twine| + ADJ aValue|ֵ,color|ɫ,black| +˿ N tool|þ,*decorate|װ +ÿ N character|,surname|,human|,ProperName|ר + N material|,?clothing| + ADJ aValue|ֵ,behavior|ֹ,cautious|,desired| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + N material|,?clothing| + N clothing|,*salute|¾,#die| + N material|,?clothing| +ͷ ADJ aValue|ֵ,amount|,many| + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,trueness|α,fake|α,undesired|ݬ + N character|,(China|й) + N character|,surname|,human|,ProperName|ר +˿ V produce|,industrial| +˿ N InstitutePlace|,@produce|,factory|,industrial| + V fasten|˩ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + V circle| + N tool|þ,linear|,*guide|,#livestock| + N tool|þ,linear|,*guide|,#livestock| + V fasten|˩ + NUM qValue|ֵ,amount|,cardinal| + ADJ aValue|ֵ,quality|,negligible|,undesired|ݬ +С N human|,undesired|ݬ + N chemical|ѧ + N place|ط,ProperName|ר,(China|й) + N waters|ˮ,ProperName|ר,(China|й) + ADJ aValue|ֵ,value|ֵ,precious|,desired| + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ +ް N tool|þ,*print|ӡˢ + V slander|̰ + V pollute|ʹ + V slander|̰ + N fish| + N character|,(China|й) + N stone|ʯ + N tool|þ,*decorate|װ,$PutOn| + N tool|þ,*decorate|װ +ͩ N tree| + N place|ط,ProperName|ר,(China|й) + N tool|þ + N character|,(China|й) + N stationery|ľ + N material|,?tool|þ,#decorate|װ,precious| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,kind|,special|,desired| + N character|,(China|й) + N stone|ʯ,treasure|䱦 + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| +b N sound|,#water|ˮ + N material|,?tool|þ,#decorate|װ,precious| + N treasure|䱦 + N character|,surname|,human|,ProperName|ר + N tool|þ,#decorate|װ,precious| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N material|,?tool|þ,#decorate|װ,precious| + N stone|ʯ,treasure|䱦 + N attribute|,quality|,weak|,undesired|ݬ,&thing| + N result|,undesired|ݬ +覲 ADJ aValue|ֵ,standard|׼,average|,desired| +覴 N attribute|,quality|,weak|,undesired|ݬ,&thing| +覴 N result|,undesired|ݬ +褻 ADJ aValue|ֵ,rank|ȼ,average| + N place|ط,country|,ProperName|ר,(Nauru|³) +³ ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +³ N place|ط,capital|,ProperName|ר,(Nauru|³) +³ N language|,#country|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,brightness|,bright| +貶Ŀ ADJ aValue|ֵ,brightness|,bright| + N stone|ʯ + N material|,?tool|þ,#decorate|װ,precious| + N tool|þ,#decorate|װ,precious| + N material|,?tool|þ,#decorate|װ,precious| + ADJ aValue|ֵ,bearing|̬,thrifty|,desired| +Ȼ ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + N material|,?tool|þ,#decorate|װ,precious| + N material|,*decorate|װ +赻 V reject|ؾ +赻 V return| +л V reject|ؾ + N trace|,#OutOfOrder| + V contain| + N method|,*fight|,military| + N tool|þ,cubic|,@put| + N method|,*fight|,military| + N character|,surname|,human|,ProperName|ר + V fear|,cause=wrong| + N part|,%plant|ֲ,limb|֫ + N tool|þ,*pick|ʰ + N tool|þ,*pick|ʰ,agricultural|ũ + N part|,%plant|ֲ,limb|֫ + N fruit|ˮ + N tree| + N part|,%plant|ֲ,limb|֫ + N time|ʱ,ending|ĩ + ADJ aValue|ֵ,distance|,far|Զ +ƺ V disappear|ʧ + V disappear|ʧ + V stab| + N tree| + ADJ aValue|ֵ,courage|,brave| + N bird| +ɽ N human|,military|,brave| + N part|,%MusicTool| + N part|,%machine| + N fruit|ˮ + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N tree| + N facilities|ʩ,space|ռ,#livestock| + N part|,%house|,#eye| + N tool|þ,cubic|,#die|,@store| +ѳ N LandVehicle|,*transport|,#human|,#die| + N tool|þ,*recreation| + ADJ aValue|ֵ,fullness|,empty| +ոӹ V endeavour| + N fruit|ˮ + N fruit|ˮ + N tree| + N tool|þ,past| + N part|,%ship| + N tree| + N tree| + N chemical|ѧ + N tree| +ེ N material| + N tool|þ,cubic|,@put| + N part|,%plant|ֲ,limb|֫ + N part|,%ship| + N tool|þ,police|,#crime|,*detain|ס + N tool|þ,police|,#crime|,*detain|ס + N tree| + N human|,desired|,important|,able| + N human|,important|,desired| + N tree| + N tree| + N part|,%building|,bone| + N part|,%building|,bone| + N tree| +ѱ ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N tree| + N tree| + N crop|ׯ,?material| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + ADJ aValue|ֵ,content|,interesting|Ȥ,desired| + N entity|ʵ,#religion|ڽ + N place|ط,country|,ProperName|ר,(India|ӡ) +ٸ N place|ط,country|,ProperName|ר,(Europe|ŷ) + N language|,#country|,ProperName|ר + N tool|þ,police|,#crime|,*detain|ס + N tool|þ + N place|ط + N place|ط,@ComeToWorld| + N paper|ֽ + N tree| + ADJ aValue|ֵ,bearing|̬,disorder|,undesired|ݬ + ADJ aValue|ֵ,circumstances|,disorder|,undesired|ݬ + N tool|þ,cubic|,@put| + N part|,%ship| + V beat| + N tool|þ,*beat| + N tool|þ,cubic|,#die|,*store| + N human|,family|,male| + N tree| + N character|,(China|й) + N tool|þ,#beat|,#metal| + N tree| +ľ N tree| + N tree| + N fruit|ˮ + N tree| + N tool|þ,*beat| + N tool|þ,cubic|,*store|,#die| + N ship| + V fill| + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N tool|þ,*clothing|,#foot| + N tool|þ,*clothing|,#head|ͷ + N part|,%building|,mouth| + N part|,%house|,bone| + N text| + N tree| + N fruit|ˮ + N tree| + N fruit|ˮ + N fruit|ˮ + N fruit|ˮ,$eat| + N furniture|Ҿ,space|ռ,@sleep|˯ + N part|,%artifact|˹,*fasten|˩,#wood|ľ +ͷ N part|,%artifact|˹,*fasten|˩,#wood|ľ + N part|,%artifact|˹,*fasten|˩,#wood|ľ + N facilities|ʩ,space|ռ + ADJ aValue|ֵ,circumstances|,wane|˥,undesired|ݬ +ľ V disheartened| + N fruit|ˮ + N tree| + N fruit|ˮ + N tree| + N place|ط,city|,ProperName|ר,(China|й) + N tree| + N tree| + N part|,%ship| + N tree| + N fruit|ˮ + ADJ aValue|ֵ,color|ɫ,green| + N SportTool|˶ + N fact|,sport| + N tool|þ,cubic|,@put| + N material|,$burn| +Է N human|,#occupation|ְλ,agricultural|ũ + N part|,%ship| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N fruit|ˮ +ٺ ADJ aValue|ֵ,color|ɫ,red| +ٻ ADJ aValue|ֵ,color|ɫ,yellow| + N fruit|ˮ + N part|,%building|,head|ͷ + N part|,%inanimate|,%space|ռ,edge| + N part|,%inanimate|,edge| +ܹ N part|,%building| + N part|,%building|,head|ͷ + N part|,%building|,bone| + N plans|滮 + N beast| + V die| + V die| +л V die| + V die| + V die| + V die| + V die| + V put| +龫 V think|˼ + V put|,patient=tool|þ + V transport|,patient=tool|þ +복 N LandVehicle|,#die| +ǹ N InstitutePlace|,@salute|¾,@burn|,#die| + N fact|,salute|¾,#die| + V put| + N part|,%LandVehicle|,leg| + N character|,(China|й) + V lose|ʧȥ + V surpass|ǿ + N fact| + N part|,%LandVehicle| + N part|,%LandVehicle|,past| + V sorrowful| + N LandVehicle|,past| + V cease|ͣ + V end|ս +ꡱ V cease|ͣ,content=compile|༭ +ѧ V cease|ͣ,content=study|ѧ + N part|,%machine| + V PropUp|֧ + V beat| + ADJ aValue|ֵ,kind|,special| + N weapon|,stab| + V hide| + V restrain|ֹ + ADJ aValue|ֵ,GoodBad|û,good|,desired| + N character|,surname|,human|,ProperName|ר +갷 V estimate| + N place|ط,city|,ProperName|ר,(China|й) + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N location|λ,space|ռ,angular| + N part|,%earth|,angular| +깶 N location|λ,angular| + ADJ aValue|ֵ,area|,wide| + N sky| +꼻һ V exist|,manner=TimeShort| + ADJ aValue|ֵ,brightness|,bright| + N time|ʱ,morning| + V illuminate| + N lights|,#celestial| + ADJ aValue|ֵ,circumstances|,free|,desired| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,relatedness|,intimate|,desired| + ADJ aValue|ֵ,age|,aged| + N human|,aged|,desired| + N human|,aged|,desired| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,circumstances|,flourishing|,desired| + ADJ aValue|ֵ,brightness|,bright| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,earliness|,late| + N character|,surname|,human|,ProperName|ר + N lights|,#celestial| +ӳ V illuminate| + ADJ aValue|ֵ,hardness|Ӳ,soft| + V farewell| +Υ V farewell| + ADJ aValue|ֵ,behavior|ֹ,hidden|,undesired|ݬ + ADJ aValue|ֵ,content|,difficult|,undesired|ݬ + N lights|,#celestial| + N time|ʱ,night| + N lights|,#celestial| + N lights|,#celestial| + ADJ aValue|ֵ,source|Դ,original|ԭ + V beautify| + N character|,surname|,human|,ProperName|ר + V arrive| + V GiveAsGift| + V PassOn| +ݱ N fish| + V damage| +Ц ADJ aValue|ֵ,impression|ӡ,bad|,undesired|ݬ + N tool|þ,$GiveAsGift| + V estimate| + ADJ aValue|ֵ,fullness|,full| + V help| + V help| + V help|,patient=human| + V grant| + N tool|þ,$GiveAsGift| + V investigate| + V look| + V need|,manner=greedy|̰ + V meet| + V meet| + V meet|,royal| + V CausePartMove| + V look| + ADJ aValue|ֵ,behavior|ֹ,stubborn|,undesired|ݬ + ADJ aValue|ֵ,sex|Ա,female|Ů +ţ N beast| +ţ N beast| + N location|λ,angular| + N part|,%AnimalHuman|,*feel| +ţ N livestock| +ţ N livestock| + V reward| + V reward| + V bring|Я + V lift| + V pick|ʰ + V split|ƿ + N part|,%AnimalHuman|,hand| +뢻 V arrange| + ADJ aValue|ֵ,age|,aged| +֮ N time|ʱ,#age|,aged| + N part|,%animal|,hair|ë + N part|,%bird|,hair|ë + N SportTool|˶ + N material|,?clothing| + N gas| + N gas| + N gas| + N gas| + ADJ aValue|ֵ,density|ܶ,dense| + N document|,royal| + N part|,%house|,#eye| + V punish| + N chemical|ѧ + N chemical|ѧ + N part|,%AnimalHuman|,arm| + ADJ aValue|ֵ,trueness|α,true|,desired| + N part|,%AnimalHuman|,viscera| + N edible|ʳ + N edible|ʳ + N character|,(China|й) +ͳ V explain|˵ + V quote| +ι N part|,%AnimalHuman|,bone| + N clothing|,#head|ͷ + N human|,future| + N chemical|ѧ + N part|,%AnimalHuman|,viscera| + N part|,%AnimalHuman|,leg| +֬ N tool|þ,*MakeUp|ױ +֬ ADJ aValue|ֵ,color|ɫ,red| +˿ ADJ aValue|ֵ,reputation|,glorious|,desired| + N livestock| + N beast| + N part|,%AnimalHuman|,viscera| + N chemical|ѧ,*feed|ι,#crop|ׯ,agricultural|ũ + N chemical|ѧ + N material|,?clothing| + V cook| + V cook| + V cook| + N part|,%AnimalHuman|,leg| + ADJ aValue|ֵ,fatness|,fat| + ADJ aValue|ֵ,quality|,fertile|,desired| + N part|,%AnimalHuman|,body| + N part|,%AnimalHuman|,flesh| + V shy| + N beast| + N part|,%AnimalHuman|,mouth| + N disease| + N part|,%AnimalHuman| +Ĥ N part|,%AnimalHuman| + N human|,desired|,important|,able| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,clearness|,blurred| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V shy| + ADJ aValue|ֵ,odor|ζ,stinky|,undesired|ݬ + V respect| + V inhale| +쫷 N wind| + N wind| + N wind| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,content|,opened| +쳼 ADJ aValue|ֵ,attachment|,#country|,ProperName|ר +쳼 N place|ط,country|,ProperName|ר +쳼 N human|,(Fiji|쳼) +쳼 N language|,#country|,ProperName|ר +Ȼ ADJ aValue|ֵ,content|,opened| +촷 N shape| + N character|,surname|,human|,ProperName|ר + PREP {location} + ECHO {modality|} + PREP {time} + N tool|þ,mark|־ + N mark|־ + N tool|þ,mark|־ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V cook| + V cook| + N part|,%tool|þ,#illuminate|,important| +ʾ V ShowOff|ҫ +ҫ V ShowOff|ҫ + ADJ aValue|ֵ,brightness|,bright| + N lights|,#celestial| + N lights|,#fire| + V StateChange|̬,StateFin=liquid|Һ,industrial| + V WarmUp| + V cook| + V damage| + N fire| + V StateChange|̬,StateFin=dry| + V illuminate| + V cook| + V burn| + V produce|,industrial| + V burn| + V cook| + N tool|þ,cubic|,@put| + ADJ aValue|ֵ,brightness|,bright| + V cook| + V StripOff|ȥ + V cook| + N symbol|,#quantity| + V press|ѹ +ٶ N tool|þ,*AlterForm|״,#level|ƽ + V AlterForm|״,PatientAttribute=level|ƽ +¹ N human|,#occupation|ְλ,industrial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N human|,#occupation|ְλ,*cook| + N tool|þ,*cook| + V cover|ڸ + ADJ aValue|ֵ,temperature|¶,warm| + N attribute|,brightness|,&inanimate| + N lights|,#morning| +΢ ADJ aValue|ֵ,brightness|,dark| + V inhale| +涷 N tool|þ,cubic|,@put| + N tool|þ,*shut|ر + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N human|,#occupation|ְλ,*TakeCare|,employee|Ա + N part|,building|,mouth| +ҳ N part|,%publications|鿯 + V salute|¾ + N phenomena|,#lucky|,happy|,desired| + V remove| + V remove| + N phenomena|,#lucky|,happy|,desired| + N attribute|,occupation|ְλ,&human|,royal| + N phenomena|,lucky|,desired| + N facilities|ʩ,space|ռ,@salute|¾ + N facilities|ʩ,space|ռ,@salute|¾ + ADJ aValue|ֵ,circumstances|,happy|,desired| + ADJ aValue|ֵ,circumstances|,happy|,desired| + V thing|,religion|ڽ + V think|˼,religion|ڽ + N facilities|ʩ,space|ռ,religion|ڽ + V PassOn|,possession=power| +ʦ N human|,religion|ڽ + N attribute|,kind|,&religion|ڽ + N phenomena|,lucky|,desired| + V remove| + V uneasy| + ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ +Ȼ ADJ aValue|ֵ,behavior|ֹ,indifferent|Į,undesired|ݬ + V despise| + ADJ aValue|ֵ,kind|,special| + N disease| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + ADJ aValue|ֵ,style|,free|,desired| +޼ V RashlyAct| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + N result|,wrong|,undesired|ݬ + V delay| + V due| + V rest|Ϣ + ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| + ADJ aValue|ֵ,scene|,exuberant|ï,desired| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + CONJ {EventResult|¼} + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,occasion|,crowded|,undesired|ݬ + CLAS NounUnit|,&inanimate|,mass| + ADJ aValue|ֵ,area|,wide| + N stone|ʯ + N stone|ʯ +ʯ N stone|ʯ + N stone|ʯ + N place|ط,ProperName|ר,(China|й) + V break|۶ + N chemical|ѧ + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ +ÿ N part|,%crop|ׯ,skin|Ƥ + N shape| + N material|,@building| + N tool|þ,*rub|Ħ + V drill|ϰ + V mobilize| + N part|,%tool|þ,#measure| + N tool|þ,*grind|ĥ,#crop|ׯ +ͱ ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + V touch| + N land|½ + N land|½,surfacial|,barren|,undesired|ݬ + N tool|þ,*grind|ĥ,#crop|ׯ + N facilities|ʩ,*carve|,*salute|¾ + N fact|,punish|,past| + N part|,%character| + V punish| + V press|ѹ + N tool|þ,*grind|ĥ,#crop|ׯ + N tool|þ,*grind|ĥ,#crop|ׯ + N MusicTool| + N MusicTool|,religion|ڽ + ADJ aValue|ֵ,form|״,dented| + V sleep|˯ + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,#eye| + N part|,%AnimalHuman|,skin|Ƥ + V look| + N emotion|,hate|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + V look| +˯ V sleep|˯ +Ŀ V AtEase| + V look| +Ŀ V look| +Ŀ V stupefied|ľȻ + V look| + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N part|,%land|½,#planting|ֲ,#crop|ׯ,agricultural|ũ + N attribute|,size|ߴ,surfacial|,&land|½ + N land|½,@planting|ֲ,#crop|ׯ,agricultural|ũ + N place|ط,#country| + N community|,ProperName|ר,(China|й) + N community|,ProperName|ר,(China|й) + CLAS unit|λ,&area| + N place|ط,village| + N beast| +ബ N ship| + V suffer| + V SufferFrom| + V die|,police| + V delay| + V detain|ס,police| + V restrain|ֹ + V stay|ͣ + V restrain|ֹ + V stay|ͣ + V stay|ͣ,police| +Ѻ V detain|ס,police| + N tool|þ,*catch|׽ס,#fish| + V wash|ϴ + V wash|ϴ,patient=skin|Ƥ +ϴ V wash|ϴ + V mobilize| + N metal| + N tool|þ,*fasten|˩ + N metal| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N metal| + N metal| +Ѱ N chemical|ѧ +ѺϽ N material|,metal| + ADJ aValue|ֵ,size|ߴ,big| + ADJ qValue|ֵ,amount|,many| + N material|,metal|,surfacial| +Լ N stationery|ľ,past| + N character|,surname|,human|,ProperName|ר + N metal| + N treasure|䱦,precious| + N metal| + N MusicTool| + N metal| + N metal| + V StateChange|̬,StateFin=liquid|Һ + V exhaust| + V weaken| + N tool|þ + N metal| + N metal| + N metal| + N tool|þ,#sound| + V catch|׽ס,police| + N tool|þ,police|,*catch|׽ס,#crime| + N tool|þ,*hold| + N MusicTool| + N tool|þ,cubic|,*cook| + N money|,(Thailand|̩) + V gather|ɼ,manner=slow| +Ϥ V equal| + V venture|ð + N tool|þ,#crop|ׯ,agricultural|ũ + V choose|ѡ + V measure|,#weight| + V PutInOrder| + ADJ aValue|ֵ,behavior|ֹ,proper|,desired| + V order| + V order| + ADJ aValue|ֵ,SmoothFinish|,polished| + ADJ aValue|ֵ,will|־,strong|ǿ,desired| + N sound| + N metal| + N MusicTool| + N metal| +Ȼ ADJ aValue|ֵ,SoundVolume|,loud| + N sound| + ADJ aValue|ֵ,SmoothFinish|,polished| +ﭹ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N metal| + N metal| + N tool|þ,*rub|Ħ +ﱵ N tool|þ,*rub|Ħ + N tool|þ,*fasten|˩ + V suffer|,content=detain|ס,#police| + V carve| + N chemical|ѧ + V cut| + N tool|þ,*cut| + N tool|þ,*cut| + N wealth|Ǯ + V BlockUp| + V detain|ס,police|,crime| + N phenomena|,bad| + N disease|,TimeLong| + N metal| + ADJ aValue|ֵ,form|״,sharp| + N weapon|,stab| + CLAS unit|λ,&weight| + N fact|,secondary| + N money|,few| +ؽ ADJ aValue|ֵ,tolerance|,miser|,undesired|ݬ + V carve| +ƶ ADJ aValue|ֵ,behavior|ֹ,lasting|,desired| + N metal| + N metal| + N part|,%tool|þ,*cut|,heart| + N tool|þ + V carve| + CLAS unit|λ,&weight| + N metal| + V carve| +ι V remember|ǵ +λ V carve| +ο V carve| +ο V carve| + N sound| + N metal| + N metal| + N character|,(China|й) + N attribute|,name|,&weapon|,ProperName|ר,past|,(China|й) + N metal| + V carve| +Կ V carve| + V carve| + N metal| + ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| +ֽ ADJ aValue|ֵ,property|,$apply|ͿĨ,#metal| + N tool|þ,*decorate|װ,$PutOn| + CLAS unit|λ,&weight| + N metal| + N character|,(China|й) + N metal| + N weapon|,hidden| +ھ N InstitutePlace|,*protect| +ڿ N human|,#occupation|ְλ,*protect| +ʦ N human|,#occupation|ְλ,*protect| +ͷ N human|,#occupation|ְλ,*protect| + V cut|,industrial| +۴ N machine|,*produce| +ۿ N part|,%inanimate|,mouth|,industrial| + N tool|þ + N MusicTool| + N part|,weapon|,*firing| + V cut| + V cut|,industrial| + N metal| + N part|,%weapon|,head|ͷ,$firing| + N character|,surname|,human|,ProperName|ר + N tool|þ,*dig|ھ +ͷ N tool|þ,*dig|ھ + N metal| + N metal| + V press|ѹ,industrial| + N metal| + N metal| + V split|ƿ + N tool|þ,*split|ƿ + N tool|þ,*split|ƿ + N money| +ˮ N chemical|ѧ + N part|,%tool|þ,#livestock| + N part|,%AnimalHuman|,*listen| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,*decorate|װ + N tool|þ,*decorate|װ + N metal| + N MusicTool| + N part|,%tool|þ,#livestock|,#head|ͷ + N weapon|,hidden| + V PayAttention|ע + N character|,surname|,human|,ProperName|ר + N tool|þ,cubic|,@put| + CONJ {supplement|ݽ} + ADJ aValue|ֵ,height|߶,low| + N human|,low| + N bird| +ܦ N part|,%building|,skin|Ƥ + ADJ aValue|ֵ,fullness|,empty| + N part|,%plant|ֲ,embryo| + N part|,%crop|ׯ,skin|Ƥ + N part|,%plant|ֲ,embryo| + NUM qValue|ֵ,amount|,cardinal|,mass| + N place|ط,ProperName|ר,(China|й) + N edible|ʳ,*feed|ι,#animal|,generic|ͳ + V feed|ι + V prepare|׼,content=fight|,military| + N crop|ׯ + N part|,%plant|ֲ,body| + N material|,?edible|ʳ,#crop|ׯ + V planting|ֲ,target=self| + N character|,surname|,human|,ProperName|ר + N material|,?edible|ʳ,#crop|ׯ + N FlowerGrass|,undesired|ݬ +ݬ N human|,undesired|ݬ + N character|,(China|й) + N crop|ׯ + V know|֪ + N time|ʱ,year| + V know|֪ + N human|,friend| +֪ V know|֪ + N character|,(China|й) + N crop|ׯ + N humanized| + N character|,(China|й) + ADJ aValue|ֵ,stickiness|,sticky| + N InsectWorm| + ADJ aValue|ֵ,concentration|Ũ,concentrated| + N attribute|,stickiness|,&inanimate| + N {stickiness|} +𤸽 V fasten|˩ + V fasten|˩ +ϼ N material|,*fasten|˩ + ADJ aValue|ֵ,speed|ٶ,slow| + ADJ aValue|ֵ,stickiness|,sticky| +𤽺 N material|,?clothing| +𤽺ά N material| + V fasten|˩ + N material|,?food|ʳƷ,#crop|ׯ +Ĥ N part|,%AnimalHuman| +Ĥ N disease| + N stone|ʯ + N attribute|,stickiness|,&inanimate| +Һ N part|,%AnimalHuman|,liquid|Һ + N attribute|,odor|ζ,fragrant|,&physical| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + ADJ aValue|ֵ,odor|ζ,fragrant|,desired| + N part|,%fruit|ˮ,flesh| + N part|,%physical|,flesh| + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N character|,(China|й) + V obey|ѭ,religion|ڽ + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + N celestial| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,color|ɫ,white| + N part|,%human|,white|,*bite|ҧ +𩷯 N chemical|ѧ + N part|,%human|,head|ͷ,white| + V endeavour| + N celestial| +µ ADJ aValue|ֵ,brightness|,bright| + ADJ aValue|ֵ,color|ɫ,white|,&human| + ADJ aValue|ֵ,color|ɫ,white| + ADJ aValue|ֵ,size|ߴ,big| + N plant|ֲ + N character|,(China|й) + N plant|ֲ,$eat| + N place|ط,city|,ProperName|ר,(China|й) + N facilities|ʩ,route|· + N part|,%building|,nerve| + N bird| + V ComeTogether| + V assemble|ۼ +𯼯 V ComeTogether| +𯼯 V assemble|ۼ + ADJ aValue|ֵ,fatness|,bony|,undesired|ݬ + N bird| + N tool|þ,*WhileAway| +β N FlowerGrass| + N bird| + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ +ĸ N human|,female|Ů,#SeekPleasure|Ѱ,undesired|ݬ + N bird|,poison| + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + V kill|ɱ,instrument=poison| +𲶾 N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N drinks|Ʒ,$addict|Ⱥ,poison|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| +β N artifact|˹,*decorate|װ + N artifact|˹,*decorate|װ + N attribute|,kind|,&bird| + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ +𺺷 ADJ aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N bird| + N character|,(China|й) + N character|,(China|й) + N bird| + N human|,family|,mass| + ADJ aValue|ֵ,relatedness|,intimate|,desired| +O N human|,$ComeTogether| + N character|,(China|й) + N bird| + N bird| + N character|,(China|й) + N bird| + N tool|þ,$firing| + N part|,%tool|þ,heart|,#weapon|,#AimAt|,#firing| + N purpose|Ŀ + N tool|þ,#weapon|,$AimAt|,$firing| + V wait|ȴ + V stand|վ + V expect| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N bird| + N bird| + N bird| + N clothing| +°ٽ ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + N character|,(China|й) + N bird| + N character|,(China|й) + N bird| + N bird| + N bird| +ӥ N bird| + N bird| + N tool|þ,*WhileAway| +ӷ V roll| + N bird| + N character|,(China|й) +и N bird| +и ADJ aValue|ֵ,color|ɫ,green| + N bird| + N fish| + N disease|,#fever| +ѧ V imitate|ģ + N character|,(China|й) + N bird| + N FlowerGrass|,?medicine|ҩ + N bird| + N character|,(China|й) +Ӹ N bird| + N character|,(China|й) +ݺ N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N bird| + N disease| +۴ N disease| + N disease| + N disease| + N disease| + N disease| +޴ N tool|þ,*cure|ҽ,*wrap|,medical|ҽ + N disease| + N character|,(China|й) + N disease| +׸ ADJ aValue|ֵ,necessity|Ҫ,redundant|,undesired|ݬ + N disease| + N disease| + N character|,(China|й) + N character|,(China|й) + N disease| + N disease|,#skin|Ƥ + N disease|,#skin|Ƥ + N character|,(China|й) + N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + ADJ aValue|ֵ,SoundVolume|,weak| + V disable|м,scope=speak|˵ + N disease|,#wounded| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N disease| +첡 N disease| + N character|,(China|й) + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N character|,(China|й) + N disease|,#skin|Ƥ + N disease| + N disease| + N disease| + N character|,(China|й) + N disease| +ӷ N medicine|ҩ + ADJ aValue|ֵ,kind| + N phenomena|,bad| + N disease|,TimeLong| + N attribute|,habit|ϰ,#addict|Ⱥ,&AnimalHuman| + N disease| + N character|,(China|й) + V die|,police| + V die|,police| + N disease| +Ѫ N disease| + N disease| + V hate| + N disease| + N character|,(China|й) + N disease| +ͷ N human|,#disease| + V bury| + N character|,(China|й) + N disease| + V BeRecovered|ԭ,medical|ҽ + N disease| + N disease| + N disease| + N disease|,#skin|Ƥ + V itch| + N character|,(China|й) + N character|,(China|й) + N trace|,#disease| + N trace|,#disease| + ADJ aValue|ֵ,quality|,barren|,undesired|ݬ +񤱡 ADJ aValue|ֵ,quality|,barren|,undesired|ݬ + N character|,(China|й) +񥲡 N disease| + N character|,(China|й) + N disease| + N character|,(China|й) + N disease| + N disease| + N disease|,#plant|ֲ + N disease| + N attribute|,physique|,weak|,undesired|ݬ,&human| + N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N human|,*addict|Ⱥ,undesired|ݬ +ͷ N aspiration|Ը,expect|,#addict|Ⱥ + V BeRecovered|ԭ,medical|ҽ + V damage| + N disease| + N disease| + N beast| + N disease| +Ƥ N human|,undesired|ݬ +Ƥ N livestock|,undesired|ݬ + N disease| + N human|,#disease| + N human|,*SufferFrom|,undesired|ݬ + N character|,(China|й) +񯲡 N disease| + N disease| + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + N aspiration|Ը,expect|,#addict|Ⱥ + V mad| + ADJ aValue|ֵ,behavior|ֹ,flighty|,undesired|ݬ + V mad| + N human|,*mad|,undesired|ݬ + N disease| + ADJ aValue|ֵ,fatness|,bony| + V help| + V help| + ADJ aValue|ֵ,behavior|ֹ,modest|ǫ,desired| + ADJ aValue|ֵ,height|߶,tall| + V fear| + V frighten|Ż + V upmove| + N character|,(China|й) + N part|,%building|,head|ͷ + N sky| + N celestial| +񷶥 N part|,%building|,head|ͷ +¡ N part|,%building|,head|ͷ +® N tool|þ,*cover|ڸ + ADJ aValue|ֵ,form|״,protruding|͹,curved| + N character|,(China|й) + N facilities|ʩ,space|ռ,@bury|,#human|,#die| + V bury| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,content|,profound|,desired| + ADJ aValue|ֵ,occasion|,desolate|,undesired|ݬ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| + N character|,(China|й) + N character|,surname|,human|,ProperName|ר + N part|,%AnimalHuman|,mouth| + N part|,%inanimate|,mouth| + N house|,#animal|,@alive| + N regulation|,ordinary| + V climb|ʵ + N CauseAffect|Ⱦ + N room| +񿾮 N facilities|ʩ + N attribute|,richness|ƶ,poor|,&human|,&organization|֯ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,SocialMode|,bad|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,lazy|,undesired|ݬ + ADJ aValue|ֵ,quality|,crude|ª,undesired|ݬ + N part|,%clothing|,#body| + N clothing|,religion|ڽ + N part|,%clothing|,body| + N tool|þ,@LieDown|,@sit| +ϯ N tool|þ,@LieDown|,@sit| + N human|,family|,male| + N part|,%clothing|,body| + N tool|þ,linear|,*fasten|˩ + N part|,%clothing|,#arm| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%AnimalHuman|,#leg| + N part|,%clothing|,#leg| + N character|,(China|й) + N clothing| + N character|,(China|й) + N material| + N character|,(China|й) + N clothing|,#body| + V exposure|¶ + N character|,(China|й) + V salute|¾ + N trace|,#clothing| + V decorate|װ +Ѻ V decorate|װ +Ѻ N human|,#occupation|ְλ,industrial| + V decorate|װ +װ V decorate|װ + V decorate|װ + N character|,surname|,human|,ProperName|ר + V StripOff|ȥ + N clothing|,#young| + ADJ aValue|ֵ,importance|,secondary| + N attribute|,ProsCons|,pros|,desired|,&entity|ʵ +Խ N human|,official|,military|,past| + N attribute|,ProsCons|,pros|,desired|,&event|¼,&situation|״ + N part|,%clothing|,#body| + N clothing|,#body| + V repair| + N character|,(China|й) +װ N tool|þ,linear|,#clothing|,*fasten|˩ + N tool|þ,cubic|,@put| + N clothing|,#body| + N tool|þ,cubic|,@put| + V fasten|˩ + N material| + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,width|,narrow|խ +ۼ ADJ aValue|ֵ,behavior|ֹ,eccentric|Ƨ,undesired|ݬ + ADJ aValue|ֵ,width|,narrow|խ + N character|,(China|й) + ADJ aValue|ֵ,wholeness|ȱ,incomplete|ȱ,undesired|ݬ + V StripOff|ȥ + V rob| +ݶ V rob| + ADJ aValue|ֵ,form|״,wrinkled| + N trace| + N trace|,#skin|Ƥ,#AnimalHuman| + N trace|,#clothing| + N trace|,#skin|Ƥ,#AnimalHuman| + N character|,(China|й) + N clothing|,#young| + N clothing|,#body| + V fasten|˩ + N part|,%clothing|,*fasten|˩ + N shape| + N part|,%clothing|,*fasten|˩ + CLAS NounUnit|,&material| + N character|,surname|,human|,ProperName|ר + N human|,#occupation|ְλ,official|,past| + ADJ qValue|ֵ,amount|,all|ȫ + N human|,#occupation|ְλ,official|,past| + V FormChange|α,StateFin=split|ƿ,medical|ҽ + V FormChange|α,StateFin=wrinkled| + V draw|,literature| +巨 N method|,*draw| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + V pity| + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,arrogant|,undesired|ݬ + N part|,%tool|þ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V pile|ѷ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V remove|,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + V PutInOrder|,patient=earth|,agricultural|ũ + V engage|,agricultural|ũ + ADJ qValue|ֵ,amount|,double| + V engage|,agricultural|ũ + V tie| + N tool|þ,#crop|ׯ,agricultural|ũ +ﲥ V spread|,agricultural|ũ + V spread|,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + ADJ aValue|ֵ,age|,aged| + N human|,aged| + N character|,(China|й) + N stone|ʯ,#AnimalHuman|,#listen|,waste| + N character|,(China|й) + V listen| + V listen| +ȡ V listen| + V listen| + N character|,(China|й) + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + ADJ aValue|ֵ,SoundVolume|,loud|,undesired|ݬ + ADJ aValue|ֵ,occasion|,bustling|,undesired|ݬ + V disable|м,scope=listen| + N character|,(China|й) + ADJ aValue|ֵ,degree|̶,very| + N character|,surname|,human|,ProperName|ר + ADJ aValue|ֵ,fineness|ϸ,widediameter| + ADJ aValue|ֵ,height|߶,tall| + ADJ aValue|ֵ,height|߶,tall| + N character|,(China|й) + V fly| + V HaveContest| + N part|,%AnimalHuman|,mouth| + N waters|ˮ,ProperName|ר,(China|й) + N part|,%AnimalHuman|,mouth| + N part|,%AnimalHuman|,mouth| + N text| + V CausePartMove|,PatientPartof=head|ͷ + N part|,%AnimalHuman|,mouth| + ADJ aValue|ֵ,kind|,special| + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) + N part|,%human|,bone|,#head|ͷ + N part|,%human|,#head|ͷ + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N part|,%AnimalHuman|,head|ͷ + ADJ aValue|ֵ,color|ɫ,white| + V CausePartMove| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +򯾴 ADJ aValue|ֵ,behavior|ֹ,faithful|,desired| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + N emotion|,sincere|,desired| + V believe| + N beast|,humanized| + N beast|,humanized| + N part|,%human|,hair|ë +֦ N part|,%plant|ֲ,limb|֫ + N part|,%human|,hair|ë + N part|,%InsectWorm|,embryo| + N InsectWorm| + N beast|,poison| + ECHO sound| + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ +ݺ ADJ aValue|ֵ,effect|Ч,useless|,undesired|ݬ + N InsectWorm| + N fish| + N fish| + N material|,?food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + ADJ aValue|ֵ,wisdom|ǻ,foolish|,undesired|ݬ + N fish| + N fish| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N InsectWorm| +Ѳ N FlowerGrass|,?medicine|ҩ + N character|,(China|й) + N beast| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| +ɸ N part|,%fish|,flesh| + N facilities|ʩ,*foster|,#fish| + N fish| + N InsectWorm|,young| + N InsectWorm| + N character|,(China|й) +̵ N InsectWorm|,undesired|ݬ + N character|,(China|й) +ͳ N InsectWorm|,#disease| +ͳ没 N disease|,#InsectWorm| + N InsectWorm| +ʯ N stone|ʯ + N character|,(China|й) + N character|,(China|й) +ж N InsectWorm| + N InsectWorm| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N beast| + N humanized| + N beast| + N InsectWorm| + N character|,(China|й) + N fish| +׾ N phenomena|,#weather|,fake|α + N part|,%animal|,hair|ë,*stab| + V sting| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N FlowerGrass| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N attribute|,kind|,&InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N InsectWorm| +ѵˮ ADJ aValue|ֵ,behavior|ֹ,careless|,undesired|ݬ + N character|,(China|й) + N beast| + N beast| + N humanized|,undesired|ݬ + N InsectWorm| + ADJ aValue|ֵ,behavior|ֹ,sudden|,undesired|ݬ + ADJ aValue|ֵ,speed|ٶ,fast| + V disappear|ʧ + V fly| + N part|,%LandVehicle| + V deceive|ƭ + V WellKnown| + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N InsectWorm| + V CausePartMove| + V CausePartMove| + V FormChange|α,StateFin=curved| + ADJ aValue|ֵ,form|״,curved| + V CausePartMove| + V CausePartMove| + N character|,(China|й) + V CausePartMove| + ADJ aValue|ֵ,form|״,curved| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N character|,(China|й) + N fish| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N beast|,*fly| + N character|,(China|й) + N beast|,undesired|ݬ + N beast|,young| + N character| + N character|,(China|й) + N beast|,undesired|ݬ + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N fish| + N character|,(China|й) + N beast|,*fly| + N clothing|,#body|,generic|ͳ + N InsectWorm| + N part|,%animal|,hand| + N bacteria|΢ + N beast| + N clothing|,#body| + N beast| + N character|,(China|й) + N character|,(China|й) + N InsectWorm| + N beast|,humanized| + N InsectWorm| + N character|,(China|й) +з N fish| + V sting| + N character|,(China|й) + N character|,(China|й) + N character|,(China|й) + N part|,%InsectWorm|,embryo| + N InsectWorm| + N InsectWorm| + N character|,(China|й) + N InsectWorm| + N character|,(China|й) +˹ N InsectWorm| + N character|,(China|й) + N InsectWorm|,undesired|ݬ + N character|,(China|й) + N InsectWorm|,evil|,*MakeBad|Ӻ,undesired|ݬ + N human|,undesired|ݬ + N character|,(China|й) + N fish| + N character|,(China|й) + N InsectWorm| + V coil| + N beast| + ADJ aValue|ֵ,form|״,curved| + N fruit|ˮ + N fruit|ˮ,humanized| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N beast| + N humanized| +󸹬 N celestial| +󸹬۹ V win|ʤ + N medicine|ҩ + N beast| + N celestial| + N humanized| + N InsectWorm|,undesired|ݬ + N InsectWorm| + N part|,%fish|,skin|Ƥ + N tool|þ,cubic|,*TakeOutOfWater| + V estimate| + N InsectWorm| + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N human|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N InsectWorm|,undesired|ݬ + N MusicTool| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N FlowerGrass|,?addictive|Ⱥ + V exhaust| + V disappear|ʧ + ADJ qValue|ֵ,amount|,many| + N part|,%inanimate|,mouth| +϶ N part|,%inanimate|,mouth| + V savor| + N character|,surname|,human|,ProperName|ר + N MusicTool| + N tool|þ,cubic|,#study|ѧ,@put| + ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| + ADJ aValue|ֵ,circumstances|,urgent|,undesired|ݬ +ƶ ADJ aValue|ֵ,behavior|ֹ,calm|,desired| +ƶ ADJ aValue|ֵ,trueness|α,true|,desired| +ƺ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,behavior|ֹ,sincere|,desired| +ʵ ADJ aValue|ֵ,trueness|α,true|,desired| + V obey|ѭ + V believe| +ѧ ADJ aValue|ֵ,behavior|ֹ,diligent|,desired| +־ V engage| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů + N facilities|ʩ,space|ռ,linear|,@transmit| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,cubic|,*TakeOutOfWater| + N tool|þ,@LieDown|,@sit| + N tool|þ,#royal| + N tree| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N character|,surname|,human|,ProperName|ר + N MusicTool| +ϸ N music| + N character|,surname|,human|,ProperName|ר + N tool|þ,*catch|׽ס,#fish| + N clothing|,#head|ͷ + N tool|þ,cubic|,@put| + N tool|þ,*wipe| + N tool|þ,*wipe| + N MusicTool| + N tool|þ,cubic|,@put| + V beat| + N fact|,punish| + N part|,%machine| + N fittings|,%building| +· V endure|,content=hardship| + N MusicTool| + N tool|þ,*wipe| + N fact|,eat|,entertain|д +ϯ N fact|,eat|,entertain|д + N fact|,eat|,entertain|д + N tool|þ,*catch|׽ס,#fish| + N MusicTool|,(China|й) + N part|,%tree|,skin|Ƥ + N tree| + V guess|² + N character|,(China|й) + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,#crop|ׯ,agricultural|ũ + N tool|þ,cubic|,*collect|,#liquid|Һ + N tool|þ,cubic|,@put|,*clean|ʹ + N tree| + N tree|,mass| + N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,*eat| + N tree| +ñ N clothing|,#head|ͷ,#RainSnow|ѩ + N tree| + N tool|þ,*hold| + N part|,%vegetable|߲,embryo| + N part|,%implement|,viscera| + N tool|þ,cubic|,@put| +ʳ N food|ʳƷ +ʳư V unfortunate| + N MusicTool| + N MusicTool| + N character|,(China|й) + N MusicTool| + N attribute|,kind|,#persuade|Ȱ˵,&text| + V persuade|Ȱ˵ + N text|,*persuade|Ȱ˵ + N tool|þ,cubic|,@put| + N tree| + N tool|þ,space|ռ,@detain|ס,#animal| + N fire| + N tool|þ,cubic|,@put| + N character|,(China|й) + V MakeUp|ױ + N tool|þ,*MakeUp|ױ + N MusicTool| + ECHO sound| + ECHO sound| + N material|,#tree| + N part|,%plant|ֲ,skin|Ƥ + N human|,#occupation|ְλ,industrial| + N tree| + N human|,#occupation|ְλ,industrial| +Ƭ N human|,*please|ȡ +Ƭ N material|,#tree| + N tree| + N material|,#tree| +ϯ N tool|þ,@sleep|˯ + N tool|þ,cubic|,@put| + N tool|þ,cubic|,@put| + N facilities|ʩ,#liquid|Һ,space|ռ + N tool|þ,cubic|,@put|,#food|ʳƷ + N tool|þ,@sleep|˯ + V insert| + N tool|þ,*fasten|˩,#hair|ë,#MakeUp|ױ,#female|Ů +ӧ N human|,#occupation|ְλ,official| + N clothing|,#head|ͷ + V filter| + V roll| + N shape| + N tool|þ,*filter| + N tool|þ,cubic|,@put|,*clean|ʹ + N tool|þ,cubic|,@put| + V filter| + N MusicTool| + N sound| + V recite|ж + N attribute|,pattern|ʽ,&character| + N character|,(China|й) + V transport| + V beat| + V grind|ĥ + N character|,surname|,human|,ProperName|ר + N clothing|,#foot| + N land|½,barren| +± N land|½,barren| + N attribute|,standard|׼,&entity|ʵ + N tool|þ,#weapon|,$AimAt|,$firing| + N tool|þ,*measure|,#mark|־ + V defeated| + V ill|̬ + N ship| + N character|,(China|й) + N ship| + N ship| + V approach|ӽ,LocationFin=part|,#land|½,waters|ˮ + N part|,%ship| + N character|,(China|й) + N ship| + N ship| + N part|,%ship|,head|ͷ + N part|,%ship|,tail|β + N ship|,mass| + N character|,(China|й) + N ship| + N part|,%ship|,*drive|Ԧ + N part|,%ship|,tail|β + N human|,#occupation|ְλ,*drive|Ԧ,#ship| + N part|,%ship|,tail|β + N character|,(China|й) + N part|,%ship|,head|ͷ + N ship| + N character|,(China|й) + N character|,(China|й) + N weapon|,ship|,military| + N tool|þ,*cover|ڸ,#sleep|˯ + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,appearance|,delicate|,desired| + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + ADJ aValue|ֵ,behavior|ֹ,continuous| + V circle| + V wave|ڶ + ADJ aValue|ֵ,bearing|̬,gracious|,desired| + N character|,(China|й) + N clothing|,religion|ڽ + N character|,surname|,human|,ProperName|ר + N clothing| + N character|,(China|й) + N part|,%AnimalHuman|,viscera| + N trace|,#clothing| + N livestock| + N part|,%chemical|ѧ +ǻ N part|,%chemical|ѧ + N part|,%chemical|ѧ +Ȼ N part|,%chemical|ѧ + N chemical|ѧ + N human|,past| + N livestock| +ɹ N MusicTool| + N livestock| + N human|,past| + N part|,%chemical|ѧ +ʻ N part|,%chemical|ѧ + N character|,surname|,human|,ProperName|ר + N character|,(China|й) +̵ N crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + V soothe|ο +ƽ V restrain|ֹ,politics| + N food|ʳƷ + N food|ʳƷ + N material|,?food|ʳƷ,#crop|ׯ + V sell| + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + ADJ aValue|ֵ,brightness|,bright| +Ȼ ADJ aValue|ֵ,brightness|,bright| +ȻһЦ V laugh|Ц + ADJ aValue|ֵ,clearness|,clear| + ADJ aValue|ֵ,clearness|,clear| + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ + N food|ʳƷ + N food|ʳƷ + N food|ʳƷ + N character|,(China|й) + N food|ʳƷ + N food|ʳƷ + N material|,?edible|ʳ,#crop|ׯ,generic|ͳ + V mix| +ۺ V mix| + V mix| + N food|ʳƷ + ADJ aValue|ֵ,concentration|Ũ,concentrated| +ݺ N tool|þ,sticky|,*fix|ס,*fasten|˩ + N tool|þ,sticky|,*fix|ס,*fasten|˩ + ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + ADJ aValue|ֵ,taste|ζ,tough|,undesired|ݬ + N character|,surname|,human|,ProperName|ר + PREP {LocationFin} + PREP {TimeFin} + CONJ {and|} + N character|,surname|,human|,ProperName|ר + N part|,%bird|,hair|ë +ë N part|,%bird|,hair|ë + N tool|þ,*decorate|װ + ADJ aValue|ֵ,behavior|ֹ,kindhearted|,desired| + V shut|ر +⶯ V shiver| +Ȼ ADJ aValue|ֵ,similarity|ͬ,alike| + V fly| + N bird| + N bird| + N material|,?tool|þ,#decorate|װ + V break|۶ + N character|,surname|,human|,ProperName|ר + N tool|þ,*break|۶ + V destroy| + V fly|,fast| + V walk| +Ȼ ADJ aValue|ֵ,posture|,gracious|,desired| +Ȼ V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + ADJ aValue|ֵ,posture|,gracious|,desired| + V recreation| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V recreation| + N part|,%bird|,hair|ë + N part|,%bird|,wing| + N disease|,#eye| + V detain|ס,police| + V fasten|˩ + N tool|þ,linear|,*guide|,#livestock| + ADV aValue|ֵ,degree|̶,extreme| + N part|,%AnimalHuman|,bone| + N part|,%entity|ʵ,heart| + N affairs|,engage| + N information|Ϣ,wrong|,undesired|ݬ + N shows| + N mark|־,military|,past| + N material|,?edible|ʳ,#crop|ׯ +Ƥ N material|,?edible|ʳ,#crop|ׯ + N material|,?edible|ʳ,#crop|ׯ + N character|,surname|,human|,ProperName|ר + N music|,$sing| + ADJ aValue|ֵ,courage|,brave|,desired| + ADJ aValue|ֵ,form|״,slanted| + N character|,(China|й) + V walk| + N character|,(China|й) + V walk| +ǰ V walk| + V SelfMoveInManner|ʽ + V SelfMoveInManner|ʽ + V shy| +Ȼ V shy| + V shy| + ADJ aValue|ֵ,color|ɫ,RedBrown| +ɫ ADJ aValue|ֵ,color|ɫ,RedBrown| +ʯ N stone|ʯ,mine| + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N part|,%vegetable|߲,embryo|,$eat| + N vegetable|߲ + N material|,?food|ʳƷ + N medicine|ҩ,liquid|Һ + N medicine|ҩ,liquid|Һ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N medicine|ҩ + N medicine|ҩ + V buy|,commercial| + N drinks|Ʒ,$addict|Ⱥ + V sell|,commercial| + N material|,?edible|ʳ + N FlowerGrass| + V AppearanceChange|۱,scope=color|ɫ + N attribute|,appearance|,red|,&human| + N chemical|ѧ + N chemical|ѧ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N chemical|ѧ + V ize|̬ + ADJ aValue|ֵ,taste|ζ,NotLight|Ũ + V dredge|ͨ,agricultural|ũ + V filter| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + V salute|¾ + N chemical|ѧ + N drinks|Ʒ,$addict|Ⱥ + N character|,(China|й) + N character|,(China|й) + N material|,?food|ʳƷ +ඥ ADJ aValue|ֵ,wisdom|ǻ,wise|,desired| + N medicine|ҩ + N medicine|ҩ + V cut| + N material|,?food|ʳƷ + N food|ʳƷ,sweet| + N material|,sweet|,?edible|ʳ + N drinks|Ʒ,$addict|Ⱥ + N food|ʳƷ + N bacteria|΢ + N fact|,*salute|¾,religion|ڽ + N material|,?edible|ʳ + V gather|ɼ,possession=fund|ʽ,commercial| + N drinks|Ʒ,$addict|Ⱥ + V dizzy| + V dizzy|,cause=addict|Ⱥ,#drinks|Ʒ + N livestock| + ADJ aValue|ֵ,taste|ζ,salty| + N material|,?food|ʳƷ,salty| + V sell|,commercial| + N ship| + V sell|,commercial| + V sell|,commercial| + V sell|,commercial| + ECHO sound| +Ȼ ECHO sound| + V ToAndFro| + V LookFor|Ѱ + ADJ aValue|ֵ,width|,narrow|խ +ü V CausePartMove|,PatientPartof=eye| + V wounded| + ADJ aValue|ֵ,GoodBad|û,bad|,undesired|ݬ + V jump| + V kick|߲ + V PutOn| + V PutOn| + N clothing|,#foot| + N clothing|,#foot| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,skin|Ƥ,#disease| + N part|,%AnimalHuman|,foot| + V sit| + V walk| + V walk| + V kick|߲ + N part|,%AnimalHuman|,#foot| + N part|,%AnimalHuman|,foot| +Ź N part|,%AnimalHuman|,bone|,#foot| + N part|,%AnimalHuman|,foot| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,foot| + N character|,(China|й) + V walk| + N character|,(China|й) + V sit| + V sit| + V disable|м,scope=walk| +˽ V disable|м,scope=walk| + V disable|м,scope=walk| + N human|,undesired|ݬ,*disable|м,#walk| + V disable|м,scope=walk| + N character|,(China|й) +ȭ N fact|,exercise| + N attribute|,distance|,&walk| + V upmove| +ΰ N tool|þ,*recreation| + ADJ aValue|ֵ,kind|,queer|,undesired|ݬ + V clean|ʹ,patient=facilities|ʩ,#royal| + V exposure|¶,#foot| + ADJ aValue|ֵ,posture|,gracious|,desired| + V jump| + V rise| + V rise| + V FallDown| + N character|,(China|й) + V walk| + V walk| + V sit| + V jump| + V surpass|ǿ + V excited| + N part|,%AnimalHuman|,foot| +׹ N part|,%AnimalHuman|,bone| + V hesitate|ԥ +س V hesitate|ԥ + V hesitate|ԥ +鲻ǰ V hesitate|ԥ + V FallDown| + V fail|ʧ + V upmove| +ڽ V CausePartMove|,PatientPartof=foot| + V FallDown| + V GoRound|Χ + V walk| + V GoRound|Χ + V walk| + V CausePartMove|,PatientPartof=foot| + V roam| + V walk| + V kick|߲ + V follow| + N part|,%AnimalHuman|,foot| + V KeepOn|ʹ + V imitate|ģ + ADV aValue|ֵ,behavior|ֹ,single| + ADV aValue|ֵ,behavior|ֹ,single| + V walk| + N character|,(China|й) + V FallDown| + N result|,wrong|,undesired|ݬ + V lavish|˷,patient=time|ʱ + V slack|͵ + V damage| + V damage| + V follow| + V kick|߲ + V walk| + V walk| + V engage| + V walk| + V walk| + V walk| + N facilities|ʩ,space|ռ,linear|,route|· +辶 N facilities|ʩ,space|ռ,linear|,route|· + ADJ aValue|ֵ,kind|,queer| + V hesitate|ԥ + V FallDown| + N attribute|,posture|,&livestock|,#kick|߲ + V fail|ʧ + N attribute|,posture|,&livestock|,#kick|߲ + N part|,%animal|,#skin|Ƥ,#limb|֫ + N part|,%beast|,foot| + V kick|߲ + V kick|߲ + N trace|,#SelfMove|,#CauseToMove|,#foot| + V damage| + V damage| + V surpass|ǿ + V surpass|ǿ + V jump| + V run| + N InsectWorm| + N beast| +Ƥ N part|,%beast|,skin|Ƥ,?clothing| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N tool|þ,*measure| + V unsatisfied| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N part|,%inanimate|,edge| + N stationery|ľ,@write|д + N tool|þ,cubic|,@put|,#drinks|Ʒ + N tool|þ,cubic|,@put|,#drinks|Ʒ +サ ADJ aValue|ֵ,circumstances|,happy|,desired| + V shiver| + N tool|þ,cubic|,@put|,#drinks|Ʒ + N character|,surname|,human|,ProperName|ר + V slander|̰ + V ExpressAgainst|Ǵ + V slander|̰ + V pant| + V talk|̸ + V MakeUp|ױ + ADJ aValue|ֵ,prettiness|,beautiful|,desired| +Ů N human|,female|Ů,beautiful| +ױ ADJ aValue|ֵ,bearing|̬,beautiful|,desired| + N human|,male|,beautiful| + N thunder| + N CloudMist| + N thunder| + V WeatherFine| + V calm| +ɫ V calm| +¹ ADJ aValue|ֵ,behavior|ֹ,true|,desired| + N RainSnow|ѩ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,intensity|ǿ,strong|ǿ + ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| +ʱ ADJ aValue|ֵ,duration|,TimeShort| + N RainSnow|ѩ,many| + N RainSnow|ѩ,many| + N CloudMist| + N RainSnow|ѩ + N weapon|,$firing| + V replace|,patient=part| + N time|ʱ,#young| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N part|,%AnimalHuman|,*bite|ҧ + V replace|,patient=part| + N time|ʱ,#young| + N human|,young| + N time|ʱ,#young| + ADJ aValue|ֵ,fullness|,empty| + V CausePartMove|,PatientPartof=mouth| + ADJ CausePartMove|,PatientPartof=mouth| + V aValue|ֵ,behavior|ֹ,fierce|,undesired|ݬ + N part|,%AnimalHuman|,*bite|ҧ + N disease| + V FitNot| + ADJ aValue|ֵ,relatedness|,opposed|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + ADJ aValue|ֵ,behavior|ֹ,evil|,undesired|ݬ + ADJ aValue|ֵ,cleanness|ྻ,dirty|,undesired|ݬ + V endeavour| + V endeavour| + V endeavour| + N fish| + N beast| + N bird| + N bird| + N attribute|,ability|,able|,&human| + ADJ aValue|ֵ,content|,profound|,desired| + N character|,(China|й) + N bird| + N character|,surname|,human|,ProperName|ר + N waters|ˮ,surfacial|,ProperName|ר,(China|й) + N character|,surname|,human|,ProperName|ר + V check| + N emotion|,undesired|ݬ,#hate| + N human|,enemy| + N tool|þ,#sound| + N tool|þ,*MakeSound| + V apply|ͿĨ,industrial| + N metal|,material| + V carve| + N tool|þ,*carve| +ɵ N tool|þ,*carve| + N tool|þ,*carve| + N clothing|,#head|ͷ,*protect| + N tool|þ,cubic|,*cook| + N tool|þ,cubic|,*cook| + N metal| + V sharpen|ʹ + ADJ aValue|ֵ,richness|ƶ,rich|,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + V BeRecovered|ԭ,StateIni=alive| + N fish| + N fish| +׳ N InsectWorm| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N food|ʳƷ,#fish| + N food|ʳƷ,#fish| + N fish| + N fish| + V situated| +ֱ ADJ aValue|ֵ,behavior|ֹ,forthright|ˬ,desired| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,surname|,human|,ProperName|ר + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N fish| + N fish| + N fish| + N fish| + N bird| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N beast| + N beast| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N part|,%animal|,tail|β + N fish| +Ŀ N fish| + ADJ aValue|ֵ,circumstances|,lonely|,undesired|ݬ + N human| +ѹ¶ N human| + V reside|ס,lonely| + N fish| + N fish| + N fish| + N material| + N part|,%fish|,viscera| + N material| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N fish| + N character|,(China|й) + N place|ط,country|,ProperName|ר + N place|ط,country|,ProperName|ר +˹̹ N place|ط,ProperName|ר +˹̹ N place|ط,country|,ProperName|ר + N language|,#country|,ProperName|ר + N tool|þ,@sit|,#livestock| + V interrogate|,police| + V interrogate|,police| +Ѷ V interrogate|,police| + V produce|,industrial| + N material| + N chemical|ѧ + N character|,(China|й) + N part|,%machine| + V prepare|׼,content=livestock| + N part|,%AnimalHuman|,bone| + N tool|þ,*gamble|IJ + N tool|þ,*gamble|IJ + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N part|,%human|,*die|,body| + N part|,%human|,*die|,bone| + N bird| + N character|,(China|й) + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,leg| +⸴ ADJ aValue|ֵ,circumstances|,happy|,desired| + N character|,(China|й) +Ĺ N part|,%AnimalHuman|,bone| + N character|,(China|й) +Ź N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + V punish| +ƹ N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N part|,%AnimalHuman|,bone| + N humanized|,undesired|ݬ,evil| +Ȼ V attract| +Ȼ V entice| + N attribute|,ability|,&attract| + ADJ aValue|ֵ,ability|,&attract| + N humanized|,#waterless|,undesired|ݬ,evil| + V dream|,undesired|ݬ + N beast| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N character|,(China|й) + N humanized|,undesired|ݬ,evil| + N humanized|,undesired|ݬ,evil| + V entertain|д +Ͽ V entertain|д,patient=human| + V BeFull|Ա + V fulfil|ʵ + V fulfil|ʵ + ADJ aValue|ֵ,behavior|ֹ,greedy|̰,#eat| + ADJ aValue|ֵ,behavior|ֹ,greedy|̰ + N humanized|,undesired|ݬ + N human|,*expect|,#eat| + N human|,undesired|ݬ,evil|,fierce| + N fact|,eat|,early| + N food|ʳƷ + N fact|,eat| + V MakeUp|ױ,scope=hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë +׿ N tool|þ,*perform|,#shows| + N part|,%human|,hair|ë + N time|ʱ,#young| + N time|ʱ,#young| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,hair|ë + V apply|ͿĨ + ADJ aValue|ֵ,form|״,curved| + V FormChange|α,StateFin=curved| + N part|,%human|,hair|ë + N part|,%human|,hair|ë + N part|,%human|,skin|Ƥ +޷ N part|,%human|,hair|ë +޽ N part|,%human|,hair|ë +޽ N part|,%human|,skin|Ƥ + N part|,%human|,hair|ë + N part|,%beast|,hair|ë +๷ N beast| + N character|,(China|й) + N mark|־,military| + V order| + N human|,military| + N human|,official|,military| + V fasten|˩ + N beast| +Ƥ N material|,?clothing| + N beast| + V ComeTogether| + N beast| +弯 V ComeTogether| + N beast| +¹ N beast| + N beast|,happy|,desired|,(China|й) + N beast|,happy|,desired|,(China|й) + V fight|,military| + V fight|,military| +鶷 V fight|,military| +ս V fight|,military| + N beast| +ţ N beast| + N beast| + N medicine|ҩ + N beast|,happy|,desired|,(China|й) + N tool|þ,*MakeUp|ױ + ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ +ɫ ADJ aValue|ֵ,color|ɫ,green|,NotLight|Ũ + V dismiss| + V dismiss|,politics| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,sly|,undesired|ݬ + N place|ط,ProperName|ר,(China|й) + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,behavior|ֹ,rash|ç,undesired|ݬ + V slander|̰ + ADJ aValue|ֵ,behavior|ֹ,FondOf|ϲ,#fight|,military| + ADJ aValue|ֵ,color|ɫ,black| + ADJ aValue|ֵ,color|ɫ,black| + N image|ͼ + ADJ aValue|ֵ,brightness|,dark| + ADJ aValue|ֵ,brightness|,dark| +Ȼ ADJ aValue|ֵ,brightness|,dark| +Ȼ V disheartened| +Ȼʧɫ V AppearanceChange|۱,scope=color|ɫ,StateFin=dark| +Ȼʧɫ V BeBad|˥ +Ȼ V sorrowful| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + N beast| + V ill|̬ + N sound|,#sleep|˯ + N sound|,#sleep|˯ +˯ V sleep|˯ diff --git a/software/semdict.dat b/software/semdict.dat new file mode 100644 index 0000000..e3242ee --- /dev/null +++ b/software/semdict.dat @@ -0,0 +1,224 @@ + 75 [desired|] + 76 [undesired|ݬ] + 81 [desired|] + 101 [undesired|ݬ] + 104 [undesired|ݬ,#medical|ҽ] + 105 [disease|,undesired|ݬ,#medical|ҽ] + 106 [disease|,undesired|ݬ,#medical|ҽ] + 107 [disease|,undesired|ݬ,#medical|ҽ] + 108 [disease|,undesired|ݬ,#medical|ҽ] + 109 [disease|,undesired|ݬ,#medical|ҽ] + 110 [disease|,undesired|ݬ,#medical|ҽ] + 111 [disease|,undesired|ݬ,#medical|ҽ] + 112 [disease|,undesired|ݬ,#medical|ҽ] + 113 [disease|,undesired|ݬ,#medical|ҽ] + 114 [disease|,undesired|ݬ,#medical|ҽ] + 115 [disease|,undesired|ݬ,#medical|ҽ] + 116 [disease|,undesired|ݬ,#medical|ҽ] + 117 [disease|,undesired|ݬ,#medical|ҽ] + 118 [disease|,undesired|ݬ,#medical|ҽ] + 119 [disease|,undesired|ݬ,#medical|ҽ] + 121 [undesired|ݬ] + 122 [undesired|ݬ] + 123 [undesired|ݬ] + 124 [undesired|ݬ] + 125 [undesired|ݬ] + 126 [undesired|ݬ] + 127 [undesired|ݬ] + 128 [undesired|ݬ] + 129 [undesired|ݬ] + 131 [undesired|ݬ] + 135 [undesired|ݬ] + 142 [desired|] + 149 [undesired|ݬ] + 168 [desired|] + 262 [crime|] + 263 [crime|] + 264 [crime|] + 266 [commercial|] + 272 [#GetMarried|] + 274 [commercial|] + 284 [commercial|] + 286 [commercial|] + 289 [#GetMarried|] + 292 [commercial|] + 337 [instrument=leg|,instrument=foot|] + 338 [instrument=leg|,instrument=foot|] + 339 [instrument=leg|,instrument=foot|] + 340 [instrument=leg|,instrument=foot|,instrument=hand|] + 343 [location=#liquid|Һ] + 344 [#liquid|Һ] + 345 [location=sky|] + 492 [undesired|ݬ] + 511 [sport|] + 512 [SelfMove|] + 514 [undesired|ݬ] + 515 [undesired|ݬ] + 533 [medical|ҽ] + 545 [#wealth|Ǯ] + 735 [military|,police|] + 736 [medical|ҽ] + 814 [#time|ʱ,#space|ռ] + 815 [!appearance|] + 816 [*alive|,!age|,*die|,*metabolize|л] + 817 [!sex|Ա,*AlterLocation|ռλ,*StateMental|״̬] + 818 [!name|,!wisdom|ǻ,!ability|,!occupation|ְλ,*act|ж] + 819 [fake|α] + 820 [^*GetKnowledge|֪] + 821 [^*GetKnowledge|֪] + 822 [$foster|,~$consume|ȡ,~?edible|ʳ] + 823 [*fly|,~$consume|ȡ,~?edible|ʳ] + 824 [~undesired|ݬ] + 825 [*swim|,#waters|ˮ,~$consume|ȡ,~?edible|ʳ] + 826 [^*SelfMove|,^*StateMental|״̬] + 827 [$planting|ֲ,?material|,#edible|ʳ] + 828 [#wood|ľ,?material|] + 829 [~$planting|ֲ,~odor|ζ,~color|ɫ,~prettiness|,~*decorate|װ] + 830 [$planting|ֲ,?edible|ʳ,$consume|ȡ] + 831 [$planting|ֲ,$consume|ȡ,?edible|ʳ,#tree|] + 832 [~?edible|ʳ] + 833 [~*CauseToDo|ʹ,#disease|,#medical|ҽ,~undesired|ݬ] + 834 [^*alive|,^*die|,^*metabolize|л] + 836 [space|ռ,#lights|,#WeatherChange|] + 837 [space|ռ,#animate|,+event|¼] + 838 [#LandVehicle|,+VehicleGo|ʻ] + 839 [space|ռ,liquid|Һ,#water|ˮ,#ship|,+VehicleGo|ʻ,#fish|,+swim|] + 840 [space|ռ,gas|,#weather|,#aircraft|,#bird|,+fly|] + 841 [space|ռ] + 842 [*flow|,#waters|ˮ] + 844 [cold|,#liquid|Һ,StateChange|̬] + 845 [material|,~heavy|] + 846 [material|,#tree|,?building|,?furniture|Ҿ,$burn|,$lighting|ȼ] + 847 [*lighting|ȼ,*burn|,hot|] + 848 [~?material|] + 849 [#WeatherChange|,#celestial|] + 850 [liquid|Һ,#WeatherBad|] + 851 [gas|,#WeatherBad|] + 852 [gas|] + 853 [#electricity|] + 854 [!odor|ζ,#smell|,gas|] + 855 [#listen|,$transmit|] + 856 [?material|,$transmit|] + 857 [!color|ɫ,$transmit|,#illuminate|,#celestial|,#electricity|,#look|] + 858 [#lights|] + 859 [$create|,^$GiveBirth|!quality|,!price|۸,#material|,#instrument|,#commercial|] + 860 [!pattern|ʽ,!color|ɫ,#sex|Ա,$PutOn|,$StripOff|ȥ] + 861 [!taste|ζ,#livestock|,#fish|,#bird|,#vegetable|߲,#fruit|ˮ,$consume|ȡ,*feed|ι] + 862 [$cook|,$eat|] + 863 [$drink|,liquid|Һ] + 864 [medical|ҽ,*cure|ҽ,#disease|,#animate|] + 865 [material|] + 866 [expensive|,undesired|ݬ,$addict|Ⱥ,~#crime,|,~#police|] + 867 [$build|] + 868 [space|ռ,+reside|ס] + 869 [%house|] + 871 [$use|] + 872 [~*produce|] + 873 [*calculate|,#information|Ϣ,#software|] + 874 [space|ռ,#route|·,$TakeVehicle|,$drive|Ԧ,*transport|,*AlterLocation|ռλ] + 875 [#land|½,*VehicleGo|ʻ] + 876 [#waters|ˮ,*VehicleGo|ʻ] + 877 [#sky|,*fly|] + 878 [#family|,$decorate|װ] + 880 [!color|ɫ,!thickness|,#PenInk|ī,~*write|д,~*wrap|] + 881 [#paper|ֽ,*write|д,*copy|д] + 882 [*recreation|,*perform|,#music|,#entertainment|] + 883 [*exercise|,#compete|,#physique|,#sport|] + 884 [$use|] + 885 [#military|,#police|,#country|,*attack|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 886 [#computer|,#information|Ϣ,$compile|༭] + 887 [*produce|,*build|,*forge|α,#artifact|˹] + 888 [#value|ֵ,#commercial|] + 889 [$spend|,#money|,commercial|] + 890 [$spend|,#money|] + 891 [$earn|׬,$give|,$obtain|õ,#money|] + 892 [$earn|׬,*buy|,#sell|,$SetAside|] + 893 [*buy|] + 894 [precious|,expensive|,$SetAside|] + 895 [$read|,$compile|༭,$write|д,#information|Ϣ] + 896 [$compile|༭,$publish|,$read|,#time|ʱ,*disseminate|,#information|Ϣ] + 897 [+record|¼,+write|д,$read|] + 898 [#commercial|,#buy|,#sell|,#money|,wealth|Ǯ,#price|۸] + 899 [+record|¼,+write|д,#wealth|Ǯ] + 900 [$post|ʼ,~#friend|,~#family|] + 901 [*express|ʾ,#information|Ϣ] + 902 [!form|״] + 903 [#StateMental|״̬] + 904 [$cherish|Ļ,#feeling|,#AlterEmotion|,abstract|] + 905 [$undergo|,$MakeOwnKnowledge|ʹҸ֪,abstract|] + 906 [#volition|,abstract|] + 907 [$think|˼,abstract|] + 909 [$use|,#act|ж,#purpose|Ŀ] + 910 [*act|ж] + 911 [#act|ж] + 914 [#information|Ϣ] + 915 [#knowledge|֪ʶ,#recognition|֪״̬,!content|,#AlterKnowledge|֪,abstract|] + 916 [$read|,*express|ʾ,*teach|,*communicate|,#thinking|˼] + 919 [%language|] + 920 [%language|] + 921 [$read|,$write|д,$compile|༭,*express|ʾ] + 922 [text|] + 923 [$listen|,$perform|,$compile|༭,$entertainment|] + 924 [$look|,$draw|] + 925 [$perform|,$compile|༭,~entertainment|] + 927 [*control|] + 929 [$obey|ѭ,$disobey|Υ,police|] + 930 [$discuss|,$debate|,$decide|,$conduct|ʵʩ,~#associate|] + 931 [$have|,*use|,abstract|] + 932 [$bear|е,abstract|] + 933 [abstract|] + 935 [$engage|] + 940 [abstract|] + 941 [medical|ҽ,$cure|ҽ,#medicine|ҩ,undesired|ݬ,~#die|,~#bacteria|΢] + 942 [#human|,*ExistAppear|,*perish|,$establish|,*ActGeneral|,*AlterGeneral|,^*SelfMove|,^*metabolize|л,space|ռ] + 943 [#official|] + 944 [military|,#weapon|,*fight|,*resist|,*defend|,*kill|ɱ,*destroy|] + 945 [*engage|,#affairs|] + 946 [*engage|,#affairs|] + 947 [#computer|,+read|,+communicate|,+post|ʼ,#information|Ϣ,commercial|] + 948 [+event|¼] + 949 [+event|¼] + 950 [abstract|] + 951 [abstract|] + 953 [necessary|Ҫ] + 1445 [#organization|֯,#employee|Ա] + 1446 [$employ|] + 1447 [#produce|,#repair|] + 1448 [#dig|ھ,#produce|,industrial|] + 1449 [#organization|֯,#employee|Ա,+produce|,+repair|,industrial|] + 1450 [#plant|ֲ,#planting|ֲ] + 1451 [#money|,#buy|,#sell|] + 1452 [#teach|,#study|ѧ] + 1453 [#cure|ҽ,#disease|] + 1454 [#compile|༭,#translate|] + 1455 [#perform|,#draw|,#carve|,#TakePicture|] + 1456 [#exercise|,~#SportTool|˶,~#compete|] + 1458 [~#manage|,~#country|] + 1459 [#politics|] + 1460 [#crime|] + 1461 [~#attack|,#fight|,#defend|] + 1463 [+alive|,~$ProvideFor|] + 1464 [~$FondOf|ϲ,~$loyal|Т] + 1465 [~$hate|] + 1466 [#police|] + 1474 [place|ط,#human|,#politics|] + 1475 [#country|,#organization|֯] + 1478 [#agricultural|ũ] + 1479 [space|ռ,linear|] + 1480 [character|] + 1492 [*crawl|,*swim|] + 1493 [*HoldInArm|§] + 1494 [*pick|ʰ,*HoldWithHand|,*crawl|,*catch|׽ס] + 1495 [*walk|,*run|,*jump|,*swim|,*kick|߲,*stand|վ] + 1496 [*walk|,*run|,*jump|,*crawl|,*swim|,*kick|߲,*stand|վ] + 1497 [*fly|] + 1498 [linear|] + 1499 [*HoldInMouth|,+consume|ȡ,+GoInto|,+GoOut|ȥ,+GoThrough|] + 1500 [*look|] + 1504 [$GiveBirth|] + 1506 [$consume|ȡ] + 1508 [abstract|] + 1517 [season|,warm|,~beautiful|,#weather|,#planting|ֲ] + 1518 [season|,hot|,#weather|,#RainSnow|ѩ] + 1519 [season|,chilly|,~beautiful|,#weather|,gather|ɼ,#crop|ׯ] + 1520 [season|,cold|,#weather|,#RainSnow|ѩ] diff --git "a/software/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\310\355\274\376\312\271\323\303\312\326\262\341.doc" "b/software/\241\266\273\371\323\332\243\274\326\252\315\370\243\276\265\304\264\312\273\343\323\357\322\345\317\340\313\306\266\310\274\306\313\343\241\267\310\355\274\376\312\271\323\303\312\326\262\341.doc" new file mode 100644 index 0000000000000000000000000000000000000000..aac3fe2fec3ae9c3a16039d0bc9c5289de2ebc91 GIT binary patch literal 71168 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 NPC6$2=6`(-{6B@~S;YVV literal 0 HcmV?d00001 diff --git "a/software/\327\324\310\273\323\357\321\324\264\246\300\355\277\252\267\305\327\312\324\264\320\355\277\311\326\244.doc" "b/software/\327\324\310\273\323\357\321\324\264\246\300\355\277\252\267\305\327\312\324\264\320\355\277\311\326\244.doc" new file mode 100644 index 0000000000000000000000000000000000000000..cc9a46d3df84cebf002dacbc9fcfd2fd8ca8408d GIT binary patch literal 24576 zcmeHP33yahmcFklOBJbvumuRADKTP1ND4(p)TSda8W3J3sbGkSfh?6uBqSju#b!f+ zB?JQ|iXzgqAdN^5%4BSDVH_135K#eJ5Cj)+J{p@5MLq`H;LZQPS1(l+36xv6PS>sP ze|J6S-h1wO=PvIiyLWXu^yq&i9u{rfFkuwu6tjp5NS6@4Qjfm^h!e$k6yI@n*V$caYS1IXlpuyA39<4q z4f`X5vcDBk6fpF;_QHC8r5adG^@5`x7}nF;`dyjebI!bU=et+;WfbRhKbfNgkDA%!z5LOVTbra$a#4|yU;J2JE550YD3+U+R6}Q0h2enPJ*{(yAxZ(QgY1w&ct^*5!j&BBVMnpJPv{ zkMw-zI3gdLJE-34j?EjAy(s4`hp}*gOKYh`xyhbZmXiCmJkGv#;>N5P`D}BneAe@+ zeW+6}<8|Mi^?bg;7As~-rh zwRnbPFIVfIm$$+-cOiRaE^$rK+tN@n!u7nf;{^6AfJ)JN|3G1Vb3^_SIYusW4V#px zuops>Y|*WKNiW`AvcutZCt2H$1V^;D)ufQxGwZ~RB&(KURxC<%iPufZ{g{2$dLY@F zmg;@8dh254-6g-Xdy3OsX-=ucqEIri@|@zW#e?ea zm9@6=NlhnDYjb=twR%Fypggbp(#2oP8rKKZzEP7jny3PnP63Z&b3eabK#RQY$K}mA zl8q7{D7y;}HjQZz52lW@C_S@Na@S4N@)L@g&vdQ7TPMs~mXdq_eV@9=+NapU{kdsCEKCMe^ezobE`po(+H)s^hGuPu@#F**}d-KiLrSr9Znb1 zEDCeua=dQRk{9K=($OnB(i7Jz*$kuXOv$q3 z{Mml6DbQAU-ETR@6=qk3oc6|o9r{wOC<8szFoGNQ^8f-19{Jm~%PKYWvI{WzS zLlYj!zgKSC)A`Fj%=Nm<^3&9@q=lZ6wH|f9cxT}Z&Jb-mP0KR7gxp{Lr1o`aEk`tA z&KZX`2OV+tfxV%gQ#OxQnqAQ)%kyW{F3;CnqL;TQ3B{3~^$jP+$6=N+H1los_m1+_ zbmb4t89qxesK7t#nVbJs{O!^v^_{q`b)3EKl1UvWkdIj@uwN%@x~fS;pJ5C(EzVMu zoY(!=#%;3?+p8x=6RzT156*FJ4LIcJSrI&MOuGB0l&EbcngH+P{nTdx=mp(8o3Mjg#ZlQKLp`t<)^M zUlYz0_g*a7$dmfSH(RSmTLsa&uqLh-E-Xuv;@1P}v$n!BD+4iycF&H;nX!y-+buHR zX|_aP4Pq1_EzV<+9?o4~H8M>7_0MY)EW#Ab(114XNAk8#LAl* z)5=b{AH!;7e-lCvGGtabFKTn1uAyfdUvWe(y>Pzj22=d zPzsa*RX`1JComgW1l$iS1s(yO0-gq*0bT%J2DSm)fj58;fI~oMY@2=sqyRSn!+_zy zXdoN76&Mc`0EIv?P!8MyQ~_?l1I!1W09pX<%C-RqfcJotz-izdAh6>y01<%r^32Kq zIeO;k;SY`;Jh~sx-TM!#{*JBM@5TLxeW4v&k0Nw*>;6st6g}LS&!t{j@&LL!Y@iz4-3@PwZ7D~YAPEVVL*ArB+*Gf z=R2phI{f@6l7K;yB-&}(=s^2>E3}h#lr~hie;r^0yF$+rfFxiUupC$gbd7s&e-6?IutD!Kx#Z)JY6RDd@u<7aI-I&*F_0UY1X97}*>oCt87t-wt{4p0D01WJKQ zzysV1ECqCZcm!eUL_GAN44_`z0aO7`0k`4cssLC8tOokW2{9P>2>1k8iy3VLz;6#< ze{t&gv9G^4a_Y#b50CK2*uGQyj_uvOSNMPa!T5g|3ZA>$t_A{E3jXzjwnhkEUFa(V zZOx#sKtw-%d@2LR=qrT30s3NmMgpOX8OQ6HK>0uYLnBWFGH5>%R8LT`pD-t|Y3+nz zQv)YtL0j~*vjw8_V9_trECw}SD_xao5Pe$iO0~9ZzwwfmZzB2vmo`s|P6jS(5u$sG z!`P$ckkQio#{j$9PVd9XzYqy@6`e%~C})M}h%f$F8mjHSNr?2%6@$15U$hLO1m`T+ zXCTLzY#fvC5|N6vX;iY*$-7oc?Lto9Z|BVDF=tPE=k;&eo}c9oGn;e?|)=XzV;@IambUTWVNk#FMfRXxd$FA;Wxoy{iWgk z4Xjqdce6b7sIz24dZgf&kGE%gUFUAa0s@Qifg`Qb*ln0TxjFFoYvz}AtoW0d!pjBp zFtX0SADCzz4vUSXd1J(tx?Z zJm7Ai15_ghhy%s|V}VTI9$+w3<{DrK@Gn3f@LOOua38Q5coNtE>;~Qfx}iUbz!bm@ zybT-x_srS^8T zE=Uu8Kp6^w&cjE@+WYO=NlxeCqn-9Ji_XKxPgh1nVD2z$>vj`r!tzm_Ot`<~8k6fo zWUI3XmXvB9(`f7Hn1&-Qfx|8JwniWLR^Sq#FOUY@0%QWTc+&w|yg9%EU?Ff1uoTz; zJO|Jk9t3C&KLic|@vw3@_Y!u1meB#wI!*#;9jgIa$PEB3T9tHjYtOsaecLB7pk+7y_pesO2TLaM2J^^e2{sPeAMvCZPEHIq7 zJ)-HxNcjH>JPC08FUJ^hoD(36?!W+GAn<4Onf+(qqjBq_eSnFtl%h~8V?-WSNp+$K z_g1V}kz|M)g)DA{#*W1OmVyi1q)8Q}peYG+xQHBz#0XWABUNeDi^=NEoH~q>6;iJP zwN*Hf#ydq7h`W$efKez#NyaM>ufv_9B0PDwh

mRU)TEO|3wB6}XI4V?`)2R?VwL z`c$9{lm#MJr7lH?UyIgd^ILvz>-+Zc`R#u@N(INMXi0lo67Jj2d)y47NA{XI{b57+ zE>~hSsb2*?jrHqd0p9sBn1$@nE8ZIm<-ONtDe$Fv3es?vDcqg)l)O1UZ$l&c~& zO6j7MHKta|8WSjMOd6%(qLk?|t(568piGa^D2*4TjE`%jjE@6le4IuZaZ$=c@vW4H z;z4;RUZae>C}m5RR?3zxpls=)QAS;q(v#3i=}7>kCqbi(z9?m8&sNIJo}kR^sZpAI zl++Ym0qAQN*0nKK6#AV--+g~=%Gf{rFMIZh=4Sqw8rU^Q>P4n8vJb3J6Sbs*sz0-0gFV*AVo(RBC$wUo!)pxJbXBCv@lr| zgR&B_tNW?7$3#UK=-RFQMohjHsEIUF;z4u1`|D&M;KrgZPVbzcUAXvc#Z+oh{o!bT z1+KztQ~t&Kc70T{G~Z~DqJ$A2xFiWHY`8d+-Z_bT6}U$AaL1ua$|34euRyI4;&W32 zjN%#z8y7%`3TMUq(+6tjGu%gH(-{8p?J&x%(KuNk^o6RbV0y{-MML;6ZKgUx7*w3%%&wpd$7TPIsL zTX&nJ7?fy**LLHSM5UL~NBOmqt`sP@D}~A-=*-{OrHFhn3vKUVO|qJ79c&g`oGsqg z)s|p0p?%jY`O0DC$PaGSHxZMfE5r&h&%*WUHZyS#8$CTpc*uz7U~x2nV3Je2zu7~0Z6EAtO|p2HADs%jiu zJ=OQn-78OiX)ljof1gQQdHJ8-wIPiLpc8!NHv<&mGJsmX9pJ0A2jJ*@4B*sKoB~t} z10ou#uJCylfUl$Kp5F$aFVGnHJU8H1V4eq*!jFSr10P2PVmf@j#2)zgBN@>EpY^Xp z<@^f|PHFG#-nnJpp6&nn_GfSHd3x>3$6xxlXSZ(quQ%51+w=Bo`*!SkddGq7>vsH2 zSXmzAIFj7Cg<;lvi_=|EWxcJusLG}CQ}dD5TGkilNw{2HJGrPbwY0iUtDF7Z{J+~b z38b++<#F{Ov58@}b!lYjv4*MD^sF`nrlL zmo*0$sH&FM*Bi2gUY;LJAAwdel|jbp#Q!#RQlB&>?te2Uh0+n zkaFlQK}1S=D|pTlWu`U>@v{2F9}ot*7w=R5GiEB%JihcnxT;o!3ucwL9`k)%9JE)j zpMEGjcxI*lS55t{ciTJXq3~guMBG2*JEONDR673OT)IeHdE@P3Ud*e-WxG)rg))pt zt(wAn?z|A!zDq&!)(|98vG&|PQLPa8&?6>9zDUd9KUR;v>dsKc#pz6+IFMu^V@oEToT|31AJ zx*sC%P>Wr({tGao?83G*P=fzlVF{ye#01Y?x3%4z&)eKv+qq@qMs+yhBdbf) f7n$KyMCvCytLjp(6{m(iHRS?I7tZ?GNZ|hfled7O literal 0 HcmV?d00001 diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/__init__.pyc b/src/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f27a35d662cfa13d6168301b68afb6da10480af8 GIT binary patch literal 146 zcmZSn%*(a2-zPGe0SXv_v;z`JnnxtQzUz8GGoSB=MlUS5lQmJ2Dl&l{gpP83g5+AQuP+7tO)NhlU PpHiBWY6r5V7>F4F4Zk6N literal 0 HcmV?d00001 diff --git a/src/primitive.py b/src/primitive.py new file mode 100644 index 0000000..31a9497 --- /dev/null +++ b/src/primitive.py @@ -0,0 +1,31 @@ +# -*- coding:utf-8 -*- + +""" +Class, 定义义原对象。 +""" + +class Primitive(object): + """ + 义原类:创建义原对象。 + """ + def __init__(self, id, primitive, parentId): + self.id = id + self.primitive = primitive + self.parentId = parentId + + def getPrimitive(self): + return self.primitive + + def getId(self): + return self.id + + def getParentId(self): + return self.parentId + + def isTop(self): + return self.id == self.parentId + + @staticmethod + def test(): + print "hahaha" + diff --git a/src/primitive.pyc b/src/primitive.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdd8309d204b532f705dee30754ca21a24f7c7e5 GIT binary patch literal 1610 zcmcIk&ubGw6n?v#Y?Jr{K@bGd90Q7r_ab5sT9G1CFU@7x?o5-d*=*RED1jctdeDo1 zKs|_fS9-J7|3-t}JopdzzS(pm;z4OTllS(`Waho^ee-65pJ!Sh-`(FxXx0M$-eNIr zR*I<0+9U1JmPg8`=R~_i8(p7NK4_U$21H<(52)({Odby78Fgrw@uSR&mZ z6~f;2sM{p5-dTdrtE^gWZY7v+`-eY1?@eF4o*sVs6CPG2HC_(^s1+7-h1HHnJ4BKV z-x)j%oWU50^Y?hoS_hn2>`Rr)baa%dZSdqMF7(i@Do2(@2%`sE0$T+(32g7Ml*%l# z74`E>--!C-c-WidEIP_2z0~%{o6(cJP|`4$gSbfTBr-)3RS~a`CN8Ly=`giYo?>Sv zgmbUSJwenXaan>ZPH}slO$E$lCjfYn=uWf0p0-sroa3+CJo03(q^S};V2a!|owY98jJi@$+n(>26) zWrqiWZ~2|O?ivBtnnjuRWAu5w&8_3#3ml5o#$MuYd9;3~g}DYRDTi^UrL>rlGRxI? zfFbUOlqyf86i7_~rNFGfHi1MeYTDS?rb(u4KUV_hHHYr3W8)X>libsGmW?n7y=J`` hl)Zd|1paU|=9}9(v2MqrVK}yyOMY&G5l3a{{{pI!YBK-; literal 0 HcmV?d00001 diff --git a/src/primitiveFunc.py b/src/primitiveFunc.py new file mode 100644 index 0000000..d60a5db --- /dev/null +++ b/src/primitiveFunc.py @@ -0,0 +1,82 @@ +# -*- coding:utf-8 -*- + +import re +from primitive import Primitive +import sys +reload(sys) +sys.setdefaultencoding("utf-8") + +""" +对义原对象进行操作。 +Example: + +>>>import primitiveFunc as primFunc +# 判断一个词是否为 义原词 +>>>boolean isP = primFunc.isPrimitive("义原词".encode("GBK")) +# 获得一个义原的从本节点到根节点的路径。 +>>>list path = primFunc.getParents("义原词".encode("GBK")) + ... +""" + +# 保存所有的义原对象 key:Integer(编号),value:Primitive对象 +ALLPRIMITIVES = {} + +# 保存所有的义原词语的节点,用于路径查找 key:String(义原词语),value:Integer(结点编号) +PRIMITIVESID = {} + +# 读入文件,创建义原树 +import os +# path = os.path.abspath("..") +_get_module_path = lambda path: os.path.normpath(os.path.join(os.getcwd(), + os.path.dirname(__file__), path)) +path = _get_module_path("../data/WHOLE.DAT") +with open(path) as file: + line = file.readline() + while line: + line = line.strip() + line = re.sub("\s+", " ", line) + strs = line.split(" ") + id = int(strs[0]) + words = strs[1].split("|") + english = words[0] + chinese = words[1] + parentId = int(strs[2]) + ALLPRIMITIVES[id] = Primitive(id, chinese, parentId) + PRIMITIVESID[chinese] = id + PRIMITIVESID[english] = id + line = file.readline() + + +def getParents(primitive): + """ + 获得一个义原的从本节点到根节点的路径。 + 如果没有找到,则返回一个空list + + @:param primitive String 义原词 + """ + global PRIMITIVESID + global ALLPRIMITIVES + list = [] + id = PRIMITIVESID.get(primitive) + if id: + parent = ALLPRIMITIVES.get(id) + list.append(id) + while(not parent.isTop()): + parentId = parent.getParentId() + list.append(parentId) + parent = ALLPRIMITIVES.get(parentId) + return list + + +def isPrimitive(primitive): + """ + 判断一个词语是否为义原词。 + """ + global PRIMITIVESID + return PRIMITIVESID.has_key(primitive) + + +if __name__ == "__main__": + list = getParents(u"军".encode("GBK")) + print list + print isPrimitive(u"忠诚".encode("GBK")) \ No newline at end of file diff --git a/src/primitiveFunc.pyc b/src/primitiveFunc.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5cdde80b5867cdcf2610ce40f0620f7befc0333d GIT binary patch literal 2096 zcmb_cUvC>l5TCPSCwA=oZQP`#$d8r~v5I&=C8|yq_PO?*bGxRs zluA_+p`?Pq11gY4rASpJ5LFN_NeW6o0iS}{@f#0(0GOGx-SQsGJ2yMCJ3I56-)``q zc=X2O*-vxO`t{&<5{KF`00jOGC;?=BJpd&G$^pm*z-ak`kPU+D0vUvL0}T8WLm>Q# z4Pb?VWOqAM4`h2lbioG3jDU=Q2+_W56l5>RDCuAQ3E3FP7!>2Mj?4Ps_CCly@FoqE z#r~F20u%>8gh6zZcO4VyBc(V<7K%9pav0V2qaVQP~lYBka#6SVL#_ zYck$0(hn!!(`1q4DUm9W8;{OIfengT+OJ@1svdjO!f(5ohHb$nzlj z;AQ~4`-Vh&KNMd9F+gckrWZh7fT?MD4#eR9JX6ySw`4vwggvtV#ozT5HVSkE#hhoC zZEb%hRS0KQz5M!HIdak<%ey$#n_R91m1MrEFlxt{8# z?Ew_7(p~teSh}EzG>+?)c|z8rYdaVKATM?9mOz{^ZQFCKvgF04xonrDX>!mEg-hY^ zg_=YyU2x0tV!BYZoP5p2A=Bkr-qwZcQu>zb2~%OICCjsQEv>vJMQU(`3h zZ$AH~{@|e>_2j2#C0pqzZj=H8dQE=3g3F%)x|nGa?b zWM?jlnOtVUzu7Cc3J3jT!`&HsY{rRKj-cE`xCAZ6y8A>sO19+jT zDQ=)AORgm}y>v=yA(yRcNlPc^3S?S_;Nyxjd{YN-Y9gu3vMZ|iw9r$;4-0d{MM|+k z&km>PNlTP$N4BVg3eid-iz|K-)g|9jDcPDAp--_3pSH{}E@nSHMv6g~P97;(U_DpB z&`M@TD9HqgQQAQ7q-oMCXqsFiS0gi2;)@osrY6yLIYxP5UsHtCw9KW_b#voBxEFn1rh@7BD9bdDUsqSR^Z!kkqj!&1>eTz> z`T08+Q(>ctR@pk_JGAbQ&e2~)yF@FiInsGrt`^YpXEx=O1b3Qml)%V z#L$EF-GWSTE{Rn|hA}Duamj$-9QP8KLV{wrC)fD$cRXh(;c8u#YS9XCrWn~`^Y;`2Z zP%kb9&mnU=MQ^mY5R!Xwfn|^_H*{0TP+Sg-A@;u=#QrdWfk`M_SyCZ^>uH9pIV6Ty z-%YVTY^p$R&OB9|;!ZhLsD18n_fi~jL?uPi84}=5uD9!W%iT%sH%v$gTf7oq2!NjZ zU5jnF?KL`C9cR_PA~{)SU)?A|zZ_hjrIgs8YDAt0@>< z*cJX{C`?!(Q7LR*g-#U~S)GBwrCFVY!BthAhq(ZA5#|z`y?G1zKmRKfcSj&?F0(1- pi%w~_lt1{pRF$>B3v$|oYg>NZN>3Rw6PfSC!rsM}k~Jviz5!=>VU+*? literal 0 HcmV?d00001 diff --git a/src/wordsim.pyc b/src/wordsim.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42dff0be504c208d7bd294adac2f2350fa25584b GIT binary patch literal 6813 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 O<_{Hkz07wQr2Y#VVC={M literal 0 HcmV?d00001 diff --git a/src/wordsimilarity.py b/src/wordsimilarity.py new file mode 100644 index 0000000..8894654 --- /dev/null +++ b/src/wordsimilarity.py @@ -0,0 +1,338 @@ +# -*- coding:utf-8 -*- + +from word import Word +import primitiveFunc as primFunc +import re +import sys +reload(sys) + +sys.setdefaultencoding("utf-8") + +""" +计算词语相似度。 +具体的算法实现参考论文:《基于<知网>的词汇语义相似度计算》论文.pdf + +用法: +>>>from wordsimilarity import sim4words +>>>word1 = u"足球" +>>>word2 = u"体育" +>>>sim = sim4words(word1, word2) + +""" + +# 词库(来自文件glossary.dat)中的具体词,或者是义原词。 +ALLWORDS = {} + +# sim(p1,p2) = alpha / (d + alpha) alpha表示义原相似度为0.5时的距离 +alpha = 1.6 + +# 计算实词的相似度,参数,基本义原的权重 +beta1 = 0.5 + +# 计算实词的相似度,参数,其他义原的权重 +beta2 = 0.2 + +# 计算实词的相似度,参数,关系义原的权重 +beta3 = 0.17 + +# 计算实词的相似度,参数,关系符号义原的权重 +beta4 = 0.13 + +# 具体词与义原的相似度一律处理为比较小的常数gamma。具体词与具体词相似度,如果两个词相等,则为1,否则为0 +gamma = 0.2 + +# 任一非空值和空值之间的相似度定义为一个较小的常数delta +delta = 0.2 + +# 两个无关义原之间的默认距离定义为20 +DEFAULT_PRIMITIVE_DIS = 20 + +# 知网的逻辑符号 +LOGICAL_SYMBOL = ",~^" + +# 知网的关系符号 +RELATION_SYMBOL = "#%$*+&@?!" + +# 知网的特殊符号,虚词或者具体词 +SPECIAL_SYMBOL = "{" + + +def add_word(word): + """往词库中添加一个词语""" + global ALLWORDS + list = ALLWORDS.get(word.getWord()) + if not list: + list = [] + list.append(word) + ALLWORDS[word.getWord()] = list + else: + list.append(word) + + +def get_primitive_type(str): + global RELATION_SYMBOL + global SPECIAL_SYMBOL + first = str[0] + if first in RELATION_SYMBOL: + return 1 + if first in SPECIAL_SYMBOL: + return 2 + return 0 + +def parse_detail(related, w): + """ 解析具体的概念部分,并将解析结果保存到Word w中。""" + parts = related.split(",") + isFirst = True + isRelational = False + isSymbol = False + chinese = "" + relationalPrimitiveKey = "" + symbolKey = "" + for part in parts: + # 如果是具体词,则会以括号开始和结尾,如 (China|中国) + if part.startswith("("): + part = part[:-1] + part = part[1:] + # 如果包含等号,则为关系义原,等号后面的全部义原都是关系义原 + if "=" in part: + isRelational = True + strs = part.split("=") + relationalPrimitiveKey = strs[0] + # 只取关系义原的中文部分 + value = strs[1].split("|")[1] + w.addRelationalPrimitives(relationalPrimitiveKey, value) + continue + + # 如果不是具体词或者关系义原 + sts = part.split("|") + # 根据第一个字符本来判断是否只是义原或者是关系符号 + type = get_primitive_type(sts[0]) + # 部分虚词没有中文部分 + if len(sts) > 1: + chinese = sts[1] + if chinese and (chinese.endswith(")") or chinese.endswith("}")): + # 去掉最后的半边括号 + chinese = chinese[:-1] + # 基本义原 + if type == 0: + # 如果前面有关系义原,则本义原也是关系义原 + if isRelational: + w.addRelationalPrimitives(relationalPrimitiveKey, chinese) + continue + # 如果前面是符号义原,则本义原也是符号义原 + if isSymbol: + w.addRelationSymbolPrimitives(symbolKey, chinese) + continue + # 否则是基本义原 + if isFirst: + w.setFirstPrimitive(chinese) + isFirst = False + continue + else: + w.addOtherPrimitives(chinese) + continue + # 关系符号 + if type == 1: + isSymbol = True + isRelational = False + symbolKey = sts[0][0] + w.addRelationSymbolPrimitives(symbolKey, chinese) + continue + + if type == 2: + # 虚词 + if sts[0].startswith("{"): + # 去掉第一个字符"{" + english = sts[0][1:] + if chinese: + w.addStructuralWords(chinese) + continue + # 如果没有中文,则使用英文 + else: + w.addStructuralWords(english) + continue + + +""" +加载glossary.dat文件。 +在import本模块的时候这段代码会自动执行,创建词语库ALLWORDS. +""" +import os +# _get_module_path = lambda path: os.path.normpath(os.path.join(os.getcwd(), +# os.path.dirname(__file__), path)) +_get_module_path = lambda path: os.path.normpath(os.path.join(os.path.dirname(__file__), path)) +path = _get_module_path("../data/glossary.dat") +with open(path) as file: + line = file.readline() + while line: + line = line.strip() + line = re.sub("\s+", " ", line) + strs = line.split(" ") + # print line + word = strs[0] + type = strs[1] + related = strs[2] + # 因为是按照空格切分的,文件中有些位置可能会出错多出空格,所以要把后面的部分加回来 + for i in range(3, len(strs)): + related += strs[i] + w = Word() + w.setWord(word) + w.setType(type) + parse_detail(related, w) + add_word(w) + line = file.readline() + + +def sim4words(word1, word2): + """计算两个词语(两个String)的相似度。""" + global ALLWORDS + word1 = word1.encode("GBK") + word2 = word2.encode("GBK") + if word1 in ALLWORDS and word2 in ALLWORDS: + list1 = ALLWORDS.get(word1) + list2 = ALLWORDS.get(word2) + max = 0 + for w1 in list1: + for w2 in list2: + sim = get_sim4words(w1, w2) + if sim > max: + max = sim + return max + else: + if word1 in ALLWORDS: + print word2 + "没有被收录" + else: + print u"其中有词没有被收录" + return 0.0 + + +def get_sim4words(w1, w2): + """计算两个Word对象的相似度。""" + # 虚词和实词的相似度为0 + if w1.isStructuralWord() != w2.isStructuralWord(): + return 0 + # 虚词与虚词之间的距离 + if w1.isStructuralWord() and w2.isStructuralWord(): + list1 = w1.getStructuralWords() + print "struct list1 is " + print list1 + list2 = w2.getStructuralWords() + print "struct list2 is " + print list2 + return sim4lists(list1, list2) + # 实词之间的距离,分为4部分进行计算 + # 基本义原相似度 + firstPrimitive1 = w1.getFirstPrimitive() + firstPrimitive2 = w2.getFirstPrimitive() + sim1 = sim4primitives(firstPrimitive1, firstPrimitive2) + # 其余基本义原相似度 + list1 = w1.getOtherPrimitives() + list2 = w2.getOtherPrimitives() + sim2 = sim4lists(list1, list2) + # 关系义原相似度 + dict1 = w1.getRelationalPrimitives() + dict2 = w2.getRelationalPrimitives() + sim3 = get_sim4dicts(dict1, dict2) + # 关系符号义原相似度 + dict1 = w1.getRelationSymbolPrimitives() + dict2 = w2.getRelationSymbolPrimitives() + sim4 = get_sim4dicts(dict1,dict2) + # 计算总的相似度 + product = sim1 + sum = beta1 * product + product *= sim2 + sum += beta2 * product + product *= sim3 + sum += beta3 * product + product *= sim4 + sum += beta4 * product + return sum + + +def sim4primitives(primitive1, primitive2): + """计算基本义原之间的距离""" + dis = get_sim4primitives(primitive1, primitive2) + return alpha / (dis + alpha) + + +def get_sim4primitives(primitive1, primitive2): + """计算两个基本义原在义原树中的距离。如果两个节点不在同一棵树上,设定默认距离为20.""" + list1 = primFunc.getParents(primitive1) + list2 = primFunc.getParents(primitive2) + for index in list1: + if index in list2: + return list1.index(index) + list2.index(index) + return DEFAULT_PRIMITIVE_DIS + + +def get_sim4dicts(dict1, dict2): + """计算特征结构的相似度""" + # 如果map都是空的话,则设定相似度为1 + if not dict1 and not dict2: + return 1 + total = len(dict1) + len(dict2) + if not dict1 or not dict2: + return delta + sim = 0 + count = 0 + for (key, value) in dict1.items(): + # 如果两个结构中具有相同的属性,计算相似度 + if dict2.has_key(key): + list1 = value + list2 = dict2.get(key) + sim += sim4lists(list1, list2) + count += 1 + # 没有相同属性,即对应的是空值设定相似度位delta.总共有(total - count)对相似度。 + return (sim + delta * (total - 2 * count)) / (total - count) + + +def sim4lists(list1, list2): + """计算两个集合的相似度。""" + if not list1 and not list2: + return 1 + m = len(list1) + n = len(list2) + if m > n: + big = m + N = n + else: + big = n + N = m + count = 0 + index1 = 0 + index2 = 0 + sum = 0 + while count < N: + max = 0 + for i in range(len(list1)): + for j in range(len(list2)): + sim = inner_sim4words(list1[i], list2[j]) + if(sim > max): + index1 = i + index2 = j + max = sim + sum += max + list1 = list1[:index1] + list1[index1+1:] + list2 = list2[:index2] + list2[index2+1:] + count += 1 + return (sum + delta * (big - N)) / big + + +def inner_sim4words(word1, word2): + """比较两个词之间的距离,这两个词可能是义原,也可能是具体词。""" + isPrimitive1 = primFunc.isPrimitive(word1) + isPrimitive2 = primFunc.isPrimitive(word2) + # 两个义原 + if isPrimitive1 and isPrimitive2: + return sim4primitives(word1, word2) + # 具体词 + if not isPrimitive1 and not isPrimitive2: + if word1 == word2: + return 1 + else: + return 0 + # 义原和具体词的相似度默认位gamma = 0.2 + return gamma + + + diff --git a/src/wordsimilarity.pyc b/src/wordsimilarity.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a23311a33cc1864285b6e651f05bf5a08ae366ab GIT binary patch literal 7450 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