nltkor 1.2.14__cp311-cp311-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. nltkor/Kor_char.py +193 -0
  2. nltkor/__init__.py +16 -0
  3. nltkor/alignment/__init__.py +1315 -0
  4. nltkor/cider/__init__.py +2 -0
  5. nltkor/cider/cider.py +55 -0
  6. nltkor/cider/cider_scorer.py +207 -0
  7. nltkor/distance/__init__.py +441 -0
  8. nltkor/distance/wasserstein.py +126 -0
  9. nltkor/etc.py +22 -0
  10. nltkor/lazyimport.py +144 -0
  11. nltkor/make_requirement.py +11 -0
  12. nltkor/metrics/__init__.py +63 -0
  13. nltkor/metrics/bartscore.py +301 -0
  14. nltkor/metrics/bertscore.py +331 -0
  15. nltkor/metrics/bleu_tensor.py +20 -0
  16. nltkor/metrics/classical.py +847 -0
  17. nltkor/metrics/entment.py +24 -0
  18. nltkor/metrics/eval.py +517 -0
  19. nltkor/metrics/mauve.py +273 -0
  20. nltkor/metrics/mauve_utils.py +131 -0
  21. nltkor/misc/__init__.py +11 -0
  22. nltkor/misc/string2string_basic_functions.py +59 -0
  23. nltkor/misc/string2string_default_tokenizer.py +83 -0
  24. nltkor/misc/string2string_hash_functions.py +159 -0
  25. nltkor/misc/string2string_word_embeddings.py +503 -0
  26. nltkor/search/__init__.py +10 -0
  27. nltkor/search/classical.py +569 -0
  28. nltkor/search/faiss_search.py +787 -0
  29. nltkor/search/kobert_tokenizer.py +181 -0
  30. nltkor/sejong/__init__.py +3 -0
  31. nltkor/sejong/__pycache__/__init__.cpython-38.pyc +0 -0
  32. nltkor/sejong/__pycache__/__init__.cpython-39.pyc +0 -0
  33. nltkor/sejong/__pycache__/sejong_download.cpython-38.pyc +0 -0
  34. nltkor/sejong/__pycache__/sejong_download.cpython-39.pyc +0 -0
  35. nltkor/sejong/__pycache__/ssem.cpython-38.pyc +0 -0
  36. nltkor/sejong/__pycache__/ssem.cpython-39.pyc +0 -0
  37. nltkor/sejong/ch.py +12 -0
  38. nltkor/sejong/dict_semClassNum.txt +491 -0
  39. nltkor/sejong/layer.txt +630 -0
  40. nltkor/sejong/sejong_download.py +87 -0
  41. nltkor/sejong/ssem.py +684 -0
  42. nltkor/similarity/__init__.py +3 -0
  43. nltkor/similarity/bartscore____.py +337 -0
  44. nltkor/similarity/bertscore____.py +339 -0
  45. nltkor/similarity/classical.py +245 -0
  46. nltkor/similarity/cosine_similarity.py +175 -0
  47. nltkor/tag/__init__.py +71 -0
  48. nltkor/tag/__pycache__/__init__.cpython-38.pyc +0 -0
  49. nltkor/tag/__pycache__/__init__.cpython-39.pyc +0 -0
  50. nltkor/tag/__pycache__/espresso_tag.cpython-38.pyc +0 -0
  51. nltkor/tag/__pycache__/espresso_tag.cpython-39.pyc +0 -0
  52. nltkor/tag/espresso_tag.py +220 -0
  53. nltkor/tag/libs/__init__.py +10 -0
  54. nltkor/tag/libs/__pycache__/__init__.cpython-38.pyc +0 -0
  55. nltkor/tag/libs/__pycache__/__init__.cpython-39.pyc +0 -0
  56. nltkor/tag/libs/__pycache__/attributes.cpython-38.pyc +0 -0
  57. nltkor/tag/libs/__pycache__/attributes.cpython-39.pyc +0 -0
  58. nltkor/tag/libs/__pycache__/config.cpython-38.pyc +0 -0
  59. nltkor/tag/libs/__pycache__/config.cpython-39.pyc +0 -0
  60. nltkor/tag/libs/__pycache__/metadata.cpython-38.pyc +0 -0
  61. nltkor/tag/libs/__pycache__/metadata.cpython-39.pyc +0 -0
  62. nltkor/tag/libs/__pycache__/reader.cpython-38.pyc +0 -0
  63. nltkor/tag/libs/__pycache__/reader.cpython-39.pyc +0 -0
  64. nltkor/tag/libs/__pycache__/taggers.cpython-38.pyc +0 -0
  65. nltkor/tag/libs/__pycache__/taggers.cpython-39.pyc +0 -0
  66. nltkor/tag/libs/__pycache__/utils.cpython-38.pyc +0 -0
  67. nltkor/tag/libs/__pycache__/utils.cpython-39.pyc +0 -0
  68. nltkor/tag/libs/__pycache__/word_dictionary.cpython-38.pyc +0 -0
  69. nltkor/tag/libs/__pycache__/word_dictionary.cpython-39.pyc +0 -0
  70. nltkor/tag/libs/arguments.py +280 -0
  71. nltkor/tag/libs/attributes.py +231 -0
  72. nltkor/tag/libs/config.py +159 -0
  73. nltkor/tag/libs/metadata.py +129 -0
  74. nltkor/tag/libs/ner/__init__.py +2 -0
  75. nltkor/tag/libs/ner/__pycache__/__init__.cpython-38.pyc +0 -0
  76. nltkor/tag/libs/ner/__pycache__/__init__.cpython-39.pyc +0 -0
  77. nltkor/tag/libs/ner/__pycache__/ner_reader.cpython-38.pyc +0 -0
  78. nltkor/tag/libs/ner/__pycache__/ner_reader.cpython-39.pyc +0 -0
  79. nltkor/tag/libs/ner/macmorphoreader.py +7 -0
  80. nltkor/tag/libs/ner/ner_reader.py +92 -0
  81. nltkor/tag/libs/network.c +72325 -0
  82. nltkor/tag/libs/network.cpython-311-darwin.so +0 -0
  83. nltkor/tag/libs/network.pyx +878 -0
  84. nltkor/tag/libs/networkconv.pyx +1028 -0
  85. nltkor/tag/libs/networkdependencyconv.pyx +451 -0
  86. nltkor/tag/libs/parse/__init__.py +1 -0
  87. nltkor/tag/libs/parse/__pycache__/__init__.cpython-38.pyc +0 -0
  88. nltkor/tag/libs/parse/__pycache__/__init__.cpython-39.pyc +0 -0
  89. nltkor/tag/libs/parse/__pycache__/parse_reader.cpython-38.pyc +0 -0
  90. nltkor/tag/libs/parse/__pycache__/parse_reader.cpython-39.pyc +0 -0
  91. nltkor/tag/libs/parse/parse_reader.py +283 -0
  92. nltkor/tag/libs/pos/__init__.py +2 -0
  93. nltkor/tag/libs/pos/__pycache__/__init__.cpython-38.pyc +0 -0
  94. nltkor/tag/libs/pos/__pycache__/__init__.cpython-39.pyc +0 -0
  95. nltkor/tag/libs/pos/__pycache__/pos_reader.cpython-38.pyc +0 -0
  96. nltkor/tag/libs/pos/__pycache__/pos_reader.cpython-39.pyc +0 -0
  97. nltkor/tag/libs/pos/macmorphoreader.py +7 -0
  98. nltkor/tag/libs/pos/pos_reader.py +97 -0
  99. nltkor/tag/libs/reader.py +485 -0
  100. nltkor/tag/libs/srl/__init__.py +3 -0
  101. nltkor/tag/libs/srl/__pycache__/__init__.cpython-38.pyc +0 -0
  102. nltkor/tag/libs/srl/__pycache__/__init__.cpython-39.pyc +0 -0
  103. nltkor/tag/libs/srl/__pycache__/srl_reader.cpython-38.pyc +0 -0
  104. nltkor/tag/libs/srl/__pycache__/srl_reader.cpython-39.pyc +0 -0
  105. nltkor/tag/libs/srl/__pycache__/train_srl.cpython-38.pyc +0 -0
  106. nltkor/tag/libs/srl/__pycache__/train_srl.cpython-39.pyc +0 -0
  107. nltkor/tag/libs/srl/__srl_reader_.py +535 -0
  108. nltkor/tag/libs/srl/srl_reader.py +436 -0
  109. nltkor/tag/libs/srl/train_srl.py +87 -0
  110. nltkor/tag/libs/taggers.py +926 -0
  111. nltkor/tag/libs/utils.py +384 -0
  112. nltkor/tag/libs/word_dictionary.py +239 -0
  113. nltkor/tag/libs/wsd/__init__.py +2 -0
  114. nltkor/tag/libs/wsd/__pycache__/__init__.cpython-38.pyc +0 -0
  115. nltkor/tag/libs/wsd/__pycache__/__init__.cpython-39.pyc +0 -0
  116. nltkor/tag/libs/wsd/__pycache__/wsd_reader.cpython-38.pyc +0 -0
  117. nltkor/tag/libs/wsd/__pycache__/wsd_reader.cpython-39.pyc +0 -0
  118. nltkor/tag/libs/wsd/macmorphoreader.py +7 -0
  119. nltkor/tag/libs/wsd/wsd_reader.py +93 -0
  120. nltkor/tokenize/__init__.py +62 -0
  121. nltkor/tokenize/ko_tokenize.py +115 -0
  122. nltkor/trans.py +121 -0
  123. nltkor-1.2.14.dist-info/LICENSE.txt +1093 -0
  124. nltkor-1.2.14.dist-info/METADATA +41 -0
  125. nltkor-1.2.14.dist-info/RECORD +127 -0
  126. nltkor-1.2.14.dist-info/WHEEL +5 -0
  127. nltkor-1.2.14.dist-info/top_level.txt +1 -0
@@ -0,0 +1,491 @@
1
+ 1_��ü�� 1.1_��ü�ڿ��� 1.1.1_������ 1.1.1.1_õü
2
+ 1.1.1.2_����
3
+ 1.1.1.3_�����ù�
4
+ 1.1.1.4_��ü
5
+ 1.1.1.5_��ü
6
+ 1.1.1.6_�輳��
7
+ 1.1.1.7_�к�
8
+ 1.1.2_���� 1.1.2.1_�� 1.1.2.1.1_����
9
+ 1.1.2.1.2_Ǯ
10
+ 1.1.2.1.3_������
11
+ 1.1.2.1.4_��
12
+ 1.1.2.1.5_����
13
+ 1.1.2.1.6_�Ѹ�
14
+ 1.1.2.2_���� 1.1.2.2.1_����
15
+ 1.1.2.2.2_������
16
+ 1.1.2.2.3_��
17
+ 1.1.2.2.4_�з�
18
+ 1.1.2.2.5_����
19
+ 1.1.2.2.6_���� ����
20
+ 1.1.2.2.7_����� ����
21
+ 1.1.2.3_�̻���
22
+ 1.1.2.4_���� ����
23
+ 1.1.2.5_�ΰ� 1.1.2.5.1_�����ΰ� 1.1.2.5.1.1_��Ī�������ΰ� 1.1.2.5.1.1.1_��Ī��ģ��
24
+ 1.1.2.5.1.2_���Ī�������ΰ� 1.1.2.5.1.2.1_���Ī��ģ��
25
+ 1.1.2.5.1.2.2_�Ҽ��ΰ�
26
+ 1.1.2.5.2_ȭ�����ΰ�
27
+ 1.1.2.5.3_ȣĪ
28
+ 1.1.2.5.4_�Ӽ��ΰ� 1.1.2.5.4.1_�������Ӽ��ΰ�
29
+ 1.1.2.5.4.2_�������Ӽ��ΰ�
30
+ 1.1.2.5.4.3_��ü�Ӽ��ΰ� 1.1.2.5.4.3.1_��������ü�Ӽ��ΰ�
31
+ 1.1.2.5.4.3.2_��������ü�Ӽ��ΰ�
32
+ 1.1.2.5.4.4_���żӼ��ΰ� 1.1.2.5.4.4.1_���������żӼ��ΰ�
33
+ 1.1.2.5.4.4.2_���������żӼ��ΰ�
34
+ 1.1.2.5.4.5_�����Ӽ��ΰ� 1.1.2.5.4.5.1_�����������Ӽ��ΰ�
35
+ 1.1.2.5.4.5.2_�����������Ӽ��ΰ�
36
+ 1.1.2.5.4.6_�����Ӽ��ΰ� 1.1.2.5.4.6.1_�ɷ¼Ӽ��ΰ�
37
+ 1.1.2.5.4.7_�ð��Ӽ��ΰ� 1.1.2.5.4.7.1_�����ΰ�
38
+ 1.1.2.5.4.8_�����ΰ�
39
+ 1.1.2.5.4.9_�����ΰ� 1.1.2.5.4.9.1_�����ΰ�
40
+ 1.1.2.5.4.9.2_�����ΰ�
41
+ 1.1.2.5.4.10_����
42
+ 1.1.2.5.4.11_������ 1.1.2.5.4.11.1_������������
43
+ 1.1.2.5.4.11.2_��ġ��������
44
+ 1.1.2.5.4.11.3_���������
45
+ 1.1.2.5.4.11.4_������������
46
+ 1.1.2.5.4.12_��ȸ����ΰ�
47
+ 1.1.2.5.5_�����ΰ�
48
+ 1.1.2.5.6_���� �ΰ� 1.1.2.5.6.1_�����ΰ� 1.1.2.5.6.1.1_�����ΰ�
49
+ 1.1.2.5.6.1.2_����ΰ�
50
+ 1.1.2.5.6.1.3_�����ΰ�
51
+ 1.1.2.5.6.2_����
52
+ 1.1.2.5.6.3_����
53
+ 1.1.2.5.6.4_�����ΰ�
54
+ 1.1.2.5.6.5_���������ΰ�
55
+ 1.1.2.5.6.6_�ݻ�ȸ�������ΰ�
56
+ 1.1.2.5.6.7_�Ͻ��������ΰ�
57
+ 1.1.2.5.6.8_���⿪���ΰ�
58
+ 1.1.2.5.6.9_�Ǹ��ΰ�
59
+ 1.1.2.5.7_�����ΰ� 1.1.2.5.7.1_�����������ΰ�
60
+ 1.1.2.5.7.2_��������ΰ�
61
+ 1.1.2.5.8_������ΰ�
62
+ 1.1.3_�ڿ����Ĺ� 1.1.3.1_ä��
63
+ 1.1.3.2_����
64
+ 1.1.3.3_����
65
+ 1.1.3.4_����
66
+ 1.1.3.5_���
67
+ 1.1.3.6_�߰���
68
+ 1.2_��ü�ΰ��� 1.2.1_��ü���빰 1.2.1.1_��
69
+ 1.2.1.2_����
70
+ 1.2.1.3_�п빰
71
+ 1.2.1.4_��
72
+ 1.2.1.5_�縻
73
+ 1.2.2_������ 1.2.2.1_���� ������ 1.2.2.1.1_���� ������ 1.2.2.1.1.1_ö��������
74
+ 1.2.2.2_��������
75
+ 1.2.2.3_���߱�����
76
+ 1.2.3_��� 1.2.3.1_�׸�
77
+ 1.2.3.2_��
78
+ 1.2.3.3_��
79
+ 1.2.3.4_�׾Ƹ�
80
+ 1.2.3.5_�ָӴ�
81
+ 1.2.3.6_����
82
+ 1.2.4_����
83
+ 1.2.5_������
84
+ 1.2.6_����ǰ
85
+ 1.2.7_����
86
+ 1.2.8_��� 1.2.8.1_���� 1.2.8.1.1_��������
87
+ 1.2.8.1.2_Į
88
+ 1.2.8.1.3_��
89
+ 1.2.8.1.4_ĥ��
90
+ 1.2.8.1.5_Ǫ�µ���
91
+ 1.2.8.2_�ⱸ 1.2.8.2.1_�������ڱⱸ 1.2.8.2.1.1_�����ⱸ
92
+ 1.2.8.3_���
93
+ 1.2.9_���� 1.2.9.1_����
94
+ 1.2.9.2_Įâ
95
+ 1.2.9.3_źȯ
96
+ 1.2.10_��
97
+ 1.2.11_����
98
+ 1.2.12_����
99
+ 1.2.13_�DZ� 1.2.13.1_���DZ�
100
+ 1.2.13.2_���DZ�
101
+ 1.2.13.3_Ÿ�DZ�|�ǹݾDZ� 1.2.13.3.1_�ǹݾDZ�
102
+ 1.2.14_�̼���ǰ 1.2.14.1_ȸȭ
103
+ 1.2.14.2_����
104
+ 1.2.15_��ġ�� 1.2.15.1_������
105
+ 1.2.15.2_�ü���
106
+ 1.2.15.3_�ü���
107
+ 1.2.15.4_ǥ����
108
+ 1.2.15.5_����ü�
109
+ 1.2.16_����Ʈ����
110
+ 1.2.17_�� 1.2.17.1_��ȭ
111
+ 1.2.17.2_����
112
+ 1.2.17.3_��������
113
+ 1.2.17.4_�
114
+ 1.2.18_���
115
+ 1.2.19_���� 1.2.19.1_���� 1.2.19.1.1_��������
116
+ 1.2.19.2_��
117
+ 1.2.19.3_��
118
+ 1.2.19.4_��ȿ��ǰ
119
+ 1.2.19.5_���
120
+ 1.2.19.6_�丮
121
+ 1.2.20_�ؽ�Ʈ������ 1.2.20.1_�ź���
122
+ 1.2.21_���� 1.2.21.1_����
123
+ 1.2.21.2_�ݼ���
124
+ 1.2.21.3_����
125
+ 1.2.21.4_ȭ������
126
+ 1.2.22_���� 1.2.22.1_����
127
+ 1.2.22.2_����
128
+ 1.2.22.3_��ü����
129
+ 1.2.23_õ
130
+ 1.2.24_����
131
+ 1.2.25_ȭ��ǰ
132
+ 1.2.26_��
133
+ 1.3_�Ӽ���ü�� 1.3.1_�ð��Ӽ���ü��
134
+ 1.3.2_�����Ӽ���ü��
135
+ 1.3.3_ũ��Ӽ���ü��
136
+ 1.3.4_�����Ӽ���ü��
137
+ 1.3.5_�������Ӽ���ü��
138
+ 1.3.6_�������Ӽ���ü��
139
+ 1.3.7_ȭ��
140
+ 1.3.8_��⹰
141
+ 1.3.9_�λ깰
142
+ 1.4_���豸ü�� 1.4.1_�κ� 1.4.1.1_��ü���Ǻκ� 1.4.1.1.1_�Ǻ��Ǻκ�
143
+ 1.4.1.2_��ü���� 1.4.1.2.1_����
144
+ 1.4.1.2.2_������ü����
145
+ 1.4.1.2.3_��ó
146
+ 1.4.1.2.4_�̻��ü����
147
+ 1.4.1.3_�Ĺ��Ǻκ�
148
+ 1.4.1.4_�������Ǻκ�
149
+ 1.4.2_��Ἲ��
150
+ 2_���� 2.1_����� 2.1.1_����
151
+ 2.1.2_����
152
+ 2.1.3_�������
153
+ 2.1.4_��������
154
+ 2.1.5_��������
155
+ 2.1.6_��ü 2.1.6.1_��� 2.1.6.1.1_�������
156
+ 2.1.6.1.2_�������
157
+ 2.1.6.1.3_�Ƿ���
158
+ 2.1.6.1.4_�������
159
+ 2.1.6.1.5_�����ⱸ
160
+ 2.1.6.2_����
161
+ 2.1.6.3_���
162
+ 2.1.6.4_����
163
+ 2.1.6.5_�м���ü
164
+ 2.1.6.6_������ü
165
+ 2.1.6.7_��̴�ü
166
+ 2.1.6.8_��ü�Ǻμ�
167
+ 2.1.6.9_�ݻ�ȸ����ü
168
+ 2.1.7_���� 2.1.7.1_��������
169
+ 2.1.7.2_��ġ����
170
+ 2.1.7.3_����
171
+ 2.1.8_�Ͻ�������
172
+ 2.1.9_���������
173
+ 2.2_�������
174
+ 3_��� 3.1_������� 3.1.1_������ 3.1.1.1_����
175
+ 3.1.2_��
176
+ 3.1.3_�����
177
+ 3.1.4_�޾�������
178
+ 3.1.5_����
179
+ 3.1.6_��
180
+ 3.1.7_����
181
+ 3.2_����� 3.2.1_��õ
182
+ 3.2.2_�ٴ�
183
+ 3.2.3_ȣ��
184
+ 3.3_�������
185
+ 3.4_��������
186
+ 3.5_�ǹ� 3.5.1_����
187
+ 3.5.2_�����ǹ�
188
+ 3.5.3_���������ðǹ�
189
+ 3.5.4_����ǹ�
190
+ 3.5.5_����ǹ� 3.5.5.1_������
191
+ 3.5.6_��ȭ���ǹ�
192
+ 3.5.7_���ǹ�
193
+ 3.6_�� 3.6.1_����
194
+ 3.6.2_ö��
195
+ 3.6.3_����
196
+ 3.7_�ٸ� 3.7.1_��������
197
+ 3.7.2_ö��
198
+ 3.8_�� 3.8.1_�ͳ�
199
+ 3.9_�κ���� 3.9.1_�ǹ��κ���� 3.9.1.1_���
200
+ 3.9.1.2_�ǹ��ֺ����
201
+ 3.9.1.3_��
202
+ 3.9.2_����������
203
+ 3.10_������� 3.10.1_ȭ�������
204
+ 3.10.2_��������
205
+ 3.11_�ڸ��¼�
206
+ 3.12_���
207
+ 3.13_���� 3.13.1_���
208
+ 3.13.2_�������
209
+ 3.13.3_��������
210
+ 3.14_�Ӽ������� 3.14.1_�Ͻ���������
211
+ 3.14.2_������
212
+ 3.14.3_�������
213
+ 3.14.4_����
214
+ 4_�߻������ 4.1_���� 4.1.1_����
215
+ 4.1.2_���
216
+ 4.1.3_�ҵ�
217
+ 4.2_�ð� 4.2.1_��ȯ�ð� 4.2.1.1_�����|����
218
+ 4.2.1.2_����
219
+ 4.2.1.3_����
220
+ 4.2.1.4_����
221
+ 4.2.1.5_�Ϸ��ߴܰ�
222
+ 4.2.1.6_��
223
+ 4.2.2_�����ð�
224
+ 4.2.3_�Ӽ��ð� 4.2.3.1_�����Ӽ��ð�
225
+ 4.2.3.2_���ӼӼ��ð� 4.2.3.2.1_���ɼӼ��ð�
226
+ 4.2.4_�κнð�
227
+ 4.2.5_ȭ�����ð� 4.2.5.1_����
228
+ 4.2.5.2_����
229
+ 4.2.5.3_�̷�
230
+ 4.2.6_����ð�
231
+ 4.2.7_����ð�
232
+ 4.3_���
233
+ 4.4_���
234
+ 4.5_���� 4.5.1_��å
235
+ 4.6_����
236
+ 4.7_�Ӽ� 4.7.1_���
237
+ 4.7.2_ũ�� 4.7.2.1_����
238
+ 4.7.2.2_�ӵ�
239
+ 4.7.2.3_����
240
+ 4.7.2.4_����
241
+ 4.7.2.5_����
242
+ 4.7.2.6_����
243
+ 4.7.2.7_�з�
244
+ 4.7.2.8_�µ�
245
+ 4.7.2.9_����
246
+ 4.7.3_���� 4.7.3.1_����
247
+ 4.7.3.2_��
248
+ 4.7.4_�ĺ��Ӽ� 4.7.4.1_�̸� 4.7.4.1.1_�ΰ��̸�
249
+ 4.7.4.2_�Ҽ�
250
+ 4.7.4.3_����
251
+ 4.7.5_�ɷ�
252
+ 4.7.6_��
253
+ 4.7.7_���λ�
254
+ 4.7.8_�Ҹ��Ӽ�
255
+ 4.7.9_����
256
+ 4.7.10_ǰ�ݼӼ�
257
+ 4.8_���� 4.8.1_�ð����� 4.8.1.1_�Ⱓ����
258
+ 4.8.1.2_����
259
+ 4.8.2_��ü����
260
+ 4.8.3_���մ���
261
+ 4.8.4_���̴���
262
+ 4.8.5_���̴���
263
+ 4.8.6_���Ǵ��� 4.8.6.1_��ü���Ǵ���
264
+ 4.8.7_���Դ���
265
+ 4.8.8_������
266
+ 4.8.9_�з´���
267
+ 4.9_����
268
+ 4.10_��Ǹ���
269
+ 4.11_��ȣ 4.11.1_����
270
+ 4.11.2_�����
271
+ 4.11.3_������
272
+ 4.11.4_������
273
+ 4.12_��ȣü�� 4.12.1_��� 4.12.1.1_����
274
+ 4.12.1.2_�Ӽ�������
275
+ 4.12.2_���� ��ȣü��
276
+ 4.13_�ڿ���Ģ
277
+ 4.14_�Թ� 4.14.1_����
278
+ 4.15_����
279
+ 4.16_�Ƿ�
280
+ 4.17_�Ǹ�
281
+ 4.18_�ǹ�
282
+ 4.19_�����
283
+ 4.20_����
284
+ 4.21_���� 4.21.1_��������
285
+ 4.22_���� 4.22.1_��������
286
+ 4.22.2_��ġ����
287
+ 4.22.3_�й����� 4.22.3.1_�̷�
288
+ 4.23_���� 4.23.1_���� 4.23.1.1_���ǿ��
289
+ 4.23.1.2_���DZ�ȣ
290
+ 4.23.1.3_������ǰ 4.23.1.3.1_���ǰ�
291
+ 4.23.1.3.2_��ǰ�
292
+ 4.23.2_����
293
+ 4.23.3_�̼�
294
+ 4.23.4_��ȭ
295
+ 4.23.5_����
296
+ 4.24_�ؽ�Ʈ 4.24.1_�����ؽ�Ʈ
297
+ 4.24.2_��ǥ
298
+ 4.24.3_�ؽ�Ʈ�Ǻκ�
299
+ 4.24.4_���� 4.24.4.1_������
300
+ 4.24.4.2_�Ǹ���
301
+ 4.24.4.3_������
302
+ 4.24.4.4_����
303
+ 4.24.5_����
304
+ 4.25_��ǰ
305
+ 4.26_��۹�
306
+ 4.27_���
307
+ 4.28_����
308
+ 4.29_��
309
+ 4.30_��
310
+ 4.31_�о�
311
+ 4.32_����
312
+ 4.33_���
313
+ 4.34_�߻����κ�
314
+ 4.35_�����߻������ 4.35.1_����
315
+ 4.35.2_����
316
+ 4.35.3_���
317
+ 4.35.4_����
318
+ 4.35.5_����
319
+ 4.35.6_����
320
+ 4.36_����
321
+ 4.37_����
322
+ 4.38_��Ȳ
323
+ 4.39_��ü��Ȳ
324
+ 4.40_����
325
+ 4.41_��������� 4.41.1_�� 4.41.1.1_�����
326
+ 4.41.2_����
327
+ 4.41.3_�����Ǻκ�
328
+ 4.41.4_������������
329
+ 4.42_����������� 4.42.1_��
330
+ 4.42.2_�ĵ�
331
+ 4.43_��������
332
+ 4.44_�߻�����ֹ�
333
+ 5_���� 5.1_�������� 5.1.1_�Ӽ��� 5.1.1.1_���Ӽ���
334
+ 5.1.1.2_���Ӽ���
335
+ 5.1.1.3_���Ӽ���
336
+ 5.1.1.4_�����Ӽ���
337
+ 5.1.1.5_�ӵ��Ӽ���
338
+ 5.1.1.6_�����Ӽ��� 5.1.1.6.1_��������
339
+ 5.1.1.6.2_�߰�����
340
+ 5.1.1.6.3_��������
341
+ 5.1.1.7_�μ��Ӽ��� 5.1.1.7.1_�������μ��Ӽ���
342
+ 5.1.1.7.2_�������μ��Ӽ���
343
+ 5.1.1.8_ǰ�ݼӼ��� 5.1.1.8.1_������ǰ�ݼӼ���
344
+ 5.1.1.8.2_������ǰ�ݼӼ���
345
+ 5.1.1.9_����Ӽ���
346
+ 5.1.1.10_��ļӼ��� 5.1.1.10.1_��ȯ�ð���ļӼ���
347
+ 5.1.1.11_�򰡼Ӽ���
348
+ 5.1.1.12_�˰��Ӽ���
349
+ 5.1.1.13_�Ҹ��Ӽ���
350
+ 5.1.2_���� 5.1.2.1_�ɸ����� 5.1.2.1.1_�������ɸ�����
351
+ 5.1.2.1.2_�������ɸ�����
352
+ 5.1.2.2_��ü����
353
+ 5.1.2.3_���
354
+ 5.1.2.4_����������
355
+ 5.1.2.5_�������� 5.1.2.5.1_�ǰ�
356
+ 5.1.2.5.2_��ȹ
357
+ 5.1.2.6_��Ȳ��
358
+ 5.1.2.7_�������
359
+ 5.1.2.8_����
360
+ 5.1.2.9_������
361
+ 5.2_���� 5.2.1_���������� 5.2.1.1_�ܵ����� 5.2.1.1.1_�����׵��� 5.2.1.1.1.1_��󼺸���
362
+ 5.2.1.1.2_�̵����� 5.2.1.1.2.1_ž��
363
+ 5.2.1.1.2.2_����
364
+ 5.2.1.1.2.3_���ƴٴϱ�
365
+ 5.2.1.1.2.4_���
366
+ 5.2.1.1.2.5_����
367
+ 5.2.1.1.2.6_����
368
+ 5.2.1.1.2.7_�絿���̵����� 5.2.1.1.2.7.1_���
369
+ 5.2.1.1.2.7.2_��ġ
370
+ 5.2.1.1.2.7.3_���
371
+ 5.2.1.1.3_������Ȱ�� 5.2.1.1.3.1_��
372
+ 5.2.1.1.3.2_ü��
373
+ 5.2.1.1.4_������� 5.2.1.1.4.1_�����
374
+ 5.2.1.1.4.2_�ı�����
375
+ 5.2.1.1.4.3_��������
376
+ 5.2.1.1.4.4_�ߴ�����
377
+ 5.2.1.1.4.5_��������
378
+ 5.2.1.1.4.6_��������
379
+ 5.2.1.1.4.7_��������
380
+ 5.2.1.1.4.8_��������
381
+ 5.2.1.1.4.9_�������
382
+ 5.2.1.1.4.10_��������
383
+ 5.2.1.1.4.11_����
384
+ 5.2.1.1.4.12_��
385
+ 5.2.1.1.4.13_�������������
386
+ 5.2.1.1.4.14_�絿������
387
+ 5.2.1.1.4.15_ȥ������
388
+ 5.2.1.1.4.16_ȹ������
389
+ 5.2.1.1.4.17_��������
390
+ 5.2.1.1.4.18_��ȭ����
391
+ 5.2.1.1.4.19_��������
392
+ 5.2.1.1.5_���˹׺���
393
+ 5.2.1.1.6_�������Ƿ�����
394
+ 5.2.1.1.7_�������� 5.2.1.1.7.1_������
395
+ 5.2.1.1.7.2_û��������
396
+ 5.2.1.1.7.3_�̰�������
397
+ 5.2.1.1.7.4_�˰�������
398
+ 5.2.1.1.8_�������
399
+ 5.2.1.1.9_�Ҹ�����
400
+ 5.2.1.1.10_��������
401
+ 5.2.1.1.11_�輳����
402
+ 5.2.1.1.12_�ݺ�������
403
+ 5.2.1.2_���⼺���� 5.2.1.2.1_ó��
404
+ 5.2.1.2.2_����
405
+ 5.2.1.2.3_����
406
+ 5.2.1.2.4_����
407
+ 5.2.1.2.5_����
408
+ 5.2.1.2.6_����
409
+ 5.2.1.3_�������� 5.2.1.3.1_����
410
+ 5.2.2_���ǵ������� 5.2.2.1_����
411
+ 5.2.2.2_����
412
+ 5.2.2.3_��������
413
+ 5.2.2.4_����
414
+ 5.2.2.5_���
415
+ 5.2.2.6_�ΰ��Ǻ�ȭ
416
+ 5.2.2.7_������
417
+ 5.2.2.8_�ǵ�������
418
+ 5.2.3_�߻������� 5.2.3.1_���������� 5.2.3.1.1_��
419
+ 5.2.3.1.2_��
420
+ 5.2.3.2_����
421
+ 5.2.4_�������� 5.2.4.1_��ȣ��������� 5.2.4.1.1_����
422
+ 5.2.4.1.2_��ȭ
423
+ 5.2.4.2_�񳭿弳
424
+ 5.2.4.3_����
425
+ 5.2.4.4_��
426
+ 5.2.4.5_��������
427
+ 5.2.4.6_����
428
+ 5.2.4.7_�̾߱�
429
+ 5.2.4.8_����
430
+ 5.2.4.9_���
431
+ 5.2.4.10_���
432
+ 5.2.4.11_�ݴ�
433
+ 5.2.5_�ɸ����� 5.2.5.1_�������ɸ�����
434
+ 5.2.5.2_�������ɸ�����
435
+ 5.3_��� 5.3.1_��߻�� 5.3.1.1_��� 5.3.1.1.1_���߻��
436
+ 5.3.1.1.2_����
437
+ 5.3.1.1.3_������
438
+ 5.3.1.2_��ȸ���� 5.3.1.2.1_��ȸ����
439
+ 5.3.1.2.2_��ȸ�
440
+ 5.3.1.2.3_������ �浹
441
+ 5.3.1.2.4_�����Ȳ
442
+ 5.3.1.2.5_������ �浹
443
+ 5.3.1.3_���� 5.3.1.3.1_����������
444
+ 5.3.1.3.2_������������
445
+ 5.3.1.3.3_������
446
+ 5.3.1.4_����
447
+ 5.3.1.5_����
448
+ 5.3.1.6_���
449
+ 5.3.2_��ȹ��� 5.3.2.1_��
450
+ 5.3.2.2_��ġ
451
+ 5.3.2.3_����
452
+ 5.3.2.4_����ȸ
453
+ 5.3.2.5_����
454
+ 5.3.2.6_����ȸ�� 5.3.2.6.1_�Ϲݸ���ȸ��
455
+ 5.3.2.6.2_����������ȸ��
456
+ 5.3.2.6.3_�м�����ȸ��
457
+ 5.3.2.7_���� 5.3.2.7.1_���ȸ
458
+ 5.3.2.7.2_�ܰ���
459
+ 5.3.2.7.3_���ϰ��
460
+ 5.3.2.7.4_�������
461
+ 5.3.2.8_����
462
+ 5.3.2.9_�濬��ȸ
463
+ 5.4_���� 5.4.1_��
464
+ 5.4.2_��
465
+ 5.4.3_����
466
+ 5.4.4_����
467
+ 5.4.5_�ڿ����� 5.4.5.1_������� 5.4.5.1.1_����
468
+ 5.4.5.1.2_����
469
+ 5.4.5.1.3_�ٶ�
470
+ 5.4.5.1.4_�Ȱ�
471
+ 5.4.5.1.5_����
472
+ 5.4.5.1.6_���
473
+ 5.4.5.1.7_����
474
+ 5.4.5.2_õ������
475
+ 5.4.5.3_��������
476
+ 5.4.5.4_����ȭ������
477
+ 5.4.5.5_������������
478
+ 5.4.5.6_���
479
+ 5.4.5.7_����������
480
+ 5.4.6_��������� 5.4.6.1_��������
481
+ 5.4.7_�Ҹ�
482
+ 5.4.8_�ݺ�������
483
+ 5.5_���º�ȭ 5.5.1_����
484
+ 5.5.2_����
485
+ 5.5.3_����
486
+ 5.5.4_����
487
+ 5.5.5_����
488
+ 5.5.6_�Ҹ�
489
+ 5.5.7_����
490
+ 5.5.8_����
491
+ 5.5.9_��ȭ