Commit
•
fd80248
0
Parent(s):
Duplicate from kha-white/manga-ocr-base
Browse filesCo-authored-by: Maciej Budyś <kha-white@users.noreply.huggingface.co>
- .gitattributes +27 -0
- README.md +25 -0
- config.json +2164 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- vocab.txt +6144 -0
.gitattributes
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
20 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
26 |
+
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
27 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: ja
|
3 |
+
tags:
|
4 |
+
- image-to-text
|
5 |
+
license: apache-2.0
|
6 |
+
datasets:
|
7 |
+
- manga109s
|
8 |
+
duplicated_from: kha-white/manga-ocr-base
|
9 |
+
---
|
10 |
+
|
11 |
+
# Manga OCR
|
12 |
+
|
13 |
+
Optical character recognition for Japanese text, with the main focus being Japanese manga.
|
14 |
+
|
15 |
+
It uses [Vision Encoder Decoder](https://huggingface.co/docs/transformers/model_doc/vision-encoder-decoder) framework.
|
16 |
+
|
17 |
+
Manga OCR can be used as a general purpose printed Japanese OCR, but its main goal was to provide a high quality
|
18 |
+
text recognition, robust against various scenarios specific to manga:
|
19 |
+
- both vertical and horizontal text
|
20 |
+
- text with furigana
|
21 |
+
- text overlaid on images
|
22 |
+
- wide variety of fonts and font styles
|
23 |
+
- low quality images
|
24 |
+
|
25 |
+
Code is available [here](https://github.com/kha-white/manga_ocr).
|
config.json
ADDED
@@ -0,0 +1,2164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"VisionEncoderDecoderModel"
|
4 |
+
],
|
5 |
+
"decoder": {
|
6 |
+
"_name_or_path": "cl-tohoku/bert-base-japanese-char-v2",
|
7 |
+
"add_cross_attention": true,
|
8 |
+
"architectures": [
|
9 |
+
"BertForMaskedLM"
|
10 |
+
],
|
11 |
+
"attention_probs_dropout_prob": 0.1,
|
12 |
+
"bad_words_ids": null,
|
13 |
+
"bos_token_id": null,
|
14 |
+
"chunk_size_feed_forward": 0,
|
15 |
+
"classifier_dropout": null,
|
16 |
+
"cross_attention_hidden_size": null,
|
17 |
+
"decoder_start_token_id": null,
|
18 |
+
"diversity_penalty": 0.0,
|
19 |
+
"do_sample": false,
|
20 |
+
"early_stopping": false,
|
21 |
+
"encoder_no_repeat_ngram_size": 0,
|
22 |
+
"eos_token_id": null,
|
23 |
+
"finetuning_task": null,
|
24 |
+
"forced_bos_token_id": null,
|
25 |
+
"forced_eos_token_id": null,
|
26 |
+
"hidden_act": "gelu",
|
27 |
+
"hidden_dropout_prob": 0.1,
|
28 |
+
"hidden_size": 768,
|
29 |
+
"id2label": {
|
30 |
+
"0": "LABEL_0",
|
31 |
+
"1": "LABEL_1"
|
32 |
+
},
|
33 |
+
"initializer_range": 0.02,
|
34 |
+
"intermediate_size": 3072,
|
35 |
+
"is_decoder": true,
|
36 |
+
"is_encoder_decoder": false,
|
37 |
+
"label2id": {
|
38 |
+
"LABEL_0": 0,
|
39 |
+
"LABEL_1": 1
|
40 |
+
},
|
41 |
+
"layer_norm_eps": 1e-12,
|
42 |
+
"length_penalty": 1.0,
|
43 |
+
"max_length": 300,
|
44 |
+
"max_position_embeddings": 512,
|
45 |
+
"min_length": 0,
|
46 |
+
"model_type": "bert",
|
47 |
+
"no_repeat_ngram_size": 0,
|
48 |
+
"num_attention_heads": 12,
|
49 |
+
"num_beam_groups": 1,
|
50 |
+
"num_beams": 1,
|
51 |
+
"num_hidden_layers": 2,
|
52 |
+
"num_return_sequences": 1,
|
53 |
+
"output_attentions": false,
|
54 |
+
"output_hidden_states": false,
|
55 |
+
"output_scores": false,
|
56 |
+
"pad_token_id": 0,
|
57 |
+
"position_embedding_type": "absolute",
|
58 |
+
"prefix": null,
|
59 |
+
"problem_type": null,
|
60 |
+
"pruned_heads": {},
|
61 |
+
"remove_invalid_values": false,
|
62 |
+
"repetition_penalty": 1.0,
|
63 |
+
"return_dict": true,
|
64 |
+
"return_dict_in_generate": false,
|
65 |
+
"sep_token_id": null,
|
66 |
+
"task_specific_params": null,
|
67 |
+
"temperature": 1.0,
|
68 |
+
"tie_encoder_decoder": false,
|
69 |
+
"tie_word_embeddings": true,
|
70 |
+
"tokenizer_class": "BertJapaneseTokenizer",
|
71 |
+
"top_k": 50,
|
72 |
+
"top_p": 1.0,
|
73 |
+
"torch_dtype": null,
|
74 |
+
"torchscript": false,
|
75 |
+
"transformers_version": "4.15.0",
|
76 |
+
"type_vocab_size": 2,
|
77 |
+
"use_bfloat16": false,
|
78 |
+
"use_cache": true,
|
79 |
+
"vocab_size": 6144
|
80 |
+
},
|
81 |
+
"decoder_start_token_id": 2,
|
82 |
+
"early_stopping": true,
|
83 |
+
"encoder": {
|
84 |
+
"_name_or_path": "facebook/deit-base-patch16-224",
|
85 |
+
"add_cross_attention": false,
|
86 |
+
"architectures": [
|
87 |
+
"ViTForImageClassification"
|
88 |
+
],
|
89 |
+
"attention_probs_dropout_prob": 0.0,
|
90 |
+
"bad_words_ids": null,
|
91 |
+
"bos_token_id": null,
|
92 |
+
"chunk_size_feed_forward": 0,
|
93 |
+
"cross_attention_hidden_size": null,
|
94 |
+
"decoder_start_token_id": null,
|
95 |
+
"diversity_penalty": 0.0,
|
96 |
+
"do_sample": false,
|
97 |
+
"early_stopping": false,
|
98 |
+
"encoder_no_repeat_ngram_size": 0,
|
99 |
+
"eos_token_id": null,
|
100 |
+
"finetuning_task": null,
|
101 |
+
"forced_bos_token_id": null,
|
102 |
+
"forced_eos_token_id": null,
|
103 |
+
"hidden_act": "gelu",
|
104 |
+
"hidden_dropout_prob": 0.0,
|
105 |
+
"hidden_size": 768,
|
106 |
+
"id2label": {
|
107 |
+
"0": "tench, Tinca tinca",
|
108 |
+
"1": "goldfish, Carassius auratus",
|
109 |
+
"2": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
|
110 |
+
"3": "tiger shark, Galeocerdo cuvieri",
|
111 |
+
"4": "hammerhead, hammerhead shark",
|
112 |
+
"5": "electric ray, crampfish, numbfish, torpedo",
|
113 |
+
"6": "stingray",
|
114 |
+
"7": "cock",
|
115 |
+
"8": "hen",
|
116 |
+
"9": "ostrich, Struthio camelus",
|
117 |
+
"10": "brambling, Fringilla montifringilla",
|
118 |
+
"11": "goldfinch, Carduelis carduelis",
|
119 |
+
"12": "house finch, linnet, Carpodacus mexicanus",
|
120 |
+
"13": "junco, snowbird",
|
121 |
+
"14": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
|
122 |
+
"15": "robin, American robin, Turdus migratorius",
|
123 |
+
"16": "bulbul",
|
124 |
+
"17": "jay",
|
125 |
+
"18": "magpie",
|
126 |
+
"19": "chickadee",
|
127 |
+
"20": "water ouzel, dipper",
|
128 |
+
"21": "kite",
|
129 |
+
"22": "bald eagle, American eagle, Haliaeetus leucocephalus",
|
130 |
+
"23": "vulture",
|
131 |
+
"24": "great grey owl, great gray owl, Strix nebulosa",
|
132 |
+
"25": "European fire salamander, Salamandra salamandra",
|
133 |
+
"26": "common newt, Triturus vulgaris",
|
134 |
+
"27": "eft",
|
135 |
+
"28": "spotted salamander, Ambystoma maculatum",
|
136 |
+
"29": "axolotl, mud puppy, Ambystoma mexicanum",
|
137 |
+
"30": "bullfrog, Rana catesbeiana",
|
138 |
+
"31": "tree frog, tree-frog",
|
139 |
+
"32": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
|
140 |
+
"33": "loggerhead, loggerhead turtle, Caretta caretta",
|
141 |
+
"34": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
|
142 |
+
"35": "mud turtle",
|
143 |
+
"36": "terrapin",
|
144 |
+
"37": "box turtle, box tortoise",
|
145 |
+
"38": "banded gecko",
|
146 |
+
"39": "common iguana, iguana, Iguana iguana",
|
147 |
+
"40": "American chameleon, anole, Anolis carolinensis",
|
148 |
+
"41": "whiptail, whiptail lizard",
|
149 |
+
"42": "agama",
|
150 |
+
"43": "frilled lizard, Chlamydosaurus kingi",
|
151 |
+
"44": "alligator lizard",
|
152 |
+
"45": "Gila monster, Heloderma suspectum",
|
153 |
+
"46": "green lizard, Lacerta viridis",
|
154 |
+
"47": "African chameleon, Chamaeleo chamaeleon",
|
155 |
+
"48": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
|
156 |
+
"49": "African crocodile, Nile crocodile, Crocodylus niloticus",
|
157 |
+
"50": "American alligator, Alligator mississipiensis",
|
158 |
+
"51": "triceratops",
|
159 |
+
"52": "thunder snake, worm snake, Carphophis amoenus",
|
160 |
+
"53": "ringneck snake, ring-necked snake, ring snake",
|
161 |
+
"54": "hognose snake, puff adder, sand viper",
|
162 |
+
"55": "green snake, grass snake",
|
163 |
+
"56": "king snake, kingsnake",
|
164 |
+
"57": "garter snake, grass snake",
|
165 |
+
"58": "water snake",
|
166 |
+
"59": "vine snake",
|
167 |
+
"60": "night snake, Hypsiglena torquata",
|
168 |
+
"61": "boa constrictor, Constrictor constrictor",
|
169 |
+
"62": "rock python, rock snake, Python sebae",
|
170 |
+
"63": "Indian cobra, Naja naja",
|
171 |
+
"64": "green mamba",
|
172 |
+
"65": "sea snake",
|
173 |
+
"66": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
|
174 |
+
"67": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
|
175 |
+
"68": "sidewinder, horned rattlesnake, Crotalus cerastes",
|
176 |
+
"69": "trilobite",
|
177 |
+
"70": "harvestman, daddy longlegs, Phalangium opilio",
|
178 |
+
"71": "scorpion",
|
179 |
+
"72": "black and gold garden spider, Argiope aurantia",
|
180 |
+
"73": "barn spider, Araneus cavaticus",
|
181 |
+
"74": "garden spider, Aranea diademata",
|
182 |
+
"75": "black widow, Latrodectus mactans",
|
183 |
+
"76": "tarantula",
|
184 |
+
"77": "wolf spider, hunting spider",
|
185 |
+
"78": "tick",
|
186 |
+
"79": "centipede",
|
187 |
+
"80": "black grouse",
|
188 |
+
"81": "ptarmigan",
|
189 |
+
"82": "ruffed grouse, partridge, Bonasa umbellus",
|
190 |
+
"83": "prairie chicken, prairie grouse, prairie fowl",
|
191 |
+
"84": "peacock",
|
192 |
+
"85": "quail",
|
193 |
+
"86": "partridge",
|
194 |
+
"87": "African grey, African gray, Psittacus erithacus",
|
195 |
+
"88": "macaw",
|
196 |
+
"89": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
|
197 |
+
"90": "lorikeet",
|
198 |
+
"91": "coucal",
|
199 |
+
"92": "bee eater",
|
200 |
+
"93": "hornbill",
|
201 |
+
"94": "hummingbird",
|
202 |
+
"95": "jacamar",
|
203 |
+
"96": "toucan",
|
204 |
+
"97": "drake",
|
205 |
+
"98": "red-breasted merganser, Mergus serrator",
|
206 |
+
"99": "goose",
|
207 |
+
"100": "black swan, Cygnus atratus",
|
208 |
+
"101": "tusker",
|
209 |
+
"102": "echidna, spiny anteater, anteater",
|
210 |
+
"103": "platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus",
|
211 |
+
"104": "wallaby, brush kangaroo",
|
212 |
+
"105": "koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus",
|
213 |
+
"106": "wombat",
|
214 |
+
"107": "jellyfish",
|
215 |
+
"108": "sea anemone, anemone",
|
216 |
+
"109": "brain coral",
|
217 |
+
"110": "flatworm, platyhelminth",
|
218 |
+
"111": "nematode, nematode worm, roundworm",
|
219 |
+
"112": "conch",
|
220 |
+
"113": "snail",
|
221 |
+
"114": "slug",
|
222 |
+
"115": "sea slug, nudibranch",
|
223 |
+
"116": "chiton, coat-of-mail shell, sea cradle, polyplacophore",
|
224 |
+
"117": "chambered nautilus, pearly nautilus, nautilus",
|
225 |
+
"118": "Dungeness crab, Cancer magister",
|
226 |
+
"119": "rock crab, Cancer irroratus",
|
227 |
+
"120": "fiddler crab",
|
228 |
+
"121": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
|
229 |
+
"122": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
|
230 |
+
"123": "spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish",
|
231 |
+
"124": "crayfish, crawfish, crawdad, crawdaddy",
|
232 |
+
"125": "hermit crab",
|
233 |
+
"126": "isopod",
|
234 |
+
"127": "white stork, Ciconia ciconia",
|
235 |
+
"128": "black stork, Ciconia nigra",
|
236 |
+
"129": "spoonbill",
|
237 |
+
"130": "flamingo",
|
238 |
+
"131": "little blue heron, Egretta caerulea",
|
239 |
+
"132": "American egret, great white heron, Egretta albus",
|
240 |
+
"133": "bittern",
|
241 |
+
"134": "crane",
|
242 |
+
"135": "limpkin, Aramus pictus",
|
243 |
+
"136": "European gallinule, Porphyrio porphyrio",
|
244 |
+
"137": "American coot, marsh hen, mud hen, water hen, Fulica americana",
|
245 |
+
"138": "bustard",
|
246 |
+
"139": "ruddy turnstone, Arenaria interpres",
|
247 |
+
"140": "red-backed sandpiper, dunlin, Erolia alpina",
|
248 |
+
"141": "redshank, Tringa totanus",
|
249 |
+
"142": "dowitcher",
|
250 |
+
"143": "oystercatcher, oyster catcher",
|
251 |
+
"144": "pelican",
|
252 |
+
"145": "king penguin, Aptenodytes patagonica",
|
253 |
+
"146": "albatross, mollymawk",
|
254 |
+
"147": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
|
255 |
+
"148": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
|
256 |
+
"149": "dugong, Dugong dugon",
|
257 |
+
"150": "sea lion",
|
258 |
+
"151": "Chihuahua",
|
259 |
+
"152": "Japanese spaniel",
|
260 |
+
"153": "Maltese dog, Maltese terrier, Maltese",
|
261 |
+
"154": "Pekinese, Pekingese, Peke",
|
262 |
+
"155": "Shih-Tzu",
|
263 |
+
"156": "Blenheim spaniel",
|
264 |
+
"157": "papillon",
|
265 |
+
"158": "toy terrier",
|
266 |
+
"159": "Rhodesian ridgeback",
|
267 |
+
"160": "Afghan hound, Afghan",
|
268 |
+
"161": "basset, basset hound",
|
269 |
+
"162": "beagle",
|
270 |
+
"163": "bloodhound, sleuthhound",
|
271 |
+
"164": "bluetick",
|
272 |
+
"165": "black-and-tan coonhound",
|
273 |
+
"166": "Walker hound, Walker foxhound",
|
274 |
+
"167": "English foxhound",
|
275 |
+
"168": "redbone",
|
276 |
+
"169": "borzoi, Russian wolfhound",
|
277 |
+
"170": "Irish wolfhound",
|
278 |
+
"171": "Italian greyhound",
|
279 |
+
"172": "whippet",
|
280 |
+
"173": "Ibizan hound, Ibizan Podenco",
|
281 |
+
"174": "Norwegian elkhound, elkhound",
|
282 |
+
"175": "otterhound, otter hound",
|
283 |
+
"176": "Saluki, gazelle hound",
|
284 |
+
"177": "Scottish deerhound, deerhound",
|
285 |
+
"178": "Weimaraner",
|
286 |
+
"179": "Staffordshire bullterrier, Staffordshire bull terrier",
|
287 |
+
"180": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
|
288 |
+
"181": "Bedlington terrier",
|
289 |
+
"182": "Border terrier",
|
290 |
+
"183": "Kerry blue terrier",
|
291 |
+
"184": "Irish terrier",
|
292 |
+
"185": "Norfolk terrier",
|
293 |
+
"186": "Norwich terrier",
|
294 |
+
"187": "Yorkshire terrier",
|
295 |
+
"188": "wire-haired fox terrier",
|
296 |
+
"189": "Lakeland terrier",
|
297 |
+
"190": "Sealyham terrier, Sealyham",
|
298 |
+
"191": "Airedale, Airedale terrier",
|
299 |
+
"192": "cairn, cairn terrier",
|
300 |
+
"193": "Australian terrier",
|
301 |
+
"194": "Dandie Dinmont, Dandie Dinmont terrier",
|
302 |
+
"195": "Boston bull, Boston terrier",
|
303 |
+
"196": "miniature schnauzer",
|
304 |
+
"197": "giant schnauzer",
|
305 |
+
"198": "standard schnauzer",
|
306 |
+
"199": "Scotch terrier, Scottish terrier, Scottie",
|
307 |
+
"200": "Tibetan terrier, chrysanthemum dog",
|
308 |
+
"201": "silky terrier, Sydney silky",
|
309 |
+
"202": "soft-coated wheaten terrier",
|
310 |
+
"203": "West Highland white terrier",
|
311 |
+
"204": "Lhasa, Lhasa apso",
|
312 |
+
"205": "flat-coated retriever",
|
313 |
+
"206": "curly-coated retriever",
|
314 |
+
"207": "golden retriever",
|
315 |
+
"208": "Labrador retriever",
|
316 |
+
"209": "Chesapeake Bay retriever",
|
317 |
+
"210": "German short-haired pointer",
|
318 |
+
"211": "vizsla, Hungarian pointer",
|
319 |
+
"212": "English setter",
|
320 |
+
"213": "Irish setter, red setter",
|
321 |
+
"214": "Gordon setter",
|
322 |
+
"215": "Brittany spaniel",
|
323 |
+
"216": "clumber, clumber spaniel",
|
324 |
+
"217": "English springer, English springer spaniel",
|
325 |
+
"218": "Welsh springer spaniel",
|
326 |
+
"219": "cocker spaniel, English cocker spaniel, cocker",
|
327 |
+
"220": "Sussex spaniel",
|
328 |
+
"221": "Irish water spaniel",
|
329 |
+
"222": "kuvasz",
|
330 |
+
"223": "schipperke",
|
331 |
+
"224": "groenendael",
|
332 |
+
"225": "malinois",
|
333 |
+
"226": "briard",
|
334 |
+
"227": "kelpie",
|
335 |
+
"228": "komondor",
|
336 |
+
"229": "Old English sheepdog, bobtail",
|
337 |
+
"230": "Shetland sheepdog, Shetland sheep dog, Shetland",
|
338 |
+
"231": "collie",
|
339 |
+
"232": "Border collie",
|
340 |
+
"233": "Bouvier des Flandres, Bouviers des Flandres",
|
341 |
+
"234": "Rottweiler",
|
342 |
+
"235": "German shepherd, German shepherd dog, German police dog, alsatian",
|
343 |
+
"236": "Doberman, Doberman pinscher",
|
344 |
+
"237": "miniature pinscher",
|
345 |
+
"238": "Greater Swiss Mountain dog",
|
346 |
+
"239": "Bernese mountain dog",
|
347 |
+
"240": "Appenzeller",
|
348 |
+
"241": "EntleBucher",
|
349 |
+
"242": "boxer",
|
350 |
+
"243": "bull mastiff",
|
351 |
+
"244": "Tibetan mastiff",
|
352 |
+
"245": "French bulldog",
|
353 |
+
"246": "Great Dane",
|
354 |
+
"247": "Saint Bernard, St Bernard",
|
355 |
+
"248": "Eskimo dog, husky",
|
356 |
+
"249": "malamute, malemute, Alaskan malamute",
|
357 |
+
"250": "Siberian husky",
|
358 |
+
"251": "dalmatian, coach dog, carriage dog",
|
359 |
+
"252": "affenpinscher, monkey pinscher, monkey dog",
|
360 |
+
"253": "basenji",
|
361 |
+
"254": "pug, pug-dog",
|
362 |
+
"255": "Leonberg",
|
363 |
+
"256": "Newfoundland, Newfoundland dog",
|
364 |
+
"257": "Great Pyrenees",
|
365 |
+
"258": "Samoyed, Samoyede",
|
366 |
+
"259": "Pomeranian",
|
367 |
+
"260": "chow, chow chow",
|
368 |
+
"261": "keeshond",
|
369 |
+
"262": "Brabancon griffon",
|
370 |
+
"263": "Pembroke, Pembroke Welsh corgi",
|
371 |
+
"264": "Cardigan, Cardigan Welsh corgi",
|
372 |
+
"265": "toy poodle",
|
373 |
+
"266": "miniature poodle",
|
374 |
+
"267": "standard poodle",
|
375 |
+
"268": "Mexican hairless",
|
376 |
+
"269": "timber wolf, grey wolf, gray wolf, Canis lupus",
|
377 |
+
"270": "white wolf, Arctic wolf, Canis lupus tundrarum",
|
378 |
+
"271": "red wolf, maned wolf, Canis rufus, Canis niger",
|
379 |
+
"272": "coyote, prairie wolf, brush wolf, Canis latrans",
|
380 |
+
"273": "dingo, warrigal, warragal, Canis dingo",
|
381 |
+
"274": "dhole, Cuon alpinus",
|
382 |
+
"275": "African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus",
|
383 |
+
"276": "hyena, hyaena",
|
384 |
+
"277": "red fox, Vulpes vulpes",
|
385 |
+
"278": "kit fox, Vulpes macrotis",
|
386 |
+
"279": "Arctic fox, white fox, Alopex lagopus",
|
387 |
+
"280": "grey fox, gray fox, Urocyon cinereoargenteus",
|
388 |
+
"281": "tabby, tabby cat",
|
389 |
+
"282": "tiger cat",
|
390 |
+
"283": "Persian cat",
|
391 |
+
"284": "Siamese cat, Siamese",
|
392 |
+
"285": "Egyptian cat",
|
393 |
+
"286": "cougar, puma, catamount, mountain lion, painter, panther, Felis concolor",
|
394 |
+
"287": "lynx, catamount",
|
395 |
+
"288": "leopard, Panthera pardus",
|
396 |
+
"289": "snow leopard, ounce, Panthera uncia",
|
397 |
+
"290": "jaguar, panther, Panthera onca, Felis onca",
|
398 |
+
"291": "lion, king of beasts, Panthera leo",
|
399 |
+
"292": "tiger, Panthera tigris",
|
400 |
+
"293": "cheetah, chetah, Acinonyx jubatus",
|
401 |
+
"294": "brown bear, bruin, Ursus arctos",
|
402 |
+
"295": "American black bear, black bear, Ursus americanus, Euarctos americanus",
|
403 |
+
"296": "ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus",
|
404 |
+
"297": "sloth bear, Melursus ursinus, Ursus ursinus",
|
405 |
+
"298": "mongoose",
|
406 |
+
"299": "meerkat, mierkat",
|
407 |
+
"300": "tiger beetle",
|
408 |
+
"301": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
|
409 |
+
"302": "ground beetle, carabid beetle",
|
410 |
+
"303": "long-horned beetle, longicorn, longicorn beetle",
|
411 |
+
"304": "leaf beetle, chrysomelid",
|
412 |
+
"305": "dung beetle",
|
413 |
+
"306": "rhinoceros beetle",
|
414 |
+
"307": "weevil",
|
415 |
+
"308": "fly",
|
416 |
+
"309": "bee",
|
417 |
+
"310": "ant, emmet, pismire",
|
418 |
+
"311": "grasshopper, hopper",
|
419 |
+
"312": "cricket",
|
420 |
+
"313": "walking stick, walkingstick, stick insect",
|
421 |
+
"314": "cockroach, roach",
|
422 |
+
"315": "mantis, mantid",
|
423 |
+
"316": "cicada, cicala",
|
424 |
+
"317": "leafhopper",
|
425 |
+
"318": "lacewing, lacewing fly",
|
426 |
+
"319": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
|
427 |
+
"320": "damselfly",
|
428 |
+
"321": "admiral",
|
429 |
+
"322": "ringlet, ringlet butterfly",
|
430 |
+
"323": "monarch, monarch butterfly, milkweed butterfly, Danaus plexippus",
|
431 |
+
"324": "cabbage butterfly",
|
432 |
+
"325": "sulphur butterfly, sulfur butterfly",
|
433 |
+
"326": "lycaenid, lycaenid butterfly",
|
434 |
+
"327": "starfish, sea star",
|
435 |
+
"328": "sea urchin",
|
436 |
+
"329": "sea cucumber, holothurian",
|
437 |
+
"330": "wood rabbit, cottontail, cottontail rabbit",
|
438 |
+
"331": "hare",
|
439 |
+
"332": "Angora, Angora rabbit",
|
440 |
+
"333": "hamster",
|
441 |
+
"334": "porcupine, hedgehog",
|
442 |
+
"335": "fox squirrel, eastern fox squirrel, Sciurus niger",
|
443 |
+
"336": "marmot",
|
444 |
+
"337": "beaver",
|
445 |
+
"338": "guinea pig, Cavia cobaya",
|
446 |
+
"339": "sorrel",
|
447 |
+
"340": "zebra",
|
448 |
+
"341": "hog, pig, grunter, squealer, Sus scrofa",
|
449 |
+
"342": "wild boar, boar, Sus scrofa",
|
450 |
+
"343": "warthog",
|
451 |
+
"344": "hippopotamus, hippo, river horse, Hippopotamus amphibius",
|
452 |
+
"345": "ox",
|
453 |
+
"346": "water buffalo, water ox, Asiatic buffalo, Bubalus bubalis",
|
454 |
+
"347": "bison",
|
455 |
+
"348": "ram, tup",
|
456 |
+
"349": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
|
457 |
+
"350": "ibex, Capra ibex",
|
458 |
+
"351": "hartebeest",
|
459 |
+
"352": "impala, Aepyceros melampus",
|
460 |
+
"353": "gazelle",
|
461 |
+
"354": "Arabian camel, dromedary, Camelus dromedarius",
|
462 |
+
"355": "llama",
|
463 |
+
"356": "weasel",
|
464 |
+
"357": "mink",
|
465 |
+
"358": "polecat, fitch, foulmart, foumart, Mustela putorius",
|
466 |
+
"359": "black-footed ferret, ferret, Mustela nigripes",
|
467 |
+
"360": "otter",
|
468 |
+
"361": "skunk, polecat, wood pussy",
|
469 |
+
"362": "badger",
|
470 |
+
"363": "armadillo",
|
471 |
+
"364": "three-toed sloth, ai, Bradypus tridactylus",
|
472 |
+
"365": "orangutan, orang, orangutang, Pongo pygmaeus",
|
473 |
+
"366": "gorilla, Gorilla gorilla",
|
474 |
+
"367": "chimpanzee, chimp, Pan troglodytes",
|
475 |
+
"368": "gibbon, Hylobates lar",
|
476 |
+
"369": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
|
477 |
+
"370": "guenon, guenon monkey",
|
478 |
+
"371": "patas, hussar monkey, Erythrocebus patas",
|
479 |
+
"372": "baboon",
|
480 |
+
"373": "macaque",
|
481 |
+
"374": "langur",
|
482 |
+
"375": "colobus, colobus monkey",
|
483 |
+
"376": "proboscis monkey, Nasalis larvatus",
|
484 |
+
"377": "marmoset",
|
485 |
+
"378": "capuchin, ringtail, Cebus capucinus",
|
486 |
+
"379": "howler monkey, howler",
|
487 |
+
"380": "titi, titi monkey",
|
488 |
+
"381": "spider monkey, Ateles geoffroyi",
|
489 |
+
"382": "squirrel monkey, Saimiri sciureus",
|
490 |
+
"383": "Madagascar cat, ring-tailed lemur, Lemur catta",
|
491 |
+
"384": "indri, indris, Indri indri, Indri brevicaudatus",
|
492 |
+
"385": "Indian elephant, Elephas maximus",
|
493 |
+
"386": "African elephant, Loxodonta africana",
|
494 |
+
"387": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
|
495 |
+
"388": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
|
496 |
+
"389": "barracouta, snoek",
|
497 |
+
"390": "eel",
|
498 |
+
"391": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
|
499 |
+
"392": "rock beauty, Holocanthus tricolor",
|
500 |
+
"393": "anemone fish",
|
501 |
+
"394": "sturgeon",
|
502 |
+
"395": "gar, garfish, garpike, billfish, Lepisosteus osseus",
|
503 |
+
"396": "lionfish",
|
504 |
+
"397": "puffer, pufferfish, blowfish, globefish",
|
505 |
+
"398": "abacus",
|
506 |
+
"399": "abaya",
|
507 |
+
"400": "academic gown, academic robe, judge's robe",
|
508 |
+
"401": "accordion, piano accordion, squeeze box",
|
509 |
+
"402": "acoustic guitar",
|
510 |
+
"403": "aircraft carrier, carrier, flattop, attack aircraft carrier",
|
511 |
+
"404": "airliner",
|
512 |
+
"405": "airship, dirigible",
|
513 |
+
"406": "altar",
|
514 |
+
"407": "ambulance",
|
515 |
+
"408": "amphibian, amphibious vehicle",
|
516 |
+
"409": "analog clock",
|
517 |
+
"410": "apiary, bee house",
|
518 |
+
"411": "apron",
|
519 |
+
"412": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
|
520 |
+
"413": "assault rifle, assault gun",
|
521 |
+
"414": "backpack, back pack, knapsack, packsack, rucksack, haversack",
|
522 |
+
"415": "bakery, bakeshop, bakehouse",
|
523 |
+
"416": "balance beam, beam",
|
524 |
+
"417": "balloon",
|
525 |
+
"418": "ballpoint, ballpoint pen, ballpen, Biro",
|
526 |
+
"419": "Band Aid",
|
527 |
+
"420": "banjo",
|
528 |
+
"421": "bannister, banister, balustrade, balusters, handrail",
|
529 |
+
"422": "barbell",
|
530 |
+
"423": "barber chair",
|
531 |
+
"424": "barbershop",
|
532 |
+
"425": "barn",
|
533 |
+
"426": "barometer",
|
534 |
+
"427": "barrel, cask",
|
535 |
+
"428": "barrow, garden cart, lawn cart, wheelbarrow",
|
536 |
+
"429": "baseball",
|
537 |
+
"430": "basketball",
|
538 |
+
"431": "bassinet",
|
539 |
+
"432": "bassoon",
|
540 |
+
"433": "bathing cap, swimming cap",
|
541 |
+
"434": "bath towel",
|
542 |
+
"435": "bathtub, bathing tub, bath, tub",
|
543 |
+
"436": "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon",
|
544 |
+
"437": "beacon, lighthouse, beacon light, pharos",
|
545 |
+
"438": "beaker",
|
546 |
+
"439": "bearskin, busby, shako",
|
547 |
+
"440": "beer bottle",
|
548 |
+
"441": "beer glass",
|
549 |
+
"442": "bell cote, bell cot",
|
550 |
+
"443": "bib",
|
551 |
+
"444": "bicycle-built-for-two, tandem bicycle, tandem",
|
552 |
+
"445": "bikini, two-piece",
|
553 |
+
"446": "binder, ring-binder",
|
554 |
+
"447": "binoculars, field glasses, opera glasses",
|
555 |
+
"448": "birdhouse",
|
556 |
+
"449": "boathouse",
|
557 |
+
"450": "bobsled, bobsleigh, bob",
|
558 |
+
"451": "bolo tie, bolo, bola tie, bola",
|
559 |
+
"452": "bonnet, poke bonnet",
|
560 |
+
"453": "bookcase",
|
561 |
+
"454": "bookshop, bookstore, bookstall",
|
562 |
+
"455": "bottlecap",
|
563 |
+
"456": "bow",
|
564 |
+
"457": "bow tie, bow-tie, bowtie",
|
565 |
+
"458": "brass, memorial tablet, plaque",
|
566 |
+
"459": "brassiere, bra, bandeau",
|
567 |
+
"460": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
|
568 |
+
"461": "breastplate, aegis, egis",
|
569 |
+
"462": "broom",
|
570 |
+
"463": "bucket, pail",
|
571 |
+
"464": "buckle",
|
572 |
+
"465": "bulletproof vest",
|
573 |
+
"466": "bullet train, bullet",
|
574 |
+
"467": "butcher shop, meat market",
|
575 |
+
"468": "cab, hack, taxi, taxicab",
|
576 |
+
"469": "caldron, cauldron",
|
577 |
+
"470": "candle, taper, wax light",
|
578 |
+
"471": "cannon",
|
579 |
+
"472": "canoe",
|
580 |
+
"473": "can opener, tin opener",
|
581 |
+
"474": "cardigan",
|
582 |
+
"475": "car mirror",
|
583 |
+
"476": "carousel, carrousel, merry-go-round, roundabout, whirligig",
|
584 |
+
"477": "carpenter's kit, tool kit",
|
585 |
+
"478": "carton",
|
586 |
+
"479": "car wheel",
|
587 |
+
"480": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
|
588 |
+
"481": "cassette",
|
589 |
+
"482": "cassette player",
|
590 |
+
"483": "castle",
|
591 |
+
"484": "catamaran",
|
592 |
+
"485": "CD player",
|
593 |
+
"486": "cello, violoncello",
|
594 |
+
"487": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
|
595 |
+
"488": "chain",
|
596 |
+
"489": "chainlink fence",
|
597 |
+
"490": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
|
598 |
+
"491": "chain saw, chainsaw",
|
599 |
+
"492": "chest",
|
600 |
+
"493": "chiffonier, commode",
|
601 |
+
"494": "chime, bell, gong",
|
602 |
+
"495": "china cabinet, china closet",
|
603 |
+
"496": "Christmas stocking",
|
604 |
+
"497": "church, church building",
|
605 |
+
"498": "cinema, movie theater, movie theatre, movie house, picture palace",
|
606 |
+
"499": "cleaver, meat cleaver, chopper",
|
607 |
+
"500": "cliff dwelling",
|
608 |
+
"501": "cloak",
|
609 |
+
"502": "clog, geta, patten, sabot",
|
610 |
+
"503": "cocktail shaker",
|
611 |
+
"504": "coffee mug",
|
612 |
+
"505": "coffeepot",
|
613 |
+
"506": "coil, spiral, volute, whorl, helix",
|
614 |
+
"507": "combination lock",
|
615 |
+
"508": "computer keyboard, keypad",
|
616 |
+
"509": "confectionery, confectionary, candy store",
|
617 |
+
"510": "container ship, containership, container vessel",
|
618 |
+
"511": "convertible",
|
619 |
+
"512": "corkscrew, bottle screw",
|
620 |
+
"513": "cornet, horn, trumpet, trump",
|
621 |
+
"514": "cowboy boot",
|
622 |
+
"515": "cowboy hat, ten-gallon hat",
|
623 |
+
"516": "cradle",
|
624 |
+
"517": "crane",
|
625 |
+
"518": "crash helmet",
|
626 |
+
"519": "crate",
|
627 |
+
"520": "crib, cot",
|
628 |
+
"521": "Crock Pot",
|
629 |
+
"522": "croquet ball",
|
630 |
+
"523": "crutch",
|
631 |
+
"524": "cuirass",
|
632 |
+
"525": "dam, dike, dyke",
|
633 |
+
"526": "desk",
|
634 |
+
"527": "desktop computer",
|
635 |
+
"528": "dial telephone, dial phone",
|
636 |
+
"529": "diaper, nappy, napkin",
|
637 |
+
"530": "digital clock",
|
638 |
+
"531": "digital watch",
|
639 |
+
"532": "dining table, board",
|
640 |
+
"533": "dishrag, dishcloth",
|
641 |
+
"534": "dishwasher, dish washer, dishwashing machine",
|
642 |
+
"535": "disk brake, disc brake",
|
643 |
+
"536": "dock, dockage, docking facility",
|
644 |
+
"537": "dogsled, dog sled, dog sleigh",
|
645 |
+
"538": "dome",
|
646 |
+
"539": "doormat, welcome mat",
|
647 |
+
"540": "drilling platform, offshore rig",
|
648 |
+
"541": "drum, membranophone, tympan",
|
649 |
+
"542": "drumstick",
|
650 |
+
"543": "dumbbell",
|
651 |
+
"544": "Dutch oven",
|
652 |
+
"545": "electric fan, blower",
|
653 |
+
"546": "electric guitar",
|
654 |
+
"547": "electric locomotive",
|
655 |
+
"548": "entertainment center",
|
656 |
+
"549": "envelope",
|
657 |
+
"550": "espresso maker",
|
658 |
+
"551": "face powder",
|
659 |
+
"552": "feather boa, boa",
|
660 |
+
"553": "file, file cabinet, filing cabinet",
|
661 |
+
"554": "fireboat",
|
662 |
+
"555": "fire engine, fire truck",
|
663 |
+
"556": "fire screen, fireguard",
|
664 |
+
"557": "flagpole, flagstaff",
|
665 |
+
"558": "flute, transverse flute",
|
666 |
+
"559": "folding chair",
|
667 |
+
"560": "football helmet",
|
668 |
+
"561": "forklift",
|
669 |
+
"562": "fountain",
|
670 |
+
"563": "fountain pen",
|
671 |
+
"564": "four-poster",
|
672 |
+
"565": "freight car",
|
673 |
+
"566": "French horn, horn",
|
674 |
+
"567": "frying pan, frypan, skillet",
|
675 |
+
"568": "fur coat",
|
676 |
+
"569": "garbage truck, dustcart",
|
677 |
+
"570": "gasmask, respirator, gas helmet",
|
678 |
+
"571": "gas pump, gasoline pump, petrol pump, island dispenser",
|
679 |
+
"572": "goblet",
|
680 |
+
"573": "go-kart",
|
681 |
+
"574": "golf ball",
|
682 |
+
"575": "golfcart, golf cart",
|
683 |
+
"576": "gondola",
|
684 |
+
"577": "gong, tam-tam",
|
685 |
+
"578": "gown",
|
686 |
+
"579": "grand piano, grand",
|
687 |
+
"580": "greenhouse, nursery, glasshouse",
|
688 |
+
"581": "grille, radiator grille",
|
689 |
+
"582": "grocery store, grocery, food market, market",
|
690 |
+
"583": "guillotine",
|
691 |
+
"584": "hair slide",
|
692 |
+
"585": "hair spray",
|
693 |
+
"586": "half track",
|
694 |
+
"587": "hammer",
|
695 |
+
"588": "hamper",
|
696 |
+
"589": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
|
697 |
+
"590": "hand-held computer, hand-held microcomputer",
|
698 |
+
"591": "handkerchief, hankie, hanky, hankey",
|
699 |
+
"592": "hard disc, hard disk, fixed disk",
|
700 |
+
"593": "harmonica, mouth organ, harp, mouth harp",
|
701 |
+
"594": "harp",
|
702 |
+
"595": "harvester, reaper",
|
703 |
+
"596": "hatchet",
|
704 |
+
"597": "holster",
|
705 |
+
"598": "home theater, home theatre",
|
706 |
+
"599": "honeycomb",
|
707 |
+
"600": "hook, claw",
|
708 |
+
"601": "hoopskirt, crinoline",
|
709 |
+
"602": "horizontal bar, high bar",
|
710 |
+
"603": "horse cart, horse-cart",
|
711 |
+
"604": "hourglass",
|
712 |
+
"605": "iPod",
|
713 |
+
"606": "iron, smoothing iron",
|
714 |
+
"607": "jack-o'-lantern",
|
715 |
+
"608": "jean, blue jean, denim",
|
716 |
+
"609": "jeep, landrover",
|
717 |
+
"610": "jersey, T-shirt, tee shirt",
|
718 |
+
"611": "jigsaw puzzle",
|
719 |
+
"612": "jinrikisha, ricksha, rickshaw",
|
720 |
+
"613": "joystick",
|
721 |
+
"614": "kimono",
|
722 |
+
"615": "knee pad",
|
723 |
+
"616": "knot",
|
724 |
+
"617": "lab coat, laboratory coat",
|
725 |
+
"618": "ladle",
|
726 |
+
"619": "lampshade, lamp shade",
|
727 |
+
"620": "laptop, laptop computer",
|
728 |
+
"621": "lawn mower, mower",
|
729 |
+
"622": "lens cap, lens cover",
|
730 |
+
"623": "letter opener, paper knife, paperknife",
|
731 |
+
"624": "library",
|
732 |
+
"625": "lifeboat",
|
733 |
+
"626": "lighter, light, igniter, ignitor",
|
734 |
+
"627": "limousine, limo",
|
735 |
+
"628": "liner, ocean liner",
|
736 |
+
"629": "lipstick, lip rouge",
|
737 |
+
"630": "Loafer",
|
738 |
+
"631": "lotion",
|
739 |
+
"632": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
|
740 |
+
"633": "loupe, jeweler's loupe",
|
741 |
+
"634": "lumbermill, sawmill",
|
742 |
+
"635": "magnetic compass",
|
743 |
+
"636": "mailbag, postbag",
|
744 |
+
"637": "mailbox, letter box",
|
745 |
+
"638": "maillot",
|
746 |
+
"639": "maillot, tank suit",
|
747 |
+
"640": "manhole cover",
|
748 |
+
"641": "maraca",
|
749 |
+
"642": "marimba, xylophone",
|
750 |
+
"643": "mask",
|
751 |
+
"644": "matchstick",
|
752 |
+
"645": "maypole",
|
753 |
+
"646": "maze, labyrinth",
|
754 |
+
"647": "measuring cup",
|
755 |
+
"648": "medicine chest, medicine cabinet",
|
756 |
+
"649": "megalith, megalithic structure",
|
757 |
+
"650": "microphone, mike",
|
758 |
+
"651": "microwave, microwave oven",
|
759 |
+
"652": "military uniform",
|
760 |
+
"653": "milk can",
|
761 |
+
"654": "minibus",
|
762 |
+
"655": "miniskirt, mini",
|
763 |
+
"656": "minivan",
|
764 |
+
"657": "missile",
|
765 |
+
"658": "mitten",
|
766 |
+
"659": "mixing bowl",
|
767 |
+
"660": "mobile home, manufactured home",
|
768 |
+
"661": "Model T",
|
769 |
+
"662": "modem",
|
770 |
+
"663": "monastery",
|
771 |
+
"664": "monitor",
|
772 |
+
"665": "moped",
|
773 |
+
"666": "mortar",
|
774 |
+
"667": "mortarboard",
|
775 |
+
"668": "mosque",
|
776 |
+
"669": "mosquito net",
|
777 |
+
"670": "motor scooter, scooter",
|
778 |
+
"671": "mountain bike, all-terrain bike, off-roader",
|
779 |
+
"672": "mountain tent",
|
780 |
+
"673": "mouse, computer mouse",
|
781 |
+
"674": "mousetrap",
|
782 |
+
"675": "moving van",
|
783 |
+
"676": "muzzle",
|
784 |
+
"677": "nail",
|
785 |
+
"678": "neck brace",
|
786 |
+
"679": "necklace",
|
787 |
+
"680": "nipple",
|
788 |
+
"681": "notebook, notebook computer",
|
789 |
+
"682": "obelisk",
|
790 |
+
"683": "oboe, hautboy, hautbois",
|
791 |
+
"684": "ocarina, sweet potato",
|
792 |
+
"685": "odometer, hodometer, mileometer, milometer",
|
793 |
+
"686": "oil filter",
|
794 |
+
"687": "organ, pipe organ",
|
795 |
+
"688": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
|
796 |
+
"689": "overskirt",
|
797 |
+
"690": "oxcart",
|
798 |
+
"691": "oxygen mask",
|
799 |
+
"692": "packet",
|
800 |
+
"693": "paddle, boat paddle",
|
801 |
+
"694": "paddlewheel, paddle wheel",
|
802 |
+
"695": "padlock",
|
803 |
+
"696": "paintbrush",
|
804 |
+
"697": "pajama, pyjama, pj's, jammies",
|
805 |
+
"698": "palace",
|
806 |
+
"699": "panpipe, pandean pipe, syrinx",
|
807 |
+
"700": "paper towel",
|
808 |
+
"701": "parachute, chute",
|
809 |
+
"702": "parallel bars, bars",
|
810 |
+
"703": "park bench",
|
811 |
+
"704": "parking meter",
|
812 |
+
"705": "passenger car, coach, carriage",
|
813 |
+
"706": "patio, terrace",
|
814 |
+
"707": "pay-phone, pay-station",
|
815 |
+
"708": "pedestal, plinth, footstall",
|
816 |
+
"709": "pencil box, pencil case",
|
817 |
+
"710": "pencil sharpener",
|
818 |
+
"711": "perfume, essence",
|
819 |
+
"712": "Petri dish",
|
820 |
+
"713": "photocopier",
|
821 |
+
"714": "pick, plectrum, plectron",
|
822 |
+
"715": "pickelhaube",
|
823 |
+
"716": "picket fence, paling",
|
824 |
+
"717": "pickup, pickup truck",
|
825 |
+
"718": "pier",
|
826 |
+
"719": "piggy bank, penny bank",
|
827 |
+
"720": "pill bottle",
|
828 |
+
"721": "pillow",
|
829 |
+
"722": "ping-pong ball",
|
830 |
+
"723": "pinwheel",
|
831 |
+
"724": "pirate, pirate ship",
|
832 |
+
"725": "pitcher, ewer",
|
833 |
+
"726": "plane, carpenter's plane, woodworking plane",
|
834 |
+
"727": "planetarium",
|
835 |
+
"728": "plastic bag",
|
836 |
+
"729": "plate rack",
|
837 |
+
"730": "plow, plough",
|
838 |
+
"731": "plunger, plumber's helper",
|
839 |
+
"732": "Polaroid camera, Polaroid Land camera",
|
840 |
+
"733": "pole",
|
841 |
+
"734": "police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria",
|
842 |
+
"735": "poncho",
|
843 |
+
"736": "pool table, billiard table, snooker table",
|
844 |
+
"737": "pop bottle, soda bottle",
|
845 |
+
"738": "pot, flowerpot",
|
846 |
+
"739": "potter's wheel",
|
847 |
+
"740": "power drill",
|
848 |
+
"741": "prayer rug, prayer mat",
|
849 |
+
"742": "printer",
|
850 |
+
"743": "prison, prison house",
|
851 |
+
"744": "projectile, missile",
|
852 |
+
"745": "projector",
|
853 |
+
"746": "puck, hockey puck",
|
854 |
+
"747": "punching bag, punch bag, punching ball, punchball",
|
855 |
+
"748": "purse",
|
856 |
+
"749": "quill, quill pen",
|
857 |
+
"750": "quilt, comforter, comfort, puff",
|
858 |
+
"751": "racer, race car, racing car",
|
859 |
+
"752": "racket, racquet",
|
860 |
+
"753": "radiator",
|
861 |
+
"754": "radio, wireless",
|
862 |
+
"755": "radio telescope, radio reflector",
|
863 |
+
"756": "rain barrel",
|
864 |
+
"757": "recreational vehicle, RV, R.V.",
|
865 |
+
"758": "reel",
|
866 |
+
"759": "reflex camera",
|
867 |
+
"760": "refrigerator, icebox",
|
868 |
+
"761": "remote control, remote",
|
869 |
+
"762": "restaurant, eating house, eating place, eatery",
|
870 |
+
"763": "revolver, six-gun, six-shooter",
|
871 |
+
"764": "rifle",
|
872 |
+
"765": "rocking chair, rocker",
|
873 |
+
"766": "rotisserie",
|
874 |
+
"767": "rubber eraser, rubber, pencil eraser",
|
875 |
+
"768": "rugby ball",
|
876 |
+
"769": "rule, ruler",
|
877 |
+
"770": "running shoe",
|
878 |
+
"771": "safe",
|
879 |
+
"772": "safety pin",
|
880 |
+
"773": "saltshaker, salt shaker",
|
881 |
+
"774": "sandal",
|
882 |
+
"775": "sarong",
|
883 |
+
"776": "sax, saxophone",
|
884 |
+
"777": "scabbard",
|
885 |
+
"778": "scale, weighing machine",
|
886 |
+
"779": "school bus",
|
887 |
+
"780": "schooner",
|
888 |
+
"781": "scoreboard",
|
889 |
+
"782": "screen, CRT screen",
|
890 |
+
"783": "screw",
|
891 |
+
"784": "screwdriver",
|
892 |
+
"785": "seat belt, seatbelt",
|
893 |
+
"786": "sewing machine",
|
894 |
+
"787": "shield, buckler",
|
895 |
+
"788": "shoe shop, shoe-shop, shoe store",
|
896 |
+
"789": "shoji",
|
897 |
+
"790": "shopping basket",
|
898 |
+
"791": "shopping cart",
|
899 |
+
"792": "shovel",
|
900 |
+
"793": "shower cap",
|
901 |
+
"794": "shower curtain",
|
902 |
+
"795": "ski",
|
903 |
+
"796": "ski mask",
|
904 |
+
"797": "sleeping bag",
|
905 |
+
"798": "slide rule, slipstick",
|
906 |
+
"799": "sliding door",
|
907 |
+
"800": "slot, one-armed bandit",
|
908 |
+
"801": "snorkel",
|
909 |
+
"802": "snowmobile",
|
910 |
+
"803": "snowplow, snowplough",
|
911 |
+
"804": "soap dispenser",
|
912 |
+
"805": "soccer ball",
|
913 |
+
"806": "sock",
|
914 |
+
"807": "solar dish, solar collector, solar furnace",
|
915 |
+
"808": "sombrero",
|
916 |
+
"809": "soup bowl",
|
917 |
+
"810": "space bar",
|
918 |
+
"811": "space heater",
|
919 |
+
"812": "space shuttle",
|
920 |
+
"813": "spatula",
|
921 |
+
"814": "speedboat",
|
922 |
+
"815": "spider web, spider's web",
|
923 |
+
"816": "spindle",
|
924 |
+
"817": "sports car, sport car",
|
925 |
+
"818": "spotlight, spot",
|
926 |
+
"819": "stage",
|
927 |
+
"820": "steam locomotive",
|
928 |
+
"821": "steel arch bridge",
|
929 |
+
"822": "steel drum",
|
930 |
+
"823": "stethoscope",
|
931 |
+
"824": "stole",
|
932 |
+
"825": "stone wall",
|
933 |
+
"826": "stopwatch, stop watch",
|
934 |
+
"827": "stove",
|
935 |
+
"828": "strainer",
|
936 |
+
"829": "streetcar, tram, tramcar, trolley, trolley car",
|
937 |
+
"830": "stretcher",
|
938 |
+
"831": "studio couch, day bed",
|
939 |
+
"832": "stupa, tope",
|
940 |
+
"833": "submarine, pigboat, sub, U-boat",
|
941 |
+
"834": "suit, suit of clothes",
|
942 |
+
"835": "sundial",
|
943 |
+
"836": "sunglass",
|
944 |
+
"837": "sunglasses, dark glasses, shades",
|
945 |
+
"838": "sunscreen, sunblock, sun blocker",
|
946 |
+
"839": "suspension bridge",
|
947 |
+
"840": "swab, swob, mop",
|
948 |
+
"841": "sweatshirt",
|
949 |
+
"842": "swimming trunks, bathing trunks",
|
950 |
+
"843": "swing",
|
951 |
+
"844": "switch, electric switch, electrical switch",
|
952 |
+
"845": "syringe",
|
953 |
+
"846": "table lamp",
|
954 |
+
"847": "tank, army tank, armored combat vehicle, armoured combat vehicle",
|
955 |
+
"848": "tape player",
|
956 |
+
"849": "teapot",
|
957 |
+
"850": "teddy, teddy bear",
|
958 |
+
"851": "television, television system",
|
959 |
+
"852": "tennis ball",
|
960 |
+
"853": "thatch, thatched roof",
|
961 |
+
"854": "theater curtain, theatre curtain",
|
962 |
+
"855": "thimble",
|
963 |
+
"856": "thresher, thrasher, threshing machine",
|
964 |
+
"857": "throne",
|
965 |
+
"858": "tile roof",
|
966 |
+
"859": "toaster",
|
967 |
+
"860": "tobacco shop, tobacconist shop, tobacconist",
|
968 |
+
"861": "toilet seat",
|
969 |
+
"862": "torch",
|
970 |
+
"863": "totem pole",
|
971 |
+
"864": "tow truck, tow car, wrecker",
|
972 |
+
"865": "toyshop",
|
973 |
+
"866": "tractor",
|
974 |
+
"867": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
|
975 |
+
"868": "tray",
|
976 |
+
"869": "trench coat",
|
977 |
+
"870": "tricycle, trike, velocipede",
|
978 |
+
"871": "trimaran",
|
979 |
+
"872": "tripod",
|
980 |
+
"873": "triumphal arch",
|
981 |
+
"874": "trolleybus, trolley coach, trackless trolley",
|
982 |
+
"875": "trombone",
|
983 |
+
"876": "tub, vat",
|
984 |
+
"877": "turnstile",
|
985 |
+
"878": "typewriter keyboard",
|
986 |
+
"879": "umbrella",
|
987 |
+
"880": "unicycle, monocycle",
|
988 |
+
"881": "upright, upright piano",
|
989 |
+
"882": "vacuum, vacuum cleaner",
|
990 |
+
"883": "vase",
|
991 |
+
"884": "vault",
|
992 |
+
"885": "velvet",
|
993 |
+
"886": "vending machine",
|
994 |
+
"887": "vestment",
|
995 |
+
"888": "viaduct",
|
996 |
+
"889": "violin, fiddle",
|
997 |
+
"890": "volleyball",
|
998 |
+
"891": "waffle iron",
|
999 |
+
"892": "wall clock",
|
1000 |
+
"893": "wallet, billfold, notecase, pocketbook",
|
1001 |
+
"894": "wardrobe, closet, press",
|
1002 |
+
"895": "warplane, military plane",
|
1003 |
+
"896": "washbasin, handbasin, washbowl, lavabo, wash-hand basin",
|
1004 |
+
"897": "washer, automatic washer, washing machine",
|
1005 |
+
"898": "water bottle",
|
1006 |
+
"899": "water jug",
|
1007 |
+
"900": "water tower",
|
1008 |
+
"901": "whiskey jug",
|
1009 |
+
"902": "whistle",
|
1010 |
+
"903": "wig",
|
1011 |
+
"904": "window screen",
|
1012 |
+
"905": "window shade",
|
1013 |
+
"906": "Windsor tie",
|
1014 |
+
"907": "wine bottle",
|
1015 |
+
"908": "wing",
|
1016 |
+
"909": "wok",
|
1017 |
+
"910": "wooden spoon",
|
1018 |
+
"911": "wool, woolen, woollen",
|
1019 |
+
"912": "worm fence, snake fence, snake-rail fence, Virginia fence",
|
1020 |
+
"913": "wreck",
|
1021 |
+
"914": "yawl",
|
1022 |
+
"915": "yurt",
|
1023 |
+
"916": "web site, website, internet site, site",
|
1024 |
+
"917": "comic book",
|
1025 |
+
"918": "crossword puzzle, crossword",
|
1026 |
+
"919": "street sign",
|
1027 |
+
"920": "traffic light, traffic signal, stoplight",
|
1028 |
+
"921": "book jacket, dust cover, dust jacket, dust wrapper",
|
1029 |
+
"922": "menu",
|
1030 |
+
"923": "plate",
|
1031 |
+
"924": "guacamole",
|
1032 |
+
"925": "consomme",
|
1033 |
+
"926": "hot pot, hotpot",
|
1034 |
+
"927": "trifle",
|
1035 |
+
"928": "ice cream, icecream",
|
1036 |
+
"929": "ice lolly, lolly, lollipop, popsicle",
|
1037 |
+
"930": "French loaf",
|
1038 |
+
"931": "bagel, beigel",
|
1039 |
+
"932": "pretzel",
|
1040 |
+
"933": "cheeseburger",
|
1041 |
+
"934": "hotdog, hot dog, red hot",
|
1042 |
+
"935": "mashed potato",
|
1043 |
+
"936": "head cabbage",
|
1044 |
+
"937": "broccoli",
|
1045 |
+
"938": "cauliflower",
|
1046 |
+
"939": "zucchini, courgette",
|
1047 |
+
"940": "spaghetti squash",
|
1048 |
+
"941": "acorn squash",
|
1049 |
+
"942": "butternut squash",
|
1050 |
+
"943": "cucumber, cuke",
|
1051 |
+
"944": "artichoke, globe artichoke",
|
1052 |
+
"945": "bell pepper",
|
1053 |
+
"946": "cardoon",
|
1054 |
+
"947": "mushroom",
|
1055 |
+
"948": "Granny Smith",
|
1056 |
+
"949": "strawberry",
|
1057 |
+
"950": "orange",
|
1058 |
+
"951": "lemon",
|
1059 |
+
"952": "fig",
|
1060 |
+
"953": "pineapple, ananas",
|
1061 |
+
"954": "banana",
|
1062 |
+
"955": "jackfruit, jak, jack",
|
1063 |
+
"956": "custard apple",
|
1064 |
+
"957": "pomegranate",
|
1065 |
+
"958": "hay",
|
1066 |
+
"959": "carbonara",
|
1067 |
+
"960": "chocolate sauce, chocolate syrup",
|
1068 |
+
"961": "dough",
|
1069 |
+
"962": "meat loaf, meatloaf",
|
1070 |
+
"963": "pizza, pizza pie",
|
1071 |
+
"964": "potpie",
|
1072 |
+
"965": "burrito",
|
1073 |
+
"966": "red wine",
|
1074 |
+
"967": "espresso",
|
1075 |
+
"968": "cup",
|
1076 |
+
"969": "eggnog",
|
1077 |
+
"970": "alp",
|
1078 |
+
"971": "bubble",
|
1079 |
+
"972": "cliff, drop, drop-off",
|
1080 |
+
"973": "coral reef",
|
1081 |
+
"974": "geyser",
|
1082 |
+
"975": "lakeside, lakeshore",
|
1083 |
+
"976": "promontory, headland, head, foreland",
|
1084 |
+
"977": "sandbar, sand bar",
|
1085 |
+
"978": "seashore, coast, seacoast, sea-coast",
|
1086 |
+
"979": "valley, vale",
|
1087 |
+
"980": "volcano",
|
1088 |
+
"981": "ballplayer, baseball player",
|
1089 |
+
"982": "groom, bridegroom",
|
1090 |
+
"983": "scuba diver",
|
1091 |
+
"984": "rapeseed",
|
1092 |
+
"985": "daisy",
|
1093 |
+
"986": "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum",
|
1094 |
+
"987": "corn",
|
1095 |
+
"988": "acorn",
|
1096 |
+
"989": "hip, rose hip, rosehip",
|
1097 |
+
"990": "buckeye, horse chestnut, conker",
|
1098 |
+
"991": "coral fungus",
|
1099 |
+
"992": "agaric",
|
1100 |
+
"993": "gyromitra",
|
1101 |
+
"994": "stinkhorn, carrion fungus",
|
1102 |
+
"995": "earthstar",
|
1103 |
+
"996": "hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa",
|
1104 |
+
"997": "bolete",
|
1105 |
+
"998": "ear, spike, capitulum",
|
1106 |
+
"999": "toilet tissue, toilet paper, bathroom tissue"
|
1107 |
+
},
|
1108 |
+
"image_size": 224,
|
1109 |
+
"initializer_range": 0.02,
|
1110 |
+
"intermediate_size": 3072,
|
1111 |
+
"is_decoder": false,
|
1112 |
+
"is_encoder_decoder": false,
|
1113 |
+
"label2id": {
|
1114 |
+
"Afghan hound, Afghan": 160,
|
1115 |
+
"African chameleon, Chamaeleo chamaeleon": 47,
|
1116 |
+
"African crocodile, Nile crocodile, Crocodylus niloticus": 49,
|
1117 |
+
"African elephant, Loxodonta africana": 386,
|
1118 |
+
"African grey, African gray, Psittacus erithacus": 87,
|
1119 |
+
"African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus": 275,
|
1120 |
+
"Airedale, Airedale terrier": 191,
|
1121 |
+
"American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier": 180,
|
1122 |
+
"American alligator, Alligator mississipiensis": 50,
|
1123 |
+
"American black bear, black bear, Ursus americanus, Euarctos americanus": 295,
|
1124 |
+
"American chameleon, anole, Anolis carolinensis": 40,
|
1125 |
+
"American coot, marsh hen, mud hen, water hen, Fulica americana": 137,
|
1126 |
+
"American egret, great white heron, Egretta albus": 132,
|
1127 |
+
"American lobster, Northern lobster, Maine lobster, Homarus americanus": 122,
|
1128 |
+
"Angora, Angora rabbit": 332,
|
1129 |
+
"Appenzeller": 240,
|
1130 |
+
"Arabian camel, dromedary, Camelus dromedarius": 354,
|
1131 |
+
"Arctic fox, white fox, Alopex lagopus": 279,
|
1132 |
+
"Australian terrier": 193,
|
1133 |
+
"Band Aid": 419,
|
1134 |
+
"Bedlington terrier": 181,
|
1135 |
+
"Bernese mountain dog": 239,
|
1136 |
+
"Blenheim spaniel": 156,
|
1137 |
+
"Border collie": 232,
|
1138 |
+
"Border terrier": 182,
|
1139 |
+
"Boston bull, Boston terrier": 195,
|
1140 |
+
"Bouvier des Flandres, Bouviers des Flandres": 233,
|
1141 |
+
"Brabancon griffon": 262,
|
1142 |
+
"Brittany spaniel": 215,
|
1143 |
+
"CD player": 485,
|
1144 |
+
"Cardigan, Cardigan Welsh corgi": 264,
|
1145 |
+
"Chesapeake Bay retriever": 209,
|
1146 |
+
"Chihuahua": 151,
|
1147 |
+
"Christmas stocking": 496,
|
1148 |
+
"Crock Pot": 521,
|
1149 |
+
"Dandie Dinmont, Dandie Dinmont terrier": 194,
|
1150 |
+
"Doberman, Doberman pinscher": 236,
|
1151 |
+
"Dungeness crab, Cancer magister": 118,
|
1152 |
+
"Dutch oven": 544,
|
1153 |
+
"Egyptian cat": 285,
|
1154 |
+
"English foxhound": 167,
|
1155 |
+
"English setter": 212,
|
1156 |
+
"English springer, English springer spaniel": 217,
|
1157 |
+
"EntleBucher": 241,
|
1158 |
+
"Eskimo dog, husky": 248,
|
1159 |
+
"European fire salamander, Salamandra salamandra": 25,
|
1160 |
+
"European gallinule, Porphyrio porphyrio": 136,
|
1161 |
+
"French bulldog": 245,
|
1162 |
+
"French horn, horn": 566,
|
1163 |
+
"French loaf": 930,
|
1164 |
+
"German shepherd, German shepherd dog, German police dog, alsatian": 235,
|
1165 |
+
"German short-haired pointer": 210,
|
1166 |
+
"Gila monster, Heloderma suspectum": 45,
|
1167 |
+
"Gordon setter": 214,
|
1168 |
+
"Granny Smith": 948,
|
1169 |
+
"Great Dane": 246,
|
1170 |
+
"Great Pyrenees": 257,
|
1171 |
+
"Greater Swiss Mountain dog": 238,
|
1172 |
+
"Ibizan hound, Ibizan Podenco": 173,
|
1173 |
+
"Indian cobra, Naja naja": 63,
|
1174 |
+
"Indian elephant, Elephas maximus": 385,
|
1175 |
+
"Irish setter, red setter": 213,
|
1176 |
+
"Irish terrier": 184,
|
1177 |
+
"Irish water spaniel": 221,
|
1178 |
+
"Irish wolfhound": 170,
|
1179 |
+
"Italian greyhound": 171,
|
1180 |
+
"Japanese spaniel": 152,
|
1181 |
+
"Kerry blue terrier": 183,
|
1182 |
+
"Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis": 48,
|
1183 |
+
"Labrador retriever": 208,
|
1184 |
+
"Lakeland terrier": 189,
|
1185 |
+
"Leonberg": 255,
|
1186 |
+
"Lhasa, Lhasa apso": 204,
|
1187 |
+
"Loafer": 630,
|
1188 |
+
"Madagascar cat, ring-tailed lemur, Lemur catta": 383,
|
1189 |
+
"Maltese dog, Maltese terrier, Maltese": 153,
|
1190 |
+
"Mexican hairless": 268,
|
1191 |
+
"Model T": 661,
|
1192 |
+
"Newfoundland, Newfoundland dog": 256,
|
1193 |
+
"Norfolk terrier": 185,
|
1194 |
+
"Norwegian elkhound, elkhound": 174,
|
1195 |
+
"Norwich terrier": 186,
|
1196 |
+
"Old English sheepdog, bobtail": 229,
|
1197 |
+
"Pekinese, Pekingese, Peke": 154,
|
1198 |
+
"Pembroke, Pembroke Welsh corgi": 263,
|
1199 |
+
"Persian cat": 283,
|
1200 |
+
"Petri dish": 712,
|
1201 |
+
"Polaroid camera, Polaroid Land camera": 732,
|
1202 |
+
"Pomeranian": 259,
|
1203 |
+
"Rhodesian ridgeback": 159,
|
1204 |
+
"Rottweiler": 234,
|
1205 |
+
"Saint Bernard, St Bernard": 247,
|
1206 |
+
"Saluki, gazelle hound": 176,
|
1207 |
+
"Samoyed, Samoyede": 258,
|
1208 |
+
"Scotch terrier, Scottish terrier, Scottie": 199,
|
1209 |
+
"Scottish deerhound, deerhound": 177,
|
1210 |
+
"Sealyham terrier, Sealyham": 190,
|
1211 |
+
"Shetland sheepdog, Shetland sheep dog, Shetland": 230,
|
1212 |
+
"Shih-Tzu": 155,
|
1213 |
+
"Siamese cat, Siamese": 284,
|
1214 |
+
"Siberian husky": 250,
|
1215 |
+
"Staffordshire bullterrier, Staffordshire bull terrier": 179,
|
1216 |
+
"Sussex spaniel": 220,
|
1217 |
+
"Tibetan mastiff": 244,
|
1218 |
+
"Tibetan terrier, chrysanthemum dog": 200,
|
1219 |
+
"Walker hound, Walker foxhound": 166,
|
1220 |
+
"Weimaraner": 178,
|
1221 |
+
"Welsh springer spaniel": 218,
|
1222 |
+
"West Highland white terrier": 203,
|
1223 |
+
"Windsor tie": 906,
|
1224 |
+
"Yorkshire terrier": 187,
|
1225 |
+
"abacus": 398,
|
1226 |
+
"abaya": 399,
|
1227 |
+
"academic gown, academic robe, judge's robe": 400,
|
1228 |
+
"accordion, piano accordion, squeeze box": 401,
|
1229 |
+
"acorn": 988,
|
1230 |
+
"acorn squash": 941,
|
1231 |
+
"acoustic guitar": 402,
|
1232 |
+
"admiral": 321,
|
1233 |
+
"affenpinscher, monkey pinscher, monkey dog": 252,
|
1234 |
+
"agama": 42,
|
1235 |
+
"agaric": 992,
|
1236 |
+
"aircraft carrier, carrier, flattop, attack aircraft carrier": 403,
|
1237 |
+
"airliner": 404,
|
1238 |
+
"airship, dirigible": 405,
|
1239 |
+
"albatross, mollymawk": 146,
|
1240 |
+
"alligator lizard": 44,
|
1241 |
+
"alp": 970,
|
1242 |
+
"altar": 406,
|
1243 |
+
"ambulance": 407,
|
1244 |
+
"amphibian, amphibious vehicle": 408,
|
1245 |
+
"analog clock": 409,
|
1246 |
+
"anemone fish": 393,
|
1247 |
+
"ant, emmet, pismire": 310,
|
1248 |
+
"apiary, bee house": 410,
|
1249 |
+
"apron": 411,
|
1250 |
+
"armadillo": 363,
|
1251 |
+
"artichoke, globe artichoke": 944,
|
1252 |
+
"ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin": 412,
|
1253 |
+
"assault rifle, assault gun": 413,
|
1254 |
+
"axolotl, mud puppy, Ambystoma mexicanum": 29,
|
1255 |
+
"baboon": 372,
|
1256 |
+
"backpack, back pack, knapsack, packsack, rucksack, haversack": 414,
|
1257 |
+
"badger": 362,
|
1258 |
+
"bagel, beigel": 931,
|
1259 |
+
"bakery, bakeshop, bakehouse": 415,
|
1260 |
+
"balance beam, beam": 416,
|
1261 |
+
"bald eagle, American eagle, Haliaeetus leucocephalus": 22,
|
1262 |
+
"balloon": 417,
|
1263 |
+
"ballplayer, baseball player": 981,
|
1264 |
+
"ballpoint, ballpoint pen, ballpen, Biro": 418,
|
1265 |
+
"banana": 954,
|
1266 |
+
"banded gecko": 38,
|
1267 |
+
"banjo": 420,
|
1268 |
+
"bannister, banister, balustrade, balusters, handrail": 421,
|
1269 |
+
"barbell": 422,
|
1270 |
+
"barber chair": 423,
|
1271 |
+
"barbershop": 424,
|
1272 |
+
"barn": 425,
|
1273 |
+
"barn spider, Araneus cavaticus": 73,
|
1274 |
+
"barometer": 426,
|
1275 |
+
"barracouta, snoek": 389,
|
1276 |
+
"barrel, cask": 427,
|
1277 |
+
"barrow, garden cart, lawn cart, wheelbarrow": 428,
|
1278 |
+
"baseball": 429,
|
1279 |
+
"basenji": 253,
|
1280 |
+
"basketball": 430,
|
1281 |
+
"basset, basset hound": 161,
|
1282 |
+
"bassinet": 431,
|
1283 |
+
"bassoon": 432,
|
1284 |
+
"bath towel": 434,
|
1285 |
+
"bathing cap, swimming cap": 433,
|
1286 |
+
"bathtub, bathing tub, bath, tub": 435,
|
1287 |
+
"beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon": 436,
|
1288 |
+
"beacon, lighthouse, beacon light, pharos": 437,
|
1289 |
+
"beagle": 162,
|
1290 |
+
"beaker": 438,
|
1291 |
+
"bearskin, busby, shako": 439,
|
1292 |
+
"beaver": 337,
|
1293 |
+
"bee": 309,
|
1294 |
+
"bee eater": 92,
|
1295 |
+
"beer bottle": 440,
|
1296 |
+
"beer glass": 441,
|
1297 |
+
"bell cote, bell cot": 442,
|
1298 |
+
"bell pepper": 945,
|
1299 |
+
"bib": 443,
|
1300 |
+
"bicycle-built-for-two, tandem bicycle, tandem": 444,
|
1301 |
+
"bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis": 349,
|
1302 |
+
"bikini, two-piece": 445,
|
1303 |
+
"binder, ring-binder": 446,
|
1304 |
+
"binoculars, field glasses, opera glasses": 447,
|
1305 |
+
"birdhouse": 448,
|
1306 |
+
"bison": 347,
|
1307 |
+
"bittern": 133,
|
1308 |
+
"black and gold garden spider, Argiope aurantia": 72,
|
1309 |
+
"black grouse": 80,
|
1310 |
+
"black stork, Ciconia nigra": 128,
|
1311 |
+
"black swan, Cygnus atratus": 100,
|
1312 |
+
"black widow, Latrodectus mactans": 75,
|
1313 |
+
"black-and-tan coonhound": 165,
|
1314 |
+
"black-footed ferret, ferret, Mustela nigripes": 359,
|
1315 |
+
"bloodhound, sleuthhound": 163,
|
1316 |
+
"bluetick": 164,
|
1317 |
+
"boa constrictor, Constrictor constrictor": 61,
|
1318 |
+
"boathouse": 449,
|
1319 |
+
"bobsled, bobsleigh, bob": 450,
|
1320 |
+
"bolete": 997,
|
1321 |
+
"bolo tie, bolo, bola tie, bola": 451,
|
1322 |
+
"bonnet, poke bonnet": 452,
|
1323 |
+
"book jacket, dust cover, dust jacket, dust wrapper": 921,
|
1324 |
+
"bookcase": 453,
|
1325 |
+
"bookshop, bookstore, bookstall": 454,
|
1326 |
+
"borzoi, Russian wolfhound": 169,
|
1327 |
+
"bottlecap": 455,
|
1328 |
+
"bow": 456,
|
1329 |
+
"bow tie, bow-tie, bowtie": 457,
|
1330 |
+
"box turtle, box tortoise": 37,
|
1331 |
+
"boxer": 242,
|
1332 |
+
"brain coral": 109,
|
1333 |
+
"brambling, Fringilla montifringilla": 10,
|
1334 |
+
"brass, memorial tablet, plaque": 458,
|
1335 |
+
"brassiere, bra, bandeau": 459,
|
1336 |
+
"breakwater, groin, groyne, mole, bulwark, seawall, jetty": 460,
|
1337 |
+
"breastplate, aegis, egis": 461,
|
1338 |
+
"briard": 226,
|
1339 |
+
"broccoli": 937,
|
1340 |
+
"broom": 462,
|
1341 |
+
"brown bear, bruin, Ursus arctos": 294,
|
1342 |
+
"bubble": 971,
|
1343 |
+
"bucket, pail": 463,
|
1344 |
+
"buckeye, horse chestnut, conker": 990,
|
1345 |
+
"buckle": 464,
|
1346 |
+
"bulbul": 16,
|
1347 |
+
"bull mastiff": 243,
|
1348 |
+
"bullet train, bullet": 466,
|
1349 |
+
"bulletproof vest": 465,
|
1350 |
+
"bullfrog, Rana catesbeiana": 30,
|
1351 |
+
"burrito": 965,
|
1352 |
+
"bustard": 138,
|
1353 |
+
"butcher shop, meat market": 467,
|
1354 |
+
"butternut squash": 942,
|
1355 |
+
"cab, hack, taxi, taxicab": 468,
|
1356 |
+
"cabbage butterfly": 324,
|
1357 |
+
"cairn, cairn terrier": 192,
|
1358 |
+
"caldron, cauldron": 469,
|
1359 |
+
"can opener, tin opener": 473,
|
1360 |
+
"candle, taper, wax light": 470,
|
1361 |
+
"cannon": 471,
|
1362 |
+
"canoe": 472,
|
1363 |
+
"capuchin, ringtail, Cebus capucinus": 378,
|
1364 |
+
"car mirror": 475,
|
1365 |
+
"car wheel": 479,
|
1366 |
+
"carbonara": 959,
|
1367 |
+
"cardigan": 474,
|
1368 |
+
"cardoon": 946,
|
1369 |
+
"carousel, carrousel, merry-go-round, roundabout, whirligig": 476,
|
1370 |
+
"carpenter's kit, tool kit": 477,
|
1371 |
+
"carton": 478,
|
1372 |
+
"cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM": 480,
|
1373 |
+
"cassette": 481,
|
1374 |
+
"cassette player": 482,
|
1375 |
+
"castle": 483,
|
1376 |
+
"catamaran": 484,
|
1377 |
+
"cauliflower": 938,
|
1378 |
+
"cello, violoncello": 486,
|
1379 |
+
"cellular telephone, cellular phone, cellphone, cell, mobile phone": 487,
|
1380 |
+
"centipede": 79,
|
1381 |
+
"chain": 488,
|
1382 |
+
"chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour": 490,
|
1383 |
+
"chain saw, chainsaw": 491,
|
1384 |
+
"chainlink fence": 489,
|
1385 |
+
"chambered nautilus, pearly nautilus, nautilus": 117,
|
1386 |
+
"cheeseburger": 933,
|
1387 |
+
"cheetah, chetah, Acinonyx jubatus": 293,
|
1388 |
+
"chest": 492,
|
1389 |
+
"chickadee": 19,
|
1390 |
+
"chiffonier, commode": 493,
|
1391 |
+
"chime, bell, gong": 494,
|
1392 |
+
"chimpanzee, chimp, Pan troglodytes": 367,
|
1393 |
+
"china cabinet, china closet": 495,
|
1394 |
+
"chiton, coat-of-mail shell, sea cradle, polyplacophore": 116,
|
1395 |
+
"chocolate sauce, chocolate syrup": 960,
|
1396 |
+
"chow, chow chow": 260,
|
1397 |
+
"church, church building": 497,
|
1398 |
+
"cicada, cicala": 316,
|
1399 |
+
"cinema, movie theater, movie theatre, movie house, picture palace": 498,
|
1400 |
+
"cleaver, meat cleaver, chopper": 499,
|
1401 |
+
"cliff dwelling": 500,
|
1402 |
+
"cliff, drop, drop-off": 972,
|
1403 |
+
"cloak": 501,
|
1404 |
+
"clog, geta, patten, sabot": 502,
|
1405 |
+
"clumber, clumber spaniel": 216,
|
1406 |
+
"cock": 7,
|
1407 |
+
"cocker spaniel, English cocker spaniel, cocker": 219,
|
1408 |
+
"cockroach, roach": 314,
|
1409 |
+
"cocktail shaker": 503,
|
1410 |
+
"coffee mug": 504,
|
1411 |
+
"coffeepot": 505,
|
1412 |
+
"coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch": 391,
|
1413 |
+
"coil, spiral, volute, whorl, helix": 506,
|
1414 |
+
"collie": 231,
|
1415 |
+
"colobus, colobus monkey": 375,
|
1416 |
+
"combination lock": 507,
|
1417 |
+
"comic book": 917,
|
1418 |
+
"common iguana, iguana, Iguana iguana": 39,
|
1419 |
+
"common newt, Triturus vulgaris": 26,
|
1420 |
+
"computer keyboard, keypad": 508,
|
1421 |
+
"conch": 112,
|
1422 |
+
"confectionery, confectionary, candy store": 509,
|
1423 |
+
"consomme": 925,
|
1424 |
+
"container ship, containership, container vessel": 510,
|
1425 |
+
"convertible": 511,
|
1426 |
+
"coral fungus": 991,
|
1427 |
+
"coral reef": 973,
|
1428 |
+
"corkscrew, bottle screw": 512,
|
1429 |
+
"corn": 987,
|
1430 |
+
"cornet, horn, trumpet, trump": 513,
|
1431 |
+
"coucal": 91,
|
1432 |
+
"cougar, puma, catamount, mountain lion, painter, panther, Felis concolor": 286,
|
1433 |
+
"cowboy boot": 514,
|
1434 |
+
"cowboy hat, ten-gallon hat": 515,
|
1435 |
+
"coyote, prairie wolf, brush wolf, Canis latrans": 272,
|
1436 |
+
"cradle": 516,
|
1437 |
+
"crane": 517,
|
1438 |
+
"crash helmet": 518,
|
1439 |
+
"crate": 519,
|
1440 |
+
"crayfish, crawfish, crawdad, crawdaddy": 124,
|
1441 |
+
"crib, cot": 520,
|
1442 |
+
"cricket": 312,
|
1443 |
+
"croquet ball": 522,
|
1444 |
+
"crossword puzzle, crossword": 918,
|
1445 |
+
"crutch": 523,
|
1446 |
+
"cucumber, cuke": 943,
|
1447 |
+
"cuirass": 524,
|
1448 |
+
"cup": 968,
|
1449 |
+
"curly-coated retriever": 206,
|
1450 |
+
"custard apple": 956,
|
1451 |
+
"daisy": 985,
|
1452 |
+
"dalmatian, coach dog, carriage dog": 251,
|
1453 |
+
"dam, dike, dyke": 525,
|
1454 |
+
"damselfly": 320,
|
1455 |
+
"desk": 526,
|
1456 |
+
"desktop computer": 527,
|
1457 |
+
"dhole, Cuon alpinus": 274,
|
1458 |
+
"dial telephone, dial phone": 528,
|
1459 |
+
"diamondback, diamondback rattlesnake, Crotalus adamanteus": 67,
|
1460 |
+
"diaper, nappy, napkin": 529,
|
1461 |
+
"digital clock": 530,
|
1462 |
+
"digital watch": 531,
|
1463 |
+
"dingo, warrigal, warragal, Canis dingo": 273,
|
1464 |
+
"dining table, board": 532,
|
1465 |
+
"dishrag, dishcloth": 533,
|
1466 |
+
"dishwasher, dish washer, dishwashing machine": 534,
|
1467 |
+
"disk brake, disc brake": 535,
|
1468 |
+
"dock, dockage, docking facility": 536,
|
1469 |
+
"dogsled, dog sled, dog sleigh": 537,
|
1470 |
+
"dome": 538,
|
1471 |
+
"doormat, welcome mat": 539,
|
1472 |
+
"dough": 961,
|
1473 |
+
"dowitcher": 142,
|
1474 |
+
"dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk": 319,
|
1475 |
+
"drake": 97,
|
1476 |
+
"drilling platform, offshore rig": 540,
|
1477 |
+
"drum, membranophone, tympan": 541,
|
1478 |
+
"drumstick": 542,
|
1479 |
+
"dugong, Dugong dugon": 149,
|
1480 |
+
"dumbbell": 543,
|
1481 |
+
"dung beetle": 305,
|
1482 |
+
"ear, spike, capitulum": 998,
|
1483 |
+
"earthstar": 995,
|
1484 |
+
"echidna, spiny anteater, anteater": 102,
|
1485 |
+
"eel": 390,
|
1486 |
+
"eft": 27,
|
1487 |
+
"eggnog": 969,
|
1488 |
+
"electric fan, blower": 545,
|
1489 |
+
"electric guitar": 546,
|
1490 |
+
"electric locomotive": 547,
|
1491 |
+
"electric ray, crampfish, numbfish, torpedo": 5,
|
1492 |
+
"entertainment center": 548,
|
1493 |
+
"envelope": 549,
|
1494 |
+
"espresso": 967,
|
1495 |
+
"espresso maker": 550,
|
1496 |
+
"face powder": 551,
|
1497 |
+
"feather boa, boa": 552,
|
1498 |
+
"fiddler crab": 120,
|
1499 |
+
"fig": 952,
|
1500 |
+
"file, file cabinet, filing cabinet": 553,
|
1501 |
+
"fire engine, fire truck": 555,
|
1502 |
+
"fire screen, fireguard": 556,
|
1503 |
+
"fireboat": 554,
|
1504 |
+
"flagpole, flagstaff": 557,
|
1505 |
+
"flamingo": 130,
|
1506 |
+
"flat-coated retriever": 205,
|
1507 |
+
"flatworm, platyhelminth": 110,
|
1508 |
+
"flute, transverse flute": 558,
|
1509 |
+
"fly": 308,
|
1510 |
+
"folding chair": 559,
|
1511 |
+
"football helmet": 560,
|
1512 |
+
"forklift": 561,
|
1513 |
+
"fountain": 562,
|
1514 |
+
"fountain pen": 563,
|
1515 |
+
"four-poster": 564,
|
1516 |
+
"fox squirrel, eastern fox squirrel, Sciurus niger": 335,
|
1517 |
+
"freight car": 565,
|
1518 |
+
"frilled lizard, Chlamydosaurus kingi": 43,
|
1519 |
+
"frying pan, frypan, skillet": 567,
|
1520 |
+
"fur coat": 568,
|
1521 |
+
"gar, garfish, garpike, billfish, Lepisosteus osseus": 395,
|
1522 |
+
"garbage truck, dustcart": 569,
|
1523 |
+
"garden spider, Aranea diademata": 74,
|
1524 |
+
"garter snake, grass snake": 57,
|
1525 |
+
"gas pump, gasoline pump, petrol pump, island dispenser": 571,
|
1526 |
+
"gasmask, respirator, gas helmet": 570,
|
1527 |
+
"gazelle": 353,
|
1528 |
+
"geyser": 974,
|
1529 |
+
"giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca": 388,
|
1530 |
+
"giant schnauzer": 197,
|
1531 |
+
"gibbon, Hylobates lar": 368,
|
1532 |
+
"go-kart": 573,
|
1533 |
+
"goblet": 572,
|
1534 |
+
"golden retriever": 207,
|
1535 |
+
"goldfinch, Carduelis carduelis": 11,
|
1536 |
+
"goldfish, Carassius auratus": 1,
|
1537 |
+
"golf ball": 574,
|
1538 |
+
"golfcart, golf cart": 575,
|
1539 |
+
"gondola": 576,
|
1540 |
+
"gong, tam-tam": 577,
|
1541 |
+
"goose": 99,
|
1542 |
+
"gorilla, Gorilla gorilla": 366,
|
1543 |
+
"gown": 578,
|
1544 |
+
"grand piano, grand": 579,
|
1545 |
+
"grasshopper, hopper": 311,
|
1546 |
+
"great grey owl, great gray owl, Strix nebulosa": 24,
|
1547 |
+
"great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias": 2,
|
1548 |
+
"green lizard, Lacerta viridis": 46,
|
1549 |
+
"green mamba": 64,
|
1550 |
+
"green snake, grass snake": 55,
|
1551 |
+
"greenhouse, nursery, glasshouse": 580,
|
1552 |
+
"grey fox, gray fox, Urocyon cinereoargenteus": 280,
|
1553 |
+
"grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus": 147,
|
1554 |
+
"grille, radiator grille": 581,
|
1555 |
+
"grocery store, grocery, food market, market": 582,
|
1556 |
+
"groenendael": 224,
|
1557 |
+
"groom, bridegroom": 982,
|
1558 |
+
"ground beetle, carabid beetle": 302,
|
1559 |
+
"guacamole": 924,
|
1560 |
+
"guenon, guenon monkey": 370,
|
1561 |
+
"guillotine": 583,
|
1562 |
+
"guinea pig, Cavia cobaya": 338,
|
1563 |
+
"gyromitra": 993,
|
1564 |
+
"hair slide": 584,
|
1565 |
+
"hair spray": 585,
|
1566 |
+
"half track": 586,
|
1567 |
+
"hammer": 587,
|
1568 |
+
"hammerhead, hammerhead shark": 4,
|
1569 |
+
"hamper": 588,
|
1570 |
+
"hamster": 333,
|
1571 |
+
"hand blower, blow dryer, blow drier, hair dryer, hair drier": 589,
|
1572 |
+
"hand-held computer, hand-held microcomputer": 590,
|
1573 |
+
"handkerchief, hankie, hanky, hankey": 591,
|
1574 |
+
"hard disc, hard disk, fixed disk": 592,
|
1575 |
+
"hare": 331,
|
1576 |
+
"harmonica, mouth organ, harp, mouth harp": 593,
|
1577 |
+
"harp": 594,
|
1578 |
+
"hartebeest": 351,
|
1579 |
+
"harvester, reaper": 595,
|
1580 |
+
"harvestman, daddy longlegs, Phalangium opilio": 70,
|
1581 |
+
"hatchet": 596,
|
1582 |
+
"hay": 958,
|
1583 |
+
"head cabbage": 936,
|
1584 |
+
"hen": 8,
|
1585 |
+
"hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa": 996,
|
1586 |
+
"hermit crab": 125,
|
1587 |
+
"hip, rose hip, rosehip": 989,
|
1588 |
+
"hippopotamus, hippo, river horse, Hippopotamus amphibius": 344,
|
1589 |
+
"hog, pig, grunter, squealer, Sus scrofa": 341,
|
1590 |
+
"hognose snake, puff adder, sand viper": 54,
|
1591 |
+
"holster": 597,
|
1592 |
+
"home theater, home theatre": 598,
|
1593 |
+
"honeycomb": 599,
|
1594 |
+
"hook, claw": 600,
|
1595 |
+
"hoopskirt, crinoline": 601,
|
1596 |
+
"horizontal bar, high bar": 602,
|
1597 |
+
"hornbill": 93,
|
1598 |
+
"horned viper, cerastes, sand viper, horned asp, Cerastes cornutus": 66,
|
1599 |
+
"horse cart, horse-cart": 603,
|
1600 |
+
"hot pot, hotpot": 926,
|
1601 |
+
"hotdog, hot dog, red hot": 934,
|
1602 |
+
"hourglass": 604,
|
1603 |
+
"house finch, linnet, Carpodacus mexicanus": 12,
|
1604 |
+
"howler monkey, howler": 379,
|
1605 |
+
"hummingbird": 94,
|
1606 |
+
"hyena, hyaena": 276,
|
1607 |
+
"iPod": 605,
|
1608 |
+
"ibex, Capra ibex": 350,
|
1609 |
+
"ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus": 296,
|
1610 |
+
"ice cream, icecream": 928,
|
1611 |
+
"ice lolly, lolly, lollipop, popsicle": 929,
|
1612 |
+
"impala, Aepyceros melampus": 352,
|
1613 |
+
"indigo bunting, indigo finch, indigo bird, Passerina cyanea": 14,
|
1614 |
+
"indri, indris, Indri indri, Indri brevicaudatus": 384,
|
1615 |
+
"iron, smoothing iron": 606,
|
1616 |
+
"isopod": 126,
|
1617 |
+
"jacamar": 95,
|
1618 |
+
"jack-o'-lantern": 607,
|
1619 |
+
"jackfruit, jak, jack": 955,
|
1620 |
+
"jaguar, panther, Panthera onca, Felis onca": 290,
|
1621 |
+
"jay": 17,
|
1622 |
+
"jean, blue jean, denim": 608,
|
1623 |
+
"jeep, landrover": 609,
|
1624 |
+
"jellyfish": 107,
|
1625 |
+
"jersey, T-shirt, tee shirt": 610,
|
1626 |
+
"jigsaw puzzle": 611,
|
1627 |
+
"jinrikisha, ricksha, rickshaw": 612,
|
1628 |
+
"joystick": 613,
|
1629 |
+
"junco, snowbird": 13,
|
1630 |
+
"keeshond": 261,
|
1631 |
+
"kelpie": 227,
|
1632 |
+
"killer whale, killer, orca, grampus, sea wolf, Orcinus orca": 148,
|
1633 |
+
"kimono": 614,
|
1634 |
+
"king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica": 121,
|
1635 |
+
"king penguin, Aptenodytes patagonica": 145,
|
1636 |
+
"king snake, kingsnake": 56,
|
1637 |
+
"kit fox, Vulpes macrotis": 278,
|
1638 |
+
"kite": 21,
|
1639 |
+
"knee pad": 615,
|
1640 |
+
"knot": 616,
|
1641 |
+
"koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus": 105,
|
1642 |
+
"komondor": 228,
|
1643 |
+
"kuvasz": 222,
|
1644 |
+
"lab coat, laboratory coat": 617,
|
1645 |
+
"lacewing, lacewing fly": 318,
|
1646 |
+
"ladle": 618,
|
1647 |
+
"ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle": 301,
|
1648 |
+
"lakeside, lakeshore": 975,
|
1649 |
+
"lampshade, lamp shade": 619,
|
1650 |
+
"langur": 374,
|
1651 |
+
"laptop, laptop computer": 620,
|
1652 |
+
"lawn mower, mower": 621,
|
1653 |
+
"leaf beetle, chrysomelid": 304,
|
1654 |
+
"leafhopper": 317,
|
1655 |
+
"leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea": 34,
|
1656 |
+
"lemon": 951,
|
1657 |
+
"lens cap, lens cover": 622,
|
1658 |
+
"leopard, Panthera pardus": 288,
|
1659 |
+
"lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens": 387,
|
1660 |
+
"letter opener, paper knife, paperknife": 623,
|
1661 |
+
"library": 624,
|
1662 |
+
"lifeboat": 625,
|
1663 |
+
"lighter, light, igniter, ignitor": 626,
|
1664 |
+
"limousine, limo": 627,
|
1665 |
+
"limpkin, Aramus pictus": 135,
|
1666 |
+
"liner, ocean liner": 628,
|
1667 |
+
"lion, king of beasts, Panthera leo": 291,
|
1668 |
+
"lionfish": 396,
|
1669 |
+
"lipstick, lip rouge": 629,
|
1670 |
+
"little blue heron, Egretta caerulea": 131,
|
1671 |
+
"llama": 355,
|
1672 |
+
"loggerhead, loggerhead turtle, Caretta caretta": 33,
|
1673 |
+
"long-horned beetle, longicorn, longicorn beetle": 303,
|
1674 |
+
"lorikeet": 90,
|
1675 |
+
"lotion": 631,
|
1676 |
+
"loudspeaker, speaker, speaker unit, loudspeaker system, speaker system": 632,
|
1677 |
+
"loupe, jeweler's loupe": 633,
|
1678 |
+
"lumbermill, sawmill": 634,
|
1679 |
+
"lycaenid, lycaenid butterfly": 326,
|
1680 |
+
"lynx, catamount": 287,
|
1681 |
+
"macaque": 373,
|
1682 |
+
"macaw": 88,
|
1683 |
+
"magnetic compass": 635,
|
1684 |
+
"magpie": 18,
|
1685 |
+
"mailbag, postbag": 636,
|
1686 |
+
"mailbox, letter box": 637,
|
1687 |
+
"maillot": 638,
|
1688 |
+
"maillot, tank suit": 639,
|
1689 |
+
"malamute, malemute, Alaskan malamute": 249,
|
1690 |
+
"malinois": 225,
|
1691 |
+
"manhole cover": 640,
|
1692 |
+
"mantis, mantid": 315,
|
1693 |
+
"maraca": 641,
|
1694 |
+
"marimba, xylophone": 642,
|
1695 |
+
"marmoset": 377,
|
1696 |
+
"marmot": 336,
|
1697 |
+
"mashed potato": 935,
|
1698 |
+
"mask": 643,
|
1699 |
+
"matchstick": 644,
|
1700 |
+
"maypole": 645,
|
1701 |
+
"maze, labyrinth": 646,
|
1702 |
+
"measuring cup": 647,
|
1703 |
+
"meat loaf, meatloaf": 962,
|
1704 |
+
"medicine chest, medicine cabinet": 648,
|
1705 |
+
"meerkat, mierkat": 299,
|
1706 |
+
"megalith, megalithic structure": 649,
|
1707 |
+
"menu": 922,
|
1708 |
+
"microphone, mike": 650,
|
1709 |
+
"microwave, microwave oven": 651,
|
1710 |
+
"military uniform": 652,
|
1711 |
+
"milk can": 653,
|
1712 |
+
"miniature pinscher": 237,
|
1713 |
+
"miniature poodle": 266,
|
1714 |
+
"miniature schnauzer": 196,
|
1715 |
+
"minibus": 654,
|
1716 |
+
"miniskirt, mini": 655,
|
1717 |
+
"minivan": 656,
|
1718 |
+
"mink": 357,
|
1719 |
+
"missile": 657,
|
1720 |
+
"mitten": 658,
|
1721 |
+
"mixing bowl": 659,
|
1722 |
+
"mobile home, manufactured home": 660,
|
1723 |
+
"modem": 662,
|
1724 |
+
"monarch, monarch butterfly, milkweed butterfly, Danaus plexippus": 323,
|
1725 |
+
"monastery": 663,
|
1726 |
+
"mongoose": 298,
|
1727 |
+
"monitor": 664,
|
1728 |
+
"moped": 665,
|
1729 |
+
"mortar": 666,
|
1730 |
+
"mortarboard": 667,
|
1731 |
+
"mosque": 668,
|
1732 |
+
"mosquito net": 669,
|
1733 |
+
"motor scooter, scooter": 670,
|
1734 |
+
"mountain bike, all-terrain bike, off-roader": 671,
|
1735 |
+
"mountain tent": 672,
|
1736 |
+
"mouse, computer mouse": 673,
|
1737 |
+
"mousetrap": 674,
|
1738 |
+
"moving van": 675,
|
1739 |
+
"mud turtle": 35,
|
1740 |
+
"mushroom": 947,
|
1741 |
+
"muzzle": 676,
|
1742 |
+
"nail": 677,
|
1743 |
+
"neck brace": 678,
|
1744 |
+
"necklace": 679,
|
1745 |
+
"nematode, nematode worm, roundworm": 111,
|
1746 |
+
"night snake, Hypsiglena torquata": 60,
|
1747 |
+
"nipple": 680,
|
1748 |
+
"notebook, notebook computer": 681,
|
1749 |
+
"obelisk": 682,
|
1750 |
+
"oboe, hautboy, hautbois": 683,
|
1751 |
+
"ocarina, sweet potato": 684,
|
1752 |
+
"odometer, hodometer, mileometer, milometer": 685,
|
1753 |
+
"oil filter": 686,
|
1754 |
+
"orange": 950,
|
1755 |
+
"orangutan, orang, orangutang, Pongo pygmaeus": 365,
|
1756 |
+
"organ, pipe organ": 687,
|
1757 |
+
"oscilloscope, scope, cathode-ray oscilloscope, CRO": 688,
|
1758 |
+
"ostrich, Struthio camelus": 9,
|
1759 |
+
"otter": 360,
|
1760 |
+
"otterhound, otter hound": 175,
|
1761 |
+
"overskirt": 689,
|
1762 |
+
"ox": 345,
|
1763 |
+
"oxcart": 690,
|
1764 |
+
"oxygen mask": 691,
|
1765 |
+
"oystercatcher, oyster catcher": 143,
|
1766 |
+
"packet": 692,
|
1767 |
+
"paddle, boat paddle": 693,
|
1768 |
+
"paddlewheel, paddle wheel": 694,
|
1769 |
+
"padlock": 695,
|
1770 |
+
"paintbrush": 696,
|
1771 |
+
"pajama, pyjama, pj's, jammies": 697,
|
1772 |
+
"palace": 698,
|
1773 |
+
"panpipe, pandean pipe, syrinx": 699,
|
1774 |
+
"paper towel": 700,
|
1775 |
+
"papillon": 157,
|
1776 |
+
"parachute, chute": 701,
|
1777 |
+
"parallel bars, bars": 702,
|
1778 |
+
"park bench": 703,
|
1779 |
+
"parking meter": 704,
|
1780 |
+
"partridge": 86,
|
1781 |
+
"passenger car, coach, carriage": 705,
|
1782 |
+
"patas, hussar monkey, Erythrocebus patas": 371,
|
1783 |
+
"patio, terrace": 706,
|
1784 |
+
"pay-phone, pay-station": 707,
|
1785 |
+
"peacock": 84,
|
1786 |
+
"pedestal, plinth, footstall": 708,
|
1787 |
+
"pelican": 144,
|
1788 |
+
"pencil box, pencil case": 709,
|
1789 |
+
"pencil sharpener": 710,
|
1790 |
+
"perfume, essence": 711,
|
1791 |
+
"photocopier": 713,
|
1792 |
+
"pick, plectrum, plectron": 714,
|
1793 |
+
"pickelhaube": 715,
|
1794 |
+
"picket fence, paling": 716,
|
1795 |
+
"pickup, pickup truck": 717,
|
1796 |
+
"pier": 718,
|
1797 |
+
"piggy bank, penny bank": 719,
|
1798 |
+
"pill bottle": 720,
|
1799 |
+
"pillow": 721,
|
1800 |
+
"pineapple, ananas": 953,
|
1801 |
+
"ping-pong ball": 722,
|
1802 |
+
"pinwheel": 723,
|
1803 |
+
"pirate, pirate ship": 724,
|
1804 |
+
"pitcher, ewer": 725,
|
1805 |
+
"pizza, pizza pie": 963,
|
1806 |
+
"plane, carpenter's plane, woodworking plane": 726,
|
1807 |
+
"planetarium": 727,
|
1808 |
+
"plastic bag": 728,
|
1809 |
+
"plate": 923,
|
1810 |
+
"plate rack": 729,
|
1811 |
+
"platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus": 103,
|
1812 |
+
"plow, plough": 730,
|
1813 |
+
"plunger, plumber's helper": 731,
|
1814 |
+
"pole": 733,
|
1815 |
+
"polecat, fitch, foulmart, foumart, Mustela putorius": 358,
|
1816 |
+
"police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria": 734,
|
1817 |
+
"pomegranate": 957,
|
1818 |
+
"poncho": 735,
|
1819 |
+
"pool table, billiard table, snooker table": 736,
|
1820 |
+
"pop bottle, soda bottle": 737,
|
1821 |
+
"porcupine, hedgehog": 334,
|
1822 |
+
"pot, flowerpot": 738,
|
1823 |
+
"potpie": 964,
|
1824 |
+
"potter's wheel": 739,
|
1825 |
+
"power drill": 740,
|
1826 |
+
"prairie chicken, prairie grouse, prairie fowl": 83,
|
1827 |
+
"prayer rug, prayer mat": 741,
|
1828 |
+
"pretzel": 932,
|
1829 |
+
"printer": 742,
|
1830 |
+
"prison, prison house": 743,
|
1831 |
+
"proboscis monkey, Nasalis larvatus": 376,
|
1832 |
+
"projectile, missile": 744,
|
1833 |
+
"projector": 745,
|
1834 |
+
"promontory, headland, head, foreland": 976,
|
1835 |
+
"ptarmigan": 81,
|
1836 |
+
"puck, hockey puck": 746,
|
1837 |
+
"puffer, pufferfish, blowfish, globefish": 397,
|
1838 |
+
"pug, pug-dog": 254,
|
1839 |
+
"punching bag, punch bag, punching ball, punchball": 747,
|
1840 |
+
"purse": 748,
|
1841 |
+
"quail": 85,
|
1842 |
+
"quill, quill pen": 749,
|
1843 |
+
"quilt, comforter, comfort, puff": 750,
|
1844 |
+
"racer, race car, racing car": 751,
|
1845 |
+
"racket, racquet": 752,
|
1846 |
+
"radiator": 753,
|
1847 |
+
"radio telescope, radio reflector": 755,
|
1848 |
+
"radio, wireless": 754,
|
1849 |
+
"rain barrel": 756,
|
1850 |
+
"ram, tup": 348,
|
1851 |
+
"rapeseed": 984,
|
1852 |
+
"recreational vehicle, RV, R.V.": 757,
|
1853 |
+
"red fox, Vulpes vulpes": 277,
|
1854 |
+
"red wine": 966,
|
1855 |
+
"red wolf, maned wolf, Canis rufus, Canis niger": 271,
|
1856 |
+
"red-backed sandpiper, dunlin, Erolia alpina": 140,
|
1857 |
+
"red-breasted merganser, Mergus serrator": 98,
|
1858 |
+
"redbone": 168,
|
1859 |
+
"redshank, Tringa totanus": 141,
|
1860 |
+
"reel": 758,
|
1861 |
+
"reflex camera": 759,
|
1862 |
+
"refrigerator, icebox": 760,
|
1863 |
+
"remote control, remote": 761,
|
1864 |
+
"restaurant, eating house, eating place, eatery": 762,
|
1865 |
+
"revolver, six-gun, six-shooter": 763,
|
1866 |
+
"rhinoceros beetle": 306,
|
1867 |
+
"rifle": 764,
|
1868 |
+
"ringlet, ringlet butterfly": 322,
|
1869 |
+
"ringneck snake, ring-necked snake, ring snake": 53,
|
1870 |
+
"robin, American robin, Turdus migratorius": 15,
|
1871 |
+
"rock beauty, Holocanthus tricolor": 392,
|
1872 |
+
"rock crab, Cancer irroratus": 119,
|
1873 |
+
"rock python, rock snake, Python sebae": 62,
|
1874 |
+
"rocking chair, rocker": 765,
|
1875 |
+
"rotisserie": 766,
|
1876 |
+
"rubber eraser, rubber, pencil eraser": 767,
|
1877 |
+
"ruddy turnstone, Arenaria interpres": 139,
|
1878 |
+
"ruffed grouse, partridge, Bonasa umbellus": 82,
|
1879 |
+
"rugby ball": 768,
|
1880 |
+
"rule, ruler": 769,
|
1881 |
+
"running shoe": 770,
|
1882 |
+
"safe": 771,
|
1883 |
+
"safety pin": 772,
|
1884 |
+
"saltshaker, salt shaker": 773,
|
1885 |
+
"sandal": 774,
|
1886 |
+
"sandbar, sand bar": 977,
|
1887 |
+
"sarong": 775,
|
1888 |
+
"sax, saxophone": 776,
|
1889 |
+
"scabbard": 777,
|
1890 |
+
"scale, weighing machine": 778,
|
1891 |
+
"schipperke": 223,
|
1892 |
+
"school bus": 779,
|
1893 |
+
"schooner": 780,
|
1894 |
+
"scoreboard": 781,
|
1895 |
+
"scorpion": 71,
|
1896 |
+
"screen, CRT screen": 782,
|
1897 |
+
"screw": 783,
|
1898 |
+
"screwdriver": 784,
|
1899 |
+
"scuba diver": 983,
|
1900 |
+
"sea anemone, anemone": 108,
|
1901 |
+
"sea cucumber, holothurian": 329,
|
1902 |
+
"sea lion": 150,
|
1903 |
+
"sea slug, nudibranch": 115,
|
1904 |
+
"sea snake": 65,
|
1905 |
+
"sea urchin": 328,
|
1906 |
+
"seashore, coast, seacoast, sea-coast": 978,
|
1907 |
+
"seat belt, seatbelt": 785,
|
1908 |
+
"sewing machine": 786,
|
1909 |
+
"shield, buckler": 787,
|
1910 |
+
"shoe shop, shoe-shop, shoe store": 788,
|
1911 |
+
"shoji": 789,
|
1912 |
+
"shopping basket": 790,
|
1913 |
+
"shopping cart": 791,
|
1914 |
+
"shovel": 792,
|
1915 |
+
"shower cap": 793,
|
1916 |
+
"shower curtain": 794,
|
1917 |
+
"siamang, Hylobates syndactylus, Symphalangus syndactylus": 369,
|
1918 |
+
"sidewinder, horned rattlesnake, Crotalus cerastes": 68,
|
1919 |
+
"silky terrier, Sydney silky": 201,
|
1920 |
+
"ski": 795,
|
1921 |
+
"ski mask": 796,
|
1922 |
+
"skunk, polecat, wood pussy": 361,
|
1923 |
+
"sleeping bag": 797,
|
1924 |
+
"slide rule, slipstick": 798,
|
1925 |
+
"sliding door": 799,
|
1926 |
+
"slot, one-armed bandit": 800,
|
1927 |
+
"sloth bear, Melursus ursinus, Ursus ursinus": 297,
|
1928 |
+
"slug": 114,
|
1929 |
+
"snail": 113,
|
1930 |
+
"snorkel": 801,
|
1931 |
+
"snow leopard, ounce, Panthera uncia": 289,
|
1932 |
+
"snowmobile": 802,
|
1933 |
+
"snowplow, snowplough": 803,
|
1934 |
+
"soap dispenser": 804,
|
1935 |
+
"soccer ball": 805,
|
1936 |
+
"sock": 806,
|
1937 |
+
"soft-coated wheaten terrier": 202,
|
1938 |
+
"solar dish, solar collector, solar furnace": 807,
|
1939 |
+
"sombrero": 808,
|
1940 |
+
"sorrel": 339,
|
1941 |
+
"soup bowl": 809,
|
1942 |
+
"space bar": 810,
|
1943 |
+
"space heater": 811,
|
1944 |
+
"space shuttle": 812,
|
1945 |
+
"spaghetti squash": 940,
|
1946 |
+
"spatula": 813,
|
1947 |
+
"speedboat": 814,
|
1948 |
+
"spider monkey, Ateles geoffroyi": 381,
|
1949 |
+
"spider web, spider's web": 815,
|
1950 |
+
"spindle": 816,
|
1951 |
+
"spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish": 123,
|
1952 |
+
"spoonbill": 129,
|
1953 |
+
"sports car, sport car": 817,
|
1954 |
+
"spotlight, spot": 818,
|
1955 |
+
"spotted salamander, Ambystoma maculatum": 28,
|
1956 |
+
"squirrel monkey, Saimiri sciureus": 382,
|
1957 |
+
"stage": 819,
|
1958 |
+
"standard poodle": 267,
|
1959 |
+
"standard schnauzer": 198,
|
1960 |
+
"starfish, sea star": 327,
|
1961 |
+
"steam locomotive": 820,
|
1962 |
+
"steel arch bridge": 821,
|
1963 |
+
"steel drum": 822,
|
1964 |
+
"stethoscope": 823,
|
1965 |
+
"stingray": 6,
|
1966 |
+
"stinkhorn, carrion fungus": 994,
|
1967 |
+
"stole": 824,
|
1968 |
+
"stone wall": 825,
|
1969 |
+
"stopwatch, stop watch": 826,
|
1970 |
+
"stove": 827,
|
1971 |
+
"strainer": 828,
|
1972 |
+
"strawberry": 949,
|
1973 |
+
"street sign": 919,
|
1974 |
+
"streetcar, tram, tramcar, trolley, trolley car": 829,
|
1975 |
+
"stretcher": 830,
|
1976 |
+
"studio couch, day bed": 831,
|
1977 |
+
"stupa, tope": 832,
|
1978 |
+
"sturgeon": 394,
|
1979 |
+
"submarine, pigboat, sub, U-boat": 833,
|
1980 |
+
"suit, suit of clothes": 834,
|
1981 |
+
"sulphur butterfly, sulfur butterfly": 325,
|
1982 |
+
"sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita": 89,
|
1983 |
+
"sundial": 835,
|
1984 |
+
"sunglass": 836,
|
1985 |
+
"sunglasses, dark glasses, shades": 837,
|
1986 |
+
"sunscreen, sunblock, sun blocker": 838,
|
1987 |
+
"suspension bridge": 839,
|
1988 |
+
"swab, swob, mop": 840,
|
1989 |
+
"sweatshirt": 841,
|
1990 |
+
"swimming trunks, bathing trunks": 842,
|
1991 |
+
"swing": 843,
|
1992 |
+
"switch, electric switch, electrical switch": 844,
|
1993 |
+
"syringe": 845,
|
1994 |
+
"tabby, tabby cat": 281,
|
1995 |
+
"table lamp": 846,
|
1996 |
+
"tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui": 32,
|
1997 |
+
"tank, army tank, armored combat vehicle, armoured combat vehicle": 847,
|
1998 |
+
"tape player": 848,
|
1999 |
+
"tarantula": 76,
|
2000 |
+
"teapot": 849,
|
2001 |
+
"teddy, teddy bear": 850,
|
2002 |
+
"television, television system": 851,
|
2003 |
+
"tench, Tinca tinca": 0,
|
2004 |
+
"tennis ball": 852,
|
2005 |
+
"terrapin": 36,
|
2006 |
+
"thatch, thatched roof": 853,
|
2007 |
+
"theater curtain, theatre curtain": 854,
|
2008 |
+
"thimble": 855,
|
2009 |
+
"three-toed sloth, ai, Bradypus tridactylus": 364,
|
2010 |
+
"thresher, thrasher, threshing machine": 856,
|
2011 |
+
"throne": 857,
|
2012 |
+
"thunder snake, worm snake, Carphophis amoenus": 52,
|
2013 |
+
"tick": 78,
|
2014 |
+
"tiger beetle": 300,
|
2015 |
+
"tiger cat": 282,
|
2016 |
+
"tiger shark, Galeocerdo cuvieri": 3,
|
2017 |
+
"tiger, Panthera tigris": 292,
|
2018 |
+
"tile roof": 858,
|
2019 |
+
"timber wolf, grey wolf, gray wolf, Canis lupus": 269,
|
2020 |
+
"titi, titi monkey": 380,
|
2021 |
+
"toaster": 859,
|
2022 |
+
"tobacco shop, tobacconist shop, tobacconist": 860,
|
2023 |
+
"toilet seat": 861,
|
2024 |
+
"toilet tissue, toilet paper, bathroom tissue": 999,
|
2025 |
+
"torch": 862,
|
2026 |
+
"totem pole": 863,
|
2027 |
+
"toucan": 96,
|
2028 |
+
"tow truck, tow car, wrecker": 864,
|
2029 |
+
"toy poodle": 265,
|
2030 |
+
"toy terrier": 158,
|
2031 |
+
"toyshop": 865,
|
2032 |
+
"tractor": 866,
|
2033 |
+
"traffic light, traffic signal, stoplight": 920,
|
2034 |
+
"trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi": 867,
|
2035 |
+
"tray": 868,
|
2036 |
+
"tree frog, tree-frog": 31,
|
2037 |
+
"trench coat": 869,
|
2038 |
+
"triceratops": 51,
|
2039 |
+
"tricycle, trike, velocipede": 870,
|
2040 |
+
"trifle": 927,
|
2041 |
+
"trilobite": 69,
|
2042 |
+
"trimaran": 871,
|
2043 |
+
"tripod": 872,
|
2044 |
+
"triumphal arch": 873,
|
2045 |
+
"trolleybus, trolley coach, trackless trolley": 874,
|
2046 |
+
"trombone": 875,
|
2047 |
+
"tub, vat": 876,
|
2048 |
+
"turnstile": 877,
|
2049 |
+
"tusker": 101,
|
2050 |
+
"typewriter keyboard": 878,
|
2051 |
+
"umbrella": 879,
|
2052 |
+
"unicycle, monocycle": 880,
|
2053 |
+
"upright, upright piano": 881,
|
2054 |
+
"vacuum, vacuum cleaner": 882,
|
2055 |
+
"valley, vale": 979,
|
2056 |
+
"vase": 883,
|
2057 |
+
"vault": 884,
|
2058 |
+
"velvet": 885,
|
2059 |
+
"vending machine": 886,
|
2060 |
+
"vestment": 887,
|
2061 |
+
"viaduct": 888,
|
2062 |
+
"vine snake": 59,
|
2063 |
+
"violin, fiddle": 889,
|
2064 |
+
"vizsla, Hungarian pointer": 211,
|
2065 |
+
"volcano": 980,
|
2066 |
+
"volleyball": 890,
|
2067 |
+
"vulture": 23,
|
2068 |
+
"waffle iron": 891,
|
2069 |
+
"walking stick, walkingstick, stick insect": 313,
|
2070 |
+
"wall clock": 892,
|
2071 |
+
"wallaby, brush kangaroo": 104,
|
2072 |
+
"wallet, billfold, notecase, pocketbook": 893,
|
2073 |
+
"wardrobe, closet, press": 894,
|
2074 |
+
"warplane, military plane": 895,
|
2075 |
+
"warthog": 343,
|
2076 |
+
"washbasin, handbasin, washbowl, lavabo, wash-hand basin": 896,
|
2077 |
+
"washer, automatic washer, washing machine": 897,
|
2078 |
+
"water bottle": 898,
|
2079 |
+
"water buffalo, water ox, Asiatic buffalo, Bubalus bubalis": 346,
|
2080 |
+
"water jug": 899,
|
2081 |
+
"water ouzel, dipper": 20,
|
2082 |
+
"water snake": 58,
|
2083 |
+
"water tower": 900,
|
2084 |
+
"weasel": 356,
|
2085 |
+
"web site, website, internet site, site": 916,
|
2086 |
+
"weevil": 307,
|
2087 |
+
"whippet": 172,
|
2088 |
+
"whiptail, whiptail lizard": 41,
|
2089 |
+
"whiskey jug": 901,
|
2090 |
+
"whistle": 902,
|
2091 |
+
"white stork, Ciconia ciconia": 127,
|
2092 |
+
"white wolf, Arctic wolf, Canis lupus tundrarum": 270,
|
2093 |
+
"wig": 903,
|
2094 |
+
"wild boar, boar, Sus scrofa": 342,
|
2095 |
+
"window screen": 904,
|
2096 |
+
"window shade": 905,
|
2097 |
+
"wine bottle": 907,
|
2098 |
+
"wing": 908,
|
2099 |
+
"wire-haired fox terrier": 188,
|
2100 |
+
"wok": 909,
|
2101 |
+
"wolf spider, hunting spider": 77,
|
2102 |
+
"wombat": 106,
|
2103 |
+
"wood rabbit, cottontail, cottontail rabbit": 330,
|
2104 |
+
"wooden spoon": 910,
|
2105 |
+
"wool, woolen, woollen": 911,
|
2106 |
+
"worm fence, snake fence, snake-rail fence, Virginia fence": 912,
|
2107 |
+
"wreck": 913,
|
2108 |
+
"yawl": 914,
|
2109 |
+
"yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum": 986,
|
2110 |
+
"yurt": 915,
|
2111 |
+
"zebra": 340,
|
2112 |
+
"zucchini, courgette": 939
|
2113 |
+
},
|
2114 |
+
"layer_norm_eps": 1e-12,
|
2115 |
+
"length_penalty": 1.0,
|
2116 |
+
"max_length": 20,
|
2117 |
+
"min_length": 0,
|
2118 |
+
"model_type": "vit",
|
2119 |
+
"no_repeat_ngram_size": 0,
|
2120 |
+
"num_attention_heads": 12,
|
2121 |
+
"num_beam_groups": 1,
|
2122 |
+
"num_beams": 1,
|
2123 |
+
"num_channels": 3,
|
2124 |
+
"num_hidden_layers": 12,
|
2125 |
+
"num_return_sequences": 1,
|
2126 |
+
"output_attentions": false,
|
2127 |
+
"output_hidden_states": false,
|
2128 |
+
"output_scores": false,
|
2129 |
+
"pad_token_id": null,
|
2130 |
+
"patch_size": 16,
|
2131 |
+
"prefix": null,
|
2132 |
+
"problem_type": null,
|
2133 |
+
"pruned_heads": {},
|
2134 |
+
"qkv_bias": true,
|
2135 |
+
"remove_invalid_values": false,
|
2136 |
+
"repetition_penalty": 1.0,
|
2137 |
+
"return_dict": true,
|
2138 |
+
"return_dict_in_generate": false,
|
2139 |
+
"sep_token_id": null,
|
2140 |
+
"task_specific_params": null,
|
2141 |
+
"temperature": 1.0,
|
2142 |
+
"tie_encoder_decoder": false,
|
2143 |
+
"tie_word_embeddings": true,
|
2144 |
+
"tokenizer_class": null,
|
2145 |
+
"top_k": 50,
|
2146 |
+
"top_p": 1.0,
|
2147 |
+
"torch_dtype": null,
|
2148 |
+
"torchscript": false,
|
2149 |
+
"transformers_version": "4.15.0",
|
2150 |
+
"use_bfloat16": false
|
2151 |
+
},
|
2152 |
+
"eos_token_id": 3,
|
2153 |
+
"is_encoder_decoder": true,
|
2154 |
+
"length_penalty": 2.0,
|
2155 |
+
"max_length": 300,
|
2156 |
+
"model_type": "vision-encoder-decoder",
|
2157 |
+
"no_repeat_ngram_size": 3,
|
2158 |
+
"num_beams": 4,
|
2159 |
+
"pad_token_id": 0,
|
2160 |
+
"tie_word_embeddings": false,
|
2161 |
+
"torch_dtype": "float32",
|
2162 |
+
"transformers_version": null,
|
2163 |
+
"vocab_size": 6144
|
2164 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"resample": 2,
|
16 |
+
"size": 224
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c63e0bb5b3ff798c5991de18a8e0956c7ee6d1563aca6729029815eda6f5c2eb
|
3 |
+
size 444135475
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "do_lower_case": false, "do_word_tokenize": true, "do_subword_tokenize": true, "word_tokenizer_type": "mecab", "subword_tokenizer_type": "character", "never_split": null, "mecab_kwargs": {"mecab_dic": "unidic_lite"}, "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "cl-tohoku/bert-base-japanese-char-v2", "tokenizer_class": "BertJapaneseTokenizer"}
|
vocab.txt
ADDED
@@ -0,0 +1,6144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[PAD]
|
2 |
+
[UNK]
|
3 |
+
[CLS]
|
4 |
+
[SEP]
|
5 |
+
[MASK]
|
6 |
+
<unused0>
|
7 |
+
<unused1>
|
8 |
+
<unused2>
|
9 |
+
<unused3>
|
10 |
+
<unused4>
|
11 |
+
<unused5>
|
12 |
+
<unused6>
|
13 |
+
<unused7>
|
14 |
+
<unused8>
|
15 |
+
<unused9>
|
16 |
+
!
|
17 |
+
"
|
18 |
+
#
|
19 |
+
$
|
20 |
+
%
|
21 |
+
&
|
22 |
+
'
|
23 |
+
(
|
24 |
+
)
|
25 |
+
*
|
26 |
+
+
|
27 |
+
,
|
28 |
+
-
|
29 |
+
.
|
30 |
+
/
|
31 |
+
0
|
32 |
+
1
|
33 |
+
2
|
34 |
+
3
|
35 |
+
4
|
36 |
+
5
|
37 |
+
6
|
38 |
+
7
|
39 |
+
8
|
40 |
+
9
|
41 |
+
:
|
42 |
+
;
|
43 |
+
<
|
44 |
+
=
|
45 |
+
>
|
46 |
+
?
|
47 |
+
@
|
48 |
+
A
|
49 |
+
B
|
50 |
+
C
|
51 |
+
D
|
52 |
+
E
|
53 |
+
F
|
54 |
+
G
|
55 |
+
H
|
56 |
+
I
|
57 |
+
J
|
58 |
+
K
|
59 |
+
L
|
60 |
+
M
|
61 |
+
N
|
62 |
+
O
|
63 |
+
P
|
64 |
+
Q
|
65 |
+
R
|
66 |
+
S
|
67 |
+
T
|
68 |
+
U
|
69 |
+
V
|
70 |
+
W
|
71 |
+
X
|
72 |
+
Y
|
73 |
+
Z
|
74 |
+
[
|
75 |
+
\
|
76 |
+
]
|
77 |
+
^
|
78 |
+
_
|
79 |
+
`
|
80 |
+
a
|
81 |
+
b
|
82 |
+
c
|
83 |
+
d
|
84 |
+
e
|
85 |
+
f
|
86 |
+
g
|
87 |
+
h
|
88 |
+
i
|
89 |
+
j
|
90 |
+
k
|
91 |
+
l
|
92 |
+
m
|
93 |
+
n
|
94 |
+
o
|
95 |
+
p
|
96 |
+
q
|
97 |
+
r
|
98 |
+
s
|
99 |
+
t
|
100 |
+
u
|
101 |
+
v
|
102 |
+
w
|
103 |
+
x
|
104 |
+
y
|
105 |
+
z
|
106 |
+
{
|
107 |
+
|
|
108 |
+
}
|
109 |
+
~
|
110 |
+
¡
|
111 |
+
¢
|
112 |
+
£
|
113 |
+
¥
|
114 |
+
§
|
115 |
+
©
|
116 |
+
«
|
117 |
+
¬
|
118 |
+
®
|
119 |
+
°
|
120 |
+
±
|
121 |
+
·
|
122 |
+
»
|
123 |
+
¿
|
124 |
+
À
|
125 |
+
Á
|
126 |
+
Ä
|
127 |
+
Å
|
128 |
+
Æ
|
129 |
+
Ç
|
130 |
+
É
|
131 |
+
Í
|
132 |
+
Î
|
133 |
+
Ó
|
134 |
+
Ö
|
135 |
+
×
|
136 |
+
Ø
|
137 |
+
Ú
|
138 |
+
Ü
|
139 |
+
Þ
|
140 |
+
ß
|
141 |
+
à
|
142 |
+
á
|
143 |
+
â
|
144 |
+
ã
|
145 |
+
ä
|
146 |
+
å
|
147 |
+
æ
|
148 |
+
ç
|
149 |
+
è
|
150 |
+
é
|
151 |
+
ê
|
152 |
+
ë
|
153 |
+
ì
|
154 |
+
í
|
155 |
+
î
|
156 |
+
ï
|
157 |
+
ð
|
158 |
+
ñ
|
159 |
+
ò
|
160 |
+
ó
|
161 |
+
ô
|
162 |
+
õ
|
163 |
+
ö
|
164 |
+
÷
|
165 |
+
ø
|
166 |
+
ù
|
167 |
+
ú
|
168 |
+
û
|
169 |
+
ü
|
170 |
+
ý
|
171 |
+
þ
|
172 |
+
Ā
|
173 |
+
ā
|
174 |
+
ă
|
175 |
+
ą
|
176 |
+
Ć
|
177 |
+
ć
|
178 |
+
Č
|
179 |
+
č
|
180 |
+
Đ
|
181 |
+
đ
|
182 |
+
ē
|
183 |
+
ĕ
|
184 |
+
ė
|
185 |
+
ę
|
186 |
+
ě
|
187 |
+
ĝ
|
188 |
+
ğ
|
189 |
+
ħ
|
190 |
+
ĩ
|
191 |
+
Ī
|
192 |
+
ī
|
193 |
+
İ
|
194 |
+
ı
|
195 |
+
Ł
|
196 |
+
ł
|
197 |
+
ń
|
198 |
+
ň
|
199 |
+
ŋ
|
200 |
+
ō
|
201 |
+
ŏ
|
202 |
+
ő
|
203 |
+
œ
|
204 |
+
ř
|
205 |
+
Ś
|
206 |
+
ś
|
207 |
+
Ş
|
208 |
+
ş
|
209 |
+
Š
|
210 |
+
š
|
211 |
+
ţ
|
212 |
+
ť
|
213 |
+
ũ
|
214 |
+
ū
|
215 |
+
ŭ
|
216 |
+
ů
|
217 |
+
ź
|
218 |
+
Ż
|
219 |
+
ż
|
220 |
+
Ž
|
221 |
+
ž
|
222 |
+
ơ
|
223 |
+
ư
|
224 |
+
ǁ
|
225 |
+
ǎ
|
226 |
+
ǐ
|
227 |
+
ǒ
|
228 |
+
ǔ
|
229 |
+
ǰ
|
230 |
+
ș
|
231 |
+
ȝ
|
232 |
+
ɐ
|
233 |
+
ɑ
|
234 |
+
ɒ
|
235 |
+
ɔ
|
236 |
+
ɕ
|
237 |
+
ə
|
238 |
+
ɛ
|
239 |
+
ɟ
|
240 |
+
ɡ
|
241 |
+
ɣ
|
242 |
+
ɦ
|
243 |
+
ɨ
|
244 |
+
ɪ
|
245 |
+
ɫ
|
246 |
+
ɯ
|
247 |
+
ɲ
|
248 |
+
ɴ
|
249 |
+
ɸ
|
250 |
+
ɹ
|
251 |
+
ɾ
|
252 |
+
ʁ
|
253 |
+
ʃ
|
254 |
+
ʊ
|
255 |
+
ʌ
|
256 |
+
ʎ
|
257 |
+
ʏ
|
258 |
+
ʑ
|
259 |
+
ʒ
|
260 |
+
ʔ
|
261 |
+
ʕ
|
262 |
+
ʧ
|
263 |
+
ʻ
|
264 |
+
ʼ
|
265 |
+
ʿ
|
266 |
+
ˀ
|
267 |
+
ˈ
|
268 |
+
ˌ
|
269 |
+
ː
|
270 |
+
́
|
271 |
+
̃
|
272 |
+
̈
|
273 |
+
̓
|
274 |
+
̝
|
275 |
+
̥
|
276 |
+
̩
|
277 |
+
̯
|
278 |
+
͡
|
279 |
+
Ά
|
280 |
+
Α
|
281 |
+
Β
|
282 |
+
Γ
|
283 |
+
Δ
|
284 |
+
Ε
|
285 |
+
Ζ
|
286 |
+
Η
|
287 |
+
Θ
|
288 |
+
Ι
|
289 |
+
Κ
|
290 |
+
Λ
|
291 |
+
Μ
|
292 |
+
Ν
|
293 |
+
Ξ
|
294 |
+
Ο
|
295 |
+
Π
|
296 |
+
Ρ
|
297 |
+
Σ
|
298 |
+
Τ
|
299 |
+
Φ
|
300 |
+
Χ
|
301 |
+
Ψ
|
302 |
+
Ω
|
303 |
+
ά
|
304 |
+
έ
|
305 |
+
ή
|
306 |
+
ί
|
307 |
+
α
|
308 |
+
β
|
309 |
+
γ
|
310 |
+
δ
|
311 |
+
ε
|
312 |
+
ζ
|
313 |
+
η
|
314 |
+
θ
|
315 |
+
ι
|
316 |
+
κ
|
317 |
+
λ
|
318 |
+
μ
|
319 |
+
ν
|
320 |
+
ξ
|
321 |
+
ο
|
322 |
+
π
|
323 |
+
ρ
|
324 |
+
ς
|
325 |
+
σ
|
326 |
+
τ
|
327 |
+
υ
|
328 |
+
φ
|
329 |
+
χ
|
330 |
+
ψ
|
331 |
+
ω
|
332 |
+
ό
|
333 |
+
ύ
|
334 |
+
ώ
|
335 |
+
Ё
|
336 |
+
І
|
337 |
+
Ј
|
338 |
+
А
|
339 |
+
Б
|
340 |
+
В
|
341 |
+
Г
|
342 |
+
Д
|
343 |
+
Е
|
344 |
+
Ж
|
345 |
+
З
|
346 |
+
И
|
347 |
+
Й
|
348 |
+
К
|
349 |
+
Л
|
350 |
+
М
|
351 |
+
Н
|
352 |
+
О
|
353 |
+
П
|
354 |
+
Р
|
355 |
+
С
|
356 |
+
Т
|
357 |
+
У
|
358 |
+
Ф
|
359 |
+
Х
|
360 |
+
Ц
|
361 |
+
Ч
|
362 |
+
Ш
|
363 |
+
Э
|
364 |
+
Ю
|
365 |
+
Я
|
366 |
+
а
|
367 |
+
б
|
368 |
+
в
|
369 |
+
г
|
370 |
+
д
|
371 |
+
е
|
372 |
+
ж
|
373 |
+
з
|
374 |
+
и
|
375 |
+
й
|
376 |
+
к
|
377 |
+
л
|
378 |
+
м
|
379 |
+
н
|
380 |
+
о
|
381 |
+
п
|
382 |
+
р
|
383 |
+
с
|
384 |
+
т
|
385 |
+
у
|
386 |
+
ф
|
387 |
+
х
|
388 |
+
ц
|
389 |
+
ч
|
390 |
+
ш
|
391 |
+
щ
|
392 |
+
ъ
|
393 |
+
ы
|
394 |
+
ь
|
395 |
+
э
|
396 |
+
ю
|
397 |
+
я
|
398 |
+
ё
|
399 |
+
і
|
400 |
+
ї
|
401 |
+
ј
|
402 |
+
њ
|
403 |
+
ћ
|
404 |
+
қ
|
405 |
+
ү
|
406 |
+
ө
|
407 |
+
Ա
|
408 |
+
ա
|
409 |
+
գ
|
410 |
+
ե
|
411 |
+
ի
|
412 |
+
յ
|
413 |
+
ն
|
414 |
+
ո
|
415 |
+
տ
|
416 |
+
ր
|
417 |
+
ւ
|
418 |
+
ְ
|
419 |
+
ִ
|
420 |
+
ֵ
|
421 |
+
ֶ
|
422 |
+
ַ
|
423 |
+
ָ
|
424 |
+
ֹ
|
425 |
+
ּ
|
426 |
+
ׁ
|
427 |
+
א
|
428 |
+
ב
|
429 |
+
ג
|
430 |
+
ד
|
431 |
+
ה
|
432 |
+
ו
|
433 |
+
ז
|
434 |
+
ח
|
435 |
+
ט
|
436 |
+
י
|
437 |
+
כ
|
438 |
+
ל
|
439 |
+
ם
|
440 |
+
מ
|
441 |
+
ן
|
442 |
+
נ
|
443 |
+
ס
|
444 |
+
ע
|
445 |
+
פ
|
446 |
+
צ
|
447 |
+
ק
|
448 |
+
ר
|
449 |
+
ש
|
450 |
+
ת
|
451 |
+
،
|
452 |
+
ء
|
453 |
+
آ
|
454 |
+
أ
|
455 |
+
إ
|
456 |
+
ئ
|
457 |
+
ا
|
458 |
+
ب
|
459 |
+
ة
|
460 |
+
ت
|
461 |
+
ث
|
462 |
+
ج
|
463 |
+
ح
|
464 |
+
خ
|
465 |
+
د
|
466 |
+
ر
|
467 |
+
ز
|
468 |
+
س
|
469 |
+
ش
|
470 |
+
ص
|
471 |
+
ض
|
472 |
+
ط
|
473 |
+
ظ
|
474 |
+
ع
|
475 |
+
غ
|
476 |
+
ـ
|
477 |
+
ف
|
478 |
+
ق
|
479 |
+
ك
|
480 |
+
ل
|
481 |
+
م
|
482 |
+
ن
|
483 |
+
ه
|
484 |
+
و
|
485 |
+
ى
|
486 |
+
ي
|
487 |
+
َ
|
488 |
+
ِ
|
489 |
+
ْ
|
490 |
+
پ
|
491 |
+
چ
|
492 |
+
ک
|
493 |
+
گ
|
494 |
+
ھ
|
495 |
+
ہ
|
496 |
+
ی
|
497 |
+
ە
|
498 |
+
ं
|
499 |
+
अ
|
500 |
+
क
|
501 |
+
ख
|
502 |
+
ग
|
503 |
+
च
|
504 |
+
ज
|
505 |
+
ट
|
506 |
+
ड
|
507 |
+
ण
|
508 |
+
त
|
509 |
+
द
|
510 |
+
ध
|
511 |
+
न
|
512 |
+
प
|
513 |
+
ब
|
514 |
+
भ
|
515 |
+
म
|
516 |
+
य
|
517 |
+
र
|
518 |
+
ल
|
519 |
+
व
|
520 |
+
श
|
521 |
+
स
|
522 |
+
ह
|
523 |
+
़
|
524 |
+
ा
|
525 |
+
ि
|
526 |
+
ी
|
527 |
+
ु
|
528 |
+
ू
|
529 |
+
े
|
530 |
+
ो
|
531 |
+
्
|
532 |
+
ম
|
533 |
+
র
|
534 |
+
া
|
535 |
+
ু
|
536 |
+
্
|
537 |
+
அ
|
538 |
+
க
|
539 |
+
ச
|
540 |
+
ட
|
541 |
+
த
|
542 |
+
ன
|
543 |
+
ப
|
544 |
+
ம
|
545 |
+
ய
|
546 |
+
ர
|
547 |
+
ற
|
548 |
+
ல
|
549 |
+
ழ
|
550 |
+
வ
|
551 |
+
ா
|
552 |
+
ி
|
553 |
+
ு
|
554 |
+
ை
|
555 |
+
்
|
556 |
+
ర
|
557 |
+
ರ
|
558 |
+
ು
|
559 |
+
ി
|
560 |
+
്
|
561 |
+
ක
|
562 |
+
ත
|
563 |
+
ද
|
564 |
+
න
|
565 |
+
ප
|
566 |
+
ම
|
567 |
+
ය
|
568 |
+
ර
|
569 |
+
ව
|
570 |
+
ස
|
571 |
+
්
|
572 |
+
ා
|
573 |
+
ි
|
574 |
+
ු
|
575 |
+
ก
|
576 |
+
ข
|
577 |
+
ค
|
578 |
+
ง
|
579 |
+
จ
|
580 |
+
ช
|
581 |
+
ญ
|
582 |
+
ณ
|
583 |
+
ด
|
584 |
+
ต
|
585 |
+
ถ
|
586 |
+
ท
|
587 |
+
ธ
|
588 |
+
น
|
589 |
+
บ
|
590 |
+
ป
|
591 |
+
ผ
|
592 |
+
พ
|
593 |
+
ฟ
|
594 |
+
ภ
|
595 |
+
ม
|
596 |
+
ย
|
597 |
+
ร
|
598 |
+
ล
|
599 |
+
ว
|
600 |
+
ศ
|
601 |
+
ส
|
602 |
+
ห
|
603 |
+
อ
|
604 |
+
ะ
|
605 |
+
ั
|
606 |
+
า
|
607 |
+
ิ
|
608 |
+
ี
|
609 |
+
ื
|
610 |
+
ุ
|
611 |
+
ู
|
612 |
+
เ
|
613 |
+
แ
|
614 |
+
โ
|
615 |
+
ไ
|
616 |
+
็
|
617 |
+
่
|
618 |
+
้
|
619 |
+
์
|
620 |
+
ํ
|
621 |
+
ດ
|
622 |
+
ນ
|
623 |
+
ປ
|
624 |
+
ວ
|
625 |
+
ສ
|
626 |
+
ະ
|
627 |
+
າ
|
628 |
+
ເ
|
629 |
+
་
|
630 |
+
ག
|
631 |
+
ང
|
632 |
+
ད
|
633 |
+
ན
|
634 |
+
བ
|
635 |
+
མ
|
636 |
+
ར
|
637 |
+
ལ
|
638 |
+
ས
|
639 |
+
ི
|
640 |
+
ོ
|
641 |
+
ླ
|
642 |
+
က
|
643 |
+
င
|
644 |
+
တ
|
645 |
+
န
|
646 |
+
ပ
|
647 |
+
ရ
|
648 |
+
ာ
|
649 |
+
ိ
|
650 |
+
ု
|
651 |
+
ေ
|
652 |
+
း
|
653 |
+
်
|
654 |
+
ြ
|
655 |
+
ა
|
656 |
+
ბ
|
657 |
+
გ
|
658 |
+
დ
|
659 |
+
ე
|
660 |
+
ვ
|
661 |
+
თ
|
662 |
+
ი
|
663 |
+
ლ
|
664 |
+
მ
|
665 |
+
ნ
|
666 |
+
ო
|
667 |
+
რ
|
668 |
+
ს
|
669 |
+
ტ
|
670 |
+
უ
|
671 |
+
ქ
|
672 |
+
ყ
|
673 |
+
წ
|
674 |
+
ᄇ
|
675 |
+
ᅵ
|
676 |
+
አ
|
677 |
+
ក
|
678 |
+
ង
|
679 |
+
ត
|
680 |
+
ន
|
681 |
+
ព
|
682 |
+
រ
|
683 |
+
ា
|
684 |
+
្
|
685 |
+
ᠠ
|
686 |
+
ᠡ
|
687 |
+
ᠢ
|
688 |
+
ᠣ
|
689 |
+
ᠤ
|
690 |
+
ᠨ
|
691 |
+
ᠩ
|
692 |
+
ᠪ
|
693 |
+
ᠭ
|
694 |
+
ᠮ
|
695 |
+
ᠯ
|
696 |
+
ᠷ
|
697 |
+
ᡝ
|
698 |
+
ᡞ
|
699 |
+
ᡠ
|
700 |
+
ᡥ
|
701 |
+
ḍ
|
702 |
+
Ḥ
|
703 |
+
ḥ
|
704 |
+
ḫ
|
705 |
+
ṃ
|
706 |
+
ṅ
|
707 |
+
ṇ
|
708 |
+
ṛ
|
709 |
+
ṣ
|
710 |
+
ṭ
|
711 |
+
ạ
|
712 |
+
ả
|
713 |
+
ấ
|
714 |
+
ầ
|
715 |
+
ế
|
716 |
+
ề
|
717 |
+
ệ
|
718 |
+
ị
|
719 |
+
ố
|
720 |
+
ồ
|
721 |
+
ộ
|
722 |
+
ờ
|
723 |
+
ụ
|
724 |
+
ἀ
|
725 |
+
Ἀ
|
726 |
+
ἐ
|
727 |
+
Ἑ
|
728 |
+
ἰ
|
729 |
+
ὁ
|
730 |
+
ὰ
|
731 |
+
ὶ
|
732 |
+
ῖ
|
733 |
+
‐
|
734 |
+
–
|
735 |
+
—
|
736 |
+
―
|
737 |
+
‖
|
738 |
+
‘
|
739 |
+
’
|
740 |
+
“
|
741 |
+
”
|
742 |
+
„
|
743 |
+
†
|
744 |
+
‡
|
745 |
+
•
|
746 |
+
‧
|
747 |
+
‰
|
748 |
+
′
|
749 |
+
※
|
750 |
+
⁄
|
751 |
+
←
|
752 |
+
↑
|
753 |
+
→
|
754 |
+
↓
|
755 |
+
↦
|
756 |
+
⇒
|
757 |
+
⇔
|
758 |
+
∀
|
759 |
+
∂
|
760 |
+
∃
|
761 |
+
∈
|
762 |
+
∑
|
763 |
+
−
|
764 |
+
∖
|
765 |
+
∗
|
766 |
+
√
|
767 |
+
∞
|
768 |
+
∠
|
769 |
+
∧
|
770 |
+
∨
|
771 |
+
∩
|
772 |
+
∪
|
773 |
+
∽
|
774 |
+
≈
|
775 |
+
≒
|
776 |
+
≠
|
777 |
+
≡
|
778 |
+
≤
|
779 |
+
≥
|
780 |
+
≦
|
781 |
+
≧
|
782 |
+
≪
|
783 |
+
≫
|
784 |
+
⊂
|
785 |
+
⊆
|
786 |
+
⊗
|
787 |
+
⊿
|
788 |
+
⋅
|
789 |
+
⋯
|
790 |
+
─
|
791 |
+
━
|
792 |
+
│
|
793 |
+
┃
|
794 |
+
┏
|
795 |
+
┓
|
796 |
+
┗
|
797 |
+
┣
|
798 |
+
┳
|
799 |
+
█
|
800 |
+
■
|
801 |
+
□
|
802 |
+
▲
|
803 |
+
△
|
804 |
+
▼
|
805 |
+
▽
|
806 |
+
◆
|
807 |
+
◇
|
808 |
+
○
|
809 |
+
◎
|
810 |
+
●
|
811 |
+
◯
|
812 |
+
★
|
813 |
+
☆
|
814 |
+
☉
|
815 |
+
♀
|
816 |
+
♂
|
817 |
+
♠
|
818 |
+
♡
|
819 |
+
♣
|
820 |
+
♥
|
821 |
+
♦
|
822 |
+
♪
|
823 |
+
♭
|
824 |
+
♯
|
825 |
+
✩
|
826 |
+
⟨
|
827 |
+
⟩
|
828 |
+
ⴰ
|
829 |
+
、
|
830 |
+
。
|
831 |
+
〃
|
832 |
+
々
|
833 |
+
〆
|
834 |
+
〇
|
835 |
+
〈
|
836 |
+
〉
|
837 |
+
《
|
838 |
+
》
|
839 |
+
「
|
840 |
+
」
|
841 |
+
『
|
842 |
+
』
|
843 |
+
【
|
844 |
+
】
|
845 |
+
〒
|
846 |
+
〔
|
847 |
+
〕
|
848 |
+
〜
|
849 |
+
〝
|
850 |
+
〟
|
851 |
+
〰
|
852 |
+
ぁ
|
853 |
+
あ
|
854 |
+
ぃ
|
855 |
+
い
|
856 |
+
ぅ
|
857 |
+
う
|
858 |
+
ぇ
|
859 |
+
え
|
860 |
+
ぉ
|
861 |
+
お
|
862 |
+
か
|
863 |
+
が
|
864 |
+
き
|
865 |
+
ぎ
|
866 |
+
く
|
867 |
+
ぐ
|
868 |
+
け
|
869 |
+
げ
|
870 |
+
こ
|
871 |
+
ご
|
872 |
+
さ
|
873 |
+
ざ
|
874 |
+
し
|
875 |
+
じ
|
876 |
+
す
|
877 |
+
ず
|
878 |
+
せ
|
879 |
+
ぜ
|
880 |
+
そ
|
881 |
+
ぞ
|
882 |
+
た
|
883 |
+
だ
|
884 |
+
ち
|
885 |
+
ぢ
|
886 |
+
っ
|
887 |
+
つ
|
888 |
+
づ
|
889 |
+
て
|
890 |
+
で
|
891 |
+
と
|
892 |
+
ど
|
893 |
+
な
|
894 |
+
に
|
895 |
+
ぬ
|
896 |
+
ね
|
897 |
+
の
|
898 |
+
は
|
899 |
+
ば
|
900 |
+
ぱ
|
901 |
+
ひ
|
902 |
+
び
|
903 |
+
ぴ
|
904 |
+
ふ
|
905 |
+
ぶ
|
906 |
+
ぷ
|
907 |
+
へ
|
908 |
+
べ
|
909 |
+
ぺ
|
910 |
+
ほ
|
911 |
+
ぼ
|
912 |
+
ぽ
|
913 |
+
ま
|
914 |
+
み
|
915 |
+
む
|
916 |
+
め
|
917 |
+
も
|
918 |
+
ゃ
|
919 |
+
や
|
920 |
+
ゅ
|
921 |
+
ゆ
|
922 |
+
ょ
|
923 |
+
よ
|
924 |
+
ら
|
925 |
+
り
|
926 |
+
る
|
927 |
+
れ
|
928 |
+
ろ
|
929 |
+
ゎ
|
930 |
+
わ
|
931 |
+
ゐ
|
932 |
+
ゑ
|
933 |
+
を
|
934 |
+
ん
|
935 |
+
゙
|
936 |
+
゚
|
937 |
+
ゝ
|
938 |
+
ゞ
|
939 |
+
゠
|
940 |
+
ァ
|
941 |
+
ア
|
942 |
+
ィ
|
943 |
+
イ
|
944 |
+
ゥ
|
945 |
+
ウ
|
946 |
+
ェ
|
947 |
+
エ
|
948 |
+
ォ
|
949 |
+
オ
|
950 |
+
カ
|
951 |
+
ガ
|
952 |
+
キ
|
953 |
+
ギ
|
954 |
+
ク
|
955 |
+
グ
|
956 |
+
ケ
|
957 |
+
ゲ
|
958 |
+
コ
|
959 |
+
ゴ
|
960 |
+
サ
|
961 |
+
ザ
|
962 |
+
シ
|
963 |
+
ジ
|
964 |
+
ス
|
965 |
+
ズ
|
966 |
+
セ
|
967 |
+
ゼ
|
968 |
+
ソ
|
969 |
+
ゾ
|
970 |
+
タ
|
971 |
+
ダ
|
972 |
+
チ
|
973 |
+
ヂ
|
974 |
+
ッ
|
975 |
+
ツ
|
976 |
+
ヅ
|
977 |
+
テ
|
978 |
+
デ
|
979 |
+
ト
|
980 |
+
ド
|
981 |
+
ナ
|
982 |
+
ニ
|
983 |
+
ヌ
|
984 |
+
ネ
|
985 |
+
ノ
|
986 |
+
ハ
|
987 |
+
バ
|
988 |
+
パ
|
989 |
+
ヒ
|
990 |
+
ビ
|
991 |
+
ピ
|
992 |
+
フ
|
993 |
+
ブ
|
994 |
+
プ
|
995 |
+
ヘ
|
996 |
+
ベ
|
997 |
+
ペ
|
998 |
+
ホ
|
999 |
+
ボ
|
1000 |
+
ポ
|
1001 |
+
マ
|
1002 |
+
ミ
|
1003 |
+
ム
|
1004 |
+
メ
|
1005 |
+
モ
|
1006 |
+
ャ
|
1007 |
+
ヤ
|
1008 |
+
ュ
|
1009 |
+
ユ
|
1010 |
+
ョ
|
1011 |
+
ヨ
|
1012 |
+
ラ
|
1013 |
+
リ
|
1014 |
+
ル
|
1015 |
+
レ
|
1016 |
+
ロ
|
1017 |
+
ヮ
|
1018 |
+
ワ
|
1019 |
+
ヰ
|
1020 |
+
ヱ
|
1021 |
+
ヲ
|
1022 |
+
ン
|
1023 |
+
ヴ
|
1024 |
+
ヵ
|
1025 |
+
ヶ
|
1026 |
+
・
|
1027 |
+
ー
|
1028 |
+
㆑
|
1029 |
+
ㇱ
|
1030 |
+
ㇷ
|
1031 |
+
ㇼ
|
1032 |
+
一
|
1033 |
+
丁
|
1034 |
+
七
|
1035 |
+
万
|
1036 |
+
丈
|
1037 |
+
三
|
1038 |
+
上
|
1039 |
+
下
|
1040 |
+
不
|
1041 |
+
与
|
1042 |
+
丑
|
1043 |
+
且
|
1044 |
+
丕
|
1045 |
+
世
|
1046 |
+
丘
|
1047 |
+
丙
|
1048 |
+
东
|
1049 |
+
丞
|
1050 |
+
両
|
1051 |
+
並
|
1052 |
+
个
|
1053 |
+
中
|
1054 |
+
串
|
1055 |
+
丸
|
1056 |
+
丹
|
1057 |
+
主
|
1058 |
+
丼
|
1059 |
+
乂
|
1060 |
+
乃
|
1061 |
+
久
|
1062 |
+
么
|
1063 |
+
之
|
1064 |
+
乍
|
1065 |
+
乎
|
1066 |
+
乏
|
1067 |
+
乐
|
1068 |
+
乖
|
1069 |
+
乗
|
1070 |
+
乘
|
1071 |
+
乙
|
1072 |
+
九
|
1073 |
+
乞
|
1074 |
+
也
|
1075 |
+
乭
|
1076 |
+
乱
|
1077 |
+
乳
|
1078 |
+
乾
|
1079 |
+
亀
|
1080 |
+
了
|
1081 |
+
予
|
1082 |
+
争
|
1083 |
+
事
|
1084 |
+
二
|
1085 |
+
于
|
1086 |
+
云
|
1087 |
+
互
|
1088 |
+
五
|
1089 |
+
井
|
1090 |
+
亘
|
1091 |
+
亙
|
1092 |
+
些
|
1093 |
+
亜
|
1094 |
+
亞
|
1095 |
+
亡
|
1096 |
+
亢
|
1097 |
+
交
|
1098 |
+
亥
|
1099 |
+
亦
|
1100 |
+
亨
|
1101 |
+
享
|
1102 |
+
京
|
1103 |
+
亭
|
1104 |
+
亮
|
1105 |
+
人
|
1106 |
+
什
|
1107 |
+
仁
|
1108 |
+
仄
|
1109 |
+
仇
|
1110 |
+
今
|
1111 |
+
介
|
1112 |
+
仍
|
1113 |
+
仏
|
1114 |
+
仔
|
1115 |
+
仕
|
1116 |
+
他
|
1117 |
+
仗
|
1118 |
+
付
|
1119 |
+
仙
|
1120 |
+
代
|
1121 |
+
令
|
1122 |
+
以
|
1123 |
+
仮
|
1124 |
+
仰
|
1125 |
+
仲
|
1126 |
+
件
|
1127 |
+
价
|
1128 |
+
任
|
1129 |
+
份
|
1130 |
+
企
|
1131 |
+
伊
|
1132 |
+
伍
|
1133 |
+
伎
|
1134 |
+
伏
|
1135 |
+
伐
|
1136 |
+
休
|
1137 |
+
会
|
1138 |
+
伝
|
1139 |
+
伯
|
1140 |
+
伴
|
1141 |
+
伶
|
1142 |
+
伸
|
1143 |
+
伺
|
1144 |
+
似
|
1145 |
+
伽
|
1146 |
+
佃
|
1147 |
+
但
|
1148 |
+
佇
|
1149 |
+
位
|
1150 |
+
低
|
1151 |
+
住
|
1152 |
+
佐
|
1153 |
+
佑
|
1154 |
+
体
|
1155 |
+
何
|
1156 |
+
佗
|
1157 |
+
余
|
1158 |
+
佚
|
1159 |
+
佛
|
1160 |
+
作
|
1161 |
+
佞
|
1162 |
+
佟
|
1163 |
+
你
|
1164 |
+
佩
|
1165 |
+
佬
|
1166 |
+
佰
|
1167 |
+
佳
|
1168 |
+
併
|
1169 |
+
佼
|
1170 |
+
使
|
1171 |
+
侂
|
1172 |
+
侃
|
1173 |
+
來
|
1174 |
+
侈
|
1175 |
+
例
|
1176 |
+
侍
|
1177 |
+
侏
|
1178 |
+
侑
|
1179 |
+
侗
|
1180 |
+
侘
|
1181 |
+
供
|
1182 |
+
依
|
1183 |
+
侠
|
1184 |
+
価
|
1185 |
+
侭
|
1186 |
+
侮
|
1187 |
+
侯
|
1188 |
+
侵
|
1189 |
+
侶
|
1190 |
+
便
|
1191 |
+
俀
|
1192 |
+
係
|
1193 |
+
促
|
1194 |
+
俄
|
1195 |
+
俊
|
1196 |
+
俎
|
1197 |
+
俑
|
1198 |
+
俗
|
1199 |
+
俘
|
1200 |
+
俚
|
1201 |
+
保
|
1202 |
+
俟
|
1203 |
+
俠
|
1204 |
+
信
|
1205 |
+
俣
|
1206 |
+
修
|
1207 |
+
俯
|
1208 |
+
俱
|
1209 |
+
俳
|
1210 |
+
俵
|
1211 |
+
俶
|
1212 |
+
俸
|
1213 |
+
俺
|
1214 |
+
倅
|
1215 |
+
倉
|
1216 |
+
個
|
1217 |
+
倍
|
1218 |
+
們
|
1219 |
+
倒
|
1220 |
+
倖
|
1221 |
+
候
|
1222 |
+
倚
|
1223 |
+
借
|
1224 |
+
倡
|
1225 |
+
倣
|
1226 |
+
値
|
1227 |
+
倦
|
1228 |
+
倧
|
1229 |
+
倩
|
1230 |
+
倪
|
1231 |
+
倫
|
1232 |
+
倭
|
1233 |
+
倶
|
1234 |
+
倹
|
1235 |
+
偃
|
1236 |
+
假
|
1237 |
+
偈
|
1238 |
+
偉
|
1239 |
+
偏
|
1240 |
+
偕
|
1241 |
+
做
|
1242 |
+
停
|
1243 |
+
健
|
1244 |
+
偲
|
1245 |
+
側
|
1246 |
+
偵
|
1247 |
+
偶
|
1248 |
+
偽
|
1249 |
+
傀
|
1250 |
+
傅
|
1251 |
+
傍
|
1252 |
+
傑
|
1253 |
+
傕
|
1254 |
+
傘
|
1255 |
+
備
|
1256 |
+
催
|
1257 |
+
傭
|
1258 |
+
傲
|
1259 |
+
傳
|
1260 |
+
債
|
1261 |
+
傷
|
1262 |
+
傾
|
1263 |
+
僅
|
1264 |
+
僉
|
1265 |
+
僊
|
1266 |
+
働
|
1267 |
+
像
|
1268 |
+
僑
|
1269 |
+
僕
|
1270 |
+
僖
|
1271 |
+
僚
|
1272 |
+
僥
|
1273 |
+
僧
|
1274 |
+
僭
|
1275 |
+
僻
|
1276 |
+
儀
|
1277 |
+
儁
|
1278 |
+
儂
|
1279 |
+
億
|
1280 |
+
儋
|
1281 |
+
儒
|
1282 |
+
儔
|
1283 |
+
儘
|
1284 |
+
儚
|
1285 |
+
償
|
1286 |
+
儡
|
1287 |
+
優
|
1288 |
+
儲
|
1289 |
+
儺
|
1290 |
+
儼
|
1291 |
+
兀
|
1292 |
+
允
|
1293 |
+
元
|
1294 |
+
兄
|
1295 |
+
充
|
1296 |
+
兆
|
1297 |
+
兇
|
1298 |
+
先
|
1299 |
+
光
|
1300 |
+
克
|
1301 |
+
兌
|
1302 |
+
免
|
1303 |
+
兎
|
1304 |
+
児
|
1305 |
+
兒
|
1306 |
+
兗
|
1307 |
+
党
|
1308 |
+
兜
|
1309 |
+
入
|
1310 |
+
內
|
1311 |
+
全
|
1312 |
+
兩
|
1313 |
+
兪
|
1314 |
+
八
|
1315 |
+
公
|
1316 |
+
六
|
1317 |
+
兮
|
1318 |
+
共
|
1319 |
+
兴
|
1320 |
+
兵
|
1321 |
+
其
|
1322 |
+
具
|
1323 |
+
典
|
1324 |
+
兼
|
1325 |
+
冀
|
1326 |
+
内
|
1327 |
+
円
|
1328 |
+
冉
|
1329 |
+
冊
|
1330 |
+
册
|
1331 |
+
再
|
1332 |
+
冏
|
1333 |
+
冑
|
1334 |
+
冒
|
1335 |
+
冕
|
1336 |
+
冗
|
1337 |
+
写
|
1338 |
+
军
|
1339 |
+
冠
|
1340 |
+
冤
|
1341 |
+
冥
|
1342 |
+
冨
|
1343 |
+
冪
|
1344 |
+
冬
|
1345 |
+
冰
|
1346 |
+
冲
|
1347 |
+
决
|
1348 |
+
冴
|
1349 |
+
冶
|
1350 |
+
冷
|
1351 |
+
冼
|
1352 |
+
凄
|
1353 |
+
准
|
1354 |
+
凉
|
1355 |
+
凋
|
1356 |
+
凌
|
1357 |
+
凍
|
1358 |
+
凛
|
1359 |
+
凜
|
1360 |
+
凝
|
1361 |
+
几
|
1362 |
+
凡
|
1363 |
+
処
|
1364 |
+
凧
|
1365 |
+
凪
|
1366 |
+
凰
|
1367 |
+
凱
|
1368 |
+
凶
|
1369 |
+
凸
|
1370 |
+
凹
|
1371 |
+
出
|
1372 |
+
函
|
1373 |
+
刀
|
1374 |
+
刁
|
1375 |
+
刃
|
1376 |
+
刄
|
1377 |
+
分
|
1378 |
+
切
|
1379 |
+
刈
|
1380 |
+
刊
|
1381 |
+
刎
|
1382 |
+
刑
|
1383 |
+
列
|
1384 |
+
初
|
1385 |
+
判
|
1386 |
+
別
|
1387 |
+
利
|
1388 |
+
刪
|
1389 |
+
到
|
1390 |
+
刳
|
1391 |
+
制
|
1392 |
+
刷
|
1393 |
+
券
|
1394 |
+
刹
|
1395 |
+
刺
|
1396 |
+
刻
|
1397 |
+
剃
|
1398 |
+
剄
|
1399 |
+
則
|
1400 |
+
削
|
1401 |
+
剋
|
1402 |
+
剌
|
1403 |
+
前
|
1404 |
+
剖
|
1405 |
+
剛
|
1406 |
+
剝
|
1407 |
+
剣
|
1408 |
+
剤
|
1409 |
+
剥
|
1410 |
+
剪
|
1411 |
+
副
|
1412 |
+
剰
|
1413 |
+
剱
|
1414 |
+
割
|
1415 |
+
創
|
1416 |
+
剽
|
1417 |
+
劃
|
1418 |
+
劇
|
1419 |
+
劈
|
1420 |
+
劉
|
1421 |
+
劍
|
1422 |
+
劔
|
1423 |
+
力
|
1424 |
+
功
|
1425 |
+
加
|
1426 |
+
劣
|
1427 |
+
动
|
1428 |
+
助
|
1429 |
+
努
|
1430 |
+
劫
|
1431 |
+
劭
|
1432 |
+
励
|
1433 |
+
労
|
1434 |
+
効
|
1435 |
+
劾
|
1436 |
+
勁
|
1437 |
+
勃
|
1438 |
+
勅
|
1439 |
+
勇
|
1440 |
+
勉
|
1441 |
+
勒
|
1442 |
+
動
|
1443 |
+
勗
|
1444 |
+
勘
|
1445 |
+
務
|
1446 |
+
勛
|
1447 |
+
勝
|
1448 |
+
募
|
1449 |
+
勢
|
1450 |
+
勣
|
1451 |
+
勤
|
1452 |
+
勧
|
1453 |
+
勲
|
1454 |
+
勳
|
1455 |
+
勺
|
1456 |
+
勾
|
1457 |
+
勿
|
1458 |
+
匁
|
1459 |
+
匂
|
1460 |
+
包
|
1461 |
+
匈
|
1462 |
+
匍
|
1463 |
+
匐
|
1464 |
+
匕
|
1465 |
+
化
|
1466 |
+
北
|
1467 |
+
匙
|
1468 |
+
匝
|
1469 |
+
匠
|
1470 |
+
匡
|
1471 |
+
匣
|
1472 |
+
匪
|
1473 |
+
匯
|
1474 |
+
匱
|
1475 |
+
匹
|
1476 |
+
区
|
1477 |
+
医
|
1478 |
+
匿
|
1479 |
+
區
|
1480 |
+
十
|
1481 |
+
千
|
1482 |
+
升
|
1483 |
+
午
|
1484 |
+
卉
|
1485 |
+
半
|
1486 |
+
卍
|
1487 |
+
华
|
1488 |
+
卑
|
1489 |
+
卒
|
1490 |
+
卓
|
1491 |
+
協
|
1492 |
+
南
|
1493 |
+
単
|
1494 |
+
博
|
1495 |
+
卜
|
1496 |
+
卞
|
1497 |
+
占
|
1498 |
+
卡
|
1499 |
+
卦
|
1500 |
+
卬
|
1501 |
+
卯
|
1502 |
+
印
|
1503 |
+
危
|
1504 |
+
即
|
1505 |
+
却
|
1506 |
+
卵
|
1507 |
+
卷
|
1508 |
+
卸
|
1509 |
+
卿
|
1510 |
+
厄
|
1511 |
+
厘
|
1512 |
+
厙
|
1513 |
+
厚
|
1514 |
+
厝
|
1515 |
+
原
|
1516 |
+
厠
|
1517 |
+
厥
|
1518 |
+
厦
|
1519 |
+
厨
|
1520 |
+
厩
|
1521 |
+
厭
|
1522 |
+
厲
|
1523 |
+
厳
|
1524 |
+
去
|
1525 |
+
参
|
1526 |
+
參
|
1527 |
+
又
|
1528 |
+
叉
|
1529 |
+
及
|
1530 |
+
友
|
1531 |
+
双
|
1532 |
+
反
|
1533 |
+
収
|
1534 |
+
叔
|
1535 |
+
取
|
1536 |
+
受
|
1537 |
+
叙
|
1538 |
+
叛
|
1539 |
+
叟
|
1540 |
+
叡
|
1541 |
+
叢
|
1542 |
+
口
|
1543 |
+
古
|
1544 |
+
句
|
1545 |
+
叩
|
1546 |
+
只
|
1547 |
+
叫
|
1548 |
+
召
|
1549 |
+
叭
|
1550 |
+
可
|
1551 |
+
台
|
1552 |
+
叱
|
1553 |
+
史
|
1554 |
+
右
|
1555 |
+
叶
|
1556 |
+
号
|
1557 |
+
司
|
1558 |
+
吃
|
1559 |
+
各
|
1560 |
+
合
|
1561 |
+
吉
|
1562 |
+
吊
|
1563 |
+
吋
|
1564 |
+
同
|
1565 |
+
名
|
1566 |
+
后
|
1567 |
+
吏
|
1568 |
+
吐
|
1569 |
+
向
|
1570 |
+
吒
|
1571 |
+
君
|
1572 |
+
吝
|
1573 |
+
吟
|
1574 |
+
吠
|
1575 |
+
否
|
1576 |
+
含
|
1577 |
+
吳
|
1578 |
+
吶
|
1579 |
+
吸
|
1580 |
+
吹
|
1581 |
+
吻
|
1582 |
+
吼
|
1583 |
+
吽
|
1584 |
+
吾
|
1585 |
+
呀
|
1586 |
+
呂
|
1587 |
+
呆
|
1588 |
+
呈
|
1589 |
+
呉
|
1590 |
+
告
|
1591 |
+
呑
|
1592 |
+
呟
|
1593 |
+
周
|
1594 |
+
呪
|
1595 |
+
呰
|
1596 |
+
味
|
1597 |
+
呵
|
1598 |
+
呻
|
1599 |
+
呼
|
1600 |
+
命
|
1601 |
+
咀
|
1602 |
+
咄
|
1603 |
+
咆
|
1604 |
+
咋
|
1605 |
+
和
|
1606 |
+
咎
|
1607 |
+
咒
|
1608 |
+
咢
|
1609 |
+
咤
|
1610 |
+
咥
|
1611 |
+
咨
|
1612 |
+
咩
|
1613 |
+
咫
|
1614 |
+
咬
|
1615 |
+
咲
|
1616 |
+
咳
|
1617 |
+
咸
|
1618 |
+
咽
|
1619 |
+
哀
|
1620 |
+
品
|
1621 |
+
哈
|
1622 |
+
哉
|
1623 |
+
員
|
1624 |
+
哥
|
1625 |
+
哨
|
1626 |
+
哩
|
1627 |
+
哭
|
1628 |
+
哮
|
1629 |
+
哲
|
1630 |
+
哺
|
1631 |
+
唄
|
1632 |
+
唆
|
1633 |
+
唇
|
1634 |
+
唐
|
1635 |
+
唖
|
1636 |
+
唯
|
1637 |
+
唱
|
1638 |
+
唸
|
1639 |
+
唹
|
1640 |
+
唾
|
1641 |
+
啄
|
1642 |
+
商
|
1643 |
+
問
|
1644 |
+
啓
|
1645 |
+
啖
|
1646 |
+
啜
|
1647 |
+
啤
|
1648 |
+
啦
|
1649 |
+
啼
|
1650 |
+
喀
|
1651 |
+
善
|
1652 |
+
喆
|
1653 |
+
喇
|
1654 |
+
喉
|
1655 |
+
喊
|
1656 |
+
喋
|
1657 |
+
喘
|
1658 |
+
喙
|
1659 |
+
喚
|
1660 |
+
喜
|
1661 |
+
喝
|
1662 |
+
喧
|
1663 |
+
喩
|
1664 |
+
喪
|
1665 |
+
喫
|
1666 |
+
喬
|
1667 |
+
喰
|
1668 |
+
営
|
1669 |
+
嗄
|
1670 |
+
嗅
|
1671 |
+
嗇
|
1672 |
+
嗚
|
1673 |
+
嗜
|
1674 |
+
嗟
|
1675 |
+
嗣
|
1676 |
+
嗽
|
1677 |
+
嘆
|
1678 |
+
嘉
|
1679 |
+
嘎
|
1680 |
+
嘔
|
1681 |
+
嘗
|
1682 |
+
嘘
|
1683 |
+
嘩
|
1684 |
+
嘯
|
1685 |
+
嘱
|
1686 |
+
嘲
|
1687 |
+
嘴
|
1688 |
+
噂
|
1689 |
+
噌
|
1690 |
+
噛
|
1691 |
+
器
|
1692 |
+
噲
|
1693 |
+
噴
|
1694 |
+
噺
|
1695 |
+
嚆
|
1696 |
+
嚇
|
1697 |
+
嚢
|
1698 |
+
嚥
|
1699 |
+
嚮
|
1700 |
+
嚴
|
1701 |
+
嚶
|
1702 |
+
嚼
|
1703 |
+
囁
|
1704 |
+
囂
|
1705 |
+
囃
|
1706 |
+
囎
|
1707 |
+
囚
|
1708 |
+
四
|
1709 |
+
回
|
1710 |
+
因
|
1711 |
+
团
|
1712 |
+
団
|
1713 |
+
园
|
1714 |
+
囮
|
1715 |
+
困
|
1716 |
+
囲
|
1717 |
+
図
|
1718 |
+
围
|
1719 |
+
固
|
1720 |
+
国
|
1721 |
+
囿
|
1722 |
+
圀
|
1723 |
+
圃
|
1724 |
+
圉
|
1725 |
+
國
|
1726 |
+
圏
|
1727 |
+
園
|
1728 |
+
圓
|
1729 |
+
圖
|
1730 |
+
團
|
1731 |
+
土
|
1732 |
+
圧
|
1733 |
+
在
|
1734 |
+
圩
|
1735 |
+
圭
|
1736 |
+
地
|
1737 |
+
圳
|
1738 |
+
圻
|
1739 |
+
址
|
1740 |
+
坂
|
1741 |
+
均
|
1742 |
+
坊
|
1743 |
+
坎
|
1744 |
+
坏
|
1745 |
+
坐
|
1746 |
+
坑
|
1747 |
+
坡
|
1748 |
+
坤
|
1749 |
+
坦
|
1750 |
+
坪
|
1751 |
+
坳
|
1752 |
+
垂
|
1753 |
+
型
|
1754 |
+
垓
|
1755 |
+
垠
|
1756 |
+
垢
|
1757 |
+
垣
|
1758 |
+
埃
|
1759 |
+
埈
|
1760 |
+
埋
|
1761 |
+
城
|
1762 |
+
埒
|
1763 |
+
埔
|
1764 |
+
埕
|
1765 |
+
埜
|
1766 |
+
域
|
1767 |
+
埠
|
1768 |
+
埣
|
1769 |
+
埴
|
1770 |
+
埵
|
1771 |
+
執
|
1772 |
+
培
|
1773 |
+
基
|
1774 |
+
埼
|
1775 |
+
堀
|
1776 |
+
堂
|
1777 |
+
堅
|
1778 |
+
堆
|
1779 |
+
堕
|
1780 |
+
堡
|
1781 |
+
堤
|
1782 |
+
堪
|
1783 |
+
堯
|
1784 |
+
堰
|
1785 |
+
報
|
1786 |
+
場
|
1787 |
+
堵
|
1788 |
+
堺
|
1789 |
+
塀
|
1790 |
+
塁
|
1791 |
+
塊
|
1792 |
+
塑
|
1793 |
+
塔
|
1794 |
+
塗
|
1795 |
+
塘
|
1796 |
+
塙
|
1797 |
+
塚
|
1798 |
+
塞
|
1799 |
+
塢
|
1800 |
+
塩
|
1801 |
+
填
|
1802 |
+
塵
|
1803 |
+
塹
|
1804 |
+
塾
|
1805 |
+
境
|
1806 |
+
墅
|
1807 |
+
墉
|
1808 |
+
墓
|
1809 |
+
増
|
1810 |
+
墜
|
1811 |
+
墟
|
1812 |
+
墨
|
1813 |
+
墩
|
1814 |
+
墳
|
1815 |
+
墺
|
1816 |
+
墻
|
1817 |
+
墾
|
1818 |
+
壁
|
1819 |
+
壇
|
1820 |
+
壊
|
1821 |
+
壌
|
1822 |
+
壕
|
1823 |
+
壙
|
1824 |
+
壜
|
1825 |
+
壢
|
1826 |
+
壩
|
1827 |
+
士
|
1828 |
+
壬
|
1829 |
+
壮
|
1830 |
+
声
|
1831 |
+
壱
|
1832 |
+
売
|
1833 |
+
壷
|
1834 |
+
壹
|
1835 |
+
壺
|
1836 |
+
壽
|
1837 |
+
変
|
1838 |
+
夏
|
1839 |
+
夔
|
1840 |
+
夕
|
1841 |
+
外
|
1842 |
+
夙
|
1843 |
+
多
|
1844 |
+
夛
|
1845 |
+
夜
|
1846 |
+
夢
|
1847 |
+
大
|
1848 |
+
天
|
1849 |
+
太
|
1850 |
+
夫
|
1851 |
+
夭
|
1852 |
+
央
|
1853 |
+
失
|
1854 |
+
夷
|
1855 |
+
夾
|
1856 |
+
奄
|
1857 |
+
奇
|
1858 |
+
奈
|
1859 |
+
奉
|
1860 |
+
奎
|
1861 |
+
奏
|
1862 |
+
奐
|
1863 |
+
契
|
1864 |
+
奔
|
1865 |
+
奕
|
1866 |
+
套
|
1867 |
+
奘
|
1868 |
+
奚
|
1869 |
+
奠
|
1870 |
+
奢
|
1871 |
+
奥
|
1872 |
+
奧
|
1873 |
+
奨
|
1874 |
+
奪
|
1875 |
+
奭
|
1876 |
+
奮
|
1877 |
+
女
|
1878 |
+
奴
|
1879 |
+
奸
|
1880 |
+
好
|
1881 |
+
如
|
1882 |
+
妃
|
1883 |
+
妄
|
1884 |
+
妊
|
1885 |
+
妍
|
1886 |
+
妓
|
1887 |
+
妖
|
1888 |
+
妙
|
1889 |
+
妤
|
1890 |
+
妥
|
1891 |
+
妨
|
1892 |
+
妬
|
1893 |
+
妲
|
1894 |
+
妹
|
1895 |
+
妻
|
1896 |
+
妾
|
1897 |
+
姆
|
1898 |
+
姉
|
1899 |
+
始
|
1900 |
+
姐
|
1901 |
+
姑
|
1902 |
+
姓
|
1903 |
+
委
|
1904 |
+
姚
|
1905 |
+
姜
|
1906 |
+
姥
|
1907 |
+
姦
|
1908 |
+
姨
|
1909 |
+
姪
|
1910 |
+
姫
|
1911 |
+
姶
|
1912 |
+
姻
|
1913 |
+
姿
|
1914 |
+
威
|
1915 |
+
娃
|
1916 |
+
娑
|
1917 |
+
娘
|
1918 |
+
娜
|
1919 |
+
娟
|
1920 |
+
娠
|
1921 |
+
娥
|
1922 |
+
娩
|
1923 |
+
娯
|
1924 |
+
娶
|
1925 |
+
娼
|
1926 |
+
婁
|
1927 |
+
婆
|
1928 |
+
婉
|
1929 |
+
婕
|
1930 |
+
婚
|
1931 |
+
婢
|
1932 |
+
婦
|
1933 |
+
婷
|
1934 |
+
婿
|
1935 |
+
媒
|
1936 |
+
媚
|
1937 |
+
媛
|
1938 |
+
媯
|
1939 |
+
媽
|
1940 |
+
嫁
|
1941 |
+
嫉
|
1942 |
+
嫌
|
1943 |
+
嫡
|
1944 |
+
嫦
|
1945 |
+
嫩
|
1946 |
+
嬉
|
1947 |
+
嬌
|
1948 |
+
嬛
|
1949 |
+
嬢
|
1950 |
+
嬪
|
1951 |
+
嬬
|
1952 |
+
嬰
|
1953 |
+
嬲
|
1954 |
+
嬴
|
1955 |
+
嬶
|
1956 |
+
孁
|
1957 |
+
子
|
1958 |
+
孔
|
1959 |
+
孕
|
1960 |
+
字
|
1961 |
+
存
|
1962 |
+
孚
|
1963 |
+
孜
|
1964 |
+
孝
|
1965 |
+
孟
|
1966 |
+
季
|
1967 |
+
孤
|
1968 |
+
学
|
1969 |
+
孩
|
1970 |
+
孫
|
1971 |
+
孵
|
1972 |
+
學
|
1973 |
+
孺
|
1974 |
+
宅
|
1975 |
+
宇
|
1976 |
+
守
|
1977 |
+
安
|
1978 |
+
宋
|
1979 |
+
完
|
1980 |
+
宍
|
1981 |
+
宏
|
1982 |
+
宕
|
1983 |
+
宗
|
1984 |
+
官
|
1985 |
+
宙
|
1986 |
+
定
|
1987 |
+
宛
|
1988 |
+
宜
|
1989 |
+
宝
|
1990 |
+
実
|
1991 |
+
客
|
1992 |
+
宣
|
1993 |
+
室
|
1994 |
+
宥
|
1995 |
+
宦
|
1996 |
+
宮
|
1997 |
+
宰
|
1998 |
+
害
|
1999 |
+
宴
|
2000 |
+
宵
|
2001 |
+
家
|
2002 |
+
宸
|
2003 |
+
容
|
2004 |
+
宿
|
2005 |
+
寂
|
2006 |
+
寄
|
2007 |
+
寅
|
2008 |
+
密
|
2009 |
+
寇
|
2010 |
+
富
|
2011 |
+
寒
|
2012 |
+
寓
|
2013 |
+
寔
|
2014 |
+
寛
|
2015 |
+
寝
|
2016 |
+
察
|
2017 |
+
寡
|
2018 |
+
實
|
2019 |
+
寧
|
2020 |
+
寨
|
2021 |
+
審
|
2022 |
+
寫
|
2023 |
+
寬
|
2024 |
+
寮
|
2025 |
+
寳
|
2026 |
+
寵
|
2027 |
+
寶
|
2028 |
+
寸
|
2029 |
+
对
|
2030 |
+
寺
|
2031 |
+
対
|
2032 |
+
寿
|
2033 |
+
封
|
2034 |
+
専
|
2035 |
+
射
|
2036 |
+
将
|
2037 |
+
將
|
2038 |
+
專
|
2039 |
+
尉
|
2040 |
+
尊
|
2041 |
+
尋
|
2042 |
+
對
|
2043 |
+
導
|
2044 |
+
小
|
2045 |
+
少
|
2046 |
+
尓
|
2047 |
+
尖
|
2048 |
+
尚
|
2049 |
+
尤
|
2050 |
+
尭
|
2051 |
+
就
|
2052 |
+
尸
|
2053 |
+
尹
|
2054 |
+
尺
|
2055 |
+
尻
|
2056 |
+
尼
|
2057 |
+
尽
|
2058 |
+
尾
|
2059 |
+
尿
|
2060 |
+
局
|
2061 |
+
屁
|
2062 |
+
居
|
2063 |
+
屈
|
2064 |
+
届
|
2065 |
+
屋
|
2066 |
+
屍
|
2067 |
+
屎
|
2068 |
+
屏
|
2069 |
+
屑
|
2070 |
+
屓
|
2071 |
+
展
|
2072 |
+
属
|
2073 |
+
屠
|
2074 |
+
層
|
2075 |
+
履
|
2076 |
+
屬
|
2077 |
+
屯
|
2078 |
+
山
|
2079 |
+
岌
|
2080 |
+
岐
|
2081 |
+
岑
|
2082 |
+
岔
|
2083 |
+
岡
|
2084 |
+
岩
|
2085 |
+
岫
|
2086 |
+
岬
|
2087 |
+
岱
|
2088 |
+
岳
|
2089 |
+
岷
|
2090 |
+
岸
|
2091 |
+
峅
|
2092 |
+
峙
|
2093 |
+
峠
|
2094 |
+
峡
|
2095 |
+
峨
|
2096 |
+
峪
|
2097 |
+
峯
|
2098 |
+
峰
|
2099 |
+
峴
|
2100 |
+
島
|
2101 |
+
峻
|
2102 |
+
崇
|
2103 |
+
崋
|
2104 |
+
崎
|
2105 |
+
崑
|
2106 |
+
崔
|
2107 |
+
崖
|
2108 |
+
崗
|
2109 |
+
崙
|
2110 |
+
崧
|
2111 |
+
崩
|
2112 |
+
嵆
|
2113 |
+
嵊
|
2114 |
+
嵌
|
2115 |
+
嵐
|
2116 |
+
嵜
|
2117 |
+
嵩
|
2118 |
+
嵬
|
2119 |
+
嵯
|
2120 |
+
嶋
|
2121 |
+
嶌
|
2122 |
+
嶝
|
2123 |
+
嶠
|
2124 |
+
嶷
|
2125 |
+
嶺
|
2126 |
+
嶼
|
2127 |
+
嶽
|
2128 |
+
巌
|
2129 |
+
巍
|
2130 |
+
巒
|
2131 |
+
巖
|
2132 |
+
川
|
2133 |
+
州
|
2134 |
+
巡
|
2135 |
+
巣
|
2136 |
+
工
|
2137 |
+
左
|
2138 |
+
巧
|
2139 |
+
巨
|
2140 |
+
巫
|
2141 |
+
差
|
2142 |
+
己
|
2143 |
+
已
|
2144 |
+
巳
|
2145 |
+
巴
|
2146 |
+
巷
|
2147 |
+
巻
|
2148 |
+
巽
|
2149 |
+
巾
|
2150 |
+
市
|
2151 |
+
布
|
2152 |
+
帆
|
2153 |
+
希
|
2154 |
+
帖
|
2155 |
+
帙
|
2156 |
+
帚
|
2157 |
+
帛
|
2158 |
+
帝
|
2159 |
+
帥
|
2160 |
+
師
|
2161 |
+
席
|
2162 |
+
帯
|
2163 |
+
帰
|
2164 |
+
帳
|
2165 |
+
帶
|
2166 |
+
帷
|
2167 |
+
常
|
2168 |
+
帽
|
2169 |
+
幀
|
2170 |
+
幄
|
2171 |
+
幅
|
2172 |
+
幇
|
2173 |
+
幌
|
2174 |
+
幔
|
2175 |
+
幕
|
2176 |
+
幟
|
2177 |
+
幡
|
2178 |
+
幢
|
2179 |
+
幣
|
2180 |
+
干
|
2181 |
+
平
|
2182 |
+
年
|
2183 |
+
并
|
2184 |
+
幸
|
2185 |
+
幹
|
2186 |
+
幺
|
2187 |
+
幻
|
2188 |
+
幼
|
2189 |
+
幽
|
2190 |
+
幾
|
2191 |
+
广
|
2192 |
+
庁
|
2193 |
+
広
|
2194 |
+
庄
|
2195 |
+
庇
|
2196 |
+
床
|
2197 |
+
序
|
2198 |
+
底
|
2199 |
+
店
|
2200 |
+
庚
|
2201 |
+
府
|
2202 |
+
庠
|
2203 |
+
度
|
2204 |
+
座
|
2205 |
+
庫
|
2206 |
+
庭
|
2207 |
+
庵
|
2208 |
+
庶
|
2209 |
+
康
|
2210 |
+
庸
|
2211 |
+
庾
|
2212 |
+
廂
|
2213 |
+
廃
|
2214 |
+
廆
|
2215 |
+
廈
|
2216 |
+
廉
|
2217 |
+
廊
|
2218 |
+
廓
|
2219 |
+
廖
|
2220 |
+
廙
|
2221 |
+
廞
|
2222 |
+
廟
|
2223 |
+
廠
|
2224 |
+
廣
|
2225 |
+
廩
|
2226 |
+
廬
|
2227 |
+
廳
|
2228 |
+
延
|
2229 |
+
廷
|
2230 |
+
建
|
2231 |
+
廻
|
2232 |
+
廼
|
2233 |
+
廿
|
2234 |
+
弁
|
2235 |
+
弄
|
2236 |
+
弈
|
2237 |
+
弉
|
2238 |
+
弊
|
2239 |
+
弋
|
2240 |
+
弌
|
2241 |
+
式
|
2242 |
+
弐
|
2243 |
+
弑
|
2244 |
+
弓
|
2245 |
+
弔
|
2246 |
+
引
|
2247 |
+
弖
|
2248 |
+
弗
|
2249 |
+
弘
|
2250 |
+
弛
|
2251 |
+
弟
|
2252 |
+
张
|
2253 |
+
弥
|
2254 |
+
弦
|
2255 |
+
弧
|
2256 |
+
弩
|
2257 |
+
弯
|
2258 |
+
弱
|
2259 |
+
張
|
2260 |
+
強
|
2261 |
+
弼
|
2262 |
+
弾
|
2263 |
+
彅
|
2264 |
+
彊
|
2265 |
+
彌
|
2266 |
+
彎
|
2267 |
+
当
|
2268 |
+
彗
|
2269 |
+
彙
|
2270 |
+
彝
|
2271 |
+
彡
|
2272 |
+
形
|
2273 |
+
彤
|
2274 |
+
彦
|
2275 |
+
彧
|
2276 |
+
彩
|
2277 |
+
彪
|
2278 |
+
彫
|
2279 |
+
彬
|
2280 |
+
彭
|
2281 |
+
彰
|
2282 |
+
影
|
2283 |
+
彷
|
2284 |
+
役
|
2285 |
+
彼
|
2286 |
+
彿
|
2287 |
+
往
|
2288 |
+
征
|
2289 |
+
徂
|
2290 |
+
径
|
2291 |
+
待
|
2292 |
+
徊
|
2293 |
+
律
|
2294 |
+
後
|
2295 |
+
徐
|
2296 |
+
徒
|
2297 |
+
従
|
2298 |
+
得
|
2299 |
+
徘
|
2300 |
+
徙
|
2301 |
+
從
|
2302 |
+
徠
|
2303 |
+
御
|
2304 |
+
徧
|
2305 |
+
徨
|
2306 |
+
復
|
2307 |
+
循
|
2308 |
+
徭
|
2309 |
+
微
|
2310 |
+
徳
|
2311 |
+
徴
|
2312 |
+
德
|
2313 |
+
徹
|
2314 |
+
徽
|
2315 |
+
心
|
2316 |
+
必
|
2317 |
+
忌
|
2318 |
+
忍
|
2319 |
+
志
|
2320 |
+
忘
|
2321 |
+
忙
|
2322 |
+
応
|
2323 |
+
忠
|
2324 |
+
快
|
2325 |
+
忱
|
2326 |
+
念
|
2327 |
+
忻
|
2328 |
+
忽
|
2329 |
+
怒
|
2330 |
+
怖
|
2331 |
+
怜
|
2332 |
+
思
|
2333 |
+
怠
|
2334 |
+
怡
|
2335 |
+
急
|
2336 |
+
性
|
2337 |
+
怨
|
2338 |
+
怪
|
2339 |
+
怯
|
2340 |
+
恂
|
2341 |
+
恆
|
2342 |
+
恋
|
2343 |
+
恍
|
2344 |
+
恐
|
2345 |
+
恒
|
2346 |
+
恕
|
2347 |
+
恢
|
2348 |
+
恣
|
2349 |
+
恤
|
2350 |
+
恥
|
2351 |
+
恨
|
2352 |
+
恩
|
2353 |
+
恪
|
2354 |
+
恫
|
2355 |
+
恬
|
2356 |
+
恭
|
2357 |
+
息
|
2358 |
+
恰
|
2359 |
+
恵
|
2360 |
+
悉
|
2361 |
+
悌
|
2362 |
+
悍
|
2363 |
+
悔
|
2364 |
+
悛
|
2365 |
+
悝
|
2366 |
+
悟
|
2367 |
+
悠
|
2368 |
+
患
|
2369 |
+
悦
|
2370 |
+
悧
|
2371 |
+
悩
|
2372 |
+
悪
|
2373 |
+
悲
|
2374 |
+
悳
|
2375 |
+
悴
|
2376 |
+
悶
|
2377 |
+
悸
|
2378 |
+
悼
|
2379 |
+
情
|
2380 |
+
惇
|
2381 |
+
惑
|
2382 |
+
惚
|
2383 |
+
惜
|
2384 |
+
惟
|
2385 |
+
惠
|
2386 |
+
惡
|
2387 |
+
惣
|
2388 |
+
惧
|
2389 |
+
惨
|
2390 |
+
惰
|
2391 |
+
想
|
2392 |
+
惹
|
2393 |
+
惺
|
2394 |
+
愁
|
2395 |
+
愈
|
2396 |
+
愉
|
2397 |
+
愍
|
2398 |
+
意
|
2399 |
+
愔
|
2400 |
+
愕
|
2401 |
+
愚
|
2402 |
+
愛
|
2403 |
+
感
|
2404 |
+
愴
|
2405 |
+
愷
|
2406 |
+
愼
|
2407 |
+
愾
|
2408 |
+
愿
|
2409 |
+
慄
|
2410 |
+
慇
|
2411 |
+
慈
|
2412 |
+
慊
|
2413 |
+
態
|
2414 |
+
慌
|
2415 |
+
慎
|
2416 |
+
慕
|
2417 |
+
慟
|
2418 |
+
慢
|
2419 |
+
慣
|
2420 |
+
慧
|
2421 |
+
慨
|
2422 |
+
慮
|
2423 |
+
慰
|
2424 |
+
慶
|
2425 |
+
慾
|
2426 |
+
憂
|
2427 |
+
憊
|
2428 |
+
憎
|
2429 |
+
憐
|
2430 |
+
憑
|
2431 |
+
憔
|
2432 |
+
憚
|
2433 |
+
憤
|
2434 |
+
憧
|
2435 |
+
憩
|
2436 |
+
憫
|
2437 |
+
憬
|
2438 |
+
憮
|
2439 |
+
憲
|
2440 |
+
憶
|
2441 |
+
憺
|
2442 |
+
憾
|
2443 |
+
懃
|
2444 |
+
懇
|
2445 |
+
應
|
2446 |
+
懊
|
2447 |
+
懋
|
2448 |
+
懐
|
2449 |
+
懣
|
2450 |
+
懲
|
2451 |
+
懸
|
2452 |
+
懺
|
2453 |
+
懼
|
2454 |
+
懿
|
2455 |
+
戀
|
2456 |
+
戈
|
2457 |
+
戊
|
2458 |
+
戌
|
2459 |
+
戍
|
2460 |
+
戎
|
2461 |
+
成
|
2462 |
+
我
|
2463 |
+
戒
|
2464 |
+
戔
|
2465 |
+
或
|
2466 |
+
战
|
2467 |
+
戚
|
2468 |
+
戛
|
2469 |
+
戟
|
2470 |
+
戡
|
2471 |
+
戦
|
2472 |
+
戩
|
2473 |
+
截
|
2474 |
+
戮
|
2475 |
+
戯
|
2476 |
+
戰
|
2477 |
+
戴
|
2478 |
+
戸
|
2479 |
+
戻
|
2480 |
+
房
|
2481 |
+
所
|
2482 |
+
扁
|
2483 |
+
扇
|
2484 |
+
扈
|
2485 |
+
扉
|
2486 |
+
手
|
2487 |
+
才
|
2488 |
+
扎
|
2489 |
+
打
|
2490 |
+
払
|
2491 |
+
托
|
2492 |
+
扮
|
2493 |
+
扱
|
2494 |
+
扶
|
2495 |
+
批
|
2496 |
+
扼
|
2497 |
+
承
|
2498 |
+
技
|
2499 |
+
抄
|
2500 |
+
抉
|
2501 |
+
把
|
2502 |
+
抑
|
2503 |
+
抒
|
2504 |
+
投
|
2505 |
+
抗
|
2506 |
+
折
|
2507 |
+
抜
|
2508 |
+
択
|
2509 |
+
披
|
2510 |
+
抱
|
2511 |
+
抵
|
2512 |
+
抹
|
2513 |
+
押
|
2514 |
+
抽
|
2515 |
+
担
|
2516 |
+
拉
|
2517 |
+
拌
|
2518 |
+
拍
|
2519 |
+
拐
|
2520 |
+
拒
|
2521 |
+
拓
|
2522 |
+
拔
|
2523 |
+
拗
|
2524 |
+
拘
|
2525 |
+
拙
|
2526 |
+
招
|
2527 |
+
拝
|
2528 |
+
拠
|
2529 |
+
拡
|
2530 |
+
括
|
2531 |
+
拭
|
2532 |
+
拮
|
2533 |
+
拯
|
2534 |
+
拱
|
2535 |
+
拳
|
2536 |
+
拵
|
2537 |
+
拶
|
2538 |
+
拷
|
2539 |
+
拼
|
2540 |
+
拾
|
2541 |
+
拿
|
2542 |
+
持
|
2543 |
+
挂
|
2544 |
+
指
|
2545 |
+
按
|
2546 |
+
挑
|
2547 |
+
挖
|
2548 |
+
挙
|
2549 |
+
挟
|
2550 |
+
挨
|
2551 |
+
挫
|
2552 |
+
振
|
2553 |
+
挹
|
2554 |
+
挺
|
2555 |
+
挽
|
2556 |
+
挾
|
2557 |
+
挿
|
2558 |
+
捉
|
2559 |
+
捌
|
2560 |
+
捏
|
2561 |
+
捐
|
2562 |
+
捕
|
2563 |
+
捗
|
2564 |
+
捜
|
2565 |
+
捧
|
2566 |
+
捨
|
2567 |
+
捩
|
2568 |
+
据
|
2569 |
+
捲
|
2570 |
+
捷
|
2571 |
+
捺
|
2572 |
+
捻
|
2573 |
+
掃
|
2574 |
+
授
|
2575 |
+
掌
|
2576 |
+
掏
|
2577 |
+
排
|
2578 |
+
掖
|
2579 |
+
掘
|
2580 |
+
掛
|
2581 |
+
掟
|
2582 |
+
掠
|
2583 |
+
採
|
2584 |
+
探
|
2585 |
+
掣
|
2586 |
+
接
|
2587 |
+
控
|
2588 |
+
推
|
2589 |
+
掩
|
2590 |
+
措
|
2591 |
+
掬
|
2592 |
+
掲
|
2593 |
+
掴
|
2594 |
+
掻
|
2595 |
+
掾
|
2596 |
+
揃
|
2597 |
+
揄
|
2598 |
+
揆
|
2599 |
+
揉
|
2600 |
+
描
|
2601 |
+
提
|
2602 |
+
揖
|
2603 |
+
揚
|
2604 |
+
換
|
2605 |
+
握
|
2606 |
+
揮
|
2607 |
+
援
|
2608 |
+
揶
|
2609 |
+
揺
|
2610 |
+
損
|
2611 |
+
搗
|
2612 |
+
搦
|
2613 |
+
搬
|
2614 |
+
搭
|
2615 |
+
携
|
2616 |
+
搾
|
2617 |
+
摂
|
2618 |
+
摔
|
2619 |
+
摘
|
2620 |
+
摠
|
2621 |
+
摩
|
2622 |
+
摯
|
2623 |
+
摸
|
2624 |
+
摺
|
2625 |
+
撃
|
2626 |
+
撈
|
2627 |
+
撒
|
2628 |
+
撓
|
2629 |
+
撚
|
2630 |
+
撞
|
2631 |
+
撤
|
2632 |
+
撥
|
2633 |
+
撫
|
2634 |
+
播
|
2635 |
+
撮
|
2636 |
+
撰
|
2637 |
+
撲
|
2638 |
+
撹
|
2639 |
+
撻
|
2640 |
+
撼
|
2641 |
+
擁
|
2642 |
+
擂
|
2643 |
+
擅
|
2644 |
+
操
|
2645 |
+
擢
|
2646 |
+
擦
|
2647 |
+
擬
|
2648 |
+
擱
|
2649 |
+
擲
|
2650 |
+
擾
|
2651 |
+
攀
|
2652 |
+
攘
|
2653 |
+
攝
|
2654 |
+
攣
|
2655 |
+
攪
|
2656 |
+
攫
|
2657 |
+
攬
|
2658 |
+
支
|
2659 |
+
收
|
2660 |
+
攷
|
2661 |
+
攸
|
2662 |
+
改
|
2663 |
+
攻
|
2664 |
+
放
|
2665 |
+
政
|
2666 |
+
故
|
2667 |
+
效
|
2668 |
+
敎
|
2669 |
+
敏
|
2670 |
+
救
|
2671 |
+
敖
|
2672 |
+
敗
|
2673 |
+
教
|
2674 |
+
敞
|
2675 |
+
敢
|
2676 |
+
散
|
2677 |
+
敦
|
2678 |
+
敬
|
2679 |
+
数
|
2680 |
+
敲
|
2681 |
+
整
|
2682 |
+
敵
|
2683 |
+
敷
|
2684 |
+
數
|
2685 |
+
斂
|
2686 |
+
斃
|
2687 |
+
文
|
2688 |
+
斉
|
2689 |
+
斌
|
2690 |
+
斎
|
2691 |
+
斐
|
2692 |
+
斑
|
2693 |
+
斗
|
2694 |
+
料
|
2695 |
+
斛
|
2696 |
+
斜
|
2697 |
+
斟
|
2698 |
+
斡
|
2699 |
+
斤
|
2700 |
+
斥
|
2701 |
+
斧
|
2702 |
+
斫
|
2703 |
+
斬
|
2704 |
+
断
|
2705 |
+
斯
|
2706 |
+
新
|
2707 |
+
方
|
2708 |
+
於
|
2709 |
+
施
|
2710 |
+
旁
|
2711 |
+
旅
|
2712 |
+
旋
|
2713 |
+
旌
|
2714 |
+
族
|
2715 |
+
旒
|
2716 |
+
旗
|
2717 |
+
旛
|
2718 |
+
无
|
2719 |
+
既
|
2720 |
+
日
|
2721 |
+
旦
|
2722 |
+
旧
|
2723 |
+
旨
|
2724 |
+
早
|
2725 |
+
旬
|
2726 |
+
旭
|
2727 |
+
旱
|
2728 |
+
旺
|
2729 |
+
旻
|
2730 |
+
昀
|
2731 |
+
昂
|
2732 |
+
昆
|
2733 |
+
昇
|
2734 |
+
昉
|
2735 |
+
昊
|
2736 |
+
昌
|
2737 |
+
明
|
2738 |
+
昏
|
2739 |
+
易
|
2740 |
+
昔
|
2741 |
+
昕
|
2742 |
+
星
|
2743 |
+
映
|
2744 |
+
春
|
2745 |
+
昧
|
2746 |
+
昨
|
2747 |
+
昭
|
2748 |
+
是
|
2749 |
+
昱
|
2750 |
+
昴
|
2751 |
+
昵
|
2752 |
+
昶
|
2753 |
+
昼
|
2754 |
+
晁
|
2755 |
+
時
|
2756 |
+
晃
|
2757 |
+
晄
|
2758 |
+
晋
|
2759 |
+
晏
|
2760 |
+
晒
|
2761 |
+
晟
|
2762 |
+
晤
|
2763 |
+
晦
|
2764 |
+
晧
|
2765 |
+
晨
|
2766 |
+
晩
|
2767 |
+
普
|
2768 |
+
景
|
2769 |
+
晰
|
2770 |
+
晴
|
2771 |
+
晶
|
2772 |
+
智
|
2773 |
+
暁
|
2774 |
+
暇
|
2775 |
+
暈
|
2776 |
+
暉
|
2777 |
+
暎
|
2778 |
+
暐
|
2779 |
+
暑
|
2780 |
+
暖
|
2781 |
+
暗
|
2782 |
+
暘
|
2783 |
+
暢
|
2784 |
+
暦
|
2785 |
+
暫
|
2786 |
+
暮
|
2787 |
+
暲
|
2788 |
+
暴
|
2789 |
+
暹
|
2790 |
+
曁
|
2791 |
+
曄
|
2792 |
+
曇
|
2793 |
+
曉
|
2794 |
+
曖
|
2795 |
+
曙
|
2796 |
+
曜
|
2797 |
+
曝
|
2798 |
+
曠
|
2799 |
+
曰
|
2800 |
+
曲
|
2801 |
+
曳
|
2802 |
+
更
|
2803 |
+
曷
|
2804 |
+
書
|
2805 |
+
曹
|
2806 |
+
曺
|
2807 |
+
曼
|
2808 |
+
曽
|
2809 |
+
曾
|
2810 |
+
替
|
2811 |
+
最
|
2812 |
+
會
|
2813 |
+
月
|
2814 |
+
有
|
2815 |
+
朋
|
2816 |
+
服
|
2817 |
+
朐
|
2818 |
+
朔
|
2819 |
+
朕
|
2820 |
+
朗
|
2821 |
+
望
|
2822 |
+
朝
|
2823 |
+
期
|
2824 |
+
朦
|
2825 |
+
朧
|
2826 |
+
木
|
2827 |
+
未
|
2828 |
+
末
|
2829 |
+
本
|
2830 |
+
札
|
2831 |
+
朮
|
2832 |
+
朱
|
2833 |
+
朴
|
2834 |
+
朶
|
2835 |
+
机
|
2836 |
+
朽
|
2837 |
+
杁
|
2838 |
+
杉
|
2839 |
+
李
|
2840 |
+
杏
|
2841 |
+
材
|
2842 |
+
村
|
2843 |
+
杓
|
2844 |
+
杖
|
2845 |
+
杙
|
2846 |
+
杜
|
2847 |
+
杞
|
2848 |
+
束
|
2849 |
+
条
|
2850 |
+
杢
|
2851 |
+
杣
|
2852 |
+
来
|
2853 |
+
杭
|
2854 |
+
杮
|
2855 |
+
杯
|
2856 |
+
杰
|
2857 |
+
東
|
2858 |
+
杲
|
2859 |
+
杳
|
2860 |
+
杵
|
2861 |
+
杷
|
2862 |
+
杼
|
2863 |
+
松
|
2864 |
+
板
|
2865 |
+
枇
|
2866 |
+
枉
|
2867 |
+
枋
|
2868 |
+
析
|
2869 |
+
枓
|
2870 |
+
枕
|
2871 |
+
林
|
2872 |
+
枚
|
2873 |
+
果
|
2874 |
+
枝
|
2875 |
+
枠
|
2876 |
+
枡
|
2877 |
+
枢
|
2878 |
+
枯
|
2879 |
+
枳
|
2880 |
+
架
|
2881 |
+
枷
|
2882 |
+
枹
|
2883 |
+
柄
|
2884 |
+
柊
|
2885 |
+
柏
|
2886 |
+
某
|
2887 |
+
柑
|
2888 |
+
染
|
2889 |
+
柔
|
2890 |
+
柘
|
2891 |
+
柚
|
2892 |
+
柞
|
2893 |
+
柩
|
2894 |
+
柯
|
2895 |
+
柱
|
2896 |
+
柳
|
2897 |
+
柴
|
2898 |
+
柵
|
2899 |
+
査
|
2900 |
+
柾
|
2901 |
+
柿
|
2902 |
+
栂
|
2903 |
+
栃
|
2904 |
+
栄
|
2905 |
+
栓
|
2906 |
+
栖
|
2907 |
+
栗
|
2908 |
+
栞
|
2909 |
+
校
|
2910 |
+
栢
|
2911 |
+
栩
|
2912 |
+
株
|
2913 |
+
栴
|
2914 |
+
核
|
2915 |
+
根
|
2916 |
+
格
|
2917 |
+
栽
|
2918 |
+
桀
|
2919 |
+
桁
|
2920 |
+
桂
|
2921 |
+
桃
|
2922 |
+
框
|
2923 |
+
案
|
2924 |
+
桐
|
2925 |
+
桑
|
2926 |
+
桓
|
2927 |
+
桔
|
2928 |
+
桙
|
2929 |
+
桜
|
2930 |
+
桝
|
2931 |
+
桟
|
2932 |
+
桧
|
2933 |
+
桴
|
2934 |
+
桶
|
2935 |
+
桿
|
2936 |
+
梁
|
2937 |
+
梃
|
2938 |
+
梅
|
2939 |
+
梓
|
2940 |
+
梔
|
2941 |
+
梗
|
2942 |
+
條
|
2943 |
+
梟
|
2944 |
+
梠
|
2945 |
+
梢
|
2946 |
+
梧
|
2947 |
+
梨
|
2948 |
+
梭
|
2949 |
+
梯
|
2950 |
+
械
|
2951 |
+
梱
|
2952 |
+
梳
|
2953 |
+
梵
|
2954 |
+
梶
|
2955 |
+
棄
|
2956 |
+
棋
|
2957 |
+
棍
|
2958 |
+
棒
|
2959 |
+
棕
|
2960 |
+
棗
|
2961 |
+
棘
|
2962 |
+
棚
|
2963 |
+
棟
|
2964 |
+
棠
|
2965 |
+
棣
|
2966 |
+
森
|
2967 |
+
棲
|
2968 |
+
棹
|
2969 |
+
棺
|
2970 |
+
椀
|
2971 |
+
椅
|
2972 |
+
椋
|
2973 |
+
植
|
2974 |
+
椎
|
2975 |
+
椏
|
2976 |
+
椒
|
2977 |
+
椙
|
2978 |
+
椚
|
2979 |
+
椛
|
2980 |
+
検
|
2981 |
+
椰
|
2982 |
+
椴
|
2983 |
+
椿
|
2984 |
+
楊
|
2985 |
+
楓
|
2986 |
+
楔
|
2987 |
+
楕
|
2988 |
+
楚
|
2989 |
+
楠
|
2990 |
+
楡
|
2991 |
+
楢
|
2992 |
+
楨
|
2993 |
+
楫
|
2994 |
+
業
|
2995 |
+
楮
|
2996 |
+
楯
|
2997 |
+
楳
|
2998 |
+
極
|
2999 |
+
楷
|
3000 |
+
楸
|
3001 |
+
楼
|
3002 |
+
楽
|
3003 |
+
概
|
3004 |
+
榊
|
3005 |
+
榎
|
3006 |
+
榑
|
3007 |
+
榔
|
3008 |
+
榕
|
3009 |
+
榛
|
3010 |
+
榜
|
3011 |
+
榧
|
3012 |
+
榮
|
3013 |
+
榴
|
3014 |
+
槃
|
3015 |
+
槇
|
3016 |
+
槊
|
3017 |
+
構
|
3018 |
+
槌
|
3019 |
+
槍
|
3020 |
+
槎
|
3021 |
+
槐
|
3022 |
+
槓
|
3023 |
+
様
|
3024 |
+
槙
|
3025 |
+
槨
|
3026 |
+
槻
|
3027 |
+
槽
|
3028 |
+
槿
|
3029 |
+
樂
|
3030 |
+
樅
|
3031 |
+
樊
|
3032 |
+
樋
|
3033 |
+
樒
|
3034 |
+
樓
|
3035 |
+
樗
|
3036 |
+
標
|
3037 |
+
樟
|
3038 |
+
模
|
3039 |
+
樣
|
3040 |
+
権
|
3041 |
+
横
|
3042 |
+
樫
|
3043 |
+
樵
|
3044 |
+
樹
|
3045 |
+
樺
|
3046 |
+
樽
|
3047 |
+
橇
|
3048 |
+
橈
|
3049 |
+
橋
|
3050 |
+
橘
|
3051 |
+
橙
|
3052 |
+
機
|
3053 |
+
橡
|
3054 |
+
橿
|
3055 |
+
檀
|
3056 |
+
檄
|
3057 |
+
檎
|
3058 |
+
檗
|
3059 |
+
檜
|
3060 |
+
檢
|
3061 |
+
檣
|
3062 |
+
檬
|
3063 |
+
檮
|
3064 |
+
檳
|
3065 |
+
檸
|
3066 |
+
檻
|
3067 |
+
櫂
|
3068 |
+
櫃
|
3069 |
+
櫓
|
3070 |
+
櫚
|
3071 |
+
櫛
|
3072 |
+
櫟
|
3073 |
+
櫨
|
3074 |
+
櫻
|
3075 |
+
欄
|
3076 |
+
欅
|
3077 |
+
權
|
3078 |
+
欒
|
3079 |
+
欠
|
3080 |
+
次
|
3081 |
+
欣
|
3082 |
+
欧
|
3083 |
+
欲
|
3084 |
+
欺
|
3085 |
+
欽
|
3086 |
+
款
|
3087 |
+
歆
|
3088 |
+
歌
|
3089 |
+
歎
|
3090 |
+
歓
|
3091 |
+
歙
|
3092 |
+
止
|
3093 |
+
正
|
3094 |
+
此
|
3095 |
+
步
|
3096 |
+
武
|
3097 |
+
歩
|
3098 |
+
歪
|
3099 |
+
歯
|
3100 |
+
歳
|
3101 |
+
歴
|
3102 |
+
歸
|
3103 |
+
死
|
3104 |
+
歿
|
3105 |
+
殆
|
3106 |
+
殉
|
3107 |
+
殊
|
3108 |
+
残
|
3109 |
+
殖
|
3110 |
+
殘
|
3111 |
+
殤
|
3112 |
+
殲
|
3113 |
+
殴
|
3114 |
+
段
|
3115 |
+
殷
|
3116 |
+
殺
|
3117 |
+
殻
|
3118 |
+
殼
|
3119 |
+
殿
|
3120 |
+
毀
|
3121 |
+
毅
|
3122 |
+
毋
|
3123 |
+
母
|
3124 |
+
毎
|
3125 |
+
毐
|
3126 |
+
毒
|
3127 |
+
毓
|
3128 |
+
比
|
3129 |
+
毖
|
3130 |
+
毗
|
3131 |
+
毘
|
3132 |
+
毛
|
3133 |
+
毫
|
3134 |
+
毬
|
3135 |
+
毯
|
3136 |
+
氈
|
3137 |
+
氏
|
3138 |
+
氐
|
3139 |
+
民
|
3140 |
+
気
|
3141 |
+
氣
|
3142 |
+
水
|
3143 |
+
氷
|
3144 |
+
永
|
3145 |
+
氾
|
3146 |
+
汀
|
3147 |
+
汁
|
3148 |
+
求
|
3149 |
+
汎
|
3150 |
+
汐
|
3151 |
+
汕
|
3152 |
+
汗
|
3153 |
+
汚
|
3154 |
+
汜
|
3155 |
+
汝
|
3156 |
+
江
|
3157 |
+
池
|
3158 |
+
汪
|
3159 |
+
汰
|
3160 |
+
汲
|
3161 |
+
汴
|
3162 |
+
汶
|
3163 |
+
決
|
3164 |
+
汽
|
3165 |
+
汾
|
3166 |
+
沁
|
3167 |
+
沂
|
3168 |
+
沃
|
3169 |
+
沅
|
3170 |
+
沈
|
3171 |
+
沌
|
3172 |
+
沐
|
3173 |
+
沓
|
3174 |
+
沔
|
3175 |
+
沖
|
3176 |
+
沙
|
3177 |
+
沛
|
3178 |
+
没
|
3179 |
+
沢
|
3180 |
+
沪
|
3181 |
+
沫
|
3182 |
+
沮
|
3183 |
+
沱
|
3184 |
+
河
|
3185 |
+
沸
|
3186 |
+
油
|
3187 |
+
治
|
3188 |
+
沼
|
3189 |
+
沽
|
3190 |
+
沾
|
3191 |
+
沿
|
3192 |
+
況
|
3193 |
+
泄
|
3194 |
+
泉
|
3195 |
+
泊
|
3196 |
+
泌
|
3197 |
+
泓
|
3198 |
+
法
|
3199 |
+
泗
|
3200 |
+
泛
|
3201 |
+
泠
|
3202 |
+
泡
|
3203 |
+
波
|
3204 |
+
泣
|
3205 |
+
泥
|
3206 |
+
注
|
3207 |
+
泪
|
3208 |
+
泮
|
3209 |
+
泰
|
3210 |
+
泳
|
3211 |
+
洄
|
3212 |
+
洋
|
3213 |
+
洌
|
3214 |
+
洒
|
3215 |
+
洗
|
3216 |
+
洙
|
3217 |
+
洛
|
3218 |
+
洞
|
3219 |
+
津
|
3220 |
+
洩
|
3221 |
+
洪
|
3222 |
+
洮
|
3223 |
+
洱
|
3224 |
+
洲
|
3225 |
+
洵
|
3226 |
+
洸
|
3227 |
+
活
|
3228 |
+
洽
|
3229 |
+
派
|
3230 |
+
流
|
3231 |
+
浄
|
3232 |
+
浅
|
3233 |
+
浙
|
3234 |
+
浚
|
3235 |
+
浜
|
3236 |
+
浣
|
3237 |
+
浦
|
3238 |
+
浩
|
3239 |
+
浪
|
3240 |
+
浬
|
3241 |
+
浮
|
3242 |
+
浴
|
3243 |
+
海
|
3244 |
+
浸
|
3245 |
+
涂
|
3246 |
+
涅
|
3247 |
+
涇
|
3248 |
+
消
|
3249 |
+
涌
|
3250 |
+
涎
|
3251 |
+
涙
|
3252 |
+
涛
|
3253 |
+
涜
|
3254 |
+
涪
|
3255 |
+
涯
|
3256 |
+
液
|
3257 |
+
涵
|
3258 |
+
涸
|
3259 |
+
涼
|
3260 |
+
涿
|
3261 |
+
淀
|
3262 |
+
淄
|
3263 |
+
淅
|
3264 |
+
淆
|
3265 |
+
淇
|
3266 |
+
淋
|
3267 |
+
淑
|
3268 |
+
淘
|
3269 |
+
淝
|
3270 |
+
淞
|
3271 |
+
淡
|
3272 |
+
淤
|
3273 |
+
淦
|
3274 |
+
淨
|
3275 |
+
淪
|
3276 |
+
淫
|
3277 |
+
淮
|
3278 |
+
深
|
3279 |
+
淳
|
3280 |
+
淵
|
3281 |
+
混
|
3282 |
+
淸
|
3283 |
+
淹
|
3284 |
+
淺
|
3285 |
+
添
|
3286 |
+
清
|
3287 |
+
渇
|
3288 |
+
済
|
3289 |
+
渉
|
3290 |
+
渋
|
3291 |
+
渓
|
3292 |
+
渕
|
3293 |
+
渙
|
3294 |
+
渚
|
3295 |
+
減
|
3296 |
+
渝
|
3297 |
+
渟
|
3298 |
+
渠
|
3299 |
+
渡
|
3300 |
+
渣
|
3301 |
+
渤
|
3302 |
+
渥
|
3303 |
+
渦
|
3304 |
+
温
|
3305 |
+
渫
|
3306 |
+
測
|
3307 |
+
渭
|
3308 |
+
港
|
3309 |
+
游
|
3310 |
+
渺
|
3311 |
+
渾
|
3312 |
+
湊
|
3313 |
+
湍
|
3314 |
+
湖
|
3315 |
+
湘
|
3316 |
+
湛
|
3317 |
+
湟
|
3318 |
+
湣
|
3319 |
+
湧
|
3320 |
+
湫
|
3321 |
+
湯
|
3322 |
+
湾
|
3323 |
+
湿
|
3324 |
+
満
|
3325 |
+
源
|
3326 |
+
準
|
3327 |
+
溜
|
3328 |
+
溝
|
3329 |
+
溟
|
3330 |
+
溢
|
3331 |
+
溥
|
3332 |
+
溪
|
3333 |
+
溯
|
3334 |
+
溶
|
3335 |
+
溺
|
3336 |
+
滄
|
3337 |
+
滅
|
3338 |
+
滇
|
3339 |
+
滉
|
3340 |
+
滋
|
3341 |
+
滎
|
3342 |
+
滑
|
3343 |
+
滓
|
3344 |
+
滔
|
3345 |
+
滕
|
3346 |
+
滝
|
3347 |
+
滞
|
3348 |
+
滬
|
3349 |
+
滲
|
3350 |
+
滴
|
3351 |
+
滷
|
3352 |
+
滸
|
3353 |
+
滾
|
3354 |
+
滿
|
3355 |
+
漁
|
3356 |
+
漂
|
3357 |
+
漆
|
3358 |
+
漉
|
3359 |
+
漏
|
3360 |
+
漑
|
3361 |
+
演
|
3362 |
+
漕
|
3363 |
+
漠
|
3364 |
+
漢
|
3365 |
+
漣
|
3366 |
+
漫
|
3367 |
+
漬
|
3368 |
+
漱
|
3369 |
+
漲
|
3370 |
+
漳
|
3371 |
+
漸
|
3372 |
+
漿
|
3373 |
+
潁
|
3374 |
+
潅
|
3375 |
+
潔
|
3376 |
+
潘
|
3377 |
+
潜
|
3378 |
+
潟
|
3379 |
+
潤
|
3380 |
+
潭
|
3381 |
+
潮
|
3382 |
+
潰
|
3383 |
+
潴
|
3384 |
+
潼
|
3385 |
+
澁
|
3386 |
+
澂
|
3387 |
+
澄
|
3388 |
+
澈
|
3389 |
+
澎
|
3390 |
+
澗
|
3391 |
+
澤
|
3392 |
+
澧
|
3393 |
+
澪
|
3394 |
+
澱
|
3395 |
+
澳
|
3396 |
+
澹
|
3397 |
+
激
|
3398 |
+
濁
|
3399 |
+
濂
|
3400 |
+
濃
|
3401 |
+
濊
|
3402 |
+
濘
|
3403 |
+
濟
|
3404 |
+
濠
|
3405 |
+
濡
|
3406 |
+
濤
|
3407 |
+
濫
|
3408 |
+
濬
|
3409 |
+
濮
|
3410 |
+
濯
|
3411 |
+
濰
|
3412 |
+
濱
|
3413 |
+
濵
|
3414 |
+
濾
|
3415 |
+
瀉
|
3416 |
+
瀋
|
3417 |
+
瀏
|
3418 |
+
瀑
|
3419 |
+
瀕
|
3420 |
+
瀘
|
3421 |
+
瀚
|
3422 |
+
瀛
|
3423 |
+
瀝
|
3424 |
+
瀞
|
3425 |
+
瀟
|
3426 |
+
瀧
|
3427 |
+
瀬
|
3428 |
+
瀾
|
3429 |
+
灌
|
3430 |
+
灘
|
3431 |
+
灞
|
3432 |
+
灣
|
3433 |
+
灤
|
3434 |
+
火
|
3435 |
+
灯
|
3436 |
+
灰
|
3437 |
+
灸
|
3438 |
+
灼
|
3439 |
+
災
|
3440 |
+
炅
|
3441 |
+
炉
|
3442 |
+
炊
|
3443 |
+
炎
|
3444 |
+
炒
|
3445 |
+
炙
|
3446 |
+
炫
|
3447 |
+
炬
|
3448 |
+
炭
|
3449 |
+
炮
|
3450 |
+
炯
|
3451 |
+
炳
|
3452 |
+
炸
|
3453 |
+
点
|
3454 |
+
為
|
3455 |
+
烈
|
3456 |
+
烏
|
3457 |
+
烙
|
3458 |
+
烟
|
3459 |
+
烹
|
3460 |
+
烽
|
3461 |
+
焉
|
3462 |
+
焔
|
3463 |
+
焙
|
3464 |
+
焚
|
3465 |
+
無
|
3466 |
+
焦
|
3467 |
+
焰
|
3468 |
+
然
|
3469 |
+
焼
|
3470 |
+
煉
|
3471 |
+
煌
|
3472 |
+
煎
|
3473 |
+
煒
|
3474 |
+
煕
|
3475 |
+
煖
|
3476 |
+
煙
|
3477 |
+
煜
|
3478 |
+
煤
|
3479 |
+
煥
|
3480 |
+
照
|
3481 |
+
煨
|
3482 |
+
煩
|
3483 |
+
煬
|
3484 |
+
煮
|
3485 |
+
煽
|
3486 |
+
熈
|
3487 |
+
熊
|
3488 |
+
熏
|
3489 |
+
熔
|
3490 |
+
熕
|
3491 |
+
熙
|
3492 |
+
熟
|
3493 |
+
熨
|
3494 |
+
熱
|
3495 |
+
熹
|
3496 |
+
熾
|
3497 |
+
燁
|
3498 |
+
燃
|
3499 |
+
燈
|
3500 |
+
燎
|
3501 |
+
燐
|
3502 |
+
燕
|
3503 |
+
燗
|
3504 |
+
營
|
3505 |
+
燥
|
3506 |
+
燦
|
3507 |
+
燧
|
3508 |
+
燭
|
3509 |
+
燮
|
3510 |
+
燵
|
3511 |
+
燻
|
3512 |
+
燼
|
3513 |
+
燾
|
3514 |
+
燿
|
3515 |
+
爆
|
3516 |
+
爛
|
3517 |
+
爨
|
3518 |
+
爪
|
3519 |
+
爬
|
3520 |
+
爲
|
3521 |
+
爵
|
3522 |
+
父
|
3523 |
+
爺
|
3524 |
+
爻
|
3525 |
+
爽
|
3526 |
+
爾
|
3527 |
+
牆
|
3528 |
+
片
|
3529 |
+
版
|
3530 |
+
牌
|
3531 |
+
牒
|
3532 |
+
牘
|
3533 |
+
牙
|
3534 |
+
牛
|
3535 |
+
牝
|
3536 |
+
牟
|
3537 |
+
牡
|
3538 |
+
牢
|
3539 |
+
牧
|
3540 |
+
物
|
3541 |
+
牲
|
3542 |
+
特
|
3543 |
+
牽
|
3544 |
+
犀
|
3545 |
+
犁
|
3546 |
+
犂
|
3547 |
+
犍
|
3548 |
+
犠
|
3549 |
+
犢
|
3550 |
+
犬
|
3551 |
+
犯
|
3552 |
+
状
|
3553 |
+
狂
|
3554 |
+
狄
|
3555 |
+
狆
|
3556 |
+
狐
|
3557 |
+
狗
|
3558 |
+
狙
|
3559 |
+
狛
|
3560 |
+
狡
|
3561 |
+
狩
|
3562 |
+
独
|
3563 |
+
狭
|
3564 |
+
狸
|
3565 |
+
狼
|
3566 |
+
狽
|
3567 |
+
猊
|
3568 |
+
猗
|
3569 |
+
猛
|
3570 |
+
猜
|
3571 |
+
猟
|
3572 |
+
猥
|
3573 |
+
猩
|
3574 |
+
猪
|
3575 |
+
猫
|
3576 |
+
献
|
3577 |
+
猴
|
3578 |
+
猶
|
3579 |
+
猷
|
3580 |
+
猾
|
3581 |
+
猿
|
3582 |
+
獄
|
3583 |
+
獅
|
3584 |
+
獏
|
3585 |
+
獠
|
3586 |
+
獣
|
3587 |
+
獨
|
3588 |
+
獪
|
3589 |
+
獰
|
3590 |
+
獲
|
3591 |
+
獺
|
3592 |
+
玄
|
3593 |
+
率
|
3594 |
+
玉
|
3595 |
+
王
|
3596 |
+
玖
|
3597 |
+
玩
|
3598 |
+
玫
|
3599 |
+
玲
|
3600 |
+
玻
|
3601 |
+
珀
|
3602 |
+
珂
|
3603 |
+
珈
|
3604 |
+
珉
|
3605 |
+
珊
|
3606 |
+
珍
|
3607 |
+
珠
|
3608 |
+
珥
|
3609 |
+
珪
|
3610 |
+
班
|
3611 |
+
珸
|
3612 |
+
現
|
3613 |
+
球
|
3614 |
+
琅
|
3615 |
+
理
|
3616 |
+
琉
|
3617 |
+
琛
|
3618 |
+
琢
|
3619 |
+
琥
|
3620 |
+
琦
|
3621 |
+
琨
|
3622 |
+
琪
|
3623 |
+
琬
|
3624 |
+
琮
|
3625 |
+
琰
|
3626 |
+
琲
|
3627 |
+
琳
|
3628 |
+
琴
|
3629 |
+
琵
|
3630 |
+
琶
|
3631 |
+
琺
|
3632 |
+
琿
|
3633 |
+
瑀
|
3634 |
+
瑁
|
3635 |
+
瑋
|
3636 |
+
瑕
|
3637 |
+
瑗
|
3638 |
+
瑙
|
3639 |
+
瑚
|
3640 |
+
瑛
|
3641 |
+
瑜
|
3642 |
+
瑞
|
3643 |
+
瑟
|
3644 |
+
瑠
|
3645 |
+
瑣
|
3646 |
+
瑤
|
3647 |
+
瑩
|
3648 |
+
瑪
|
3649 |
+
瑯
|
3650 |
+
瑰
|
3651 |
+
瑳
|
3652 |
+
瑶
|
3653 |
+
瑾
|
3654 |
+
璃
|
3655 |
+
璇
|
3656 |
+
璋
|
3657 |
+
璐
|
3658 |
+
璜
|
3659 |
+
璞
|
3660 |
+
璟
|
3661 |
+
璠
|
3662 |
+
璧
|
3663 |
+
璩
|
3664 |
+
環
|
3665 |
+
璽
|
3666 |
+
璿
|
3667 |
+
瓊
|
3668 |
+
瓌
|
3669 |
+
瓏
|
3670 |
+
瓔
|
3671 |
+
瓘
|
3672 |
+
瓚
|
3673 |
+
瓜
|
3674 |
+
瓠
|
3675 |
+
瓢
|
3676 |
+
瓦
|
3677 |
+
瓶
|
3678 |
+
瓷
|
3679 |
+
甄
|
3680 |
+
甌
|
3681 |
+
甑
|
3682 |
+
甕
|
3683 |
+
甘
|
3684 |
+
甚
|
3685 |
+
甜
|
3686 |
+
生
|
3687 |
+
產
|
3688 |
+
産
|
3689 |
+
甥
|
3690 |
+
甦
|
3691 |
+
用
|
3692 |
+
甫
|
3693 |
+
甯
|
3694 |
+
田
|
3695 |
+
由
|
3696 |
+
甲
|
3697 |
+
申
|
3698 |
+
男
|
3699 |
+
甸
|
3700 |
+
町
|
3701 |
+
画
|
3702 |
+
界
|
3703 |
+
畏
|
3704 |
+
畑
|
3705 |
+
畔
|
3706 |
+
留
|
3707 |
+
畚
|
3708 |
+
畜
|
3709 |
+
畝
|
3710 |
+
畠
|
3711 |
+
畢
|
3712 |
+
畤
|
3713 |
+
略
|
3714 |
+
畦
|
3715 |
+
番
|
3716 |
+
畫
|
3717 |
+
異
|
3718 |
+
畳
|
3719 |
+
當
|
3720 |
+
畷
|
3721 |
+
畸
|
3722 |
+
畿
|
3723 |
+
疆
|
3724 |
+
疇
|
3725 |
+
疋
|
3726 |
+
疎
|
3727 |
+
疏
|
3728 |
+
疑
|
3729 |
+
疝
|
3730 |
+
疣
|
3731 |
+
疫
|
3732 |
+
疱
|
3733 |
+
疲
|
3734 |
+
疵
|
3735 |
+
疸
|
3736 |
+
疹
|
3737 |
+
疼
|
3738 |
+
疽
|
3739 |
+
疾
|
3740 |
+
病
|
3741 |
+
症
|
3742 |
+
痍
|
3743 |
+
痒
|
3744 |
+
痔
|
3745 |
+
痕
|
3746 |
+
痘
|
3747 |
+
痙
|
3748 |
+
痛
|
3749 |
+
痢
|
3750 |
+
痣
|
3751 |
+
痩
|
3752 |
+
痰
|
3753 |
+
痴
|
3754 |
+
痺
|
3755 |
+
瘍
|
3756 |
+
瘡
|
3757 |
+
瘢
|
3758 |
+
瘤
|
3759 |
+
瘴
|
3760 |
+
瘻
|
3761 |
+
療
|
3762 |
+
癇
|
3763 |
+
癌
|
3764 |
+
癒
|
3765 |
+
癖
|
3766 |
+
癩
|
3767 |
+
癪
|
3768 |
+
癬
|
3769 |
+
癲
|
3770 |
+
癸
|
3771 |
+
発
|
3772 |
+
登
|
3773 |
+
發
|
3774 |
+
白
|
3775 |
+
百
|
3776 |
+
的
|
3777 |
+
皆
|
3778 |
+
皇
|
3779 |
+
皋
|
3780 |
+
皎
|
3781 |
+
皐
|
3782 |
+
皓
|
3783 |
+
皖
|
3784 |
+
皝
|
3785 |
+
皮
|
3786 |
+
皴
|
3787 |
+
皺
|
3788 |
+
皿
|
3789 |
+
盂
|
3790 |
+
盃
|
3791 |
+
盆
|
3792 |
+
盈
|
3793 |
+
益
|
3794 |
+
盒
|
3795 |
+
盗
|
3796 |
+
盛
|
3797 |
+
盞
|
3798 |
+
盟
|
3799 |
+
監
|
3800 |
+
盤
|
3801 |
+
盥
|
3802 |
+
盧
|
3803 |
+
盪
|
3804 |
+
目
|
3805 |
+
盲
|
3806 |
+
直
|
3807 |
+
相
|
3808 |
+
盾
|
3809 |
+
省
|
3810 |
+
眈
|
3811 |
+
眉
|
3812 |
+
看
|
3813 |
+
県
|
3814 |
+
眞
|
3815 |
+
真
|
3816 |
+
眠
|
3817 |
+
眩
|
3818 |
+
眷
|
3819 |
+
眸
|
3820 |
+
眺
|
3821 |
+
眼
|
3822 |
+
着
|
3823 |
+
睡
|
3824 |
+
睢
|
3825 |
+
督
|
3826 |
+
睦
|
3827 |
+
睨
|
3828 |
+
睫
|
3829 |
+
睺
|
3830 |
+
睾
|
3831 |
+
睿
|
3832 |
+
瞑
|
3833 |
+
瞞
|
3834 |
+
瞥
|
3835 |
+
瞬
|
3836 |
+
瞭
|
3837 |
+
瞰
|
3838 |
+
瞳
|
3839 |
+
瞻
|
3840 |
+
瞼
|
3841 |
+
瞽
|
3842 |
+
瞿
|
3843 |
+
矗
|
3844 |
+
矛
|
3845 |
+
矜
|
3846 |
+
矢
|
3847 |
+
矣
|
3848 |
+
知
|
3849 |
+
矧
|
3850 |
+
矩
|
3851 |
+
短
|
3852 |
+
矮
|
3853 |
+
矯
|
3854 |
+
石
|
3855 |
+
砂
|
3856 |
+
砌
|
3857 |
+
砒
|
3858 |
+
研
|
3859 |
+
砕
|
3860 |
+
砥
|
3861 |
+
砦
|
3862 |
+
砧
|
3863 |
+
砲
|
3864 |
+
破
|
3865 |
+
砺
|
3866 |
+
砿
|
3867 |
+
硝
|
3868 |
+
硫
|
3869 |
+
硬
|
3870 |
+
硯
|
3871 |
+
碁
|
3872 |
+
碇
|
3873 |
+
碌
|
3874 |
+
碍
|
3875 |
+
碑
|
3876 |
+
碓
|
3877 |
+
碕
|
3878 |
+
碗
|
3879 |
+
碣
|
3880 |
+
碧
|
3881 |
+
碩
|
3882 |
+
碭
|
3883 |
+
確
|
3884 |
+
碼
|
3885 |
+
碾
|
3886 |
+
磁
|
3887 |
+
磊
|
3888 |
+
磋
|
3889 |
+
磐
|
3890 |
+
磔
|
3891 |
+
磧
|
3892 |
+
磨
|
3893 |
+
磯
|
3894 |
+
磾
|
3895 |
+
礁
|
3896 |
+
礎
|
3897 |
+
礒
|
3898 |
+
礙
|
3899 |
+
礦
|
3900 |
+
礪
|
3901 |
+
礫
|
3902 |
+
礬
|
3903 |
+
示
|
3904 |
+
礼
|
3905 |
+
礽
|
3906 |
+
社
|
3907 |
+
祀
|
3908 |
+
祁
|
3909 |
+
祇
|
3910 |
+
祈
|
3911 |
+
祉
|
3912 |
+
祐
|
3913 |
+
祓
|
3914 |
+
祖
|
3915 |
+
祗
|
3916 |
+
祚
|
3917 |
+
祜
|
3918 |
+
祝
|
3919 |
+
神
|
3920 |
+
祟
|
3921 |
+
祠
|
3922 |
+
祢
|
3923 |
+
祥
|
3924 |
+
票
|
3925 |
+
祭
|
3926 |
+
祷
|
3927 |
+
祺
|
3928 |
+
禁
|
3929 |
+
禄
|
3930 |
+
禅
|
3931 |
+
禊
|
3932 |
+
禍
|
3933 |
+
禎
|
3934 |
+
福
|
3935 |
+
禕
|
3936 |
+
禦
|
3937 |
+
禧
|
3938 |
+
禪
|
3939 |
+
禮
|
3940 |
+
禰
|
3941 |
+
禹
|
3942 |
+
禺
|
3943 |
+
禽
|
3944 |
+
禾
|
3945 |
+
禿
|
3946 |
+
秀
|
3947 |
+
私
|
3948 |
+
秉
|
3949 |
+
秋
|
3950 |
+
科
|
3951 |
+
秒
|
3952 |
+
秘
|
3953 |
+
租
|
3954 |
+
秣
|
3955 |
+
秤
|
3956 |
+
秦
|
3957 |
+
秩
|
3958 |
+
称
|
3959 |
+
移
|
3960 |
+
稀
|
3961 |
+
稈
|
3962 |
+
程
|
3963 |
+
稍
|
3964 |
+
税
|
3965 |
+
稔
|
3966 |
+
稗
|
3967 |
+
稙
|
3968 |
+
稚
|
3969 |
+
稜
|
3970 |
+
稟
|
3971 |
+
稠
|
3972 |
+
種
|
3973 |
+
稲
|
3974 |
+
稷
|
3975 |
+
稻
|
3976 |
+
稼
|
3977 |
+
稽
|
3978 |
+
稿
|
3979 |
+
穀
|
3980 |
+
穂
|
3981 |
+
穆
|
3982 |
+
積
|
3983 |
+
穎
|
3984 |
+
穏
|
3985 |
+
穢
|
3986 |
+
穣
|
3987 |
+
穫
|
3988 |
+
穴
|
3989 |
+
究
|
3990 |
+
穹
|
3991 |
+
空
|
3992 |
+
穿
|
3993 |
+
突
|
3994 |
+
窃
|
3995 |
+
窄
|
3996 |
+
窈
|
3997 |
+
窒
|
3998 |
+
窓
|
3999 |
+
窘
|
4000 |
+
窟
|
4001 |
+
窠
|
4002 |
+
窩
|
4003 |
+
窪
|
4004 |
+
窮
|
4005 |
+
窯
|
4006 |
+
窺
|
4007 |
+
竃
|
4008 |
+
竄
|
4009 |
+
竇
|
4010 |
+
竈
|
4011 |
+
立
|
4012 |
+
站
|
4013 |
+
竜
|
4014 |
+
竟
|
4015 |
+
章
|
4016 |
+
竣
|
4017 |
+
童
|
4018 |
+
竪
|
4019 |
+
端
|
4020 |
+
竴
|
4021 |
+
競
|
4022 |
+
竹
|
4023 |
+
竺
|
4024 |
+
竿
|
4025 |
+
笄
|
4026 |
+
笈
|
4027 |
+
笊
|
4028 |
+
笏
|
4029 |
+
笑
|
4030 |
+
笘
|
4031 |
+
笙
|
4032 |
+
笛
|
4033 |
+
笞
|
4034 |
+
笠
|
4035 |
+
笥
|
4036 |
+
符
|
4037 |
+
第
|
4038 |
+
笹
|
4039 |
+
筆
|
4040 |
+
筈
|
4041 |
+
等
|
4042 |
+
筋
|
4043 |
+
筌
|
4044 |
+
筍
|
4045 |
+
筏
|
4046 |
+
筐
|
4047 |
+
筑
|
4048 |
+
筒
|
4049 |
+
答
|
4050 |
+
策
|
4051 |
+
筝
|
4052 |
+
筠
|
4053 |
+
筥
|
4054 |
+
筧
|
4055 |
+
筬
|
4056 |
+
筮
|
4057 |
+
筰
|
4058 |
+
筵
|
4059 |
+
筺
|
4060 |
+
箆
|
4061 |
+
箇
|
4062 |
+
箋
|
4063 |
+
箍
|
4064 |
+
箏
|
4065 |
+
箒
|
4066 |
+
箔
|
4067 |
+
箕
|
4068 |
+
算
|
4069 |
+
箙
|
4070 |
+
箚
|
4071 |
+
管
|
4072 |
+
箪
|
4073 |
+
箭
|
4074 |
+
箱
|
4075 |
+
箴
|
4076 |
+
箸
|
4077 |
+
節
|
4078 |
+
篁
|
4079 |
+
範
|
4080 |
+
篆
|
4081 |
+
篇
|
4082 |
+
築
|
4083 |
+
篋
|
4084 |
+
篝
|
4085 |
+
篠
|
4086 |
+
篤
|
4087 |
+
篥
|
4088 |
+
篩
|
4089 |
+
篪
|
4090 |
+
篭
|
4091 |
+
篳
|
4092 |
+
簀
|
4093 |
+
簑
|
4094 |
+
簒
|
4095 |
+
簗
|
4096 |
+
簡
|
4097 |
+
簪
|
4098 |
+
簫
|
4099 |
+
簸
|
4100 |
+
簾
|
4101 |
+
簿
|
4102 |
+
籃
|
4103 |
+
籌
|
4104 |
+
籍
|
4105 |
+
籐
|
4106 |
+
籔
|
4107 |
+
籟
|
4108 |
+
籠
|
4109 |
+
籤
|
4110 |
+
籬
|
4111 |
+
米
|
4112 |
+
籾
|
4113 |
+
粁
|
4114 |
+
粂
|
4115 |
+
粃
|
4116 |
+
粉
|
4117 |
+
粋
|
4118 |
+
粍
|
4119 |
+
粒
|
4120 |
+
粕
|
4121 |
+
粗
|
4122 |
+
粘
|
4123 |
+
粛
|
4124 |
+
粟
|
4125 |
+
粤
|
4126 |
+
粥
|
4127 |
+
粧
|
4128 |
+
粲
|
4129 |
+
粽
|
4130 |
+
精
|
4131 |
+
糀
|
4132 |
+
糊
|
4133 |
+
糎
|
4134 |
+
糖
|
4135 |
+
糜
|
4136 |
+
糞
|
4137 |
+
糟
|
4138 |
+
糠
|
4139 |
+
糧
|
4140 |
+
糸
|
4141 |
+
糺
|
4142 |
+
系
|
4143 |
+
糾
|
4144 |
+
紀
|
4145 |
+
紂
|
4146 |
+
約
|
4147 |
+
紅
|
4148 |
+
紆
|
4149 |
+
紇
|
4150 |
+
紊
|
4151 |
+
紋
|
4152 |
+
納
|
4153 |
+
紐
|
4154 |
+
純
|
4155 |
+
紗
|
4156 |
+
紘
|
4157 |
+
紙
|
4158 |
+
級
|
4159 |
+
紛
|
4160 |
+
素
|
4161 |
+
紡
|
4162 |
+
索
|
4163 |
+
紫
|
4164 |
+
紬
|
4165 |
+
紮
|
4166 |
+
累
|
4167 |
+
細
|
4168 |
+
紳
|
4169 |
+
紹
|
4170 |
+
紺
|
4171 |
+
終
|
4172 |
+
絃
|
4173 |
+
組
|
4174 |
+
絅
|
4175 |
+
絆
|
4176 |
+
経
|
4177 |
+
結
|
4178 |
+
絞
|
4179 |
+
絡
|
4180 |
+
絢
|
4181 |
+
絣
|
4182 |
+
給
|
4183 |
+
絨
|
4184 |
+
統
|
4185 |
+
絲
|
4186 |
+
絳
|
4187 |
+
絵
|
4188 |
+
絶
|
4189 |
+
絹
|
4190 |
+
綏
|
4191 |
+
經
|
4192 |
+
継
|
4193 |
+
続
|
4194 |
+
綜
|
4195 |
+
綝
|
4196 |
+
綠
|
4197 |
+
綫
|
4198 |
+
綬
|
4199 |
+
維
|
4200 |
+
綰
|
4201 |
+
綱
|
4202 |
+
網
|
4203 |
+
綴
|
4204 |
+
綵
|
4205 |
+
綸
|
4206 |
+
綺
|
4207 |
+
綻
|
4208 |
+
綽
|
4209 |
+
綾
|
4210 |
+
綿
|
4211 |
+
緊
|
4212 |
+
緋
|
4213 |
+
総
|
4214 |
+
緑
|
4215 |
+
緒
|
4216 |
+
緘
|
4217 |
+
線
|
4218 |
+
緝
|
4219 |
+
緞
|
4220 |
+
締
|
4221 |
+
編
|
4222 |
+
緩
|
4223 |
+
緬
|
4224 |
+
緯
|
4225 |
+
練
|
4226 |
+
緻
|
4227 |
+
縁
|
4228 |
+
縄
|
4229 |
+
縅
|
4230 |
+
縉
|
4231 |
+
縊
|
4232 |
+
縋
|
4233 |
+
縒
|
4234 |
+
縛
|
4235 |
+
縝
|
4236 |
+
縞
|
4237 |
+
縢
|
4238 |
+
縣
|
4239 |
+
縦
|
4240 |
+
縫
|
4241 |
+
縮
|
4242 |
+
縯
|
4243 |
+
縵
|
4244 |
+
縷
|
4245 |
+
縹
|
4246 |
+
縺
|
4247 |
+
總
|
4248 |
+
績
|
4249 |
+
繁
|
4250 |
+
繆
|
4251 |
+
繇
|
4252 |
+
繊
|
4253 |
+
繋
|
4254 |
+
繍
|
4255 |
+
織
|
4256 |
+
繕
|
4257 |
+
繚
|
4258 |
+
繞
|
4259 |
+
繪
|
4260 |
+
繭
|
4261 |
+
繰
|
4262 |
+
繹
|
4263 |
+
繼
|
4264 |
+
纂
|
4265 |
+
續
|
4266 |
+
纏
|
4267 |
+
纒
|
4268 |
+
纓
|
4269 |
+
红
|
4270 |
+
级
|
4271 |
+
线
|
4272 |
+
缶
|
4273 |
+
罐
|
4274 |
+
网
|
4275 |
+
罔
|
4276 |
+
罕
|
4277 |
+
罘
|
4278 |
+
罠
|
4279 |
+
罪
|
4280 |
+
罫
|
4281 |
+
置
|
4282 |
+
罰
|
4283 |
+
署
|
4284 |
+
罵
|
4285 |
+
罷
|
4286 |
+
罹
|
4287 |
+
羂
|
4288 |
+
羅
|
4289 |
+
羆
|
4290 |
+
羊
|
4291 |
+
羋
|
4292 |
+
羌
|
4293 |
+
美
|
4294 |
+
羚
|
4295 |
+
羞
|
4296 |
+
羣
|
4297 |
+
群
|
4298 |
+
羨
|
4299 |
+
義
|
4300 |
+
羯
|
4301 |
+
羲
|
4302 |
+
羹
|
4303 |
+
羽
|
4304 |
+
翁
|
4305 |
+
翅
|
4306 |
+
翊
|
4307 |
+
翌
|
4308 |
+
翎
|
4309 |
+
習
|
4310 |
+
翔
|
4311 |
+
翟
|
4312 |
+
翠
|
4313 |
+
翡
|
4314 |
+
翦
|
4315 |
+
翫
|
4316 |
+
翰
|
4317 |
+
翳
|
4318 |
+
翹
|
4319 |
+
翻
|
4320 |
+
翼
|
4321 |
+
耀
|
4322 |
+
老
|
4323 |
+
考
|
4324 |
+
者
|
4325 |
+
耆
|
4326 |
+
而
|
4327 |
+
耐
|
4328 |
+
耕
|
4329 |
+
耗
|
4330 |
+
耘
|
4331 |
+
耳
|
4332 |
+
耶
|
4333 |
+
耽
|
4334 |
+
耿
|
4335 |
+
聊
|
4336 |
+
聖
|
4337 |
+
聘
|
4338 |
+
聚
|
4339 |
+
聞
|
4340 |
+
聟
|
4341 |
+
聡
|
4342 |
+
聯
|
4343 |
+
聰
|
4344 |
+
聲
|
4345 |
+
聳
|
4346 |
+
聴
|
4347 |
+
聶
|
4348 |
+
職
|
4349 |
+
聾
|
4350 |
+
肄
|
4351 |
+
肆
|
4352 |
+
肇
|
4353 |
+
肉
|
4354 |
+
肋
|
4355 |
+
肌
|
4356 |
+
肖
|
4357 |
+
肘
|
4358 |
+
肛
|
4359 |
+
肜
|
4360 |
+
肝
|
4361 |
+
股
|
4362 |
+
肢
|
4363 |
+
肥
|
4364 |
+
肩
|
4365 |
+
肪
|
4366 |
+
肯
|
4367 |
+
肱
|
4368 |
+
育
|
4369 |
+
肴
|
4370 |
+
肺
|
4371 |
+
胃
|
4372 |
+
胆
|
4373 |
+
背
|
4374 |
+
胎
|
4375 |
+
胖
|
4376 |
+
胚
|
4377 |
+
胝
|
4378 |
+
胞
|
4379 |
+
胡
|
4380 |
+
胤
|
4381 |
+
胥
|
4382 |
+
胱
|
4383 |
+
胴
|
4384 |
+
胸
|
4385 |
+
能
|
4386 |
+
脂
|
4387 |
+
脅
|
4388 |
+
脆
|
4389 |
+
脇
|
4390 |
+
脈
|
4391 |
+
脊
|
4392 |
+
脚
|
4393 |
+
脛
|
4394 |
+
脩
|
4395 |
+
脱
|
4396 |
+
脳
|
4397 |
+
脹
|
4398 |
+
脾
|
4399 |
+
腋
|
4400 |
+
腎
|
4401 |
+
腐
|
4402 |
+
腑
|
4403 |
+
腓
|
4404 |
+
腔
|
4405 |
+
腕
|
4406 |
+
腫
|
4407 |
+
腰
|
4408 |
+
腱
|
4409 |
+
腸
|
4410 |
+
腹
|
4411 |
+
腺
|
4412 |
+
腿
|
4413 |
+
膀
|
4414 |
+
膂
|
4415 |
+
膊
|
4416 |
+
膏
|
4417 |
+
膚
|
4418 |
+
膜
|
4419 |
+
膝
|
4420 |
+
膠
|
4421 |
+
膣
|
4422 |
+
膨
|
4423 |
+
膳
|
4424 |
+
膵
|
4425 |
+
膺
|
4426 |
+
膾
|
4427 |
+
膿
|
4428 |
+
臀
|
4429 |
+
臂
|
4430 |
+
臆
|
4431 |
+
臈
|
4432 |
+
臍
|
4433 |
+
臓
|
4434 |
+
臘
|
4435 |
+
臙
|
4436 |
+
臚
|
4437 |
+
臣
|
4438 |
+
臥
|
4439 |
+
臧
|
4440 |
+
臨
|
4441 |
+
自
|
4442 |
+
臭
|
4443 |
+
至
|
4444 |
+
致
|
4445 |
+
臺
|
4446 |
+
臻
|
4447 |
+
臼
|
4448 |
+
舁
|
4449 |
+
舂
|
4450 |
+
舅
|
4451 |
+
與
|
4452 |
+
興
|
4453 |
+
舊
|
4454 |
+
舌
|
4455 |
+
舍
|
4456 |
+
舎
|
4457 |
+
舐
|
4458 |
+
舒
|
4459 |
+
舗
|
4460 |
+
舘
|
4461 |
+
舛
|
4462 |
+
舜
|
4463 |
+
舞
|
4464 |
+
舟
|
4465 |
+
舩
|
4466 |
+
航
|
4467 |
+
舫
|
4468 |
+
般
|
4469 |
+
舳
|
4470 |
+
舵
|
4471 |
+
舶
|
4472 |
+
舷
|
4473 |
+
船
|
4474 |
+
艀
|
4475 |
+
艇
|
4476 |
+
艘
|
4477 |
+
艙
|
4478 |
+
艤
|
4479 |
+
艦
|
4480 |
+
艮
|
4481 |
+
良
|
4482 |
+
艱
|
4483 |
+
色
|
4484 |
+
艶
|
4485 |
+
艸
|
4486 |
+
艾
|
4487 |
+
芋
|
4488 |
+
芍
|
4489 |
+
芎
|
4490 |
+
芒
|
4491 |
+
芙
|
4492 |
+
芝
|
4493 |
+
芥
|
4494 |
+
芦
|
4495 |
+
芬
|
4496 |
+
芭
|
4497 |
+
芮
|
4498 |
+
芯
|
4499 |
+
花
|
4500 |
+
芳
|
4501 |
+
芷
|
4502 |
+
芸
|
4503 |
+
芹
|
4504 |
+
芻
|
4505 |
+
芽
|
4506 |
+
芾
|
4507 |
+
苅
|
4508 |
+
苑
|
4509 |
+
苓
|
4510 |
+
苔
|
4511 |
+
苗
|
4512 |
+
苛
|
4513 |
+
苞
|
4514 |
+
苟
|
4515 |
+
若
|
4516 |
+
苦
|
4517 |
+
苧
|
4518 |
+
苫
|
4519 |
+
英
|
4520 |
+
苴
|
4521 |
+
苺
|
4522 |
+
苻
|
4523 |
+
茂
|
4524 |
+
范
|
4525 |
+
茄
|
4526 |
+
茅
|
4527 |
+
茉
|
4528 |
+
茎
|
4529 |
+
茗
|
4530 |
+
茘
|
4531 |
+
茜
|
4532 |
+
茨
|
4533 |
+
茫
|
4534 |
+
茯
|
4535 |
+
茱
|
4536 |
+
茲
|
4537 |
+
茶
|
4538 |
+
茸
|
4539 |
+
茹
|
4540 |
+
荀
|
4541 |
+
荃
|
4542 |
+
草
|
4543 |
+
荊
|
4544 |
+
荏
|
4545 |
+
荒
|
4546 |
+
荘
|
4547 |
+
荷
|
4548 |
+
荻
|
4549 |
+
荼
|
4550 |
+
莆
|
4551 |
+
莇
|
4552 |
+
莉
|
4553 |
+
莊
|
4554 |
+
莎
|
4555 |
+
莒
|
4556 |
+
莘
|
4557 |
+
莚
|
4558 |
+
莞
|
4559 |
+
莢
|
4560 |
+
莫
|
4561 |
+
莱
|
4562 |
+
莽
|
4563 |
+
菁
|
4564 |
+
菅
|
4565 |
+
菊
|
4566 |
+
菌
|
4567 |
+
菓
|
4568 |
+
菖
|
4569 |
+
菘
|
4570 |
+
菜
|
4571 |
+
菟
|
4572 |
+
菩
|
4573 |
+
菫
|
4574 |
+
華
|
4575 |
+
菰
|
4576 |
+
菱
|
4577 |
+
菲
|
4578 |
+
菴
|
4579 |
+
萄
|
4580 |
+
萇
|
4581 |
+
萊
|
4582 |
+
萌
|
4583 |
+
萍
|
4584 |
+
萎
|
4585 |
+
萠
|
4586 |
+
萩
|
4587 |
+
萬
|
4588 |
+
萱
|
4589 |
+
萸
|
4590 |
+
萼
|
4591 |
+
落
|
4592 |
+
葆
|
4593 |
+
葉
|
4594 |
+
著
|
4595 |
+
葛
|
4596 |
+
葡
|
4597 |
+
董
|
4598 |
+
葦
|
4599 |
+
葫
|
4600 |
+
葬
|
4601 |
+
葭
|
4602 |
+
葯
|
4603 |
+
葱
|
4604 |
+
葵
|
4605 |
+
葺
|
4606 |
+
蒋
|
4607 |
+
蒐
|
4608 |
+
蒔
|
4609 |
+
蒙
|
4610 |
+
蒜
|
4611 |
+
蒟
|
4612 |
+
蒯
|
4613 |
+
蒲
|
4614 |
+
蒴
|
4615 |
+
蒸
|
4616 |
+
蒹
|
4617 |
+
蒻
|
4618 |
+
蒼
|
4619 |
+
蒿
|
4620 |
+
蓁
|
4621 |
+
蓄
|
4622 |
+
蓉
|
4623 |
+
蓋
|
4624 |
+
蓑
|
4625 |
+
蓬
|
4626 |
+
蓮
|
4627 |
+
蓼
|
4628 |
+
蔀
|
4629 |
+
蔑
|
4630 |
+
蔓
|
4631 |
+
蔗
|
4632 |
+
蔚
|
4633 |
+
蔡
|
4634 |
+
蔣
|
4635 |
+
蔦
|
4636 |
+
蔬
|
4637 |
+
蔭
|
4638 |
+
蔵
|
4639 |
+
蔽
|
4640 |
+
蕁
|
4641 |
+
蕃
|
4642 |
+
蕉
|
4643 |
+
蕊
|
4644 |
+
蕎
|
4645 |
+
蕗
|
4646 |
+
蕙
|
4647 |
+
蕤
|
4648 |
+
蕨
|
4649 |
+
蕩
|
4650 |
+
蕪
|
4651 |
+
蕭
|
4652 |
+
蕷
|
4653 |
+
蕾
|
4654 |
+
薀
|
4655 |
+
薁
|
4656 |
+
薄
|
4657 |
+
薇
|
4658 |
+
薈
|
4659 |
+
薊
|
4660 |
+
薔
|
4661 |
+
薗
|
4662 |
+
薙
|
4663 |
+
薛
|
4664 |
+
薦
|
4665 |
+
薨
|
4666 |
+
薩
|
4667 |
+
薪
|
4668 |
+
薫
|
4669 |
+
薬
|
4670 |
+
薭
|
4671 |
+
薮
|
4672 |
+
薯
|
4673 |
+
藁
|
4674 |
+
藉
|
4675 |
+
藍
|
4676 |
+
藏
|
4677 |
+
藝
|
4678 |
+
藤
|
4679 |
+
藥
|
4680 |
+
藩
|
4681 |
+
藪
|
4682 |
+
藷
|
4683 |
+
藺
|
4684 |
+
藻
|
4685 |
+
蘂
|
4686 |
+
蘄
|
4687 |
+
蘆
|
4688 |
+
蘇
|
4689 |
+
蘊
|
4690 |
+
蘋
|
4691 |
+
蘚
|
4692 |
+
蘭
|
4693 |
+
蘿
|
4694 |
+
虎
|
4695 |
+
虐
|
4696 |
+
虔
|
4697 |
+
處
|
4698 |
+
虚
|
4699 |
+
虜
|
4700 |
+
虞
|
4701 |
+
號
|
4702 |
+
虢
|
4703 |
+
虫
|
4704 |
+
虹
|
4705 |
+
虻
|
4706 |
+
蚊
|
4707 |
+
蚕
|
4708 |
+
蚤
|
4709 |
+
蚩
|
4710 |
+
蛆
|
4711 |
+
蛇
|
4712 |
+
蛉
|
4713 |
+
蛋
|
4714 |
+
蛍
|
4715 |
+
蛎
|
4716 |
+
蛙
|
4717 |
+
蛛
|
4718 |
+
蛟
|
4719 |
+
蛤
|
4720 |
+
蛭
|
4721 |
+
蛮
|
4722 |
+
蛯
|
4723 |
+
蛸
|
4724 |
+
蛹
|
4725 |
+
蛾
|
4726 |
+
蜀
|
4727 |
+
蜂
|
4728 |
+
蜃
|
4729 |
+
蜆
|
4730 |
+
蜉
|
4731 |
+
蜘
|
4732 |
+
蜚
|
4733 |
+
蜜
|
4734 |
+
蜥
|
4735 |
+
蜴
|
4736 |
+
蜷
|
4737 |
+
蜻
|
4738 |
+
蝉
|
4739 |
+
蝋
|
4740 |
+
蝎
|
4741 |
+
蝕
|
4742 |
+
蝗
|
4743 |
+
蝙
|
4744 |
+
蝠
|
4745 |
+
蝣
|
4746 |
+
蝦
|
4747 |
+
蝮
|
4748 |
+
蝶
|
4749 |
+
蝸
|
4750 |
+
蝿
|
4751 |
+
螂
|
4752 |
+
融
|
4753 |
+
螢
|
4754 |
+
螳
|
4755 |
+
螺
|
4756 |
+
蟄
|
4757 |
+
蟇
|
4758 |
+
蟠
|
4759 |
+
蟲
|
4760 |
+
蟷
|
4761 |
+
蟹
|
4762 |
+
蟻
|
4763 |
+
蟾
|
4764 |
+
蠅
|
4765 |
+
蠍
|
4766 |
+
蠕
|
4767 |
+
蠡
|
4768 |
+
蠢
|
4769 |
+
蠣
|
4770 |
+
蠱
|
4771 |
+
血
|
4772 |
+
衆
|
4773 |
+
行
|
4774 |
+
衍
|
4775 |
+
衒
|
4776 |
+
術
|
4777 |
+
街
|
4778 |
+
衙
|
4779 |
+
衛
|
4780 |
+
衝
|
4781 |
+
衞
|
4782 |
+
衡
|
4783 |
+
衢
|
4784 |
+
衣
|
4785 |
+
表
|
4786 |
+
衫
|
4787 |
+
衰
|
4788 |
+
衷
|
4789 |
+
衾
|
4790 |
+
衿
|
4791 |
+
袁
|
4792 |
+
袂
|
4793 |
+
袈
|
4794 |
+
袋
|
4795 |
+
袍
|
4796 |
+
袖
|
4797 |
+
袞
|
4798 |
+
袢
|
4799 |
+
被
|
4800 |
+
袰
|
4801 |
+
袱
|
4802 |
+
袴
|
4803 |
+
袷
|
4804 |
+
袿
|
4805 |
+
裁
|
4806 |
+
裂
|
4807 |
+
裃
|
4808 |
+
装
|
4809 |
+
裏
|
4810 |
+
裒
|
4811 |
+
裔
|
4812 |
+
裕
|
4813 |
+
補
|
4814 |
+
裝
|
4815 |
+
裟
|
4816 |
+
裡
|
4817 |
+
裳
|
4818 |
+
裴
|
4819 |
+
裵
|
4820 |
+
裸
|
4821 |
+
製
|
4822 |
+
裾
|
4823 |
+
褄
|
4824 |
+
複
|
4825 |
+
褌
|
4826 |
+
褐
|
4827 |
+
褒
|
4828 |
+
褚
|
4829 |
+
褥
|
4830 |
+
褪
|
4831 |
+
褶
|
4832 |
+
褸
|
4833 |
+
褻
|
4834 |
+
襄
|
4835 |
+
襖
|
4836 |
+
襞
|
4837 |
+
襟
|
4838 |
+
襤
|
4839 |
+
襦
|
4840 |
+
襲
|
4841 |
+
襴
|
4842 |
+
襷
|
4843 |
+
西
|
4844 |
+
要
|
4845 |
+
覆
|
4846 |
+
覇
|
4847 |
+
覈
|
4848 |
+
見
|
4849 |
+
規
|
4850 |
+
視
|
4851 |
+
覗
|
4852 |
+
覚
|
4853 |
+
覧
|
4854 |
+
親
|
4855 |
+
覯
|
4856 |
+
観
|
4857 |
+
覺
|
4858 |
+
覽
|
4859 |
+
觀
|
4860 |
+
视
|
4861 |
+
角
|
4862 |
+
觚
|
4863 |
+
觜
|
4864 |
+
解
|
4865 |
+
触
|
4866 |
+
言
|
4867 |
+
訂
|
4868 |
+
訃
|
4869 |
+
計
|
4870 |
+
訊
|
4871 |
+
訌
|
4872 |
+
討
|
4873 |
+
訓
|
4874 |
+
託
|
4875 |
+
記
|
4876 |
+
訛
|
4877 |
+
訝
|
4878 |
+
訟
|
4879 |
+
訢
|
4880 |
+
訣
|
4881 |
+
訥
|
4882 |
+
訪
|
4883 |
+
設
|
4884 |
+
許
|
4885 |
+
訳
|
4886 |
+
訴
|
4887 |
+
訶
|
4888 |
+
診
|
4889 |
+
註
|
4890 |
+
証
|
4891 |
+
詁
|
4892 |
+
詈
|
4893 |
+
詐
|
4894 |
+
詔
|
4895 |
+
評
|
4896 |
+
詛
|
4897 |
+
詞
|
4898 |
+
詠
|
4899 |
+
詡
|
4900 |
+
詢
|
4901 |
+
詣
|
4902 |
+
試
|
4903 |
+
詧
|
4904 |
+
詩
|
4905 |
+
詫
|
4906 |
+
詭
|
4907 |
+
詮
|
4908 |
+
詰
|
4909 |
+
話
|
4910 |
+
該
|
4911 |
+
詳
|
4912 |
+
詵
|
4913 |
+
詹
|
4914 |
+
誄
|
4915 |
+
誅
|
4916 |
+
誇
|
4917 |
+
誉
|
4918 |
+
誌
|
4919 |
+
認
|
4920 |
+
誑
|
4921 |
+
誓
|
4922 |
+
誕
|
4923 |
+
誘
|
4924 |
+
語
|
4925 |
+
誠
|
4926 |
+
誡
|
4927 |
+
誣
|
4928 |
+
誤
|
4929 |
+
誥
|
4930 |
+
誦
|
4931 |
+
誨
|
4932 |
+
說
|
4933 |
+
説
|
4934 |
+
読
|
4935 |
+
誰
|
4936 |
+
課
|
4937 |
+
誹
|
4938 |
+
誼
|
4939 |
+
誾
|
4940 |
+
調
|
4941 |
+
談
|
4942 |
+
請
|
4943 |
+
諌
|
4944 |
+
諍
|
4945 |
+
諏
|
4946 |
+
諒
|
4947 |
+
論
|
4948 |
+
諜
|
4949 |
+
諝
|
4950 |
+
諡
|
4951 |
+
諦
|
4952 |
+
諧
|
4953 |
+
諫
|
4954 |
+
諭
|
4955 |
+
諮
|
4956 |
+
諱
|
4957 |
+
諳
|
4958 |
+
諶
|
4959 |
+
諷
|
4960 |
+
諸
|
4961 |
+
諺
|
4962 |
+
諾
|
4963 |
+
謀
|
4964 |
+
謁
|
4965 |
+
謂
|
4966 |
+
謄
|
4967 |
+
謎
|
4968 |
+
謐
|
4969 |
+
謔
|
4970 |
+
謗
|
4971 |
+
謙
|
4972 |
+
講
|
4973 |
+
謝
|
4974 |
+
謡
|
4975 |
+
謨
|
4976 |
+
謬
|
4977 |
+
謳
|
4978 |
+
謹
|
4979 |
+
證
|
4980 |
+
譏
|
4981 |
+
識
|
4982 |
+
譙
|
4983 |
+
譚
|
4984 |
+
譜
|
4985 |
+
警
|
4986 |
+
譬
|
4987 |
+
議
|
4988 |
+
譲
|
4989 |
+
譴
|
4990 |
+
護
|
4991 |
+
譽
|
4992 |
+
讀
|
4993 |
+
讃
|
4994 |
+
變
|
4995 |
+
讎
|
4996 |
+
讐
|
4997 |
+
讒
|
4998 |
+
讓
|
4999 |
+
讖
|
5000 |
+
谷
|
5001 |
+
谺
|
5002 |
+
谿
|
5003 |
+
豆
|
5004 |
+
豉
|
5005 |
+
豊
|
5006 |
+
豎
|
5007 |
+
豐
|
5008 |
+
豚
|
5009 |
+
象
|
5010 |
+
豪
|
5011 |
+
豫
|
5012 |
+
豬
|
5013 |
+
豳
|
5014 |
+
豹
|
5015 |
+
豺
|
5016 |
+
貂
|
5017 |
+
貉
|
5018 |
+
貊
|
5019 |
+
貌
|
5020 |
+
貘
|
5021 |
+
貝
|
5022 |
+
貞
|
5023 |
+
負
|
5024 |
+
財
|
5025 |
+
貢
|
5026 |
+
貧
|
5027 |
+
貨
|
5028 |
+
販
|
5029 |
+
貪
|
5030 |
+
貫
|
5031 |
+
責
|
5032 |
+
貯
|
5033 |
+
貰
|
5034 |
+
貳
|
5035 |
+
貴
|
5036 |
+
貶
|
5037 |
+
買
|
5038 |
+
貸
|
5039 |
+
費
|
5040 |
+
貼
|
5041 |
+
貽
|
5042 |
+
貿
|
5043 |
+
賀
|
5044 |
+
賁
|
5045 |
+
賂
|
5046 |
+
賃
|
5047 |
+
賄
|
5048 |
+
資
|
5049 |
+
賈
|
5050 |
+
賊
|
5051 |
+
賎
|
5052 |
+
賑
|
5053 |
+
賓
|
5054 |
+
賛
|
5055 |
+
賜
|
5056 |
+
賞
|
5057 |
+
賠
|
5058 |
+
賢
|
5059 |
+
賣
|
5060 |
+
賤
|
5061 |
+
賦
|
5062 |
+
質
|
5063 |
+
賭
|
5064 |
+
購
|
5065 |
+
賽
|
5066 |
+
贄
|
5067 |
+
贅
|
5068 |
+
贈
|
5069 |
+
贋
|
5070 |
+
贍
|
5071 |
+
贔
|
5072 |
+
贖
|
5073 |
+
贛
|
5074 |
+
赛
|
5075 |
+
赤
|
5076 |
+
赦
|
5077 |
+
赧
|
5078 |
+
赫
|
5079 |
+
赭
|
5080 |
+
走
|
5081 |
+
赳
|
5082 |
+
赴
|
5083 |
+
起
|
5084 |
+
超
|
5085 |
+
越
|
5086 |
+
趙
|
5087 |
+
趣
|
5088 |
+
趨
|
5089 |
+
足
|
5090 |
+
趾
|
5091 |
+
跆
|
5092 |
+
跋
|
5093 |
+
跎
|
5094 |
+
跏
|
5095 |
+
跗
|
5096 |
+
跛
|
5097 |
+
距
|
5098 |
+
跡
|
5099 |
+
跨
|
5100 |
+
跪
|
5101 |
+
路
|
5102 |
+
跳
|
5103 |
+
践
|
5104 |
+
踊
|
5105 |
+
踏
|
5106 |
+
踞
|
5107 |
+
踪
|
5108 |
+
踰
|
5109 |
+
踵
|
5110 |
+
蹂
|
5111 |
+
蹄
|
5112 |
+
蹉
|
5113 |
+
蹊
|
5114 |
+
蹋
|
5115 |
+
蹙
|
5116 |
+
蹟
|
5117 |
+
蹠
|
5118 |
+
蹲
|
5119 |
+
蹴
|
5120 |
+
蹶
|
5121 |
+
躁
|
5122 |
+
躅
|
5123 |
+
躇
|
5124 |
+
躊
|
5125 |
+
躍
|
5126 |
+
躑
|
5127 |
+
躓
|
5128 |
+
躙
|
5129 |
+
身
|
5130 |
+
躬
|
5131 |
+
躯
|
5132 |
+
躰
|
5133 |
+
躱
|
5134 |
+
躾
|
5135 |
+
軀
|
5136 |
+
車
|
5137 |
+
軋
|
5138 |
+
軌
|
5139 |
+
軍
|
5140 |
+
軒
|
5141 |
+
軕
|
5142 |
+
軛
|
5143 |
+
軟
|
5144 |
+
転
|
5145 |
+
軫
|
5146 |
+
軸
|
5147 |
+
軻
|
5148 |
+
軼
|
5149 |
+
軽
|
5150 |
+
軾
|
5151 |
+
較
|
5152 |
+
載
|
5153 |
+
輌
|
5154 |
+
輓
|
5155 |
+
輔
|
5156 |
+
輛
|
5157 |
+
輜
|
5158 |
+
輝
|
5159 |
+
輦
|
5160 |
+
輩
|
5161 |
+
輪
|
5162 |
+
輯
|
5163 |
+
輳
|
5164 |
+
輸
|
5165 |
+
輻
|
5166 |
+
輿
|
5167 |
+
轄
|
5168 |
+
轅
|
5169 |
+
轆
|
5170 |
+
轍
|
5171 |
+
轟
|
5172 |
+
轡
|
5173 |
+
轢
|
5174 |
+
车
|
5175 |
+
辛
|
5176 |
+
辜
|
5177 |
+
辞
|
5178 |
+
辟
|
5179 |
+
辣
|
5180 |
+
辦
|
5181 |
+
辨
|
5182 |
+
辭
|
5183 |
+
辮
|
5184 |
+
辯
|
5185 |
+
辰
|
5186 |
+
辱
|
5187 |
+
農
|
5188 |
+
辷
|
5189 |
+
辺
|
5190 |
+
辻
|
5191 |
+
込
|
5192 |
+
辿
|
5193 |
+
迂
|
5194 |
+
迄
|
5195 |
+
迅
|
5196 |
+
迎
|
5197 |
+
运
|
5198 |
+
近
|
5199 |
+
返
|
5200 |
+
迢
|
5201 |
+
迥
|
5202 |
+
迦
|
5203 |
+
迩
|
5204 |
+
迪
|
5205 |
+
迫
|
5206 |
+
迭
|
5207 |
+
述
|
5208 |
+
迴
|
5209 |
+
迷
|
5210 |
+
迹
|
5211 |
+
追
|
5212 |
+
退
|
5213 |
+
送
|
5214 |
+
逃
|
5215 |
+
逅
|
5216 |
+
逆
|
5217 |
+
逍
|
5218 |
+
透
|
5219 |
+
逐
|
5220 |
+
逓
|
5221 |
+
途
|
5222 |
+
逖
|
5223 |
+
逗
|
5224 |
+
這
|
5225 |
+
通
|
5226 |
+
逝
|
5227 |
+
逞
|
5228 |
+
速
|
5229 |
+
造
|
5230 |
+
逡
|
5231 |
+
逢
|
5232 |
+
連
|
5233 |
+
逮
|
5234 |
+
週
|
5235 |
+
進
|
5236 |
+
逵
|
5237 |
+
逸
|
5238 |
+
逹
|
5239 |
+
逼
|
5240 |
+
遁
|
5241 |
+
遂
|
5242 |
+
遅
|
5243 |
+
遇
|
5244 |
+
遊
|
5245 |
+
運
|
5246 |
+
遍
|
5247 |
+
過
|
5248 |
+
遐
|
5249 |
+
道
|
5250 |
+
達
|
5251 |
+
違
|
5252 |
+
遙
|
5253 |
+
遜
|
5254 |
+
遠
|
5255 |
+
遡
|
5256 |
+
遣
|
5257 |
+
遥
|
5258 |
+
適
|
5259 |
+
遭
|
5260 |
+
遮
|
5261 |
+
遵
|
5262 |
+
遷
|
5263 |
+
選
|
5264 |
+
遹
|
5265 |
+
遺
|
5266 |
+
遼
|
5267 |
+
遽
|
5268 |
+
避
|
5269 |
+
邀
|
5270 |
+
邁
|
5271 |
+
邂
|
5272 |
+
邃
|
5273 |
+
還
|
5274 |
+
邇
|
5275 |
+
邈
|
5276 |
+
邉
|
5277 |
+
邊
|
5278 |
+
邏
|
5279 |
+
邑
|
5280 |
+
邕
|
5281 |
+
邙
|
5282 |
+
邠
|
5283 |
+
邢
|
5284 |
+
那
|
5285 |
+
邦
|
5286 |
+
邨
|
5287 |
+
邪
|
5288 |
+
邯
|
5289 |
+
邱
|
5290 |
+
邳
|
5291 |
+
邵
|
5292 |
+
邸
|
5293 |
+
邽
|
5294 |
+
邾
|
5295 |
+
郁
|
5296 |
+
郃
|
5297 |
+
郅
|
5298 |
+
郊
|
5299 |
+
郎
|
5300 |
+
郗
|
5301 |
+
郛
|
5302 |
+
郝
|
5303 |
+
郞
|
5304 |
+
郡
|
5305 |
+
郢
|
5306 |
+
郤
|
5307 |
+
部
|
5308 |
+
郭
|
5309 |
+
郯
|
5310 |
+
郵
|
5311 |
+
郷
|
5312 |
+
都
|
5313 |
+
鄂
|
5314 |
+
鄄
|
5315 |
+
鄒
|
5316 |
+
鄔
|
5317 |
+
鄖
|
5318 |
+
鄙
|
5319 |
+
鄢
|
5320 |
+
鄧
|
5321 |
+
鄭
|
5322 |
+
鄯
|
5323 |
+
鄰
|
5324 |
+
鄱
|
5325 |
+
鄲
|
5326 |
+
鄴
|
5327 |
+
酈
|
5328 |
+
酉
|
5329 |
+
酊
|
5330 |
+
酋
|
5331 |
+
酌
|
5332 |
+
配
|
5333 |
+
酎
|
5334 |
+
酒
|
5335 |
+
酔
|
5336 |
+
酘
|
5337 |
+
酛
|
5338 |
+
酢
|
5339 |
+
酩
|
5340 |
+
酪
|
5341 |
+
酬
|
5342 |
+
酵
|
5343 |
+
酷
|
5344 |
+
酸
|
5345 |
+
醂
|
5346 |
+
醇
|
5347 |
+
醉
|
5348 |
+
醍
|
5349 |
+
醐
|
5350 |
+
醒
|
5351 |
+
醗
|
5352 |
+
醜
|
5353 |
+
醤
|
5354 |
+
醪
|
5355 |
+
醫
|
5356 |
+
醸
|
5357 |
+
采
|
5358 |
+
釈
|
5359 |
+
釉
|
5360 |
+
釋
|
5361 |
+
里
|
5362 |
+
重
|
5363 |
+
野
|
5364 |
+
量
|
5365 |
+
釐
|
5366 |
+
金
|
5367 |
+
釗
|
5368 |
+
釘
|
5369 |
+
釜
|
5370 |
+
針
|
5371 |
+
釣
|
5372 |
+
釦
|
5373 |
+
釧
|
5374 |
+
釵
|
5375 |
+
鈍
|
5376 |
+
鈎
|
5377 |
+
鈑
|
5378 |
+
鈔
|
5379 |
+
鈕
|
5380 |
+
鈞
|
5381 |
+
鈴
|
5382 |
+
鈷
|
5383 |
+
鈺
|
5384 |
+
鈿
|
5385 |
+
鉄
|
5386 |
+
鉅
|
5387 |
+
鉈
|
5388 |
+
鉉
|
5389 |
+
鉋
|
5390 |
+
鉗
|
5391 |
+
鉛
|
5392 |
+
鉞
|
5393 |
+
鉢
|
5394 |
+
鉤
|
5395 |
+
鉦
|
5396 |
+
鉱
|
5397 |
+
鉾
|
5398 |
+
銀
|
5399 |
+
銃
|
5400 |
+
銅
|
5401 |
+
銈
|
5402 |
+
銑
|
5403 |
+
銓
|
5404 |
+
銕
|
5405 |
+
銘
|
5406 |
+
銚
|
5407 |
+
銛
|
5408 |
+
銜
|
5409 |
+
銭
|
5410 |
+
鋏
|
5411 |
+
鋒
|
5412 |
+
鋤
|
5413 |
+
鋪
|
5414 |
+
鋭
|
5415 |
+
鋲
|
5416 |
+
鋳
|
5417 |
+
鋸
|
5418 |
+
鋺
|
5419 |
+
鋼
|
5420 |
+
錆
|
5421 |
+
錐
|
5422 |
+
錕
|
5423 |
+
錘
|
5424 |
+
錚
|
5425 |
+
錠
|
5426 |
+
錢
|
5427 |
+
錣
|
5428 |
+
錦
|
5429 |
+
錨
|
5430 |
+
錫
|
5431 |
+
錬
|
5432 |
+
錮
|
5433 |
+
錯
|
5434 |
+
録
|
5435 |
+
鍋
|
5436 |
+
鍍
|
5437 |
+
鍔
|
5438 |
+
鍛
|
5439 |
+
鍬
|
5440 |
+
鍮
|
5441 |
+
鍵
|
5442 |
+
鍼
|
5443 |
+
鍾
|
5444 |
+
鎌
|
5445 |
+
鎔
|
5446 |
+
鎖
|
5447 |
+
鎗
|
5448 |
+
鎚
|
5449 |
+
鎧
|
5450 |
+
鎬
|
5451 |
+
鎭
|
5452 |
+
鎮
|
5453 |
+
鎰
|
5454 |
+
鎹
|
5455 |
+
鏃
|
5456 |
+
鏑
|
5457 |
+
鏞
|
5458 |
+
鏡
|
5459 |
+
鏢
|
5460 |
+
鐐
|
5461 |
+
鐔
|
5462 |
+
鐘
|
5463 |
+
鐙
|
5464 |
+
鐡
|
5465 |
+
鐵
|
5466 |
+
鐸
|
5467 |
+
鑁
|
5468 |
+
鑑
|
5469 |
+
鑒
|
5470 |
+
鑓
|
5471 |
+
鑚
|
5472 |
+
鑢
|
5473 |
+
鑫
|
5474 |
+
鑰
|
5475 |
+
鑲
|
5476 |
+
鑼
|
5477 |
+
鑽
|
5478 |
+
鑿
|
5479 |
+
铁
|
5480 |
+
長
|
5481 |
+
长
|
5482 |
+
門
|
5483 |
+
閂
|
5484 |
+
閃
|
5485 |
+
閉
|
5486 |
+
開
|
5487 |
+
閏
|
5488 |
+
閑
|
5489 |
+
閒
|
5490 |
+
間
|
5491 |
+
閔
|
5492 |
+
閖
|
5493 |
+
閘
|
5494 |
+
関
|
5495 |
+
閣
|
5496 |
+
閤
|
5497 |
+
閥
|
5498 |
+
閨
|
5499 |
+
閩
|
5500 |
+
閬
|
5501 |
+
閭
|
5502 |
+
閲
|
5503 |
+
閻
|
5504 |
+
閼
|
5505 |
+
閾
|
5506 |
+
闇
|
5507 |
+
闊
|
5508 |
+
闍
|
5509 |
+
闐
|
5510 |
+
闓
|
5511 |
+
闕
|
5512 |
+
闖
|
5513 |
+
闘
|
5514 |
+
關
|
5515 |
+
闡
|
5516 |
+
闢
|
5517 |
+
闥
|
5518 |
+
阜
|
5519 |
+
阪
|
5520 |
+
阮
|
5521 |
+
阯
|
5522 |
+
防
|
5523 |
+
阻
|
5524 |
+
阿
|
5525 |
+
陀
|
5526 |
+
陂
|
5527 |
+
附
|
5528 |
+
陋
|
5529 |
+
陌
|
5530 |
+
降
|
5531 |
+
限
|
5532 |
+
陕
|
5533 |
+
陘
|
5534 |
+
陛
|
5535 |
+
陝
|
5536 |
+
陞
|
5537 |
+
陟
|
5538 |
+
院
|
5539 |
+
陣
|
5540 |
+
除
|
5541 |
+
陥
|
5542 |
+
陪
|
5543 |
+
陰
|
5544 |
+
陳
|
5545 |
+
陵
|
5546 |
+
陶
|
5547 |
+
陷
|
5548 |
+
陸
|
5549 |
+
険
|
5550 |
+
陽
|
5551 |
+
隅
|
5552 |
+
隆
|
5553 |
+
隈
|
5554 |
+
隊
|
5555 |
+
隋
|
5556 |
+
階
|
5557 |
+
随
|
5558 |
+
隔
|
5559 |
+
隕
|
5560 |
+
隗
|
5561 |
+
隘
|
5562 |
+
隙
|
5563 |
+
際
|
5564 |
+
障
|
5565 |
+
隠
|
5566 |
+
隣
|
5567 |
+
隧
|
5568 |
+
隨
|
5569 |
+
隴
|
5570 |
+
隷
|
5571 |
+
隻
|
5572 |
+
隼
|
5573 |
+
雀
|
5574 |
+
雁
|
5575 |
+
雄
|
5576 |
+
雅
|
5577 |
+
集
|
5578 |
+
雇
|
5579 |
+
雉
|
5580 |
+
雌
|
5581 |
+
雍
|
5582 |
+
雎
|
5583 |
+
雑
|
5584 |
+
雒
|
5585 |
+
雕
|
5586 |
+
雖
|
5587 |
+
雙
|
5588 |
+
雛
|
5589 |
+
雜
|
5590 |
+
雞
|
5591 |
+
離
|
5592 |
+
難
|
5593 |
+
雨
|
5594 |
+
雪
|
5595 |
+
雫
|
5596 |
+
雰
|
5597 |
+
雲
|
5598 |
+
零
|
5599 |
+
雷
|
5600 |
+
雹
|
5601 |
+
電
|
5602 |
+
需
|
5603 |
+
霄
|
5604 |
+
霆
|
5605 |
+
震
|
5606 |
+
霊
|
5607 |
+
霍
|
5608 |
+
霑
|
5609 |
+
霓
|
5610 |
+
霖
|
5611 |
+
霜
|
5612 |
+
霞
|
5613 |
+
霧
|
5614 |
+
霰
|
5615 |
+
露
|
5616 |
+
霸
|
5617 |
+
霹
|
5618 |
+
霽
|
5619 |
+
靂
|
5620 |
+
靄
|
5621 |
+
靈
|
5622 |
+
靏
|
5623 |
+
青
|
5624 |
+
靖
|
5625 |
+
静
|
5626 |
+
靚
|
5627 |
+
靜
|
5628 |
+
非
|
5629 |
+
靡
|
5630 |
+
面
|
5631 |
+
革
|
5632 |
+
靫
|
5633 |
+
靭
|
5634 |
+
靱
|
5635 |
+
靳
|
5636 |
+
靴
|
5637 |
+
靺
|
5638 |
+
靼
|
5639 |
+
鞄
|
5640 |
+
鞅
|
5641 |
+
鞆
|
5642 |
+
鞋
|
5643 |
+
鞍
|
5644 |
+
鞏
|
5645 |
+
鞘
|
5646 |
+
鞜
|
5647 |
+
鞠
|
5648 |
+
鞨
|
5649 |
+
鞬
|
5650 |
+
鞭
|
5651 |
+
鞮
|
5652 |
+
鞴
|
5653 |
+
韃
|
5654 |
+
韋
|
5655 |
+
韓
|
5656 |
+
韜
|
5657 |
+
韮
|
5658 |
+
音
|
5659 |
+
韶
|
5660 |
+
韻
|
5661 |
+
響
|
5662 |
+
頁
|
5663 |
+
頂
|
5664 |
+
頃
|
5665 |
+
項
|
5666 |
+
順
|
5667 |
+
須
|
5668 |
+
頊
|
5669 |
+
頌
|
5670 |
+
預
|
5671 |
+
頑
|
5672 |
+
頒
|
5673 |
+
頓
|
5674 |
+
頗
|
5675 |
+
領
|
5676 |
+
頚
|
5677 |
+
頠
|
5678 |
+
頡
|
5679 |
+
頤
|
5680 |
+
頬
|
5681 |
+
頭
|
5682 |
+
頴
|
5683 |
+
頷
|
5684 |
+
頸
|
5685 |
+
頻
|
5686 |
+
頼
|
5687 |
+
頽
|
5688 |
+
顆
|
5689 |
+
題
|
5690 |
+
額
|
5691 |
+
顎
|
5692 |
+
顒
|
5693 |
+
顓
|
5694 |
+
顔
|
5695 |
+
顕
|
5696 |
+
顗
|
5697 |
+
願
|
5698 |
+
顛
|
5699 |
+
類
|
5700 |
+
顥
|
5701 |
+
顧
|
5702 |
+
顯
|
5703 |
+
顰
|
5704 |
+
風
|
5705 |
+
颪
|
5706 |
+
颯
|
5707 |
+
飄
|
5708 |
+
飛
|
5709 |
+
飜
|
5710 |
+
食
|
5711 |
+
飡
|
5712 |
+
飢
|
5713 |
+
飫
|
5714 |
+
飯
|
5715 |
+
飲
|
5716 |
+
飴
|
5717 |
+
飼
|
5718 |
+
飽
|
5719 |
+
飾
|
5720 |
+
餃
|
5721 |
+
餅
|
5722 |
+
餉
|
5723 |
+
養
|
5724 |
+
餌
|
5725 |
+
餐
|
5726 |
+
餓
|
5727 |
+
餘
|
5728 |
+
餞
|
5729 |
+
餡
|
5730 |
+
館
|
5731 |
+
饅
|
5732 |
+
饉
|
5733 |
+
饋
|
5734 |
+
饌
|
5735 |
+
饒
|
5736 |
+
饗
|
5737 |
+
首
|
5738 |
+
馗
|
5739 |
+
香
|
5740 |
+
馥
|
5741 |
+
馨
|
5742 |
+
馬
|
5743 |
+
馮
|
5744 |
+
馳
|
5745 |
+
馴
|
5746 |
+
駁
|
5747 |
+
駄
|
5748 |
+
駅
|
5749 |
+
駆
|
5750 |
+
駈
|
5751 |
+
駐
|
5752 |
+
駒
|
5753 |
+
駕
|
5754 |
+
駙
|
5755 |
+
駝
|
5756 |
+
駢
|
5757 |
+
駱
|
5758 |
+
駿
|
5759 |
+
騎
|
5760 |
+
騏
|
5761 |
+
騒
|
5762 |
+
験
|
5763 |
+
騙
|
5764 |
+
騨
|
5765 |
+
騫
|
5766 |
+
騭
|
5767 |
+
騰
|
5768 |
+
騸
|
5769 |
+
驀
|
5770 |
+
驃
|
5771 |
+
驍
|
5772 |
+
驕
|
5773 |
+
驚
|
5774 |
+
驛
|
5775 |
+
驟
|
5776 |
+
驢
|
5777 |
+
驤
|
5778 |
+
驥
|
5779 |
+
驩
|
5780 |
+
驪
|
5781 |
+
骨
|
5782 |
+
骸
|
5783 |
+
髄
|
5784 |
+
髏
|
5785 |
+
髑
|
5786 |
+
體
|
5787 |
+
高
|
5788 |
+
髙
|
5789 |
+
髠
|
5790 |
+
髢
|
5791 |
+
髣
|
5792 |
+
髦
|
5793 |
+
髪
|
5794 |
+
髭
|
5795 |
+
髯
|
5796 |
+
髴
|
5797 |
+
髷
|
5798 |
+
髻
|
5799 |
+
鬆
|
5800 |
+
鬘
|
5801 |
+
鬚
|
5802 |
+
鬢
|
5803 |
+
鬣
|
5804 |
+
鬨
|
5805 |
+
鬬
|
5806 |
+
鬱
|
5807 |
+
鬲
|
5808 |
+
鬼
|
5809 |
+
魁
|
5810 |
+
魂
|
5811 |
+
魃
|
5812 |
+
魄
|
5813 |
+
魅
|
5814 |
+
魍
|
5815 |
+
魎
|
5816 |
+
魏
|
5817 |
+
魑
|
5818 |
+
魔
|
5819 |
+
魚
|
5820 |
+
魯
|
5821 |
+
鮎
|
5822 |
+
鮑
|
5823 |
+
鮒
|
5824 |
+
鮓
|
5825 |
+
鮨
|
5826 |
+
鮪
|
5827 |
+
鮫
|
5828 |
+
鮭
|
5829 |
+
鮮
|
5830 |
+
鯉
|
5831 |
+
鯏
|
5832 |
+
鯖
|
5833 |
+
鯛
|
5834 |
+
鯨
|
5835 |
+
鯰
|
5836 |
+
鯱
|
5837 |
+
鯵
|
5838 |
+
鰊
|
5839 |
+
鰍
|
5840 |
+
鰐
|
5841 |
+
鰒
|
5842 |
+
鰓
|
5843 |
+
鰕
|
5844 |
+
鰭
|
5845 |
+
鰯
|
5846 |
+
鰹
|
5847 |
+
鰺
|
5848 |
+
鰻
|
5849 |
+
鱈
|
5850 |
+
鱒
|
5851 |
+
鱗
|
5852 |
+
鳥
|
5853 |
+
鳧
|
5854 |
+
鳩
|
5855 |
+
鳰
|
5856 |
+
鳳
|
5857 |
+
鳴
|
5858 |
+
鳶
|
5859 |
+
鴇
|
5860 |
+
鴈
|
5861 |
+
鴉
|
5862 |
+
鴎
|
5863 |
+
鴛
|
5864 |
+
鴦
|
5865 |
+
鴨
|
5866 |
+
鴫
|
5867 |
+
鴬
|
5868 |
+
鴻
|
5869 |
+
鵄
|
5870 |
+
鵜
|
5871 |
+
鵝
|
5872 |
+
鵞
|
5873 |
+
鵠
|
5874 |
+
鵡
|
5875 |
+
鵬
|
5876 |
+
鵯
|
5877 |
+
鵰
|
5878 |
+
鵲
|
5879 |
+
鵺
|
5880 |
+
鶉
|
5881 |
+
鶏
|
5882 |
+
鶚
|
5883 |
+
鶯
|
5884 |
+
鶴
|
5885 |
+
鶻
|
5886 |
+
鷗
|
5887 |
+
鷦
|
5888 |
+
鷯
|
5889 |
+
鷲
|
5890 |
+
鷹
|
5891 |
+
鷺
|
5892 |
+
鸕
|
5893 |
+
鸚
|
5894 |
+
鸞
|
5895 |
+
鹵
|
5896 |
+
鹸
|
5897 |
+
鹹
|
5898 |
+
鹽
|
5899 |
+
鹿
|
5900 |
+
麁
|
5901 |
+
麒
|
5902 |
+
麓
|
5903 |
+
麗
|
5904 |
+
麝
|
5905 |
+
麟
|
5906 |
+
麥
|
5907 |
+
麦
|
5908 |
+
麩
|
5909 |
+
麵
|
5910 |
+
麹
|
5911 |
+
麺
|
5912 |
+
麻
|
5913 |
+
麾
|
5914 |
+
麿
|
5915 |
+
黃
|
5916 |
+
黄
|
5917 |
+
黌
|
5918 |
+
黍
|
5919 |
+
黎
|
5920 |
+
黑
|
5921 |
+
黒
|
5922 |
+
黔
|
5923 |
+
默
|
5924 |
+
黙
|
5925 |
+
黛
|
5926 |
+
點
|
5927 |
+
鼈
|
5928 |
+
鼎
|
5929 |
+
鼓
|
5930 |
+
鼠
|
5931 |
+
鼬
|
5932 |
+
鼻
|
5933 |
+
鼾
|
5934 |
+
齊
|
5935 |
+
齋
|
5936 |
+
齎
|
5937 |
+
齟
|
5938 |
+
齢
|
5939 |
+
齧
|
5940 |
+
齬
|
5941 |
+
齮
|
5942 |
+
齲
|
5943 |
+
龍
|
5944 |
+
龐
|
5945 |
+
龔
|
5946 |
+
龕
|
5947 |
+
龗
|
5948 |
+
龙
|
5949 |
+
龜
|
5950 |
+
가
|
5951 |
+
간
|
5952 |
+
강
|
5953 |
+
개
|
5954 |
+
거
|
5955 |
+
건
|
5956 |
+
검
|
5957 |
+
경
|
5958 |
+
계
|
5959 |
+
고
|
5960 |
+
곡
|
5961 |
+
공
|
5962 |
+
과
|
5963 |
+
관
|
5964 |
+
광
|
5965 |
+
교
|
5966 |
+
구
|
5967 |
+
국
|
5968 |
+
군
|
5969 |
+
권
|
5970 |
+
규
|
5971 |
+
그
|
5972 |
+
글
|
5973 |
+
금
|
5974 |
+
기
|
5975 |
+
길
|
5976 |
+
김
|
5977 |
+
나
|
5978 |
+
낙
|
5979 |
+
남
|
5980 |
+
내
|
5981 |
+
년
|
5982 |
+
노
|
5983 |
+
는
|
5984 |
+
니
|
5985 |
+
다
|
5986 |
+
단
|
5987 |
+
당
|
5988 |
+
대
|
5989 |
+
더
|
5990 |
+
도
|
5991 |
+
독
|
5992 |
+
동
|
5993 |
+
드
|
5994 |
+
들
|
5995 |
+
디
|
5996 |
+
라
|
5997 |
+
랑
|
5998 |
+
래
|
5999 |
+
레
|
6000 |
+
력
|
6001 |
+
로
|
6002 |
+
르
|
6003 |
+
리
|
6004 |
+
립
|
6005 |
+
마
|
6006 |
+
만
|
6007 |
+
말
|
6008 |
+
면
|
6009 |
+
명
|
6010 |
+
몬
|
6011 |
+
무
|
6012 |
+
문
|
6013 |
+
물
|
6014 |
+
미
|
6015 |
+
민
|
6016 |
+
바
|
6017 |
+
박
|
6018 |
+
반
|
6019 |
+
방
|
6020 |
+
배
|
6021 |
+
버
|
6022 |
+
법
|
6023 |
+
베
|
6024 |
+
병
|
6025 |
+
보
|
6026 |
+
부
|
6027 |
+
북
|
6028 |
+
비
|
6029 |
+
빠
|
6030 |
+
사
|
6031 |
+
산
|
6032 |
+
삼
|
6033 |
+
상
|
6034 |
+
새
|
6035 |
+
서
|
6036 |
+
석
|
6037 |
+
선
|
6038 |
+
성
|
6039 |
+
세
|
6040 |
+
소
|
6041 |
+
송
|
6042 |
+
수
|
6043 |
+
순
|
6044 |
+
스
|
6045 |
+
습
|
6046 |
+
승
|
6047 |
+
시
|
6048 |
+
식
|
6049 |
+
신
|
6050 |
+
씨
|
6051 |
+
아
|
6052 |
+
안
|
6053 |
+
야
|
6054 |
+
약
|
6055 |
+
양
|
6056 |
+
어
|
6057 |
+
언
|
6058 |
+
에
|
6059 |
+
여
|
6060 |
+
역
|
6061 |
+
연
|
6062 |
+
영
|
6063 |
+
오
|
6064 |
+
온
|
6065 |
+
와
|
6066 |
+
완
|
6067 |
+
요
|
6068 |
+
용
|
6069 |
+
우
|
6070 |
+
운
|
6071 |
+
울
|
6072 |
+
원
|
6073 |
+
위
|
6074 |
+
유
|
6075 |
+
윤
|
6076 |
+
으
|
6077 |
+
은
|
6078 |
+
을
|
6079 |
+
음
|
6080 |
+
의
|
6081 |
+
이
|
6082 |
+
인
|
6083 |
+
일
|
6084 |
+
자
|
6085 |
+
장
|
6086 |
+
재
|
6087 |
+
전
|
6088 |
+
점
|
6089 |
+
정
|
6090 |
+
제
|
6091 |
+
조
|
6092 |
+
종
|
6093 |
+
주
|
6094 |
+
준
|
6095 |
+
중
|
6096 |
+
지
|
6097 |
+
진
|
6098 |
+
집
|
6099 |
+
차
|
6100 |
+
찬
|
6101 |
+
천
|
6102 |
+
철
|
6103 |
+
총
|
6104 |
+
추
|
6105 |
+
츠
|
6106 |
+
카
|
6107 |
+
코
|
6108 |
+
크
|
6109 |
+
타
|
6110 |
+
태
|
6111 |
+
터
|
6112 |
+
통
|
6113 |
+
트
|
6114 |
+
파
|
6115 |
+
평
|
6116 |
+
포
|
6117 |
+
표
|
6118 |
+
프
|
6119 |
+
피
|
6120 |
+
하
|
6121 |
+
학
|
6122 |
+
한
|
6123 |
+
함
|
6124 |
+
합
|
6125 |
+
항
|
6126 |
+
해
|
6127 |
+
행
|
6128 |
+
허
|
6129 |
+
혁
|
6130 |
+
현
|
6131 |
+
협
|
6132 |
+
호
|
6133 |
+
홍
|
6134 |
+
화
|
6135 |
+
환
|
6136 |
+
황
|
6137 |
+
회
|
6138 |
+
훈
|
6139 |
+
휘
|
6140 |
+
희
|
6141 |
+
﨑
|
6142 |
+
﨟
|
6143 |
+
︎
|
6144 |
+
󠄁
|