import copy import math import os import random import sys import traceback import shlex import re import modules.scripts as scripts import gradio as gr from modules import sd_samplers from modules.processing import Processed, process_images from PIL import Image from modules.shared import opts, cmd_opts, state def fy(text): replace_dict = { '吃饭': 'eating', '睡觉': 'sleeping', '上班': 'working', '吃': 'eat', '喝': 'drink', '睡觉': 'sleep', '大家好': 'Hello everyone', '早上好': 'Good morning', '晚上好': 'Good evening', '再见': 'Goodbye', '谢谢': 'Thank you', '对不起': 'Sorry', '可以': 'can', '谢谢': 'thank you', '对不起': 'sorry', '再见': 'goodbye', '我爱你': 'I love you', '请': 'please', '是的': 'yes', '不': 'no', '喜欢': 'like', '不喜欢': 'dislike', '朋友': 'friend', '家庭': 'family', '工作': 'job', '学校': 'school', '健康': 'health', '运动': 'exercise', '旅游': 'travel', '电影': 'movie', '音乐': 'music', '美食': 'food', '购物': 'shopping', '节日': 'holiday', '生日': 'birthday', '礼物': 'gift', '笑话': 'joke', '故事': 'story', '新闻': 'news', '天气': 'weather', '时间': 'time', '地方': 'place', '问题': 'problem', '解决': 'solve', '帮助': 'help', '理解': 'understand', '感谢': 'appreciate', '期待': 'expect', '兴趣': 'interest', '挑战': 'challenge', '成功': 'success', '失败': 'failure', '机会': 'opportunity', '选择': 'choice', '改变': 'change', '成长': 'growth', '幸福': 'happiness', '梦想': 'dream', '信任': 'trust', '忠诚': 'loyalty', '善良': 'kindness', '勇气': 'courage', '自信': 'confidence', '耐心': 'patience', '尊重': 'respect', '友善': 'kind', '温柔': 'gentle', '开心': 'happy', '难过': 'sad', '困惑': 'confused', '紧张': 'nervous', '生气': 'angry', '失望': 'disappointed', '无聊': 'bored', '疲惫': 'tired', '感动': 'moved', '惊喜': 'surprised', '羡慕': 'envy', '嫉妒': 'jealous', '谎言': 'lie', '真相': 'truth', '胜利': 'victory', '和平': 'peace', '爱情': 'romance', '婚姻': 'marriage', '教育': 'education', '科技': 'technology', '文化': 'culture', '艺术': 'art', '历史': 'history', '哲学': 'philosophy', '宗教': 'religion', '政治': 'politics', '经济': 'economy', '环境': 'environment', '自然': 'nature', '动物': 'animal', '植物': 'plant', '人类': 'human', '宇宙': 'universe', '生命': 'life', '死亡': 'death', '男孩': '((boy))', '女孩': 'girl', '男': '((man))', '女': 'woman', '孩子': 'child', '父亲': 'father', '母亲': 'mother', '兄弟': 'brother', '姐妹': 'sister', '丈夫': 'husband', '妻子': 'wife', '家': 'home', '房间': 'room', '客厅': 'living room', '卧室': 'bedroom', '厨房': 'kitchen', '餐厅': 'dining room', '浴室': 'bathroom', '洗衣房': 'laundry room', '车': 'car', '自行车': 'bike', '公交车': 'bus', '出租车': 'taxi', '地铁': 'subway', '火车': 'train', '飞机': 'plane', '船': 'boat', '步行': 'walking', '早餐': 'breakfast', '午餐': 'lunch', '晚餐': 'dinner', '零食': 'snack', '水果': 'fruit', '蔬菜': 'vegetable', '肉类': 'meat', '海鲜': 'seafood', '甜点': 'dessert', '饮料': 'beverage', '茶': 'tea', '咖啡': 'coffee', '啤酒': 'beer', '红酒': 'red wine', '白酒': 'liquor', '城市': 'city', '乡村': 'countryside', '街道': 'street', '广场': 'square', '公园': 'park', '商店': 'store', '超市': 'supermarket', '银行': 'bank', '医院': 'hospital', '药店': 'pharmacy', '邮局': 'post office', '学校': 'school', '大学': 'university', '图书馆': 'library', '博物馆': 'museum', '电影院': 'cinema', '剧院': 'theater', '音乐厅': 'concert hall', '体育场': 'stadium', '游泳池': 'swimming pool', '海滩': 'beach', '山': 'mountain', '湖': 'lake', '河': 'river', '桥': 'bridge', '公寓': 'apartment', '别墅': 'villa', '房子': 'house', '花园': 'garden', '公共交通': 'public transportation', '驾车': 'driving', '停车': 'parking', '散步': 'strolling', '户外运动': 'outdoor sports', '电视': 'television', '手机': 'mobile phone', '电脑': 'computer', '相机': 'camera', '手表': 'watch', '眼镜': 'glasses', '书': 'book', '报纸': 'newspaper', '杂志': 'magazine', '笔': 'pen', '纸': 'paper', '邮件': 'mail', '电话': 'phone call', '短信': 'text message', '邮件': 'email', '网站': 'website', '社交媒体': 'social media', '游戏': 'game', '音乐播放器': 'MP3 player', '电子书阅读器': 'e-reader', '钱包': 'wallet', '钥匙': 'key', '雨伞': 'umbrella', '墨镜': 'sunglasses', '口红': 'lipstick', '香水': 'perfume', '手绢': 'handkerchief', '手套': 'gloves', '围巾': 'scarf', '帽子': 'hat', '鞋子': 'shoes', '衬衫': 'shirt', '裤子': 'pants', '裙子': 'skirt', '连衣裙': 'dress', '外套': 'coat', '夹克': 'jacket', '毛衣': 'sweater', '卫衣': 'hoodie', '运动服': 'sportswear', '泳衣': 'swimsuit', '睡衣': 'pajamas', '内衣': 'underwear', '袜子': 'socks', '手提包': 'handbag', '背包': 'backpack', '钱包': 'purse', '手表': 'watch', '项链': 'necklace', '耳环': 'earrings', '手镯': 'bracelet', '戒指': 'ring', '眼影': 'eyeshadow', '睫毛膏': 'mascara', '唇膏': 'lipstick', '腮红': 'blush', '粉底': 'foundation', '口红': 'lip gloss', '指甲油': 'nail polish', '鞋子': 'shoes', '衬衫': 'shirt', '裤子': 'pants', '裙子': 'skirt', '连衣裙': 'dress', '外套': 'coat', '夹克': 'jacket', '毛衣': 'sweater', '卫衣': 'hoodie', '运动服': 'sportswear', '泳衣': 'swimsuit', '睡衣': 'pajamas', '内衣': 'underwear', '袜子': 'socks', '手提包': 'handbag', '背包': 'backpack', '钱包': 'purse', '手表': 'watch', '项链': 'necklace', '耳环': 'earrings', '手镯': 'bracelet', '戒指': 'ring', '眼影': 'eyeshadow', '睫毛膏': 'mascara', '唇膏': 'lipstick', '腮红': 'blush', '粉底': 'foundation', '口红': 'lip gloss', '指甲油': 'nail polish','运动': 'sports', '足球': 'football/soccer', '篮球': 'basketball', '棒球': 'baseball', '网球': 'tennis', '乒乓球': 'table tennis/ping-pong', '羽毛球': 'badminton', '游泳': 'swimming', '潜水': 'diving', '滑雪': 'skiing', '滑板': 'skateboarding', '登山': 'mountaineering', '攀岩': 'rock climbing', '自行车': 'cycling', '跑步': 'running', '健身': 'fitness', '瑜伽': 'yoga', '舞蹈': 'dance', '冰球': 'ice hockey', '曲棍球': 'field hockey', '高尔夫球': 'golf', '保龄球': 'bowling', '击剑': 'fencing', '拳击': 'boxing', '摔跤': 'wrestling', '跆拳道': 'taekwondo', '空手道': 'karate', '武术': 'martial arts', '射箭': 'archery', '在': 'in', '的': 'is', '时间': 'time', '日期': 'date', '年份': 'year', '月份': 'month', '星期': 'week', '日历': 'calendar', '时钟': 'clock', '闹钟': 'alarm clock', '计时器': 'timer', '市作': 'Municipal Writers Association', '换届': 'election', '一官': 'official position', '副主': 'vice chairman', '选举': 'vote', '弄个': 'get a', '目标': 'goal', '专一': 'focused', '情况': 'situation', '市县两级': 'city and county levels', '作协': 'writers association', '文人': 'literati', '水平太低': 'too low level', '读不懂': 'cannot understand', '深刻内涵': 'profound connotation', '好奇': 'curious', '怀疑': 'doubtful', '商量': 'discuss', '打探': 'inquire', '书架': 'bookshelf', '作品集': 'collected works', '现代文学': 'modern literature', '公开承认': 'publicly acknowledge', '成长': 'growth', '成功': 'success', '帮助': 'help', '创作激情': 'creative passion', '灵感': 'inspiration', '初中': 'junior high school', '弃学': 'drop out of school', '务农': 'farm work', '暗恋': 'secretly in love with', '同班同学': 'classmate', '乡中心校': 'township central school', '山路': 'mountain road', '屁股一扭一扭': 'swaying buttocks', '痴迷': 'obsessed', '走神': 'distracted', '踩空': 'step on air', '滚下山崖': 'roll down the cliff', '摔断': 'break by falling', '伤腿发炎坏死': 'injured leg infected and necrotic', '截肢': 'amputate', '拐杖': 'crutch', '绕山没岭地走': 'wandering aimlessly around the mountain', '得了走疯病': 'got crazy walking disease', '人生前途': 'life prospects', '爹妈': 'parents', '陪': 'accompany', '城里人': 'city people', '锃明瓦亮': 'shiny', '镀铬': 'chrome plated', '笑呵呵': 'smiling', '望天崖': 'cliff looking up to the sky', '厌恶': 'disgusted', '游客': 'tourist', '沮丧': 'depressed', '自杀': 'commit suicide', '跳崖溺水': 'jump off the cliff and drown', '魂归一方净土': 'the soul returns to a pure land', '草丛': 'grass', '扑腾': 'flapping', '浮力': 'buoyancy', '岸边': 'shore', '掉海子底下': 'fall into the sea bottom', '救了我': 'saved me', '书法爱好者': 'calligraphy enthusiast', '毛笔字': 'brush calligraphy', '求他写字': 'ask him to write', '讨好': 'flatter', '考察工作': 'inspect work', '非常': 'very', '非常满意': 'very satisfied', '运动鞋': 'sneakers', '高跟鞋': 'high heels', '拖鞋': 'slippers', '皮鞋': 'leather shoes', '凉鞋': 'sandals', '帽子': 'hat', '手套': 'gloves', '围巾': 'scarf', '泳衣': 'swimsuit', '袜子': 'socks', '短裤': 'shorts', '背心': 'vest', '毛线帽': 'beanie', '卫衣': 'hoodie', '风衣': 'trench coat', '羽绒服': 'down jacket', '棉衣': 'cotton-padded jacket', '西装': 'suit', '领带': 'tie', '衬衫裙': 'shirt dress', '牛仔裤': 'jeans', '半身裙': 'skirt', '针织衫': 'knitwear', '打底裤': 'leggings', '马甲': 'waistcoat', '西装裤': 'dress pants', '夏装': 'summer clothes', '冬装': 'winter clothes', '眼睛': 'eyes', '鼻子': 'nose', '嘴巴': 'mouth', '耳朵': 'ears', '脸颊': 'cheeks', '额头': 'forehead', '下巴': 'chin', '眉毛': 'eyebrows', '睫毛': 'eyelashes', '眼皮': 'eyelids', '牙齿': 'teeth', '舌头': 'tongue', '喉咙': 'throat', '唇': 'lips', '笑容': 'smile', '皱纹': 'wrinkles', '粉刺': 'pimples', '黑眼圈': 'dark circles', '疤痕': 'scars', '胡须': 'beard', '鬓边': 'sideburns', '脖子': 'neck', '眼角': 'corners of eyes', '眼泪': 'tears', '嘴唇色': 'lip color', '皮肤': 'skin', '腮红': 'blush', '拔眉毛': 'pluck eyebrows', '化妆': 'makeup', '面容': 'facial features', '狗': 'dog', '猫': 'cat', '老虎': 'tiger', '熊': 'bear', '大象': 'elephant', '猩猩': 'gorilla', '长颈鹿': 'giraffe', '猴子': 'monkey', '狮子': 'lion', '斑马': 'zebra', '袋鼠': 'kangaroo', '犀牛': 'rhinoceros', '马': 'horse', '鲸鱼': 'whale', '海豚': 'dolphin', '企鹅': 'penguin', '鳄鱼': 'crocodile', '蛇': 'snake', '蜜蜂': 'bee', '蝴蝶': 'butterfly', '青蛙': 'frog', '鹦鹉': 'parrot', '鸽子': 'pigeon', '乌龟': 'turtle', '刺猬': 'hedgehog', '狐狸': 'fox', '松鼠': 'squirrel', '兔子': 'rabbit', '鹿': 'deer', '汽车': 'car', '卡车': 'truck', '摩托车': 'motorcycle', '自行车': 'bicycle', '巴士': 'bus', '出租车': 'taxi', '轮船': 'ship', '飞机': 'airplane', '火车': 'train', '地铁': 'subway', '直升机': 'helicopter', '滑板车': 'scooter', '拖拉机': 'tractor', '双层巴士': 'double-decker bus', '跑车': 'sports car', '警车': 'police car', '救护车': 'ambulance', '消防车': 'fire engine', '货车': 'freight truck', '越野车': 'off-road vehicle', '小轿车': 'sedan', '客车': 'coach', '高铁': 'high-speed train', '电动车': 'electric vehicle', '客机': 'passenger plane', '渡轮': 'ferry', '剑': 'sword', '枪': 'gun', '匕首': 'dagger', '弓箭': 'bow and arrow', '炮': 'cannon', '火枪': 'musket', '手榴弹': 'hand grenade', '飞刀': 'throwing knife', '长矛': 'spear', '大炮': 'artillery', '步枪': 'rifle', '机枪': 'machine gun', '火箭筒': 'rocket launcher', '铁锤': 'mace', '霰弹枪': 'shotgun', '冲锋枪': 'submachine gun', '加特林机枪': 'Gatling gun', '重剑': 'broadsword', '钢叉': 'trident', '晨星': 'morning star', '手枪': 'pistol', '鞭子': 'whip', '战斧': 'battle-axe', '长棍': 'staff', '薙刀': 'naginata', '投石器': 'catapult', '雷管': 'detonator', '快乐': 'happiness', '悲伤': 'sadness', '愤怒': 'anger', '焦虑': 'anxiety', '沮丧': 'depression', '恐惧': 'fear', '羞耻': 'shame', '兴奋': 'excitement', '失望': 'disappointment', '满足': 'contentment', '惊讶': 'surprise', '压力': 'stress', '乐观': 'optimism', '绝望': 'despair', '疑惑': 'confusion', '嫉妒': 'jealousy', '不安': 'unease', '孤独': 'loneliness', '好奇': 'curiosity', '无聊': 'boredom', '幸福': 'bliss', '感动': 'moved', '满意': 'satisfaction', '谦卑': 'humility', '自豪': 'pride', '满足感': 'fulfillment', '自信': 'confidence', '苹果': 'apple', '香蕉': 'banana', '橙子': 'orange', '柠檬': 'lemon', '柚子': 'grapefruit', '草莓': 'strawberry', '葡萄': 'grape', '西瓜': 'watermelon', '芒果': 'mango', '樱桃': 'cherry', '李子': 'plum', '奇异果': 'kiwi fruit', '菠萝': 'pineapple', '桃子': 'peach', '百香果': 'passion fruit', '火龙果': 'dragonfruit', '哈密瓜': 'cantaloupe', '甜瓜': 'honeydew melon', '榴莲': 'durian', '柿子': 'persimmon', '椰子': 'coconut', '杏子': 'apricot', '枇杷': 'loquat', '橄榄': 'olive', '山竹': 'mangosteen', '石榴': 'pomegranate', '荔枝': 'lychee', '柑橘': 'mandarin', '小的': 'small', '大的': 'big', '高的': 'tall', '矮的': 'short', '粗的': 'thick', '细的': 'thin', '长的': 'long', '短的': 'short', '宽的': 'wide', '窄的': 'narrow', '深的': 'deep', '浅的': 'shallow', '重的': 'heavy', '轻的': 'light', '富有弹性的': 'elastic', '硬的': 'hard', '软的': 'soft', '湿的': 'wet', '干的': 'dry', '冷的': 'cold', '热的': 'hot', '明亮的': 'bright', '暗淡的': 'dim', '清晰的': 'clear', '模糊的': 'blurry', '微笑': 'smile', '眼神': 'gaze', '表情': 'expression', '姿态': 'posture', '手势': 'gesture', '动作': ' movement', '语调': 'tone of voice', '面部表情': 'facial expression', '眉毛的动作': 'eyebrow movement', '嘴唇形态': 'lip shape', '眼睛的眨动': 'eye blinking', '皱眉': 'frown', '露齿而笑': 'grin', '目不转睛地看着': 'stare at', '眯起眼睛': 'squint', '眼泪汪汪': 'teary-eyed', '发怒': 'get angry', '高兴': 'happy', '沮丧': 'depressed', '吃惊': 'surprised', '困惑': 'puzzled', '羞': 'shy', '厌恶': 'disgusted', '惊恐': 'terrified', '紧张': 'nervous', '自豪': 'proud', '拿出来': 'take out', '装进去': 'put in', '递给': 'hand over', '夹在中间': 'sandwiched between', '举起': 'lift up', '拧开': 'unscrew', '拍打': 'pat', '抛出': 'throw out', '扔掉': 'throw away', '放下': 'put down', '塞进去': 'stuff in', '挥舞': 'wave around', '拦住': 'intercept', '合拢': 'close up', '翻转': 'flip over', '叉开': 'spread apart', '固定': 'fix', '紧握': 'grip tightly', '搭在': 'rest on', '捏住': 'pinch', '拖走': 'drag away', '抱着': 'hold on', '松开': 'loosen', '扭曲': 'twist', '确认': 'confirm', '鉴别': 'distinguish', '检验': 'inspect', '辨别': 'discern', '鉴定': 'evaluate', '测量': 'measure', '评估': 'assess', '识别': 'identify', '判断': 'judge', '分析': 'analyze', '核实': 'verify', '考察': 'examine', '权衡': 'weigh', '验证': 'validate', '测试': 'test', '审查': 'review', '调查': 'investigate', '推断': 'infer', '比较': 'compare', '探究': 'explore', '求证': 'ascertain', '采样': 'sample', '检测': 'detect', '研究': 'research', '观察': 'observe', '珍藏': 'treasure', '保留': 'preserve', '保存': 'save', '收集': 'collect', '整理': 'organize', '归档': 'file', '分类': 'categorize', '展示': 'display', '陈列': 'exhibit', '交换': 'exchange', '出售': 'sell', '购买': 'buy', '拍卖': 'auction', '评论': 'comment', '评级': 'rate', '分享': 'share', '上传': 'upload', '下载': 'download', '扫描': 'scan', '制作副本': 'make a copy', '修复': 'restore', '鉴定价值': 'appraise value', '寻找稀缺品': 'hunt for rare items', '赞美': 'praise', '仅仅': 'just', '必定': 'certainly', '肯定': 'surely', '完全': 'completely', '一定': 'definitely', '绝对': 'absolutely', '无疑': 'undoubtedly', '毫无疑问': 'beyond doubt', '必然': 'inevitably', '确定': 'determine', '果然': 'as expected', '真的': 'really', '不可避免': 'unavoidable', '正是': 'exactly', '当然': 'of course', '确凿无比': 'indisputably', '不容置疑': 'beyond question', '自然而然': 'naturally', '事实上': 'in fact', '确信': 'convinced', '毋庸置疑': 'without a doubt', '必须': 'must', '一定会': 'will certainly', '确凿': 'certain', '着实': 'indeed', '话说': 'speaking of', '顺便': 'incidentally', '借机': 'by the way', '反正': 'anyway', '总之': 'in short', '无奈': 'alas', '不然': 'otherwise', '一时': 'temporarily', '姑且': 'for the moment', '别扭': 'uncomfortable', '特意': 'specially', '幸好': 'fortunately', '可恶': 'hateful', '苦笑': 'wry smile', '不耐烦': 'impatient', '难怪': 'no wonder', '实话': 'truthfully', '原本': 'originally', '先前': 'previously', '偏偏': 'ironically', '当即': 'on the spot', '毕竟': 'after all', '独自': 'alone', '兜圈子': 'beating around the bush', '不易': 'difficult', '少见': 'rare', '难得': 'hard to come by', '别致': 'unique', '非凡': 'extraordinary', '珍贵': 'precious', '稀有': 'scarce', '罕见': 'uncommon', '奇特': 'peculiar', '异乎寻常': 'out of the ordinary', '无与伦比': 'unparalleled', '绝无仅有': 'one of a kind', '独一无二': 'unique and irreplaceable', '惊人': 'amazing', '抢手': 'in high demand', '引人注目': 'eye-catching', '极端': 'extreme', '前所未有': 'unprecedented', '卓越': 'outstanding', '难能可贵': 'priceless', '不可多得': 'irreplaceable', '深藏不露': 'keep well-hidden', '异常': 'exceptional', '鲜有人知': 'little known', '慰问': 'condolence', '安慰': 'consolation', '悲哀': 'grief', '同情': 'sympathy', '关怀': 'concern', '激励': 'encouragement', '关心': 'care', '抚慰': 'soothe', '感怀': 'appreciate', '勉励': 'urge', '祝福': 'blessing', '问候': 'greeting', '康复': 'recover', '慈善': 'charity', '同病相怜': 'empathize', '安泰': 'peaceful and safe', '宽慰': 'comfort', '关爱': 'love and care', '真切': 'sincere', '陪伴': 'accompanied', '振奋': 'inspire', '望眼欲穿': 'long to see someone', '垂问': 'ask after', '备受关注': 'receive great attention', '温馨': 'warm and cozy', '长的': 'long', '宽的': 'wide', '重的': 'heavy', '轻的': 'light', '快的': 'fast', '慢的': 'slow', '好的': 'good', '坏的': 'bad', '新的': 'new', '旧的': 'old', '大的': 'large', '小的': 'small', '亮的': 'bright', '暗的': 'dark', '热的': 'hot', '冷的': 'cold', '湿的': 'wet', '干的': 'dry', '软的': 'soft', '硬的': 'hard', '长': 'long', '宽': 'wide', '重': 'heavy', '轻': 'light', '快': 'fast', '慢': 'slow', '好': 'good', '坏': 'bad', '新': 'new', '旧': 'old', '大': 'large', '小': 'small', '亮': 'bright', '暗': 'dark', '热': 'hot', '冷': 'cold', '湿': 'wet', '干': 'dry', '软': 'soft', '硬': 'hard', '高': 'high', '低': 'low', '平': 'flat', '上': 'up', '下': 'down', '左': 'left', '右': 'right', '里': 'inside', '外': 'outside', '前': 'front', '后': 'back', '左前': 'left-front', '左后': 'left-back', '右前': 'right-front', '右后': 'right-back', '上前': 'up-front', '上后': 'up-back', '下前': 'down-front', '下后': 'down-back', '直': 'straight', '曲': 'curved', '圆': 'round', '方': 'square', '长方形': 'rectangle', '菱形': 'diamond', '正方形': 'square', '梯形': 'trapezoid', '椭圆形': 'oval', '三角形': 'triangle', '五边形': 'pentagon', '六边形': 'hexagon', '七边形': 'heptagonal', '八边形': 'octagon', '多边形': 'polygon', '尖': 'sharp', '钝': 'flat', '细': 'narrow', '粗': 'wide', '窄': 'tight', '宽': 'broad', '密集': 'dense', '密': 'dense', '疏': 'sparse', '厚': 'thick', '薄': 'thin', '强': 'strong', '弱': 'weak', '大': 'large', '小': 'small', '高': 'high', '低': 'low', '长': 'long', '短': 'short', '多': 'many', '少': 'few', '远': 'far', '近': 'near', '暖': 'warm', '冷': 'cold', '热': 'hot', '凉': 'cool', '硬': 'hard', '软': 'soft', '重': 'heavy', '轻': 'light', '干': 'dry', '湿': 'wet', '油': 'oil', '水': 'water', '香': 'fragrant', '臭': 'stinky', '白': 'white', '黑': 'black', '灰': 'gray', '红': 'red', '紫': 'purple', '蓝': 'blue', '绿': 'green', '黄': 'yellow', '棕': 'brown', '金': 'gold', '银': 'silver', '透明': 'transparent', '半透明': 'semi-transparent', '不透明': 'opaque', '舒适': 'comfortable', '不舒适': 'uncomfortable', '宽敞': 'spacious', '狭窄': 'narrow', '明亮': 'bright', '暗淡': 'dim', '光滑': 'smooth', '粗糙': 'rough', '平滑': 'flat', '波浪形': 'wave-like', '直线形': 'linear', '圆形': 'round', '方形': 'square', '长条形': 'long-shaped', '柔软': 'soft', '硬质': 'hard', '坚固': 'strong', '脆弱': 'fragile', '强壮': 'powerful', '健康': 'healthy', '虚弱': 'weak', '美丽': 'beautiful', '丑陋': 'ugly', '可爱': 'lovely', '讨厌': 'hateful', '聪明': 'smart', '愚蠢': 'stupid', '勇敢': 'brave', '懦弱': 'cowardly', '善良': 'kind', '邪恶': 'evil', '的': '', '背': 'back', '肩': 'shoulder', '腰': 'waist', '胸': 'chest', '腹': 'abdomen', '臀': 'hip', '膝': 'knee', '花': 'flower', '玫瑰': 'rose', '荷花': 'lotus', '菊花': 'chrysanthemum', '梅花': 'plum blossom', '兰花': 'orchid', '桃花': 'peach blossom', '郁金香': 'tulip', '牡丹': 'peony', '紫罗兰': 'violet', '银杏花': 'ginkgo blossom', '茉莉花': 'jasmine', '海棠花': 'crabapple blossom', '向日葵': 'sunflower', '铁线莲': 'spiderwort', '草': 'grass', '树': 'tree', '森林': 'forest', '丛林': 'jungle', '果树': 'fruit tree', '椰子树': 'coconut palm', '松树': 'pine tree', '枫树': 'maple tree', '橡树': 'oak tree', '柳树': 'willow tree', '竹子': 'bamboo', '仙人掌': 'cactus', '蒲公英': 'dandelion', '水': 'water', '火': 'fire', '风': 'wind', '土': 'earth', '山': 'mountain', '日': 'sun', '月': 'moon', '星': 'star', '云': 'cloud', '雨': 'rain', '雪': 'snow', '海': 'ocean', '湖': 'lake', '河': 'river', '岛': 'island', '鸟': 'bird', '兽': 'beast', '猫': 'cat', '狗': 'dog', '马': 'horse', '牛': 'cow', '羊': 'sheep', '猪': 'pig', '鱼': 'fish', '虫': 'insect', '蚂': 'ant', '蜘': 'spider', '蝴': 'butterfly', '蜻': 'dragonfly', '蝉': 'cicada', '螃': 'crab', '龟': 'turtle', '象': 'elephant', '狮': 'lion', '老': 'tiger', '熊': 'bear', '猴': 'monkey', '鹰': 'eagle', '雁': 'goose', '鸡': 'chicken', '鹅': 'duck', '鸭': 'swan', '蛇': 'snake', '蟹': 'lobster', '蚌': 'clam', '冰': 'ice', '雾': 'fog', '露': 'dew', '飞': 'fly', '跑': 'run', '走': 'walk', '钓': 'fish', '游': 'swim', '爬': 'crawl', '跳': 'jump', '唱': 'sing', '听': 'listen', '笑': 'laugh', '哭': 'cry', '喝': 'drink', '吃': 'eat', '看': 'see', '闻': 'smell', '摸': 'touch', '写': 'write', '读': 'read', '学': 'study', '做': 'do', '工': 'work', '睡': 'sleep', '休': 'rest', '玩': 'play', '乐': 'happy', '怒': 'angry', '搬': 'move', '收': 'collect', '放': 'put', '丢': 'throw', '捡': 'pick up', '照': 'photograph', '画': 'paint', '拍': 'take a picture', '签': 'sign', '发': 'send', '接': 'answer', '拒': 'reject', '迎': 'welcome', '约': 'make an appointment', '见': 'meet', '问': 'ask', '答': 'answer', '告': 'tell', '说': 'Speak', '聊': 'chat', '谈': 'discuss', '请': 'invite', '带': 'bring', '送': 'deliver', '帮': 'help', '指': 'point', '挥': 'wave', '敲': 'knock', '推': 'push', '拉': 'pull', '压': 'press', '拖': 'drag', '托': 'lift', '抬': 'carry', '放松': 'relax', '紧张': 'tense', '生气': 'angry', '快乐': 'happy', '悲伤': 'sad', '惊讶': 'surprised', '困惑': 'confused', '感到失望': 'disappointed', '满意': 'satisfied', '有信心': 'confident', '胆小': 'shy', '无助': 'helpless', '力': 'power', '能': 'ability', '快': 'fast', '慢': 'slow', '高': 'tall', '矮': 'short', '胖': 'fat', '瘦': 'thin', '早': 'early', '晚': 'late', '大': 'big', '小': 'small', '多': 'many', '少': 'few', '新': 'new', '旧': 'old', '长': 'long', '短': 'short', '易': 'easy', '难': 'difficult', '好': 'good', '坏': 'bad', '美': 'beautiful', '丑': 'ugly', '黑': 'black', '白': 'white', '红': 'red', '黄': 'yellow', '绿': 'green', '青': 'blue', '紫': 'purple', '金': 'gold', '银': 'silver', '酸': 'sour', '甜': 'sweet', '咸': 'salty', '辣': 'spicy', '苦': 'bitter', '涩': 'astringent', '软': 'soft', '硬': 'hard', '冷': 'cold', '热': 'hot', '凉': 'cool', '暖': 'warm', '干': 'dry', '湿': 'wet', '清': 'clear', '浑': 'turbid', '深': 'deep', '浅': 'shallow', '远': 'far', '近': 'near', '背': 'back', '前': 'front', '左': 'left', '右': 'right', '上': 'up', '下': 'down', '整': 'whole', '断': 'broken', '忙': 'busy', '闲': 'idle', '清': 'clean', '脏': 'dirty', '亮': 'bright', '暗': 'dark', '响': 'loud', '静': 'quiet', '小心': 'careful', '粗心': 'careless', '勤劳': 'diligent', '懒惰': 'lazy', '谦虚': 'humble', '傲慢': 'arrogant', '认真': 'serious', '轻浮': 'frivolous', '忠诚': 'loyal', '背叛': 'betray', '单纯': 'simple', '复杂': 'complicated', '贵': 'expensive', '便宜': 'cheap', '重': 'heavy', '轻': 'light', '简单': 'simple', '复杂': 'complex', '漂亮': 'pretty', '丑陋': 'ugly', '咳': 'cough', '看': 'look', '闻': 'smell', '吸': 'inhale', '喘': 'pant', '呼': 'exhale', '拍': 'pat', '抓': 'grab', '扯': 'tear', '割': 'cut', '弄': 'mess', '揉': 'rub', '推': 'push', '拉': 'pull', '拽': 'drag', '碰': 'touch', '挠': 'scratch', '刮': 'scrape', '摸': 'feel', '擦': 'wipe', '按': 'press', '捏': 'pinch', '拧': 'twist', '舔': 'lick', '嗅': 'sniff', '啃': 'gnaw', '咬': 'bite', '舀': 'scoop', '骑': 'ride', '弹': 'play (instrument)', '唱': 'sing', '跳': 'jump', '看': 'watch', '听': 'listen', '闻': 'smell', '品': 'taste', '摸': 'touch', '瞧': 'look', '吃': 'eat', '喝': 'drink', '嚼': 'chew', '啜': 'sip', '抖': 'shake', '拍': 'pat', '搓': 'rub', '泼': 'splash', '梳': 'comb', '插': 'insert', '刷': 'brush', '扫': 'sweep', '擦': 'wipe', '拖': 'drag', '挂': 'hang', '撑': 'prop up', '夹': 'clip', '写': 'write', '画': 'draw', '读': 'read', '吟': 'chant', '写': 'write', '想': 'think', '梦': 'dream', '记': 'remember', '忘': 'forget', '见': 'meet', '送': 'send', '告': 'tell', '讲': 'speak', '聊': 'chat', '问': 'ask', '答': 'answer', '握': 'grasp', '拥': 'embrace', '抱': 'hug', '推': 'push', '拉': 'pull', '捏': 'pinch', '按': 'press', '弯': 'bend', '扭': 'twist', '挠': 'scratch', '搓': 'rub', '跺': 'stomp', '打': 'beat', '撞': 'collide', '敲': 'knock', '磨': 'grind', '摇': 'shake', '踩': 'step on', '喊': 'yell', '叫': 'call', '唤': 'awaken', '笑': 'laugh', '哭': 'cry', '怒': 'rage', '闹': 'make noise', '安': 'comfort', '劝': 'urge', '催': 'urge on', '追': 'pursue', '逃': 'flee', '退': 'retreat', '勉': 'encourage', '谢': 'thank', '赞': 'praise', '贬': 'criticize', '责': 'blame', '怪': 'blame', '欺': 'cheat', '诈': 'deceive', '骗': 'swindle', '威': 'threaten', '恐': 'fear', '慑': 'deter', '惧': 'dread', '厌': 'disgust', '烦': 'annoyed', '忍': 'endure', '耐': 'tolerate', '受': 'accept', '拒': 'refuse', '敬': 'respect', '爱': 'love', '恨': 'hate', '怜': 'pity', '批': 'criticize', '夸': 'boast', '谴': 'condemn', '讽': 'satirize', '笑': 'laugh', '哭': 'cry', '唉': 'sigh', '喝': 'drink', '吃': 'eat', '嚼': 'chew', '啜': 'sip', '饱': 'full', '饿': 'hungry', '渴': 'thirsty', '味': 'taste', '香': 'fragrant', '臭': 'stinky', '甜': 'sweet', '苦': 'bitter', '辣': 'spicy', '咸': 'salty', '生': 'raw', '熟': 'cooked', '冷': 'cold', '热': 'hot', '硬': 'hard', '软': 'soft', '滑': 'slippery', '粘': 'sticky', '湿': 'wet', '干': 'dry', '润': 'moist', '毒': 'poisonous', '酸': 'sour', '甜': 'sweet', '苦': 'bitter', '辣': 'spicy', '淡': 'light', '浓': 'thick', '轻': 'light', '重': 'heavy', '宽': 'wide', '窄': 'narrow', '大': 'big', '小': 'small', '高': 'tall', '矮': 'short', '长': 'long', '短': 'short', '胖': 'fat', '瘦': 'thin', '漂': 'float', '沉': 'sink', '升': 'rise', '降': 'fall', '转': 'turn', '走': 'walk', '跑': 'run', '站': 'stand', '坐': 'sit', '躺': 'lie', '卧': 'recline', '俯': 'bend forward', '仰': 'lean back', '起': 'rise', '伏': 'prostrate', '爬': 'crawl', '行': 'move', '滚': 'roll', '爆': 'explode', '燃': 'burn', '灭': 'extinguish', '吹': 'blow', '叹': 'sigh', '嘘': 'hiss', '哄': 'coax', '拍': 'applaud', '鼓': 'drum', '唱': 'sing', '跳': 'jump', '舞': 'dance', '弹': 'play (music)', '奏': 'perform (music)', '画': 'paint', '雕': 'carve', '刻': 'engrave', '写': 'write', '读': 'read', '念': 'recite', '贴': 'paste', '粘': 'stick', '裁': 'cut (fabric)', '缝': 'sew', '绣': 'embroider', '编': 'knit', '扫': 'sweep', '拖': 'drag', '擦': 'wipe', '插': 'insert', '穿': 'wear', '戴': 'wear (accessories)', '藏': 'hide', '露': 'reveal', '睡': 'sleep', '醒': 'awake', '做': 'do', '学': 'study', '教': 'teach', '讲': 'speak', '听': 'listen', '看': 'see', '观': 'watch', '闻': 'smell', '品': 'taste', '感': 'feel', '想': 'think', '记': 'remember', '忘': 'forget', '算': 'calculate', '量': 'measure', '考': 'test', '试': 'try', '访': 'visit', '遇': 'encounter', '信': 'believe', '疑': 'doubt', '问': 'ask', '答': 'answer', '谈': 'discuss', '聊': 'chat', '交': '交朋友', '争': 'argue', '辩': 'debate', '对': 'face', '错': 'wrong', '背': 'back', '真': 'true', '假': 'false', '善': 'good', '恶': 'evil', '美': 'beautiful', '丑': 'ugly', '新': 'new', '旧': 'old', '深': 'deep', '浅': 'shallow', '高': 'high', '低': 'low', '远': 'far', '近': 'near', '广': 'wide', '窄': 'narrow', '多': 'many', '少': 'few', '强': 'strong', '弱': 'weak', '快': 'fast', '慢': 'slow', '暖': 'warm', '冷': 'cold', '热': 'hot', '湿': 'wet', '干': 'dry', '轻': 'light', '重': 'heavy', '简': 'simple', '复': 'complex', '难': 'difficult', '易': 'easy', '舒': 'comfortable', '紧': 'tight', '松': 'loose', '靠': 'rely on', '信': 'trust', '怕': 'afraid', '尊': 'respect', '爱': 'love', '恨': 'hate', '嫌': 'dislike', '赞': 'approve', '饰': 'decoration', '画': 'picture', '像': 'likeness', '形': 'shape', '体': 'body', '面': 'face', '口': 'mouth', '鼻': 'nose', '耳': 'ear', '眼': 'eye', '头': 'head', '手': 'hand', '脚': 'foot', '心': 'heart', '肝': 'liver', '肺': 'lung', '胃': 'stomach', '肾': 'kidney', '脾': 'spleen', '骨': 'bone', '血': 'blood', '汗': 'sweat', '泪': 'tear', '笑': 'smile', '哭': 'cry', '跑': 'run', '走': 'walk', '飞': 'fly', '游': 'swim', '爬': 'crawl', '跳': 'jump', '滑': 'slide', '翻': 'flip', '打': 'hit', '拍': 'pat', '握': 'grip', '搓': 'rub', '扔': 'throw', '抛': 'toss', '撕': 'tear', '割': 'cut', '捏': 'pinch', '按': 'press', '弯': 'bend', '扭': 'twist', '挠': 'scratch', '钩': 'hook', '压': 'press', '卡': 'card', '扣': 'fasten', '绕': 'wind', '系': 'tie', '解': 'loosen', '开': 'open', '关': 'close', '修': 'repair', '改': 'change', '换': 'exchange', '拆': 'disassemble', '装': 'assemble', '排': 'arrange', '整': 'tidy up', '清': 'clean', '脏': 'dirty', '饿': 'hungry', '渴': 'thirsty', '困': 'tired', '累': 'exhausted', '病': 'sick', '伤': 'injured', '拿': 'take', '放': 'put', '捡': 'pick up', '扛': 'carry on one’s shoulders', '举': 'lift', '提': 'hold up', '搬': 'move', '摆': 'place', '敲': 'knock', '拉': 'pull', '推': 'push', '挤': 'squeeze', '掀': 'lift off', '抽': 'draw out', '扯': 'pull', '揪': 'grab', '夹': 'clamp', '攥': 'grip tightly', '抱': 'hug', '拥': 'embrace', '拍': 'pat', '击': 'strike', '打': 'hit', '插': 'insert', '挂': 'hang', '点': 'touch', '捏': 'pinch', '钳': 'clamp', '叉': 'fork', '搭': 'build', '架': 'frame', '盖': 'cover', '捆': 'tie', '绑': 'bind', '扎': 'tie', '系': 'fasten', '编': 'weave', '纺': 'spin', '织': 'weave', '缝': 'sew', '补': 'patch', '配': 'match', '取': 'take', '走': 'walk', '跑': 'run', '飞': 'fly', '游': 'swim', '爬': 'crawl', '跳': 'jump', '滑': 'slide', '翻': 'flip', '打': 'hit', '拍': 'pat', '握': 'hold', '抓': 'grab', '扔': 'throw', '抛': 'toss', '撕': 'tear', '割': 'cut', '捏': 'pinch', '按': 'press', '弯': 'bend', '扭': 'twist', '挠': 'scratch', '划': 'row', '摘': 'pick', '拨': 'dial', '抬': 'lift', '掏': 'take out', '卸': 'unload', '垂': 'hang down', '膀': 'shoulder', '擎': 'hold up', '端': 'hold', '绕': 'wrap', '把': 'hold', '寻': 'find', '摸': 'touch', '搜': 'search for', '拣': 'choose', '抢': 'snatch', '攫': 'seize', '夺': 'seize', '借': 'borrow', '领': 'receive', '接': 'connect', '送': 'send', '寄': 'mail', '递': 'pass on', '交': 'exchange', '拿出': 'take out', '拿回': 'get back', '拿去': 'take away', '拿来': 'bring', '拿手': 'good at', '拿定': 'make sure', '拿稳': 'hold steady', '拿下': 'capture', '拿捏': 'grasp', '拿主意': 'make a decision', '他': 'he', '她': 'she', '它': 'it', '我们': 'we', '你们': 'you all', '他们': 'they', '自己': 'oneself', '互相': 'each other', '这个': 'this', '那个': 'that', '哪个': 'which', '任何': 'any', '一些': 'some', '全部': 'all', '许多': 'many', '少数': 'few', '大多数': 'most', '其他': 'other', '另一个': 'another', '不同的': 'different', '相同的': 'same', '一样的': 'similar', '更好的': 'better', '更坏的': 'worse', '最好的': 'best', '最坏的': 'worst', '主要的': 'main', '重要的': 'important', '普通的': 'ordinary', '特别的': 'special', '严重的': 'severe', '轻微的': 'slight', '容易的': 'easy', '困难的': 'hard', '可行的': 'feasible', '不可行的': 'infeasible', '可能的': 'possible', '不可能的': 'impossible', '满意的': 'satisfied', '不满意的': 'dissatisfied', '高兴的': 'happy', '悲伤的': 'sad', '累的': 'tired', '兴奋的': 'excited', '害怕的': 'afraid', '尴尬的': 'awkward', '困惑的': 'confused', '生气的': 'angry', '快乐的': 'joyful', '自豪的': 'proud', '感激的': 'grateful', '烦恼的': 'annoyed', '幸运的': 'lucky', '无聊的': 'bored', '温暖的': 'warm', '冷静的': 'calm', '深刻的': 'profound', '浅显的': 'superficial', '可怕的': 'terrible', '美好的': 'wonderful', '平凡的': 'ordinary', '幸福的': 'happy', '值得的': 'worthy', '一般的': 'ordinary', '不同意': 'disagree', '认为': 'think', '相信': 'believe', '知道': 'know', '理解': 'understand', '希望': 'hope', '喜欢': 'like', '讨厌': 'dislike', '爱': 'love', '感觉': 'feel', '记得': 'remember', '忘记': 'forget', '想要': 'want', '需要': 'need', '选择': 'choose', '决定': 'decide', '做出': 'make', '提供': 'offer', '接受': 'accept', '拒绝': 'refuse', '完成': 'complete', '失败': 'fail', '成功': 'succeed', '经历': 'experience', '参与': 'participate', '关心': 'care about', '支持': 'support', '帮助': 'help', '解决': 'solve', '改变': 'change', '发现': 'discover', '创造': 'create', '适应': 'adapt to', '保护': 'protect', '伤害': 'hurt', '负责': 'responsible for', '拥有': 'own', '享受': 'enjoy', '沉迷于': 'addicted to', '厌倦': 'tired of', '投入': 'devote to', '控制': 'control', '办': 'handle', '处理': 'process', '安排': 'arrange', '解决': 'solve', '完成': 'complete', '检查': 'check', '准备': 'prepare', '计划': 'plan', '组织': 'organize', '指导': 'guide', '教育': 'educate', '培训': 'train', '宣传': 'publicize', '营销': 'marketing', '沟通': 'communicate', '会议': 'meeting', '谈判': 'negotiate', '招待': 'entertain', '接待': 'receive', '招聘': 'recruit', '辞退': 'dismiss', '升迁': 'promotion', '晋升': 'advance', '降职': 'demote', '解雇': 'fire', '离职': 'resign', '加班': 'work overtime', '打卡': 'clock in and out', '请假': 'ask for leave', '休假': 'take a vacation', '考勤': 'attendance', '出差': 'on a business trip', '调休': 'adjust working hours', '交接班': 'shift change', '早班': 'morning shift', '晚班': 'evening shift', '中班': 'middle shift', '值班': 'be on duty', '轮班': 'rotating shift', '班次': 'shift schedule', '工作量': 'workload', '任务': 'task', '目标': 'goal', '成果': 'achievement', '效率': 'efficiency', '质量': 'quality', '进度': 'progress', '绩效': 'performance', '评价': 'evaluation', '奖励': 'reward', '惩罚': 'punishment', '福利': 'welfare', '保险': 'insurance', '工资': 'salary', '薪水': 'pay', '津贴': 'allowance', '补贴': 'subsidy', '福利待遇': 'benefits', '公司制度': 'company policy', '规章制度': 'rules and regulations', '职业发展': 'career development', '职务': 'position', '岗位': 'post', '工作环境': 'working environment', '员工关系': 'employee relations', '员工培训': 'employee training', '员工流动': 'employee turnover', '招标': 'bid', '投标': 'bid for', '标书': 'bidding document', '中标': 'win the bid', '竞争对手': 'competitor', '市场分析': 'market analysis', '市场调查': 'market research', '营销策略': 'marketing strategy', '广告宣传': 'advertising', '品牌形象': 'brand image', '产品设计': 'product design', '生产管理': 'production management', '工厂设备': 'factory equipment', '物料采购': 'material procurement', '物流管理': 'logistics management', '仓库管理': 'warehouse management', '供应链管理': 'supply chain management', '质量控制': 'quality control', '安全生产': 'safety production', '执行': 'execute', '审批': 'approve', '下发': 'issue', '核实': 'verify', '采取': 'adopt', '跟进': 'follow up', '推动': 'promote', '改进': 'improve', '协调': 'coordinate', '合作': 'cooperate', '培养': 'cultivate', '提升': 'enhance', '激励': 'motivate', '汇报': 'report', '反馈': 'feedback', '评估': 'evaluate', '整改': 'rectify', '干部': 'cadre', '员工': 'staff', '管理': 'management', '领导': 'leadership', '职责': 'responsibility', '任务': 'mission', '目标': 'objective', '效果': 'effect', '计划': 'programme', '预算': 'budget', '资金': 'fund', '拨款': 'grant', '借款': 'loan', '开支': 'expense', '收益': 'profit', '投资': 'investment', '股票': 'stock', '证券': 'security', '金融': 'finance', '银行': 'bank', '保险': 'insurance', '税务': 'taxation', '贪污': 'corruption', '公正': 'justice', '官僚': 'bureaucracy', '公务': 'official business', '自主': 'autonomous', '理性': 'rational', '平等': 'equality', '酒': 'wine', '搭': 'build', '架': 'frame', '盖': 'cover', '捆': 'tie', '绑': 'bind', '扎': 'tie', '汉': 'man', '士': 'gentleman', '爷': 'grandpa', '郎': 'young man', '子': 'son', '妹': 'younger sister', '姐': 'older sister', '娘': 'mother', '婆': 'old lady', '女': 'woman', '酒': 'wine', '啤': 'beer', '醇': 'liquor', '烈': 'strong', '酣': 'intoxicated', '废墟': 'ruin', '僵尸': 'zombie', '混乱': 'chaos', '灾难': 'disaster', '幸存者': 'survivor', '恐慌': 'panic', '重建': 'rebuild', '清理': 'clean up', '生存': 'survival', '逃离': 'escape', '震动': 'vibration', '震源': 'epicenter', '余震': 'aftershock', '地震': 'earthquake', '海啸': 'tsunami', '泥石流': 'mudslide', '山崩': 'landslide', '飓风': 'hurricane', '龙卷风': 'tornado', '暴雨': 'downpour', '火灾': 'fire', '烟雾': 'smoke', '灭火': 'extinguish fire', '警报': 'alarm', '逃生': 'evacuation', '救援': 'rescue', '扑救': 'firefighting', '起火点': 'point of origin', '燃烧': 'combustion', '明火': 'open flame', '烟囱': 'chimney', '自燃': 'spontaneous combustion', '水灾': 'flood', '洪水': 'deluge', '淹没': 'submerge', '抢险': 'disaster relief', '排水': 'drainage', '泄洪': 'flood discharge', '决堤': 'levee breach', '涨潮': 'high tide', '退潮': 'low tide', '防汛': 'flood control', '漫水': 'inundation', '锅': 'pot', '碗': 'bowl', '勺子': 'spoon', '叉子': 'fork', '刀': 'knife', '筷子': 'chopsticks', '炒锅': 'wok', '碟子': 'dish', '茶杯': 'teacup', '餐具': 'tableware', '烤盘': 'baking tray', '沙拉碗': 'salad bowl', '纸巾': 'tissue', '洗碗机': 'dishwasher', '切菜板': 'cutting board', '水壶': 'kettle', '炊具': 'cooking utensils', '厨房秤': 'kitchen scale', '咖啡杯': 'coffee cup', '煎锅': 'frying pan', '沙拉碗': 'salad bowl', '酒杯': 'wine glass', '玻璃杯': 'glass', '保鲜盒': 'food container', '冰箱': 'refrigerator', '微波炉': 'microwave oven', '烤箱': 'oven', '餐桌': 'dining table', '饭碗': 'rice bowl', '勺子': 'spoon', '叉子': 'fork', '刀': 'knife', '擀面杖': 'rolling pin', '糖罐': 'sugar bowl', '蒸锅': 'steamer', '锅铲': 'spatula', '调料架': 'spice rack', '灶台': 'stove', '茶壶': 'teapot', '水杯': 'water glass', '砧板': 'chopping block', '测量杯': 'measuring cup', '开瓶器': 'bottle opener', '瓶子': 'bottle', '干菜罐': 'drying rack', '油壶': 'oil bottle', '餐垫': 'placemat', '厨房纸巾架': 'paper towel holder', '一半': 'half', '一份': 'portion', '一斤': 'jin (500g)', '一打': 'dozen', '一整个': 'whole', '一条': 'a strip of', '一盒': 'a box of', '两个': 'two', '三个': 'three', '四个': 'four', '五个': 'five', '十个': 'ten', '一些': 'some', '许多': 'many', '大量的': 'a large amount of', '少量的': 'a small amount of', '足够的': 'enough', '充足的': 'sufficient', '不足的': 'insufficient', '全部的': 'all', '部分的': 'partial', '多余的': 'extra', '不必要的': 'unnecessary', '重量为': 'weighs', '一群': 'a group of', '一队': 'a team of', '一堆': 'a pile of', '一排': 'a row of', '一列': 'a column of', '一束': 'a bunch of', '一捆': 'a bundle of', '一包': 'a pack of', '一袋': 'a bag of', '一箱': 'a case of', '一罐': 'a can of', '一瓶': 'a bottle of', '一片': 'a sheet of', '一张': 'a piece of', '一份': 'a copy of', '一本': 'a book of', '一篇': 'an article of', '一首': 'a song of', '一支': 'a stick of', '一根': 'a stem of', '一条': 'a piece of', '一件': 'a piece of', '一位': 'a person of', '一家': 'a family of', '一队': 'a troop of', '一群': 'a crowd of', '一批': 'a batch of', '美': 'beautiful', '丑': 'ugly', '高': 'tall', '矮': 'short', '胖': 'fat', '瘦': 'thin', '壮': 'strong', '弱': 'weak', '黑': 'dark', '白': 'fair', '大': 'big', '小': 'small', '粗': 'thick', '细': 'thin', '长': 'long', '短': 'short', '圆': 'round', '方': 'square', '好': 'good', '坏': 'bad', '快': 'fast', '慢': 'slow', '香': 'fragrant', '臭': 'stinky', '急': 'hurried', '缓': 'slow-paced', '疾': 'swift', '徐': 'leisurely', '轻': 'light', '重': 'heavy', '迅': 'rapid', '悠': 'relaxed', '匆': 'hasty', '稳': 'steady', '跑': 'running', '走': 'walking', '飞': 'flying', '游': 'swimming', '爬': 'climbing', '滑': 'sliding', '冲': 'rushing', '划': 'paddling', '滚': 'rolling', '蹦': 'bouncing', '牙刷': 'toothbrush', '牙膏': 'toothpaste', '毛巾': 'towel', '肥皂': 'soap', '洗发水': 'shampoo', '护发素': 'conditioner', '沐浴露': 'body wash', '香皂': 'perfumed soap', '剃须刀': 'razor', '吹风机': 'hair dryer', '电动牙刷': 'electric toothbrush', '梳子': 'comb', '镜子': 'mirror', '草席': 'straw mat', '床垫': 'mattress', '枕头': 'pillow', '被子': 'quilt', '毯子': 'blanket', '拖鞋': 'slippers', '鞋子': 'shoes', '袜子': 'socks', '裤子': 'trousers', '衬衫': 'shirt', '外套': 'coat', '裙子': 'skirt', '内衣': 'underwear', '背包': 'backpack', '手提包': 'handbag', '钱包': 'wallet', '手机': 'mobile phone', '电视': 'television', '音响': 'stereo', '电脑': 'computer', '相机': 'camera', '手表': 'watch', '风': 'wind', '雨': 'rain', '云': 'cloud', '霜': 'frost', '雪': 'snow', '霾': 'haze', '雷': 'thunder', '电': 'lightning', '冰': 'ice', '烟': 'smoke', '火': 'fire', '沙': 'sand', '泥': 'mud', '雾': 'fog', '蒸': 'steam', '气': 'gas', '光': 'light', '影': 'shadow', '月': 'moon', '星': 'star', '日': 'sun', '山': 'mountain', '水': 'water', '草': 'grass', '花': 'flower', '木': 'wood', '石': 'stone', '土': 'soil', '沙': 'sand', '漠': 'desert', '石': 'stone', '岩': 'rock', '泥': 'mud', '土': 'soil', '浆': 'mixture', '汁': 'juice', '液': 'liquid', '油': 'oil', '霜': 'frost', '雪': 'snow', '冰': 'ice', '灰': 'ash', '尘': 'dust', '垃圾': 'garbage', '潮湿': 'damp', '湿润': 'moist', '干燥': 'dry', '清新': 'fresh', '臭气': 'stink', '芳香': 'fragrant', '刺鼻': 'pungent', '腐臭': 'putrid', '跑': 'run', '走': 'walk', '爬': 'climb', '跳': 'jump', '飞': 'fly', '游': 'swim', '滑': 'slide', '划': 'paddle', '滚': 'roll', '踢': 'kick', '打': 'hit', '投': 'throw', '接': 'catch', '追': 'chase', '逃': 'escape', '闪': 'dodge', '避': 'avoid', '撞': 'crash', '碰': 'collide', '擦': 'rub', '扔': 'toss', '喜': 'happy', '怒': 'angry', '哀': 'sad', '乐': 'joyful', '忧': 'worried', '惊': 'surprised', '悲': 'grief-stricken', '愤': 'outraged', '恼': 'annoyed', '痛': 'painful', '苦': 'bitter', '甜': 'sweet', '酸': 'sour', '辣': 'spicy', '咸': 'salty', '淡': 'tasteless', '紧': 'tense', '松': 'relaxed', '担': 'worried', '轻': 'light-hearted', '重': 'heavy-hearted', '害': 'nervous', '静': 'quiet', '闷': 'depressed', '愁': 'anxious', '烦': 'annoying', '追': 'chase', '抓': 'catch', '扔': 'throw', '踢': 'kick', '打': 'hit', '揍': 'beat up', '爬': 'climb', '翻': 'flip', '跳': 'jump', '滑': 'slide', '滚': 'roll', '摇': 'shake', '摆': 'swing', '荡': 'swing', '转': 'spin', '绕': 'twist', '扭': 'turn', '倒': 'fall over', '站': 'stand', '坐': 'sit', '躺': 'lie down', '走': 'walk', '散步': 'stroll', '飞': 'fly', '滑板': 'skateboard', '冲浪': 'surfing', '滑雪': 'skiing', '打游戏': 'play video games', '下棋': 'play chess', '玩具': 'toys', '乐器': 'musical instruments', '鱼': 'fish', '鲜': 'fresh', '鳞': 'scale', '鳍': 'fin', '鲤': 'carp', '鲫': 'crucian carp', '鲨': 'shark', '鲸': 'whale', '龙': 'dragon', '虾': 'shrimp', '蟹': 'crab', '贝': 'shellfish', '海': 'sea', '江': 'river', '溪': 'stream', '湖': 'lake', '渔': 'fishing', '钓': 'angling', '网': 'net', '船': 'boat', '桥': 'bridge', '岛': 'island', '浮': 'floating', '潜': 'diving', '泡': 'bubble', '池': 'pond', '面': 'noodles', '米': 'rice', '粉': 'flour/rice noodles', '馒': 'steamed bun', '包': 'dumplings', '饺': 'dumplings', '汤': 'soup', '卤': 'braise/stew', '炒': 'stir-fry', '煮': 'boil/cook', '烤': 'roast/bake', '蒸': 'steam', '煎': 'pan-fry', '炖': 'stew/simmer', '煲': 'simmer/stew', '炸': 'deep-fry/fry', '烫': 'blanch/parboil', '熏': 'smoke/cure', '拌': 'mix/toss', '涮': 'hot pot', '羹': 'thick soup', '粥': 'porridge/congee', '面条': 'noodles', '面包': 'bread', '糕点': 'pastries', '汉堡': 'hamburger', '披萨': 'pizza', '三明治': 'sandwich', '寿司': 'sushi', '酱油': 'soy sauce', '咖喱': 'curry', '虫': 'insect', '蚂': 'ant', '蚁': 'ant', '蜻': 'dragonfly', '蝉': 'cicada', '蟋': 'cricket', '螃': 'crab', '蛇': 'snake', '蜘': 'spider', '蝴': 'butterfly', '毛': 'hairy', '螺': 'snail', '蛤': 'clam', '融': 'melt', '蛾': 'moth', '蟑': 'cockroach', '蜥': 'lizard', '蟒': 'python', '蜈': 'centipede', '蜗': 'snail', '花': 'butterfly', '豆': 'bean beetle', '蚕': 'silkworm', '蜜蜂': 'honeybee', '蚊子': 'mosquito', '苍蝇': 'fly', '飞蛾': 'moth', '地鼠': 'mole', '蟆蛙': 'toad', '琴': 'musical instrument', '钢': 'steel', '弦': 'string', '和': 'with', '民': 'folk', '乐': 'music', '古': 'ancient', '现': 'modern', '扬': 'rise', '落': 'fall', '奏': 'play', '唱': 'sing', '听': 'listen', '音': 'sound', '声': 'voice', '调': 'tune', '曲': 'melody', '节': 'rhythm', '键': 'key', '音乐家': 'musician', '杂技': 'acrobatics', '表演': 'performance', '演奏': 'perform music', '作曲': 'compose music', '练习': 'practice', '体验': 'experience', '感受': 'feel', '书': 'book', '读': 'read', '写': 'write', '字': 'character', '文': 'literature/culture', '学': 'study/learn', '知': 'knowledge', '读物': 'reading material', '小说': 'novel', '传记': 'biography', '诗歌': 'poetry', '故事': 'story', '漫画': 'comic book', '杂志': 'magazine', '报纸': 'newspaper', '手册': 'manual/handbook', '解释': 'interpretation/explanation', '口述': 'oral tradition', '史诗': 'epic', '典籍': 'classical literature', '笔记': 'notes', '评论': 'criticism', '挑战': 'challenge', '探索': 'explore', '发现': 'discover', '创造': 'create', '思考': 'think', '想象': 'imagine', '体验': 'experience', '丢': 'lose', '遗': 'leave behind', '失': 'miss', '找不到': 'cannot be found', '寻找': 'search for', '捡': 'pick up', '归还': 'return', '拾': 'pick up', '失物': 'lost property', '遗失物品': 'lost and found items', '失踪': 'go missing/disappear', '招领': 'lost and found', '遗弃': 'abandon/discard', '丢人': 'lose face/embarrassed', '耽误时间': 'waste time', '忘记': 'forget', '疏忽': 'neglect/overlook', '犯错误': 'make a mistake', '错过机会': 'miss the opportunity', '掉落': 'fall off', '遗漏': 'omission', '丢失': 'lost', '寻物启事': 'lost and found notice', '线': 'thread', '绳': 'rope', '布': 'cloth', '针': 'needle', '缝': 'sew', '纺': 'spin', '编': 'weave/knit', '打结': 'tie a knot', '解开': 'untie/undo', '拉紧': 'tighten', '松开': 'loosen', '系': 'tie/fasten', '扎': 'tie/bind', '绑': 'tie/band', '穿过': 'thread through', '固定': 'fix/stabilize', '连接': 'connect', '断掉': 'break off', '打结': 'knot', '拆开': 'undo', '脱落': 'fall off', '电线': 'electric wire', '电话线': 'telephone line', '光纤': 'optical fiber', '网络线': 'network cable', '直线': 'straight line', '曲线': 'curve', '虚线': 'dashed line', '实线': 'solid line', '交叉线': 'crossing line', '平行线': 'parallel lines', '车': 'vehicle', '汽车': 'car/automobile', '卡车': 'truck', '自行车': 'bicycle', '摩托车': 'motorcycle', '公交车': 'bus', '腰带': 'sash', '锦袍': 'brocade robe', '长袍': 'long gown', '道鞋': 'Taoist shoes', '战靴': 'combat boots', '头冠': 'headpiece', '发簪': 'hairpin', '朝珠': 'court necklace', '耳环': 'earrings', '手镯': 'bracelets', '腕带': 'wristbands', '披风': 'cloak', '袍帽': 'robe and hat', '绸缎': 'silk fabric', '青花瓷': 'blue-and-white porcelain', '紫砂壶': 'purple clay teapot', '榻榻米': 'tatami', '屏风': 'folding screen', '炕': 'heated bed', '太极八卦图案': 'Tai Chi and Bagua motifs', '古琴': 'ancient qin instrument', '笛子': 'flute', '地铁': 'subway', '汉服': 'Han-style clothing', '唐装': 'Tang-style clothing', '明装': 'Ming-style clothing', '清装': 'Qing-style clothing', '民国装': 'Republic of China-style clothing', '齐胸襦裙': 'Qixiong Ruqun (a type of Hanfu)', '长衫': 'Changshan (a type of traditional Chinese clothing)', '袍褂': 'Pao Gua (a type of traditional Chinese clothing)', '旗袍': 'Cheongsam/Qipao (a type of traditional Chinese dress)', '对襟长衫': 'Duijin Changshan (a type of traditional Chinese clothing with symmetrical front flaps)', '绸裙': 'Chouqun (a type of traditional Chinese skirt)', '马褂': 'Magua (a type of traditional Chinese jacket)', '披风': 'Pifeng (a type of traditional Chinese cloak)', '长袖襕衫': 'Changxiu Lianshan (a type of traditional Chinese shirt with long sleeves)', '吊带襕衫': 'Diaodai Lianshan (a type of traditional Chinese shirt with straps)', '锦衣': 'Jinyi (a type of traditional Chinese imperial robe)', '龙袍': 'Longpao (a type of traditional Chinese imperial robe)', '军服': 'Military uniform', '武生服': 'Wusheng costume (a type of traditional Chinese theatrical costume)', '花旦服': 'Huadan costume (a type of traditional Chinese theatrical costume)', '丑角服': 'Choujue costume (a type of traditional Chinese theatrical costume)', '道教服饰': 'Daoist attire', '和服': 'traditional Japanese clothing', '袴': 'hakama (a type of traditional Japanese skirt)', '甲冑': 'armor', '振袖': 'furisode (a type of formal kimono for unmarried women)', '留袖': 'tomesode (a type of formal kimono for married women)', '喪服': 'mourning dress', '龙袍': 'dragon robe', '华服': 'court dress', '燕尾服': 'tailcoat', '侠客装': 'heroic costume', '扮演服': 'cosplay costume', '古风服饰': 'ancient-style clothing', '少数民族服饰': 'ethnic minority clothing', '民国服饰': 'Republic of China period clothing', '夏装': 'summer clothes', '冬装': 'winter clothes', '旅游服': 'travel clothes', '职业装': 'professional attire', '时尚潮流服饰': 'fashion clothing', '儒雅风格服饰': 'elegant style clothing', '休闲装': 'casual wear', '运动休闲服': 'sport casual wear', '街头风格服饰': 'street style clothing', '清凉装': 'cooling clothes', '防晒服': 'sun protection clothing', '舞蹈服装': 'dance costume', '演出服装': 'performance costume', '武术服饰': 'martial arts costume', '长衫': 'long gown', '褂子': 'jacket', '袍服': 'robe', '绸袍': 'silk robe', '罗裙': 'satin skirt', '霓裳羽衣': 'feathered robe with phoenix pattern', '羽織': 'haori (a type of jacket worn over a kimono)', '中世纪服饰': 'Medieval clothing', '文艺复兴服饰': 'Renaissance clothing', '高科技战斗服': 'High-tech combat suit', '能量护甲': 'Energy armor', '生化防护服': 'Biohazard suit', '智能机器人装备': 'Intelligent robot equipment', '超级士兵服装': 'Super soldier outfit', '未来战士服饰': 'Future warrior attire', '全息干扰衣': 'Holographic interference suit', '电磁屏障护甲': 'Electromagnetic barrier armor', '神秘黑色战衣': 'Mysterious black combat outfit', '超能力特训服': 'Psychic special training outfit', '太空航行服': 'Space travel suit', '时空旅者装备': 'Time traveler equipment', '潜水作战服': 'Underwater combat suit', '巴洛克时期服饰': 'Baroque period clothing', '洛可可时期服饰': 'Rococo period clothing', '维多利亚时期服饰': 'Victorian era clothing', '爵士乐时期服饰': 'Jazz age clothing', '二战时期服饰': 'World War II era clothing', '草原牧民服饰': 'Nomadic clothing', '苏格兰裙装': 'Scottish kilts', '皇室礼仪服饰': 'Royal ceremonial attire', '伊丽莎白时期服饰': 'Elizabethan era clothing', '短裙革命时期服饰': 'Mini skirt revolution clothing', '嬉皮士服饰': 'Hippie clothing', '摇滚朋克时期服饰': 'Rock and punk era clothing', '哥特风格服饰': 'Gothic style clothing', '弗拉门戈舞蹈服饰': 'Flamenco dance attire', '西部牛仔服饰': 'Western cowboy clothing', '剧院戏服': 'Theatrical costumes', '婚礼礼服': 'Wedding attire', '舞会晚礼服': 'Ballroom gowns', '珠宝首饰': 'Jewelry accessories', '着物': 'kimono', '浴衣': 'yukata (a type of lightweight summer kimono)', '襦袢': 'juban (a type of undergarment worn beneath a kimono)', '下駄': 'geta (a type of traditional Japanese wooden sandals)', '草履': 'zori (a type of flat sandal worn with a kimono)', '笠': 'kasa (a type of straw hat)', '帯': 'obi (a type of sash worn with a kimono)', '扇子': 'sensu (a type of folding fan)', '半纏': 'hanten (a type of short coat)', '鎧兜': 'kabuto (a type of helmet worn with armor)', '籠手': 'tekkou (a type of hand protector worn with armor)', '胴丸': 'doumaru (a type of chest protector worn with armor)', '袴姿': 'hakamashita (a type of samurai formal wear)', '舞踏会': 'butoh-kai (a type of ballroom attire)', '茶道服': 'chadou-fuku (a type of attire worn during tea ceremony)', '芸者': 'geisha attire', '武家婦人': 'buke-fujin (a type of samurai wife attire)', '足袋': 'tabi (a type of traditional Japanese socks)', '佛教服饰': 'Buddhist attire', '民间服饰': 'Folk costume', '蒙古族服饰': 'Mongolian costume', '藏族服饰': 'Tibetan costume', '维吾尔族服饰': 'Uyghur costume', '朝鲜族服饰': 'Korean costume', '满族服饰': 'Manchu costume', '苗族服饰': 'Miao costume', '彝族服饰': 'Yi costume', '壮族服饰': 'Zhuang costume', '布依族服饰': 'Buyi costume', '土家族服饰': 'Tujia costume', '哈尼族服饰': 'Hani costume', '白族服饰': 'Bai costume', '侗族服饰': 'Dong costume', '傣族服饰': 'Dai costume', '纳西族服饰': 'Naxi costume', '京剧戏服': 'Peking opera costume', '昆曲戏服': 'Kunqu opera costume', '火车': 'train', '飞机': 'airplane', '轮船': 'ship', '出租车': 'taxi/cab', '救护车': 'ambulance', '警车': 'police car', '消防车': 'fire truck', '货车': 'freight truck', '客车': 'passenger bus', '司机': 'driver', '乘客': 'passenger', '路标': 'traffic sign', '红绿灯': 'traffic light', '高速公路': 'highway', '桥': 'bridge', '隧道': 'tunnel', '停车场': 'parking lot', '驾驶': 'drive', '加油站': 'gas station', '充电站': 'charging station', '变速器': 'transmission', '方向盘': 'steering wheel', '刹车': 'brake', '加速器': 'accelerator', '轮胎': 'tire', '发动机': 'engine', '火车': 'train', '站台': 'platform', '铁路': 'railway', '轨道': 'track', '车厢': 'carriage', '头等舱': 'first class cabin', '卧铺': 'sleeper', '硬座': 'hard seat', '软座': 'soft seat', '高铁': 'high-speed train', '动车': 'bullet train', '普速列车': 'ordinary train', '货运列车': 'freight train', '绿皮车': 'old-style carriage', '自助餐车': 'buffet car', '乘务员': 'train attendant', '列车长': 'train conductor', '检票员': 'ticket inspector', '电子客票': 'electronic ticket', '站票': 'standing ticket', '硬卧': 'hard sleeper', '软卧': 'soft sleeper', '到站时间': 'arrival time', '发车时间': 'departure time', '候车室': 'waiting room', '售票处': 'ticket office', '退票': 'refund ticket', '改签': 'change ticket', '魔': 'magic/evil spirit', '巫': 'witch/shaman', '妖': 'demon/monster', '妖怪': 'goblin', '幽灵': 'ghost/spirit', '神秘': 'mysterious', '诡异': 'strange', '邪恶': 'evil', '迷惑': 'bewilderment', '诱惑': 'temptation', '魅力': 'charm', '黑暗': 'darkness', '带有魔力的': 'charmed', '施魔法': 'cast a spell', '魔术师': 'magician', '魔法': 'magic/spell', '魔杖': 'wand', '魔力无穷': 'endless magic power', '降魔': 'subdue demons', '驱魔': 'exorcism', '除魔': 'devil extermination', '龙': 'dragon', '神兽': 'mythical creature', '传说': 'legendary', '翅膀': 'wings', '鳞片': 'scales', '威风凛凛': 'majestic', '水龙': 'water dragon', '金龙': 'golden dragon', '蛟龙': 'sea serpent', '龙年': 'Year of the Dragon', '舞龙': 'dragon dance', '画龙点睛': 'putting the finishing touch', '龙卷风': 'tornado', '龙虾': 'lobster', '龙舟': 'dragon boat', '龙凤呈祥': 'auspicious', '巨龙': 'giant dragon', '猛': 'fierce/ferocious', '凶猛': 'savage', '威猛': 'strong/mighty', '勇猛': 'brave/courageous', '猛兽': 'ferocious animal', '猛攻': 'fierce attack', '猛扑': 'pounce/fly at', '猛冲': 'rush madly', '猛跳': 'jump high', '猛涨': 'rise rapidly', '猛增': 'increase sharply', '猛烈': 'violent/severe', '猛然': 'suddenly', '猛地': 'suddenly/sharply', '猛虎': 'fierce tiger', '猛龙': 'fierce dragon', '猛禽': 'bird of prey', '猛火': 'blazing fire', '猛料': 'exclusive news', '猛犸': 'mammoth', '持': 'hold/keep', '持续': 'continue/last', '坚持': 'persist/insist', '支持': 'support', '承担': 'undertake/bear', '保持': 'maintain/keep', '拥有': 'possess/have', '持久': 'enduring', '持家': 'manage a household', '持证上岗': 'holding a certificate for a job', '持不同政见': 'having different political views', '持股': 'holding stocks', '持平': 'be even', '持币待购': 'wait and see', '光': 'light', '明亮': 'bright', '发光': 'shine/glow', '光芒': 'radiance/brilliance', '光线': 'ray of light/beam', '闪光': 'flash/glimmer', '光秃秃': 'bare and desolate', '光辉': 'splendor/radiance', '耀眼': 'dazzling/blinding', '光彩': 'glory/radiance', '光顾': 'visit', '光阴': 'time', '日光': 'sunlight', '月光': 'moonlight', '灯光': 'lighting', '电光': 'electric light', '火光': 'flame', '霓虹灯': 'neon light', '探照灯': 'searchlight', '光盘': 'CD/DVD', '棱镜': 'prism', '透镜': 'lens', '反射': 'reflection', '折射': 'refraction', '光谱': 'spectrum', '哈': 'ha/laugh', '哈哈大笑': 'burst out laughing', '哈欠': 'yawn', '哈密瓜': 'cantaloupe', '在家洗脸': 'Looking in the mirror and washing your face in the bathroom', '哈佛大学': 'Harvard University', '哈尔滨': 'Harbin', '哈巴狗': 'Havanese', '哈达迪': 'Haddadi', '哈萨克斯坦': 'Kazakhstan', '哈密市': 'Hami city', '哈日族': 'Harajuku tribe', '哈尼族': 'Hani ethnic group', '嘿哈': 'hey ha', '突然': 'be confound at', '吃饭': 'eat meal', '喝水': 'drink water', '睡觉': 'sleep', '起床': 'Sitting in bed', '洗脸': 'wash face', '刷牙': 'brush teeth', '洗澡': 'take a shower/bath', '穿衣服': 'put on clothes', '换衣服': 'change clothes', '打扫房间': 'clean the room', '做家务': 'do housework', '煮饭': 'cook rice', '洗碗': 'wash dishes', '打电话': 'make a phone call', '发信息': 'send a message', '看电视': 'watch TV', '听音乐': 'listen to music', '上网': 'surf the Internet', '散步': 'take a walk', '跑步': 'go for a run', '游泳': 'swim', '打篮球': 'play basketball', '踢足球': 'play soccer', '练瑜伽': 'practice yoga', '读书': 'read books', '写字': 'write characters', '工作': 'work/job', '学习': 'study/learn', '交通': 'traffic/transportation', '旅行': 'travel/journey', '购物': 'shopping', '娱乐': 'entertainment', '约会': 'date/appointment', '聚会': 'get-together/party', '休息': 'rest/break', '放松': 'relax/unwind', '压力': 'pressure/stress', '时间': 'time', '空闲': 'leisure/free time', '生活方式': 'lifestyle', '节奏': 'pace/rhythm', '平衡': 'balance/equilibrium', '品质': 'quality', '健康': 'health/healthy', '幸福': 'happiness/bliss', '成就感': 'sense of achievement', '爱情': 'love/romance', '友谊': 'friendship', '家庭': 'family/household', '社会': 'society/community', '牛': 'ox/cow', '羊': 'sheep', '马': 'horse', '猪': 'pig', '鸡': 'chicken', '鸭': 'duck', '鹅': 'goose', '兔': 'rabbit', '蜜蜂': 'bee', '蚕': 'silkworm', '犬': 'dog', '猫': 'cat', '鱼': 'fish', '龟': 'turtle/tortoise', '蛇': 'snake', '鳄鱼': 'crocodile/alligator', '驴': 'donkey', '驼': 'camel', '水牛': 'water buffalo', '乳牛': 'dairy cow', '肉牛': 'beef cattle', '绵羊': 'merino sheep', '山羊': 'mountain goat', '之前': 'before', '之后': 'after', '之一': 'one of', '之二': 'two of', '之三': 'three of', '之所以': 'the reason why', '之内': 'within', '之外': 'beyond/outside', '之间': 'between/among', '之乎者也': 'the ultimate truth', '其中': 'among them/within which', '之际': 'on the occasion of', '之遥': 'far away from', '不能': 'cannot/must not', '不可': 'forbidden/taboo', '不得': 'must not/cannot', '不可思议': 'unthinkable/unspeakable', '不幸': 'unfortunate/sad', '不安': 'uneasy/uneven', '不足': 'insufficient/not enough', '不妥': 'inappropriate/improper', '不堪': 'unbearable/unable to endure', '吻': 'kiss', '吻戏': 'kissing scene', '吻合度': 'congruence', '吻痕': 'love bite', '吻她': 'kiss her', '吻他': 'kiss him', '吻别': 'farewell kiss', '吻上': 'lock lips', '吻足': 'satisfy one\'s desire for kisses', '吻到': 'land a kiss on', '抱': 'hug', '抱怨': 'complain', '抱负': 'aspiration', '拥抱': 'embrace', '搂抱': 'clasp in arms', '抱持': 'hold on to', '抱歉': 'apology', '抱佛脚': 'last-minute attempt', '抱团取暖': 'seek comfort in numbers', '抱养': 'adopt and raise a child', '肤色': 'skin color', '萝卜素': 'carotene', '美白': 'skin whitening', '黑人': 'black people', '肤浅': 'superficial', '黄种人': 'yellow race', '棕色人种': 'brown race', '有色人种': 'people of color', '皮肤': 'skin', '褐色': 'brownish', '国家': 'country', '中国': 'China', '美国': 'United States', '日本': 'Japan', '俄罗斯': 'Russia', '德国': 'Germany', '英国': 'United Kingdom', '法国': 'France', '加拿大': 'Canada', '印度': 'India', '韩国': 'Korea', '意大利': 'Italy', '巴西': 'Brazil', '澳大利亚': 'Australia', '墨西哥': 'Mexico', '埃及': 'Egypt', '阿根廷': 'Argentina', '瑞士': 'Switzerland', '荷兰': 'Netherlands', '挪威': 'Norway', '温度': 'temperature', '摄氏度': 'Celsius', '华氏度': 'Fahrenheit', '冷': 'cold', '热': 'hot', '温暖': 'warm', '寒冷': 'chilly', '高温': 'high temperature', '低温': 'low temperature', '体温': 'body temperature', '雪': 'snow', '下雪': 'snowing', '雪景': 'snowscape', '雪地': 'snowfield', '雪人': 'snowman', '打雪仗': 'have a snowball fight', '滑雪': 'skiing', '雪花': 'snowflake', '飘雪': 'snowfall', '积雪': 'snow accumulation', '火': 'fire', '着火': 'catch fire', '火焰': 'flame', '烈火': 'blaze', '灯火通明': 'brightly lit', '点火': 'ignite', '火烧眉毛': 'urgent', '火山': 'volcano', '火车': 'train', '颜色': 'color', '红色': 'red', '黄色': 'yellow', '蓝色': 'blue', '绿色': 'green', '黑色': 'black', '白色': 'white', '紫色': 'purple', '橙色': 'orange', '粉色': 'pink', '金色': 'auratus', '银色': 'silver', '灰色': 'gray', '棕色': 'brown', '青色': 'cyan', '深蓝色': 'navy blue', '浅蓝色': 'sky blue', '墨绿色': 'dark green', '深紫色': 'deep purple', '米色': 'beige', '藏青色': 'dark blue', '栗色': 'chestnut brown', '深灰色': 'dark gray', '浅紫色': 'lavender', '天蓝色': 'baby blue', '橄榄绿': 'olive green', '铁灰色': 'iron gray', '茶色': 'tea brown', '赤红色': 'scarlet red', '暗红色': 'burgundy', '草绿色': 'grass green', '米黄色': 'cream yellow', '淡黄色': 'light yellow', '柠檬绿': 'lime green', '桔黄色': 'tangerine', '酒红色': 'wine red', '海蓝色': 'turquoise', '淡绿色': 'pale green', '玫瑰红': 'rose pink', '打开': 'open', '关闭': 'close', '开关': 'switch', '启动': 'start', '机器': 'machine', '设备': 'equipment', '传动': 'transmission', '控制': 'control', '仪表': 'instrument', '检测': 'detection', '加工': 'processing', '工装': 'fixture', '制模': 'molding', '压铸': 'die-casting', '注塑': 'injection', '激光': 'laser', '焊接': 'welding', '切割': 'cutting', '钻孔': 'drilling', '磨削': 'grinding', '喷涂': 'spraying', '吸尘': 'vacuuming', '检验': 'inspection', '维修': 'maintenance', '清洗': 'cleaning', '包装': 'packaging', '运输': 'transportation', '储存': 'storage', '配件': 'accessory', '零件': 'component', '滤清': 'filtration', '润滑': 'lubrication', '冷却': 'cooling', '蔬菜': 'vegetables', '水果': 'fruits', '肉类': 'meat', '海鲜': 'seafood', '米饭': 'rice', '面条': 'noodles', '面包': 'bread', '糖果': 'candy', '巧克力': 'chocolate', '奶酪': 'cheese', '牛奶': 'milk', '鸡蛋': 'eggs', '豆腐': 'tofu', '沙拉': 'salad', '汤': 'soup', '三明治': 'sandwich', '炒饭': 'fried rice', '炸鸡': 'fried chicken', '蟹黄堡': 'crab burger', '烤肉': 'grilled meat', '火锅': 'hot pot', '披萨': 'pizza', '意大利面': 'spaghetti', '冰淇淋': 'ice cream', '甜点': 'dessert', '糕点': 'pastry', '小吃': 'snacks', '饮料': 'beverages', '啤酒': 'beer', '晴天': 'sunny', '阴天': 'cloudy', '多云': 'partly cloudy', '雨天': 'rainy', '下雨': 'raining', '雷雨': 'thunderstorm', '暴风雨': 'storm', '雪天': 'snowy', '下雪': 'snowing', '冰雹': 'hail', '霜冻': 'frost', '台风': 'typhoon', '气温': 'temperature', '湿度': 'humidity', '气压': 'atmospheric pressure', '大气污染': 'air pollution', '自然灾害': 'natural disaster', '天文现象': 'astronomical phenomenon', '日出': 'sunrise', '日落': 'sunset', '月相': 'moon phase', '星座': 'constellation', '流星': 'meteor', '彩虹': 'rainbow', '风向': 'wind direction', '风速': 'wind speed', '红': 'red', '黄': 'yellow', '蓝': 'blue', '绿': 'green', '黑': 'black', '白': 'white', '紫': 'purple', '灰': 'gray', '粉': 'pink', '橙': 'orange', '棕': 'brown', '金': 'gold', '银': 'silver', '青': 'cyan', '艳': 'bright', '深': 'dark', '浅': 'light', '鲜': 'fresh', '暗': 'dull', '透明': 'transparent', '不透明': 'opaque', '闪光': 'sparkling', '亮': 'bright', '暖': 'warm', '冷': 'cold', '柔和': 'soft', '刺眼': 'glaring', '清爽': 'crisp', '外套': 'jacket', 'T恤': 't-shirt', '裙子': 'skirt', '裤子': 'pants', '牛仔裤': 'jeans', '连衣裙': 'dress', '衬衫': 'shirt', '毛衣': 'sweater', '卫衣': 'hoodie', '运动服': 'sportswear', '羽绒服': 'down jacket', '大衣': 'coat', '风衣': 'trench coat', '皮衣': 'leather jacket', '西装': 'suit', '领带': 'tie', '围巾': 'scarf', '手套': 'gloves', '帽子': 'hat', '鞋子': 'shoes', '高跟鞋': 'high heels', '凉鞋': 'sandals', '运动鞋': 'sneakers', '靴子': 'boots', '拖鞋': 'slippers', '皮带': 'belt', '袜子': 'socks', '内衣': 'underwear', '海洋': 'ocean', '海岸线': 'coastline', '海湾': 'bay', '海峡': 'strait', '海沟': 'trench', '珊瑚礁': 'coral reef', '沙滩': 'beach', '潮汐': 'tide', '浪花': 'breakers', '海浪': 'waves', '漩涡': 'whirlpool', '海鸥': 'seagull', '海藻': 'seaweed', '海星': 'starfish', '海马': 'seahorse', '海豚': 'dolphin', '鲸鱼': 'whale', '海盗': 'pirate', '帆船': 'sailboat', '拖网': 'trawl', '捕鱼': 'fishing', '船只': 'vessel', '港口': 'port', '海事': 'maritime', '海底': 'seabed', '深海': 'deep sea', '海平面': 'sea level', '海啸': 'tsunami', '飓风': 'hurricane', '海上风电': 'offshore wind power', '海运': 'shipping', '军队': 'military', '战争': 'war', '武器': 'weapon', '弹药': 'ammunition', '坦克': 'tank', '步枪': 'rifle', '手枪': 'pistol', '导弹': 'missile', '火箭': 'rocket', '炮弹': 'shell', '舰艇': 'warship', '潜艇': 'submarine', '战斗机': 'Fighter aircraft', '轰炸机': 'bomber', '直升机': 'helicopter', '雷达': 'radar', '通信': 'communication', '情报': 'intelligence', '防空': 'air defense', '反潜': 'anti-submarine', '侦察': 'reconnaissance', '特种部队': 'special forces', '陆军': 'army', '海军': 'navy', '空军': 'air force', '后勤': 'logistics', '军事演习': 'military exercise', '联合行动': 'joint operation', '作战计划': 'battle plan', '军威': 'military might', '征兵': 'conscription', '服役': 'military service', '退役军人': 'veteran', '男性': '((man))', '女性': 'female', '性别': 'gender', '异性恋': 'heterosexual', '同性恋': 'homosexual', '双性恋': 'bisexual', '跨性别': 'transgender', '变性人': 'transsexual', '性别认同': 'gender identity', '性取向': 'sexual orientation', '爱情': 'love', '婚姻': 'marriage', '约会': 'date', '恋爱': 'romance', '分手': 'breakup', '失恋': 'heartbreak', '妊娠': 'pregnancy', '避孕': 'contraception', '流产': 'abortion', '生育': 'fertility', '月经': 'menstruation', '更年期': 'menopause', '乳腺癌': 'breast cancer', '前列腺癌': 'prostate cancer', '性骚扰': 'sexual harassment', '性暴力': 'sexual violence', '家庭暴力': 'domestic violence', '儿童虐待': 'child abuse', '性教育': 'sex education', '男': '(man)', '女': 'female', '性': 'gender', '爱': 'love', '婚': 'marriage', '约': 'date', '恋': 'romance', '孕': 'pregnancy', '避': 'contraception', '育': 'fertility', '经': 'menstruation', '暴': 'violence', '教': 'education', '戒': 'abstinence', '忠': 'loyalty', '贞': 'chastity', '绸': 'silk', '缎': 'satin', '绵': 'cotton', '羊': 'wool', '皮': 'leather', '麻': 'hemp', '袍': 'robe', '裤': 'pants', '裙': 'skirt', '衫': 'shirt', '服': 'clothes', '帽': 'hat', '鞋': 'shoes', '靴': 'boots', '情': 'emotion', '爱情': 'romantic love', '家庭': 'family', '友情': 'friendship', '亲情': 'kinship', '关心': 'care', '温暖': 'warmth', '陪伴': 'companionship', '依赖': 'reliance', '承诺': 'commitment', '忠诚': 'loyalty', '信任': 'trust', '喜欢': 'like', '欣赏': 'appreciation', '赞美': 'praise', '崇拜': 'worship', '浪漫': 'romance', '牵挂': 'concern', '思念': 'missing', '拥抱': 'embrace', '亲吻': 'kiss', '感激': 'gratitude', '感动': 'touching', '愉悦': 'delight', '幸福': 'happiness', '悲伤': 'sadness', '失落': 'disappointment', '心痛': 'heartache', '分手': 'breakup', '失恋': 'heartbreak', '相守': 'be together', '相知': 'understanding', '白头偕老': 'grow old together', '脸颊': 'cheek', '眉毛': 'eyebrow', '睫毛': 'eyelash', '眼皮': 'eyelid', '眼球': 'eyeball', '额头': 'forehead', '耳朵': 'ear', '鼻子': 'nose', '嘴唇': 'lip', '牙齿': 'tooth', '舌头': 'tongue', '下巴': 'chin', '脖子': 'neck', '肩膀': 'shoulder', '胳膊': 'arm', '肘部': 'elbow', '手腕': 'wrist', '手掌': 'palm', '手指': 'finger', '指甲': 'nail', '胸部': 'chest', '背部': 'back', '腰部': 'waist', '臀部': 'buttocks', '大腿': 'thigh', '小腿': 'calf', '脚踝': 'ankle', '乳房': 'breast', '胸罩': 'bra', '乳头': 'nipple', '乳晕': 'areola', '乳腺': 'mammary gland', '项链': 'necklace', '手链': 'bracelet', '耳环': 'earring', '戒指': 'ring', '发夹': 'hair clip', '发带': 'headband', '发饰': 'hair accessory', '胸针': 'brooch', '袖扣': 'cufflinks', '领带': 'tie', '领结': 'bow tie', '领花': 'boutonniere', '项圈': 'collar', '腰带': 'belt', '手套': 'glove', '丝巾': 'scarf', '披肩': 'shawl', '手提包': 'handbag', '单肩包': 'shoulder bag', '书包': 'backpack', '挎包': 'satchel', '钱包': 'wallet', '手机壳': 'phone case', '手表': 'watch', '眼镜': 'glasses', '街道': 'street', '广场': 'square', '公园': 'park', '商业区': 'business district', '居民区': 'residential area', '市中心': 'downtown', '郊区': 'suburb', '市政府': 'city hall', '警察局': 'police station', '消防局': 'fire station', '医院': 'hospital', '学校': 'school', '大学': 'university', '图书馆': 'library', '博物馆': 'museum', '剧院': 'theater', '电影院': 'cinema', '餐厅': 'restaurant', '咖啡馆': 'cafe', '购物中心': 'shopping mall', '超市': 'supermarket', '火车站': 'train station', '地铁站': 'subway station', '机场': 'airport', '建筑': 'building', '住宅楼': 'apartment building', '别墅': 'villa', '公寓': 'condominium', '办公楼': 'office building', '商场': 'mall', '酒店': 'hotel', '旅馆': 'inn', '公共厕所': 'public toilet', '教堂': 'church', '清真寺': 'mosque', '寺庙': 'temple', '城墙': 'city wall', '塔': 'tower', '桥': 'bridge', '隧道': 'tunnel', '地铁隧道': 'subway tunnel', '机场跑道': 'runway', '码头': 'wharf', '海关': 'customs', '车站': 'station', '停车场': 'parking lot', '哭': 'cry', '流泪': 'tear up', '悲伤': 'sad', '痛苦': 'painful', '失落': 'depressed', '心碎': 'heartbroken', '沮丧': 'disheartened', '忧愁': 'worried', '焦虑': 'anxious', '恐惧': 'fearful', '惊恐': 'terrified', '愤怒': 'angry', '生气': 'mad', '烦躁': 'irritated', '不安': 'uneasy', '压抑': 'oppressed', '孤独': 'lonely', '无助': 'helpless', '失望': 'disappointed', '后悔': 'regretful', '惋惜': 'regretful', '责备': 'blame', '抱怨': 'complain', '诉苦': 'vent', '宽慰': 'console', '鼓励': 'encourage', '支持': 'support', '感激': 'appreciate', '喜悦': 'joyful', '满足': 'satisfied', '幸福': 'happy', '舒适': 'comfortable', '安心': 'at ease', '放松': 'relaxed', '愉快': 'pleasant', '欣喜': 'delighted', '惊喜': 'surprised', '脱': 'take off', '穿': 'put on', '换': 'change', '裸体': 'naked', '衣服': 'clothes', '内衣': 'underwear', '外套': 'coat', '上衣': 'shirt', '裤子': 'pants', '裙子': 'skirt', '鞋子': 'shoes', '袜子': 'socks', '帽子': 'hat', '眼镜': 'glasses', '手套': 'gloves', '口罩': 'mask', '披肩': 'shawl', '围巾': 'scarf', '外套拉链': 'zipper', '纽扣': 'button', '皮带': 'belt', '扣子': 'buckle', '腰带': 'waistband', '品牌': 'brand', '款式': 'style', '尺码': 'size', '试衣间': 'fitting room', '买单': 'check out', '宇宙': 'universe', '星系': 'galaxy', '太阳系': 'solar system', '行星': 'planet', '卫星': 'satellite', '恒星': 'star', '黑洞': 'black hole', '白矮星': 'white dwarf', '新星': 'nova', '超新星': 'supernova', '彗星': 'comet', '陨石': 'meteorite', '尘埃': 'dust', '气体': 'gas', '辐射': 'radiation', '引力': 'gravity', '光速': 'speed of light', '时间旅行': 'time travel', '空间扭曲': 'wormhole', '寻找外星人': 'search for extraterrestrial life', '生命起源': 'origin of life', '宇宙大爆炸': 'big bang', '暗物质': 'dark matter', '暗能量': 'dark energy', '飞船': 'spaceship', '宇宙飞船': 'spacecraft', '火箭': 'rocket', '卫星': 'satellite', '载人飞船': 'manned spacecraft', '太空舱': 'capsule', '国际空间站': 'International Space Station (ISS)', '发射台': 'launch pad', '升空': 'lift off', '轨道': 'orbit', '重返地球': 're-entry', '着陆': 'landing', '月球探测器': 'lunar probe', '火星探测器': 'Mars rover', '太空服': 'spacesuit', '引擎': 'engine', '推进器': 'propeller', '燃料': 'fuel', '氢': 'hydrogen', '氧': 'oxygen', '航天员': 'astronaut', '控制中心': 'mission control', '太空旅游': 'space tourism', '星球大战': 'Star Wars', '星际迷航': 'Star Trek', '行动': 'action', '走': 'walk', '香薰灯': 'aroma lamp', '霓虹灯': 'neon light', '寻光灯': 'searchlight', '投影灯': 'projector lamp', '灯笼': 'lantern', '蜡烛': 'candle', '日光灯': 'fluorescent light', '激光灯': 'laser light', '储物柜': 'cabinet', '书架': 'bookcase', '鞋柜': 'shoe cabinet', '衣架': 'coat hanger', '衣服架': 'clothes rack', '挂钩': 'hook', '置物架': 'shelf', '茶壶': 'teapot', '水杯': 'water glass', '餐具': 'tableware', '碗': 'bowl', '盘子': 'plate', '刀叉': 'knife and fork', '勺子': 'spoon', '玻璃杯': 'glass', '纸巾盒': 'tissue box', '垃圾桶': 'trashcan', '餐饮': 'dining', '餐厅': 'restaurant', '快餐店': 'fast food restaurant', '咖啡馆': 'cafe', '茶馆': 'teahouse', '糕点店': 'pastry shop', '超市': 'supermarket', '菜市场': 'vegetable market', '食品': 'food', '米饭': 'rice', '面条': 'noodle', '面包': 'bread', '汉堡': 'hamburger', '薯条': 'french fries', '炸鸡': 'fried chicken', '沙拉': 'salad', '披萨': 'pizza', '寿司': 'sushi', '火锅': 'hot pot', '烧烤': 'barbecue', '炒菜': 'stir-fry', '蒸菜': 'steamed dish', '煮菜': 'boiled dish', '烤肉': 'grilled meat', '海鲜': 'seafood', '甜点': 'dessert', '冰淇淋': 'ice cream', '奶酪': 'cheese', '巧克力': 'chocolate', '果汁': 'fruit juice', '咖啡': 'coffee', '茶': 'tea', '啤酒': 'beer', '红酒': 'red wine', '白酒': 'white spirit', '牛奶': 'milk', '盾牌': 'shield', '剑': 'sword', '匕首': 'dagger', '长枪': 'spear', '弓箭': 'bow and arrow', '飞镖': 'dart', '手枪': 'pistol', '步枪': 'rifle', '火箭筒': 'rocket launcher', '榴弹发射器': 'grenade launcher', '炸药': 'dynamite', '燃烧瓶': 'Molotov cocktail', '棍棒': 'club', '链锤': 'flail', '战斧': 'battle-axe', '投石器': 'catapult', '盾': 'shield', '铠甲': 'armor', '头盔': 'helmet', '披风': 'cloak', '警棍': 'police baton', '电击器': 'taser', '手套': 'glove', '背包': 'backpack', '军靴': 'combat boots', '战术手表': 'tactical watch', '夜视仪': 'night vision goggles', '防毒面具': 'gas mask', '弹药': 'ammunition', '植物': 'plants', '树': 'tree', '花': 'flower', '草': 'grass', '灌木': 'shrub', '树叶': 'leaves', '果实': 'fruit', '种子': 'seed', '枝干': 'branches', '树皮': 'bark', '花瓣': 'petals', '花蕊': 'pistil', '花粉': 'pollen', '茎': 'stem', '根': 'root', '仙人掌': 'cactus', '竹子': 'bamboo', '水仙': 'daffodil', '玫瑰': 'rose', '菊花': 'chrysanthemum', '向日葵': 'sunflower', '牡丹': 'peony', '荷花': 'lotus', '梅花': 'plum blossom', '松树': 'pine tree', '橡树': 'oak tree', '枫树': 'maple tree', '榆树': 'elm tree', '柳树': 'willow tree', '棕榈树': 'palm tree', '香蕉树': 'banana tree', '桃树': 'peach tree', '苹果树': 'apple tree', '柠檬树': 'lemon tree', '橙树': 'orange tree', '葡萄树': 'grapevine', '仙人掌': 'cactus', '多肉植物': 'succulent', '盆栽': 'potted plant', '话筒': 'microphone', '洗手间': 'restroom', '电梯': 'elevator', '楼梯': 'stairway', '停车场': 'parking lot', '自行车': 'bicycle', '摩托车': 'motorcycle', '火车': 'train', '地铁': 'subway', '公交车': 'bus', '出租车': 'taxi', '飞机': 'airplane', '船': 'ship', '码头': 'wharf', '机场': 'airport', '加油站': 'gas station', '邮局': 'post office', '银行': 'bank', '超市': 'supermarket', '商场': 'mall', '咖啡馆': 'cafe', '餐厅': 'restaurant', '医院': 'hospital', '药店': 'pharmacy', '学校': 'school', '图书馆': 'library', '博物馆': 'museum', '游乐园': 'amusement park', '电影院': 'cinema', '剧院': 'theater', '音乐厅': 'concert hall', '体育馆': 'gymnasium', '游泳池': 'swimming pool', '发型': 'hairstyle', '长发': 'long hair', '短发': 'short hair', '中长发': 'medium length hair', '卷发': 'curly hair', '直发': 'straight hair', '波浪发': 'wavy hair', '盘发': 'updo', '马尾辫': 'ponytail', '编发': 'braid', '蓬松发': 'frizzy hair', '光头': 'bald', '披肩发': 'shoulder-length hair', '刘海': 'bangs', '瀑布发': 'cascade hair', '蘑菇头': 'mushroom head', '短寸发': 'crew cut', '齐耳短发': 'bob haircut', '双马尾': 'double ponytails', '梨花头': 'pear blossom hair', '草莓头': 'strawberry hair', '海螺型': 'conch-shell hair', '垂肩发': 'waist-length hair', '羊角辫': 'antelope-horn braids', '丸子头': 'bun hairstyle', '光线': 'light', '阳光': 'sunlight', '月光': 'moonlight', '灯光': 'lighting', '晨光': 'morning light', '黄昏': 'dusk', '日出': 'sunrise', '日落': 'sunset', '闪光': 'flash', '霓虹灯': 'neon lights', '流星': 'shooting star', '彩虹': 'rainbow', '极光': 'aurora', '白天': 'daytime', '晚上': 'nighttime', '昏暗': 'dim', '刺眼': 'blinding', '柔和': 'soft', '明亮': 'bright', '阴影': 'shadow', '反射': 'reflection', '折射': 'refraction', '透明': 'transparent', '不透明': 'opaque', '照明': 'illumination', '灯泡': 'light bulb', '荧光灯': 'fluorescent lamp', '台灯': 'desk lamp', '手电筒': 'flashlight', '路灯': 'street lamp', '走': 'walk', '跑': 'run', '拍': 'pat', '拿': 'take', '送': 'send', '看': 'see', '听': 'hear', '亲': 'kiss', '笑': 'laugh', '哭': 'cry', '学': 'learn', '教': 'teach', '写': 'write', '读': 'read', '画': 'paint', '唱': 'sing', '跳': 'jump', '闻': 'smell', '吞': 'swallow', '咀嚼': 'chew', '喷': 'spray', '照': 'shine', '探': 'explore', '醒': 'wake up', '睡': 'sleep', '追': 'chase', '抱': 'hug', '汤': 'soup', '肉': 'meat', '蛋': 'egg', '奶': 'milk', '鱼': 'fish', '米': 'rice', '面': 'noodles', '菜': 'vegetables', '果': 'fruit', '茶': 'tea', '酒': 'wine', '糖': 'sugar', '盐': 'salt', '油': 'oil', '蔬': 'greens', '草': 'grass', '木': 'wood', '花': 'flower', '叶': 'leaf', '树': 'tree', '枝': 'branch', '蜂': 'bee', '牛': 'cow', '羊': 'sheep', '马': 'horse', '猪': 'pig', '鸡': 'chicken', '鸭': 'duck', '鹅': 'goose', '鱼': 'fish', '虾': 'shrimp', '蟹': 'crab', '贝': 'shellfish', '冰': 'ice', '雪': 'snow', '饼': 'cake', '糕': 'pastry', '饺': 'dumpling', '粥': 'porridge', '袋': 'bag', '箱': 'box', '笔': 'pen', '纸': 'paper', '书': 'book', '刀': 'knife', '针': 'needle', '线': 'thread', '衣': 'clothing', '裤': 'pants', '鞋': 'shoes', '帽': 'hat', '袜': 'socks', '裙': 'skirt', '毛': 'fur', '皮': 'leather', '布': 'cloth', '灯': 'lamp', '钟': 'clock', '扇': 'fan', '盘': 'plate', '碗': 'bowl', '杯': 'cup', '壶': 'pot', '瓶': 'bottle', '罐': 'can', '箱': 'case', '薄': 'thin', '厚': 'thick', '紧': 'tight', '松': 'loose', '高': 'tall', '矮': 'short', '胖': 'fat', '瘦': 'thin', '强': 'strong', '抱': 'embrace', '拥': 'hug', '握': 'grip', '托': 'support', '提': 'carry', '还': 'return', '付': 'pay', '借': 'borrow', '买': 'buy', '卖': 'sell', '赠': 'give', '收': 'collect', '奖': 'reward', '惩': 'punish', '送': 'send', '请': 'invite', '让': 'let', '倾': 'pour', '折': 'fold', '涂': 'paint', '刷': 'brush', '挂': 'hang', '拼': 'spell', '夹': 'clip', '翻': 'turn over', '跳': 'jump', '撞': 'collide', '看': 'look', '听': 'listen', '嗅': 'smell', '吃': 'eat', '喝': 'drink', '玩': 'play', '乐': 'happy', '噢': 'oh', '哦': 'oh', '喔': 'oh', '肉': 'meat', '禽': 'poultry', '蛋': 'egg', '菜': 'vegetable', '汁': 'juice', '茶': 'tea', '酒': 'alcohol', '水': 'water', '油': 'oil', '盐': 'salt', '糖': 'sugar', '米': 'rice', '面': 'flour', '粉': 'powder', '感': 'feeling', '情': 'emotion', '思': 'thought', '想': 'think', '愁': 'worry', '忧': 'anxiety', '悲': 'sadness', '喜': 'happiness', '怒': 'anger', '恨': 'hatred', '爱': 'love', '情': 'romance', '友': 'friendship', '皮': 'skin', '革': 'leather', '纹': 'pattern', '毛': 'fur', '鳞': 'scales', '羽': 'feather', '角': 'horn', '嘴': 'beak', '爪': 'claw', '翅': 'wing', '尾': 'tail', '蹄': 'hoof', '屁': 'fart', '臭': 'smelly', '味': 'taste', '香': 'fragrant', '美': 'beautiful', '丑': 'ugly', '俊': 'handsome', '美': 'pretty', '丑': 'plain', '漂': 'beautiful', '亮': 'bright', '暗': 'dark', '黑': 'black', '白': 'white', '灰': 'gray', '深': 'deep', '浅': 'light', '都': 'all', '全': 'whole', '完': 'complete', '空': 'empty', '满': 'full', '多': 'many', '少': 'few', '穿': 'wear', '脱': 'take off', '洗': 'wash', '涂': 'apply', '披': 'drape', '盖': 'cover', '挂': 'hang', '拆': 'disassemble', '装': 'install', '搭': 'build', '撤': 'withdraw', '靠': 'rely on', '刺': 'stab', '扎': 'stab', '戳': 'poke', '捅': 'prod', '割': 'cut', '砍': 'hack', '劈': 'chop', '斩': 'behead', '词': 'words', '句': 'sentence', '篇': 'article', '字': 'character', '诗': 'poetry', '歌': 'song', '赋': 'prose', '文': 'literature', '小': 'short', '长': 'long', '新': 'new', '旧': 'old', '多': 'many', '少': 'few', '好': 'good', '坏': 'bad', '爱': 'love', '恨': 'hate', '念': 'miss', '思': 'think', '想': 'want', '宠': 'dote on', '疼': 'love dearly', '痛': 'hurt', '怕': 'afraid', '畏': 'fear', '分': 'divide', '合': 'combine', '断': 'break', '开': 'open', '关': 'close', '散': 'scatter', '聚': 'gather', '取': 'take', '放': 'let go', '送': 'send', '收': 'receive', '认': 'recognize', '醒': 'awake', '懂': 'understand', '知': 'know', '信': 'believe', '看': 'see', '听': 'listen', '闻': 'smell', '品': 'taste', '摸': 'touch', '拿': 'hold', '捏': 'pinch', '握': 'grasp', '拉': 'pull', '推': 'push', '位': 'position', '处': 'place', '地': 'ground', '上': 'above', '下': 'below', '前': 'front', '后': 'back', '左': 'left', '右': 'right', '中': 'middle', '边': 'edge', '角': 'corner', '墙': 'wall', '屋': 'house', '门': 'door', '窗': 'window', '床': 'bed', '椅': 'chair', '桌': 'table', '柜': 'cabinet', '书': 'book', '纸': 'paper', '笔': 'pen', '胃': 'stomach', '肠': 'intestine', '膀': 'shoulder', '臂': 'arm', '手': 'hand', '指': 'finger', '腰': 'waist', '脚': 'foot', '踝': 'ankle', '喉': 'throat', '鼻': 'nose', '舌': 'tongue', '耳': 'ear', '眼': 'eye', '头': 'head', '发': 'hair', '牙': 'tooth', '咪': 'meow', '汪': 'bark', '喵': 'cat', '狗': 'dog', '鸟': 'bird', '兽': 'beast', '虫': 'worm', '鱼': 'fish', '马': 'horse', '体': 'body', '肝': 'liver', '肺': 'lung', '心': 'heart', '脾': 'spleen', '胆': 'gallbladder', '胰': 'pancreas', '腎': 'kidney', '骨': 'bone', '肉': 'meat', '筋': 'tendon', '髓': 'marrow', '皮': 'skin', '血': 'blood', '踢': 'kick', '踩': 'step on', '跳': 'jump', '走': 'walk', '跑': 'run', '爬': 'crawl', '游': 'swim', '滑': 'slide', '飞': 'fly', '替': 'replace', '代': 'substitute', '换': 'exchange', '接': 'take over', '送': 'deliver', '拿': 'take', '抱': 'hold', '推': 'push', '拉': 'pull', '打': 'hit', '揍': 'beat up', '摔': 'throw down', '绑': 'tie', '解': 'untie', '放': 'release', '收': 'collect', '售': 'sell', '亩': 'acre', '顷': 'hectare', '畦': 'furrow', '坪': 'flatland', '场': 'field', '地': 'ground', '土': 'soil', '漫': 'casual', '闲': 'leisure', '逍': 'carefree', '散': 'loose', '乱': 'messy', '忙': 'busy', '急': 'urgent', '临': 'imminent', '短': 'short', '长': 'long', '深': 'deep', '浅': 'shallow', '厚': 'thick', '薄': 'thin', '宽': 'wide', '窄': 'narrow', '挂': 'hang', '悬': 'suspend', '吊': 'hoist', '升': 'raise', '降': 'lower', '固': 'fixed', '稳': 'stable', '牢': 'firm', '松': 'loose', '紧': 'tight', '开': 'open', '关': 'close', '锁': 'lock', '解': 'unlock', '落': 'fall', '滑': 'slippery', '爬': 'climb', '穿': 'penetrate', '拆': 'disassemble', '编': 'weave', '缝': 'sew', '织': 'knit', '钩': 'crochet', '绣': 'embroider', '染': 'dye', '画': 'paint', '刻': 'engrave', '雕': 'carve', '塑': 'sculpt', '热': 'hot', '凉': 'cool', '暖': 'warm', '寒': 'cold', '温': 'temperature', '烤': 'bake', '炒': 'stir-fry', '煮': 'boil', '炸': 'fry', '熏': 'smoke', '蒸': 'steam', '微': 'slight', '酷': 'cool', '躁': 'restless', '静': 'quiet', '闷': 'stuffy', '湿': 'moist', '干': 'dry', '润': 'moist', '潮': 'damp', '清': 'clear', '浑': 'murky', '冷': 'cold', '热': 'heat', '污': 'polluted', '平': 'flat', '陡': 'steep', '弯': 'curved', '文': 'culture', '学': 'study', '识': 'knowledge', '字': 'character', '句': 'sentence', '篇': 'article', '书': 'book', '笔': 'pen', '墨': 'ink', '纸': 'paper', '崩': 'collapse', '塌': 'collapse', '毁': 'destroy', '损': 'damage', '裂': 'crack', '破': 'break', '坍': 'fall', '山': 'mountain', '水': 'water', '川': 'river', '湖': 'lake', '海': 'sea', '沙': 'sand', '土': 'earth', '岛': 'island', '洞': 'cave', '泉': 'spring', '林': 'forest', '草': 'grass', '花': 'flower', '树': 'tree', '木': 'wood', '藤': 'vine', '竹': 'bamboo', '果': 'fruit', '桥': 'bridge', '路': 'road', '门': 'gate', '窗': 'window', '屋': 'house', '房': 'house', '屋': 'room', '厅': 'hall', '卧': 'bedroom', '厨': 'kitchen', '卫': 'bathroom', '客': 'guest', '书': 'study', '阁': 'pavilion', '楼': 'building', '洞': 'cave', '穴': 'hole', '窟': 'cavern', '民': 'people', '族': 'ethnic group', '儿': 'child', '女': 'woman', '老': 'old', '少': 'young', '中': 'middle', '乡': 'village', '城': 'city', '国': 'country', '洋': 'ocean', '海': 'sea', '天': 'sky', '地': 'earth', '日': 'sun', '月': 'moon', '星': 'star', '花': 'flower', '树': 'tree', '草': 'grass', '山': 'mountain', '水': 'water', '人': 'person', '老': 'old', '少': 'young', '中': 'middle', '士': 'scholar', '官': 'official', '民': 'people', '客': 'guest', '商': 'merchant', '医': 'doctor', '护': 'nurse', '教': 'teacher', '学': 'student', '农': 'farmer', '工': 'worker', '兵': 'soldier', '贼': 'thief', '盗': 'robber', '神': 'god', '鬼': 'ghost', '仙': 'immortal', '佛': 'Buddha', '道': 'Taoist', '罪': 'criminal', '奴': 'slave', '隶': 'serf', '犯': 'offender', '徒': 'disciple', '没': 'not have', '无': 'nothing', '空': 'empty', '寂': 'silent', '冷': 'cold', '热': 'hot', '暗': 'dark', '明': 'bright', '浅': 'shallow', '深': 'deep', '宽': 'wide', '窄': 'narrow', '长': 'long', '短': 'short', '高': 'high', '低': 'low', '新': 'new', '旧': 'old', '好': 'good', '坏': 'bad', '快': 'fast', '慢': 'slow', '近': 'near', '远': 'far', '重': 'heavy', '轻': 'light', '大': 'big', '小': 'small', '多': 'many', '少': 'few', '器': 'device', '械': 'machine', '件': 'item', '构': 'structure', '操': 'operate', '战': 'battle', '装': 'armor', '甲': 'shell', '铠': 'armor', '兵': 'soldier', '机': 'machine', '科': 'tech', '技': 'skill', '武': 'military', '动': 'mecha', '创': 'innovation', '新': 'new', '发': 'develop', '研': 'research', '技': 'technology', '数': 'digital', '电': 'electric', '网': 'internet', '通': 'communication', '智': 'intelligence', '能': 'energy', '环': 'environment', '星': 'star', '际': 'interstellar', '宇': 'universe', '行': 'travel', '船': 'spaceship', '站': 'station', '探': 'explore', '载': 'load', '重': 'gravity', '黑': 'black hole', '白': 'white dwarf', '海': 'sea', '哺': 'mammal', '泳': 'swim', '蓝': 'blue', '座': 'constellation', '饵': 'bait', '油': 'oil', '骨': 'bone', '须': 'whisker', '菌': 'fungus', '香': 'fragrant', '味': 'taste', '炒': 'stir-fry', '汤': 'soup', '烤': 'roast', '野': 'wild', '白': 'white', '黑': 'black', '红': 'red', '茸': 'mushroom hair', '蘑': 'mushroom cap', '米': 'rice', '麦': 'wheat', '玉': 'jade', '谷': 'grain', '粉': 'flour', '器': 'device', '械': 'machine', '件': 'item', '构': 'structure', '操': 'operate', '算': 'calculate', '量': 'measure', '时': 'time', '数': 'number', '划': 'plan', '物': 'object', '品': 'product', '质': 'quality', '价': 'price', '钱': 'money', '福': 'happiness', '寿': 'longevity', '生': 'life', '死': 'death', '病': 'illness', '健': 'health', '机': 'machine', '飞机': 'airplane', '火车': 'train', '汽车': 'car', '电视机': 'television', '洗衣机': 'washing machine', '打印机': 'printer', '手机': 'mobile phone', '计算机': 'computer', '音乐机': 'music player', '相机': 'camera', '收音机': 'radio', '复印机': 'photocopier', '烤箱': 'oven', '微波炉': 'microwave oven', '冰箱': 'refrigerator', '机甲': 'mech', '蹦': 'jump', '闪': 'flash', '踩': 'step on', '顶': 'hit', '咬': 'bite', '拍': 'pat', '挠': 'scratch', '握': 'hold', '拆': 'take apart', '捏': 'pinch', '瞪': 'stare', '哄': 'coax', '颤': 'tremble', '嚼': 'chew', '抓': 'grab', '扯': 'tear', '撕': 'rip', '搔': 'itch', '冠': 'champion', '亚': 'runner-up', '季': 'third place', '殿': 'fourth place (literally means "palace hall")', '优': 'excellent', '良': 'good', '中': 'average', '差': 'poor', '尊': 'respectable', '贵': 'expensive', '卑': 'lowly', '下': 'inferior', '上': 'superior', '首': 'first', '末': 'last', '胜': 'victory', '逼真': 'realistic', '抽象': 'abstract', '写实': 'true-to-life', '风格化': 'stylized', '卡通风': 'cartoonish', '写意': 'freehand brushwork', '水墨': 'ink and wash', '惊悚': 'horror', '科幻': 'science fiction', '古典': 'classical', '现代': 'modern', '浪漫': 'romantic', '戏剧性': 'dramatic', '动感': 'dynamic', '色彩鲜艳': 'colorful', '奇幻': 'fantasy', '超现实主义': 'surrealism', '狂野西部': 'wild west', '维多利亚时代': 'Victorian era', '后末世': 'post-apocalyptic', '未来主义': 'futurism', '民俗风': 'folk style', '战争史诗': 'war epic', '空想科学': 'pseudoscience', '黑暗幻想': 'dark fantasy', '东方神秘': 'mysterious oriental', '异世界': 'alternate world', '非线性时间': 'non-linear time', '洛丽塔式': 'Lolita style', '蒸汽朋克': 'steampunk', '赛博朋克': 'cyberpunk', '朋克文化': 'punk culture', '朋克音乐': 'punk music', '朋克时尚': 'punk fashion', '朋克乐队': 'punk bands', '朋克摇滚': 'punk rock', '朋克小说': 'punk novels', '朋克电影': 'punk films', '朋克艺术': 'punk art', '朋克精神': 'punk spirit', '朋克风格': 'punk style', '朋克革命': 'punk revolution', '朋克生活方式': 'punk lifestyle', '朋克社区': 'punk community', '朋克图标': 'punk icons', '平衡对称': 'symmetrical balance', '非对称平衡': 'asymmetrical balance', '第三视角构图': 'third person perspective', '层次分明': 'clear hierarchy', '留白构图': 'blank space composition', '中心化构图': 'centralized composition', '黄金比例构图': 'golden ratio composition', '斜线构图': 'diagonal line composition', '对角线构图': 'cross-line composition', '对称重复': 'symmetric repetition', '颜色搭配': 'color coordination', '光影倾斜': 'tilted lighting and shadow', '俯拍': 'low-angle shot', '仰拍': 'high-angle shot', '鸟瞰': 'aerial shot', '近距离特写': 'close-up shot', '全景': 'panorama', '远景': 'long shot', '逆光拍摄': 'backlighting shot', '背对阳光拍摄': 'against-the-light shot', '低头拍摄': 'looking-down shot', '仰头拍摄': 'looking-up shot', '自我感知角度': 'self-aware angle', '独特视角': 'unique perspective', '东': 'east', '南': 'south', '西': 'west', '北': 'north', '中': 'middle', '上': 'up', '下': 'down', '左': 'left', '右': 'right', '前': 'front', '后': 'back', '外': 'outside', '内': 'inside', '近': 'near', '远': 'far', '高': 'high', '低': 'low', '长': 'long', '短': 'short', '宽': 'wide', '窄': 'narrow', '曲': 'curved', '直': 'straight', '附': 'adjacent', '对': 'opposite', '斜': 'oblique', '周': 'surrounding', '边': 'edge', '角': 'corner', '一': 'one', '二': 'two', '三': 'three', '四': 'four', '五': 'five', '六': 'six', '七': 'seven', '八': 'eight', '九': 'nine', '十': 'ten', '十一': 'eleven', '十二': 'twelve', '十三': 'thirteen', '十四': 'fourteen', '十五': 'fifteen', '十六': 'sixteen', '十七': 'seventeen', '十八': 'eighteen', '十九': 'nineteen', '二十': 'twenty', '百': 'hundred', '千': 'thousand', '万': 'ten thousand', '亿': 'hundred million', '天': 'sky/day', '地': 'earth', '人': 'person', '山': 'mountain', '水': 'water', '火': 'fire', '风': 'wind', '木': 'wood', '金': 'metal/gold', '土': 'soil/earth', '空': 'empty', '满': 'full', '夜': 'night', '春': 'spring', '夏': 'summer', '秋': 'autumn', '冬': 'winter', '光': 'light', '影': 'shadow', '色': 'color', '声': 'sound', '墙': 'wall', '门': 'door', '窗': 'window', '屋': 'house/room', '车': 'vehicle', '路': 'road', '桥': 'bridge', '圆': 'round', '方': 'square', '线': 'line', '面': 'surface', '力': 'force/power', '气': 'air/gas', '电': 'electricity', '石': 'stone', '沙': 'sand', '土': 'earth/soil', '草': 'grass', '花': 'flower', '树': 'tree', '叶': 'leaf', '果': 'fruit', '米': 'rice', '面': 'noodles/flour', '麦': 'wheat/barley', '肉': 'meat', '鱼': 'fish', '虫': 'insect/worm', '鸟': 'bird', '兽': 'beast/animal', '太': 'too/extremely', '小': 'small/little', '大': 'big/large', '长': 'long', '短': 'short', '高': 'tall/high', '低': 'low/short', '轻': 'lightweight', '重': 'heavy', '新': 'new', '旧': 'old', '青': 'green/blue', '红': 'red', '黄': 'yellow', '白': 'white', '黑': 'black', '紫': 'purple', '蓝': 'blue', '绿': 'green', '灰': 'gray', '金': 'gold', '银': 'silver', '铜': 'copper/bronze', '钢': 'steel', '铁': 'iron', '浅': 'light (color)', '深': 'dark (color)', '清': 'clear/pure', '浑': 'turbid/murky', '菜': 'vegetable', '汤': 'soup', '茶': 'tea', '酒': 'alcohol', '罐': 'can/jar', '瓶': 'bottle', '盘': 'plate/dish', '碟': 'small dish', '筷': 'chopsticks', '刀': 'knife', '叉': 'fork', '勺': 'spoon', '盆': 'basin/bowl', '箱': 'box/trunk', '袋': 'bag/pouch', '书': 'book', '报': 'newspaper', '信': 'letter', '印': 'print (n.)', '画': 'picture/painting', '字': 'character', '语': 'language', '文': 'culture/literature', '作弊_(opqhlak)': 'cheaty_(opqhlak)', '作弊_(关系)': 'cheating_(relationship)', '作弊_(竞争)': 'cheating_(competitive)', '裸': 'Completely naked,', '作弊的妻子': 'cheating_wife', '全裸': 'Completely naked,', '作道': 'sakumichi', '作坊': 'workshop', '作废': 'nullification', '作府': 'sakofu', '作家': 'evarist', '作见': 'sakumi', '作呕': 'gagging', '老爷爷': 'grandpa', '作曲家': 'ascoeur', '作所': 'sakusyo', '作汤': 'sakuyu', '作汤臣': 'sakuyunomi', '作文': 'zuowen', '竖中指': 'Provoking, middle finger', '老奶奶': 'granny', '作物_(解剖)': 'crop_(anatomy)', '作物顶部': 'crop_top', '大拇指': 'Thumbs up', '作物连帽衫': 'crop_hoodie', '作息': 'sakuhuu', '作信': 'sakushin', '作眼': 'sakugan', '作彦': 'sakuhiko', '作夜门': 'sakuyamon', '作右卫门': 'sakuemon', '作作': 'sakusaku', '坐车': 'Sitting in the back seat of the car,', '坐骨神经痛': 'scias', '坐立不安': 'fidgeting', '坐起来': 'sit_up', '坐起来': 'sitting_up', '坐起来': 'sit-up', '坐球': 'sitting_on_ball', '坐球': 'sitting_on_balls', '坐人': 'sitting_on_person', '坐上动物': 'sitting_on_animal', '坐浴盆': 'bidet', '坐在': 'sat_on', '坐在宝座上': 'sitting_on_throne', '坐在背上': 'sitting_on_back', '坐在玻璃上': 'sitting_on_glass', '坐在草地上': 'sitting_on_grass', '坐在窗内': 'sitting_in_window', '坐在床上': 'sitting_on_bed', '坐在地上': 'sitting_on_ground', '坐在凳子上': 'sitting_on_stool', '坐在对象上': 'sitting_on_object', '坐在鼓上': 'sitting_on_drum', '坐在盒子上': 'sitting_on_box', '坐在肩膀上': 'sitting_on_shoulder', '坐在肩膀上': 'sitting_on_shoulders', '坐在建筑物上': 'sitting_on_building', '坐在角落里': 'sitting_in_corner', '坐在栏杆上': 'sitting_on_railing', '坐在脸上': 'sitting_on_face', '坐在另一个': 'sitting_on_another', '坐在楼梯上': 'sitting_on_stairs', '坐在南瓜上': 'sitting_on_pumpkin', '被后入': 'Sex, rear in', '坐在屁股上': 'sitting_on_butt', '坐在墙上': 'sitting_on_wall', '坐在日志': 'sitting_on_log', '坐在乳房上': 'sitting_on_breasts', '坐在沙发上': 'sitting_on_sofa', '坐在上面': 'sitting_on', '坐在食物上': 'sitting_on_food', '坐在手臂上': 'sitting_on_arm', '坐在手边': 'sitting_on_hand', '坐在书上': 'sitting_on_books', '坐在树上': 'sitting_in_tree', '坐在树枝上': 'sitting_on_branch', '坐在树桩上': 'sitting_on_stump', '自慰': 'masturbation', '坐在水上': 'sitting_on_water', '坐在头发上': 'sitting_on_hair', '坐在头上': 'sitting_on_head', '坐在围栏上': 'sitting_on_fence', '坐在尾巴上': 'sitting_on_tail', '坐在屋顶上': 'sitting_on_roof', '坐在膝盖上': 'sitting_on_knees', '坐在膝上': 'sitting_on_lap', '坐在行星上': 'sitting_on_planet', '坐在胸前': 'sitting_on_chest', '坐在岩石上': 'sitting_on_rock', '坐在液体上': 'sitting_on_liquid', '坐在一起': 'sitting_together', '坐在椅子上': 'sitting_in_chair', '坐在椅子上': 'sitting_on_chair', '坐在阴茎上': 'sitting_on_penis', '坐在云上': 'sitting_on_cloud', '坐在长凳上': 'sitting_on_bench', '坐在枕头上': 'sitting_on_pillow', '坐在桌子上': 'sitting_on_desk', '奔': 'run quickly', '坐在自己的球上': 'sitting_on_own_balls', '坐在自己的尾巴上': 'sitting_on_own_tail', '坐在字符上': 'sitting_on_character', '坐着': 'sitting', '坐着性': 'sitting_sex', '坐桌莲花': 'sitting_table_lotus', '坐姿携带位置': 'seated_carry_position', '唑': 'zol', '座': 'pedestal', '座部幕': 'zabumaku', '座舱': 'cockpit', '座敷童子': 'zashiki-warashi', '座高流': 'zakoryu', '座间正明': 'zama_masaaki', '坐在': 'Sitting on top', '座面': 'ozadomi', '座崎': 'zazaki', '座头': 'zagashira', '座头鲸': 'humpback_whale', '座位': 'pew', '开车': 'behind the wheel', '座位': 'seats', '正面照': 'frontal photo', '侧面照': 'profile photo', '远离': 'keep away from', '保持距离': 'maintain distance', '社交距离': 'social distancing', '避免接触': 'avoid contact', '近景': 'close-up', '远景': 'long shot', '中景': 'medium shot', '全景': 'panoramic view', '鸟瞰图': 'aerial view', '人像': 'portrait', '风景': 'landscape', '静物': 'still life', '安全距离': 'safe distance', '离开现场': 'leave the scene', '撤离': 'evacuate', '躲避': 'take cover', '隔离': 'quarantine', '封锁': 'blockade', '闭关': 'stay closed', '对外关闭': 'close to the outside world', '后背照': 'back photo', '低头照': 'downward-looking photo', '仰头照': 'upward-looking photo', '自拍照': 'selfie', '合影': 'group photo', '护照照片': 'passport photo', '身份证照片': 'ID photo', '近景': 'close-up', '远景': 'long shot', '中景': 'medium shot', '全景': 'panoramic view', '鸟瞰图': 'aerial view', '人像': 'portrait', '风景': 'landscape', '静物': 'still life', '建筑': 'architecture', '夜景': 'night scene', '日出日落': 'sunrise and sunset', '海滩': 'beach', '山水': 'mountain and water', '岁': 'year', '全身': 'whole body', '半身': 'half body', '座右铭!_haramase!_honoo_no_oppai_isekai_chou_ero_succubus_gakuen!': 'motto!_haramase!_honoo_no_oppai_isekai_chou_ero_succubus_gakuen!', '座右铭!_haramase!_honoo_no_oppai_isekai_ero_mahou_gakuen!': 'motto!_haramase!_honoo_no_oppai_isekai_ero_mahou_gakuen!', '座右铭': 'motto_notto', '座右铭_(夜装)': 'motto_(night_wear)', '座玉': 'izatama', '做~做': 'fo~do', '做爱': 'making_love', '做错了': 'doing_it_wrong', '做梦': 'dreaming', '做事': 'mchiefy', '酢浆草': 'sorrel', '酢浆草狼': 'sorrel-wolf', '朱红领主': 'lord_of_vermilion', '朱红秋叶': 'vermillion_akiha', '朱红色888': 'vermilion888', '朱加洛': 'juggalo', '蹲坑': 'Sitting on the toilet', '朱拉坎布里': 'jura_cambri', '朱丽安神龟': 'juliantheturtle', '朱丽丝': 'julesy', '朱丽苏': 'julie-su', '朱丽叶波斯': 'juliet_persia', '朱丽叶道格拉斯': 'juliet_douglas', '打球': 'play a ball game', '朱利卡': 'julicat', '朱利叶斯蒙雷': 'julius_monrey', '朱利叶斯齐默尔曼': 'julius_zimmerman', '朱莉': 'julee', '朱莉安娜_(宠物小精灵)': 'juliana_(pokemon)', '朱莉布鲁因': 'julie_bruin', '划船': 'Holding the oar', '朱莉娅_(维斯蒂娜)': 'julia_(vestina)', '朱莉娅8857': 'julia8857', '朱莉娅金狐狸': 'juliagoldfox', '朱莉娅汽车': 'julia_autio', '白发': 'white hair', '朱鲁塔': 'juurouta', '朱墨尖': 'zhumojian', '朱娜': 'juna', '朱尼浮': 'junibuoy', '朱尼纽': 'junineu', '朱牛': 'giuniu', '朱诺(元素猎人)': 'juno_(element_hunters)', '朱诺': 'sjuno', '朱诺_(tabunnie)': 'juno_(tabunnie)', '朱诺_(野兽派)': 'juno_(beastars)', '朱诺埃蒙斯': 'juno_emmons', '朱诺伯纳尔': 'juno_bernal', '朱雀_(kemono_friends)': 'suzaku_(kemono_friends)', '朱雀_(oekaki_no_sekai)': 'suzaku_(oekaki_no_sekai)', '朱雀_(shinkalion)': 'suzaku_(shinkalion)', '朱雀_(zaku6584)': 'suzaku_(zaku6584)', '朱雀天门': 'suzaku_mikado', '朱雀印': 'suzakuin_tsubaki', '朱砂_(houseki_no_kuni)': 'cinnabar_(houseki_no_kuni)', '朱砂000n': 'vermilli000n', '朱维拉': 'juvira', '朱乌尼普尔': 'juwunipur', '朱晓517': 'zhuxiao517', '朱因达洛': 'juindalo', '朱朱诺特': 'jujunaught', '侏罗纪': 'jurassiczalar', '侏罗纪公园': 'jurassic_park', '侏罗纪美女': 'jurassic_beauties', '侏罗纪世界': 'jurassic_world', '侏罗纪世界:_统治': 'jurassic_world:_dominion', '侏儒': 'gnome', '侏儒_(魔兽)': 'gnome_(warcraft)', '侏儒山羊': 'pygmy_goat', '侏儒兔': 'dwarf_rabbit', '侏儒症': 'dwarfism', '诛仙台': 'kiaoekakishitai', '珠宝': 'jewelry', '珠宝_(里约)': 'jewel_(rio)', '珠宝_(失眠症)': 'jewel_(insomniacovrlrd)', '珠宝_邦尼': 'jewelry_bonney', '珠宝宠物_(系列)': 'jewelpet_(series)', '珠宝噩梦': 'jewelic_nightmare', '珠宝盒': 'jewelry_box', '珠宝领': 'jewel_collar', '珠宝骑士': 'jewel_knights', '珠宝窃贼': 'jewel-thief', '珠宝移除': 'jewelry_removed', '珠带': 'bead_belt', '珠光宝气': 'pearleden', '珠光彩虹': 'pearlyiridescence', '珠帘': 'bead_curtain', '血液覆盖': 'blood_covered', '血液喷雾': 'blood_spray', '血液运动': 'hemokinesis', '血鹰_(角色)': 'bloodhawk_(character)', '血缘': 'blood_hood', '血源性': 'bloodborne', '血月': 'blood_moon', '血月': 'hemoon', '血月_(传奇联盟)': 'blood_moon_(league_of_legends)', '血月干': 'blood_moon_akali', '血爪': 'blood_on_claws', '勋爵': 'lordstevie', '勋章': 'medal', '熏肉': 'baconontheclock', '熏肉': 'smuttybacon', '薰': 'kaoru', '薰_(1030)': 'kaworu_(1030)', '薰_(rena12345)': 'kaoru_(rena12345)', '薰衣草': 'lavenderaraliya', '薰衣草': 'lavenderhush', '趴': 'lying', '薰衣草': 'lavenderrose', '薰衣草_(flower_knight_girl)': 'lavender_(flower_knight_girl)', '薰衣草_(花)': 'lavender_(flower)', '薰衣草衬衫': 'lavender_shirt', '薰衣草裙': 'lavender_skirt', '寻欢作乐': 'loreking', '寻回犬': 'retriever', '寻求': 'quest', '寻求者': 'seeker', '寻求者_(变形金刚)': 'seeker_(transformers)', '寻神者': 'godseeker', '寻贼': 'xhunzei', '寻找': 'seark', '寻找_back_at_partner': 'looking_back_at_partner', '寻找_down_at_partner': 'looking_down_at_partner', '寻找合作伙伴': 'looking_at_partner', '寻找合作伙伴': 'looking_up_at_partner', '寻找世界': 'findoworld', '寻找眼镜': 'looking_for_glasses', '寻找珍珠(umamusume)': 'seeking_the_pearl_(umamusume)', '巡航': 'cruising', '巡逻_03': 'patrol_03', '巡视': 'megurimu', '巡视': 'megurumiru', '巡视': 'megusuri', '巡洋舰': 'cruiser', '巡洋舰_自行车': 'cruiser_bicycle', '询问_(询问)': 'ask_(askzy)', '询问_(战锤)': 'inquisition_(warhammer)', '循环动画': 'looping_animation', '循环呼吸器': 'rebreather', '循序渐进': 'ratchetsly', '鲟鱼': 'strahinium', '训诫': 'mandaring', '训练': 'training', '训练裤': 'training_pants', '训练室': 'training_room', '训练胸罩': 'training_bra', '迅捷': 'boltswift', '迅捷': 'swiftnicity', '迅捷': 'swiftriff', '迅猛龙': 'raptorroper', '迅猛龙': 'skyraptor', '迅猛龙': 'velociraptor', '驯服': 'tame', '驯服_(驯服-97)': 'tame_(tame-97)', '驯化': 'domestication', '驯鹿': 'reindeer', '驯鹿_(佩鲁兹)': 'reindeer_(petruz)', '驯鹿_(艺术家)': 'caribou_(artist)', '驯鹿鹿角': 'reindeer_antlers', '丫白': 'yabai', '丫丫_(20090410)': 'yaya_(20090410)', '丫丫炭': 'ya-ya-tan', '丫燕': 'ya_yan', '丫嘴': 'nyazui', '压扁': 'squish', '压扁': 'squishing', '压扁心': 'squishheart', '压倒性的': 'overpowering', '压倒性的': 'underpable', '压克力描边': 'acrylicstroke', '压力': 'ress', '压力': 'stress', '压路机': 'steamroller', '压迫者': 'mochityoko', '压碎': 'crush', '压缩': 'shrunk', '压缩衬衫': 'compression_shirt', '压缩短裤': 'compression_shorts', '压缩工件': 'compression_artifacts', '压缩工具': 'compression_tools', '压缩袖子': 'compression_sleeve', '压抑': 'pent_up', '压制': 'holding_down', '压制': 'squelching', '押沙龙': 'absalom', '鸦片': 'opiu', '鸦片5': 'opium5', '鸦雀无声': 'crowcrycaw', '鸦人': 'arakkoa', '鸭': 'duck', '鸭车': 'yache', '鸭川晃': 'kamogawa_akira', '鸭春泥': 'duckchuni', '鸭打印': 'duck_print', '鸭道奇队': 'duck_dodgers', '鸭的故事': 'ducktales', '鸭脸口交': 'duckface_fellatio', '鸭毛装饰': 'duck_hair_ornament', '鸭帽': 'duck_hood', '鸭奶': 'ducktits', '鸭内管': 'duck_innertube', '鸭人': 'duckman', '鸭肉': 'kamo_ashi', '鸭锁': 'duck_lock', '鸭阴茎': 'duck_penis', '鸭玉': 'kamotama', '鸭在这里': 'duckhere', '鸭子': 'canards', '鸭子': 'ducko', '鸭子_(sarah_and_duck)': 'duck_(sarah_and_duck)', '鸭子_(the_land_before_time)': 'ducky_(the_land_before_time)', '鸭子_(鸭子狩猎)': 'duck_(duck_hunt)', '鸭子_(艺术家)': 'ducky_(artist)', '鸭子114': 'yazi114', '鸭子服装': 'duck_costume', '鸭子故事_(1987)': 'ducktales_(1987)', '鸭子故事_(2017)': 'ducktales_(2017)', '鸭子狩猎': 'duck_hunt', '鸭子狩猎狗(艺术家)': 'duck_hunt_dog_(artist)', '鸭子狩猎狗': 'duck_hunt_dog', '鸭子狩猎鸭子': 'duck_hunt_duck', '鸭嘴龙科': 'hadrosaurid', '鸭嘴兽': 'kamochomedesu', '鸭嘴兽': 'percytheplatypus', '鸭嘴兽': 'platypus', '血-c': 'blood-c', '血池': 'blood_pool', '血串': 'blood_string', '血袋': 'blood_bag', '血滴': 'blood_drop', '血斧': 'blood_on_axe', '血红739': 'bloodred739', '血红蛋白': 'althemia', '血红蛋白_a1c': 'hemogurobin_a1c', '血红素': 'hemoglosso', '血红素': 'hemorina', '血迹': 'blood_stain', '血迹': 'blood_stains', '血迹': 'blood_trail', '血迹': 'bloodstain', '血剑': 'blood_sword', '血溅': 'blood_spatter', '血溅': 'blood_splatter', '血茎': 'blood_stalk', '血精灵': 'blood_elf', '血精灵_(魔兽)': 'blood_elf_(warcraft)', '血块': 'gore', '血狼': 'bloowolfy', '血雷恩': 'bloodrayne', '血泪': 'blood_tears', '血鳞_(大帝凯撒)': 'bloodscale_(imperatorcaesar)', '血猫': 'bloodycat', '血猫黑': 'bloodcatblack', '血毛皮': 'blood_on_fur', '血凝素': 'chyt', '血清': 'serule', '血清': 'serum', '血清_(dds)': 'sera_(dds)', '血清_(血清)': 'sera_(sera)', '血清3eta': 'sero3eta', '血球': 'blood_on_balls', '血染头发': 'blood_in_hair', '血水坑': 'blood_puddle', '血丝23': 'bloodshot23', '血糖': 'bloodcandy', '血统': 'bloodline', '血统': 'hetomy', '血统': 'lineage', '血统': 'noblood', '血统_(网络漫画)': 'bloodline_(webcomic)', '血统_2': 'lineage_2', '血碗': 'blood_bowl', '血西弗': 'bloodcifer', '血小板_(hataraku_saibou)': 'platelet_(hataraku_saibou)', '血小板_(hataraku_saibou)_(角色扮演)': 'platelet_(hataraku_saibou)_(cosplay)', '血小子': 'blood_lad', '血腥_(血腥)': 'bloot_(bloot)', '血腥0rabby': 'bloody0rabby', '血腥刀': 'bloody_knife', '血腥的假面舞会': 'bloodymascarade', '血腥的月亮': 'bloody_moon', '血腥狼_(地狱戒指)': 'bloody_wolf_(elden_ring)', '血腥流': 'bloody_stream', '血腥玛丽_(骷髅女孩)': 'bloody_marie_(skullgirls)', '血腥女王': 'queenbloodysky', '血腥咆哮': 'bloody_roar', '血腥屁股': 'blood_in_ass', '血腥手印': 'bloody_handprints', '血腥兔子': 'bloody_bunny', '血腥兔子_(系列)': 'bloody_bunny_(series)', '血腥之翼': 'bloody_wings', '血型': 'blood_type', '血压': 'tanshio', '血液': 'blood', '血液+': 'blood+', '牙齿': 'teec', '牙齿': 'teeth', '牙齿a_j': 'teeta_j', '牙齿保持': 'teeth_hold', '牙齿打印': 'teeth_print', '牙齿可见': 'teeth_visible', '牙齿上的血': 'blood_on_teeth', '牙齿显示': 'teeth_showing', '牙耳环': 'tooth_earrings', '牙缝': 'tooth_gap', '牙膏': 'toothpaste', '牙科_(牙科)': 'dental_(dentalsan)', '牙科堵嘴': 'dental_gag', '牙口': 'yakou', '牙口_(4507770)': 'yakou_(4507770)', '牙买加_(azur_lane)': 'jamaica_(azur_lane)', '牙签': 'toothpick', '牙蛇猫_奇石': 'yashemao_qishi', '牙刷': 'toothbrush', '牙刷_小胡子': 'toothbrush_mustache', '牙刷嘴里': 'toothbrush_in_mouth', '牙套': 'mouth_guard', '牙套': 'mouthguard', '牙疼': 'toothache', '牙项链': 'tooth_necklace', '牙医': 'dentist', '牙医_(艺术家)': 'dentist_(artist)', '牙龈': 'gums', '牙龈瘤': 'ginglymostomatid', '芽': 'bud', '芽孢杆菌': 'bacius', '蚜': 'aphid', '蚜虫': 'mephitid', '哑的': 'dumb', '哑剧': 'mime', '哑剧_(fft)': 'mime_(fft)', '哑铃': 'dumbbell', '哑铃_(mlp)': 'dumb-bell_(mlp)', '哑铃化狗脑': 'dumbification_to_dog_brain', '哑铃南千千摩特鲁?': 'dumbbell_nan_kilo_moteru?', '哑星人': 'mumumu_hoshibito', '雅贝尔': 'iabelle', '雅禅': 'yachan', '雅达利': 'atari', '雅达利男孩': 'atariboy', '雅迪兹': 'yaudizz', '雅典娜 cg': 'athenacg', '雅典娜': 'athyn', '雅典娜_(f_draws)': 'athena_(f_draws)', '雅典娜_(megustalikey)': 'athena_(megustalikey)', '雅典娜_(p&d)': 'athena_(p&d)', '雅典娜_(火徽)': 'athena_(fire_emblem)', '雅典娜_(神话)': 'athena_(mythology)', '雅典娜_(圣斗士)': 'athena_(saint_seiya)', '雅典娜_(系列)': 'athena_(series)', '雅典娜龙': 'athenawyrm', '雅典娜荣耀': 'athena_glory', '培养': 'culter', '培养皿': 'petri_dish', '赔率_&_结束_(vocaloid)': 'odds_&_ends_(vocaloid)', '佩波': 'peppo', '佩蒂纳克斯': 'pertinax', '佩顿_(repzzmonster)': 'peyton_(repzzmonster)', '佩顿吉': 'peyton_gee', '佩多基': 'pedocchi', '佩恩': 'pern', '朋克': 'punk', '朋克': 'punky', '朋克飞马': 'punk-pegasus', '朋克洛丽塔': 'punk_lolita', '朋克梦想家': 'punkydreamer', '朋克头发': 'punk_hair', '朋克西蒙': 'punxsimon', '朋里': 'pun-rii', '朋友': 'friend', '朋友': 'frieren', '朋友_(hua_cao)': 'amigo_(hua_cao)', '朋友_(nanashi_mumei)': 'friend_(nanashi_mumei)', '朋友_(panken)': 'friends_(panken)', '朋友们': 'friends', '朋友球': 'friend_ball', '朋友圈': 'ringofriend', '彭': 'peng', '彭纳': 'penna', '彭勇': 'peng_yong', '棚': 'awning', '棚': 'shed', '棚户区_(tfh)': 'shanty_(tfh)', '棚屋_(艺术家)': 'shack_(artist)', '蓬巴杜': 'pompadour', '蓬波科': 'ponpoko', '蓬勃发展_glade_(帕纳诺维奇)': 'flourish_glade_(pananovich)', '蓬戈托拉': 'pongotora', '蓬古': 'pongu', '蓬吉里': 'ponujiri', '蓬加里': 'pongari', '蓬科塔': 'ponkotta', '蓬克尔': 'poncle', '蓬涅苏': 'ponnetsu', '蓬蓬': 'ponpon', '蓬蓬蓬': 'ponponpon', '蓬蓬蓬': 'popompon', '蓬蓬丸': 'ponponmaru', '蓬普拉姆': 'ponpuramu', '蓬塞克斯': 'ponsex', '蓬松': 'fluffabie', '蓬松': 'fluffies', '蓬松': 'puffy', '蓬松': 'vtalfluffy', '蓬松_(金属雷蒙)': 'fluffy_(metal-renamon)', '蓬松_(绫香)': 'puffy_(ayaka)', '蓬松_(艺术家)': 'fluffy_(artist)', '蓬松邦兹': 'fluffybunz', '蓬松堡垒': 'fluffybastion', '蓬松查克91': 'fluffychuck91', '蓬松戴夫': 'fluffydave', '蓬松的': 'bouffalant', '蓬松的': 'fluffy', '蓬松的尘埃': 'fluffydus', '蓬松的翅膀': 'fluffy_wings', '蓬松的耳朵': 'fluffy_ears', '蓬松的肩膀': 'fluffy_shoulders', '蓬松的脚': 'fluffy_feet', '蓬松的口袋妖怪': 'fluffy-pokemon', '蓬松的毛皮': 'fluffy_fur', '蓬松的屁股': 'fluffy_butt', '蓬松的身体': 'fluffy_body', '蓬松的头发': 'fluffy_hair', '蓬松的头发': 'puffy_hair', '蓬松的伪君子': 'fluffy_hypocrite', '蓬松的尾巴': 'fluffy_tail', '蓬松的尾巴': 'puffy_tail', '蓬松的武器': 'fluffy_arms', '蓬松的小马': 'fluffy_pony', '蓬松的胸部': 'fluffyboobs', '蓬松的袖子': 'puffy_sleeves', '蓬松的血牙': 'fluffy_bloodfang', '蓬松的衣服': 'fluffy_clothing', '蓬松的阴茎': 'fluffy_penis', '蓬松的鬃毛': 'fluffy_mane', '蓬松短裤': 'puffy_shorts', '蓬松莱': 'fluffylai', '蓬松狼人': 'fluffy_the_werewolf', '蓬松连衣裙': 'puffy_dress', '蓬松马': 'fluffymare', '蓬松球': 'fluffy_balls', '蓬松甜甜圈': 'fluffydonuts', '蓬松团子': 'fluffydango', '蓬松拖鞋': 'fluffyslipper', '蓬松胸': 'fluffy_chest', '蓬松爪子': 'fluffy_paws', '蓬松中度': 'fluffybardo', '蓬塔_(维尔马)': 'ponta_(velmar)', '蓬塔罗18': 'pontaro18', '蓬塔苏': 'pontasu', '蓬塔塔': 'pontata', '蓬头垢面': 'disheveled', '蓬头垢面': 'unkempt', '蓬托': 'punto', '硼蛋卷': 'boron_brioche', '硼砂': 'borophagine', '硼砂': 'borumete', '硼酸': 'borahorn', '鹏洛客': 'planeswalker', '篷布': 'tarpaulin', '膨胀': 'distention', '膨胀': 'inflating', '膨胀': 'swellow', '膨胀插入': 'dilation_insertion', '膨胀的肚皮': 'inflated_belly', '膨胀的乳房': 'inflated_breasts', '碰触触手': 'bumped_tentacles', '碰撞': 'bumping', '碰撞': 'collision', '碰撞': 'crash', '碰撞箱': 'hitbox', '批处理gooya': 'batchgooya', '批判性的': 'crittermatic', '批评家': 'pimpartist', '批准': 'ratise', '披风': 'cloak', '披肩': 'capelet', '披肩': 'shawl', '披肩': 'shawli', '披肩翻领': 'shawl_lapels', '披萨_(艺术家)': 'pizzaozzy_(artist)', '披萨递送': 'pizza_delivery', '披萨盒': 'pizza_box', '披头士': 'the_beatles', '砒霜': 'arsenixc', '劈': 'chop', '噼里啪啦的摇篮': 'cracklecradle', '霹雳幻想': 'thunderbolt_fantasy', '霹雳舞': 'breakdance', '霹雳舞': 'breakdancing', '皮埃尔_(脏爪子)': 'pierre_(dirtypaws)', '皮埃尔比切尔伯格': 'pierre_bichelberger', '皮埃尔柯林斯': 'pierre_collins', '皮埃尔诺拉诺': 'pierre_norano', '皮埃尔佩里费尔': 'pierreperifel', '皮埃塔': 'pieta', '皮艾赛': 'piaisai', '皮奥科蒙': 'pyocomon', '皮表带': 'leather_strap', '皮草': 'cjfurs', '皮策尔': 'piczel', '皮春': 'peechun', '皮达塔': 'pi帽ata', '皮代吉': 'piyokichi', '皮代柳': 'piyoyanagi', '皮带': 'leash', '皮带和领子': 'leash_and_collar', '皮带解扣': 'belt_unbuckled', '皮带进料': 'belt_feed', '皮带扣': 'belt_buckle', '皮带链': 'belt_chain', '皮迪派': 'pewdiepie', '皮尔': 'p.i.l.', '皮尔德': 'pilder', '皮尔戈尔': 'peargor', '皮尔斯': 'ippers', '皮肤覆盖的角': 'skin-covered_horns', '皮革': 'leather', '皮革_chaps': 'leather_chaps', '皮革爸爸': 'leather_daddy', '皮革包': 'leather_bag', '皮革背心': 'leather_vest', '皮革比基尼': 'leather_bikini', '皮革臂饰': 'leather_armwear', '皮革臂章': 'leather_armband', '皮革带': 'leather_straps', '皮革底衣': 'leather_bottomwear', '皮革短裤': 'leather_shorts', '皮革服装': 'leather_clothing', '皮革俱乐部场景': 'leatherclub_scene', '皮革裤袜': 'leather_legwear', '皮革盔甲': 'leather_armor', '皮革领': 'leather_collar', '皮革内衣': 'leather_underwear', '皮革上衣': 'leather_topwear', '皮革手饰': 'leather_handwear', '皮革头饰': 'leather_headgear', '皮革腿带': 'leather_legband', '皮革线束': 'leather_harness', '皮革项链': 'leather_choker', '皮革鞋类': 'leather_footwear', '皮革袖口': 'leather_cuffs', '皮革腰带': 'leather_belt', '皮革长袜': 'leather_stockings', '皮格马利翁': 'pygmalion', '皮根茨': 'peagunz', '皮古拉米': 'pikoguramyu', '皮基加尼': 'pichigani', '皮基鲁': 'pikiru', '皮吉': 'pidgey', '皮夹克': 'leather_jacket', '皮杰': 'pijay', '皮杰特': 'pidgeot', '皮杰托': 'pidgeotto', '皮卡': 'pjkka', '皮卡_(消歧义)': 'pickup_(disambiguation)', '皮卡车': 'pickup_truck', '皮卡科亚': 'pikakoya', '皮卡可乐': 'pika-cola', '皮卡莱蒙': 'pikaremon', '皮卡罗': 'pikaro', '皮卡皮': 'picaipii', '皮卡奇': 'pikacchi', '皮卡奇': 'pikachi', '皮卡丘': 'pikachu', '皮卡丘_(角色扮演)': 'pikachu_(cosplay)', '皮卡丘_ph._d': 'pikachu_ph._d', '皮卡丘_phd': 'pikachu_phd', '皮卡丘耳朵': 'pikachu_ears', '皮卡丘服装': 'pikachu_costume', '皮卡丘林': 'pikachurin', '皮卡丘美女': 'pikachu_belle', '皮卡丘尾巴': 'pikachu_tail', '皮卡丘摇滚明星': 'pikachu_rock_star', '皮卡丘罩': 'pikachu_hood', '皮卡苏': 'pikatsu', '皮卡索': 'pikazo', '皮卡特': 'pikat', '皮卡约塔': 'pikajota', '皮坎乔': 'pikanjo', '皮考': 'pikao', '皮考乐': 'pikaole', '皮科薄荷': 'pikomint', '皮科比': 'picocopi', '皮科鲁米': 'picolumi', '皮科马罗': 'pikomaro', '皮科玛丽': 'pikomarie', '皮克蒂': 'picti', '皮克尔博士': 'drpickelle', '皮克尔豪贝': 'pickelhaube', '皮克拉': 'pickra', '皮克敏': 'pikmin', '皮克明_2': 'pikmin_2', '皮克塞鲁': 'pikuseru', '皮克桑达': 'piikeisandaa', '皮克斯': 'pixa', '皮克斯': 'pixar', '皮克斯韦尔': 'pixwell', '皮库': 'piku', '皮库哈鲁': 'pikuharu', '皮库鲁苏': 'pikurusu', '皮库明': 'pikumin', '皮库纳': 'pikuna', '皮库纳蒙': 'pikunamon', '皮库诺玛': 'pikunoma', '皮库皮库': 'pikupiku', '皮库森': 'pikuson', '皮裤': 'leather_pants', '皮裤': 'lederhosen', '皮拉': 'pira', '皮拉卡': 'piraka', '皮拉诺': 'pirano', '皮拉佩拉': 'pila-pela', '皮拉松': 'pirason', '皮里林吉': 'piririnegi', '皮里朋': 'piripun', '皮里希巴': 'pirihiba', '皮利坦': 'pilitan', '皮林顶点': 'pirin-apex', '皮鲁库苏': 'pirukusu', '皮鲁鲁克': 'piruluk', '皮罗': 'piro', '皮罗纳尔德斯科': 'piiroinardesco', '皮罗日基': 'pirozhki', '皮罗什基': 'piroshiky', '皮洛': 'pillo', '皮洛': 'pirlo', '皮洛桑': 'pilosan', '皮洛斯酒': 'piloswine', '皮毛': 'furmarks', '皮毛大衣': 'fur_coat', '皮帽': 'fur_hat', '皮帽': 'leather_cap', '皮帽': 'leather_hat', '皮米': 'pimmy', '皮棉辊': 'lint_roller', '皮莫皮': 'pimopi', '皮那横沟': 'pienahenggou', '皮纳梅库兹': 'piennamekuzi', '皮纳图': 'pinattsu', '皮娜': 'pina', '皮尼什': 'pinyshi', '皮努蒙巴卢': 'pinumontbalou', '皮诺艾苏': 'pinoaisu', '皮诺科': 'pinoko', '皮诺皮诺': 'pinopino', '皮皮': 'pipi', '皮皮913': 'pippi913', '皮皮丹': 'pipidan', '皮皮科皮皮科': 'pipikopipiko', '皮皮克': 'pikipek', '皮皮米': 'pipimi', '皮皮皮皮': 'pippilipi', '套': 'set', '套房': 'ane-suisei', '套房': 'suite', '套管弹射': 'casing_ejection', '套件_(工作室)': 'kit_(studio)', '套件_(詹姆斯霍华德)': 'kit_(james_howard)', '套利': 'arbitgon', '套衫': 'pullover', '套索': 'lariat', '套索': 'lasso', '套索': 'noose', '套索画': 'lassodraw', '套索真相': 'lasso_of_truth', '套筒扳手': 'socket_wrench', '套头衫': 'jumperkit', '套装': 'suit', '忒弥斯的眼泪': 'tears_of_themis', '忒修斯_(冥王)': 'theseus_(hades)', '忒修斯9': 'theseus9', '忒亚': 'theia', '特奥特': 'teot', '特比-': 'terebi-', '特别的感觉': 'special_feeling', '特别棕褐色': 'special_tan', '特点': 'charamel', '特恩': 'tehen', '特尔': 'teer', '特尔曼': 'tlman', '特尔森': 'telson', '特氟龙': 'tef', '特富': 'tefu', '特赫佩罗': 'tehepero', '特急': 'tokkyu', '特技': 'stunt', '特技_(tricktrashing)': 'trick_(tricktrashing)', '特技演员': 'stantler', '特技月亮': 'trick_moon', '特卡': 'teka', '特卡尼': 'thkani', '特科哈尔': 'turkojar', '特科尤克': 'tecoyuke', '特克': 'teke', '特克梦': 'teke-emon', '特克斯': 'tex', '特克斯': 'texus', '特克斯': 'texy', '特克特克': 'teketeke', '特克特克_(特克特克)': 'teketeke_(tekenotteke)', '特库保': 'tekuho', '特库顿博': 'tekutonbo', '特拉盖托': 'traghetto', '特拉格巴': 'teragabba', '特拉赫恩': 'trahern', '特拉赫特加': 'tlachtga', '特拉基翁': 'terrakion', '特拉克诺赫': 'traknoch', '特拉奇': 'teraurge', '特拉茹': 'terrajou', '特拉什曼': 'traashmann', '特拉斯': 'terras', '特拉文': 'travon', '特拉沃': 'travo', '特拉兹': 'traz', '特兰': 'teran', '特兰多尔特69': 'tlandolt69', '特兰西瓦尼亚酒店': 'hotel_transylvania', '特朗布': 'trombe', '特朗斯': 'trunorth', '像素': 'pux', '像素': 'pxton', '像素': 'vixel', '像素_(the_gamercat)': 'pixel_(the_gamercat)', '像素_(艺术品)': 'pixel_(artwork)', '像素zsinful': 'pixelzsinful', '像素标志': 'pixelflag', '像素动画': 'pixel_animation', '像素附件': 'pixelannex', '像素化': 'pixelated', '像素化背景': 'pixelated_background', '像素化的心': 'pixelated_heart', '像素级臭鼬': 'pixelyteskunk', '像素棱镜': 'pixel-prism', '像素玛丽坦': 'pixel_maritan', '像素帽': 'pixelhat', '像素佩里': 'pixel-perry', '像素棚': 'pixshed', '像素素描器': 'pixelsketcher', '像素完美重复': 'pixel-perfect_duplicate', '像素小猫': 'pixelkitties', '像素心': 'pixel_heart', '像素烟头': 'pixel-butts', '像素耀斑': 'pixel_flare', '像素耀斑': 'pixelflare', '像素艺术': 'pixel_art', '像素纸浆': 'pixelpulp', '像素字节': 'pixylbyte', '像糖果一样的声音': 'voicelikecandy', '像我一样': 'melike', '像一条河': 'hinamayo', '橡胶': 'rubber', '橡胶_(艺术家)': 'rubber_(artist)', '橡胶大腿高': 'rubber_thigh_highs', '橡胶服装': 'rubber_clothing', '橡胶鸡': 'rubber_chicken', '橡胶灵魂': 'rubber_soul', '橡胶内裤': 'rubber_panties', '橡胶内衣': 'rubber_underwear', '橡胶生物': 'rubber_creature', '橡胶手套': 'rubber_gloves', '橡胶丝袜': 'rubber_stockings', '橡胶套装': 'rubber_suit', '橡胶体': 'rubber_body', '橡胶靴': 'rubber_boots', '橡胶转换': 'rubber_transformation', '橡胶状的': 'rubbery', '橡皮': 'eraser', '橡皮擦': 'rubber_lass', '橡皮臭鼬': 'rubberskunktoo', '橡皮筋': 'rubber_band', '橡皮猫': 'rubbercat', '橡皮面包': 'rubberbuns', '橡皮面具': 'rubber_mask', '橡皮头_(boku_no_hero_academia)': 'eraser_head_(boku_no_hero_academia)', '吵架': 'Angry ', '橡皮鸭': 'rubber_duck', '橡树16': 'oaks16', '橡树叶': 'oak_leaf', '橡子': 'acorn', '橡子': 'acornart', '橡子': 'akor', '逍遥游': 'jollysaunter', '逍遥志': 'xiaoyaozhi', '鸮鹦鹉': 'kakapo', '鸮鹦鹉': 'king-kakapo', '消防车': 'fire_engine', '消防车': 'fire_truck', '消防队员': 'fire_man', '消防队员': 'firefighter', '消防栓': 'fire_hydrant', '消防水带': 'fire_hose', '消防员': 'fire_keeper', '消防员_制服': 'firefighter_uniform', '消防员77': 'firekeeper77', '消防员夹克': 'firefighter_jacket', '消防员头盔': 'firefighter_helmet', '消防指数': 'firefightdex', '消化': 'digestion', '消化不良': 'indigestion', '消化液': 'digestive_fluids', '消化噪音': 'digestion_noises', '消火栓_(笠间)': 'hydrant_(kasozama)', '消极的': 'negative', '消极的亡灵': 'negativeundead', '消极技能': 'negativskill', '消遣774': 'pastime774', '消色差': 'achromatic', '消失': 'disappear', '消失': 'disappearing', '消失': 'vanimate', '消失的衣服': 'disappearing_clothing', '消失点': 'vanishing_point', '消失在里面': 'disappearing_inside', '消逝的存在': 'evanescent_existence', '消退': 'fade_out', '消息': 'news', '消息框': 'message_box', '消音器': 'silencer', '萧': 'shiao', '硝基': 'nitro', '硝基+_手性': 'nitro+_chiral', '硝基+手性': 'nitro+chiral', '硝基苯': 'tonitrux', '硝基化合物': 'nitrods', '硝基加': 'nitroplus', '硝基甲烷': 'nitromethane', '硝基星': 'nitoro-star', '销售': 'sale', '销售': 'selling', '销售_(乔乔)': 'sale_(jojo)', '销售员': 'salessi', '潇洒': 'dashing', '潇洒的冰淇淋': 'dashingicecream', '小': 'mior', '小_(艺术家)': 'little_(artist)', '小e_f-ire': 'l-i-t-t-l-e_f-i-r-e', '小阿米': 'koami', '小爱': 'xiaoai', '小安民治': 'oyasuminjyutsu', '小奥秘': 'minor_arcana', '小巴托。': 'kobato.', '小巴托': 'kobato', '小霸': 'xiao_pa', '小白': 'bewbchan', '小白': 'whitey', '小白菜': 'pak_choi', '小白菜白': 'small_cabbage_white', '小半杯_牛奶': 'xiaobanbei_milk', '小包': 'kitket', '小包_(kemono_friends)': 'kaban_(kemono_friends)', '小包_(kemono_friends)_(角色扮演)': 'kaban_(kemono_friends)_(cosplay)', '小包酱': 'kaban-chan', '小北': 'xiaobei', '小贝': 'shulk', '小鼻子': 'small_nose', '小比苏': 'petitbisou', '小丑_(卡片)': 'joker_(card)', '小丑_(微笑_precure!)': 'joker_(smile_precure!)', '小丑_(小丑)': 'joker_(stjoker)', '小丑_(直流)': 'joker_(dc)', '小丑_(直流)_(角色扮演)': 'joker_(dc)_(cosplay)', '小丑_oowo': 'joker_oowo', '小丑1': 'clownboy1', '小丑鼻子': 'clown_nose', '小丑车': 'junior_clown_car', '小丑服装': 'clown_costume', '小丑狐狸': 'joker_fox', '小丑帽': 'jester_cap', '小丑面具': 'clown_mask', '小丑鞋': 'clown_shoes', '小丑游戏': 'joker_game', '小丑鱼': 'clownfish', '小丑妆': 'clown_makeup', '小出云': 'koizumo', '小厨师': 'kirochef', '小触手': 'nubbed_tentacles', '小川': 'kogawa', '小川_(chris_386k)': 'kogawa_(kris_386k)', '小川美咲': 'ogawa_misaki', '小川崎': 'akowazaki', '小川寿': 'ogawa_shou', '小川舞子': 'ogawa_maiko', '小川胁': 'kogawawaki', '小传奇': 'little_legend', '小船': 'boait', '小船': 'floette', '小春': 'haru-chan', '小春': 'oharu', '小春1807': 'koharu1807', '小春66353343': 'koharu66353343', '小春酱': 'oharu-chan', '小春子_(khrkhrk)': 'koharuko_(khrkhrk)', '小次郎!': 'kojirou!', '小次郎3': 'kojiro337', '小次郎刷子': 'kojiro-brushard', '小大郎': 'kyodairobo', '小袋': 'pouch', '小袋': 'pouches', '小袋鼠': 'wallabee', '小袋鼠': 'wallaby', '小袋鼠_(girls_und_panzer)': 'wallaby_(girls_und_panzer)', '小岛': 'cojima', '小岛': 'kojijima', '小岛': 'the_isle', '小岛_(blue_stardust)': 'kojima_(blue_stardust)', '小岛广和': 'kojima_hirokazu', '小岛假名': 'kojima_kana', '小岛绫美': 'kojima_ayami', '小岛美': 'kojima_emi', '小岛妻': 'kojima_tsuma', '小岛武': 'kojima_takeshi', '小岛小夜': 'kojima_saya', '小盗龙': 'microraptor', '小道': 'konomichi', '小道sfm': 'trailssfm', '小道君': 'xiao_dao_jun', '小道屋': 'komichi_aya', '小地': 'xiaodi', '小地毯': 'rug', '小地毯': 'rugrats', '小地图': 'minimap', '小蒂娜': 'tiny_tina', '小典典': 'kobutanori', '小点子': 'littlepip', '小店石': 'xiao_dianshi', '小雕像': 'figurines', '小调': 'minoir', '小调': 'minori', '小调_(senran_kagura)': 'minori_(senran_kagura)', '小调_(时尚)': 'minori_(faddy)', '小叮当': 'tinker_bell', '小叮当': 'tinkerbat', '小叮当': 'tinky', '小町_(gao_13)': 'komachi_(gao_13)', '小动物': 'critter', '小动物': 'zoids', '小豆': 'kosame', '小豆豆': 'azukipuddles', '小豆豆': 'kokemozuku', '小豆豆': 'snekkobean', '小豆人': 'azukiman', '小豆色': 'azuki-iro', '小肚腩': 'suibelly', '小肚子': 'xiao_duzi', '小恶魔': 'tinydevil', '小恶魔角': 'tinydevilhorns', '小噩梦': 'little_nightmares', '小耳朵': 'small_ears', '小番座': 'kobanzame', '小贩': 'vendor', '小贩飓风': 'hawker_hurricane', '小贩鹞': 'hawker_harrier', '小飞': 'jirofly', '小飞象_(电影)': 'dumbo_(movie)', '小菲斯基': 'littlefisky', '小肥': 'kohige', '小费': 'gratiel', '小费': 'tip', '小费': 'tipping', '小费罐子': 'tip_jar', '小费鲁': 'miniferu', '小费帽子': 'tipping_hat', '小分队': 'squadrick', '小愤怒': 'littlerager', '小风吕': 'korafuro', '小峰': 'komine', '小峰幸': 'komine_sachi', '小福': 'syaofoo', '小肛门': 'small_anus', '小高': 'kodashi', '小高': 'kotaka', '小睾丸': 'small_testicles', '小根': 'xiao_gen', '小工具': 'gidget', '小公主': 'little_princess', '小宫古': 'komimiyako', '小共生体': 'pokesymbiote', '小狗': 'doggydog', '小狗': 'gerpuppy', '小狗': 'poochyena', '小狗': 'poogie', '小狗': 'puggy', '小鬼': 'kiggy', '傲娇': 'Blush, (anger:1.3), (sadness:0.9)', '小鬼': 'nignogs', '小鬼': 'xiaoguimist', '怨恨': 'grimace, clench jaw, stare daggers', '惊奇': 'raise eyebrows, widen eyes, gasp', '狼狈': 'sweating profusely, clothes askew, panic', '懒散': 'yawning, slouching, dragging feet', '沉默': 'closed lips, no response, blank expression', '自得': 'smiling to oneself, pleased expression, contented sigh', '冷静': 'calm expression, measured tone, steady breathing', '尴尬': 'forced smile, fidgeting, avoiding eye contact', '放松': 'soft smile, relaxed muscles, deep breaths', '哀伤': 'tearful eyes, quivering chin, trembling voice', '疑虑': 'furrow brow, biting lip, looking away', '羞愧': 'hiding face, red cheeks, lowered gaze', '欣赏': 'appreciative gaze, nodding, smiling', '陶醉': 'dreamy expression, soft smile, sigh of contentment', '厌烦': 'rolling eyes, heavy sigh, tapping foot', '渴望': 'longing gaze, wistful smile, sigh', '颓废': 'slumping posture, blank expression, no energy', '高兴': 'smiling, laughing, jumping for joy', '失误': 'slapping forehead, groaning, shaking head', '兴奋': 'wide eyes, big smile, racing heart', '洒脱': 'carefree expression, relaxed posture, easy laughter', '悔恨': 'hang head, furrow brow, let out a heavy sigh', '愉悦': 'smiling, humming, swaying to the beat', '惊恐': 'wide eyes, open mouth, frozen in fear', '冷漠': 'blank expression, no emotional response, ignoring', '沮丧': 'slumping posture, furrowed brow, looking down', '自卑': 'hunching shoulders, avoiding eye contact, speaking softly', '着迷': 'wide eyes, fixed gaze, smiling', '坚定': 'set jaw, unwavering gaze, determined expression', '感动': 'tearful eyes, quivering chin, heartfelt smile', '烦躁': 'tapping foot, clenching teeth, drumming fingers', '怀疑': 'arch eyebrow, furrow brow, squint eyes', '哭泣': 'tearful eyes, sobbing, covering face', '陶醉': 'dreamy expression, soft smile, sigh of contentment', '嫌恶': 'wrinkled nose, turned down mouth, shaking head', '沉重': 'slumped posture, heavy breathing, slow movements', '搞笑': 'wide grin, silly movements, playful tone', '自豪': 'puffed chest, chin up, beaming smile', '温柔': 'soft touch, gentle voice, warm smile', '无语': 'open-mouthed, no response, blank stare', '舒适': 'relaxed posture, satisfied expression, contented sigh', '喜悦': 'big smile, sparkling eyes, skipping with joy', '安心': 'calm expression, steady breathing, closed eyes', '困倦': 'heavy eyelids, yawning, slouching', '感慨': 'sighing deeply, furrowing brow, deep in thought', '震惊': 'wide-eyed, open-mouthed, frozen in shock', '沉迷': 'intense focus, fixed gaze, lost in thought', '愁眉苦脸': 'furrowed brow, downturned mouth, sad eyes', '轻松': 'smiling, carefree movement, relaxed muscles', '振奋': 'excited expression, quick movements, racing heart', '敬畏': 'wide eyes, reverent tone, respectful posture', '疑问': 'puzzled expression, furrowed brow, cocked head', '期望': 'hopeful expression, anticipating, checking watch', '自由自在': 'smiling, carefree movement, relaxed muscles', '沉思默想': 'furrowed brow, thoughtful expression, distant gaze', '悲伤欲绝': 'tearful eyes, heartbroken expression, deep sigh', '向往': 'longing gaze, hopeful expression, deep breaths', '叹为观止': 'open-mouthed, awestruck, wide-eyed', '振作精神': 'smiling, standing tall, taking deep breaths', '心疼': 'sympathetic expression, gentle touch, caring tone', '怀念': 'nostalgic tone, wistful smile, reminiscing', '暴怒': 'red-faced, yelling, stomping feet', '激动': 'wide eyes, big smile, racing heart', '虚弱': 'pale complexion, weak voice, slow movements', '亲切': 'gentle touch, warm gaze, friendly tone', '沉溺': 'intense focus, fixed gaze, lost in thought', '怒气': 'fuming expression, glaring eyes, clenched fists', '深情': 'intense gaze, loving touch, heartfelt tone', '悲喜': 'tearful eyes, conflicted expression, mixed emotions', '痴迷': 'dreamy expression, lost gaze, unable to look away', '惊奇': 'raised eyebrows, widened eyes, gasp', '孤独': 'downcast eyes, distant gaze, isolated posture', '疲倦': 'heavy eyelids, drooping posture, exhausted sigh', '无语': 'open-mouthed, no response, blank stare', '慌乱': 'wide-eyed, trembling voice, panicked movements', '幸运': 'grateful expression, cheerful tone, lucky charm', '愤恨': 'red-faced, raised voice, angry gestures', '感性': 'emotional, sentimental, easily moved to tears', '舒适': 'relaxed posture, satisfied expression, contented sigh', '激动': 'wide-eyed, raised voice, excited movements', '失眠': 'tired eyes, fidgeting, tossing and turning', '满足': 'contented sigh, satisfied expression, relaxed posture', '放松': 'soft smile, relaxed muscles, deep breaths', '憧憬': 'dreamy expression, hopeful tone, starry-eyed gaze', '忐忑': 'anxious expression, racing heart, shaky hands', '绝望': 'downturned mouth, despairing expression, heavy sigh', '无助': 'helpless expression, slumped posture, deep sigh', '怨恨': 'glaring eyes, clenched jaw, bitter tone', '畅快': 'smiling broadly, carefree movement, relaxed muscles', '感慨': 'pensive expression, wistful tone, deep sigh', '庆幸': 'grateful expression, cheerful tone, lucky charm', '痛苦': 'wrinkled brow, pained expression, anguished sigh', '警惕': 'alert expression, tense posture, wary gaze', '忧虑': 'worried expression, fretting, biting nails', '深思': 'furrowed brow, thoughtful expression, distant gaze', '欣慰': 'smiling, nodding, relieved tone', '焦灼': 'anxious expression, pacing, wringing hands', '振奋': 'brightened eyes, firm posture, enthusiastic voice', '压抑': 'tense expression, constricted breathing, weighed down', '沮丧': 'sad eyes, downturned mouth, slumped posture', '愚昧': 'blank expression, no response, ignorant tone', '惊愕': 'jaw-dropping, wide-eyed, stunned expression', '羞愧': 'blushing, avoiding eye contact, ashamed tone', '顿悟': 'realization dawning, enlightened expression, profound insight', '担心': 'worried expression, fretting, biting nails', '震惊': 'stunned expression, shocked tone, trembling body', '彷徨': 'confused expression, lost gaze, indecisive movements', '神秘': 'enigmatic smile, cryptic words, mysterious air', '疏离': 'cold expression, distant posture, avoiding contact', '温柔': 'gentle touch, soft voice, caring gaze', '迷惑': 'puzzled expression, furrowed brow, cocked head', '沉思': 'thoughtful expression, introspective tone, deep sigh', '颓废': 'listless expression, slumped posture, heavy sigh', '慈爱': 'loving gaze, warm embrace, kind words', '嫉妒': 'envious gaze, bitter expression, resentful tone', '忧心': 'worried expression, frowning, deep sigh', '欣喜若狂': 'jumping up and down, shouting, beaming smile', '迷茫': 'confused expression, lost gaze, shaking head', '坚定': 'set jaw, unwavering gaze, determined expression', '惊奇': 'raise eyebrows, widen eyes, gasp', '自得': 'smiling to oneself, pleased expression, contented sigh', '疑虑': 'furrow brow, biting lip, looking away', '舒爽': 'relaxed posture, satisfied expression, contented sigh', '感恩': 'smiling warmly, saying "thank you", giving a hug', '暴躁': 'angry expression, clenching fists, gritting teeth', '低落': 'downcast eyes, slumped posture, heavy sigh', '期待万分': 'anxious expression, tapping foot, checking watch', '感性至极': 'emotional, sentimental, easily moved to tears', '羡慕嫉妒恨': 'envious gaze, bitter expression, resentful tone', '坚韧不拔': 'set jaw, determined look, never give up', '陷入沉思': 'furrowed brow, thoughtful expression, distant gaze', '无助': 'helpless expression, slumped posture, deep sigh', '执着': 'focused expression, determined posture, unrelenting pursuit', '悲痛欲绝': 'tearful eyes, heartbroken expression, deep sigh', '感恩戴德': 'smiling warmly, saying "thank you", giving a hug', '热爱': 'passionate expression, animated movements, heartfelt tone', '绝望至极': 'flop down, bury face in hands, sigh deeply', '赞美': 'admiring expression, nodding, clapping', '担忧': 'worried expression, fretting, biting nails', '焦躁不安': 'tapping foot, clenching teeth, drumming fingers', '感恩': 'smiling warmly, saying "thank you", giving a hug', '认真': 'focused expression, attentive posture, serious tone', '难过': 'sad eyes, downturned mouth, slumped posture', '兴奋万分': 'wild expression, frenzied movements, manic laughter', '充实': 'satisfied expression, contented sigh, relaxed muscles', '傻笑': 'wide grin, silly movements, playful tone', '谦虚': 'humble posture, modest expression, soft tone', '倦怠': 'heavy eyelids, yawning, slouching', '茫然': 'blank stare, no response, lost in thought', '畏惧': 'trembling voice, wide eyes, frozen in fear', '痛苦': 'painful expression, clenched teeth, furrowed brow', '慌张': 'sweating profusely, clothes askew, panic', '忧心': 'worried expression, fretting, biting nails', '发怒': 'red-faced, yelling, stomping feet', '疲倦': 'heavy eyelids, slouching, yawning', '欣喜若狂': 'jumping up and down, shouting, beaming smile', '痛心': 'tearful eyes, heartbroken expression, deep sigh', '惊叹': 'open-mouthed, awestruck, wide-eyed', '优雅': 'graceful movements, poised posture, calm expression', '感性': 'emotional, sentimental, easily moved to tears', '期待': 'anxious expression, tapping foot, checking watch', '崇拜': 'wide eyes, adoring smile, reverent tone', '沉思': 'furrowed brow, thoughtful expression, distant gaze', '平静': 'calm expression, steady breathing, relaxed muscles', '疯狂': 'wild expression, frenzied movements, manic laughter', '恢复': 'smiling, standing tall, taking deep breaths', '慈爱': 'soft smile, gentle touch, warm gaze', '威风': 'proud expression, confident posture, commanding tone', '小鬼哥': 'littlegeecko', '小鬼月': 'kozomezuki', '小国': 'saogokushi', '小国': 'smalldom', '小孩': 'kidchan', '小涵6th': 'xiaohan6th', '小号': 'lessar', '自信': ' (Smile:0.7), (disdain:1.3), (grin:1.2), ', '小号': 'sqoon', '小盒猴': 'locketmonkey', '小贺丸': 'kogamaru', '小黑拉': 'littleblackalas', '小红耳': 'ruberule', '小红帽': 'little_red_riding_hood', '小红帽': 'redpixie', '小虹膜': 'small_iris', '小狐狸': 'kipfox', '不耐烦': 'Smile, disdain, grin, (anger:1.1)', '小狐狸': 'scuzzyfox', '小狐狸': 'tinyfawks', '小胡子打印': 'mustache_print', '小琥珀': 'littleamber', '小护士': 'little_nurse', '小花': 'onohana', '小花雪': 'kohanayuki', '小华': 'yeng-hua', '小环': 'ringlets', '小黄花': 'werbellia', '小黄人': 'werepuppy', '小谎言': 'fibs', '小灰兔': 'little-gray-bunny', '委屈': ' (Cry:0.9)', '小茴香': 'fennecfuchs', '小喙': 'small_beak', '小火猫': 'firekitty', '小伙伴': 'little_buddy', '小伙伴们': 'nab', '小伙子': 'chaps', '小伙子': 'twunk', '小矶冢': 'koiso_tsukasa', '小鸡': 'cackletta', '小鸡': 'chick', '小鸡_iii': 'chicke_iii', '小鸡+a_boom': 'chick+a_boom', '小鸡虫': 'chikkibug', '小鸡打印': 'chick_print', '小鸡快跑': 'chicken_run', '小鸡女孩_(yukimoto_shuuji_(gurigura))': 'chick_girl_(yukimoto_shuuji_(gurigura))', '小鸡上天': 'xiaojishangtian', '小鸡万宝龙': 'chick_montblanc', '小吉努': 'kogiinu', '小加拉希': 'kogalashi', '小加四郎': 'kogashirou', '小家伙': 'bub', '小家居': 'xiaojiaju', '小间': 'komami', '小江户': 'koedo', '小角': 'picorna', '感动哭了': 'Crying and smiling', '感动': '(Crying:0.7) and smiling', '小脚': 'small_feet', '小脚': 'tiny_feet', '小姐': 'missebony', '小姐': 'misswerehog', '小姐': 'rkmlady', '小姐_(艺术家)': 'missy_(artist)', '小姐_l': 'miss_l', '小姐芭芭拉': 'miss_barbara', '小姐单色': 'miss_monochrome', '小姐皮': 'misskin', '乖巧': 'Curious raised eyebrows', '得意': 'shut up and smile', '小脾气': 'Serious frown', '装逼': ' A cold and serious expression (smile:0.7)', '阴险': 'sinister expression smile', '小金': 'minikane', '小金酱': 'dokin-chan', '小金鱼': 'shokikanes', '小金子': 'kogeneko', '小锦_(52siki)': 'konishiki_(52siki)', '小精灵': 'deymos', '小精灵': 'dvixie', '小精灵': 'elfboiii', '小精灵': 'elfein', '狡诈': 'Condescending smirk', '小精灵': 'gremlins', '小精灵': 'l-elf', '小精灵': 'pixie', '小精灵': 'pixiescout', '小精灵': 'pokebii', '小精灵': 'pokebraix', '小精灵': 'pokemoa', '小精灵': 'vapplepie', '小精灵': 'whatsapokemon', '小精灵_(风筝)': 'pixie_(thekite)', '小精灵_(怪物农场)': 'pixie_(monster_farm)', '小精灵_(字符)': 'pixie_(character)', '小井': 'komii', '小井川稔': 'koikawa_minoru', '小酒馆': 'cantina', '小酒馆': 'tavern', '小舅子': 'brother_in_law', '小巨人': 'little_gigant', '小剧场': 'atorie', '小卷曲': 'tinycurlyq', '小军械库': 'little_armory', '小咖啡狂': 'smallcoffemaniac', '小卡通': 'poketoon', '小卡托': 'little_cato', '小尻': 'kojiri', '小可爱': 'obakawaii', '小可怕': 'tiny_terrible', '小克星!': 'little_busters!', '小酷': 'xooku', '小块': 'nubs', '小喇叭': 'boosette', '小喇叭': 'small_horn', '小喇叭': 'tupet', '小赖': 'koyori', '小岚51': 'kogarashi51', '小蓝狐': 'lilbluefoxie', '小狼': 'shinnycoyote', '小狼112': 'littlewolf112', '小浪': 'xiaolang', '小老虎': 'tiger_cub', '小老虎': 'tiny_tiger', '小老虎488': 'littletiger488', '小老鼠': 'micerunt', '小老鼠': 'twymouse', '小雷': 'little_thunder', '女仆装': 'French maid', '小立': 'minutachi', '小栗子': 'gurekoguriko', '小笠': 'kohatsuka', '小笠原': 'ogasawara', '晚礼服': 'evening dress', '小笠原_hikari': 'ogasawara_hikari', '小笠原明子': 'ogasawara_akiko', '小笠原幸子': 'ogasawara_sachiko', '小猎户座': 'mintiaorion', '小猎犬男孩': 'beagle_boys', '小鬣狗': 'impishhyena', '小林_(dragon_maid)': 'kobayashi_(dragon_maid)', '小林_(oksk0x0)': 'kobayashi_(oksk0x0)', '小林_(女仆龙)': 'kobayashi_(maidragon)', '小林_吉孝': 'kobayashi_yoshitaka', '小林_悠二': 'kobayashi_yuuji', '小林本祖': 'syourinbonzu', '小林根': 'kobayashi_gen', '小林玖': 'xiao_lin_jiu', '小林驹': 'kobayashi_koma', '小林丽兹': 'kobayashi_ritz', '小林千鹤': 'kobayashi_chizuru', '小林千里': 'kobayashi_chisato', '小林人': 'kobayashi_jin', '小林桑_chi_no_maidragon': 'kobayashi-san_chi_no_maidragon', '小林新平': 'kobayashi_shinpei', '小林玉味': 'kobayashi_tamami', '小林哲也': 'kobayashi_tetsuya', '小林正和': 'kobayashi_masakazu', '小玲_(京野)': 'xiaoling_(kyouno)', '小柳花子': 'koyanagi_hanako', '小龙': 'dinkysaurus', '小龙': 'little_dragon', '小龙': 'petit_dragon', '小龙_(头后福海)': 'xiaolong_(touhoufuhai)', '小龙虾': 'crawdaunt', '小龙虾': 'crayfish', '小龙虾': 'craymin', '小鲈鱼': 'chibibass', '小鲁妙丽雅': 'xiaolumiaoliya', '小鹿': 'aven-fawn', '小鹿': 'cervelet', '小鹿': 'deerling', '小鹿': 'fallow_deer', '小鹿': 'serareldeer', '小鹿斑比': 'bambi', '小鹿斑比_(电影)': 'bambi_(film)', '小鹿哥': 'tinydeerguy', '小鹿鹿': 'fawn_deer', '小路': 'path', '小路': 'xiao_lu', '小露': 'minoru', '小罗宾逊': 'robisonjr', '小麻雀': 'little.sparrow', '小马': 'a_pony', '小马': 'a-pony', '小马': 'justpony', '小马': 'minma', '小马': 'misterstallion', '小马': 'pony', '小马': 'ponyboom', '小马': 'stunnerpony', '小马': 'swfpony', '小马': 'tatzlpony', '小马': 'thehobbyhorse', '小马': 'tinywag', '小马': 'xiao_ma', '小马_(艺术家)': 'pony_(artist)', '小马_r': 'pony_r', '小马-straponi': 'pony-straponi', '小马钢种马': 'coltsteelstallion', '小马吉': 'lil-maj', '小马驹': 'alittlepony', '小马驹': 'ponyta', '小马狂战士': 'pony-berserker', '小马梦': 'pony_dreaming', '小马日': 'ponydoodleday', '小马杀手': 'ponykillerx', '小马寺': 'komadera', '小马戏': 'ponyplay', '小马隐藏': 'ponyhidden', '小马游戏': 'pony_play', '小马镇': 'ponyville', '小麦': 'aestivalis', '小麦': 'wheat', '小麦打印': 'wheat_print', '小麦体': 'wheat_body', '小满': 'manun-chan', '小满_(瑜伽士)': 'xiaoman_(yogin)', '小猫': 'alterkitten', '小猫': 'dbdkitty', '小猫': 'hina_kitty', '小猫': 'thurkitten', '小猫': 'tinycat', '小猫_(gravity_daze)': 'kitten_(gravity_daze)', '小猫_(哈亚肯)': 'kitty_(hayakain)', '小猫_(金巴)': 'kitty_(kimba)', '小猫_(木板男孩)': 'kitty_(plankboy)', '小猫-n-情人节': 'kitt-n-valentine', '小猫薄荷': 'kitnip', '小猫鼻涕虫': 'kittenboogers', '小猫的': 'kittyodic', '小猫紧张': 'kitterjitters', '小猫脸': 'kitty-face', '小猫绒毛': 'kitsyfluff', '小猫水晶': 'kittydogcrystal', '小猫套装': 'kittysuit', '小猫头鹰': 'koge-owl', '小猫咬伤': 'kittbites', '小猫影': 'kittykage', '小猫爪印': 'kittenpawprints', '小毛': 'kogomo', '小毛地': 'komochi', '小毛绒': 'nyasplush', '小眉毛': 'small_eyebrows', '小梅': 'xiao-mei', '小梅科': 'komekko', '小梅努': 'komainu', '小美酱': 'omy-chan', '小美康': 'komeko-nk', '小妹妹': 'little_sister', '小梦子': 'minori_yumeko', '小米鲁': 'komiru', '小绵羊': 'littlesheep', '小棉絮': 'snivybatt', '小喵': 'komeo', '小喵': 'pocketmew', '小明': 'tinymunch', '小明丑69': 'komeichou-69', '小模子': 'ramekin', '小哞': 'small_moo', '小母马': 'little_mare', '小木': 'xiaomu', '小木_(a414171448)': 'xiaomu_(a414171448)', '小木曾': 'kogiso', '小木户': 'kokido', '小木九郎': 'kidmukuro', '小木库': 'komokuu', '小木乃': 'shomunona', '小木偶': 'mignonette', '小木孙': 'komusun', '小木屋地': 'komanyachi', '小木子': 'komugiko', '小目': 'akeome', '小目': 'kometsubu', '小目龟': 'kochikame', '小牧': 'komaki', '小牧绿': 'komaki_midori', '小牧真中': 'komaki_manaka', '小穆冢': 'komuzuka', '小拿破仑': 'littlenapoleon', '小拿破仑_(人物)': 'littlenapoleon_(character)', '小娜': 'cortana', '小娜': 'ona', '小男孩': 'miniboy', '小男孩': 'pip-boy', '小男孩': 'royboy', '小男孩': 'simmsyboy', '小男孩': 'sonny_boy', '小南瓜': 'petite-pumpkin', '小脑': 'cerebella', '小脑_(骷髅女孩)': 'cerebella_(skullgirls)', '小内裤': 'tiny_panties', '小你': 'minor.u', '小鸟': 'bird_boy', '小鸟': 'bird_d', '小鸟': 'birdo', '小鸟': 'birdy', '小鸟': 'littlebird', '小鸟': 'pinchibird', '小鸟_(street_fighter)': 'birdie_(street_fighter)', '小鸟居': 'ko_torii', '小鸟女孩': 'bird_girl', '小鸟物语': 'owarimonogatari', '小妞': 'chinchy', '小牛': 'xoaiu', '小牛抓斗': 'calf_grab', '小诺亚': 'little_noah', '小女孩': 'minigirl', '小女孩': 'shawnthegirl', '小排': 'rowlet', '小胖': 'thibby', '小胖男': 'slightly_chubby_male', '小胖子': 'cheezayballz', '小胖子': 'mcnubbies', '小胖子': 'slightly_chubby', '小跑': 'trotting', '小蓬': 'ponlets', '小批量': 'miclot', '小屁股': 'small_butt', '小屁孩': 'chibity', '牵着': 'hold', '小屁孩': 'skitty', '小屁孩': 'spazkid', '小屁孩': 'tinnies', '小屁孩': 'vappy', '小屁孩': 'whelpsy', '小片': 'mlice', '小票': 'nycket', '小品': 'skitalets', '小苹果': 'applepup', '小瓶': 'vial', '小瓶_furglitch': 'vial_furglitch', '小七': 'xiao_qi', '小憩': 'nap', '小强_(海外)': 'xiao_qiang_(overseas)', '小强桑': 'xiao_qiang_sang', '小桥': 'kobashi', '小桥': 'kokoyashi', '小桥': 'xiao_qiao', '小鞘': 'small_sheath', '小青': 'hymxiaocyan', '小清水_孝之': 'koshimizu_takayuki', '小清水幸子': 'koshimizu_sachiko', '小情绪': 'zouletsentiment', '小琼': 'xiao_qiong', '小丘': 'kosyooka', '小秋': 'koaki', '小球': 'minigob', '小球': 'noccu', '小球': 'small_balls', '小曲_(小曲-a)': 'koji_(koji-a)', '小泉': 'ozumii', '小泉_月': 'koizumi_itsuki', '小泉花代': 'koizumi_hanayo', '小泉天根': 'koizumi_amane', '小泉真昼': 'koizumi_mahiru', '小泉知香': 'koizumi_chika', '小拳头': 'jodyinkfist', '小人': 'xiao_ren', '小任务': 'the-minuscule-task', '小绒毛': 'littlestfuzz', '小乳房': 'small_breasts', '小乳头': 'small_nipples', '小乳晕': 'small_areola', '小三角': 'littletrixter', '小三庙': 'xiaosamiao', '熊猫_(铁拳)': 'panda_(tekken)', '熊猫8581': 'panda8581', '熊猫宝': 'panda_po', '熊猫打印': 'panda_print', '熊猫大师_(漫画)': 'master_panda_(comic)', '熊猫动力897': 'pandapower897', '熊猫短裤': 'pandashorts', '熊猫耳朵': 'panda_ears', '熊猫服装': 'panda_costume', '熊猫酱_(艺术家)': 'panda-chan_(artist)', '熊猫君': 'panda-kun', '熊猫鲁': 'pandarou', '熊猫帽子': 'panda_hat', '熊猫面团': 'pandadough', '熊猫男孩': 'panda_boy', '熊猫内裤': 'panda_panties', '熊猫女孩': 'panda_girl', '熊猫人': 'pandaren', '熊猫人90': 'pandaman90', '熊猫沙发': 'pandacouch', '熊猫头': 'panda_hood', '熊猫王757': 'pandaking757', '熊猫尾': 'panda_tail', '熊猫子': 'pandako', '熊毛': 'kumao', '熊毛饰品': 'bear_hair_ornament', '熊帽子': 'bear_hat', '熊面馆': 'kumamikan', '熊面具': 'bear_mask', '熊目': 'kumagamike', '熊男孩': 'bear_boy', '熊内裤': 'bear_panties', '熊女孩': 'bear_girl', '球': 'ball', '熊啤酒': 'bearbeer', '熊手': 'bear_hand', '熊手': 'kumatetsu', '熊手记': 'xiongshouji', '熊素': 'ursine', '熊头': 'bear_head', '熊图玛_0517': 'beartouma_0517', '熊拖鞋': 'bear_slippers', '熊丸': 'kumaru', '熊万': 'kumaman', '熊尾': 'bear_tail', '熊五郎': 'kumagoro', '熊西塔': 'kumanosita', '熊陷阱': 'bear_trap', '熊熊': 'bearmon', '熊熊': 'kumakuma', '熊熊的': 'beartic', '熊巡逻': 'bearpatrol', '熊野': 'kumadano', '熊野_(kancolle)_(cosplay)': 'kumano_(kancolle)_(cosplay)', '熊原': 'kumahara', '熊泽_(dkdkr)': 'kumasawa_(dkdkr)', '熊掌': 'bear_paw', '熊爪': 'bear_paw_s', '熊爪': 'bear_paws', '熊爪': 'bearclaw', '熊爪': 'bear-paws', '熊爪锤': 'bear_paw_hammer', '熊罩': 'bear_hood', '熊之介': 'kumonosuke', '熊之子': 'kumanoko', '熊织': 'kumaori', '熊重': 'kumashige', '休': 'hyu', '休_(口袋妖怪)': 'hugh_(pokemon)', '休_(塔兹狂热)': 'hugh_(taz-mania)', '休巴雷': 'syubare', '休波': 'huepow', '休假': 'furrlough', '休考考24': 'siukaukau24', '休克利23': 'shockley23', '休夸卡纳鲁': 'syukouakanaru', '休曼': 'hyuuman', '休眠水獭': 'dormant_otter', '休谟': 'hume', '休谟_(艺术家)': 'hume_(artist)', '休穆斯克罗拉': 'hugh_muskroura', '休斯': 'hews', '休斯': 'hyuse', '休斯顿_(坎科尔)': 'houston_(kancolle)', '休息': 'rest', '休息': 'resting', '休息': 'restya', '休息臂': 'resting_arm', '休息球': 'resting_balls', '休息室': 'lounge', '休闲车': 'recreational_vehicle', '休闲虫': 'leisure_bug', '休闲打结': 'casual_knotting', '休闲裤': 'slacks', '休闲裸体': 'casual_nudity', '休闲曝光': 'casual_exposure', '休闲性': 'casual_sex', '休闲一体式泳装': 'casual_one-piece_swimsuit', '休闲椅': 'lounge_chair', '休闲装': 'casual_vore', '休亚': 'syuya', '休伊': 'hewie', '休园': 'syuuen', '休战': 'truce', '咻咻咻': 'chiruchiru', '修': 'syu', '修补': 'patch', '修补炸弹': 'tinkerbomb', '修道': 'shumichi', '修道院': 'cloyster', '修道院_(bcb)': 'abbey_(bcb)', '修道院_(pui_pui_molcar)': 'abbey_(pui_pui_molcar)', '修订': 'revision', '修订驱动程序': 'revice_driver', '剪': 'Cut with scissors', '修复者': 'fixxxer', '修改': 'modification', '修改后的': 'modifiedlast', '修格斯': 'shoggoth', '修剪': 'topiary', '瑶依': 'yaoi', '瑶柱': 'yawdeone', '咬': 'bite', '咬': 'bitte', '咬臂': 'biting_arm', '咬脖子': 'neck_biting', '咬衬衫': 'biting_shirt', '咬唇': 'bitemylip', '咬唇': 'biting_lip', '咬唇': 'bitting_lip', '咬大小艺术': 'bitesize_art', '咬得很紧': 'bittenhard', '咬对象': 'biting_object', '咬耳朵': 'ear_bite', '咬耳朵': 'ear_biting', '咬睾丸': 'biting_testicles', '咬盒64': 'bitebox64', '咬痕': 'bite_mark', '咬喉': 'throat_biting', '咬紧脚趾': 'clenching_toes', '咬紧牙关': 'clenched_teeth', '咬紧牙关': 'clenching', '咬颈': 'neck_bite', '咬脸颊': 'cheek_biting', '咬拇指': 'thumb_biting', '咬奶': 'breast_biting', '咬屁股': 'ass_biting', '咬屁股': 'butt_biting', '咬苹果': 'bitten_apple', '咬人': 'biting', '咬人': 'bitting', '咬人音效': 'biting_sound_effect', '咬乳头': 'nipple_biting', '咬伤': 'luvbites', '咬舌': 'biting_tongue', '咬手': 'biting_hand', '咬手': 'hand_biting', '咬手帕': 'handkerchief_biting', '咬手套': 'glove_biting', '咬手指': 'finger_bite', '咬手指': 'finger_biting', '咬头': 'head_biting', '咬头发': 'biting_hair', '咬头发': 'hair_bite', '咬尾': 'tail_biting', '咬尾者': 'tailbiter', '咬文': 'bittenbun', '咬牙切齿': 'snaggle_tooth', '咬一口': 'bit-bite', '咬衣服': 'biting_clothes', '咬衣服': 'biting_clothing', '咬阴茎': 'penis_biting', '咬瘾者': 'bite_addict', '咬指甲': 'nail_biting', '咬自己的舌头': 'biting_own_tongue', '咬嘴唇': 'lip_biting', '舀': 'spooning', '药材大月': 'yakumodaisuki', '药虫': 'pillbug', '药盒': 'medicine_box', '药盒帽子': 'pillbox_hat', '药红': 'yakubeni', '药剂': 'agentagnes', '药酒': 'yaojou', '药库': 'yaoku', '药葵': 'yakui', '药片': 'tablet', '药瓶': 'medicine_bottle', '药瓶': 'pill_bottle', '药球屋': 'yakkyokuya', '药山市': 'yaoshan_shi', '药师_kabuto': 'yakushi_kabuto', '药师君': 'yaoshi_jun', '药师寺惠': 'yakushiji_megumi', '药师寺凉子': 'yakushiji_ryouko', '药水': 'potion', '药水_(moudamepo)': 'potion_(moudamepo)', '药水_(口袋妖怪)': 'potion_(pokemon)', '药水_丁香': 'potion_lilac', '药水标签': 'potion_label', '药水名称': 'potion_name', '药水瓶': 'potion_bottle', '药水制造者': 'potion_maker', '药丸': 'holding_pill', '药丸': 'pills', '药丸耳环': 'pill_earrings', '药丸凉太': 'yakushimaru_ryota', '药丸舌头': 'pill_on_tongue', '药物': 'drugs', '药物': 'durg', '药物': 'medic', '药物': 'medicham', '药物': 'medicine', '药物_(艺术家)': 'durg_(artist)', '药物用具': 'drug_paraphernalia', '药效学': 'pirill-poveniy', '药用_succ': 'medicinal_succ', '药友所': 'yakuoyoso', '药助': 'yakusuke', '要快乐': 'going_merry', '要毛': 'kanamemo', '要求': 'vaati', '要塞_(奈叶)': 'fortress_(nanoha)', '要温柔': 'be_gentle', '要旨': 'g-ist', '钥匙': 'key', '钥匙': 'keys', '钥匙耳环': 'key_earrings', '钥匙罐': 'keypot', '钥匙孔服装': 'keyhole_clothing', '钥匙链': 'keychain', '钥匙片': 'keyblade', '钥匙圈': 'key_ring', '钥匙圈': 'keyring', '钥匙项链': 'key_necklace', '耀斑': 'flare', '耀斑': 'flareza', '耀斑': 'flear', '耀斑_(flarevrc)': 'flare_(flarevrc)', '耀斑_(永远)': 'flareze_(porforever)', '耀斑凤凰': 'flare_phoenix', '耀斑棱镜': 'flare_pris', '耀色拉': 'yaosera', '耀西': 'yoshi', '耀西吃你的馅饼': 'yoshi-eats-your-pie', '掖': 'tuck', '椰子': 'cocoloco', '椰子': 'cocolog', '椰子': 'cocomeen', '椰子': 'cocona', '椰子': 'coconomi', '椰子': 'coconut', '椰子': 'cocorip', '椰子': 'cocoronut', '椰子_(hinatacoco)': 'coco_(hinatacoco)', '椰子_(nekopara)': 'coconut_(nekopara)', '椰子_(VOCALOID)': 'kokone_(vocaloid)', '椰子斑马': 'cocothezebra', '椰子豆腐': 'kokko_tofu', '椰子树': 'coconut_tree', '椰子树': 'cocoroppy', '椰子水星': 'coco_mercury', '椰子素': 'cocoroten', '椰子夏': 'coconat_summer', '椰子蟹': 'coconut_crab', '椰子胸罩': 'coconut_bra', '郁金香_(花)': 'tulip_(flower)', '郁金香_(偶像大师)': 'tulip_(idolmaster)', '郁金香帽子': 'tulip_hat', '郁闷': 'depressed', '郁郁葱葱': 'lush', '郁郁葱葱': 'lushminda', '育碧': 'ubisoft', '育雏': 'broodal', '育雏': 'broody', '育空': 'yukon', '育母': 'broodmother', '育微龙': 'yomiclone', '育种请求': 'breeding_request', '育种山': 'breeding_mount', '育种台': 'breeding_stand', '狱': 'pokey', '狱警': 'prison_guard', '彧': 'twee', '浴霸': 'yubaba', '浴凳': 'bath_stool', '浴缸': 'bathtub', '浴缸布巴杜布斯': 'tubswubadubs', '浴室': 'bathroom', '浴室秤': 'bathroom_scale', '浴室瓷砖': 'bathroom_tiles', '浴室地板': 'bathroom_floor', '浴室水槽': 'bathroom_sink', '浴室性爱': 'bathroom_sex', '浴太郎': 'yukataro', '浴血': 'bath_of_blood', '浴衣': 'bathrobe', '浴衣': 'yukata', '浴衣': 'yukatama', '浴衣_(yume_2kki)': 'yukata_(yume_2kki)', '浴衣电梯': 'yukata_lift', '预3445': 'pre3445', '预报佳娜': 'forecast_janna', '预测': 'predict', '预告片': 'teaser', '预告片': 'trailer', '预购': 'pregoo', '预固化': 'precure', '预期': 'anticipation', '预算_sarashi': 'budget_sarashi', '预习': 'preview', '预言_(落一文字)': 'prophecy_(rakuichimonji)', '预言家': 'prophet', '预兆': 'foretbwat', '预兆': 'omenion', '预兆_(布莱德)': 'omen_(blaidd)', '欲望': 'desidobie', '欲望_(fma)': 'lust_(fma)', '欲望_(mako_mickt)': 'desire_(mako_mickt)', '欲望_yoshi': 'desire_yoshi', '欲望驱动器': 'desire_driver', '欲望之书': 'book_of_lust', '阈限豆': 'liminalbean', '阈限性': 'liminarity', '遇见': 'meet', '遇见_(mega_man)': 'met_(mega_man)', '御坂': 'missaka', '御坂_(05)': 'misaka_(05)', '御坂_(missa)': 'misaka_(missa)', '御坂美琴': 'misaka_mikoto', '御坂汐织': 'misaka_shiori', '御坂香织': 'misaka_kaori', '御部': 'gyobu', '御茶水mirie': 'ochanomizu_mirie', '御茶水然': 'ochanomizu_ran', '御风': 'mikaze', '御风': 'omuretsu', '御寒寺': 'mikan-uji', '御好烧': 'okonomiyaki', '御黑': 'omikuro', '御假名': 'misakana', '御金屋郎': 'mikinyaro', '御经子': 'misakatsuneko', '御濑之内': 'misenouchi', '御莲岛丸': 'orenjimaru', '御林': 'oirin', '御木里': 'mikisato', '御前寺': 'gozen4ji', '御山': 'mikeyama', '御胜豪迈': 'misokatsuhaumai', '御室客': 'oomuro-ke', '御手': 'okochira', '御手洗': 'mitarashi', '御手洗': 'mitarashi_o', '御手洗光生': 'mitarashi_kousei', '御守': 'mimamori', '御守': 'omamori', '御寿尊': 'gosuzun', '御书守大人二宫君': 'goshuushou-sama_ninomiya-kun', '御田京': 'udakyo', '御一典': 'miichinori', '御影丸_(mikage000)': 'mikagemaru_(mikage000)', '御影宇佐美': 'usamimikurage', '御岳830': 'mitake830', '御宅室': 'otaku_room', '御宅族': 'otakuap', '御宅族_(艺人)': 'otaku_(artist)', '御宅族_黑石': 'otaku_heishi', '御子酱': 'emikochan', '御佐志留': 'omisoshiru', '寓言iii': 'fableiii', '愈伤组织': 'calli', '愈伤组织': 'callitrichid', '鸢尾': 'fleurdeiris', '鸢尾': 'fleur-de-lis', '鸢尾花': 'iridiu', '鸢尾花': 'iridius', '鸢尾花': 'iris_amicitia', '鸢尾花': 'iris_anemone', '鸢尾花': 'irise', '鸢尾花': 'iris-icecry', '鸢尾花': 'irisrey', '鸢尾花': 'iryanic', '鸢尾花': 'iryx', '鸢尾花_(花)': 'iris_(flower)', '鸢尾花威尔逊': 'iris_wilson', '鸢尾科': 'cracticinae', '鸢尾鸟': 'eris_bird', '渊': 'fuchi', '渊虎': 'fuchitoro', '渊间': 'fuchima', '渊驹': 'fuchikoma', '元': 'meta', '元': 'metae', '元': 'yeun', '元_(自然然)': 'yuan_(ziranran)', '元朝子': 'motoasako', '元初': 'wonchul', '元春': 'wonchun', '元旦': 'wontam', '元德': 'gentoku', '礼服': 'formal dress', '晚礼服': 'evening dress', '长裙': 'long skirt', '雪纺裙': 'chiffon dress', '蕾丝裙': 'lace dress', '拖尾裙': 'train dress', '公主裙': 'princess dress', '婚宴服装': 'wedding banquet attire', '元多拉': 'metadora', '元宫大辅': 'motomiya_daisuke', '元宫渚': 'motomiya_nagisa', '元贺': 'yuanagae', '元龙': 'yuan_long', '元龙艺术': 'metadragonart', '元蜜蜂': 'metabee', '元诺': 'yuano', '元骑士': 'meta_knight', '元气团': 'genkidaun', '元枪': 'meta_gun', '冷酷的': 'dracovish', '冷酷的': 'grimer', '冷酷的_(扭曲的_仙境)': 'grim_(twisted_wonderland)', '冷酷的芦荟': 'grim_aloe', '冷酷的邪恶诺夫': 'grim-evilnov', '冷酷君': 'grim-kun', '冷酷无情': 'grimdark', '冷酷无情': 'grimgrim', '冷落公牛': 'snubbull', '冷猫。': 'coldcat.', '冷门': 'colrblnd', '冷漠': 'lengry', '冷漠': 'limbo', '冷漠': 'nonchalant', '冷气机': 'air_conditioner', '冷却垫': 'cooling_pad', '冷却器': 'cooler', '冷却器_(龙珠)': 'cooler_(dragon_ball)', '冷却塔': 'cooling_tower', '冷色调卡飞': 'leng_sediao_kafei', '冷杉': 'firr', '冷杉出生': 'fir3born', '冷渗透': 'cold_penetration', '冷双子座': 'coldgemini', '冷娃果': 'leng_wa_guo', '冷笑': 'sneer', '冷笑_(艺术家)': 'sneer_(artist)', '冷血的暮光': 'cold-blooded-twilight', '冷战': 'cold_war', '厘米26': 'cm26', '狸': 'raccoon', '狸猫': 'tanuki', '狸猫': 'tanutanuki', '狸猫_(siutkm0228)': 'tanuki_(siutkm0228)', '狸猫_(金属狸猫)': 'tanuki_(metaltanuki)', '狸猫艺术': 'tanukiarts', '狸猫庄': 'tanukimaso', '狸丸': 'tanukimaru', '狸小路_绿': 'tanukikouji_midori', '离地': 'off_the_ground', '离合器2130': 'clutch2130', '离合器射击王': 'clutch_shot_king', '离肩': 'off_shoulder', '离经叛道': 'deviantart', '离经叛道的': 'cundodeviant', '离开': 'leaving', '离开': 'off', '离开地面': 'leaves_on_ground', '离轮迦耶': 'kirena-kaya', '离屏': 'off_screen', '离屏字符': 'off_screen_character', '离屏字符': 'offscreen_character', '离奇的': 'bizarre', '离心机': 'centrifuge', '离月': 'farellemoon', '离早散': 'lizaosan', '离子_(阳离子)': 'ion_(cation)', '离子27': 'ion-27', '离子44': 'ionic44', '离子艾萨克': 'ionicisaac', '离子通': 'iontoon', '梨': 'pear', '梨_(don_ko)': 'pear_(don_ko)', '梨_(艺术家)': 'pears_(artist)', '梨花': 'rika', '梨花': 'rizcifra', '梨花双香': 'lihuashuangxiang', '梨酱': 'nashirasauce', '雷子': 'rezi', '雷佐': 'reizo', '雷佐尔': 'rayzoir', '雷佐韦尔': 'rezodwel', '垒球': 'softball', '蕾妮': 'renee', '蕾妮月纱': 'renee-moonveil', '蕾丝': 'lace', '蕾丝': 'lacress', '蕾丝比基尼': 'lace_bikini', '蕾丝边比基尼': 'lace-trimmed_bikini', '蕾丝边短裤': 'lace-trimmed_shorts', '蕾丝边内裤': 'lace-trimmed_panties', '蕾丝边饰_伞': 'lace-trimmed_umbrella', '蕾丝边饰衬衫': 'lace-trimmed_shirt', '蕾丝边饰吊带背心': 'lace-trimmed_camisole', '蕾丝边饰紧身连衣裤': 'lace-trimmed_leotard', '蕾丝边饰裙': 'lace-trimmed_skirt', '蕾丝边饰文胸': 'lace-trimmed_bra', '蕾丝边围裙': 'lace-trimmed_apron', '蕾丝边袖': 'lace-trimmed_sleeves', '蕾丝边泳装': 'lace-trimmed_swimsuit', '蕾丝连衣裙': 'lace_dress', '蕾丝面纱': 'lace_veil', '蕾丝裙': 'lace_skirt', '蕾丝饰边连衣裙': 'lace-trimmed_dress', '蕾丝胸罩': 'lace_bra', '肋村': 'ribimura', '肋骨': 'rib_cage', '肋骨': 'ribs', '肋骨:y(uhki)': 'rib:y(uhki)', '肋骨_(肋骨)': 'rib_(ribera)', '肋骨_(肋骨_delesetong)': 'rib_(rib_delesetong)', '肋骨线': 'rib_lines', '泪环传奇': 'tear_ring_saga', '泪流满面': 'tearju_lunatique', '泪流满面的高潮喜悦': 'tears_of_orgasmic_joy', '泪眼': 'teary_eyes', '泪鱼': 'tearfish', '泪珠': 'teardrop', '泪珠耳环': 'teardrop_earring', '泪珠框眼镜': 'teardrop-framed_glasses', '泪珠面部标记': 'teardrop_facial_mark', '泪珠纹身': 'teardrop_tattoo', '类14': 'klasse14', '类比': 'analoguma', '类风化': 'weatheroid', '类固醇': 'physeteroid', '类号': 'class_number', '类黄酮': 'certhioid', '类人猿星球': 'planet_of_the_apes', '类碳化物': 'carbonoid', '类星体': 'elateroid', '类星体': 'quasar', '类星体': 'quasarbre', '类星体': 'quasart', '类星体蛋糕': 'quasarcake', '类星熊猫': 'quasarbearcat', '类型': 'nyantype', '类型': 'type', '类型:_null': 'type:_null', '类型_(类型空间)': 'tipo_(tipoplaza)', '类型-alpha': 'type-alpha', '类型狗': 'type-dog', '类型月亮': 'type-moon', '类血管蛋白': 'voyakiloid', '类植物': 'vegetoid', '累犯': 'jailbird', '累了': 'tiry', '棱镜': 'prism', '棱镜_(fr0gv0re)': 'prisma_(fr0gv0re)', '棱镜6': 'prisma6', '棱镜风': 'prismwind', '棱镜红': 'prismblush', '棱镜女孩': 'prismgirls', '棱皮龟': 'leatherback', '棱柱狼': 'prismatic_wolf', '冷_(星野骷髅)': 'cold_(hoshinoskull)', '冷兵器': 'cold_warrior', '冷插入': 'cold_insertion', '冷禅_(fu626878068)': 'lengchan_(fu626878068)', '冷淡_(鲨鱼)': 'frosty_(sharky)', '冷冻': 'cryena', '冷冻': 'cryozen', '冷冻': 'fahrencrysis', '冷冻': 'freezing', '冷冻': 'frozen', '冷冻_(迪士尼)': 'frozen_(disney)', '冷冻_(系列)': 'freezing_(series)', '冷冻固体': 'frozen_solid', '冷冻前': 'freeze-ex', '冷冻荞麦面': 'frozensoba', '冷冻青蛙': 'frozen_frog', '冷冻人造物': 'frozenartifice', '冷冻酸奶': 'frozen_yoghurt', '冷冻型': 'freezietype', '冷冻艺术': 'efreezerarts', '冷风': 'queencold', '冷隔离': 'cold_quarantine', '冷狗': 'chilldog', '冷汗': 'cold_sweat', '冷黄尾': 'cold_yellowtail', '冷火': 'coldfire', '冷静_(艺术家)': 'calm_(artist)', '冷静的': 'calm', '冷静的真城': 'calm_mashiro', '冷库': 'thecoldsbarn', '金属头97': 'metalhead97', '金属尾': 'metal_tail', '金属线': 'metal_wire', '金属袖口': 'metal_cuffs', '金属靴': 'metal_boots', '金属牙齿': 'metal_teeth', '金属阴茎': 'metal_penis', '金属阴影': 'metallicumbrage', '金属英雄': 'metal_hero', '金属栅栏': 'metal_fence', '金属粘液': 'metal_slime', '金属爪75': 'metaljaw75', '金丝雀': 'canari', '金丝雀': 'canary', '金丝雀_(fiaskers)': 'canary_(fiaskers)', '金穗': 'gold_spikes', '金塔拉1': 'chintara10', '金塔罗': 'jackintaro', '金塔罗斯': 'kintaros', '金太郎': 'kanatarou', '金太郎': 'kinntarou', '金太郎': 'kintaro', '金太郎': 'kintarou', '金太阳': 'golden_sun', '金泰利': 'jintally', '金蹄': 'gold_hooves', '金体': 'gold_body', '金天使': 'kinkangel', '金田花花乐马': 'jintianhuahualema', '金条': 'gold_bar', '金条': 'gold_stripes', '金头带': 'gold_headband', '金头发': 'blonde_hair', '金图博沃': 'kintubaovo', '金途': 'kintuse', '金托基亨利': 'gintokyhenry', '金丸': 'kanimaru', '金屋': 'kanameya', '金吾': 'jingo', '金西': 'jinxit', '金西谢尔夫': 'kin-cishepholf', '金夏': 'kanatsu', '金项链': 'gold_choker', '金项链': 'gold_necklace', '金谢夫': 'kinsheph', '金星_(p&d)': 'venus_(p&d)', '金星_(粉碎)': 'venus_(smashmat)', '金星_(三重奏)': 'venus_(trias)', '金星_(行星)': 'venus_(planet)', '金星花': 'venusflower', '金星花艺': 'venusflowerart', '金星瀑布': 'venusfalls', '金秀贤': 'kim_soohyun', '金鸭': 'golduck', '金牙': 'gold_teeth', '金牙': 'gold_tooth', '金腰带': 'gold_belt', '金翼': 'golden_wing', '金阴茎': 'gold_penis', '金鹰': 'golden_eagle', '金由浦': 'kanameyura', '金右卫门': 'kinemon', '金鱼': 'goldfish', '金鱼': 'goldfishu', '金鱼': 'ponyo', '金鱼狗': 'goldfishdog', '金鱼沙': 'goldenyuusha', '金鱼舀': 'goldfish_scooping', '金源712': 'jinyuan712', '金云': 'jin_yun', '金站': 'jinzhan', '金长': 'kanacho', '金之屋': 'kanenoya', '金雉鸡': 'golden_pheasant', '金中': 'kanaka', '金助': 'kanasuke', '金子': 'gold', '金子': 'kam-ja', '金字塔': 'pyramid', '金字塔': 'pyramids', '金字塔_(几何)': 'pyramid_(geometry)', '金字塔_(结构)': 'pyramid_(structure)', '金字塔头': 'pyramid_head', '金字塔头_(寂静山)': 'pyramid_head_(silent_hill)', '津巴布韦富米': 'zimbabwefumi', '津北': 'zinbei', '津边地': 'tsunbeji', '津吹山': 'tsuwabuki-san', '津村': 'tsumuri', '津丹名': 'tsudanym', '机器人': 'droid', '机器人': 'gobots', '机器人': 'rdroid', '机器人': 'robographer', '机器人': 'robo-ky', '机器人': 'robomax', '机器人': 'robosylveon', '机器人': 'robot', '机器人': 'robotic', '机器人': 'robotta', '机器人': 'thiccrobots', '机器人_(pixiv_42325944)': 'robot_(pixiv_42325944)', '机器人_(tegerio)': 'robota_(tegerio)', '机器人_(漫画)': 'robot_(manga)', '机器人_neoanthropinae_polynian': 'robot_neoanthropinae_polynian', '机器人8': 'robo8', '机器人背景虚化': 'robokeh', '机器人财富': 'robo-fortune', '机器人触手': 'robotic_tentacles', '机器人大师': 'robot_master', '机器人动物': 'robot_animal', '机器人独角兽攻击': 'robot_unicorn_attack', '机器人耳朵': 'robot_ears', '机器人狗': 'robot_dog', '机器人关节': 'robot_joints', '机器人化': 'robotization', '机器人鸡': 'robot_chicken', '机器人技术': 'robotech', '机器人技术;': 'robotics;notes', '机器人贾奈': 'robojanai', '机器人猫': 'robocattnsfw', '机器人猫': 'robot_cat', '机器人帽': 'robocap', '机器人男孩': 'robotboy', '机器人女孩': 'robot_girl', '机器人癖': 'robophilia', '机器人乔': 'robotjoe', '机器人人形机器人': 'robot_humanoid', '机器人山': 'roboco-san', '机器人舌头': 'robotic_tongue', '机器人史蒂夫': 'cyborg-steve', '机器人腿': 'robotic_leg', '机器人腿': 'robotic_legs', '机器人显示': 'robotic_reveal', '机器人性爱': 'robot_sex', '机器人阴茎': 'robot_penis', '机器人炸弹': 'rorobomb', '机器人装甲': 'robobot_armor', '机前社': 'gizensha', '机枪': 'machine_gun', '机枪': 'minigun', '机手台口': 'machimotetaikou', '机械': 'machina', '机械': 'machinery', '机械': 'mechanic', '机械臂': 'mechanical_arm', '机械臂': 'mechanical_arms', '机械臂': 'robot_arm', '机械臂': 'robotic_arm', '机械臂': 'robotic_arms', '机械触手': 'mechanical_tentacles', '机械的': 'machinicalis', '机械的': 'mechanical', '机械耳朵': 'mechanical_ears', '机械哥斯拉': 'mechagodzilla', '机械公牛': 'mechanical_bull', '机械狗': 'maehdoggie', '机械光环': 'mechanical_halo', '机械轨道炮': 'mechrailgun', '机械化': 'mechagen', '机械化': 'mechanization', '机械化': 'mechari', '机械伙伴宇宙': 'mechanical_buddy_universe', '机械脊柱': 'mechanical_spine', '机械僵尸': 'majinizombie', '机械津奈达': 'mechazinaida', '机械垃圾': 'mechjunk', '机械喇叭': 'mechanical_horns', '机械零件': 'mechanical_parts', '机械龙': 'mechanical_dragon', '机械猫头鹰': 'mechanical_owl', '机械鸟': 'mechanical_bird', '机械癖': 'mechanophilia', '机械裙': 'mechanical_skirt', '机械扫帚': 'mechanical_broom', '机械设备_42': 'maschinengewehr_42', '机械师_(grandblue_fantasy)': 'mechanic_(granblue_fantasy)', '机械师_(ragnarok_online)': 'mechanic_(ragnarok_online)', '机械师_(武器)': 'mechanica_(arms)', '机械师_(最终幻想)': 'machinist_(final_fantasy)', '机械手': 'mechanical_hands', '机械手': 'robotic_hand', '机械手套': 'mechanical_gloves', '机械头发': 'mechanical_hair', '机械腿': 'mechanical_leg', '机械腿': 'mechanical_legs', '机械尾': 'mechanical_tail', '机械舞台': 'mechanicalstage', '机械靴': 'mechanical_boots', '机械眼': 'mechanical_eye', '机械翼': 'mechanical_wings', '机械阴茎': 'mechanical_penis', '机械战警': 'robocop', '机械爪': 'mechanical_jaws', '机信': 'kishin', '机翼': 'fleet_wing', '机翼标记': 'wing_markings', '机翼尺寸差异': 'wing_size_difference', '机翼穿孔': 'wing_piercing', '机翼高达零': 'wing_gundam_zero', '机缘巧合': 'serendipity', '机张': 'gijang', '机之介': 'machinosuke', '机智_1': 'wit_1', '肌病': 'inosia', '肌动': 'emyo', '肌红蛋白': 'miogrobin', '肌腱_(扎扎天通)': 'tendo_(zhazhatiantong)', '肌肉_herm': 'muscular_herm', '肌肉臂': 'muscular_arm', '肌肉臂': 'muscular_arms', '肌肉肠': 'musclegut', '肌肉车': 'muscle_car', '肌肉车': 'musclecar', '肌肉衬衫': 'muscle_shirt', '肌肉尺寸差异': 'muscle_size_difference', '肌肉崇拜': 'muscle_worship', '肌肉发达': 'muscular', '肌肉发达的大腿': 'muscular_thighs', '肌肉发达的屁股': 'muscular_butt', '肌肉颈部': 'muscular_neck', '肌肉静脉': 'muscle_vein', '肌肉狂野': 'muscular_feral', '肌肉老鼠': 'muscle_mouse', '肌肉老鼠': 'muscles_mouse', '肌肉类人': 'muscular_humanoid', '肌肉模糊的': 'muscular_ambiguous', '肌肉男': 'muscleartguy', '肌肉男': 'muscular_anthro', '肌肉男': 'muscular_human', '肌肉男': 'muscular_intersex', '霍卡': 'hoka', '霍卡纳': 'hokkana', '霍克巴吉尔': 'hork-bajir', '霍昆': 'hoqn', '霍拉雷佐努': 'horarezonu', '霍里': 'hhhori', '霍利克': 'hollyk', '霍利维': 'holivi', '霍林': 'horin', '霍隆': 'holon', '霍卢查': 'hawlucha', '霍罗卡': 'horocca', '霍洛玛鲁': 'hollomaru', '霍洛伊茨昆特利': 'xoloitzcuintli', '霍马德里': 'homaderi', '霍姆': 'homu', '霍姆阿': 'homua', '霍姆科': 'homco', '霍姆斯': 'holmssie', '霍姆塔图': 'homutatu', '霍穆利利': 'homulilly', '霍尼': 'honi', '霍尼森': 'honeyson', '霍农': 'honon', '霍诺': 'hono', '霍诺里克': 'khonorik', '霍诺维': 'honovy', '霍佩格': 'hoppege', '霍佩什': 'khopesh', '霍普': 'hoippu', '霍奇克斯坦克': 'hotchkisstank', '霍奇特尔': 'xochitl', '霍森卡卡里': 'hozenkakari', '霍什': 'hosh', '霍斯塔鲁斯': 'holstaurus', '霍斯特': 'hvost', '霍索米蒂米蒂': 'hosomitimiti', '霍塔': 'hota', '霍塔西诺': 'hotathino', '霍滕斯': 'hortense', '霍西': 'hossi', '霍永': 'hoyon', '霍祖雷': 'hozure', '击败': 'defeated', '击剑': 'fencing', '击剑者': 'alectorfencer', '击球': 'ballbusting', '击球姿势': 'batting_stance', '击退_(warship_girls_r)': 'repulse_(warship_girls_r)', '击掌': 'high_five', '叽叽喳喳': 'kiggles', '叽叽喳喳鸟': 'twitter_bird', '饥肠辘辘_(艺术家)': 'famished_(artist)', '饥饿_(骷髅女孩)': 'hungern_(skullgirls)', '饥饿_seishin': 'hungry_seishin', '饥饿的': 'hungry', '饥饿的点击者': 'hungry_clicker', '饥饿的魅魔': 'hungrysuccubus', '饥饿的修女(女主角)': 'hungry_nun_(diva)', '饥饿的亚诺': 'hungerynano', '饥饿艺术专业': 'starvinartmajor', '饥饿爪子': 'hungrypaws', '机场安检': 'airport_security', '机场公主': 'airfield_princess', '横田拓海': 'yokota_takumi', '横尾': 'yoko.u', '横尾_(nz_g)': 'yoko_(nz_g)', '横尾利特纳': 'yoko_littner', '横屋万次郎': 'yoko-ya_manjirou', '横向': 'olverse', '横向_(字符)': 'landsec_(character)', '横泽_(pyu-tohuku)': 'yokozawa_(pyu-tohuku)', '横子': 'yooko', '轰炸机': 'bomber', '轰炸机': 'dogbomber', '轰炸机夹克': 'bomber_jacket', '轰炸机帽子': 'bomber_hat', '轰炸机女孩': 'bombergirl', '轰炸机女孩573': 'bombergirl573', '轰炸机喷气机': 'bomberman_jetters', '轰炸机葡萄': 'bomber_grape', '哄笑': 'guffaw', '烘焙兽': 'bakemon', '烘焙艺术': 'obakeart', '烘干': 'drying', '烘干机': 'dryer', '烘干衣服': 'drying_clothes', '烘烤': 'baking', '烘烤': 'roasting', '弘崎': 'hierozaki', '弘前奏': 'hirosaki_kanade', '弘之': 'hiromoru', '弘志': 'hioshiru', '红_(愤怒的小鸟)': 'red_(angry_birds)', '红_(化妆)': 'rouge_(makeup)', '红10': 'red10', '红3引擎': 'red3engine', '红9': 'red-9', '红-d': 'red-d', '红moa': 'redmoa', '红-p': 'red-p', '红xelxet': 'redxelxet', '红x培根': 'redxbacon', '红白。': 'kohaku.', '红白': 'hong_bai', '红斑狼疮': 'caiuslupus', '红板': 'redboard', '红包': 'red_bag', '红宝': 'hongbao', '红宝石': 'red_gem', '红宝石': 'red_gemstone', '红宝石': 'rubilocks', '红宝石': 'rubykila', '红宝石_(ff9)': 'ruby_(ff9)', '红宝石_(宝石)': 'ruby_(gem)', '红宝石_(氮氧化物)': 'ruby_(nox)', '红宝石_(罗丁辛克)': 'ruby_(rodinsinker)', '红宝石_(杂烩)': 'ruby_(chowdie)', '红宝石_(珠宝)': 'ruby_(jewelpet)', '红宝石基拉': 'ruby-kila', '红宝石玫瑰': 'ruby_rose', '红宝石牛奶': 'ruby-milk', '红宝石眼': 'ruby-eye', '红背心': 'red_vest', '红鼻子': 'red_nose', '红碧玉': 'redjasper', '红脖子': 'red_neck', '红茶': 'black_tea', '红茶军': 'hongchajun', '红茶丸': 'koucha_maru', '红车': 'red_car', '红衬衫': 'red_shirt', '红唇': 'red_lips', '红唇膏': 'red_lipstick', '红戳': 'redpoke', '红带': 'red_belt', '红带': 'red_ribbon', '红地毯': 'red_carpet', '红地毯': 'red_rug', '红地心': 'reddizen', '红灯': 'red_light', '红灯': 'redlight', '红灯笼': 'red_lantern', '红迪网': 'reddit', '红点': 'red_spots', '红斗篷': 'red_cloak', '红豆': 'redboi', '红豆酱': 'red_bean_paste', '红豆外': 'benizuwai', '红豆丸': 'beniazumaru', '鬼嚎': 'spoogiehowl', '鬼狐': 'ghost_fox', '鬼魂': 'ghostas', '鬼魂': 'ghostlewds', '鬼魂': 'ghostli', '鬼魂': 'haunter', '鬼魂39': 'ghostth39', '鬼火地狱': 'guihuo_inferno', '鬼纪': 'kizinori', '鬼间子': 'oninamako', '鬼见子': 'onimiko', '鬼椒': 'ghostpepper', '鬼椒': 'ghost-pepper', '鬼狼': 'ghost_thewolf', '鬼狼': 'ghostwolf', '鬼脸': 'ghostface', '鬼脸': 'grimace', '鬼脸_(尖叫)': 'ghostface_(scream)', '鬼马': 'kiki-uma', '鬼魅': 'grimphantom', '鬼喵喵': 'ghost_meowscles', '鬼魔君': 'kemonokun', '鬼奈月': 'kainazuki', '鬼女孩': 'ghost_girl', '鬼栖': 'onikisu', '鬼泣': 'devil_may_cry', '鬼桥': 'onioohashi', '鬼切': 'onikiri', '鬼忍忍': 'kijinkutsu', '鬼色': 'oniro', '鬼山': 'kyama', '鬼山831': 'oniyama831', '鬼神': 'onija', '鬼神': 'onomeshin', '鬼神': 'pokeyugami', '鬼手': 'ghost_hands', '鬼寿司': 'spookysushi', '鬼司机': 'ghost_driver', '鬼宿': 'onisuu', '鬼太郎': 'onija_tarou', '鬼毯男孩': 'ghostblanketboy', '鬼天狗': 'oni_tengu', '鬼娃娃': 'spooky-dollie', '鬼丸': 'gedomaru', '鬼丸': 'uguisumaru', '鬼尾': 'ghost_tail', '鬼屋': 'ghostoast', '鬼武者': 'onimusha', '鬼武者:_dawn_of_dreams': 'onimusha:_dawn_of_dreams', '鬼物语': 'kizumonogatari', '鬼物语': 'onimonogatari', '鬼翔太': 'onii-shota', '鬼性': 'ghost_sex', '鬼熊': 'onikuman', '鬼宣': 'oni-noboru', '鬼玄草': 'onigensou', '鬼医': 'ghostdoctor', '钢铁侠': 'iron_man', '钢铁侠': 'steelph', '钢铁兄弟会(辐射)': 'brotherhood_of_steel_(fallout)', '钢头': 'steelhead', '钢头靴': 'steel-toe_boots', '钢翼': 'steelwings', '港': 'kong', '港口': 'harbor', '港口': 'port', '港口公主': 'harbour_princess', '港赛加羚羊': 'minatosaiga', '港友冈': 'minato_tomoka', '杠杆': 'lever', '杠杆作用': 'lever_action', '杠铃': 'barbell', '高!?': 'gauu!?', '高': 'gao', '高': 'gaon', '高': 'gau', '高': 'k.o.', '高': 'tall', '高_(高琨)': 'gao_(gaokun)', '高2019': 'alto2019', '高坂君': 'kohsaka_jun', '高本原': 'higemorigen', '高比奈': 'takahina', '高波_(kancolle)': 'takanami_(kancolle)', '高灿': 'taka-chan', '高仓': 'takakura', '高仓看场': 'takakura_kanba', '高仓明': 'takakura_aki', '高草': 'tall_grass', '高潮': 'climaxmukr', '高潮': 'orgasm', '高潮控制': 'orgasm_control', '高川_夏天': 'takagawa_sumire', '高春': 'takaharu', '高村': 'takamura', '高达': 'gundam', '高达_00': 'gundam_00', '高达_0080': 'gundam_0080', '高达_0083': 'gundam_0083', '高达_00f': 'gundam_00f', '高达_00p': 'gundam_00p', '高达_f90': 'gundam_f90', '高达_f91': 'gundam_f91', '高达exa': 'gundam_exa', '高达x': 'gundam_x', '高达独角兽': 'gundam_unicorn', '高达雷电': 'gundam_thunderbolt', '高达美德': 'gundam_virtue', '高达模型': 'gunpla', '高达亚历克斯': 'gundam_alex', '高达翼': 'gundam_wing', '高达战斗': 'gundam_combat', '高达种子': 'gundam_seed', '高大的男人': 'toweringman', '高大的男性': 'tall_male', '高丹': 'takatan', '高蛋白饮品': 'protein_shake', '高档': 'upscale', '高岛': 'takashima', '高岛樱': 'takashima_zakuro', '高道': 'takamichi', '高道': 'taka-michi', '高道211': 'takamichis211', '高地': 'high_place', '高地纳': 'highena', '高地牛': 'highland_cattle', '冈瑟豪斯曼': 'gunther_hausmann', '冈山_(pixiv)': 'okosan_(pixiv)', '冈山shinako': 'okayama_shinako', '冈寿司': 'okakasushi', '冈田': 'okata', '冈田': 'okatana', '冈田': 't-okada', '冈田口': 'okada_kou', '冈田娜娜': 'okada_nana', '冈田茜': 'okada_akane', '冈瓦那神': 'gondwanagod', '冈野雏田': 'okano_hinata', '冈野圭': 'okano_kei', '冈之野': 'okanoyuno', '刚丹': 'gundanw', '刚刚infox': 'justinfox', '刚刚访问': 'justvisitingg', '刚刚好': 'justdavefnd', '刚刚好': 'justdrox', '刚刚好男孩': 'justagoodboy', '刚刚吐司': 'justtoast', '刚古罗': 'ganguro', '刚连根拔起': 'freshly_uprooted', '刚斯塔古鲁': 'gangstaguru', '刚醒来': 'just_woke_up', '肛门': 'anal', '肛门': 'anus', '肛门浸渍': 'anal_impregnation', '肛门口': 'anus_mouth', '肛门拳交': 'anal_fisting', '肛门麝香': 'anal_musk', '纲川': 'tsunakawa', '纲典': 'tsunenori', '纲马代': 'tsunamayo', '纲手': 'tsunade', '纲之立': 'tsunenorip', '纲子': 'tsunako', '钢': 'steel', '钢棒': 'gangbang', '钢包': 'ladle', '钢笔': 'fountain_pen', '钢笔': 'penpen', '钢锭': 'steel_ingot', '钢管舞': 'pole_dancing', '钢火': 'steelfire', '钢筋': 'rebar', '多亚子': 'tayako', '多眼': 'many_eyes', '多眼': 'multi_eye', '多样化的订单': 'diverse_order', '多样化的系统': 'diverse_system', '多叶的': 'leafysnivy', '多伊纳卡': 'doinaka', '多疑的': 'susfishous', '多艺术': 'muh-arts', '多翼': 'multi_wing', '多翼': 'multiple_wings', '多阴蒂': 'multi_clitoris', '多阴茎': 'multi_penis', '多阴茎口交': 'multiple_penis_fellatio', '多音对接': 'multi_tone_butt', '多音阶': 'multi_tone_scales', '多音帽': 'multi_tone_hat', '多音体': 'multi_tone_body', '多音尾': 'multi_tone_tail', '多音翼': 'multi_tone_wings', '多语言': 'multi_tongue', '多玉': 'tayutama', '多元对立': 'multiversus', '多源君': 'duoyuanjun', '多云的.r': 'cloudy.r', '多云的': 'cloudy', '多云的天空': 'cloudy_sky', '多帧序列': 'multi_frame_sequence', '多汁的猫': 'juicyneko', '多汁恶魔': 'juicydemon', '多汁鬼': 'juicyghost', '多肢': 'multi_limb', '多只猫': 'multiple_cats', '多痣': 'multiple_moles', '多种武器': 'multiple_weapons', '多种形式': 'multiple_forms', '多种颜色': 'multiple_colors', '多种语言': 'multilingual', '多种语言': 'multiple_tongues', '多重': 'mulipios', '多重疤痕': 'multiple_scars', '多重辫子': 'multiple_braids', '多重穿孔': 'multiple_piercings', '多重带': 'multiple_straps', '多重单色': 'multiple_monochrome', '多重风格模仿': 'multiple_style_parody', '多重肛门': 'multiple_anal', '多重高潮': 'multiple_orgasms', '多重弓': 'multiple_bows', '多重故事': 'multiple_torii', '多重光晕': 'multiple_halos', '多重挥舞': 'multiple_wielding', '多重交叉': 'multiple_crossover', '多重角色': 'multiple_persona', '多重浸渍': 'multiple_impregnation', '多重猎物': 'multiple_prey', '多重内裤': 'multiple_panties', '多重融合': 'multiple_fusions', '多重渗透': 'multiple_penetration', '多重项链': 'multiple_necklaces', '多重阴道': 'multiple_vaginal', '多重姿势': 'multiple_poses', '多字象声词': 'multi-word_onomatopoeia', '多足类': 'myriapod', '多嘴': 'multi_mouth', '多作业': 'muhjob', '哆啦A梦': 'doraemon', '哆啦A梦': 'doraeshi', '哆啦A梦': 'doritomon', '哆啦A梦': 'doyora', '哆啦A梦:_nobita_to_tetsujin_heidan': 'doraemon:_nobita_to_tetsujin_heidan', '哆啦A梦_(角色)': 'doraemon_(character)', '哆啦A梦_(角色)_(角色扮演)': 'doraemon_(character)_(cosplay)', '哆啦美': 'dorami', '哆啦咲': 'dorasakio', '夺心魔': 'mind_flayer', '夺心魔': 'mindflayer', '奥特曼触发器': 'ultraman_trigger', '奥特曼触发器_(系列)': 'ultraman_trigger_(series)', '奥特曼蒂加': 'ultraman_tiga', '奥特曼盖亚(系列)': 'ultraman_gaia_(series)', '奥特曼球体': 'ultraman_orb', '奥特曼王牌(系列)': 'ultraman_ace_(series)', '奥特穆特': 'ottmutt', '奥特塞尔': 'ottsel', '奥腾': 'aoten', '坏笑': 'Smug smirk', '奥提努斯': 'othinus', '奥图基米': 'othukimi', '奥图明': 'otuming', '奥图斯人': 'otusian', '奥托马尔': 'ottomarr', '奥维尔': 'auvere', '奥维尔_(动物穿越)': 'orville_(animal_crossing)', '奥翁奇': 'aononchi', '奥西奥': 'osisio', '蛋疼': 'Distraught furrowed brow', '奥西拉': 'osira', '耍帅': 'Happy expression with a hint of regret', '失望': 'Disheartened gaze cast downward', '奥西米': 'osiimi', '奥西西': 'osiosi', '奥西亚阿拉': 'osiaarah', '可是': 'Amazed gasp', '奥希希尔': 'ohihil', '奥秀树': 'oku_hideki', '奥雅': 'auya', '奥亚萨达约': 'ozyasadayo', '奥伊': 'auui', '奥伊恩': 'aoirnn', '奥伊斯威': 'oiessw', '奥因戈': 'oingo', '奥尤瓦里': 'oyuwari', '奥尤尤': 'oyuyu', '奥运环': 'olympic_rings', '奥运会': 'olympics', '奥泽': 'aozee', '奥扎内科': 'ozaneko', '奥兹赫': 'ozkh', '奥兹马': 'ozma', '奥兹熊': 'ozzybear', '奥兹亚科': 'ozyako', '澳大利亚': 'australia', '澳大利亚国旗': 'australian_flag', '澳大利亚牧羊犬': 'australian_shepherd', '澳大利亚人': 'ausjamcian', '旗袍': 'cheongsam', '澳大利亚人_(字符)': 'ausjamcian_(character)', '澳大利亚喜鹊': 'australian_magpie', '澳门': 'maccao', '澳洲牧牛犬': 'australian_cattle_dog', '八': 'hachi', '八_(fft-0)': 'eight_(fft-0)', '八八': 'hachachi', '八八': 'yaiba', '八八': 'yaoyasohachi', '八百万': 'hachimillion', '八坂_(high_school_dxd)': 'yasaka_(high_school_dxd)', '八坂_(迷路_l)': 'yasaka_(astray_l)', '八坂庵': 'yasakani_an', '八坂宝塔': 'yasaka_pagoda', '八坂凑': 'yasaka_minato', '八坂加奈子': 'yasaka_kanako', '八坂酒': 'yasaka_shuu', '八坂毛': 'yasaka_mao', '你居然': 'Anxious biting of the lip', '八坂一树': 'yasaka_kazuki', '潜水': 'go under water', '八宝斋': 'happosai', '八部': 'hachirobe', '八彩烧上': 'yasaikakiage', '八潮_(0321)': 'yashio_(0321)', '八尺': 'bachi', '三轮车': 'tricycle', '八尺大人': 'hasshaku-sama', '八尺大人_(cosplay)': 'hasshaku-sama_(cosplay)', '射击': ' Shooting with a gun', '八虫': 'happamushi', '八村崎': 'yatsu_murasaki', '八达通': 'octodeco', '八代_七中': 'yatsushiro_nanaka', '打网球': 'Take a Tennis racquet', '八岛门': 'yatsuashimon', '八岛哲也': 'yatsushima_tetsuya', '八度旋律': 'octavia_melody', '不在场证明': 'alibi-cami', '不在场证明狼': 'alibiwolf', '不在这里': 'notactuallyhere', '不张扬的': 'umbralant', '不贞': 'unchastity', '不知道': 'unaware', '不开心': 'Puzzled frown', '不知道的_pred': 'unaware_pred', '不知火_(azur_lane)': 'shiranui_(azur_lane)', '不知火_(kancolle)': 'shiranui_(kancolle)', '不知火_(kancolle)_(cosplay)': 'shiranui_(kancolle)_(cosplay)', '不知火_(nakiri_aame)': 'shiranui_(nakiri_ayame)', '不知火_(nisioisin_sinob)': 'shiranui_(nisioisin_sinob)', '不知火_(wasuresateraito)': 'shiranui_(wasuresateraito)', '不知火_(大神)': 'shiranui_(okami)', '不知火_(阴阳师)': 'shiranui_(onmyoji)', '不知火_hansode': 'shiranui_hansode', '不知火_hazuki': 'shiranui_hazuki', '那又怎样': 'Confused head scratch', '害怕': ' Terrified wide-eyed stare sweat', '黑化': ' Terrified wide-eyed stare ', '吓一跳': 'Open your mouth, be surprised, frown, nervous, reach out your hands', '不知火舞': 'shiranui_mai', '不知火舞_(cosplay)': 'shiranui_mai_(cosplay)', '不知火一树': 'shiranui_kazuki', '喂': 'Baffled mouth agape', '不忠': 'infidelity', '不专业的行为': 'unprofessional_behavior', '不准确的打结': 'inaccurate_knotting', '不自然的颜色': 'unnatural_colors', '不走': 'un-go', '不足': 'underpec', '布': 'bou', '布': 'cloth', '布巴_(斯派罗)': 'bubba_(spyro)', '布巴特': 'boobart', '布巴希德': 'bubbashiad', '布比': 'bubbeh', '布比': 'bubby', '布比佩德': 'boobipede', '布布34': 'booboo34', '布布卡': 'bubukka', '布查乌': 'butcha-u', '布茨': 'bootz', '布达尼马雷': 'bdanimare', '布袋木偶': 'sock_puppet', '布地奈德': 'budesonide', '布蒂博科': 'butiboco', '布丁 x2': 'puddingx2', '布丁': 'brulee', '等公交': 'Waiting for public transportation', '布丁_(8008208820)': 'pudding_(8008208820)', '布丁_(jakkid13)': 'pudding_(jakkid13)', '布丁_(tonpuu)': 'pudding_(tonpuu)', '布丁_(zoza)': 'pudding_(zoza)', '布丁_(普拉加)': 'pudding_(plaga)', '布丁_(天薄荷_028)': 'pudding_(skymint_028)', '布丁爪': 'puddingpaw', '布杜': 'budew', '布杜亚': 'budouya', '布恩': 'bouen', '布恩': 'bune', '布恩狗': 'boonedog', '布尔博讷': 'bulbonne', '布尔胡鲁': 'burhuru', '布尔加': 'bulga', '布尔玛': 'bulma', '布尔齐赞': 'bulzizzang', '布尔斯沃思': 'bullsworth', '布福伦': 'buffurun', '布告栏': 'bulletin_board', '布格博格克斯': 'boogbogex', '布古': 'bougu', '布基': 'bukei', '布基纳': 'burquina', '布基文': 'bukibun', '布吉': 'theboogie', '布吉库': 'bojiku', '布吉流行音乐': 'boogiepop', '布吉塔': 'bugita', '布加迪': 'bugatti', '布卡': 'bukka', '布科布塔': 'bukikobuta', '布克德威特': 'booker_dewitt', '布克斯比': 'buxbi', '布库里': 'bukkuri', '布库苏': 'bokkusu', '刺客_(命运/零)': 'assassin_(fate/zero)', '刺客_(命运/零)_(角色扮演)': 'assassin_(fate/zero)_(cosplay)', '刺客猴': 'assasinmonkey', '刺客交叉_(ragnarok_online)': 'assassin_cross_(ragnarok_online)', '刺客骄傲': 'assassins_pride', '刺客酒吞童子': 'assassin_shuten-douji', '刺客卡图亚': 'assassin_cartuja', '刺狼': 'impaledwolf', '刺伤的心': 'stabbed_heart', '刺身': 'sashikari', '刺身': 'sashiki', '刺生': 'sashisu', '刺兽': 'thornbeast', '刺痛': 'tingle', '刺痛_12': 'sting_12', '刺尾鱼': 'surgeonfish', '刺猬': 'alhedgehog', '刺猬': 'hedgehog', '刺猬': 'hedgewolf', '刺猬': 'smpthehedgehog', '刺猬_人形': 'hedgehog_humanoid', '刺猬爱': 'hedgehoglove', '刺猬耳朵': 'hedgehog_ears', '刺猬蓝02': 'hedgehogblue02', '刺猬女孩_(雪本修二_(古力古拉))': 'hedgehog_girl_(yukimoto_shuuji_(gurigura))', '刺猬尾巴': 'hedgehog_tail', '刺五加': 'eleutherodactylus', '刺绣': 'embroidery', '刺绣吊袜带': 'embroidered_garter_belt', '刺绣内裤': 'embroidered_panties', '刺绣胸罩': 'embroidered_bra', '刺眼': 'glaring', '刺印': 'thorn_print', '刺鱼': 'sashiyu', '刺爪': 'thorn_paw', '匆匆': 'lurry', '匆匆': 'quickie', '匆匆忙忙的小鸟': 'rushdownbirdie', '枞树': 'fir_tree', '葱雾_(艺术家)': 'shallot_fogg_(artist)', '聪': 'satosi', '聪_(比索727)': 'satoshi_(peso727)', '聪明的白牙': 'smartwhitefang', '聪明的狐狸人': 'cleverfoxman', '从_the_back': 'from_the_back', '从_你的_年': 'amatsuka_watayuki', '从不软': 'neversoft', '从查文': 'fromchawen', '从此以后快乐地生活着': 'gammachaos', '从后面': 'from_behind', '从后面拥抱': 'hug_from_behind', '从后面拥抱': 'hugging_from_behind', '从后面抓取': 'grab_from_behind', '从后面抓取': 'grabbing_from_behind', '从静脉': 'venonat', '从前到后': 'front_to_back', '从前有客兴': 'congqian_you_ke_xing', '嘉': 'chia', '嘉宝多': 'garbodor', '嘉豪': 'galore', '嘉鲁萨坦': 'gyarusatan', '嘉年华_(消歧义)': 'carnival_(disambiguation)', '嘉兴': 'gyaheung', '嘉义': 'jiayi', '嘉优': 'kakeyu', '嘉扎': 'gyaza', '荚': 'pod', '甲板': 'decko', '甲板_(pongodecky)': 'decky_(pongodecky)', '甲板_(架构)': 'deck_(architecture)', '甲板_(结构)': 'deck_(structure)', '甲板乐园_(时藤)': 'deckland_(tokifuji)', '甲板椅位置': 'deck_chair_position', '甲虫': 'beetle', '甲虫': 'beetlepie', '甲虫': 'orbeetle', '甲虫': 'prionailurus', '甲虫': 'thyreophoran', '甲虫_(b_s_a_n)': 'bettle_(b_s_a_n)', '甲虫角': 'beetle_horn', '甲虫汁': 'beetlejuice', '甲骨文': 'mekyokyopon', '甲骨文': 'meracle', '甲基苯丙胺': 'm-eine', '甲基键': 'methyl_key', '准备下班': 'Preparing to leave work', '甲壳': 'carapace', '甲壳虫': 'metrothefox', '甲壳虫': 'wartortle', '甲壳动物_牛头': 'crustacean_taur', '甲壳类动物': 'crustacean', '报警': 'Hold your phone, panic', '甲壳类鸟科动物': 'threskiornithid', '甲壳素': 'chitetan', '甲龙': 'ankylosaurus', '甲龙': 'styracosaurus', '甲龙科': 'ankylosaurid', '甲龙类': 'ankylosaurian', '甲灭福': 'mefomefo', '甲条': 'kojou', '甲休月': 'kohuseigetsu', '甲茚酮': 'metindone', '甲鱼': 'carapacian', '端起': 'Pick up ', '甲状腺': 'thyro', '岬': 'cape', '贾': 'gia', '贾安': 'jliaan', '贾比托松': 'jabittoson', '贾别科': 'kyabekko', '贾博特': 'jabot', '贾布拉尼': 'jabulani', '贾茨': 'jatts', '贾德': 'judd', '贾杜德': 'jaduade', '贾恩克': 'jarnqk', '贾尔': 'gjall', '贾夫': 'jarv', '贾戈': 'jahgo', '贾格德': 'jagd', '贾格拉斯': 'jagras', '贾贡': 'jagon', '贾古蒂': 'jyaguti', '贾胡': 'gyahu', '贾霍': 'jaho', '贾吉': 'jaggi', '贾吉': 'jagi', '贾加尔': 'jagal', '贾加里科': 'jagariko', '贾贾拉': 'jajala', '贾杰': 'jaijai', '贾卡尔': 'jakkal', '贾康': 'gia_kon', '投降': 'Raise your hands above your head', '贾克史密斯': 'jaque_smith', '贾克斯尼森': 'jaxneesen', '贾肯斯图': 'jakensitou', '贾坤': 'jakkun', '贾拉克': 'jalak', '岚山小夜子': 'arashiyama_sayoko', '岚屋': 'arashiya', '岚野': 'karashino', '岚印': 'arashiin', '拦截器_(ff6)': 'interceptor_(ff6)', '栏': 'hurdle', '栏杆': 'balus', '栏杆': 'banister', '栏杆': 'railing', '蓝': 'bule', '蓝3丹尼': 'blu3danny', '蓝包': 'blue_bag', '蓝包': 'bluebun', '蓝宝石': 'jade-sapphire', '蓝宝石': 'sapphicneko', '蓝宝石_(sapphire25252)': 'sapphire_(sapphire25252)', '蓝宝石_(wallooner97)': 'sapphire_(wallooner97)', '蓝宝石_(盎格鲁)': 'sapphire_(anglo)', '蓝宝石_(宝石)': 'sapphire_(gem)', '蓝宝石_(扁平)': 'sapphire_(flafty)', '蓝宝石_(九)': 'sapphire_(nine)', '蓝宝石_(史蒂文宇宙)': 'sapphire_(steven_universe)', '蓝宝石_(消歧义)': 'sapphire_(disambiguation)', '蓝宝石_nyx': 'sapphira_nyx', '蓝宝石_rhodonite': 'sapphire_rhodonite', '蓝宝石1010': 'sapphire1010', '蓝宝石39': 'sapphirez39', '蓝宝石剪': 'saphireshear', '蓝宝石狼': 'sapphwolf', '蓝宝石湿内裤': 'sapphicwetpanties', '蓝宝石雨': 'sapphrixrain', '蓝鼻子': 'blue_nose', '蓝冰淇淋': 'sblueicecream', '蓝波康': 'bluewavecon', '蓝蟾蜍': 'blue_toad', '蓝衬衫': 'blue_shirt', '蓝唇': 'blue_lips', '蓝大师': 'bluemaster', '蓝带': 'blue_belt', '蓝蛋': 'blue_egg', '蓝德莫卡': 'bluedmoka', '蓝地': 'bluefield', '蓝点': 'blue_spots', '蓝调': 'bluespaceling', '蓝调27xx': 'blues27xx', '蓝调64': 'blues64', '蓝豆': 'bluebean', '蓝肚皮': 'blue_belly', '蓝耳': 'blue_ears', '蓝冯': 'bluevon', '蓝弓': 'blue_bow', '蓝光': 'blu', '蓝光': 'blub', '蓝光': 'blubluumon', '蓝光': 'blue_light', '蓝光': 'bluelimelight', '蓝光': 'bluob', '蓝光': 'blu-ray', '蓝光_(1712)': 'blu_(1712)', '蓝光_(蓝光)': 'blu_(bludoe)', '蓝光_(里约)': 'blu_(rio)', '蓝光封面': 'blu-ray_cover', '蓝光徽标': 'blu-ray_logo', '蓝海月': 'blueseamoon', '蓝鹤': 'blue_crane', '蓝胡子': 'blue_beard', '蓝花': 'blue_flower', '蓝化剂': 'bluizer', '蓝环章鱼': 'blue-ringed_octopus', '蓝黄金刚鹦鹉': 'blue-and-yellow_macaw', '蓝喙': 'blue_beak', '蓝夹克': 'blue_jacket', '蓝脚': 'blue_feet', '蓝脚趾': 'blue_toes', '蓝结': 'blue_knot', '蓝金刚鹦鹉': 'blue_macaw', '蓝晶': 'aquamarine', '蓝精灵': 'blazbluefairy', '蓝精灵': 'bluejr', '蓝精灵': 'smurf', '蓝精灵': 'smurfette', '蓝精灵': 'the_smurfs', '蓝鲸': 'blue_whale', '蓝鲸127': 'bluewhale127', '蓝酒酒': 'lanjiujiu', '蓝驹通': 'bluekomadori', '蓝觉': 'lan_jue', '蓝咖啡狗': 'bluecoffeedog', '蓝卡': 'blue_card', '蓝卡米亚': 'bluekalmia', '蓝裤茶双解龙': 'lankuchashuangjielong', '蓝框眼镜': 'blue-framed_eyewear', '蓝狼': 'bleuxwolf', '蓝狼': 'blue-wolfy', '蓝狼': 'cyancoyote', '蓝狼': 'lonbluewolf', '蓝狼42': 'bluwolfie42', '蓝狼复仇者': 'bluewolfavenger', '蓝朗姆酒': 'blue-rum', '蓝里': 'bluari', '蓝脸': 'blue_face', '蓝脸颊': 'blue_cheeks', '蓝领': 'blue_collar', '蓝领': 'blue_neck', '蓝领带': 'blue_necktie', '蓝流': 'bluestream', '蓝龙': 'blau_draconis', '蓝鹿': 'abluedeer', '蓝鹿角': 'blue_antlers', '蓝绿色': 'caerulus', '蓝绿色标记': 'teal_markings', '蓝马': 'bluepony', '蓝玛丽': 'blue_mary', '蓝毛鱼': 'bludermaus', '蓝帽': 'blue_hat', '蓝莓': 'blueberry', '蓝莓': 'bluk_berry', '蓝莓': 'ebluberry', '蓝莓_(5959)': 'blueberry_(5959)', '蓝莓_(水果)': 'blueberry_(fruit)', '蓝莓_(消歧义)': 'blueberry_(disambiguation)', '蓝莓胡萝卜': 'theblueberrycarrots', '蓝莓雪': 'blueberrysnow', '蓝门': 'blue_door', '蓝膜': 'blue_membrane', '蓝魔13': 'bluedemon13', '蓝幕': 'blue_curtain', '蓝鸟': 'blue_bird', '蓝鸟': 'bluebird', '蓝鸟': 'blvejay', '蓝鸟_(leh951025)': 'bluebird_(leh951025)', '蓝鸟_(蓝鸟90)': 'bluebird_(bluebird90)', '蓝女孩91': 'bluegirl91', '蓝女人': 'bluewoman', '蓝胖狼': 'bluechubbywolf', '蓝袍': 'blue_robe', '蓝泡泡': 'tehbluebubble', '蓝皮': 'blue_skin', '蓝屁股': 'blue_butt', '蓝苹果': 'blue_apple', '蓝苹果': 'blueapple', '蓝漆海': 'blue-paint-sea', '蓝奇卡': 'bluechika', '蓝旗': 'blue_flag', '蓝鳍': 'blue_fin', '蓝前辈': 'blue-senpai', '蓝裙子': 'blue_skirt', '蓝染波奇': 'aizenpochi', '蓝染宗介': 'aizen_sousuke', '蓝人': 'blue_man', '蓝人': 'blueman', '蓝色': 'bluesh', '蓝色_(rbb)': 'blue_(rbb)', '蓝色_(纳米之星)': 'blue_(nanostar)', '蓝色_(破石灰)': 'blue_(limebreaker)', '蓝色_(幸福充电_precure!)': 'blue_(happinesscharge_precure!)', '蓝色_(在我们中间)': 'blue_(among_us)', '蓝色_(侏罗纪世界)': 'blue_(jurassic_world)', '蓝色_b': 'blue_b', '蓝色21': 'blue21', '蓝色宝石': 'blue_gem', '蓝色杯子': 'bluecup', '蓝色背景': 'blue_background', '蓝色颤音': 'thebluevibrava', '蓝色窗帘': 'blue_curtains', '蓝色的骨头': 'bluethebone', '蓝色的龙': 'blue_dragon', '蓝色的未知': 'blue-the-unknown', '蓝色反射': 'blue_reflection', '蓝色肛门': 'blue_anus', '蓝色高跟鞋': 'blue_heels', '蓝色巩膜': 'blue_sclera', '蓝色和白色': 'blue_and_white', '蓝色火焰': 'blue_fire', '蓝色火焰': 'bluefire', '蓝色剧院': 'bluetheater', '蓝色连裤袜': 'blue_pantyhose', '蓝色连衣裙': 'blue_dress', '蓝色玫瑰': 'blue_rose', '蓝色面纱': 'blue_veil', '蓝色内衣': 'blue_lingerie', '蓝色逆戟鲸': 'blueorca', '蓝色牛仔裤': 'blue_jeans', '蓝色球': 'blue_balls', '蓝色球': 'blueballs', '蓝色球体': 'blue_sphere', '蓝色沙发': 'blue_sofa', '蓝色纱笼': 'blue_sarong', '蓝色绳子': 'blue_rope', '蓝色双': 'bluedouble', '蓝色睡衣': 'blue_pajamas', '蓝色天线': 'blue_antennae', '蓝色条纹': 'blue_stripes', '蓝色拖拉': 'bluedraggy', '蓝色外套': 'blue_coat', '蓝色围裙': 'blue_apron', '蓝色武器': 'blue_arms', '蓝色香料': 'bluespice', '蓝色靴子': 'blue_boots', '蓝色眼镜': 'blue_glasses', '蓝色粘液': 'blue_slime', '蓝色褶边': 'blue_frill', '蓝色主题': 'blue_theme', '蓝鲨': 'blue_shark', '蓝鲨': 'blueshark', '蓝舌': 'blue_tongue', '蓝手': 'blue_hands', '蓝手指': 'blue_fingers', '蓝水': 'blue_water', '蓝丝带': 'blue_ribbon', '蓝松鸦': 'blue_jay', '蓝锁': 'blue_lock', '蓝体': 'blue_body', '蓝天': 'blue_sky', '蓝天使': 'blue_angel', '蓝瞳': 'blue_pupils', '蓝头发': 'blue_hair', '蓝图': 'blueprint', '蓝腿': 'blue_legs', '蓝忘机': 'lan_wangji', '蓝尾': 'blue_tail', '蓝蜗牛': 'bluesnail', '蓝虾': 'blue_shrimp', '蓝线': 'blue_lines', '蓝橡木': 'blue_oak', '蓝小姐': 'missblue', '蓝鞋': 'blue_shoes', '蓝鞋子': 'lan_xiezi', '蓝心': 'blue_heart', '蓝星天空': 'blustar_sky', '蓝胸': 'blue_chest', '蓝熊27': 'thebluebear27', '蓝熊猫1': 'bluepanda1', '蓝熊猫115': 'bluepanda115', '蓝袖': 'blue_sleeves', '蓝雪猫': 'bluesnowcat', '蓝牙': 'blue_teeth', '蓝眼睛': 'blue_eyes', '蓝眼皮': 'blue_eyelids', '蓝焰95': 'blueblaze95', '蓝耀君': 'lanyaojun', '蓝翼': 'bludwing', '蓝翼': 'blue_wings', '蓝影': 'blueumbra', '蓝影城志': 'lanyingchengzhi', '蓝鱼': 'cyavian', '蓝羽': 'blufeather', '蓝月亮': 'blue_moon', '蓝晕': 'blue_halo', '蓝泽鲁': 'bluezeru', '蓝爪': 'blue_claws', '蓝爪熊猫': 'bluepawpanda', '蓝罩': 'blue_hood', '蓝种': 'bluebreed', '蓝兹': 'bluez', '蓝子_(415460661)': 'lanzi_(415460661)', '蓝鬃': 'blue_mane', '蓝嘴': 'blue_mouth', '澜湄': 'lanmei', '篮球': 'basculegion', '篮球': 'basketball', '篮球_(球)': 'basketball_(ball)', '篮球场': 'basketball_court', '篮球短裤': 'basketball_shorts', '篮球服': 'basketball_uniform', '篮球框': 'basketball_hoop', '篮球球衣': 'basketball_jersey', '篮子': 'basket', '篮子编织': 'basketweave', '篮子花式': 'basketgardevoir', '篮子位置': 'basket_position', '镧': 'lantha', '缆车': 'cable_car', '懒惰': 'lackadaisy', '懒惰': 'sloth', '懒惰': 'zsloth', '懒惰_(elvche)': 'lazy_(elvche)', '懒惰_(fma)': 'sloth_(fma)', '懒惰_(jinroxx)': 'lazy_(jinroxx)', '懒惰_(kuroodod)': 'sloth_(kuroodod)', '懒惰_(动物)': 'sloth_(animal)', '懒惰_(改变命运)': 'sloth_(changing_fates)', '懒惰_懒惰_(偶像大师)': 'lazy_lazy_(idolmaster)', '懒惰地牢大师': 'lazy_dungeon_master', '懒惰的': 'flaaffy', '懒惰的': 'flazy', '懒惰的': 'launny', '懒惰的': 'lazy', '懒惰的': 'lazydez', '懒惰的': 'lazyollie', '懒惰的': 'nelewdy', '懒惰的': 'razzy', '懒惰的': 'slob', '懒惰的鼻子': 'lazysnout', '懒惰的橙色': 'lazy_orange', '懒惰的杜根': 'lazydoogan', '懒惰的羔羊': 'lustylamb', '懒惰的工作马': 'lazy_work_horse', '懒惰的咖啡_(wyen_iscordo)': 'lazycoffee_(wyen_iscordo)', '懒惰的拉德': 'lazzylad', '懒惰的梦想家': 'thelazydreamer', '懒惰的拖延者': 'lazyprocrastinator', '懒惰放大器': 'lazy_amp', '懒惰光光': 'lazy_guang_guang', '懒惰女孩': 'sloth_girl', '乳头贴': 'Nipple patch', '懒屁股_(艺术家)': 'lazybutt_(artist)', '懒人': 'layeyes', '逛街': 'Shopping malls', '懒人': 'lazymimium', '懒人工作室': 'sluggystudio', '懒散的': 'flabbyotter', '懒散的帽子': 'slouch_hat', '懒熊': 'sloth_bear', '懒洋洋的': 'leepy', '烂': 'roten', '烂卷子': 'rottenrollz', '烂罗比': 'rotten_robbie', '生病': 'Lying down, eyes closed, sweating, frowning', '烂上衣': 'rottytops', '烂尾果': 'rottentuttifrutti', '滥用_(motimotigg20)': 'aburage_(motimotigg20)', '郎角': 'langjiao', '郎经身': 'langjingshen', '狼': 'l.wolf', '狼': 'rwolf', '狼': 's.wolf', '狼': 'wolf', '狼_(命运)': 'wolf_(fate)', '狼_(我的世界)': 'wolf_(minecraft)', '狼_(笑)': 'wolf_(lol)', '狼250': 'wolf250', '狼552906': 'wolf552906', '狼-f': 'ulven-f', '狼狈': 'wrabby', '狼饼': 'wolfgangcake', '狼博士': 'dr.wolf', '狼草': 'wolfeed', '狼道': 'wolfdawg', '狼地': 'wolfland', '狼的秘密': 'wolfsecret', '狼钉': 'wolfy-nail', '狼毒康': 'wolfiecanem', '狼耳朵': 'wolf_ears', '狼狗': 'wolfdog', '狼痕2810': 'wolfscar2810', '狼魂': 'wolfsoul', '狼基德': 'wolfkidd', '狼来了': 'wherewolf', '狼来了': 'wolfling', '狼来了': 'wolfyzeeb', '狼狼': 'coywolf', '狼狼': 'loup-garou', '狼狼': 'vetrowolf', '狼历史': 'wolfi-hitory', '狼灵': 'wolfarion', '狼龙': 'wolflong', '狼路': 'wolfroad', '狼猫': 'wolfthatmeows', '狼猫9': 'wolfcat95', '狼面包': 'wolfbuns', '狼面包': 'wolfybuns', '狼面具': 'wolfmask', '狼木1': 'wolfwood1', '狼牧羊犬': 'wulfer-shepherd', '狼怒': 'wolfenfury', '狼女': 'wolf_girl', '狼女': 'wolflady', '狼跑': 'wolfrun', '狼皮': 'wolfskin', '狼枪': 'wolflance', '狼群': 'wolf_pack', '狼群67': 'wolfpack67', '狼人': 'corwolf', '狼人': 'elsifthewolf', '狼人': 'grrrwolf', '老虎_ii': 'tiger_ii', '老虎1001': 'tiger1001', '老虎爱狗': 'tigerlovedog', '老虎百合': 'tiger_lily', '打': 'One slap, face to face, angry, fighting', '老虎机': 'pachislot', '望': 'look at', '老虎计划': 'projecttiger', '老虎节': 'tigerfestivals', '老虎空间': 'tigerinspace', '老虎蓝莓': 'tiger_blueberry', '老虎卢克': 'tigerlukke', '老虎帽': 'tiger_hat', '老虎面具': 'tiger_mask', '老虎男孩': 'tiger_boy', '老虎内裤': 'tiger_panties', '老虎女孩': 'tiger_girl', '老虎条纹': 'tiger_stripes', '老虎尾巴': 'tiger_tail', '老虎纹身': 'tiger_tattoo', '震惊': 'Shocked stare', '老花镜': 'reading_glasses', '老化': 'aging', '老酒': 'lao_jiu', '老君_(洛小黑的传奇)': 'laojun_(the_legend_of_luoxiaohei)', '老可可': 'old_coco', '老邋遢': 'elder_scruffy', '老林': 'oldlim', '老孟': 'lao_meng', '老男性': 'old_male', '老年男性': 'elderly_male', '老女仆': 'old_maid', '老婆吸': 'amasawa_natsuhisa', '老人': 'grey_beard', '老人': 'old_man', '老蛇': 'old_snake', '老师!_tsugi_wa_battle_no_jikan_desu。': 'sensei!_tsugi_wa_battle_no_jikan_desu.', '老师': 'teacher', '老师_(chisara)': 'sensei_(chisara)', '老师_(hitagi3594)': 'sensei_(hitagi3594)', '老师_(tawawa)': 'sensei_(tawawa)', '老师_(传奇_2)': 'teacher_(saga_2)', '老师_(电机街)': 'sensei_(denki-gai)', '老师服装': 'teacher_clothing', '老师和学生': 'teacher_and_student', '老式的衣服': 'vintage_clothes', '老鼠': 'rat', '老鼠_(sake_nomitai)': 'mice_(sake_nomitai)', '老鼠_(符文工厂)': 'mice_(rune_factory)', '老鼠茶': 'mice_tea', '老鼠耳朵': 'mouse_ears', '老鼠混蛋': 'rat_bastard', '老鼠夹': 'mousetache', '老鼠猫': 'mousecat', '老鼠男孩': 'mouse_boy', '老鼠糖': 'ratcandy', '老汤': 'oldsoup', '老香料': 'old_spice', '老谢普': 'oldshep', '老兄': 'dude', '老爷坡': 'laoyepo', '老夜': 'old-night', '老友记': 'albyee', '老站石': 'laozhanshi', '烙铁': 'branding_iron', '烙铁': 'soldering_iron', '酪氨酸': 'tyr', '酪蛋白': 'buutymon', '乐': 'raku', '乐220p': 'raku220p', '乐宝': 'pleasure-treasure', '乐楚干sfw': 'lechugansfw', '乐队': 'band', '乐队': 'bandolier', '乐队': 'bands', '乐队': 'orchestra', '乐队_(skymole01)': 'band_(skymole01)', '乐队_yarouze!': 'band_yarouze!', '乐队衬衫': 'band_shirt', '乐队商品': 'band_merch', '乐队制服': 'band_uniform', '乐多沙': 'letodoesart', '乐福鞋': 'loafers', '乐高': 'lego', '乐高_(中)': 'lego_(medium)', '乐高积木': 'lego_brick', '乐高居': 'rakkuguy', '乐高丽': 'rolycoly', '乐高迷你无花果': 'lego_minifig', '乐高人': 'legoman', '乐馆': 'rirakukan', '乐光': 'rakkou', '乐焦': 'rakkyo', '乐坤': 'lokkun', '乐乐': 'rakuraku', '乐乐茶': 'garakutea', '乐乐亭拉面': 'rakurakutei_ramen', '乐皮': 'lepi', '乐平': 'rakuhei', '乐器': 'instrument', '乐器': 'musical_instrument', '乐曲': 'roxy', '乐曲': 'roxyrex', '乐人': 'rakujin', '乐人89': 'rakuto89', '乐施': 'legoshi', '乐思迈': 'rythmyr', '乐天_(1109)': 'rotte_(1109)', '乐天_(madoka_magica)': 'lotte_(madoka_magica)', '乐天_(公司)': 'lotte_(company)', '乐天_(钴_雪)': 'lotte_(cobalt_snow)', '乐天_(芒克斯)': 'lotte_(munks)', '乐天杨松': 'lotte_jansson', '乐通': 'lotton', '乐透': 'lotosu', '乐维克多': 'leovictor', '乐尾': 'rakuo', '乐信': 'lewxen', '乐信': 'luxain', '乐垣_(艺人)': 'rakugaki_(artist)', '乐垣酱': 'rakugaki-chan', '若有所思': 'Nervous, biting nails, anxiety', '乐助': 'rakusuke', '乐子子': 'rakikoko', '了解一下': 'understall', '勒': 'lleu', '勒布林': 'lebring', '勒布鲁伊斯特莫伊': 'lebruitestmoi', '沉默': 'Paranoid, looking around frantically, fear', '勒克斯_(dera_ix)': 'lux_(dera_ix)', '勒克斯_(pixiv4480548)': 'lux_(pixiv4480548)', '勒克斯_(阿尔帕)': 'lux_(alpa)', '勒克斯_(笑)': 'lux_(lol)', '勒克斯_(字符)': 'lux_(character)', '完蛋': 'Hopeless, head in hands, despair', '勒克斯痛': 'lux-pain', '勒拉皮': 'lerapi', '勒罗姆': 'lerome', '妈妈莫莫': 'momamo', '媚眼': 'Close one eye and smile at the camera', '妈妈熊': 'mamaubear', '勾引': 'Close one eye and smile at the camera', '初次见面': 'Anticipating tongue', '妈咪社': 'mommyosha', '麻痹': 'paralysis', '开心跳起': 'Ecstatic, jumping up and down, excitement', '麻豆王格兰佐特': 'madou_king_granzort', '麻豆物语': 'madou_monogatari', '麻烦_(系列)': 'trouble_(series)', '麻烦的精神!': 'trouble_spirit!', '麻烦女巫': 'trouble_witches', '麻烦女巫新': 'trouble_witches_neo', '麻烦事_(mlp)': 'troubleshoes_(mlp)', '麻烦陷阱实验室': 'trouble_trap_laboratory', '麻鬼3': 'magui3', '麻黄碱': 'ephtracy', '无语': 'Frown, sweat, shock', '麻吉': 'mayokichi', '头痛': 'hold your forehead with one hand, sad', '头疼': 'hold your forehead with one hand, sad', '麻将': 'mahjong', '喜悦': 'Happy, smiling', '麻将魂': 'mahjong_soul', '麻将牌': 'mahjong_tile', '麻将桌': 'mahjong_table', '麻井': 'mamoi', '麻辣烫': 'emperpep', '桑葚': 'mulberrytarthorse', '桑斯卡尔': 'zanscare', '叹气': 'Sad, open your mouth,', '桑图卡': 'santouka', '桑图克': 'xantouke', '桑托斯': 'santos', '桑扬': 'sonyan', '丧': 'mourning', '丧钟': 'knell_bell', '骚_(0060)': 'sao_(0060)', '骚乱': 'riolutiny', '骚扰': 'molest', '骚扰': 'molestation', '骚扰': 'molesting', '扫地': 'sweeping', '扫雷': 'minesweeper', '扫刘海': 'swept_bangs', '扫罗': 'saoul', '扫罗古德曼': 'saul_goodman', '扫描': 'scan', '扫描尘埃': 'scan_dust', '扫描器': 'skarner', '扫描线': 'scanlines', '扫帚': 'broom', '嫂子': 'sister_in_law', '色板': 'swatcher', '色板': 'swatchling', '色变': 'chromamorph', '色差': 'chromatic_aberration', '色调': 'toned', '色调女孩19': 'huegirl19', '色豆': 'eromame', '色度_(色度000)': 'chroma_(chroma000)', '色法师': 'chromamancer', '色非人': 'sefeiren', '色夫': 'sefushi', '色光白': 'irokohaku', '色肯': 'seedkeng', '色拉弗勒': 'serafleur', '色拉科斯': 'thrakos', '色拉克塔': 'sek-raktaa', '色狼': 'satyr', '色狼_(granblue_fantasy)': 'satyr_(granblue_fantasy)', '色雷斯': 'thrasian', '色罗汉': 'serohan', '色木色': 'irokiiro', '色孽': 'slaanesh', '色情': 'pornography', '色情': 'porom', '色情_(艺术家)': 'pornography_(artist)', '色情大片': 'pornomagnum', '色情短信': 'sexting', '色情对话': 'porn_dialogue', '色情封面': 'porn_cover', '色情恐惧症': 'eroticphobia', '色情洛丽塔': 'ero_lolita', '色情明星': 'pornstar', '色情明星_(模因)': 'pornstar_(meme)', '色情片': 'porncooby', '色情片': 'pornthulhu', '色情网站': 'pornhub', '色情杂志': 'porn_magazine', '色情之神': 'ero-god', '色身': 'rupa', '色狩': 'irokari', '色素细胞': 'chromatophore', '色乌拉': 'se-u-ra', '色乌乌乌乌乌乌村': 'syokuuuuuuuuumura', '色相': 'hue_oo', '色叶': 'irouha', '色叶黑': 'iroha-kuro', '色羽': 'irohakaede', '色域羽毛': 'gamutfeathers', '色欲_(kuroodod)': 'lust_(kuroodod)', '色原': 'irohara', '色佐克': 'sezok', '涩藏': 'shibuzoh', '涩谷': 'seshiya', '涩谷_(东京)': 'shibuya_(tokyo)', '涩谷_109': 'shibuya_109', '涩谷_2810': 'shibuya_2810', '涩谷林': 'shibuya_rin', '涩顺': 'shibusun', '铯': 'cesium', '瑟夫': 'serph', '瑟哈': 'sejha', '瑟拉蒂': 'servati', '瑟拉乔克': 'servachok', '瑟兰迪尔': 'thranduil', '瑟里斯': 'therris', '瑟瑟伦': 'seseren', '瑟斯': 'serth', '瑟文南': 'sewenan', '瑟庄尼': 'sejuani', '森': 'mori', '森': 'n-mori', '森_(未知。)': 'mori_(unknown.)', '森_(游戏)': 'omori_(game)', '森003': 'mori-003', '蹲着': 'squatting', '森本_(ryou)': 'morimoto_(ryou)', '森伯斯特_(mlp)': 'sunburst_(mlp)', '森川_(futomyu)': 'morikawa_(futomayu)', '森茨': 'senz', '看着': 'Standing, looking ', '看见': 'Standing, looking ', '看到': 'Standing, looking ', '看向': 'Standing, looking ', '森冈_(oshiro_project)': 'morioka_(oshiro_project)', '森宫_(kuroro)': 'morimiya_(kuroro)', '森宫_青野': 'morimiya_aono', '森宫正之': 'morimiya_masayuki', '森海塞尔': 'sennheiser', '森基': 'senky', '森吉原': 'mori_yoshihara', '森津': 'moritatsu', '森久保诺诺': 'morikubo_nono', '森久三': 'moritakusan', '森俊道': 'mori_toshimichi', '森俊明': 'mori_toshiaki', '森卡别克': 'senka-bekic', '森科': 'cenco', '森科克': 'morikoke', '森林': 'forest', '森林_(4423)': 'forest_(4423)', '森林_(火徽)': 'forrest_(fire_emblem)', '森林背景': 'forest_background', '森林代尔': 'forestdale', '森林鹿': 'sylvanedadeer', '森林行者': 'forestwalker', '森马山': 'senimasan', '森木': 'moriki', '森木武士': 'moriki_takeshi', '森尼夫': 'senifu', '森诺卡': 'senorkah', '森诺斯': 'senos', '森奇米': 'senchimee', '森崎次郎': 'morisaki_jiro', '森崎崎': 'morimi_saki', '森人': 'morihito', '森森': 'sensen', '杀人蜂': 'killer_bee', '杀人狼': 'murderwolf', '杀生丸': 'sesshoumaru', '杀石': 'killingrock', '杀手': 'hitmanatee', '杀手': 'slayer', '杀手_(one_piece)': 'killer_(one_piece)', '杀手_(系列)': 'hitman_(series)', '杀手_(游戏)': 'hitman_(game)', '杀手_t_(hataraku_saibou)': 'killer_t_(hataraku_saibou)', '杀手7': 'killer7', '杀手本能': 'killer_instinct', '杀手鳄鱼': 'killer_croc', '杀手皇后': 'killer_queen', '杀手灰熊': 'killergrizzly', '杀手锏': 'hitmonlee', '杀手锏': 'javkiller', '杀手龙': 'killerdragn', '杀手鳕鱼': 'killercod', '杀我吧宝贝': 'kill_me_baby', '脸色大变': ' angry', '沙': 'sand', '沙': 'sha', '沙阿': 'shaa', '沙阿': 'shah', '沙安': 'shaian', '沙巴_(雷达)': 'sabah_(radarn)', '沙巴_(字符)': 'sabah_(character)', '沙巴门': 'sabamen', '沙巴米索': 'sabamisob', '沙巴木': 'sabamu', '沙巴纳': 'sabana', '沙巴内科': 'chabaneko', '沙巴什': 'sandy_bash', '沙邦': 'shabon', '沙堡': 'sand_castle', '沙暴': 'sandstorm', '沙贝尔df': 'sandybelldf', '沙贝特': 'chabett', '沙波科': 'shapoco', '沙波姆': 'shabomu', '沙蚕爬行动物': 'salmacisreptile', '沙虫': 'sandworm', '沙虫_(monster_girl_encyclopedia)': 'sandworm_(monster_girl_encyclopedia)', '沙茨基斯特': 'schatzkiste', '沙达里乌斯': 'shadarrius', '沙达里亚': 'shadaria', '沙达尼': 'shardanic', '沙达特': 'shadart', '沙袋': 'sandbag', '沙袋': 'sandbags', '沙袋_(smash_bros)': 'sandbag_(smash_bros)', '沙袋_(super_smash_bros。)': 'sandbag_(super_smash_bros.)', '沙德曼': 'shadman', '沙地_(bcb)': 'sandy_(bcb)', '沙地_(伊布)': 'sandy_(eevee)', '沙迪尔': 'shadiel', '沙迪亚迪1': 'shadyadi1', '沙雕': 'sand_sculpture', '沙丁': 'satyn', '沙丁鱼': 'sardine', '沙东': 'osandon', '沙洞': 'sandcavern', '沙多尔贝吉': 'chadolbaegi', '沙多卡': 'shadoca', '沙多里安': 'shaadorian', '沙恩霍斯特': 'scharnhorst', '沙尔坎': 'sharrkan', '沙发': 'catcouch', '沙发': 'divan', '沙发': 'sofa', '沙发': 'soffa', '沙发_(enogunomu)': 'sofa_(enogunomu)', '沙发十字军': 'couchcrusader', '沙发王好': 'sofakinggood', '沙发性爱': 'couch_sex', '沙芬': 'saphine', '沙夫舒茨': 'scharfschutze', '沙弗利': 'shaffelli', '沙锅': 'casserole', '沙锅': 'shaguo', '沙哈': 'syaha', '沙河': 'sandy_rivers', '沙盒': 'sandbox', '沙赫努埃拉': 'schach_nouera', '沙皇': 'tsarin', '砸': 'Smashing ', '沙皇': 'tzarious', '沙基尼': 'sharkini', '沙基伊': 'shakkiyi', '沙棘': 'usalxlusa', '沙棘': 'xelophus', '沙棘鱼': 'serrasalmid', '沙鲸': 'sadwhale', '沙井': 'manhole', '沙卡': 'el_shaka', '沙卡': 'shaka', '沙克蒂': 'shaak_ti', '沙克兰': 'shakran', '沙克斯': 'shaxs', '沙库拉夫': 'dsakuraff', '沙拉': 'salad', '沙拉比': 'sarabi', '沙拉变态': 'salad_pervert', '沙拉酱': 'salada', '沙拉酱': 'salazzle', '沙拉酱': 'sirachanotsauce', '沙拉碗': 'salad_bowl', '沙兰德瑞尔': 'sallandril', '沙兰迪': 'salandit', '沙狼151': 'sawolf151', '沙勒': 'chaleu', '沙雷娜': 'tsareena', '沙里科特': 'shari_cote', '沙利瓦': 'shaliva', '填充': 'padding', '填充_(消歧义)': 'filling_(disambiguation)', '填充避孕套': 'filled_condom', '填充大象': 'stuffed_elephant', '填充独角兽': 'stuffed_unicorn', '填充鳄鱼': 'stuffed_crocodile', '填充房间': 'padded_room', '填充海豚': 'stuffed_dolphin', '填充狐狸': 'stuffed_fox', '填充夹克': 'padded_jacket', '填充鲸鱼': 'stuffed_whale', '填充恐龙': 'stuffed_dinosaur', '填充狼': 'stuffed_wolf', '填充老虎': 'stuffed_tiger', '填充猫': 'stuffed_cat', '填充猫头鹰': 'stuffed_owl', '填充鸟': 'stuffed_bird', '填充企鹅': 'stuffed_penguin', '填充墙': 'padded_walls', '填充青蛙': 'stuffed_frog', '填充鲨鱼': 'stuffed_shark', '填充鼠标': 'stuffed_mouse', '填充松鼠': 'stuffed_squirrel', '填充兔子': 'stuffed_bunny', '填充玩具动物': 'stuffed_animal', '填充熊猫': 'stuffed_panda', '填充驯鹿': 'stuffed_reindeer', '填充羊驼': 'stuffed_alpaca', '填充长颈鹿': 'stuffed_giraffe', '填充子宫': 'filled_womb', '填色本': 'coloring_book', '填写审查': 'filled-in_censorship', '舔': 'licking', '舔': 'licks', '舔背': 'licking_back', '舔鼻子': 'licking_nose', '舔脖子': 'licking_neck', '舔脖子': 'neck_lick', '舔大腿': 'licking_thigh', '舔肚皮': 'licking_belly', '舔耳': 'ear_lick', '舔耳': 'licking_ear', '舔狗苏打水': 'dogslickingsoda', '舔肩': 'shoulder_lick', '舔肩膀': 'licking_shoulder', '舔脚': 'foot_lick', '舔脚': 'licking_foot', '舔毛': 'licking_hair', '舔皮': 'leatherlick', '舔屏': 'licking_screen', '舔球': 'ball_lick', '舔傻': 'licked_silly', '舔舐': 'lickilicky', '舔舐': 'lickitung', '舔手': 'licking_hand', '舔手指': 'licking_finger', '舔体': 'licking_body', '舔头': 'head_lick', '舔头': 'licking_head', '舔腿': 'licking_leg', '舔尾': 'licking_tail', '舔尾': 'tail_lick', '舔胃': 'licking_stomach', '舔吻': 'lick_kiss', '舔胸': 'breast_lick', '舔胸': 'chest_lick', '舔血': 'licking_blood', '舔牙': 'licking_teeth', '舔眼': 'licking_eye', '舔羊': 'lickagoat', '舔腋窝': 'armpit_lick', '舔腋窝': 'licking_armpit', '舔阴': 'cunnilingus', '舔爪子': 'licking_paw', '舔嘴': 'licking_mouth', '舔嘴唇': 'licking_lips', '挑剔': 'pickieeeee', '挑剔的': 'pickynickit', '挑衅': 'defiant', '挑衅': 'provocation', '挑衅': 'provocative', '挑衅的': 'aggressive', '挑战': 'challenge', '条件_dnp': 'conditional_dnp', '条款': 'clause', '条码': 'barcode', '条码纹身': 'barcode_tattoo', '条纹': 'stripes', '条纹': 'stripey', '条纹_(版权)': 'stripes_(copyright)', '条纹_(标记)': 'stripes_(marking)', '条纹_(字符)': 'stripes_(character)', '条纹_tenrec': 'streaked_tenrec', '条纹_臭鼬': 'streaks_skunk', '条纹阿斯科特': 'striped_ascot', '条纹背': 'striped_back', '条纹背景': 'striped_background', '条纹背心': 'striped_vest', '条纹比基尼': 'striped_bikini', '条纹臂': 'striped_arms', '条纹边框': 'striped_border', '条纹标记': 'striped_markings', '条纹衬衫': 'striped_shirt', '条纹翅膀': 'striped_wings', '条纹臭鼬': 'striped_skunk', '条纹触手': 'striped_tentacles', '条纹打底裤': 'striped_leggings', '条纹的肩膀': 'striped_shoulders', '条纹底装': 'striped_bottomwear', '条纹吊带背心': 'striped_camisole', '条纹斗篷': 'striped_cape', '条纹短裤': 'striped_shorts', '条纹鳄鱼': 'stripedcrocodile', '条纹耳朵': 'striped_ears', '条纹发带': 'striped_hairband', '条纹服装': 'striped_clothing', '条纹弓': 'striped_bow', '条纹海豚': 'striped_dolphin', '条纹和服': 'striped_kimono', '条纹喙': 'striped_beak', '条纹夹克': 'striped_jacket', '条纹假阳具': 'striped_dildo', '条纹角': 'striped_horns', '条纹紧身衣': 'striped_leotard', '条纹开衫': 'striped_cardigan', '条纹裤子': 'striped_pants', '条纹喇叭': 'striped_horn', '条纹连裤袜': 'striped_pantyhose', '条纹连帽衫': 'striped_hoodie', '条纹连体衣': 'striped_bodysuit', '条纹连衣裙': 'striped_dress', '条纹脸': 'striped_face', '条纹鬣狗': 'striped_hyena', '条纹领': 'striped_neck', '条纹领带': 'striped_necktie', '条纹领结': 'striped_bowtie', '条纹毛巾': 'striped_towel', '条纹毛皮': 'striped_fur', '条纹毛衣': 'striped_sweater', '条纹帽': 'striped_hat', '条纹面水果蝙蝠': 'stripe-faced_fruit_bat', '条纹内裤': 'striped_panties', '条纹内衣': 'striped_underwear', '条纹披肩': 'striped_capelet', '条纹皮肤': 'striped_skin', '条纹屁股': 'striped_butt', '条纹墙': 'striped_wall', '条纹裙': 'striped_skirt', '条纹乳房': 'striped_breasts', '条纹伞': 'striped_umbrella', '条纹纱笼': 'striped_sarong', '条纹上衣': 'striped_topwear', '条纹舌头': 'striped_tongue', '条纹手套': 'striped_gloves', '条纹手腕袖口': 'striped_wrist_cuffs', '条纹睡衣': 'striped_pajamas', '条纹体': 'striped_body', '条纹天线': 'striped_antennae', '条纹头': 'striped_head', '条纹头发': 'streaked_hair', '条纹头发': 'striped_hair', '条纹头巾': 'striped_kerchief', '条纹头饰': 'striped_headgear', '条纹头饰': 'striped_headwear', '条纹腿': 'striped_legs', '条纹袜子': 'striped_socks', '条纹外骨骼': 'striped_exoskeleton', '条纹外套': 'striped_coat', '条纹腕带': 'striped_wristband', '条纹围巾': 'striped_neckerchief', '条纹围巾': 'striped_scarf', '条纹围裙': 'striped_apron', '条纹尾': 'striped_tail', '条纹西装': 'striped_suit', '条纹项链': 'striped_choker', '条纹鞋': 'striped_footwear', '条纹胸': 'striped_chest', '条纹胸罩': 'striped_bra', '条纹袖子': 'striped_sleeves', '条纹腰带': 'striped_belt', '条纹腰带': 'striped_sash', '条纹衣服': 'striped_clothes', '条纹泳装': 'striped_swimwear', '条纹羽毛': 'striped_feathers', '条纹长袜': 'striped_stockings', '条纹枕头': 'striped_pillow', '条纹指甲': 'striped_nails', '条纹自行车短裤': 'striped_bike_shorts', '条纹鬃毛': 'striped_mane', '条纹罪': 'striped_sins', '条形码扫描器': 'barcode_scanner', '条皂': 'bar_soap', '跳': 'jum-p', '跳3': 'hop3', '跳板_(传奇联盟)': 'gangplank_(league_of_legends)', '跳虫': 'springtail', '跳虫': 'zergling', '跳到这里': 'leaphere', '跳动': 'volbeat', '跳峰': 'peakjump', '铁猛龙': 'ironraptor', '铁米尔': 'temir', '铁模拟器': 'ferrissimulator', '铁木真': 'temujin', '铁木真_(housamo)': 'temujin_(housamo)', '铁男': 'tetsuo', '铁男孩': 'iron_boy', '铁脑': 'tienao', '铁娘子': 'iron_maiden', '铁牛': 'iron_bull', '铁皮': 'ironhide', '铁皮': 'tepechi', '铁球': 'iron_ball', '铁拳': 'panzerfaust', '铁拳': 'tekken', '铁拳_(惊奇)': 'iron_fist_(marvel)', '铁拳_5': 'tekken_5', '铁拳_6': 'tekken_6', '铁拳_7': 'tekken_7', '铁拳_tag_tournament_2': 'tekken_tag_tournament_2', '铁拳_革命': 'tekken_revolution', '铁拳亚历山大': 'iron_fist_alexander', '铁人': 'tetsubuta', '铁人_(角色扮演)': 'iron_man_(cosplay)', '铁人_(系列)': 'iron_man_(series)', '铁人_28': 'tetsujin_28', '铁人狂热': 'ironmania', '铁赛': 'tessai', '铁砂': 'ferroseed', '铁山口': 'tetsuzankou', '铁杉格林斯比': 'hemlockgrimsby', '铁十字': 'iron_cross', '铁丝网': 'barbed_wire', '铁丝网': 'wire_fence', '铁素体': 'ferrit', '铁塔': 'iotower', '铁塔格': 'iron_tager', '铁蹄': 'wiredhooves', '铁头': 'ironhades', '铁土豆': 'ironpotato', '铁团桥': 'tetuankyo', '铁托': 'tetto', '铁尾': 'tails_of_iron', '铁西': 'tiesci', '铁酰': 'feryl', '铁线虫属': 'philomelalilium', '铁心': 'hearts_of_iron', '铁心': 'tetsunoshin', '铁袖口': 'iron_cuffs', '铁血_(徽章)': 'iron_blood_(emblem)', '铁氧体': 'feroxdoon', '铁艺艺术家': 'iron_artist', '铁鱼': 'teffish', '铁月': 'ironatsuki', '铁栅栏': 'iron_fence', '铁爪': 'iron_claw', '铁爪_(rpg)': 'ironclaw_(rpg)', '铁子_(铁子009)': 'tetsuko_(tetsuko009)', '铁佐贺': 'tetsusaiga', '铁作': 'tessaku_ro', '听!!': 'listen!!', '听': 'hark', '听': 'listening', '听到_(kpmf4732)': 'hear_(kpmf4732)', '听到_(艺术家)': 'hear_(artist)', '听得见': 'audiodude', '听得见的音乐': 'audible_music', '听肚皮': 'listening_to_belly', '听光': 'harklight', '听话': 'obedient', '听起来': 'sounding', '听音乐': 'listening_to_music', '听诊器': 'stethoscope', '廷': 'tyun', '廷布加米': 'timbougami', '廷蒂拉': 'tinntira', '廷提艾': 'tintiai', '廷瓦尔': 'tinval', '亭': 'kiosk', '亭亭': 'teitei', '庭吹': 'niwabuki', '庭虎': 'niwatora', '庭取武士': 'niwatori_takeshi', '庭田0': 'niwata0', '庭庭取': 'niwaniwatori', '庭园': 'teien', '庭院': 'courtyard', '庭子': 'niwako', '停车': 'kingparked', '停车场': 'parking_lot', '停车库': 'parking_garage', '停車處': 'barking', '停靠耳朵': 'docked_ears', '停靠尾': 'docked_tail', '停尸房': 'morgue', '停止': 'cea_se', '停止': 'stop', '停止标志': 'stop_sign', '停止运动': 'stop_motion', '停滞': 'stasis', '停滞谵妄': 'stasis_delirium', '通': 'tolng', '通': 'tong', '通宝': 'tomboo', '通宝': 'tonbo', '通贝里': 'tonberry', '通比': 'tonbi', '通比斗': 'tonbidou', '通比瓦': 'tombiiwa', '通昌': 'tonchan', '通达': 'tonda', '通达马努克': 'tondamanuke', '通道': 'passage', '通道_ppp': 'channel_ppp', '通德': 'tsugutoku', '通德布林': 'tonde_buurin', '通德里': 'tunderi', '通法': 'tonfa', '通风': 'ventilation', '通风的': 'ventious', '通风井': 'ventilation_shaft', '通风口': 'air_vent', '通风口': 'ventesthefloof', '同人小说': 'fanfic', '同人小说': 'fanfiction', '同人艺术': 'fanfic_art', '同人游戏': 'fangame', '同人志': 'doujinshi', '同山': 'same-san', '同上': 'ditto', '同上': 'dittodotto', '同上': 'samegami', '同上_(口袋妖怪)': 'ditto_(pok茅mon)', '同上_(消歧义)': 'ditto_(disambiguation)', '同师正书': 'doushimasho', '同时': 'simul', '同时性高潮': 'simultaneous_orgasms', '同心传': 'toushinden', '同心圆': 'concentric_circles', '同性恋...': 'homoo...', '同性恋7': 'gayousi7', '同性恋诽谤': 'homophobic_slur', '同性恋狼': 'gaymingwolfy', '同性恋骑士8': 'gayrider8', '同性恋王子': 'gayprince', '同性恋熊': 'gay_bear', '同性恋者': 'faggotrat', '同性恋者': 'gaytor', '同性恋者': 'homohomofever', '同样_(g_shark)': 'same_(g_shark)', '同样_(仙台623)': 'same_(sendai623)', '同义词': 'raseme', '同义词': 'syno', '同意': 'ammit', '同意': 'consent', '同意书': 'consentacles', '同意主题': 'consent_themes', '同质规则': 'homogenousrule', '同质化': 'homolution', '同种兽性': 'same-species_bestiality', '同种异体': 'allos', '同住': 'doukutsunezumi', '桐持': 'kirimochi', '桐宫水树': 'kirimiya_mizuki', '桐谷_hitsugi': 'kirigaya_hitsugi', '桐谷_yuuji': 'kirigaya_yuuji', '桐谷846': 'kiritani846', '桐井': 'kirii', '桐立': 'kiritachi', '桐木': 'kiraki', '桐木': 'kiruki', '桐木金': 'kim_kitsuragi', '桐农': 'toongrowner', '桐人': 'kirito', '桐人_(sao-ggo)': 'kirito_(sao-ggo)', '桐人_(角色扮演)': 'kirito_(cosplay)', '桐山': 'kiriyama', '桐山2109': 'kiriyama2109', '桐山町': 'kiriyama_machi', '桐山怜': 'kiriyama_rei', '桐山太一': 'kiriyama_taichi', '桐山樱花': 'kiriyama_sakura', '桐生': 'kiriuzasu', '桐生': 'kiryu', '桐穗田': 'kirihota', '桐台': 'kirudai', '桐田': 'kirita', '桐野乱丸': 'kirino_ranmaru', '桐樱': 'kiri_sakura', '桐原赤屋': 'kirihara_akaya', '桐原美咲': 'kirihara_misaki', '桐原泉': 'kirihara_izumi', '桐之介': 'kirinosuke', '桐子': 'kiraiko', '铜': 'c.cu', '铜': 'copper', '偷看': 'peeps', '偷窥': 'pee-kay', '偷窥': 'peeping', '偷窥': 'peeqaboo', '偷窥': 'voyeur', '偷窥': 'voyeurism', '偷窥者': 'peeposleepr', '偷窥者': 'sneasler', '偷窥者': 'voyuer', '偷了': 'stole', '偷窃': 'caribooty', '偷窃': 'stealing', '偷偷摸摸': 'shide', '偷偷摸摸': 'shlorp', '偷偷摸摸': 'slurk', '偷偷摸摸': 'stalk_in_mouth', '偷偷摸摸': 'tohilewd', '偷偷摸摸的西装': 'sneaking_suit', '头': 'head', '头板': 'head_plate', '头包': 'head_bag', '头孢': 'cephei', '头孢卡帕拉佐': 'cefca_palazzo', '头鲍勃': 'head_bob', '头臂': 'head_arms', '头标志': 'head_flag', '头部插入': 'head_insertion', '头部受伤': 'head_injury', '头擦': 'head_rub', '头菜老': 'toucailao', '头簇': 'head_tuft', '头呆': 'toutaku', '头带_girl_(kamisimo_90)': 'headband_girl_(kamisimo_90)', '头带_耳朵': 'headband_ears', '头戴式耳机背后': 'behind-the-head_headphones', '头戴式显示器': 'head-mounted_display', '头灯': 'headlamp', '头等舱': 'primeape', '头顶': 'head_crest', '头顶': 'head_hold', '头顶': 'hedax', '头顶照明': 'overhead_lighting', '头对头': 'head_to_head', '头发': 'hair', '头发翻转': 'hair_flip', '头发弓': 'hair_bows', '头发花': 'hair_flower', '头发花白': 'grey_hair', '头发焦点': 'hair_focus', '头发扩展': 'hair_extensions', '头发拉直器': 'hair_straightener', '头发立方体': 'hair_cubes', '头发泡泡': 'hair_bobbles', '头发腮红': 'hair_blush', '头发摄入量': 'hair_intakes', '头发审查员': 'hair_censor', '头发生长': 'hair_growth', '头发手': 'hair_hand', '头发水果': 'hair_fruit', '头发丝带': 'hair_ribbon', '头发提升': 'hair_lift', '头发围巾': 'hair_scarf', '头发武器': 'hair_weapon', '头发颜色连接': 'hair_color_connection', '头发移动': 'hair_move', '头发长度开关': 'hair_length_switch', '头发装饰': 'hair_decoration', '头风': 'toufuu', '头沟_hifumi': 'tougou_hifumi', '头骨_(disgaea)': 'skull_(disgaea)', '头骨_(标记)': 'skull_(marking)', '头骨_他妈的': 'skull_fucking', '头骨573': 'skull573', '头骨标记': 'skull_marking', '头骨打印': 'skull_print', '头骨内裤': 'skull_panties', '头骨配件': 'skull_accessory', '头骨头发配件': 'skull_hair_accessory', '头骨头发装饰': 'skull_hair_ornament', '头骨头盔': 'skull_helmet', '头骨项链': 'skull_choker', '头骨形的瞳孔': 'skull-shaped_pupils', '头骨装饰': 'skull_ornament', '头观': 'toukan', '头厚饭': 'touhoufan', '头壶坡': 'tohupo', '头虎': 'tiuhu', '头花': 'head_flower', '头花环': 'head_wreath', '头脊': 'head_ridge', '头剪刀': 'headscissor', '头交换': 'head_swap', '头巾': 'bandana', '头巾': 'coif', '头巾': 'head_scarf', '头巾': 'headband', '头巾': 'headkerchief', '头巾': 'headpiece', '头巾': 'headscarf', '头巾': 'hijab', '头巾': 'kerchief', '头巾': 'turban', '头巾_(字符)': 'bandana_(character)', '头巾移除': 'bandana_removed', '头镜': 'head_mirror', '头九郎': 'toukurou', '头盔': 'helmet', '头盔_(touhu812)': 'helmet_(touhu812)', '头盔_(开拓者003)': 'helmet_(trailblazer003)', '头盔chan_(girls_und_panzer)': 'helmet-chan_(girls_und_panzer)', '头盔博物馆_(kancolle)': 'helmet_musume_(kancolle)', '头盔哥': 'thehelmetguy', '头盔上的眼睛': 'helmet_over_eyes', '瘫坐': 'Sitting on the ground, sad, open your mouth', '头盔移除': 'helmet_removed', '头链': 'head_chain', '头六': 'zuburoku', '头颅': 'bucephalus', '头颅': 'cephalopussy', '头颅_(命运)': 'bucephalus_(fate)', '手扶帽檐': 'Handheld hat brim', '头颅畸形': 'cynocephaly', '头脑清醒': 'keavemind', '头欧': 'touou', '头皮': 'dandruff', '打伞': 'hold an umbrella', '头鳍': 'head_fins', '头倾斜': 'head_tilt', '头桑': 'tousang', '头伤': 'head_wound', '透明袋': 'transparent_bag', '透明的': 'transparent', '透明的假阳具': 'transparent_dildo', '透明肛门珠': 'transparent_anal_beads', '透明弓': 'transparent_bow', '透明蝴蝶': 'transparent_butterfly', '透明胶乳': 'transparent_latex', '透明角': 'transparent_horns', '透明面料': 'transparent_fabric', '透明乳房垫': 'transparent_breasts_pads', '透明伞': 'transparent_umbrella', '透明色带': 'transparent_ribbon', '透明审查': 'transparent_censoring', '透明石': 'clearite', '透明手': 'transparent_hand', '凸起的鞋跟': 'raised_heel', '凸起的胸罩': 'raised_bra', '凸起的衣服': 'raised_clothing', '凸起的爪子': 'raised_claws', '凸起的爪子': 'raised_paw', '凸起毛衣': 'raised_sweater', '秃': 'bald', '秃斑': 'bald_spot', '秃顶': 'balding', '秃鹫': 'vulture', '秃头_(系列)': 'baldr_(series)', '秃头女孩': 'bald_girl', '秃头破折号999': 'balderdash999', '秃头天空': 'baldr_sky', '突变': 'mutated', '突变': 'mutation', '突变体': 'mutant', '突变体': 'mutants', '突变体:_year_zero': 'mutant:_year_zero', '突变体_(特许经营权)': 'mutant_(franchise)', '突变尾': 'mutantail', '突变之夜': 'mutantnight', '突出的': 'saliant', '突出的牙齿': 'protruding_teeth', '突出显示的文本': 'highlighted_text', '突触': 'synapsid', '突发大火': 'burstfire', '突击百合': 'assault_lily', '突击步枪': 'assault_rifle', '突击队_(电影)': 'commando_(movie)', '突击队_iii': 'sturmgeschutz_iii', '突击套装系列': 'assault_suits_series', '突击者': 'sturmjager', '难受': 'Sweating, sad', '突击者遮阳板': 'assault_visor', '突破者': 'brekkist', '突然黑客': 'suddenhack', '突眼皮疹': 'aogumaptticrash', '图_(对象)': 'graph_(object)', '图_17': 'figure_17', '图案_t恤': 'pattern_t-shirt', '图案_比基尼': 'pattern_bikini', '图案_服装': 'pattern_clothing', '图案_内衣': 'pattern_underwear', '图案_睡衣': 'pattern_pajamas', '图案_泳装': 'pattern_swimwear', '图案背景': 'pattern_background', '图案背景': 'patterned_background', '图案衬衫': 'pattern_shirt', '图案短裤': 'pattern_shorts', '图案服装': 'patterned_clothing', '图案弓': 'pattern_bow', '图案夹克': 'pattern_jacket', '图案裤子': 'pattern_pants', '图案连帽衫': 'pattern_hoodie', '图案领带': 'pattern_necktie', '图案毛衣': 'pattern_sweater', '图案帽子': 'pattern_hat', '图案内裤': 'pattern_panties', '图案尿布': 'pattern_diaper', '图案墙': 'pattern_wall', '图案头巾': 'pattern_kerchief', '图案袜子': 'pattern_socks', '图案围巾': 'pattern_scarf', '图案围裙': 'pattern_apron', '图案胸罩': 'pattern_bra', '图板': 'drawing_board', '图标': 'icon', '图标': 'SKSKS app icon', '图标_(1452697582)': 'icons_(1452697582)', '图标_(计算)': 'icon_(computing)', '图标_(无糖_酸奶)': 'icon_(sugarless_yogurt)', '图标_315': 'icon_315', '推': 'shove', '推动': 'pushing', '推杆': 'putcher', '推进器': 'thrusters', '推开': 'pushing_away', '推力': 'thrust', '推力线': 'thrust_lines', '推力音效': 'thrusting_sound_effect', '推搡': 'shoving', '推搡': 'thrusting', '推特': 'twit-tan', '推特': 'twitter', '推特电商': 'tweetdian', '推特毛皮': 'tweetfur', '推特鸟': 'tweety_bird', '推特桑': 'twitter-san', '推土机': 'bulldozer', '推土机_(布拉福德)': 'dozer_(braford)', '推下去': 'pushed_down', '颓废_(动漫)': 'decadence_(anime)', '腿': 'legs', '腿吧': 'leg_bar', '腿背': 'legs_back', '腿部肌肉': 'leg_muscles', '腿部伸展': 'leg_stretch', '腿部纹身': 'leg_tattoo', '腿部约束': 'leg_restraint', '腿撑': 'leg_brace', '腿抽搐': 'leg_twitch', '腿带': 'leg_belt', '腿带': 'leg_strap', '腿带': 'legband', '腿袋': 'leg_pouch', '腿分开': 'legs_apart', '腿后肩': 'leg_behind_shoulder', '腿环': 'leg_ring', '腿甲': 'leg_armor', '腿交': 'legjob', '腿交叉': 'leg_cross', '腿焦点': 'leg_focus', '腿拉': 'leg_pull', '腿毛': 'leg_fur', '腿毛': 'leg_hair', '腿皮': 'legskin', '腿皮套': 'leg_holster', '腿鳍': 'leg_fins', '腿伤疤': 'leg_scar', '腿上': 'legs_up', '腿上的肩膀': 'leg_on_shoulder', '腿锁': 'leg_lock', '腿舔': 'leg_lick', '腿条纹': 'leg_stripes', '腿腿腿': 'leglegleg', '腿袜带': 'leg_garter', '腿袖口': 'leg_cuffs', '腿在一起': 'legs_together', '腿支撑': 'leg_support', '退出': 'exited', '退稿': 'backdraft', '退化3d': 'degen3d', '退缩': 'flinch', '退伍军人': 'legionaire', '章': 'chapter', '鱼': 'fish', '船': 'ship', '海': 'sea', '岛': 'island', '浪': 'wave', '沙': 'sand', '潮': 'tide', '渔': 'fishing', '游': 'swim', '钓': 'fishing with a hook and line', '海盗': 'pirate', '帆': 'sail', '舵': 'rudder', '水手': 'sailor', '退伍军人': 'legionnaire', '退伍军人': 'veterowo', '蜕皮': 'molte', '蜕皮眼': 'decidueye', '褪黑激素': 'melaton', '褪色': 'fadingz', '褪色_(狗头人牧马人)': 'fade_(koboldwrangler)', '褪色到黑色': 'fade_to_black', '褪色天空': 'fadingsky', '吞': 'throh', '吞根': 'tsunken', '吞噬_闪电_(genshin_impact)': 'engulfing_lightning_(genshin_impact)', '吞噬1129': 'devour1129', '吞噬灵魂的眼睛': 'soul_devouring_eyes', '吞噬者': 'devourer', '吞下_(消歧义)': 'swallow_(disambiguation)', '吞下蛋': 'swallowing_eggs', '吞咽': 'gulping', '吞咽': 'swallowing', '吞咽_(音效)': 'gulp_(sound_effect)', '吞咽5959': 'gulp5959', '吞咽音效': 'swallowing_sound_effect', '屯': 'tun', '豚鼠': 'guinea_pig', '臀部之间': 'between_buttocks', '臀位出生': 'breech_birth', '托阿': 'toa', '托阿罗查': 'toaruocha', '托巴托伊努': 'tobatoinu', '托拜厄斯威尔逊': 'tobias_wilson', '托邦': 'ttopang', '托本': 'torben', '托本托托': 'tomotototo', '托比_(动物穿越)': 'toby_(animal_crossing)', '托比福克斯': 'tobyfox', '托比狼': 'tobbywolf', '托比托比90': 'tobitobi90', '由里': 'yori', '由里': 'yu-ri', '由另一个打开': 'opened_by_another', '由麻里': 'yuimari', '由美木': 'yumiki', '由美秋山': 'yumiakiyama', '由美约基亚克': 'yumiyokiak', '由美子山49': 'yumikoyama49', '由木佐': 'ayukisa', '由奈子': 'yuineko', '由麒麟': 'yukirin', '由日宫': 'yuizayomiya', '由上香汤': 'yukamikayu', '由太': 'yuita', '由香': 'yukasu', '由彦': 'yuihico', '由一郎': 'yuichirou', '邮戳': 'postmark', '邮袋': 'mailbag', '邮递员': 'mailman', '邮件': 'amailemon', '邮件': 'mail', '邮件_(邮件_凝胶)': 'mail_(mail_gell)', '邮局': 'postalroo', '邮票': 'postage_stamp', '邮票': 'stamp', '邮票': 'stamp-sheet', '邮票': 'vistamp', '邮票标记': 'stamp_mark', '邮票垫': 'stampmats', '邮筒': 'pillarbox', '邮筒': 'pillarboxed', '邮箱': 'mailbox', '邮箱': 'trbox', '邮箱_(outgoing_mail)': 'postbox_(outgoing_mail)', '邮箱_(传入_邮件)': 'mailbox_(incoming_mail)', '邮政': 'post', '邮政_(艺术家)': 'postal_(artist)', '犹大_(故事)': 'judas_(tales)', '犹大和耶稣': 'judas_and_jesus', '犹他盗龙': 'utahraptor', '犹他州': 'utahane', '犹太教': 'tionishia', '犹太人阿什塔': 'judau_ashta', '犹太神话': 'jewish_mythology', '油': 'la-na', '油': 'oil', '油饼': 'oilblkrum', '油菜': 'cole', '油菜_(colesutra)': 'cole_(colesutra)', '油菜花': 'rapel', '油菜花': 'rapeseed_blossoms', '油柴': 'churroshiba', '油灯': 'oil_lamp', '油豆腐': 'yudough', '油费特': 'boba_fett', '油罐车': 'tank_truck', '油果子': 'yougashi', '油画_(中)': 'oil_painting_(medium)', '油灰': 'putty', '油蜡': 'elawaxd', '油轮': 'tankers', '油莓': 'greaseberries', '油门_(bmfm)': 'throttle_(bmfm)', '油墨': 'inks', '油腻_(字符)': 'greasy_(character)', '油腻的': 'greasymeta', '油腻的莫霍': 'greasymojo', '油漆_(艺术家)': 'paint_(artist)', '油漆_(字符)': 'paint_(character)', '油漆博物馆': 'paint_musume', '油漆飞溅': 'paint_splatter', '油漆工具_sai': 'painttool_sai', '油漆工具_sai_(中)': 'painttool_sai_(medium)', '油漆狗_(艺术家)': 'paintdog_(artist)', '油漆管': 'paint_tube', '洋地黄毒': 'digitoxici', '洋甘菊': 'chamochi', '洋甘菊': 'chamomile', '洋红色': 'magentapeel', '洋红色': 'magnta', '洋红色_(阿提亚娜)': 'magenta_(atyana)', '洋红色_(洋红色7)': 'magenta_(magenta7)', '洋红色_(字符)': 'magenta_(character)', '洋红色_洋红色': 'magenta_magenta', '洋红色7': 'magenta7', '洋红色毛皮': 'magenta_fur', '洋红色体': 'magenta_body', '洋红色头发': 'magenta_hair', '洋基41': 'yankee41', '洋基队': 'yankee', '洋基酱_(沙沙基)': 'yankee-chan_(shashaki)', '洋介': 'yo-suke', '洋介7390': 'yosuke7390', '洋客': 'yoake', '洋铃': 'yosuzu', '洋马森': 'yanmarson', '洋木': 'yonoki', '洋娘娘': 'yang_niangniang', '洋商': 'yoisho', '洋羽': 'yohane', '洋芋': 'onacia', '洋子': 'yoako', '洋子': 'yomako', '洋作09161': 'yosaku09161', '仰卧': 'supine', '养巢人': 'nestkeeper', '养发': 'hair_raising', '养父': 'adoptive_father', '养老金_z': 'pension_z', '养乐多': 'yakult', '养母': 'adoptive_mother', '养母林': 'yomorin', '养叶新': 'yangyexin', '养育': 'rearing_up', '氧代': 'oxo', '氧合': 'oxykoma', '氧化还原': 'redoxhn', '氧化还原': 'redoxx', '氧化花粉': 'pollenoxide', '氧化铝_(kennmeidesu)': 'alumina_(kennmeidesu)', '氧化物_2': 'oxide_2', '氧气_(0220)': 'oxygen_(0220)', '氧气罐': 'oxygen_tank', '氧气面罩': 'oxygen_mask', '氧气面罩_(氧气面罩233)': 'oxygen_mask_(oxygenmask233)', '氧烷': 'foxyane', '痒年': 'itchyears', '样本': 'sample', '样本': 'saple', '样本': 'semple', '样本水印': 'sample_watermark', '样式_连衣裙': 'pattern_dress', '样式请求': 'style_request', '恙螨': 'chiger', '妖_(妖女_百科)': 'demon_(monster_girl_encyclopedia)', '妖白': 'yohaku', '妖岛': 'youko-shima', '妖根子': 'yoineko', '妖怪': 'kemonon', '妖怪': 'monsterfuzz', '妖怪': 'yeougui', '妖怪': 'yokai', '妖怪_(yokai0401)': 'yokai_(yokai0401)', '妖怪_kusaregedo': 'youkai_kusaregedo', '妖怪垫': 'youkai_pad', '妖怪频道': 'youkai_channel', '妖怪山': 'youkai_mountain', '妖怪手表': 'yo-kai_watch', '妖怪手表': 'youkai_watch', '妖狐': 'thedemonfoxy', '妖花': 'yooka', '妖姬': 'yohi', '妖精': 'demonnyuu', '妖精': 'fairymon', '妖精': 'feyhearts', '妖精': 'foxyghost', '妖精': 'gandergeist', '妖精': 'leprechaun', '妖精': 'xeonomi', '妖精': 'yaoifairy', '妖精': 'yeoru', '妖精_(final_fantasy)': 'goblin_(final_fantasy)', '妖精_(last_origin)': 'leprechaun_(last_origin)', '妖精_(seiken_densetsu_3)': 'faerie_(seiken_densetsu_3)', '妖精xxx': 'yaoifairyxxx', '妖精部落工作室': 'goblinhordestudios', '妖精的尾巴': 'fairy_tail', '妖精公主': 'goblin_princess', '妖精面具': 'goblin_mask', '妖精女孩': 'goblin_girl', '妖精女仆(东方)': 'fairy_maid_(touhou)', '妖精骑士加温_(冰战士)_(命运)': 'fairy_knight_gawain_(ice_warrior)_(fate)', '妖精鲨鱼': 'goblin_shark', '妖精镇': 'goblintown', '妖龙': 'demon_dragon', '妖魔': 'poyadevil', '妖娆': 'onyuuuu', '妖娆': 'voluptuous', '妖娆': 'voluptuousness', '妖娆_女性': 'voluptuous_female', '妖术': 'artdemonslair', '眼镜熊': 'spectacled_bear', '眼镜修女(女主角)': 'glasses_nun_(diva)', '眼科': 'acus', '眼科': 'oryctolagus', '眼眶肌': 'orbitalis', '眼泪': 'tears', '眼泪到头饰': 'tears_to_tiara', '眼皮': 'eyelids', '眼球': 'eyeball', '眼神接触': 'eye_contact', '眼头': 'eyehead', '眼窝': 'eye_socket', '眼雾': 'eye_mist', '眼线笔': 'eyeliner', '眼药水': 'eyedrops', '眼印': 'eye_print', '眼影': 'eyeshadow', '眼罩': 'blinders', '眼罩': 'blindfold', '眼罩': 'eye_mask', '眼罩': 'eye_patch', '眼罩': 'eyemask', '眼罩': 'eyepatch', '眼罩_21': 'eyeshield_21', '眼罩_removed': 'blindfold_removed', '眼罩_比基尼': 'eyepatch_bikini', '眼罩_滑动': 'blindfold_slip', '眼罩拉': 'eyepatch_pull', '眼罩升降机': 'blindfold_lift', '眼罩提升': 'eyepatch_lift', '眼罩移除': 'eyepatch_removed', '眼珠': 'oculama', '眼妆': 'eye_makeup', '演出_(灵魂摇篮)': 'gig_(soul_cradle)', '演讲': 'lecture', '演示': 'deemo', '演示': 'demo', '演说家_(fft)': 'orator_(fft)', '演戏': 'acting', '演员': 'actress', '演员': 'performer', '演员连接': 'actor_connection', '演奏乐器': 'playing_instrument', '演奏小提琴': 'playing_violin', '演奏长笛': 'playing_flute', '鼹鼠_(动物)': 'mole_(animal)', '鼹鼠背上': 'mole_on_back', '鼹鼠鼻': 'mole_on_nose', '鼹鼠臂': 'mole_on_arm', '鼹鼠脖子': 'mole_on_neck', '鼹鼠裆': 'mole_on_crotch', '鼹鼠耳': 'mole_on_ear', '鼹鼠肩': 'mole_on_shoulder', '鼹鼠类人': 'mole_humanoid', '鼹鼠脸颊': 'mole_on_cheek', '鼹鼠猫': 'mole_on_pussy', '鼹鼠屁股': 'mole_on_ass', '鼹鼠屁股': 'mole_on_butt', '鼹鼠蝾螈': 'mole_salamander', '鼹鼠乳房': 'mole_on_breast', '鼹鼠锁骨': 'mole_on_collarbone', '鼹鼠体': 'mole_on_body', '鼹鼠腿': 'mole_on_leg', '鼹鼠胃': 'mole_on_stomach', '鼹鼠眼': 'mole_above_eye', '鼹鼠眼下': 'mole_under_eye', '鼹鼠腋窝': 'mole_on_armpit', '鼹鼠嘴': 'mole_above_mouth', '鼹鼠嘴下': 'mole_under_mouth', '厌恶': 'amaverse', '厌恶': 'disgust', '厌恶雪': 'abomasnow', '厌倦': 'ennuigrl', '厌倦了这个狗屎': 'tired_of_this_shit', '厌女症': 'misogyny', '厌食': 'anorexia', '厌食症': 'anojaa', '厌食症': 'anoroth', '厌食症': 'axtrosis', '厌氧': 'anoa', '厌战_(kancolle)_(cosplay)': 'warspite_(kancolle)_(cosplay)', '砚台': 'inkstone', '咽_(mlp)': 'pharynx_(mlp)', '咽喉痛': 'sorethroat', '咽拭子': 'throat_swabbing', '彦': 'hikora', '彦_(lg612)': 'hiko_(lg612)', '彦_(景观)': 'hiko_(scape)', '彦关': 'hikouseki', '彦前': 'hikobae', '彦山': 'hikosan', '彦寿': 'hikashou', '彦田庄': 'hikataso', '彦星': 'hikoboshi', '彦星_(角色扮演)': 'hikoboshi_(cosplay)', '彦织': 'hihikori', '彦子': 'hichiko', '验尸': 'post-mortem', '验收': 'acceptance', '验证码': 'captcha', '雁派': 'yan_pai', '雁潭': 'nyantan', '焱谷': 'baketsuya', '燕_(minami_haruka)': 'tsubame_(minami_haruka)', '燕达': 'yanda', '燕迪武': 'yandywu', '燕公主': 'princess_yan', '燕麦片': 'oatmealpecheneg', '燕妮': 'yanni', '燕妮芙': 'yennefer', '燕鸥': 'tsubasam', '燕尾服': 'coattails', '燕尾服': 'tailcoat', '燕尾服': 'tuxedo', '燕尾服夹克': 'tuxedo_jacket', '燕尾服猫': 'tuxedo_cat', '燕尾蝴蝶': 'swallowtail_butterfly', '燕窝': 'bird_nest', '燕屋': 'tsubameyado', '燕西军': 'yanxijun', '燕子': 'swallow_zzy', '燕子_(鸟)': 'swallow_(bird)', '燕子熊': 'tragobear', '扬德雷': 'yandere', '扬戈托': 'yanngoto', '扬金根': 'jankingen', '扬科哈罗': 'jankojaro', '扬洛克': 'janrock', '扬梅加': 'yanmega', '扬声器': 'speaker', '扬声器耳朵': 'speaker_ears', '扬斯洛博内霍': 'janslobonejo', '颜色愤怒': 'colorwrath', '颜色跟踪': 'color_trace', '颜色开关': 'color_switch', '颜色连接': 'color_connection', '颜色问题': 'color_issue', '颜色样本': 'color_swatch', '颜色指南': 'color_guide', '颜射': 'bukkake', '颜氏': 'kaomoro', '颜文字': 'kaomoji', '颜文字_(sagor00237)': 'kaomoji_(sagor00237)', '颜乌拉孜': 'yanwulazy', '颜真_(k5142204)': 'yenshin_(k5142204)', '檐': 'eaves', '奄美兰太郎': 'amami_rantarou', '奄美玲子': 'amami_reiko', '奄美神影': 'amami_mikage', '奄奄一息': 'moribuden', '衍射尖峰': 'diffraction_spikes', '衍生作品': 'derivative_work', '掩蔽': 'masking', '掩蔽_(艺术家)': 'masking_(artist)', '掩护': 'behind_cover', '掩码_(标记)': 'mask_(marking)', '掩体': 'bunker', '眼柄': 'eyestalks', '眼袋': 'eye_bags', '眼点': 'eye_spot', '眼点': 'eye_spots', '眼点': 'eyespots', '眼花缭乱': 'azzy', '眼花缭乱': 'eyefuck', '眼假体': 'ocular_prosthetic', '眼睑穿孔': 'eyelid_piercing', '闭着': 'closed', '眼睛_(记忆)': 'eye_(mememem)', '眼睛_狸猫': 'miso_tanuki', '眼睛标记': 'eye_markings', '眼睛大多是闭着的': 'eyes_mostly_closed', '眼睛反射': 'eye_reflection', '眼睛符号': 'eye_symbol', '眼睛模糊': 'eyes_obscured', '眼睛闪烁': 'eye_glint', '眼睛生物': 'eye_creature', '眼睛特写': 'eyes_close-up', '眼睛纹身': 'eye_tattoo', '眼睛小鸟': 'yeyebirdie', '眼镜': 'eyewear', '眼镜': 'glasses', '眼镜': 'spec', '眼镜带': 'eyewear_strap', '眼镜鳄鱼': 'glassesgator', '眼镜挂': 'eyewear_hang', '眼镜盒': 'glasses_case', '眼镜盒': 'nez-box', '眼镜猴': 'tarsier', '眼镜卡帕': 'glasses_kappa', '眼镜开关': 'eyewear_switch', '眼镜拉': 'eyewear_pull', '眼镜日': 'glasses_day', '眼镜蛇': 'cobra', '眼镜蛇': 'cobraja', '眼镜蛇_(动物)': 'cobra_(animal)', '眼镜蛇_(佩鲁兹)': 'cobra_(petruz)', '眼镜蛇_(眼镜蛇_63)': 'cobra_(cobra_63)', '眼镜歪斜': 'glasses_askew', '眼镜王蛇': 'king_cobra', '扬耶娃': 'yangyieva', '羊': 'sheep', '羊': 'sheepd', '羊': 'shep', '羊_(kemono_friends)': 'sheep_(kemono_friends)', '羊_(骗子)': 'sheep_(trickster)', '羊_(我的世界)': 'sheep_(minecraft)', '羊肚菌': 'lamneus', '羊耳朵': 'sheep_ears', '羊和狼': 'sheep_and_wolves', '羊角': 'sheep_horns', '羊角': 'sheepgnyook', '羊角面包': 'croissant', '羊角面包_(arknights)': 'croissant_(arknights)', '羊角面包_(寻求者)_(arknights)': 'croissant_(seeker)_(arknights)', '羊角鲨': 'croisshark', '羊狼': 'sheeporwolf', '羊类人': 'sheep_humanoid', '羊妈妈': 'sheep_mom', '羊毛': 'wool', '羊毛': 'woola', '羊毛': 'woon', '羊毛_(kurokrkr)': 'wool_(kurokrkr)', '羊毛_(miwol)': 'wool_(miwol)', '羊毛_(毛皮)': 'wool_(fur)', '羊毛_(消歧义)': 'wool_(disambiguation)', '羊毛103': 'wool103', '羊毛服装': 'wool_clothing', '羊毛卷': 'woolrool', '羊毛帽': 'woollen_cap', '羊毛饰品': 'sheep_hair_ornament', '羊帽': 'sheep_hat', '羊膜囊': 'amniotic_sac', '脱衣麻将': 'strip_mahjong', '脱衣扑克': 'strip_poker', '脱衣舞': 'stripetease', '脱衣舞': 'striptease', '脱衣舞俱乐部': 'strip_club', '脱衣舞娘': 'stripper', '脱脂': 'skimike', '脱脂狼': 'skimmywolf', '脱脂石': 'demarticusstone', '脱脂糖': 'desligar', '脱作': 'desaku', '陀螺': 'beyblade', '陀螺': 'gyarike', '陀螺': 'gyrodoodle', '陀螺:_burst': 'beyblade:_burst', '陀螺技术': 'gyro_tech', '陀螺仪': 'gyroid', '陀螺仪': 'gyroscope', '陀螺仪': 'gyrotech', '驼峰': 'humping', '驼峰空气': 'humping_air', '驼峰腿': 'humping_leg', '驼鹿': 'moose', '驼鹿_(moosemitchell2)': 'moose_(moosemitchell2)', '驼鹿_(moosu193)': 'moose_(moosu193)', '驼鹿女孩': 'moose_girl', '驼色系': 'tanlines', '鸵鸟': 'ostrich', '鸵鸟_(kemono_friends)': 'ostrich_(kemono_friends)', '鸵鸟羽毛': 'ostrich_feather', '酡': 'flushed', '椭圆形': 'ebippoid', '椭圆形': 'oval', '椭圆形背景': 'oval_background', '唾沫': 'spittle', '唾液': 'saliva', '唾液触手': 'saliva_on_tentacle', '唾液滴': 'saliva_drip', '唾液交换': 'saliva_swap', '唾液水坑': 'saliva_puddle', '唾液字符串': 'saliva_string', '挖_(种)': 'dug_(species)', '挖掘': 'digging', '挖掘出': 'tap_out', '挖掘机': 'diggy', '挖掘机': 'excavator', '挖掘机006': 'digdug006', '挖掘箱': 'digbox', '蛙多': 'frogdor', '蛙吉特': 'froggit', '蛙帽': 'frog_hood', '蛙人': 'frogbians', '蛙蛇': 'frogsnake', '蛙跳': 'leap_frog', '蛙跳位置': 'leapfrog_position', '蛙王': 'kingfrogs', '蛙爪': 'froggiepaws', '娃哈哈': 'waha', '娃娃_(ib)': 'doll_(ib)', '娃娃_(字符)': 'doll_(character)', '娃娃订单': 'dolls_order', '娃娃关节': 'doll_joints', '娃娃化': 'dollification', '娃娃头': 'doll_on_head', '娃娃屋': 'doll_house', '娃娃屋视图': 'dollhouse_view', '娃娃眼': 'doll_eye', '娃娃拥抱': 'doll_hug', '熟食': 'cooked_alive', '熟食': 'cooked_food', '熟食': 'delicatessen', '熟食店': 'delica', '熟食店': 'delirost', '熟食店': 'delisle', '熟食店': 'le_delicatessen', '熟食店_(熟食店)': 'deli_(delirost)', '熟食鸟': 'delibird', '熟悉_(madoka_magica)': 'familiar_(madoka_magica)', '熟悉的': 'familiar', '熟悉的_(赫勒洛斯)': 'familiar_(helelos)', '熟悉的_-_wynn': 'familiar-possessed_-_wynn', '熟悉的圣人': 'familiarsaint', '属': 'genus', '属性': 'xetajts', '属性盗窃': 'attribute_theft', '蜀葵': 'hollyhock', '鼠': 'mouse', '鼠': 'murine', '鼠': 'rat', '鼠': 'wererat', '鼠标': 'mouser', '鼠标_(电脑)': 'mouse_(computer)', '鼠标打印': 'mouse_print', '鼠标垫': 'mousepad', '鼠标垫_(对象)': 'mousepad_(object)', '鼠标垫_(中)': 'mousepad_(medium)', '鼠标垫设计': 'mousepad_design', '鼠标公主': 'mouse_princess', '鼠标孔': 'mouse_hole', '鼠标六': 'mousesix', '鼠标尾': 'mouse_tail', '鼠标选择': 'mousepaw', '鼠标罩': 'mouse_hood', '鼠标指针': 'mouse_pointer', '鼠皇': 'rat_huang', '鼠粮': 'rattfood', '鼠年': 'year_of_the_rat', '鼠人': 'ratfolk', '鼠蛇': 'rat_snake', '鼠兔': 'pika', '鼠兔': 'tm-pika', '鼠兔_(kai9464)': 'pika_(kai9464)', '鼠尾': 'rat_tail', '鼠尾草': 'coyomin', '鼠尾草': 'larid', '鼠尾草': 'myoti', '鼠尾草': 'ratatooey', '鼠尾草': 'rathalos', '鼠尾草': 'rattata', '鼠尾草': 'rymogrime', '鼠尾草': 'sagejwood', '鼠尾草': 'sagezilla', '鼠尾草': 'squellac', '鼠尾草78': 'rattatatus78', '鼠尾草属': 'elvofirida', '鼠小子': 'ratboy', '薯片_(食物)': 'chips_(food)', '薯条': 'fries', '术士': 'warlocke', '术士': 'warlocknyan', '术士_(granado_espada)': 'warlock_(granado_espada)', '术士_(granblue_fantasy)': 'warlock_(granblue_fantasy)', '术士_(ragnarok_online)': 'warlock_(ragnarok_online)', '术士_(世界树)': 'warlock_(sekaiju)', '术士_2_(世界树)': 'warlock_2_(sekaiju)', '束': 'bunches', '束发': 'bunching_hair', '束缚': 'bondage', '束缚': 'cobondage', '束缚': 'fetter', '束缚': 'strapped', '束缚': 'tied_down', '束缚带': 'bondage_straps', '束缚粉丝艺术': 'bondagefanart', '束缚家具': 'bondage_furniture', '束缚裤': 'bondage_pants', '束缚手套': 'bondage_gloves', '束缚手套': 'bondage_mittens', '束缚手套': 'bondage_mitts', '束缚椅': 'bondage_chair', '束腰裙': 'belted_skirt', '束腰外衣': 'tunic', '束腰外衣_(视频游戏)': 'tunic_(video_game)', '树': 'tre', '树': 'tree', '树_13': 'tree_13', '树打印': 'tree_print', '树袋鼠': 'tree-kangaroo', '树干': 'tree_trunk', '树干': 'tree_trunks', '树干': 'trunk', '树干_(解剖)': 'trunk_(anatomy)', '树干_(龙珠)': 'trunks_(dragon_ball)', '树干_(未来)_(龙珠)': 'trunks_(future)_(dragon_ball)', '树干穿孔': 'trunk_piercing', '树根': 'tree_root', '树弓': 'tree_bowbow', '树冠_(森林)': 'canopy_(forest)', '树件': 'treeware', '树精': 'dryad', '树精_(泰拉瑞亚)': 'dryad_(terraria)', '泥': 'mud', '泥_(艺术家)': 'mud_(artist)', '泥产': 'niichan', '泥尘': 'claydust', '泥豆': 'nidou', '泥短奴屋': 'niduannowu', '泥狗': 'nigou', '泥基普兹9': 'mudkipz9', '泥浆': 'mudkip', '泥街': 'nijie', '泥街潭': 'nijie-tan', '泥路': 'dirt_road', '泥面膜': 'mud_mask', '泥摩罗': 'mudamoro', '泥泞的': 'mudkipful', '泥泞的': 'slushy', '泥泞的大师': 'muddy_maestro', '泥鳅': 'mudraptor', '泥鳅': 'quagsire', '泥鲨': 'mudshark', '泥石_(方舟)': 'mudrock_(arknights)', '泥石_(黑曜石)_(方舟)': 'mudrock_(obsidian)_(arknights)', '泥石_(寂静之夜)_(方舟之夜)': 'mudrock_(silent_night)_(arknights)', '泥土覆盖': 'mud_covered', '泥丸': 'niwan', '泥岩': 'niiyan', '泥翼_(wof)': 'mudwing_(wof)', '泥浴': 'mud_bath', '霓虹灯': 'neon_katt', '霓虹灯': 'neon_lights', '螺旋艺术_(艺术家)': 'spiralart_(artist)', '螺旋阴茎': 'spiral_penis', '螺旋战士': 'spiral_warrior', '螺柱': 'studs', '螺柱穿孔': 'stud_piercing', '裸背': 'bare_back', '裸背心': 'naked_vest', '裸奔': 'streaking', '裸绷带': 'naked_bandage', '裸臂': 'bare_arms', '裸表': 'naked_sheet', '裸衬衫': 'naked_shirt', '裸大腿': 'bare_thighs', '裸带': 'naked_belt', '裸吊带': 'naked_suspenders', '裸工作服': 'naked_overalls', '裸狗': 'naked_dogeza', '裸和服': 'naked_kimono', '裸肩': 'bare_shoulders', '裸开衫': 'naked_cardigan', '裸盔甲': 'naked_armor', '裸连帽衫': 'naked_hoodie', '裸领带': 'naked_necktie', '裸领结': 'naked_bowtie', '裸露': 'exposed', '裸露的': 'nudiedoodles', '裸露的斗篷': 'naked_cape', '裸露的牙齿': 'bared_teeth', '裸猫': 'naked_cat', '裸毛巾': 'naked_towel', '裸毛衣': 'naked_sweater', '裸男': 'nude_male', '裸南瓜': 'naked_pumpkin', '裸女': 'nude_female', '裸女型': 'nude_gynomorph', '裸袍': 'naked_robe', '裸屁股': 'bare_butt', '裸漆': 'naked_paint', '裸巧克力': 'naked_chocolate', '裸裙': 'naked_skirt', '裸色带': 'naked_ribbon', '裸蛇': 'naked_snake', '裸树': 'bare_tree', '裸体': 'nude', '裸体_阴阳人': 'nude_intersex', '裸体编辑': 'nude_edit', '裸体的': 'nudelinooo', '裸体斗篷': 'naked_cloak', '裸体封面': 'nude_cover', '裸体过滤器': 'nude_filter', '裸体海滩': 'nude_beach', '裸体夹克': 'naked_jacket', '裸体将军': 'nakedgeneral', '裸体模特': 'nude_modeling', '裸体模特': 'nude_modelling', '裸体披肩': 'naked_capelet', '裸体人': 'nude_human', '裸体人类': 'nude_anthro', '裸体人形': 'nude_humanoid', '裸体实验室外套': 'naked_labcoat', '裸体外': 'nude_outside', '裸体远足': 'nude_hiking', '裸体罩': 'naked_hood', '裸体主义者': 'nudist', '裸腿': 'bare_legs', '裸臀': 'bare_hips', '裸外套': 'naked_coat', '裸围巾': 'naked_scarf', '裸围裙': 'naked_apron', '裸胸': 'bare_breasts', '裸胸': 'bare_chest', '领航': 'piloting', '领环': 'collar_ring', '领夹克': 'collared_jacket', '领角斗篷': 'collared_cape', '领结': 'bow_tie', '领结': 'bowtie', '领结': 'cravat', '领结': 'neck_tied', '领口': 'neck_ruff', '领口': 'neckroo', '领口': 'ruff', '领口提升': 'neckwear_lift', '领口向上': 'collar_up', '领土': 'terito', '领蜥蜴': 'collared_lizard', '领先的天空': 'leadin_the_sky', '领域': 'sphere', '领域mbw': 'realmbw', '领主_(阿梅罗)': 'thane_(armello)', '领主达鲁克': 'lord_daruk', '领主弗劳恩': 'lordflawn', '领主克里奥斯': 'thane_krios', '领子比基尼': 'collared_bikini', '领子标签': 'collar_tag', '领子斗篷': 'collared_capelet', '领子紧身衣': 'collared_leotard', '领子拉': 'collar_pull', '领子连衣裙': 'collared_dress', '领子链': 'collar_chain', '领子拖船': 'collar_tug', '领子外套': 'collared_coat', '领子抓斗': 'collar_grab', '另类': 'offbeat', '另外一个': 'on_another', '另一幅画': 'anotherpic', '另一个_agito': 'another_agito', '另一个xalice': 'anotherxalice', '另一个代码': 'another_code', '另一个故事': 'another_story', '另一个米科内': 'anothermeekone', '另一个玩家': 'anothergamer', '另一个项目': 'another_project', '另一个伊甸园': 'another_eden', '另一种血': 'another_blood', '另一种颜色': 'anothercolouranon', '令和': 'reiwa', '放心': 'rest assured', '令人放心': 'reassuring', '令人敬畏的': 'awesomeerix', '令人毛骨悚然': 'dreepy', '令人毛骨悚然的城堡': 'creepy_castle', '令人毛骨悚然的脸': 'creepy_face', '令人毛骨悚然的嵌合体': 'creepychimera', '令人毛骨悚然的枪': 'creepy_gun', '令人毛骨悚然的苏西': 'creepy_susie', '令人毛骨悚然的微笑': 'creepy_smile', '令人毛骨悚然的眼睛': 'creepy_eyes', '令人毛骨悚然的意大利面': 'creepypasta', '令人难以置信的_ecclesia_the_virtuous': 'incredible_ecclesia_the_virtuous', '令人难以置信的可食用印花布': 'incredibleediblecalico', '令人头晕目眩': 'yuckydizzy', '令人信服的盔甲': 'unconvincing_armor', '令人信服的武器': 'convincing_weapon', '令人兴奋的_动物_(love_live!)': 'exciting_animal_(love_live!)', '令人眼花缭乱': 'snazzamazing', '令人厌恶的': 'dis_astranagant', '令人愉快的': 'dixydelightful', '令人愉快的_fuckable_and_unrefined!!': 'delightfully_fuckable_and_unrefined!!', '令人愉快的闪亮派': 'delightful_shiny_pie', '令人震惊_(艺术家)': 'shocking_(artist)', '令人震惊的': 'shocker', '令人震惊的派对': 'shocking_party', '令人窒息的': 'sutocking', '令人作呕': 'gnauseating', '溜冰': 'ice_skating', '溜冰': 'skating', '溜冰场': 'rinkhet', '溜冰鞋': 'ice_skates', '溜冰鞋': 'roller_skates', '溜冰者': 'skater', '溜溜溜': 'yo_mo', '刘': 'lew', '刘北': 'liu_bei', '刘海': 'bangs', '刘海_(字符)': 'bangs_(character)', '刘肯萨马': 'liukensama', '刘兰': 'liu_lan', '刘茂兴': 'liu_mao_xing', '刘美凡': 'liu_mei_fan', '刘小璐': 'liu_xiaolu', '刘易斯_(glopossum)': 'lewis_(glopossum)', '刘易斯·雷斯蒙德': 'lewis_resmond', '刘易斯胡椒': 'lewis_pepper', '刘易斯枪': 'lewis_gun', '浏览器': 'browser', '浏览器': 'brws', '留。': 'ryuu.', '留村': 'rukitsura', '留壶': 'rutsubo', '留基卡帕': 'riukykappa', '留吉': 'tomekichi', '留兰香_(字符)': 'spearmint_(character)', '留日': 'riuhi', '留声机': 'gramophone', '留声机': 'phonograph', '留声机_miku': 'gramophone_miku', '留苏子': 'rusuko', '留太郎': 'rutarou', '留心': 'ryushin', '留一': 'riuichi', '留置权': 'lien', '留置权内维尔': 'lien_neville', '流': 'a_flow', '流': 'nagare', '流': 'rhyu', '流': 'riu', '流': 'stream', '流_(喷射)': 'flow_(splatoon)', '流鼻涕': 'runny_nose', '流鼻涕': 'snoval', '流鼻涕的睫毛膏': 'runny_mascara', '流鼻血': 'ryunbi', '流比娜': 'nagashi-bina', '流产': 'abortion', '流陈': 'streaming-chan', '流动的水': 'flowing_water', '流动的头发': 'flowing_hair', '流动的鬃毛': 'flowing_mane', '流动服装': 'flowing_clothing', '流放': 'banishment', '流放_(埃洛娜)': 'exile_(elona)', '流放者': 'robinexile', '流格': 'ryugue', '流光': 'streamer', '绫野爱石': 'ayano_aishi', '绫野布罗': 'ayanobro', '绫野梨香': 'ayano_rika', '绫野悠_(sonma_1426)': 'ayano_yuu_(sonma_1426)', '绫野直人': 'ayano_naoto', '绫音_(doa)': 'ayane_(doa)', '绫音_(nagasarete_airantou)': 'ayane_(nagasarete_airantou)', '绫音_(公主连接!)': 'ayane_(princess_connect!)', '绫音_(泳装)_(蓝色档案)': 'ayane_(swimsuit)_(blue_archive)', '绫音鸟': 'ayanakitori', '绫音一条': 'ayane_ichijou', '绫云': 'ayakumo', '绫织织': 'ayateaori', '绫子': 'aako', '绫子': 'ayakashi', '绫子_(twrlare)': 'ayako_(twrlare)', '绫子门': 'ayashimon', '绫子人': 'ayakashibito', '零': 'nil', '零': 'nullo', '零': 'orzero', '零': 'zer0', '零': 'zero', '零_(柯比)': 'zero_(kirby)', '零_(真空)': 'zero_(vavacung)', '零_(字符)': 'zero_(character)', '零1': 'zero1', '零130': 'zero130', '零6': 'zelo6', '零808w': 'zero808w', '零阿木': 'zeroamu', '零背风': 'zelo-lee', '零表1210': 'zerotabi1210', '零仓': 'zerogura', '零城堡': 'zerocastle', '零单元': 'zero_unit', '零点': 'nillith', '零点': 'zero_point', '零二十_(020)': 'zerotwenty_(020)', '零光散': 'zerokosan', '零和': 'zero-sum', '零件': 'component', '零课': 'lesson_zero', '零猫': 'zerocat', '零尼斯': 'zeronis', '零叛军4': 'zer0rebel4', '零呸': 'nullpooo', '零偏移': 'nulloffset', '零七': 'zeroseven', '零前': 'zeroitamae', '零钱包': 'coin_purse', '零区': 'areazero', '零山': 'zeroyama', '零时刻': 'zero_momentai', '零食': 'snack_food', '零食': 'snackable', '零食': 'snacks', '零食饼干': 'snackcracker', '零斯潘达': 'zerospanda', '零斜线': 'zeroslash', '零性': 'zerolativity', '零血': 'zeroblood', '零一': 'zero_one', '零伊利亚': 'zeroillya', '零月': 'zer0ember', '零运动': 'exice-zero', '零之谜': 'nullenigma', '零重力': 'zero_gravity', '零重力': 'zerogravitas', '零主题': 'zero-theme', '零走': 'zero-go', '零尊重机器人': 'zerorespect_bot', '鲮鱼_(azur_lane)': 'dace_(azur_lane)', '领班': 'ringmaster', '领背心': 'collared_vest', '领衬衫': 'collared_shirt', '领带': 'necktie', '领带': 'neckwear', '领带': 'tiea', '领带_请求': 'neckwear_request', '领带_抓斗': 'neckwear_grab', '领带夹': 'tie_clip', '领带口': 'necktie_in_mouth', '领带拉': 'necktie_pull', '烤': 'roast', '烤': 'roasted', '烤_(库马利诺)': 'roast_(kumalino)', '烤饼': 'scone', '烤河比': 'yakihebi', '烤鸡肉串': 'yakitori', '烤鸡肉串_(oni)': 'yakitori_(oni)', '烤鸡肉串_(yakitori06)': 'yakitori_(yakitori06)', '烤鸡腿': 'roast_chicken_leg', '烤老虎鱼(genshin_impact)': 'grilled_tiger_fish_(genshin_impact)', '烤鳗鱼': 'grilled_eel', '烤面包': 'toasty', '烤面包机': 'toaster', '烤面包机_(武器)': 'toaster_(arms)', '烤面包机_aaa': 'toaster_aaa', '烤面包军团': 'legionoftoast', '烤奶酪': 'grilled_cheese', '烤盘': 'bakeware', '烤盘': 'baking_sheet', '烤盘': 'baking_tray', '烤盘': 'griddle', '烤肉': 'bakemonoy', '烤肉': 'kib', '烤肉': 'roti', '烤肉': 'yakiniku', '烤肉87': 'yakinasu87', '烤肉串': 'kebab', '烤肉串': 'kebaboishii', '烤肉店': 'rotisserie', '烤肉犬': 'yakinikuinu', '烤手!!_日本': 'yakitate!!_japan', '烤树子': 'kaoshuzi', '烤土豆': 'baked_potato', '烤吐': 'roasting_spit', '烤吐司': 'baketsumuri', '烤吐司': 'burnt-toast', '烤物语': 'bakemonogatari', '烤箱': 'oven', '烤箱': 'ovens', '烤箱': 'toaster_oven', '烤箱': 'xoven', '烤箱手套': 'oven_mitts', '烤野木': 'bakedanooki', '烤鱼': 'grilled_fish', '烤玉米': 'grilled_corn', '靠背': 'leaning_back', '靠背车': 'leaning_against_vehicle', '靠边': 'leaning_on_edge', '靠边': 'leaning_to_side', '靠边': 'leaning_to_the_side', '靠垫抓斗': 'cushion_grab', '靠近': 'near', '靠墙': 'against_wall', '靠墙': 'leaning_on_wall', '靠人': 'leaning_on_person', '靠在': 'leaning_on', '靠在家具上': 'leaning_on_furniture', '靠在栏杆上': 'leaning_on_railing', '靠在另一个': 'leaning_on_another', '靠在扫帚上': 'leaning_on_broom', '靠在手臂上': 'leaning_on_arm', '靠在弯头上': 'leaning_on_elbow', '靠在弯头上': 'leaning_on_elbows', '靠着摩托车': 'leaning_against_motorcycle', '靠自己': 'leaning_on_self', '苛刻': 'demanding', '苛刻的mallowz': 'harsh-mallowz', '苛性蜡笔': 'caustic_crayon', '聚光灯': 'spotlights', '聚会': 'parrying', '聚集': 'gathers', '聚居': 'juju', '聚乐': 'polyle', '聚铝': 'juralumin', '聚四氟乙烯': 'tefec', '聚糖': 'glycan', '聚喜胡姬': 'juhi-huji', '捐款': 'donation', '捐赠警报': 'donation_alert', '捐赠驱动器': 'donation_drive', '捐赠箱': 'donation_box', '捐赠信息': 'donation_message', '捐助者0217': 'donar0217', '卷边': 'cu-rim', '卷饼': 'capuccinichan', '卷尺': 'tape_measure', '卷发': 'curled_hair', '卷发': 'curls', '卷发': 'curly_hair', '卷发': 'curlypie', '卷发': 'hair_tucking', '卷发': 'prehensile_hair', '卷发': 'wavy_hair', '卷发器': 'curlers', '卷发器': 'hair_rollers', '卷乐': 'makioraku', '卷毛': 'juanmao', '卷毛1997': 'juanmao1997', '卷起的阴茎': 'tucked_penis', '卷起来': 'rolled_up', '卷起来的裤子': 'rolled_up_pants', '卷起袖子': 'rolled_up_sleeves', '卷起纸': 'rolled_up_paper', '卷曲': 'curl', '卷曲': 'curled', '卷曲': 'curly', '卷曲的眉毛': 'curly_eyebrows', '卷曲的舌头': 'curled_tongue', '卷曲的手指': 'curled_fingers', '卷取': 'coiling', '卷取_另一个': 'coiling_another', '卷寿司': 'makizushi', '卷筒': 'cirrel', '卷兔': 'nakiusagi', '卷尾': 'coiled_tail', '卷尾猴': 'capuchin_monkey', '卷线': 'coiled_cord', '卷心菜': 'cabbage', '卷心菜软': 'cabbage_soft', '卷星': 'volsar', '卷须': 'tendril', '卷须': 'tendrils', '卷原泉': 'makihara_izumi', '卷云狐': 'cirruskitfox', '卷轴': 'leels', '卷轴_(riru)': 'reel_(riru)', '撅嘴': 'pouting', '锯齿': 'sawsbuck', '锯齿虎': 'jagdtiger', '锯齿剑': 'jagged_sword', '锯齿鹿_(冬季)': 'sawsbuck_(winter)', '锯齿鹿_(秋天)': 'sawsbuck_(autumn)', '锯齿鹿_(夏季)': 'sawsbuck_(summer)', '锯齿目': 'sawarame', '锯齿尾': 'jagged_tail', '锯齿线': 'jaggy_lines', '锯齿形_(弹簧)': 'sawsbuck_(spring)', '锯齿状': 'crenelations', '锯齿状': 'jag_ging', '锯齿状': 'jaggiekant', '锯齿状': 'serratia', '锯齿状的': 'jagged', '锯齿状的牙齿': 'jagged_teeth', '锯齿状的嘴': 'jagged_mouth', '锯渡_(佐渡)': 'sawatari_(sado)', '锯断霰弹枪': 'sawed-off_shotgun', '锯公里': 'sawkm', '锯末': 'sawade', '锯木工_(铁鸟)': 'sawyer_(ferobird)', '锯木工_snax': 'sawyer_snax', '锯木架': 'sawhorse', '锯木匠_(pokemon_masters_ex)': 'sawyer_(pokemon_masters_ex)', '锯木林娜': 'sawaki_rinna', '锯片': 'saw_blade', '锯片': 'sawblade', '锯片_(艺术家)': 'sawblade_(artist)', '锯切cls': 'sawch_cls', '锯切刀': 'saw_cleaver', '锯太郎_(roto)': 'sawatarou_(roto)', '锯田码头': 'sawada_marina', '锯薇005': 'sawwei005', '锯尾': 'sawao', '锯原_(starligtvision)': 'sawara_(starligtvision)', '锯原65': 'sawara65', '锯原花人': 'sawarakajin', '聚苯乙烯泡沫塑料': 'styrofoam', '聚丙烯酸酯': 'polyacryla', '聚到一起': 'drawn_together', '聚光灯': 'catchlight', '聚光灯': 'spotlight', '噘': 'pout', '噘嘴': 'pouting_lips', '噘嘴': 'pouty', '决定': 'determined', '决斗': 'duel', '决斗爱': 'duel_love', '决斗磁盘': 'duel_disk', '决斗大师': 'duel_masters', '决斗高达': 'duel_gundam', '决斗怪物': 'duel_monster', '决斗头像': 'duel_avatar', '诀窍': 'knick_knack', '觉察': 'kyakya', '觉生': 'kakyuusei', '觉悟': 'kyameta', '觉醒_(17769498)': 'akizuki_(17769498)', '觉醒_(sennen_sensou_aigis)': 'awakening_(sennen_sensou_aigis)', '觉醒_miki': 'awakened_miki', '觉醒的狗': 'awakeningdog', '觉知': 'dormin-kanna', '绝': 'zetsumu', '绝不会放弃你': 'never_gonna_give_you_up', '绝地': 'jedi', '绝地武士': 'jedi_knight', '绝豆': 'zetsumame', '绝对': 'absol', '绝对_每个人': 'absolutely_everyone', '绝对_一切': 'absolutely_everything', '绝对的欲望': 'a.b._lust', '绝对二重奏': 'absolute_duo', '绝对伏特加': 'absolut_vodka', '绝对火力': 'jueduihuoli', '绝对领土': 'absolute_territory', '绝对马巴克': 'absolutemabbak', '绝对梦想': 'absolutedream', '绝对艺术': 'absolum_art', '绝肯': 'zekken', '绝命毒师': 'breaking_bad', '绝热': 'zetsuboucchi', '绝杀大师_(地狱猎手)': 'loremaster_(helltaker)', '绝望': 'despair', '绝望': 'desperation', '绝望': 'despuntater', '绝望': 'desspie', '举起': 'lifted', '举起': 'lifting_up', '举起拳头': 'raised_fist', '举起拳头': 'raised_fists', '举起武器': 'lifted_by_arms', '举起武器': 'raised_arms', '举手': 'hand_up', '举手': 'hands_up', '举手': 'raised_hand', '举行_烟花': 'holding_fireworks', '举行沙滩球': 'holding_beachball', '举重': 'weightlifting', '榉坂46': 'keyakizaka46', '巨北灿': 'jubei-chan', '巨齿鲨': 'megalodon', '巨虫': 'giant_insect', '巨大': 'gigantic', '巨大的': 'giant', '巨大的': 'huge_ahoge', '巨大的': 'kolossal', '巨大的_(艺术家)': 'enormous_(artist)', '巨大的_0330': 'huge_0330', '巨大的aerola': 'huge_aerola', '巨大的moobs': 'huge_moobs', '巨大的smot': 'huger_smot', '巨大的大小差异': 'huge_size_difference', '巨大的洞穴蘑菇': 'giantcavemushroom', '巨大的耳机': 'humagear_headphones', '巨大的二头肌': 'huge_biceps', '巨大的非洲': 'huge_afro', '巨大的腹肌': 'huge_abs', '巨大的肛门': 'huge_anus', '巨大的肛门珠': 'huge_anal_beads', '巨大的睾丸': 'gigantic_testicles', '巨大的睾丸': 'huge_testicles', '巨大的肱桡肌': 'huge_brachioradialis', '巨大的龟头': 'huge_glans', '巨大的肌肉': 'huge_muscle', '巨大的肌肉': 'huge_muscles', '巨大的假阳具': 'huge_dildo', '巨大的角': 'huge_horns', '巨大的脚': 'huge_feet', '巨大的节肢动物腹部': 'huge_arthropod_abdomen', '巨大的结': 'huge_knot', '巨大的睫毛': 'huge_eyelashes', '巨大的锯齿': 'huge_serratus', '巨大的喇叭': 'huge_horn', '巨大的奶头': 'huge_teats', '巨大的尿布': 'huge_diaper', '巨大的屁股': 'huge_butt', '巨大的鞘': 'huge_sheath', '巨大的倾斜': 'huge_obliques', '巨大的球': 'huge_balls', '巨大的屈肌卡皮': 'huge_flexor_carpi', '巨大的乳房': 'huge_udders', '巨大的乳头': 'huge_nipples', '巨大的乳晕': 'huge_areola', '巨大的三角肌': 'huge_deltoids', '巨大的三头肌': 'huge_triceps', '巨大的渗透': 'huge_penetration', '巨大的四边形': 'huge_quads', '巨大的头': 'huge_head', '巨大的头发': 'huge_hair', '巨大的凸起': 'huge_bulge', '巨大的臀部': 'huge_hips', '巨大的尾巴': 'huge_tail', '巨大的文件大小': 'huge_filesize', '巨大的武器': 'huge_weapon', '巨大的小牛': 'huge_calves', '巨大的斜方肌': 'huge_trapezius', '巨大的胸肌': 'huge_pecs', '巨大的胸锁乳突肌': 'huge_sternocleidomastoid', '巨大的耀斑': 'huge_flare', '巨大的阴蒂': 'huge_clitoris', '巨大的阴茎': 'gigantic_penis', '巨大的阴茎': 'huge_penis', '巨大的娱乐': 'humongous_entertainment', '巨大的嘴唇': 'huge_lips', '巨带': 'juudai', '巨弓': 'huge_bow', '巨精子': 'giant_sperm', '巨狼77': 'megawolf77', '巨龙': 'chiroron', '巨龙': 'draconder', '巨龙': 'dragonith', '巨龙': 'dragonmassiel', '巨龙': 'galidor-dragon', '巨龙': 'giganotosaurus', '巨龙': 'jludragoon', '巨蟒': 'skerpent', '巨猫': 'giant_cat', '巨魔': 'giant_monster', '婚纱': 'Wedding Dress', '巨魔_(呆在家里)': 'troll_(homestuck)', '巨魔_(电影)': 'trolls_(film)', '巨魔_(魔兽)': 'troll_(warcraft)', '巨魔的脸': 'troll_face', '巨魔的脸': 'trollface', '巨魔猎人': 'Wedding Dress', '巨人': 'colossus', '巨人的影子': 'shadow_of_the_colossus', '居维': 'cuvie', '居中': 'sentret', '居住': 'jiroo', '居住': 'live', '居住者': 'inhabituels', '驹城': 'komashiro', '驹次郎': 'komajiro', '驹根': 'komane', '驹形': 'komagarita', '驹泽_(fmn-ppp)': 'komasawa_(fmn-ppp)', '驹治郎': 'komajirou', '鞠躬': 'bowing', '局外人_0': 'outsider_0', '桔梗': 'lisianthus', '菊草': 'hikusa', '菊池_(xpoz)': 'kikuchi_(xpoz)', '菊池诚': 'kikuchi_makoto', '菊池道高': 'kikuchi_michitaka', '菊池恐鸟': 'kikuchi_moa', '菊池梦': 'kikuchi_yume', '菊池泰': 'kikuchi_tae', '菊池洋子': 'kikuchi_youko', '菊川_雪野': 'kikukawa_yukino', '菊川纪彦': 'kikukawa_norihiko', '菊花': 'anthiea', '菊花': 'chrysanthemum', '菊花_(工作!!)': 'daisy_(working!!)', '菊花火车': 'daisy_train', '菊花链': 'daisy_chain', '菊花拳': 'kikouken', '菊苣': 'aethrus', '菊苣': 'chiiririn', '菊雷': 'kikurage', '菊人': 'kikujin', '菊石': 'ammonite', '菊田': 'kikuta', '菊丸文太': 'kikumaru_bunta', '菊纹': 'kikumon', '菊野屋': 'kikunoya', '离谱': 'Smile, sad,frown', '菊一文字': 'kikuichi_monji', '菊月': 'kikugetsu', '菊月_(kancolle)': 'kikuzuki_(kancolle)', '菊月太郎': 'kikuzuki_tarou', '菊之助丸': 'kikunosukemaru', '菊子_(kazu)': 'kikuko_(kazu)', '橘+3': 'kitsu+3', '橘猫': 'orange_cat', '橘永': 'tachibanaei', '橘子': 'mandarin_orange', '橘子': 'orangette', '橘子': 'orangina', '橘子包': 'orange_bag', '橘子肚': 'orange_belly', '橘子龟头': 'orange_glans', '橘子果酱': 'marmalademum', '橘子酱': 'marmaladica', '橘子酱_妈妈': 'marmalade_mum', '橘子脸': 'orange_face', '橘子脸颊': 'orange_cheeks', '橘子蜜柑': 'orange_mikan', '橘子屁股': 'orange_butt', '橘子树': 'orange_tree', '橘子晚会': 'orangesoiree', '橘子先生': 'mrsorange', '橘子胸': 'orange_chest', '橘子驯服': 'orangetaming', '咀嚼': 'chewing', '咀嚼': 'chewtle', '咀嚼_(908026270)': 'tsuioku_(908026270)', '咀嚼草': 'chewing_grass', '咀嚼玩具': 'chew_toy', '咀嚼玩具': 'chewtoy', '咀马': 'zuima', '咀子': 'tsuizi', '沮丧': 'depression', '沮丧的': 'frustrated', '沮丧的': 'upset', '矩形地毯': 'rectangle_rug', '矩形瞳孔': 'rectangular_pupils', '矩阵': 'matixcs', '矩阵': 'the_matrix', '矩阵': 'trix', '矩阵16': 'matrix16', '韭葱': 'leek', '酒': 'liquiir', '酒': 'liquor', '酒_(2148_酒)': 'wine_(2148_wine)', '酒吧': 'bar', '酒吧': 'bars', '酒吧1': 'bar1', '酒吧前台': 'bar_counter', '酒吧椅子': 'bar_stool', '酒保': 'barman', '酒杯': 'drinking_glass', '酒杯': 'shot_glass', '酒厂': 'swinery', '酒店': 'hotel', '酒店': 'shotel', '酒店_大和': 'hotel_yamato', '酒店_黄昏': 'hotel_dusk', '酒店01': 'hotel01', '酒馆': 'pub', '酒馆': 'teavern', '酒鬼': 'alcoholic', '酒壶': 'hip_flask', '酒酱': 'vinesauce', '酒精': 'acmeholic', '酒精': 'alcohol', '酒精_(冷锋)': 'alcohol_(coldfront)', '酒精灌肠': 'alcohol_enema', '酒精饮料': 'alcoholic_drink', '酒井人': 'sakai_jin', '酒廊': 'alcoholrang', '酒名茜': 'sakenomi_akane', '酒瓶': 'liquor_bottle', '酒瓶': 'wine_bottle', '酒神': 'ataruman', '酒石': 'nephthys', '酒坛': 'ryoutan', '酒窝': 'dimple', '酒窝': 'rimentus', '酒窝': 'soubriquetrouge', '酒窝_of_venus': 'dimples_of_venus', '酒屋313': 'sakaya313', '酒友': 'sakebuotoko', '酒瓒_(159cm)': 'wine-chan_(159cm)', '酒子': 'sakeko', '酒醉': 'drulttur', '酒醉画布': 'tipsycanvas', '旧的': 'anientte', '旧金山': 'san_francisco', '旧世界毒蛇': 'old_world_viper', '旧野桑': 'jiuyesang', '臼杵': 'usushira', '臼川': 'usukawa', '臼津': 'usakotsu', '臼井': 'usurai', '臼井拓海': 'usui_takumi', '臼井幸': 'usui_sachi', '臼井研': 'usuiken', '臼里': 'usyuuri', '臼太郎': 'usatarou', '救恩': 'salvation', '救护车': 'ambulance', '救济金': 'dole', '救龙者': 'dragonsaviour', '救命!_my_dad_fucked_my_boyfriend': 'help!_my_dad_fucked_my_boyfriend', '救生圈': 'life_preserver', '救生圈': 'lifebuoy', '救生圈_装饰品': 'lifebuoy_ornament', '救生衣': 'life_jacket', '救生衣': 'life_vest', '救生员': 'lifeff', '救生员': 'lifeguard', '救生员': 'lifesaver', '救生员': 'marsonaut', '救生员_yuze': 'lifeguard_yuze', '救生员_泳装': 'lifeguard_swimsuit', '救生员椅子': 'lifeguard_chair', '金地': 'kyandii', '金的': 'goldeen', '金蒂': 'kinty', '金钉子': 'gold_nails', '金豆金': 'kingdoujin', '金毒': 'kimtoxic', '金杜鲁': 'kyanduru', '金多': 'gindo', '金多QQ': 'goldendoqqs', '金多克斯特': 'kingdorkster', '金多鲁': 'kondoru', '金多罗': 'gindoro', '金耳环': 'gold_ear_ring', '金耳环': 'gold_earring', '金耳环': 'gold_earrings', '金发碧眼的胡子': 'blonde_beard', '金发碧眼的眉毛': 'blonde_eyebrows', '金发狐狸': 'blondefoxy', '金发亮点': 'blonde_highlights', '金发毛皮': 'blond_fur', '金发女郎': 'blonde_pubes', '金发女郎': 'blonde_pubic_hair', '金发女郎': 'blondynkitezgraja', '金发女郎_(okpriko)': 'blonde_girl_(okpriko)', '金发女郎_(popooka)': 'blonde_girl_(popopoka)', '金发女郎_(sumiyao)': 'blonde_girl_(sumiyao)', '金发': 'Yellow hair', '金发女郎_(伊藤)': 'blonde_girl_(itou)', '金发女郎马尾辫女孩(mdf_an)': 'blonde_ponytail_girl_(mdf_an)', '金发鬃毛': 'blonde_mane', '金峰0430': 'jinfeng0430', '金斧': 'golden_axe', '金斧_(武器)': 'golden_axe_(weapon)', '金富士': 'kinfuji', '金刚': 'king_kong', '网吧': 'Many computer houses', '金刚_(奇数蜗牛)': 'geumgang_(odd_snail)', '金刚博士': 'dr_emery', '金刚杵_(granblue_fantasy)': 'vajra_(granblue_fantasy)', '金刚杵_(对象)': 'vajra_(object)', '金刚杵_(夏天)_(granblue_fantasy)': 'vajra_(summer)_(granblue_fantasy)', '金刚达': 'jagonda', '金刚狼': 'wolverine', '金刚狼_(kemono_friends)': 'wolverine_(kemono_friends)', '金刚狼_(惊奇)': 'wolverine_(marvel)', '金刚老师': 'kongou_sensei', '金刚石': 'kongouseki', '金刚鹦鹉': 'macaw', '金戈船长': 'captainjingo', '金谷机人': 'jinguuji_ren', '金冠': 'gold_crown', '金罐': 'gold_can', '金光': 'auric', '金光你': 'goldlightyou', '金光闪闪': 'bling', '金龟子': 'scarabaeid', '金哈苏': 'kinhasu', '金合欢': 'acacia', '金合欢': 'acacia_prium', '金合欢_(ashcozy)': 'acacia_(ashcozy)', '金红石_(houseki_no_kuni)': 'rutile_(houseki_no_kuni)', '金狐狸': 'goldenfox', '金华城': 'kinkajou', '金黄花': 'chrysolophus', '金黄色葡萄球菌': 'aureus', '金婚': 'golden_marriage', '金鸡': 'konchiki', '金基瓦斯': 'kinkivas', '金吉': 'gingie', '金吉德_韶年': 'jinjide_shaonian', '金吉苏': 'chingisu', '金角': 'gold_horns', '金脚链': 'gold_anklet', '金杰罗': 'kinjero', '金杰纳尔': 'kingjnar', '金捷豹': 'kingjaguar', '金界': 'kingjion', '金金': 'kingin', '金津木': 'kintsugi', '金晶玉': 'jinjing-yu', '金菊': 'kongiku', '金锯': 'king_saw', '金卡': 'gimka', '金卡德': 'kincade', '金凯': 'kincaid', '金凯基': 'kinkaikii', '金科拉': 'kincora', '金壳鸡': 'goldcrustedchicken', '金可能': 'kim_possible', '金克斯': 'jynx', '假面骑士诞生': 'kamen_rider_birth', '假面骑士恶魔': 'kamen_rider_demons', '假面骑士恶习': 'kamen_rider_vice', '假面骑士抚子': 'kamen_rider_nadeshiko', '假面骑士鬼': 'kamen_rider_ghost', '假面骑士黑色': 'kamen_rider_black', '假面骑士基瓦': 'kamen_rider_kiva', '假面骑士加伦': 'kamen_rider_garren', '假面骑士加速': 'kamen_rider_accel', '假面骑士剪刀': 'kamen_rider_scissors', '假面骑士进化': 'kamen_rider_evol', '假面骑士军刀(系列)': 'kamen_rider_saber_(series)', '假面骑士军刀': 'kamen_rider_saber', '假面骑士骷髅': 'kamen_rider_skull', '假面骑士老虎': 'kamen_rider_tiger', '假面骑士零二': 'kamen_rider_zero-two', '假面骑士零一': 'kamen_rider_zero-one', '假面骑士流星': 'kamen_rider_meteor', '假面骑士龙牙': 'kamen_rider_ryuga', '假面骑士马赫': 'kamen_rider_mach', '假面骑士男爵': 'kamen_rider_baron', '假面骑士骑士': 'kamen_rider_knight', '假面骑士强': 'kamen_rider_stronger', '假面骑士驱动器': 'kamen_rider_drive', '假面骑士鳃': 'kamen_rider_gills', '假面骑士三角洲': 'kamen_rider_delta', '假面骑士圣杯': 'kamen_rider_chalice', '假面骑士十年': 'kamen_rider_decade', '假面骑士双': 'kamen_rider_double', '假面骑士向导': 'kamen_rider_wizard', '假面骑士小丑': 'kamen_rider_joker', '假面骑士邪恶': 'kamen_rider_evil', '假面骑士亚马逊': 'kamen_rider_amazon', '假面骑士亚马逊': 'kamen_rider_amazons', '假面骑士野兽': 'kamen_rider_beast', '假面骑士永恒': 'kamen_rider_eternal', '假面骑士勇敢': 'kamen_rider_brave', '假面骑士斩月': 'kamen_rider_zangetsu', '假面骑士之刃': 'kamen_rider_blade', '假面骑士追逐者': 'kamen_rider_chaser', '假面骑士佐': 'kamen_rider_zo', '假面骑士佐达': 'kamen_rider_zolda', '假名': 'furigana', '假名': 'p-kana', '假名': 'pseudonymous', '假名_(fire_emblem)': 'kana_(fire_emblem)', '假名_(haibane)': 'kana_(haibane)', '假名_(ironkongstudios)': 'kana_(ironkongstudios)', '假名_(kuua)': 'kana_(kuaua)', '假名_(kwbr)': 'kana_(kwbr)', '假名_(ky4696)': 'kana_(ky4696)', '假名_(maple926)': 'kana_(maple926)', '假名_(okitasougo222)': 'kana_(okitasougo222)', '假名_(user_rkuc4823)': 'kana_(user_rkuc4823)', '假名_(火徽)_(男)': 'kana_(fire_emblem)_(male)', '假名_(火徽)_(女)': 'kana_(fire_emblem)_(female)', '假名616': 'kana616', '假名雪野': 'kana_yukino', '假名章子': 'kana_tako', '假期': 'holiday', '假期': 'holidays', '假期': 'vacation', '假钱': 'fake_money', '假情绪': 'fakeveelution', '假人': 'anikifaux', '假人_(传说之下)': 'dummy_(undertale)', '假日_(菠萝蜜)': 'holiday_(pangjelly)', '假日0606': 'holiday0606', '假日试纸': 'holidaydipstick', '假日消息': 'holiday_message', '假日小狗': 'holidaypup', '假日装扮': 'holiday_dressed', '假声_(suite_precure)': 'falsetto_(suite_precure)', '假体': 'parupome', '假体': 'prosthesis', '假天线': 'fake_antennae', '假尾巴': 'fake_tail', '假文本': 'faux_text', '假膝': 'falseknees', '假想的朋友': 'imaginary_friend', '假小子': 'tomboy', '假笑': 'false_smile', '假血': 'fake_blood', '假牙': 'dentures', '假阳具': 'dildo', '假阳具插入': 'dildo_insertion', '假阳具面具': 'dildo_mask', '假阳具舔': 'dildo_lick', '假阳具线束': 'dildo_harness', '假阴茎': 'pseudo-penis', '假阴茎穿透': 'pseudo-penis_penetration', '假肢': 'false_limb', '假肢': 'prosthetic', '假肢': 'prosthetic_limb', '假肢手': 'prosthetic_hand', '假肢手臂': 'prosthetic_arm', '假肢腿': 'prosthetic_leg', '假指甲': 'fake_nails', '假装': 'pretending', '价': 'valence', '价格': 'price', '晾衣服': 'Airing clothes', '价格': 'prishe', '价格_(戴维斯0527dx)': 'akitsu_(davis0527dx)', '价格_(口袋妖怪)': 'pryce_(pokemon)', '价格标签': 'price_tag', '价位表': 'price_list', '价值': 'valefor', '价值22': 'valiance22', '价值精神': 'valdgeist', '活泼~': 'brisky~', '活泼岛': 'livly_island', '活泼的': 'rayliicious', '活泼的': 'rissy', '活泼的': 'spizzy', '活泼的': 'viverrid', '活泼的': 'zappy', '活泼的灰色': 'snappygrey', '活泼的屁股': 'perky_butt', '活泼的石灰': 'frisky-lime', '活泼的野兔': 'peppy_hare', '活枪': 'livegun', '活塞': 'piston', '活塞环': 'piston_ring', '活生生的': 'viven', '活生生的': 'vivigator', '活生生的': 'vivivoovoo', '活生生的英雄': 'live-a-hero', '活体': 'vivio', '活页夹': 'ring_binder', '活着': '5alive', '火': 'fire', '火_(洗脸盆)': 'nina_(lavabath)', '火步': 'firestrot', '火柴': 'matches', '火柴棍': 'matchstick', '火柴盒': 'matchbox', '学习': 'Lying on the table with a pen to write on', '火柴人': 'matchesyashi', '做作业': 'Lying on the table with a pen to write on', '写字': 'Lying on the table with a pen to write on', '火柴人www': 'stickmanwww', '火柴子': 'matchaneko', '火车': 'train', '火车_(服装)': 'train_(clothing)', '火车_(艺术家)': 'train_(artist)', '火车_90': 'train_90', '火车司机': 'train_conductor', '火车位置': 'train_position', '火车站': 'train_station', '火成岩_(mlp)': 'igneous_rock_(mlp)', '火地人': 'firelander', '火风暴六': 'firestormsix', '火斧': 'fire_axe', '火光': 'firelight', '火锅': 'fondue', '火锅': 'gohpot', '火锅': 'hotpot', '火锅': 'lokpik', '火锅': 'nabe', '火锅': 'potchi', '火锅_(flowerimh)': 'fondue_(flowerimh)', '火锅盒': 'nabe-box', '火海狸': 'flamingbeaver', '火红的': 'redfiery', '火狐': 'blazethefox', '火狐': 'bonfirefox', '火狐': 'dgfox', '火狐': 'firefox', '火狐': 'flarefox', '火狐': 'vulkin', '火花': 'fire_flower', '火花': 'spark', '火花': 'sparkle', '火花': 'sparks', '火花': 'sparkychu', '火花:_a_space_tail': 'spark:_a_space_tail', '火花_(火花)': 'spark_(sparkitty)', '火花_(口袋妖怪)': 'spark_(pokemon)', '火花_(桑德罗)': 'spark_(sandro)', '火花_99': 'sparks_99', '火花621': 'spark621', '火花x': 'sparkx', '清洗海绵': 'cleaning sponge', '洗车': 'washing the car', '修理家电': 'repairing household appliances', '剪草': 'mowing the lawn', '整理花园': 'tidying up the garden', '照顾宠物': 'taking care of pets', '做饭': 'cooking meals', '买菜': 'grocery shopping', '付账单': 'paying bills', '维修房屋': 'repairing the house', '装修房屋': 'renovating the house', '清理垃圾桶': 'cleaning the trash bin', '定期消杀': 'regular disinfection', '除虫': 'pest control', '搬家': 'moving', '冲洗': 'rinsing', '拖地': 'mopping the floor', '扫地': 'sweeping the floor', '擦窗户': 'cleaning windows', '洗衣服': 'doing laundry', '熨衣服': 'ironing clothes', '整理衣柜': 'organizing the wardrobe', '换床单': 'changing bed sheets', '打扫卫生间': 'cleaning the bathroom', '清理厨房': 'cleaning the kitchen', '倒垃圾': 'taking out the garbage', '收拾房间': 'tidying up the room', '除尘': 'dusting', '清洗马桶': 'cleaning the toilet', '擦洗家具': 'cleaning furniture', '抹布': 'cloth rag', '家务分工': 'division of household labor', '晾干': 'air drying', '擦干': 'wiping dry', '碗柜': 'dish cabinet', '清洗流程': 'washing process', '餐具消毒': 'tableware disinfection', '用水量': 'water usage', '环保': 'environmental protection', '火花抽奖': 'sparkdraws', '火花里昂3': 'sparklyon3', '火花数据库': 'sparkydb', '火花艺术': 'sparkittyart', '火花之星': 'sparksstars', '火鸡': 'sturkey', '火鸡': 'turkey', '火鸡_(wonderturkey)': 'huoji_(wonderturkey)', '火鸡_(食物)': 'turkey_(food)', '火鸡肉': 'turkey_meat', '火鸡腿': 'turkey_leg', '火剑': 'fire_sword', '火箭': 'rocket', '火箭草坪椅': 'rocket-lawnchair', '火箭冲床': 'rocket_punch', '火箭发动机': 'rocket_engine', '火箭发射器': 'rocket_launcher', '火箭飞船': 'rocket_ship', '火箭咕噜': 'rocket_grunt', '火箭浣熊': 'rocket_raccoon', '火箭浣熊': 'rocketraccoon', '火箭狼': 'rocketwolfy', '火箭骑士冒险': 'rocket_knight_adventures', '火箭少女': 'rocket_girls', '火箭少女': 'rocketgirl', '火箭筒_(高达)': 'bazooka_(gundam)', '抑郁': 'sad', '火箭靴': 'rocket_boots', '火箭芝': 'rocketshibaa', '火炬': 'flaerion', '火炬': 'flareon', '火炬': 'torch', '火炬': 'torchic', '火炬龙': 'flarethedragon', '火炬手': 'torchembers', '火辣辣的': 'flamey', '手': 'hand', '火狼': 'firewolf', '火力': 'firepower', '火力': 'firez', '火炼金术士': 'fire_alchemist', '火烈鸟': 'flamingo', '火烈鸟': 'flaminhotcheatoes', '火烈鸟': 'flammars', '火烈鸟': 'fyrien', '火烈鸟': 'kflamingo', '火烈鸟': 'pyronica', '火烈鸟_(eme324)': 'flamingo_(eme324)', '火龙果': 'dragon_fruit', '火龙兽': 'flamedramon', '火龙庄': 'hotaryuso', '火炉': 'stove', '灰脚趾': 'grey_toes', '灰烬': 'ashesg', '灰烬': 'cinderace', '灰烬的故事(系列)': 'tales_of_the_ashes_(series)', '灰颈': 'grey_neck', '灰壳': 'grey_shell', '灰框眼镜': 'grey-framed_eyewear', '灰蓝工作室': 'graybluestudios', '灰狼': 'gray.wolf', '灰狼': 'grey_wolf', '灰狼': 'grypwolf', '灰狼5': 'ashwolves5', '灰脸': 'grey_face', '灰脸': 'greyface', '灰鬣狗': 'greasyhyena', '灰领': 'grey_collar', '灰鹿角': 'grey_antlers', '灰猫': 'graycatluna', '灰猫': 'grey_cat', '灰玫瑰': 'grey_rose', '灰媒体': 'ashmedia', '灰蒙': 'greymon', '灰蒙蒙': 'overcast', '灰膜': 'grey_membrane', '灰泥': 'stucco', '灰皮君': 'greypidjun', '灰屁股': 'grey_butt', '灰墙': 'grey_wall', '灰鲭鲨': 'mako_shark', '灰球': 'grey_balls', '灰色': 'greey', '灰色': 'griseo', '灰色_(命运)': 'gray_(fate)', '灰色_(字符)': 'grey_(character)', '灰色T恤': 'grey_t-shirt', '灰色包': 'grey_bag', '灰色包皮': 'grey_foreskin', '灰色背景': 'grey_background', '灰色背心': 'grey_vest', '灰色比基尼': 'grey_bikini', '灰色标记': 'grey_markings', '灰色缠腰布': 'grey_loincloth', '灰色衬衫': 'grey_shirt', '灰色触手': 'grey_tentacles', '灰色穿孔': 'grey_piercing', '灰色地板': 'grey_floor', '灰色的': 'grayllust', '灰色的': 'thegreyzen', '灰色的毛衣': 'grey_sweater', '灰色斗篷': 'grey_cloak', '灰色短裤': 'grey_shorts', '灰色耳机': 'grey_headphones', '灰色服装': 'grey_clothing', '灰色夹克': 'grey_jacket', '灰色紧身衣': 'grey_leotard', '灰色袴': 'grey_hakama', '灰色裤子': 'grey_pants', '灰色盔甲': 'grey_armor', '灰色连裤袜': 'grey_pantyhose', '灰色连帽衫': 'grey_hoodie', '灰色连衣裙': 'grey_dress', '灰色领带': 'grey_necktie', '灰色毛皮': 'grey_fur', '灰色毛衣背心': 'grey_sweater_vest', '灰色帽子': 'grey_hat', '灰色眉毛': 'grey_eyebrows', '灰色内裤': 'grey_panties', '灰色内衣': 'grey_underwear', '灰色披肩': 'grey_shawl', '灰色皮肤': 'grey_skin', '灰色裙子': 'grey_skirt', '灰色乳晕': 'grey_areola', '灰色纱笼': 'grey_sarong', '灰色手套': 'grey_gloves', '灰色手套': 'grey_mittens', '灰色睡衣': 'grey_pajamas', '灰色丝带': 'grey_ribbon', '灰色套装': 'grey_suit', '灰色天空': 'grey_sky', '灰色天线': 'grey_antennae', '灰色条纹': 'grey_stripes', '灰色头盔': 'grey_helmet', '灰色头饰': 'grey_headwear', '灰色外骨骼': 'grey_exoskeleton', '灰色外套': 'grey_coat', '灰色围巾': 'grey_scarf', '灰色围裙': 'grey_apron', '灰色文本': 'grey_text', '灰色武器': 'grey_arms', '灰色胸罩': 'grey_bra', '灰色袖子': 'grey_sleeves', '灰色靴子': 'grey_boots', '灰色眼镜': 'grey_eyewear', '灰色眼镜': 'grey_glasses', '灰色羊毛': 'grey_wool', '灰色影响': 'gray_impact', '灰色泳装': 'grey_swimwear', '灰色长袍': 'grey_robe', '灰色褶边': 'grey_frill', '灰色枕头': 'grey_pillow', '灰色主题': 'grey_theme', '灰舌': 'grey_tongue', '灰手': 'grey_hands', '灰手指': 'grey_fingers', '灰兽': 'graybeast', '灰松鼠': 'grey_squirrel', '灰蹄': 'grey_hooves', '灰体': 'grey_body', '灰天': 'gray-day', '灰瞳': 'grey_pupils', '灰头': 'grey_head', '灰头飞狐': 'grey-headed_flying_fox', '灰头土脸的': 'ashraely', '灰腿': 'grey_legs', '灰袜子': 'grey_socks', '灰尾': 'ashentail', '灰尾': 'grey_tail', '灰鞋': 'grey_shoes', '灰心艺术': 'graysheartart', '灰胸': 'grey_chest', '灰熊': 'gray_bear', '灰熊': 'grizard', '灰熊': 'grizz', '灰熊': 'grizzlesbear', '灰熊': 'grizzlygus', '灰熊_(wbb)': 'grizzly_(wbb)', '灰熊34': 'grizzlyear34', '灰眼': 'grey_eyes', '灰翼': 'grey_wings', '灰阴茎': 'grey_penis', '灰鹰': 'haitaka', '灰原爱': 'haibara_ai', '灰原绫子': 'haibara_ayako', '灰原赛卡': 'haibarasaika', '灰原咲也': 'haibara_sakuya', '灰约德尔': 'grey-yordle', '灰爪': 'grey_claws', '灰爪': 'grey_talons', '灰爪子': 'grey_paws', '灰指甲': 'grey_fingernails', '灰指甲': 'grey_nails', '灰鬃毛': 'grey_mane', '挥动': 'whike', '挥动手臂': 'waving_arm', '挥手': 'waving', '挥手': 'waving_hand', '挥舞': 'brandish', '挥舞': 'brandishing', '挥舞': 'flailing', '挥舞_(h_manga)': 'brandish_(h_manga)', '海盗_(世界树)': 'pirate_(sekaiju)', '画面背景': 'pirapirapirapira', '海盗船': 'pirate_ship', '海盗船_(最终幻想)': 'corsair_(final_fantasy)', '海盗服装': 'pirate_costume', '海盗狐狸': 'piratefoxbox', '海盗帽': 'pirate_hat', '海盗旗': 'jolly_roger', '海盗鹰': 'pirate_eagle', '海盗之助': 'piranosuke', '海盗装': 'pirate_outfit', '海道斯': 'hydaus', '海德': 'hyde', '海德堡': 'hydrabb', '海德恩': 'heidern', '海德薇': 'hedwig', '海登_(解决)': 'hayden_(solfies)', '海登麦肯齐': 'hayden_mackenzie', '海底': 'ocean_floor', '海底': 'seabed', '海底总动员': 'finding_nemo', '海蒂': 'haydee', '海蒂_(方舟)': 'heidi_(arknights)', '海蒂_(海蒂)': 'haydee_(haydee)', '海蒂_(灰色_全部)': 'heidi_(gray_all)', '海恩斯': 'hayanse', '海尔': 'hael', '海尔': 'hiore', '海尔2': 'haeil2', '海尔皮': 'hyilpi', '海菲茨': 'heifetz', '海芬': 'haefen', '海风_(azur_lane)': 'umikaze_(azur_lane)', '海风_(kancolle)': 'umikaze_(kancolle)', '海风_(kancolle)_(cosplay)': 'umikaze_(kancolle)_(cosplay)', '海风_(mlp)': 'seabreeze_(mlp)', '海风629': 'seabreeze629', '海风网3': 'umikazenet3', '海夫': 'seafh', '海弗林': 'hyflin', '海港公主': 'seaport_princess', '海港公主_(角色扮演)': 'seaport_princess_(cosplay)', '海哥': 'seago', '海格格': 'hygogg', '海格蓬': 'higeepon', '海怪': 'sea_monster', '海怪': 'seamonsterping', '海龟': 'sea_turtle', '海海绵': 'sea_sponge', '海海山': 'hoihoi-san', '海鸡': 'sea_chicken', '海基鱼': 'haikeiyu', '海角_(mlp)': 'promontory_(mlp)', '海角堡': 'cape_hold', '海进': 'haijin', '海景': 'seascape', '海景房': 'beach_house', '海军': 'navy', '海军': 'navy-san', '海军_(海军蓝)': 'navy_(navy.blue)', '海军矿井': 'naval_mine', '海军陆战队': 'kriegsmarine', '海军陆战队': 'marines', '海军陆战队': 'navitaserussirus', '海军陆战队2': 'marinemarines2', '海军毛皮': 'navy_fur', '海军旗': 'naval_flag', '海军上将_(kancolle)_(cosplay)': 'admiral_(kancolle)_(cosplay)', '海军上将_(warship_girls_r)': 'admiral_(warship_girls_r)', '海军上将_(坎科尔)': 'admiral_(kancolle)', '海军上将龙虾': 'admiralobster', '海军上将码头': 'grand_admiral_marina', '海军上将位置': 'rear_admiral_position', '海军制服': 'naval_uniform', '海卡': 'haika', '海卡': 'heika', '海卡拉': 'heikala', '海卡泽': 'hyucaze', '海康': 'hicane', '海科米': 'hekomii', '海克尼科': 'hekeniko', '海克斯技术': 'hexteknik', '海克斯利卡': 'hexelica', '海肯': 'heiken', '海葵': 'anemonemisc', '海葵': 'nemone', '海葵': 'sea_anemone', '海葵_(flower_knight_girl)': 'anemone_(flower_knight_girl)', '海葵_(花)': 'anemone_(flower)', '海葵_(尤里卡七)': 'anemone_(eureka_seven)', '海蛞蝓': 'nudibranch', '海蛞蝓': 'sea_slug', '海拉': 'sea_la', '海拉_p': 'hella_p', '贡巴达': 'kumbartha', '贡巴老哥': 'gongba_laoge', '贡邦': 'gompang', '贡贝': 'gombay', '贡贝拉': 'goombella', '贡比': 'gombee', '贡德': 'gond', '贡德普': 'gomdepp', '贡东德街': 'gundongdejie', '贡多拉(spurdo)': 'gondola_(spurdo)', '贡多拉': 'gondola', '贡多拉_(模因)': 'gondola_(meme)', '贡多里': 'gundori', '贡多姆': 'gondom', '贡格雷夫': 'gungrave', '贡公子': 'gogongzid', '贡哈': 'gongha', '贡卡塔': 'gunkata', '贡朗': 'gomrang', '贡纳尔': 'gunnar', '贡内科': 'gunneko', '贡尼亚': 'gunya', '贡品_(贡品)': 'tribute_(tributism)', '贡奇昌': 'gomchichan', '贡斯特': 'gonster', '贡塘': 'gomtang', '贡孜': 'gomzi', '贡佐泽佩利': 'gonzozeppeli', '勾': 'gou', '勾拳': 'uppercut', '勾手': 'goushou', '勾书': 'goushu', '勾小指': 'pinky_swear', '勾心斗角': 'catfight', '佝偻病': 'ricket', '沟': 'sulcus', '沟': 'trench', '沟壑': 'gully', '沟壑': 'ravine', '沟壑_(字符)': 'gully_(character)', '沟崎': 'mizonaki', '沟通者': 'communicator', '钩': 'hook', '钩喙': 'hooked_beak', '钩手': 'hook_hand', '钩尾': 'hooktail', '钩牙_(httyd)': 'hookfang_(httyd)', '钩针编织': 'crochet', '钩子': 'hooki', '钩子穿透': 'hook_penetration', '篝火': 'bonfire', '篝火_(篝火狐)': 'bonfire_(bonfirefox)', '篝火_(黑暗之魂)': 'bonfire_(dark_souls)', '篝火_(屠夫)': 'bonfire_(buttocher)', '篝火恶魔': 'bonfiredemon', '狗': 'd-dog', '狗': 'dog', '狗': 'dogg', '狗:_bullets_&_carnage': 'dogs:_bullets_&_carnage', '狗_(shiba_inu)_(kemono_friends)': 'dog_(shiba_inu)_(kemono_friends)', '狗宝宝': 'doggiemonkey', '狗鼻子': 'dog_nose', '狗伯特': 'dogbert', '狗城': 'dog_city', '狗床': 'dog_bed', '狗的风格': 'doggystyle', '狗堆': 'dogpile', '狗耳朵': 'dog_ears', '狗富士15': 'dogfuji15', '狗公主': 'dog_princess', '狗狗': 'dogdogbhh', '狗狗34476335': 'doggo34476335', '狗狗狗': 'dogdogdog', '狗狗咖啡': 'doggycoffee', '狗狗万万': 'dogdogwanwan', '狗聚雨': 'goujuyu', '狗粮': 'dog_food', '狗帽': 'dog_hat', '狗面具': 'dog_mask', '狗牡丹': 'goumudan', '狗男孩': 'dog_boy', '狗年': 'year_of_the_dog', '狗女孩': 'dog_girl', '狗牌': 'dog_tags', '狗屁': 'dogrot', '狗肉丸': 'doggomeatball', '狗山': 'dog-san', '狗屎': 'gohanduck', '狗屎臭鼬': 'shit-tier-skunk', '狗屎邮报': 'shitpost', '狗头': 'dog_hood', '狗头': 'dogbit', '狗头人': 'kobold', '狗头人_(5e)': 'kobold_(5e)', '狗头人_(monster_girl_encyclopedia)': 'kobold_(monster_girl_encyclopedia)', '狗头人_(魔兽)': 'kobold_(warcraft)', '狗头人_女孩_(冰川清除)': 'kobold_girl_(glacierclear)', '狗头人德拉特': 'kobold_dellarte', '狗头人公主': 'kobold_princess', '狗头人猎户座': 'kobold_orion', '狗头人冒险': 'kobold_adventure', '狗头人任务': 'kobold_quest', '狗头人小偷': 'kobold_thief', '狗拖鞋': 'dog_slippers', '狗玩具': 'dog_toy', '狗尾': 'dog_tail', '狗窝': 'doghouse', '狗窝': 'kennel', '狗液': 'dogfluid', '狗印': 'dog_print', '狗鱼': 'dogxfish', '狗仔': 'doggadee', '狗仔队': 'paparazzi', '狗爪子': 'dog_paws', '狗猪28472': 'dogpig28472', '枸杞': 'coffinberry', '枸杞': 'dativyrose', '宫前孔蛋白': 'miyamae_porin', '宫三郎': 'gonzaburou', '宫山': 'miyama-san', '宫善': 'miyazen', '宫水_四叶': 'miyamizu_yotsuha', '宫水光叶': 'miyamizu_mitsuha', '宫太郎': 'miyotarou', '宫藤美奈': 'miyafuji_miina', '宫田_(lhr)': 'miyata_(lhr)', '宫田华尔兹': 'miyata_waltz', '宫廷': 'courtains', '宫丸': 'miyamaru', '宫屋': 'miyamoya', '宫下': 'miyashita', '宫下爱': 'miyashita_ai', '宫小路_mizuho': 'miyanokouji_mizuho', '宫小早': 'gongxiao_zao', '宫须': 'miyasutou', '宫宇': 'miyao_yu', '宫园川里': 'miyazono_kawori', '宫原': 'miyuara', '宫原拓哉': 'miyahara_takuya', '宫月': 'miyagekko', '宫月': 'palavenmoons', '宫越': 'gupunetsu', '宫泽_雪野': 'miyazawa_yukino', '宫泽绿': 'miyazawa_midori', '宫长崎': 'miyanaga_saki', '宫之子': 'miyanokoko', '宫中': 'miyachu', '恭介': 'konsuke', '恭介': 'kyowosuke', '恭弥赛4423': 'kyouyasai4423', '恭一': 'kyouichi', '恭子': 'kyonko', '巩膜_(小行星病)': 'sclera_(asteroid_ill)', '巩膜科': 'scleriteaeaeaggadah', '汞': 'mercuria', '汞_(元素)': 'mercury_(element)', '汞合金': 'amalgam', '拱': 'arch', '拱背': 'arched_back', '拱道': 'archway', '拱廊': 'akkoarcade', '拱廊': 'arcade', '拱神': 'archshen', '拱位': 'arch_position', '拱形天花板': 'vaulted_ceiling', '拱形鞋底': 'arched_soles', '共产主义': 'communism', '共灯人': 'copinlighter', '共和党大象': 'republican_elephant', '共和党人': 'republican', '共混物': 'sowat-blend', '共立一': 'kyoriichi', '共鸣艺术': 'remonoart', '共平': 'kyohei', '共荣': 'kyoeiki', '共生': 'symbiotic', '共生体': 'symbiote', '共识转换': 'consensual_transformation', '共同的': 'togetic', '富士见': 'fujisee', '富士葵': 'fuji_aoi', '富士门': 'fujimon', '富士泉': 'fuji_izumi', '富士忍': 'fuji_shinobu', '富士山': 'fuji-san', '富士山': 'mount_fuji', '富士山岚': 'fujiyama_arashi', '富士通': 'fushitasu', '富士通继': 'fuji_tsugu', '富士学坊': 'fujigakubou', '富士野梦': 'fuji_noyume', '富塔巴夫': 'futabaaf', '富塔里贝亚': 'futaribeya', '富塔洛娃': 'futalova', '富塔洛娃1': 'futalova1', '富塔皮': 'futapi', '富特蒙特': 'fultemounte', '富特西': 'furtshi', '富维': 'fuvi', '富文': 'tomifumi', '富吾艺术': 'fuwuart', '富英雄': 'tomihero', '富有': 'riche', '富有表现力的头发': 'expressive_hair', '富有表现力的衣服': 'expressive_clothes', '富泽恩': 'fuzeyeen', '腹部': 'belly', '腹部穿孔': 'abdominal_piercing', '腹部地面': 'belly_on_ground', '腹部阀门': 'belly_valve', '腹部挤压': 'belly_squeeze', '腹部拉伸': 'abdominal_stretch', '腹部膨胀': 'belly_expansion', '腹部驼峰': 'belly_hump', '腹部纹身': 'tattoo_on_belly', '腹部悬垂': 'belly_overhang', '腹部悬吊': 'suspended_by_belly', '腹部肿胀': 'abdomen_swell', '腹侧槽': 'ventral_groove', '腹侧鳞片': 'ventral_scales', '腹齿兽': 'gastrodon', '腹带': 'cummerbund', '腹地': 'ventress', '腹地': 'ventrexian', '腹股沟': 'groin', '腹股沟攻击': 'groin_attack', '腹股沟肌腱': 'groin_tendon', '腹肌': 'abs', '腹肌': 'hyper_belly', '腹甲': 'plastron', '腹腔肌': 'ventricosus', '腹痛': 'stomach_ache', '腹泻': 'diarrhea', '腹语术': 'ventriloquism', '腹胀': 'abdominal_bulge', '腹胀': 'belly_inflation', '腹足类': 'gastropod', '腹足类壳': 'gastropod_shell', '腹足类人形动物': 'gastropod_humanoid', '蝮蛇': 'pit_viper', '覆盖': 'cover', '激烈': 'fierce', '覆盖': 'covering_up', '覆盖': 'overlay', '覆盖': 'overwritten', '覆盖_(封面)': 'couvert_(kishibe)', '覆盖_in_goo': 'covered_in_goo', '覆盖鼻子': 'covering_nose', '覆盖层': 'overlay_layer', '粉科纳': 'powderkona', '粉库': 'pinkuh', '粉末': 'powder', '粉末_(奥术)': 'powder_(arcane)', '粉扑': 'c-puff', '粉扑': 'powder_puff', '粉扑': 'puffphox', '粉扑和斜线袖子': 'puff_and_slash_sleeves', '粉色mm': 'pinkmm', '粉色的微笑': 'pink_slime', '粉色毛衣': 'pink_sweater', '粉色毛衣背心': 'pink_sweater_vest', '粉色内衣': 'pink_lingerie', '粉色裙子': 'pink_skirt', '粉丝': 'fanboy', '粉丝': 'fanf', '粉丝': 'fans', '粉丝': 'fansl', '粉丝': 'fansub', '粉丝_(20110507)': 'fan_(20110507)', '粉丝角色': 'fan_character', '粉丝漫画': 'fan_comic', '粉丝书': 'fanbook', '粉苏山': 'fensu-san', '粉碎': 'crushing', '粉碎': 'shattered', '粉碎': 'smash', '粉碎': 'smashing', '粉碎_微': 'crushed_micros', '粉碎大作': 'smash_daisaku', '粉碎的对象': 'crushed_object', '粉碎垫': 'smashmat', '粉碎法': 'chonmage', '粉碎粉碎': 'crush_crush', '粉碎罐头': 'crushed_can', '粉碎昆塔123': 'smashcuenta123', '粉碎梅尔': 'smashmael', '粉碎鸟': 'smashbeaw', '粉碎球': 'smash_ball', '粉碎渲染': 'smashingrenders', '粉碎邀请': 'smash_invitation', '粉碎者': 'shatteter', '奋邦老大': 'fen_bang_laoda', '奋仁磊': 'fen_renlei', '粪贝': 'dungbae', '粪便': 'feca', '粪便': 'fecharis', '粪便': 'scat', '粪便堆': 'feces_pile', '粪甲虫': 'dung_beetle', '粪菌': 'faefaea', '愤怒': 'fu_r_y', '愤怒': 'furiae', '愤怒': 'fury', '愤怒_(fma)': 'wrath_(fma)', '愤怒_(kuroodod)': 'wrath_(kuroodod)', '愤怒_(rojiura)': 'rage_(rojiura)', '愤怒_(电影)': 'fury_(movie)', '愤怒_(改变命运)': 'wrath_(changing_fates)', '芬兰': 'finland', '芬兰_(黑塔利亚)': 'finland_(hetalia)', '芬兰军队': 'finnish_army', '芬兰斯皮茨': 'finnish_spitz', '芬兰语文本': 'finnish_text', '芬里': 'fenrih', '芬里尔': 'fenrirr', '芬里尔': 'r-fenrir', '芬里尔骑士': 'fenrir_knight', '芬里克': 'fenrik', '芬里斯64': 'fenris64', '芬里沃尔芬': 'fenrirwolfen', '芬里兹278': 'fenriz278', '芬纳': 'phenna', '芬内金': 'fennekin', '芬内科': 'fenneko', '芬尼': 'fenni', '芬尼根里昂哈特': 'finnegan_lyonhardt', '芬尼克': 'finnick', '芬尼克斯': 'ffenics', '芬诺索': 'fenoxo', '芬奇': 'phinci', '芬维': 'finvi', '芬辛汀': 'fizintine', '芬园': 'fimyuan', '氛围_联觉': 'ambience_synesthesia', '坟场转移': 'graveyardshift', '坟墓_(传奇联盟)': 'graves_(league_of_legends)', '坟墓_(笑)': 'graves_(lol)', '坟墓领主尼托': 'gravelord_nito', '坟墓狮鹫': 'grave_gryphon', '坟墓行者': 'gravewalker', '焚化炉': 'incineroar', '鼢鼠': 'zardoseus', '粉笔': 'chalk', '粉笔_(oc)': 'chalk_(oc)', '粉笔勾画': 'chalk_outline', '粉笔盒': 'box-of-chalk', '粉笔墨': 'pastel_ink', '粉彩': 'pastel', '粉彩': 'pastelcore', '粉彩': 'pasteljam', '粉彩': 'pastelpastel', '粉彩': 'pastels', '粉彩': 'pasutel', '粉彩_(双蜂)': 'pastel_(twinbee)', '粉彩_(艺术品)': 'pastel_(artwork)', '粉彩_(中)': 'pastel_(medium)', '恶毒的': 'hoshiful', '恶毒的': 'maleficent', '恶毒的': 'marenlicious', '恶毒的': 'parooty', '恶毒的': 'purmoral', '恶毒的': 'rancidious', '恶毒的': 'thelousy', '恶毒的': 'villainous', '恶毒的': 'viperious', '恶毒的': 'vulpesvant', '恶毒的狗头人领主': 'illfang_the_kobold_lord', '恶毒的小猫': 'vicious_kitty', '恶吠': 'illbarks', '恶搞': 'delfucko', '恶搞': 'spoo', '恶鬼': 'foulmonster', '恶棍': 'drakthug', '恶棍': 'scamp', '恶棍_(系列)': 'villainous_(series)', '恶棍缪斯': 'villainous_muse', '恶海': 'jakkai', '恶魂': 'ghast', '恶魂_(osiimi)': 'ghast_(osiimi)', '恶魂_(我的世界)': 'ghast_(minecraft)', '恶灵': 'evil-sprite', '恶龙': 'dracony', '恶龙': 'thefoxydragon', '恶梦': 'nightmare', '恶梦框架': 'knightmare_frame', '恶魔': 'asuraa', '恶魔': 'cacodemon', '恶魔': 'ddevil', '恶魔': 'demiveemon', '恶魔': 'demon', '恶魔': 'demonk', '恶魔': 'devimon', '恶魔': 'dkdevil', '恶魔': 'fel', '恶魔': 'monodevil', '恶魔': 'sephrendemon', '恶魔': 'shieradevil', '恶魔': 'vonderdevil', '恶魔_(02030108)': 'demon_(02030108)', '恶魔_(housamo)': 'devil_(housamo)', '恶魔_(monster_girl_encyclopedia)': 'devil_(monster_girl_encyclopedia)', '恶魔_(艾斯之剑)': 'demonio_(elsword)', '恶魔_(石像鬼)': 'demona_(gargoyles)', '恶魔_(艺术家)': 'devilbeing_(artist)', '恶魔_hs': 'devil_hs', '恶魔_ii:_maou_to_sannin_no_joou': 'demonion_ii:_maou_to_sannin_no_joou', '恶魔69': 'demona69', '恶魔jho_(盔甲)': 'deviljho_(armor)', '恶魔-v': 'devil-v', '恶魔般的': 'demonic', '恶魔城': 'castlevania', '恶魔城:_aria_of_sorrow': 'castlevania:_aria_of_sorrow', '恶魔城:_circle_of_the_moon': 'castlevania:_circle_of_the_moon', '恶魔城:_dawn_of_sorrow': 'castlevania:_dawn_of_sorrow', '恶魔城:_harmony_of_despair': 'castlevania:_harmony_of_despair', '恶魔城:_harmony_of_dissonance': 'castlevania:_harmony_of_dissonance', '恶魔城:_lament_of_innocence': 'castlevania:_lament_of_innocence', '恶魔城:_legacy_of_darkness': 'castlevania:_legacy_of_darkness', '恶魔城:_order_of_ecclesia': 'castlevania:_order_of_ecclesia', '恶魔城:_portrait_of_ruin': 'castlevania:_portrait_of_ruin', '恶魔城:_rondo_of_blood': 'castlevania:_rondo_of_blood', '恶魔城:_symphony_of_the_night': 'castlevania:_symphony_of_the_night', '恶魔城_(Netflix)': 'castlevania_(netflix)', '恶魔法师': 'demon_mages', '恶魔服装': 'demon_costume', '恶魔服装': 'devil_costume', '恶魔高达': 'devil_gundam', '恶魔核心': 'demon_core', '恶魔皇家': 'demon_royal', '恶魔祸害_(机甲)': 'demonbane_(mecha)', '恶魔角': 'demon_horns', '恶魔库什': 'demonkussh', '恶魔库兹': 'devilukez', '恶魔蓝龙': 'devilbluedragon', '恶魔力量_(艾斯之剑)': 'demon_power_(elsword)', '恶魔怜悯': 'devil_mercy', '恶魔恋人': 'diabolik_lovers', '恶魔猎犬_(魔兽)': 'felhound_(warcraft)', '恶魔猎人_(魔兽)': 'demon_hunter_(warcraft)', '恶魔猎手': 'demon_hunter', '恶魔领主雷森': 'demonlordraizen', '恶魔领主龙巴兹': 'demon_lord_dragon_batzz', '恶魔洛': 'devil_lo', '恶魔马里奥': 'diabolic-mario', '恶魔牧师': 'demon_cleric', '恶魔男孩': 'demon_boy', '恶魔女孩': 'demon_girl', '恶魔女神': 'ladydevimon', '恶魔破坏者': 'devil_breaker', '恶魔乔': 'deviljho', '恶魔人': 'demon-man', '恶魔人': 'devilman', '恶魔人_(角色)': 'devilman_(character)', '恶魔人_(系列)': 'devilman_(series)', '恶魔人_crybaby': 'devilman_crybaby', '恶魔人形': 'demon_humanoid', '恶魔杀手(地牢和战斗机)': 'demon_slayer_(dungeon_and_fighter)', '恶魔杀手': 'demon_slayer', '恶魔杀手制服': 'demon_slayer_uniform', '恶魔使者': 'devil_bringer', '恶魔术士_(角色)': 'demonancer_(character)', '恶魔司机': 'demons_driver', '恶魔塔': 'demontower', '恶魔天使': 'demon_on_angel', '恶魔尾巴': 'demon_tail', '恶魔小马': 'demon_pony', '恶魔幸存者': 'devil_survivor', '恶魔幸存者2': 'devil_survivor_2', '恶魔野兽': 'demon_beast', '恶魔游行': 'demon_parade', '恶魔召唤师': 'devil_summoner', '等离子_(lilo_and_stitch)': 'plasmoid_(lilo_and_stitch)', '等离子chan_(kancolle)': 'plasma-chan_(kancolle)', '等离子步枪': 'plasma_rifle', '等离子冲击波': 'plasma_blaster', '等离子咕噜声': 'plasma_grunt', '等离子剑': 'plasma_sword', '等离子枪': 'plasma_gun', '等离子切割机': 'plasma_cutter', '等离子体': 'plasma', '等渗': 'isotonix', '等腰的': 'isosceless', '等腰三角形_(xyzxyzxyz)': 'isosceles_triangle_(xyzxyzxyz)', '等足类动物': 'isopod', '邓拜恩': 'dunbine', '邓德格': 'dumderg', '邓恩': 'dunn', '邓恩史密斯': 'dunn_smith', '邓肯': 'dunkin_kk', '邓肯_(k-9)': 'duncan_(k-9)', '邓肯_(kitfox_crimson)': 'duncan_(kitfox_crimson)', '邓肯_(黑暗护士)': 'duncan_(dark_nurse)', '邓肯罗': 'duncan_roo', '邓默': 'dunmer', '邓塞尼加克': 'dunceneygak', '邓斯坦': 'dunstan', '邓斯坦马歇尔': 'dunstanmarshall', '凳子': 'stool', '瞪羚': 'gazelle', '瞪羚_(动物城)': 'gazelle_(zootopia)', '瞪羚耳朵': 'gazelle_ears', '瞪羚角': 'gazelle_horns', '瞪羚尾': 'gazelle_tail', '低绑头发': 'low_tied_hair', '低保真': 'lo-fi', '低比特率': 'low_bitrate', '低编织': 'low_braid', '低辫长发': 'low-braided_long_hair', '等离子_(lilo_and_stitch)': 'plasmoid_(lilo_and_stitch)', '等离子chan_(kancolle)': 'plasma-chan_(kancolle)', '等离子步枪': 'plasma_rifle', '等离子冲击波': 'plasma_blaster', '等离子咕噜声': 'plasma_grunt', '等离子剑': 'plasma_sword', '等离子枪': 'plasma_gun', '等离子切割机': 'plasma_cutter', '等离子体': 'plasma', '等渗': 'isotonix', '等腰的': 'isosceless', '等腰三角形_(xyzxyzxyz)': 'isosceles_triangle_(xyzxyzxyz)', '等足类动物': 'isopod', '邓拜恩': 'dunbine', '邓德格': 'dumderg', '邓恩': 'dunn', '邓恩史密斯': 'dunn_smith', '邓肯': 'dunkin_kk', '邓肯_(k-9)': 'duncan_(k-9)', '邓肯_(kitfox_crimson)': 'duncan_(kitfox_crimson)', '邓肯_(黑暗护士)': 'duncan_(dark_nurse)', '邓肯罗': 'duncan_roo', '邓默': 'dunmer', '邓塞尼加克': 'dunceneygak', '邓斯坦': 'dunstan', '邓斯坦马歇尔': 'dunstanmarshall', '焦虑': 'tremble, gasp, clench fists', '沮丧': 'silence, bow head, sigh', '恐惧': 'shudder, stare, scream', '幸福': 'smile, dance, rejoice', '失落': 'sigh, slump, gaze off', '孤独': 'hunch, lower gaze, look away', '疲惫': 'rub eyes, yawn, slump', '快乐': 'laugh, clap, jump for joy', '失望': 'shake head, frown, exhale deeply', '悲伤': 'tear up, bury face in hands, sniffle', '愁闷': 'stare off, purse lips, furrow brow', '嫉妒': 'narrow eyes, clench fists, grit teeth', '羞耻': 'blush, look away, cover face', '无助': 'sigh, slump, shake head', '挫败': 'hang head, clench jaw, look down', '紧张': 'bite lip, wring hands, fidget', '恶心': 'cover mouth, grimace, gag', '烦躁': 'tap foot, clench jaw, drum fingers', '困惑': 'scratch head, furrow brow, squint eyes', '绝望': 'flop down, bury face in hands, sigh deeply', '懊恼': 'pace back and forth, clench fists, grit teeth', '压力': 'rub temples, close eyes, take a deep breath', '焦灼': 'bite nails, pace back and forth, sweat profusely', '愧疚': 'hang head, look away, rub back of neck', '恼怒': 'clap hands, stomp feet, grit teeth', '失眠': 'toss and turn, stare at ceiling, groan', '无聊': 'sigh deeply, slump shoulders, roll eyes', '不安': 'bite lip, wring hands, look around nervously', '担忧': 'furrow brow, bite lip, wring hands', '嘲讽': 'smirk, raise eyebrow, shake head', '傲慢': 'cross arms, stand tall, look down on', '冷漠': 'blank expression, no emotional response, ignore', '自卑': 'hunch shoulders, avoid eye contact, speak softly', '着迷': 'wide eyes, fixed gaze, smile', '骄傲': 'stand tall, chin up, smile confidently', '羡慕': 'admiring gaze, restrained smile, nod approvingly', '喜爱': 'soft smile, warm tone, gentle touch', '狂喜': 'jump up and down, scream, cry tears of joy', '羞涩': 'lower gaze, bite lip, blush', '奋斗': 'clench fists, grit teeth, never give up', '沉思': 'furrow brow, stare off, deep in thought', '幽默': 'laughing eyes, mischievous grin, playful tone', '决心': 'set jaw, determined look, take action', '怀疑': 'arch eyebrow, furrow brow, squint eyes', '失误': 'slap forehead, let out a groan, shake head', '后悔': 'let out a heavy sigh, shake head, look remorseful', '感激': 'smile warmly, say "thank you", give a hug', '害怕': 'wide eyes, trembling voice, shaking hands', '狂怒': 'yell, stomp feet, clench fists', '忧虑': 'wrinkled brow, biting lip, furrowing brow', '警觉': 'narrowed eyes, tense muscles, heightened awareness', '镇静': 'steady breathing, calm expression, relaxed posture', '挣扎': 'gritting teeth, straining muscles, trying hard', '无奈': 'shrug shoulders, spread hands, roll eyes', '彷徨': 'pacing back and forth, furrowing brow, shaking head', '自由': 'stretching arms out wide, smiling broadly, feeling liberated', '宁静': 'closed eyes, calm expression, soft breathing', '欣喜': 'bright eyes, beaming smile, clapping hands', '凳子': 'stool', '瞪羚': 'gazelle', '瞪羚_(动物城)': 'gazelle_(zootopia)', '瞪羚耳朵': 'gazelle_ears', '瞪羚角': 'gazelle_horns', '瞪羚尾': 'gazelle_tail', '低绑头发': 'low_tied_hair', '低保真': 'lo-fi', '低比特率': 'low_bitrate', '低编织': 'low_braid', '低辫长发': 'low-braided_long_hair', '船员_(dippubear)': 'crew_(dippubear)', '船员_(在我们中间)': 'crewmate_(among_us)', '船员_(在我们中间)_(角色扮演)': 'crewmate_(among_us)_(cosplay)', '船员领': 'crew_neck', '船运': 'shippun', '船长': 'captaincob', '船长': 'captainzepto', '犹豫': 'Frown, sad', '船长_(drawfag)': 'captain_(drawfag)', '船长_(见鬼)': 'captain_(hellsing)', '船长_(马达加斯加)': 'skipper_(madagascar)', '船长_celaeno_(mlp)': 'captain_celaeno_(mlp)', '船长_ginyu': 'captain_ginyu', '船长_neyla': 'captain_neyla', '船长_tsubasa': 'captain_tsubasa', '船长_悦': 'captain_yue', '船长70': 'kapiten70', '船长bokko': 'captain_bokko', '蚕205': 'silkworm205', '灿烂辉煌8': 'splendidsplend8', '灿珠': 'can_zhu', '仓仓_(kura28913)': 'kurakura_(kura28913)', '仓持_youichi': 'kuramochi_youichi', '仓町安娜': 'kuramachi_anna', '仓敷_(kas0)': 'kurashiki_(kas0)', '仓敷南华': 'kurashiki_nanka', '仓敷泰': 'kurayashiki_tae', '仓富士幸': 'kurafuji_sachi', '仓光三星': 'kuramitsu_mihoshi', '仓贺': 'kuragare', '仓姬': 'kuragehime', '仓吉庄': 'kurageso', '仓井_(哭)': 'kurai_(cry)', '仓井胜': 'kurai_masaru', '仓井四中': 'kurai_yonaka', '仓井香子': 'kurai_kako', '仓井直': 'kurai_nao', '仓科明日香': 'kurashina_asuka', '仓库': 'warehouse', '仓濑': 'kurasesu', '仓梨香': 'kurarika', '仓里': 'kuragari', '仓林': 'kurabayashi', '仓林屋': 'kurabayashi_aya', '仓流': 'kuraryu', '仓毛': 'kurage', '仓木': 'kuraki', '仓木铃菜': 'kuraki_suzuna', '仓木水菜': 'kuraki_mizuna', '仓目': 'kurame', '仓崎': 'kuragesaki', '仓崎风子': 'kurasaki_fuuko', '仓崎宇宙': 'kurasaki_cosmos', '仓桥_(kancolle)': 'kurahashi_(kancolle)', '仓桥理子': 'kurahashi_riko', '仓山屋': 'kurayama_aya', '仓鼠': 'hamster', '仓鼠': 'hamster_hood', '仓鼠_(汉姆斯特)': 'hamster_(hanmster)', '仓鼠耳朵': 'hamster_ears', '仓鼠服装': 'hamster_costume', '仓鼠肩上': 'hamster_on_shoulder', '仓鼠轮': 'hamster_wheel', '仓鼠女孩': 'hamster_girl', '仓鼠片段': 'hamsterfragment', '仓鼠球': 'hamster_ball', '仓鼠球': 'hamsterball', '仓鼠时间': 'hamsteroftime', '仓鼠手': 'hamstarhand', '仓鼠尾': 'hamster_tail', '仓田留': 'kurata_tome', '仓田美': 'kurata_ami', '仓田武藤': 'kurata_muto', '仓田小百合': 'kurata_sayuri', '仓田音': 'kurata_rine', '仓田由美': 'kurata_yumi', '仓田真城': 'kurata_mashiro', '仓味灿': 'kuramichan', '仓下月见': 'kurashita_tsukimi', '仓香': 'kuraka', '仓须': 'kurasuta', '仓雪0404': 'kurayuki0404', '仓研': 'kuraken', '仓彦': 'kurahika', '仓野八重': 'kurano_yae', '仓野美琴': 'kurano_mikoto', '仓野泉': 'kurano_izumi', '仓野悠一': 'kurano_yuuichi', '仓野友冈': 'kurano_tomoka', '仓永15': 'kuranaga15', '仓云上': 'kurakumo_nue', '仓泽诚': 'kurasawa_makoto', '船长汉娜': 'captain_hannah', '船长卡西迪': 'captaincassidy', '船长柯布': 'captain_kirb', '船长切托': 'captain-cheto', '船长日航': 'captain_nikko', '船长销售': 'captain_sale', '船只': 'watercraft', '船只_(物种)': 'vessel_(species)', '椽子': 'rafters', '喘气': 'gasp', '喘息': 'pheeze', '喘息': 'weezing', '喘着粗气': 'gasping', '串联自行车': 'tandem_bicycle', '洗袜子': 'washing socks', '整理书桌': 'organizing the desk', '照顾老人': 'taking care of the elderly', '带小孩': 'taking care of children', '修理自行车': 'repairing bicycles', '洗地毯': 'cleaning carpets', '刷马桶': 'scrubbing the toilet', '擦地板': 'mopping the floor', '拖把': 'mop', '扫把': 'broom', '清洁剂': 'cleaner', '家电清洁': 'appliance cleaning', '深度清洁': 'deep cleaning', '厨具清洁': 'kitchenware cleaning', '家居保洁': 'home cleaning', '床上用品清洁': 'bedding cleaning', '沙发清洁': 'sofa cleaning', '窗帘清洁': 'curtain cleaning', '洗袜子': 'washing socks', '整理书桌': 'organizing the desk', '照顾老人': 'taking care of the elderly', '带小孩': 'taking care of children', '修理自行车': 'repairing bicycles', '洗地毯': 'cleaning carpets', '刷马桶': 'scrubbing the toilet', '擦地板': 'mopping the floor', '拖把': 'mop', '扫把': 'broom', '清洁剂': 'cleaner', '家电清洁': 'appliance cleaning', '深度清洁': 'deep cleaning', '厨具清洁': 'kitchenware cleaning', '家居保洁': 'home cleaning', '床上用品清洁': 'bedding cleaning', '沙发清洁': 'sofa cleaning', '窗帘清洁': 'curtain cleaning', '消毒液': 'disinfectant', '垃圾袋': 'garbage bag', '烤箱清洁': 'oven cleaning', '冰箱清洁': 'refrigerator cleaning', '洗碗机清洁': 'dishwasher cleaning', '空调清洁': 'air conditioner cleaning', '电视机清洁': 'television cleaning', '洗衣机清洁': 'washing machine cleaning', '尘土': 'dust', '桌子擦拭': 'table wiping', '擦玻璃': 'cleaning glass', '碗筷消毒': 'utensil disinfection', '洗手间清洁': 'toilet cleaning', '铺床': 'making the bed', '整理房间': 'organizing the room', '倒茶水': 'pouring tea', '沏茶': 'brewing tea', '招待客人': 'entertaining guests', '收拾餐桌': 'clearing the table', '打扫阳台': 'cleaning the balcony', '换窗帘': 'changing curtains', '修补墙壁': 'repairing walls', '晾晒衣服': 'air-drying clothes', '烘干机': 'dryer', '扫除灰尘': 'dusting', '洗刷浴缸': 'washing the bathtub', '擦洗马桶盖板': 'cleaning the toilet seat cover', '插头': 'plug', '开关': 'switch', '签证': 'visa', '护照': 'passport', '行李箱': 'suitcase', '旅行包': 'travel bag', '背包': 'backpack', '登机牌': 'boarding pass', '航班号': 'flight number', '出发地': 'departure city', '目的地': 'destination', '转机': 'layover', '下水道': 'sewer', '水表': 'water meter', '电表': 'electricity meter', '煤气表': 'gas meter', '排水口': 'drain', '水龙头': 'faucet', '马桶刷': 'toilet brush', '洗脸盆': 'washbasin', '浴缸': 'bathtub', '淋浴房': 'shower room', '浴室柜': 'bathroom cabinet', '毛巾架': 'towel rack', '纸巾盒': 'tissue box', '马桶垫': 'toilet mat', '坐便器': 'sitting toilet', '搽窗户': 'cleaning the windows', '洗涤粉': 'laundry detergent', '洗衣机': 'washing machine', '空气净化器': 'air purifier', '加湿器': 'humidifier', '电风扇': 'electric fan', '烟雾报警器': 'smoke alarm', '挂钟': 'wall clock', '保险箱': 'safe', '落地灯': 'floor lamp', '台灯': 'table lamp', '床头灯': 'bedside lamp', '吊灯': 'chandelier', '沙发套': 'sofa cover', '靠垫': 'cushion', '抱枕': 'throw pillow', '窗帘杆': 'curtain rod', '地毯': 'carpet', '窗户': 'window', '窗框': 'window frame', '墙壁': 'wall', '地板': 'floor', '天花板': 'ceiling', '门把手': 'door handle', '锁头': 'lock', '钥匙': 'key', '门垫': 'door mat', '衣架': 'clothes hanger', '晾衣绳': 'clothesline', '洗涤袋': 'laundry bag', '洗衣篮': 'laundry basket', '厨房用具': 'kitchenware', '炒锅': 'wok', '平底锅': 'frying pan', '压力锅': 'pressure cooker', '蒸锅': 'steamer', '烤盘': 'baking tray', '碗筷': 'utensils', '刀叉': 'cutlery', '菜板': 'cutting board', '瓶子': 'bottle', '健身': 'fitness', '跳舞': 'dancing', '慢跑': 'jogging', '滑冰': 'skating', '滑雪': 'skiing', '骑自行车': 'cycling', '登山': 'mountaineering', '攀岩': 'rock climbing', '拳击': 'boxing', '摔跤': 'wrestling', '跆拳道': 'taekwondo', '打哈欠': 'yawning', '打喷嚏': 'sneezing', '流鼻涕': 'runny nose', '咳嗽': 'coughing', '发烧': 'fever', '头疼': 'headache', '牙疼': 'toothache', '肚子疼': 'stomachache', '背疼': 'backache', '播放器': 'media player', '音响': 'sound system', '干燥剂': 'desiccant', '氧气机': 'oxygen concentrator', '衣橱': 'wardrobe', '衣服架': 'clothing rack', '晾衣绳': 'clothesline', '床垫': 'mattress', '枕头': 'pillow', '地垫': 'floor mat', '家庭影院': 'home theater', '汽车充电器': 'car charger', '卵巢': 'ovaries', '子宫': 'uterus', '虾': 'Shrimp', '龙虾': 'Lobster', '螃蟹': 'Crab', '扇贝': 'Scallop', '生蚝': 'Oyster', '海蜇': 'Jellyfish', '三文鱼': 'Salmon', '鳕鱼': 'Codfish', '秋刀鱼': 'Pacific saury', '鲈鱼': 'Sea bass', '比目鱼': 'Halibut', '鲑鱼': 'Salmon', '金枪鱼': 'Tuna', '多宝鱼': 'Mackerel', '贻贝': 'Ark shell', '海胆': 'Sea urchin', '带鱼': 'Hairtail', '拍照': 'taking photos', '采集蘑菇': 'collecting mushrooms', '钓鱼': 'fishing', '打高尔夫': 'playing golf', '下棋': 'playing chess', '练习瑜伽': 'practicing yoga', '制作手工皂': 'making handmade soap', '编织毛巾': 'knitting towels', '看书法展': 'attending calligraphy exhibitions', '种植盆栽': 'growing potted plants', '品尝咖啡': 'tasting coffee', '制作甜点': 'making desserts', '泡温泉': 'soaking in hot springs', '听故事会': 'attending storytelling sessions', '弹吉他': 'playing guitar', '写旅游日记': 'writing travel journals', '健身': 'working out', '学习插花': 'learning flower arrangement', '修剪盆景': 'trimming bonsai trees', '发动机': 'Engine', '发电机': 'Generator', '车轮': 'Wheel', '刹车': 'Brake', '离合器': 'Clutch', '手刹': 'Handbrake', '导航仪': 'Navigator', '传动系统': 'Transmission', '变速箱': 'Gearbox', '前后轮驱动': 'Front/rear-wheel drive', '差速器': 'Differential', '燃油泵': 'Fuel pump', '燃油喷射器': 'Fuel injector', '钢铁': 'Iron and steel', '铜': 'Copper', '铝': 'Aluminum', '塑料': 'Plastic', '玻璃': 'Glass', '水泥': 'Cement', '陶瓷': 'Ceramic', '金属': 'Metal', '木材': 'Wood', '纸张': 'Paper', '丝绸': 'Silk', '羊毛': 'Wool', '棉花': 'Cotton', '大理石': 'Marble', '琥珀': 'Amber', '象牙': 'Ivory', '珐琅': 'Enamel', '皮革': 'Leather', '石头': 'Stone', '石膏': 'Gypsum', '石油': 'Petroleum', '金属合金': 'Metal alloy', '玛瑙': 'Agate', '水晶': 'Crystal', '天然橡胶': 'Natural rubber', '人造橡胶': 'Synthetic rubber', '打鼓': 'drumming', '烹饪': 'cooking', '制陶': 'ceramics', '彩绘': 'coloring', '木雕': 'wood carving', '剪纸': 'paper cutting', '编织': 'weaving', '糖画': 'sugar painting', '布艺': 'sewing', '琴棋': 'chess and musical instruments', '灯笼': 'lantern making', '发饰': 'hair accessory making', '卡通': 'cartooning', '刻章': 'seal carving', '甜点': 'dessert making', '元宝': 'gold bar collecting', '趣味': 'hobby inventing', '肖像': 'portrait painting', '景泰蓝': 'cloisonné making', '减压': 'stress relief activities', '风筝': 'kite flying', '萨克斯': 'saxophone playing', '小品': 'sketch comedy', '口琴': 'harmonica playing', '拍立得': 'Polaroid photography', '明信片': 'postcard collecting', '翻译': 'translation', '咖啡艺': 'latte art', '羊毛': 'felting', '网红': 'social media influencing', '手账': 'bullet journaling', '汉字': 'Chinese calligraphy', '水粉画': 'watercolor painting', '迷宫': 'maze solving', '糖果': 'candy making', '折纸': 'origami', '剧本': 'scriptwriting', '城市': 'urban exploring', '地图': 'map collecting', '硬笔': 'hard brush calligraphy', '花艺': 'floral arrangement', '江南': 'Nanjing-style yunjin brocade weaving', '纪念币': 'commemorative coin collecting', '捏泥人': 'clay figurine making', '披肩发': 'Shoulder-length hair', '短发': 'Short hair', '长发': 'Long hair', '中分发': 'Center parting hair', '侧分发': 'Side parting hair', '卷发': 'Curly hair', '直发': 'Straight hair', '发辫': 'Braid', '盘发': 'Updo', '马尾': 'Ponytail', '馬甲線': 'Undercut', '蘑菇头': 'Mushroom hairstyle', '慵懒卷': 'Effortless waves hairstyle', '半扎发': 'Half up hairstyle', '松散盘发': 'Messy bun', '高马尾': 'High ponytail', '低马尾': 'Low ponytail', '清爽短发': 'Fresh and simple short hair', '帅气短发': 'Stylish short hair', '欢乐': 'happiness', '温馨': 'warmth', '浪漫': 'romance', '神秘': 'mystery', '恐怖': 'horror', '悲壮': 'heroic tragedy', '热闹': 'lively', '安静': 'quiet', '轻松': 'relaxed', '紧张': 'tense', '沉静': 'serene', '萧条': 'depressed', '时尚': 'fashionable', '个性': 'personalized', '高贵': 'noble', '雅致': 'elegant', '华丽': 'gorgeous', '朴素': 'simple', '鲜艳': 'bright', '低调': 'low-key', '潮流': 'trendy', '合体': 'well-fitted', '舒适': 'comfortable', '宽松': 'loose', '紧身': 'tight-fitting', '休闲': 'casual', '正装': 'formal wear', '夸张': 'exaggerated', '卡通': 'cartoonish', '酷炫': 'cool', '别致': 'unique', '口红': 'Lipstick', '眼线': 'Eyeliner', '眼影': 'Eyeshadow', '眉笔': 'Eyebrow pencil', '睫毛膏': 'Mascara', '粉底': 'Foundation', '腮红': 'Blush', '遮瑕': 'Concealer', '唇膏': 'Lip gloss', '修容': 'Contouring', '打亮': 'Highlighting', '染发': 'Hair dye', '乳霜': 'Cream', '爽肤水': 'Toner', '乳液': 'Lotion', '防晒霜': 'Sunscreen', '洁面': 'Cleanser', '面膜': 'Facial mask', '眼膜': 'Eye mask', '身体乳': 'Body lotion', '唇彩': 'Lip color', '粉饼': 'Compact powder', '蜜粉': 'Loose powder', '定妆喷雾': 'Setting spray', '亮片眼影': 'Glitter eyeshadow', '捏腮红': 'Cream blush', '气垫BB霜': 'Cushion BB cream', '双修眉笔': 'Dual-ended eyebrow pencil', '眼线胶': 'Gel eyeliner', '染眉膏': 'Eyebrow tint', '睫毛夹': 'Eyelash curler', '卸妆油': 'Makeup remover oil', '卸妆水': 'Makeup remover water', '睫毛增长液': 'Eyelash growth serum', '精华液': 'Serum', 'BB霜': 'BB cream', 'CC霜': 'CC cream', '润唇膏': 'Lip balm', '睫毛增长膏': 'Eyelash growth mascara', '眼线液': 'Liquid eyeliner', '眉粉': 'Eyebrow powder', '修容粉': 'Contour powder', '儒雅': 'refined', '典雅': 'classical', '简约': 'minimalist', '复古': 'retro', '摩登': 'modern', '时髦': 'trendy', '高雅': 'elegant', '优雅': 'graceful', '前卫': 'avant-garde', '大气': 'grand', '华丽': 'gorgeous', '朴素': 'simple', '小清新': 'fresh and natural', '浪漫': 'romantic', '民族风': 'ethnic style', '欧式风': 'European style', '日系风': 'Japanese style', '中式风': 'Chinese style', '工装风': 'workwear style', '美式风': 'American style', '波西米亚': 'bohemian', '古典': 'classical', '艺术': 'artistic', '熟女风': 'mature woman style', '酷': 'cool', '英伦风': 'British style', '多肉': 'succulent', '仙人掌': 'cactus', '绿植': 'houseplant', '盆栽': 'potted plant', '花卉': 'flowers', '运动装': 'sports outfit', '休闲装': 'casual wear', '沙滩装': 'beachwear', '度假装': 'vacation attire', '户外装': 'outdoor clothing', '礼服': 'formalwear', '中山装': 'Zhongshan suit', '西装': 'suit', '唐装': 'tang suit', '礼服': 'formal wear', '泳衣': 'swimsuit', '睡衣': 'pajamas', '制服': 'uniform', '夹克': 'jacket', '风衣': 'trench coat', '连衣裙': 'dress', '蓝色牛仔裤': 'blue jeans', '毛衣': 'sweater', '卫衣': 'hoodie', '外套': 'coat', '水手服': 'sailor suit', '格子衫': 'plaid shirt', '背心': 'vest', '短裙': 'mini skirt', '短袖衬衫': 'short-sleeved shirt', '长袖衬衫': 'long-sleeved shirt', '运动鞋': 'sneakers', '高跟鞋': 'high heels', '凉鞋': 'sandals', '帽子': 'hat', '领带': 'tie', '围巾': 'scarf', '手套': 'gloves', '皮带': 'belt', '针织帽': 'knit hat', '墨镜': 'sunglasses', '草帽': 'straw hat', '丝袜': 'pantyhose', '吊带衫': 'camisole', '工作鞋': 'work shoes', '雨衣': 'raincoat', '毛皮大衣': 'fur coat', '连体裤': 'jumpsuit', '热裤': 'hot pants', '短裤': 'shorts', '迷彩服': 'camouflage clothing', '背包': 'backpack', '旅行箱': 'suitcase', '半身裙': 'midi skirt', '低腰牛仔裤': 'low-rise jeans', '铅笔裙': 'pencil skirt', '短靴': 'ankle boots', '长靴': 'knee-high boots', '皮草': 'leather fur coat', '棉袄': 'cotton-padded coat', '羽绒服': 'down jacket', '毛呢外套': 'woolen coat', '中空针织衫': 'hollow knit sweater', '皮衣': 'leather jacket', '拖鞋': 'slippers', '帆布鞋': 'canvas shoes', '高领毛衣': 'turtleneck sweater', '连帽衫': 'hooded sweatshirt', '运动裤': 'sweatpants', '丝巾': 'silk scarf', '披肩': 'shawl', '手提电脑包': 'laptop bag', '旅行背包': 'travel backpack', '化妆包': 'makeup bag', '手套帽子套装': 'gloves and hat set', '围巾帽子套装': 'scarf and hat set', '针织围巾帽子套装': 'knitted scarf and hat set', '皮手套': 'leather gloves', '雪地靴': 'snow boots', '水晶耳环': 'crystal earrings', '金属手链': 'metal bracelet', '婚纱': 'wedding dress', '礼帽': 'top hat', '吊带裙': 'strapless dress', '卡其裤': 'khakis', '西装裤': 'dress pants', '皮靴': 'leather boots', '九分裤': 'capris', '紧身裤': 'leggings', '蕾丝上衣': 'lace top', '毛线帽子': 'beanie', '热裤': 'hot pants', '针织衫': 'knit sweater', '格子衬衫': 'checkered shirt', '连衣裙': 'gown', '背心裙': 'vest dress', '荷叶边连衣裙': 'ruffle hem dress', '圆领T恤': 'crewneck T-shirt', 'V领T恤': 'V-neck T-shirt', '小黑裙': 'little black dress', '皮夹克': 'biker jacket', '羊毛衫': 'wool sweater', '牛仔短裤': 'denim shorts', '棒球帽': 'baseball cap', '豹纹上衣': 'leopard print top', '中长款大衣': 'mid-length coat', '风衣外套': 'trench coat', '艺术印花上衣': 'art-print top', '运动紧身衣': 'compression wear', '运动文胸': 'sports bra', '针织连衣裙': 'knitted dress', '雪纺上衣': 'chiffon top', '连体衣': 'rompers', '乐福鞋': 'loafers', '高帮鞋': 'high-top shoes', '凉拖': 'flip flops', '皮质手套': 'leather gloves', '运动头带': 'sports headband', '围巾帽子手套套装': 'scarf, hat and glove set', '板鞋': 'sneaker shoes', '平底鞋': 'flat shoes', '内增高鞋': 'elevator shoes', '墨镜': 'sunglasses', '项链': 'necklace', '耳坠': 'earrings', '手镯': 'bangle', '腰带': 'waist belt', '手表': 'watch', '宽松长袖T恤': 'loose long-sleeve T-shirt', '修身长袖T恤': 'fitted long-sleeve T-shirt', '飞行员夹克': 'bomber jacket', '小白鞋': 'white sneakers', '牛仔外套': 'denim jacket', '针织开衫': 'knit cardigan', '紧身连衣裙': 'bodycon dress', '棒球外套': 'varsity jacket', '草帽': 'straw hat', '流苏靴': 'fringed boots', '手链': 'bracelet', '饰品套装': 'accessory set', '钱夹': 'money clip', '休闲装': 'casual wear', '早春外套': 'early spring coat', '厚底鞋': 'platform shoes', '裸色鞋': 'nude shoes', '皮带手表': 'leather strap watch', '镶钻耳环': 'diamond earrings', '毛线手套': 'woolen gloves', '雪纺连衣裙': 'chiffon dress', '花边上衣': 'lace blouse', '双肩背包': 'backpack', '单肩包': 'shoulder bag', '律师': 'lawyer', '医生': 'doctor', '护士': 'nurse', '警察': 'police officer', '军人': 'military personnel', '店员': 'sales clerk', '服务员': 'waiter/waitress', '导游': 'tour guide', '公务员': 'government official', '教师': 'teacher', '理发师': 'barber', '厨师': 'chef', '工人': 'worker', '机械工程师': 'mechanical engineer', '电气工程师': 'electrical engineer', '信息技术工作者': 'IT worker', '金融从业者': 'financial professional', '商务人士': 'business person', '市场营销人员': 'marketing personnel', '广告设计师': 'advertising designer', '公关从业者': 'PR professional', '媒体人从业者': 'media professional', '艺术家': 'artist', '演员': 'actor', '模特': 'model', '时装设计师': 'fashion designer', '摄影师': 'photographer', '舞蹈家': 'dancer', '体育教练': 'sports coach', '运动员': 'athlete', '飞行员': 'pilot', '船长': 'captain', '海员': 'sailor', '潜水员': 'diver', '消防员': 'firefighter', '救护员': 'paramedic', '安检员': 'security guard', '工程师': 'engineer', '建筑设计师': 'architect', '会计从业者': 'accountant', '律师助理': 'paralegal', '社工': 'social worker', '翻译': 'translator', '公寓管理员': 'apartment manager', '保险从业者': 'insurance professional', '房地产从业者': 'real estate professional', '客服人员': 'customer service personnel', '秘书': 'secretary', '行政职员': 'administrative staff', '人力资源从业者': 'human resources professional', '采购从业者': 'purchaser', '财务从业者': 'financial practitioner', '投资经理': 'investment manager', '财务总监': 'CFO', '风险管理师': 'risk management specialist', '证券分析师': 'securities analyst', '市场营销总监': 'CMO', '营养师': 'nutritionist', '物流经理': 'logistics manager', '快递员': 'courier', '瑜伽教练': 'yoga instructor', '舞蹈教练': 'dance coach', '音乐家': 'musician', '画家': 'painter', '雕塑家': 'sculptor', '外科医生': 'surgeon', '内科医生': 'internist', '法官': 'judge', '作家': 'writer', '记者': 'journalist', '工程师': 'engineer', '设计师': 'designer', '律师': 'lawyer', '护士': 'nurse', '教师': 'teacher', '作家': 'writer', '画家': 'painter', '医生': 'doctor', '导演': 'director', '经理': 'manager', '记者': 'journalist', '歌手': 'singer', '瑜伽': 'yoga', '模特': 'model', '演员': 'actor', '老师': 'teacher', '讲师': 'lecturer', '编剧': 'screenwriter', '主持人': 'host', '摄影师': 'photographer', '教练': 'coach', '建筑师': 'architect', '政治家': 'politician', '舞者': 'dancer', '程序员': 'programmer', '心理学家': 'psychologist', '哲学家': 'philosopher', '推销员': 'salesman', '营养师': 'nutritionist', '警察': 'police', '音乐家': 'musician', '银行家': 'banker', '艺术家': 'artist', '科学家': 'scientist', '秘书': 'secretary', '漫画家': 'cartoonist', '顾问': 'consultant', '牙医': 'dentist', '官员': 'official', '魔术师': 'magician', '动画师': 'animator', '摄像师': 'cameraman', '编辑': 'editor', '弹奏家': 'instrumentalist', '记账员': 'accountant', '插画师': 'illustrator', '歌舞演员': 'singer-dancer', '策展人': 'curator', '公务员': 'civil servant', '管乐队员': 'orchestra member', '教育家': 'educator', '制片人': 'producer', '珠宝设计师': 'jewelry designer', '厨师': 'chef', '银行经理': 'bank manager', '剪辑师': 'editor', '电影制片人': 'filmmaker', '化学家': 'chemist', '物理学家': 'physicist', '数学家': 'mathematician', '电影制片人': 'movie producer', '导演': 'director', '音乐制作人': 'music producer', '歌手': 'singer', '模具工程师': 'mold engineer', '建筑工程师': 'construction engineer', '银行家': 'banker', '税务顾问': 'tax consultant', '审计师': 'auditor', '公证员': 'notary', '律师助理': 'paralegal', '教育工作者': 'educator', '贝雷帽': 'beret', '中长款羽绒服': 'mid-length down jacket', '灰色西装': 'gray suit', '短袖POLO衫': 'short sleeve polo shirt', '印花T恤': 'printed T-shirt', '黑色皮裤': 'black leather pants', '棉麻长裤': 'cotton linen pants', '高领毛衣裙': 'turtleneck sweater dress', '碎花连衣裙': 'floral dress', '牛仔短裙': 'denim skirt', '蓝色外套': 'blue coat', '白色衬衫': 'white shirt', '梳子': 'comb', '口罩': 'face mask', '防晒帽': 'sun hat', '水鞋': 'water shoes', '卫衣外套': 'hoodie jacket', 'T恤裙': 'T-shirt dress', '高腰短裤': 'high-waisted shorts', '西装马甲': 'suit vest', '纯色上衣': 'solid color top', '休闲运动裤': 'casual sports pants', '绸缎睡袍': 'silk robe', '宽松长袖衬衫': 'loose long-sleeved shirt', '修身长袖衬衫': 'fitted long-sleeved shirt', '蕾丝连衣裙': 'lace dress', '印花连衣裙': 'printed dress', '开衫毛衣': 'cardigan sweater', '中筒靴': 'mid-calf boots', '膝盖靴': 'over-the-knee boots', '高领针织衫': 'high-neck knit sweater', '露肩上衣': 'off-shoulder top', '短款羽绒服': 'short down jacket', '牛仔外套': 'denim jacket', '瑜伽服': 'yoga clothes', '泳帽': 'swimming cap', '手表配件': 'watch accessories', '眼镜盒': 'glasses case', '鞋垫': 'shoe insole', '旅行枕头': 'travel pillow', '洗漱包': 'toiletry bag', '钱包': 'wallet', '手提包': 'handbag', '皮夹': 'purse', '口红': 'lipstick', '指甲油': 'nail polish', '项链': 'necklace', '耳环': 'earrings', '手链': 'bracelet', '戒指': 'ring', '手表': 'watch', '运动装': 'sportswear', '泳衣': 'swimsuit', '校服': 'school uniform', '婚纱': 'wedding dress', '睡衣': 'pajamas', '连衣裙': 'dress', '牛仔裤': 'jeans', '卫衣': 'hoodie', '风衣': 'trench coat', '旗袍': 'cheongsam', '汉服': 'Hanfu', '军装': 'military uniform', '工装': 'work clothes', '民族服装': 'ethnic clothing', '旅游装': 'travel wear', '夏日装': 'summer outfit', '清凉装': 'cool and refreshing attire', '亲子装': 'parent-child outfit', '果树': 'fruit tree', '药材': 'medicinal herb', '景观': 'landscape plant', '营养': 'nutritious', '有毒': 'poisonous', '防风': 'wind-resistant', '大叶': 'large-leaved', '红叶': 'red-leafed', '甜美': 'sweet and gentle', '丰收': 'harvest', '唐装': 'Traditional Chinese costume', '和服': 'Kimono', '韩服': 'Hanbok', '卡萨布兰卡长袍': 'Caftan', '沙漠长袍': 'Djellaba', '龙袍': 'Dragon robe', '喜服': 'Wedding dress in traditional Chinese culture', '正装': 'Formal attire', '武装': 'Military uniform', '舞蹈演出服装': 'Dancewear', '制服': 'Work uniform', '运动衫': 'Sportswear', '运动裤': 'Sweatpants', '休闲裤': 'Casual pants', '麻花针织': 'Knitwear', '牛仔裤': 'Jeans', '运动鞋': 'Sneakers', '高跟鞋': 'High heels', '凉鞋': 'Sandals', '棒球帽': 'Baseball cap', '手提包': 'Handbag', '双肩包': 'Backpack', '连衣裙': 'Dress', '卫衣裙': 'Hoodie dress', '皮革外套': 'Leather jacket', '飞行员夹克': 'Flight jacket', '连帽衫': 'Hoodie', '针织开衫': 'Cardigan', '毛呢外套': 'Woolen coat', '夹克衫': 'Bomber jacket', '开襟衬衫': 'Button-up shirt', '正装裤': 'Dress pants', '棒球T恤': 'Baseball tee', '领带衬衫': 'Tie-neck blouse', '西装裤': 'Suit pants', '半身裙': 'Skirt', '纯棉衬衫': 'Cotton shirt', '猫科': 'felidae', '犬科': 'canidae', '啮齿类': 'rodentia', '有袋类': 'marsupialia', '草食类': 'herbivorous', '肉食类': 'carnivorous', '智商高': 'intelligent', '可爱': 'cute', '凶猛': 'ferocious', '灵活': 'agile', '毛茸茸': 'furry', '温顺': 'gentle', '水生': 'aquatic', '陆生': 'terrestrial', '臭名昭著': 'notorious', '哺乳类': 'mammals', '夜行性': 'nocturnal', '白天活动': 'diurnal', '攀爬能力强': 'good at climbing', '跳跃能力强': 'good at jumping', '奔跑速度快': 'fast runner', '适应力强': 'strong adaptability', '末梢神经发达': 'well-developed peripheral nerves', '社交性强': 'highly social', '孤独性强': 'solitary', '嗅觉灵敏': 'sensitive sense of smell', '视觉敏锐': 'sharp eyesight', '听觉灵敏': 'acute hearing', '口齿伶俐': 'articulate', '鞋子': 'Shoes', '派克大衣': 'Parka', '针织衬衫': 'Jersey', '紧身连衣裙': 'Bodycon dress', '蓝色牛仔裤': 'Blue jeans', '无袖衬衫': 'Sleeveless shirt', '板鞋': 'Plimsolls', '针织打底裤': 'Knit leggings', '运动短裤': 'Athletic shorts', '小方巾': 'Bandana', '束腰外衣': 'Corset jacket', '炸裂的牛仔外套': 'Deconstructed denim jacket', '曳地礼服': 'Evening gown', '鱼尾和服': 'Mermaid kimono', '刺绣长袍': 'Embroidered robe', '印花长袍': 'Printed robe', '护士制服': 'Nurse uniform', '大学研究生袍': 'Graduation gown', '狂野装饰的衬衫': 'Embellished shirt', '抽象艺术印花连衣裙': 'Abstract art printed dress', '漫画图案紧身连衣裤': 'Comic print leggings', '各种领口的衬衫': 'Shirts with different collars', '一字领连衣裙': 'Strapless dress', '带有流苏的裙子': 'Fringed skirt', '广告印刷T恤': 'Printed T-shirt', '杂志印花上衣': 'Magazine print top', '玄关式开衫': 'Kimono style cardigan', '翻领西服': 'Lapel suit', '挺括式上衣': 'Structured top', '民族服饰': 'Ethnic attire', '亚热带': 'subtropical', '高山': 'alpine', '海滨': 'coastal', '沙漠': 'desert', '热带雨林': 'tropical rainforest', '四季常青': 'evergreen all year round', '水生植物': 'aquatic plants', '灌木': 'bushes', '兰花': 'orchid', '蔬菜': 'vegetables', '中药材': 'traditional Chinese medicine herbs', '攀援植物': 'climbing plants', '仁者见仁': 'different people have different views', '万物皆可爱': 'everything is lovely', '自然': 'natural', '品种繁多': 'varieties abound', '芳香': 'fragrant', '校园': 'campus plant', '盆景': 'bonsai', '牡丹': 'peony', '竹子': 'bamboo', '荷花': 'lotus', '菊花': 'chrysanthemum', '松树': 'pine tree', '梅花': 'plum blossom', '街头风': 'street style', '品质': 'quality', '潮流': 'fashionable', '轻松': 'relaxed', '硬朗': 'rugged', '儒雅': 'refined', '洛丽塔': 'Lolita', '学院风': 'preppy style', '高级感': 'high-end feel', '森女系': 'forest girl style', '嬉皮风': 'hippie style', '清新': 'fresh', '时尚': 'fashionable', '华贵': 'luxurious', '简单': 'simple', '大胆': 'bold', '干练': 'neat and clean', '精美': 'exquisite', '花哨': 'fancy', '随意': 'casual', '清新': 'fresh', '柔美': 'soft and beautiful', '帅气': 'handsome', '俏皮': 'cute and playful', '活力': 'vibrant', '浪漫': 'romantic', '朦胧': 'hazy', '传统': 'traditional', '古典': 'classical', '梦幻': 'dreamy', '复古': 'retro', '具有艺术性': 'artistic', '奢华': 'luxurious', '大气': 'grand', '干练': 'neat and clean', '雅俗共赏': 'appealing to both refined and popular tastes', '简约': 'simple and unadorned', '时髦': 'trendy', '精致': 'delicate', '高端': 'high-end', '暖和': 'warm', '富有': 'rich', '丰富多彩': 'colorful', '有趣': 'funny', '优美': 'elegant', '魅惑': 'fascination', '舒适': 'comfortable', '温暖': 'cozy', '动人': 'touching', '哀伤': 'sorrowful', '寂静': 'silent', '活泼': 'vibrant', '菠萝头': 'Pineapple hair', '脏辫': 'Messy braid', '挽发': 'Upsweep', '文艺发型': 'Artistic hairstyle', '繁华发型': 'Elaborate hairstyle', '萝莉发型': 'Lolita hairstyle', '御姐发型': 'Mature and elegant hairstyle', '娃娃头': 'Cute bob hairstyle', '短发bob' : 'Short bob', '中长发梳理': 'Mid-length hair styling', '棕色长卷发': 'Brown long curly hair', '光滑的铜色直发': 'Sleek copper straight hair', '金棕色层次发型': 'Golden brown layered hairstyle', '彩虹半派对发型': 'Rainbow half-up party hairstyle', '复古长发': 'Vintage long hair', '异域风情短发': 'Exotic short hair', '深蓝色短发': 'Dark blue short hair', '寸头': 'Crew cut', '招风耳': 'Pixie cut', '波波头': 'Bob haircut', '披肩长发': 'Waist-length hair', '空气刘海': 'Air bangs', '齐刘海': 'Straight bangs', '梨花头': 'Pear blossom hairstyle', '男式短发': 'Short men’s hairstyle', '大提琴': 'cello playing', '古董车': 'classic car collecting', '纹身': 'tattooing', '话剧': 'drama performance', '流行舞': 'pop dancing', '日式甜品': 'Japanese dessert making', '书法创作': 'calligraphy creative writing', '橡皮章': 'eraser stamp carving', '石头': 'stone collecting', '达芬奇': 'Da Vinci-style drawing', '桌球': 'billiards', '印章': 'stamp collecting', '拍摄': 'video production', '国学': 'traditional Chinese culture learning', '射击': 'shooting', '汉服': 'Hanfu wearing', '绘本': 'picture book making', '花卉': 'flower collecting', '风景画': 'landscape painting', '地质': 'geology studying', '电音制作': 'electronic music production', '民乐': 'Chinese folk music playing', '古琴': 'guqin playing', '设计': 'graphic design', '棋艺': 'Go and chess playing', '酿酒': 'home brewing', '芭蕾': 'ballet dancing', '毛衣': 'knitting', '人像': 'portrait photography', '古风': 'traditional Chinese style fashion', '动漫': 'anime watching and cosplay', '病理学': 'pathology studying', '采石': 'rock collecting', '舞剧': 'dance drama performance', '童话故事': 'fairy tale writing', '大豆蛋白': 'Soy protein', '聚酯树脂': 'Polyester resin', '环氧树脂': 'Epoxy resin', '碳纤维': 'Carbon fiber', '玻璃纤维': 'Fiberglass', '塑料泡沫': 'Plastic foam', '涂料': 'Coating', '金箔': 'Gold foil', '银箔': 'Silver foil', '蜡': 'Wax', '二氧化硅': 'Silicon dioxide', '空气滤清器': 'Air filter', '机油滤清器': 'Oil filter', '排气管': 'Exhaust pipe', '气门': 'Valve', '轮毂': 'Hub', '刀片': 'Blades', '锤子': 'Hammer', '钳子': 'Pliers', '扳手': 'Wrench', '螺丝刀': 'Screwdriver', '电锯': 'Circular saw', '气动钉枪': 'Pneumatic nail gun', '输送带': 'Conveyor belt', '滑轨': 'Slide rail', '轴承': 'Bearing', '齿轮': 'Gear', '电动机': 'Electric motor', '电缆': 'Cable', '电池': 'Battery', '液压泵': 'Hydraulic pump', '液压缸': 'Hydraulic cylinder', '压力表': 'Pressure gauge', '温度计': 'Thermometer', '流量计': 'Flowmeter', '齿轮箱': 'Gearbox', '开关': 'Switch', '继电器': 'Relay', '控制器': 'Controller', '发射器': 'Transmitter', '接收器': 'Receiver', '电磁铁': 'Electromagnet', '玩桌游': 'playing tabletop games', '收集矿物': 'collecting minerals', '海钓': 'deep sea fishing', '摄影旅行': 'photography travel', '参加沙龙': 'attending salons', '跳广场舞': 'dancing square dance', '画漫画': 'drawing comics', '读科幻小说': 'reading science fiction novels', '收集古董': 'collecting antiques', 'DIY家具': 'DIY furniture', '写诗歌': 'writing poetry', '手工制作家居饰品': 'making handmade home decor', '收集海报': 'collecting posters', '玩模拟经营游戏': 'playing simulation games', '学习外语': 'learning a foreign language', '参加轮滑比赛': 'participating in inline skating competitions', '看芭蕾舞剧': 'watching ballet performances', '练习柔道': 'practicing judo', '画水彩画': 'painting watercolor paintings', '参加音乐会': 'attending concerts', '制作陶艺': 'making pottery', '观看赛车比赛': 'watching car races', '收集钱币': 'collecting coins', '参加围棋比赛': 'participating in Go tournaments', '学习摄影': 'learning photography', '墨鱼': 'Squid', '鱿鱼': 'Calamari', '鱼籽': 'Fish roe', '文蛤': 'Clams', '海螺': 'Whelk', '海鳗': 'Conger eel', '红鱼': 'Red fish', '姑爷': 'Mantis shrimp', '珍珠贝': 'Abalone', '北极贝': 'Scallop', '鱼翅': 'Shark fin', '鲷鱼': 'Porgy', '牡蛎': 'Mussel', '大闸蟹': 'Chinese mitten crab', '青口贝': 'Green mussel', '鲍鱼': 'Abalone', '章鱼': 'Octopus', '海参': 'Sea cucumber', '海蛎': 'Oyster', '海胆子': 'Sea urchin roe', '阴茎': 'penis', '佛教': 'Buddhism', '道教': 'Taoism', '基督教': 'Christianity', '天主教': 'Catholicism', '伊斯兰教': 'Islam', '犹太教': 'Judaism', '印度教': 'Hinduism', '神社': 'Shinto shrine', '寺庙': 'temple', '清真寺': 'mosque', '教堂': 'church', '鹰': 'Eagle', '玩具': 'toys', '娃娃': 'doll', '积木': 'building blocks', '拼图': 'puzzle', '乐高': 'Lego', '变形金刚': 'Transformers', '车模': 'toy car', '手办': 'action figure', '遥控车': 'remote control car', '飞行器': 'flying toy', '充气玩具': 'inflatable toy', '水枪': 'water gun', '泡泡枪': 'bubble gun', '搭配玩具': 'playset', '蚂蚁': 'Ant', '蜜蜂': 'Bee', '蝴蝶': 'Butterfly', '飞蛾': 'Moth', '蚊子': 'Mosquito', '蟑螂': 'Cockroach', '拟蝽': 'Stink bug', '水蚂蚁': 'Water ant', '蜻蜓': 'Dragonfly', '螳螂': 'Praying mantis', '叶蝉': 'Cicada', '蛹': 'Chrysalis', '蝉': 'Locust', '夜蛾': 'Luna moth', '蜗牛': 'Snail', '蛞蝓': 'Slug', '修剪花草': 'trimming plants', '织毛衣': 'knitting sweaters', '赏鸟': 'birdwatching', '做手工艺品': 'making handicrafts', '收集邮票': 'collecting stamps', '拼图': 'doing jigsaw puzzles', '研究历史': 'studying history', '学习编程': 'learning programming', '制作模型': 'building models', '甲虫': 'Beetle', '蚜虫': 'Aphid', '萤火虫': 'Firefly', '蟋蟀': 'Cricket', '蚊香': 'Mosquito repellent', '臭虫': 'Bed bug', '跳蚤': 'Flea', '蟾蜍': 'Toad', '青蛙': 'Frog', '龙虾': 'Lobster', '蟹': 'Crab', '虾': 'Shrimp', '金龟子': 'Ladybug', '蚂蟥': 'Leech', '蜘蛛': 'Spider', '恐爪蝎': 'Scorpion', '蜈蚣': 'Centipede', '蝎子': 'Tarantula', '蝗虫': 'Grasshopper', '天牛': 'Borer', '蜚蠊': 'Termite', '海星': 'Starfish', '海胆': 'Sea urchin', '贝壳': 'Shell', '蛤蜊': 'Clam', '海马': 'Seahorse', '珊瑚': 'Coral', '蛤': 'Oyster', '扁蜷': 'Abalone', '八爪鱼': 'Octopus', '金钩螳螂': 'Bark mantis', '黄蜂': 'Hornet', '蜻蜓': 'Damselfly', '白蚁': 'Termite', '草蛉': 'Mole cricket', '球蛛': 'Garden orb weaver', '中华剪刀蝎': 'Chinese scorpion', '罂粟花天牛': 'Poppy flower longhorn beetle', '粉红睡蛙': 'Pink frog', '桤木天牛': 'Banded longhorn beetle', '蓝环池蛙': 'Blue tree frog', '豆娘': 'Bean bug', '蕉蝉': 'Banana cicada', '菜青虫': 'Cabbage worm', '鸟瞰蝴蝶': 'Birdwing butterfly', '田黄蜂': 'Field wasp', '威尼斯吊桥蜘蛛': 'Golden orb weaver', '青头潜蝇': 'Sapphire fly', '农蝇': 'Housefly', '孪粉蚜': 'Soybean aphid', '丽涟蝉': 'Elegant cicada', '光肩刺蛾': 'Spiny oak slug', '四川大蟑螂': 'Sichuan giant cockroach', '蟑螂杀手': 'Cockroach killer', '大头天牛': 'Longhorn beetle', '落叶螨': 'Clover mite', '泰迪熊': 'teddy bear', '毛绒玩具': 'stuffed animal', '玩具吉他': 'toy guitar', '玩具钢琴': 'toy piano', '音箱': 'speaker', '红外线遥控器': 'infrared remote control', '电池': 'battery', '电动玩具': 'electric toy', '益智玩具': 'educational toy', '童车': 'baby stroller', '儿童游戏机': 'handheld game console', '玩具枪': 'toy gun', '玩偶': 'puppet', '模型': 'model', '板车': 'scooter', '自行车': 'bicycle', '滑板车': 'kick scooter', '轮滑鞋': 'inline skates', '滑板': 'skateboard', '跳跳球': 'hopping ball', '弹珠机': 'pinball machine', '孔雀': 'Peacock', '鸽子': 'Pigeon', '鸽': 'Dove', '鸭': 'Duck', '鹅': 'Goose', '鸟': 'Bird', '鹦鹉': 'Parrot', '鸟儿': 'Sparrow', '秃鹰': 'Vulture', '鸵鸟': 'Ostrich', '火鸡': 'Turkey', '企鹅': 'Penguin', '凤凰': 'Phoenix', '画眉鸟': 'Hwamei', '朱雀': 'Vermilion Bird', '蜜蜂鸟': 'Hummingbird', '布谷鸟': 'Cuckoo', '海鸥': 'Seagull', '啄木鸟': 'Woodpecker', '修道院': 'monastery', '尼姑庵': 'nunnery', '和尚': 'monk', '尼姑': 'nun', '暴龙': 'Tyrannosaurus', '三角龙': 'Triceratops', '剑龙': 'Stegosaurus', '甲龙': 'Ankylosaurus', '雷龙': 'Brontosaurus', '角龙': 'Protoceratops', '远古蜥蜴': 'Iguanodon', '棘龙': 'Spinosaurus', '慢龙': 'Vulcanodon', '旋风龙': 'Allosaurus', '高冠龙': 'Corythosaurus', '翼龙': 'Pterodactyl', '鸟脚恐龙': 'Ornithopod', '蜥脚类恐龙': 'Sauropod', '兽脚类恐龙': 'Theropod', '剪龙': 'Oviraptor', '鸭嘴龙': 'Edmontosaurus', '龙卷风龙': 'Apatosaurus', '鲨齿龙': 'Carcharodontosaurus', '迅猛龙': 'Velociraptor', '僧人': 'monastic', '佛像': 'Buddhist statue', '经文': 'sutra', '念珠': 'prayer beads', '香': 'incense', '供品': 'offering', '拜佛': 'worship Buddha', '参拜': 'pay a visit to a temple', '朝圣': 'pilgrimage', '祈祷': 'pray', '诵经': 'chant sutras', '禅修': 'meditation', '法会': 'Buddhist ceremony', '讲经': 'preach the dharma', '佛教历史': 'Buddhist history', '佛教文化': 'Buddhist culture', '佛教艺术': 'Buddhist art', '阿弥陀佛': 'Amitabha Buddha', '观世音菩萨': 'Guan Yin Bodhisattva', '地藏菩萨': 'Ksitigarbha Bodhisattva', '普贤菩萨': 'Samantabhadra Bodhisattva', '文殊菩萨': 'Manjushri Bodhisattva', '阿罗汉': 'Arhat', '睾丸': 'testicles', '前列腺': 'prostate gland', '性别': 'gender', '男性': 'male', '女性': 'female', '跨性别者': 'transgender', '双性人': 'intersex', '同性恋': 'homosexuality', '异性恋': 'heterosexuality', '双性恋': 'bisexuality', '性取向': 'sexual orientation', '性别认同': 'gender identity', '性别表达': 'gender expression', '阴茎勃起障碍': 'erectile dysfunction', '早泄': 'premature ejaculation', '性交疼痛': 'dyspareunia', '性心理问题': 'sexual psychological problems', '性侵犯': 'sexual assault', '性骚扰': 'sexual harassment', '性剥削': 'sexual exploitation', '性别歧视': 'gender discrimination', '性教育': 'sex education', '安全性行为': 'safe sex', '性健康': 'sexual health', '性病': 'sexually transmitted disease (STD)', '艾滋病': 'AIDS', '乳房': 'breasts', '剃须刀': 'razor', '电动牙刷': 'electric toothbrush', '手电筒': 'flashlight', '防晒霜': 'sunscreen', '空调': 'air conditioner', '加湿器': 'humidifier', '净水器': 'water purifier', '除湿机': 'dehumidifier', '燃气灶': 'gas stove', '热水器': 'water heater', '洗碗机': 'dishwasher', '挂钟': 'wall clock', '电熨斗': 'steam iron', '烤箱': 'oven', '微波炉': 'microwave', '咖啡机': 'coffee machine', '饮水机': 'water dispenser', '吸尘器': 'vacuum cleaner', '料理机': 'food processor', '台灯': 'desk lamp', '吊灯': 'pendant light', '地灯': 'floor lamp', '手套': 'gloves', '围裙': 'apron', '拖把': 'mop', '腿疼': 'leg pain', '手臂疼': 'arm pain', '闪电': 'lightning', '骑乘位': 'riding position', '伏地挺身': 'push-up', '仰卧起坐': 'sit-up', '深蹲': 'deep squat', '俯卧撑': 'plank', '踢腿': 'kicking', '慢跑': 'jogging', '跳绳': 'jump rope', '倒立': 'handstand', '蹲': 'squatting', '滑': 'sliding', '跳': 'jumping', '推': 'pushing', '伸': 'stretching', '扭': 'twisting', '捏': 'pinching', '拧': 'wringing', '揉': 'kneading', '搓': 'rubbing', '抠': 'picking', '挖': 'digging', '切': 'cutting', '削': 'peeling', '磨': 'grinding', '炒': 'stir-frying', '煮': 'boiling', '焖': 'braising', '烤': 'roasting', '炸': 'frying', '蒸': 'steaming', '熬': 'simmering', '淋': 'pouring', '倒': 'pouring', '盛': 'scooping', '撒': 'sprinkling', '插': 'inserting', '塞': 'stuffing', '扔': 'throwing', '接': 'catching', '推': 'pushing', '拉': 'pulling', '拽': 'dragging', '按': 'pressing', '捶': 'pounding', '击': 'striking', '打': 'hitting', '拍': 'patting', '揭': 'lifting', '擦': 'wiping', '抹': 'smearing', '刷': 'brushing', '梳': 'combing', '挑': 'picking out', '编': 'weaving', '缝': 'sewing', '织': 'knitting', '熨': 'ironing', '洗': 'washing', '搬': 'carrying', '送': 'delivering', '取': 'fetching', '寄': 'mailing', '装': 'packing', '卸': 'unloading', '借': 'borrowing', '贷': 'lending', '看': 'watching', '听': 'listening', '闻': 'smelling', '品': 'tasting', '摸': 'touching', '拿': 'taking', '放': 'putting', '摆': 'arranging', '排': 'lining up', '垫': 'padding', '包': 'wrapping', '唾': 'spitting', '嗑': 'smacking', '吸': 'sucking', '呼': 'exhaling', '吹': 'blowing', '啜': 'sipping', '喝': 'drinking', '嚼': 'chewing', '赏': 'appreciating', '夹': 'clamping', '搭': 'propping', '抬': 'lifting', '拖': 'dragging', '推': 'pushing', '拉': 'pulling', '握': 'holding', '托': 'supporting', '抱': 'embracing', '拥': 'hugging', '捧': 'cupping', '撑': 'bracing', '搂': 'clinging', '拍': 'slapping', '戳': 'poking', '敲': 'tapping', '叩': 'knocking', '挠': 'scratching', '掏': 'retrieving', '舞': 'dancing', '跪': 'kneeling', '匍': 'crawling', '滚': 'rolling', '翻': 'turning over', '煮': 'cooking', '腌': 'pickling', '晒': 'sun-drying', '腌': 'marinating', '卷': 'rolling up', '捆': 'tying up', '绑': 'binding', '解': 'untying', '松': 'loosening', '慢': 'slowing down', '快': 'speeding up', '贴': 'sticking', '挑': 'teasing', '踢': 'kicking', '挂': 'hanging', '涂': 'applying', '剪': 'cutting', '砍': 'chopping', '切': 'slicing', '割': 'harvesting', '啃': 'gnawing', '咬': 'biting', '舔': 'licking', '吞': 'swallowing', '呕': 'vomiting', '喷': 'spraying', '吐': 'spitting', '敲': 'knocking', '弹': 'plucking', '吹': 'blowing', '唱': 'singing', '跳': 'hopping', '爬': 'climbing', '钓': 'fishing', '摘': 'picking', '摔': 'falling', '跌': 'falling', '赶': 'hurrying', '追': 'chasing', '拉': 'pulling', '提': 'lifting', '握': 'grasping', '拍': 'clapping', '盯': 'staring', '踩': 'stepping', '拍': 'patting', '揭': 'lifting', '擦': 'wiping', '抹': 'smearing', '刷': 'brushing', '梳': 'combing', '挑': 'picking out', '编': 'weaving', '缝': 'sewing', '织': 'knitting', '熨': 'ironing', '洗': 'washing', '搬': 'carrying', '送': 'delivering', '取': 'fetching', '寄': 'mailing', '装': 'packing', '卸': 'unloading', '借': 'borrowing', '贷': 'lending', '看': 'watching', '听': 'listening', '闻': 'smelling', '品': 'tasting', '摸': 'touching', '拿': 'taking', '放': 'putting', '摆': 'arranging', '排': 'lining up', '垫': 'padding', '包': 'wrapping', '挂': 'hanging', '涂': 'applying', '剪': 'cutting', '砍': 'chopping', '切': 'slicing', '割': 'harvesting', '啃': 'gnawing', '咬': 'biting', '舔': 'licking', '吞': 'swallowing', '呕': 'vomiting', '喷': 'spraying', '吐': 'spitting', '唾': 'spitting', '嗑': 'smacking', '吸': 'sucking', '呼': 'exhaling', '啜': 'sipping', '喝': 'drinking', '嚼': 'chewing', '赏': 'appreciating', '夹': 'clamping', '搭': 'propping', '抬': 'lifting', '拖': 'dragging', '推': 'pushing', '拉': 'pulling', '握': 'holding', '托': 'supporting', '抱': 'embracing', '拥': 'hugging', '捧': 'cupping', '撑': 'bracing', '搂': 'clinging', '拍': 'slapping', '戳': 'poking', '敲': 'tapping', '叩': 'knocking', '挠': 'scratching', '掏': 'retrieving', '舞': 'dancing', '跪': 'kneeling', '匍': 'crawling', '滚': 'rolling', '翻': 'turning over', '煮': 'cooking', '腌': 'pickling', '晒': 'sun-drying', '腌': 'marinating', '卷': 'rolling up', '捆': 'tying up', '绑': 'binding', '解': 'untying', '松': 'loosening', '慢': 'slowing down', '快': 'speeding up', '贴': 'sticking', '挑': 'teasing', '踢': 'kicking', '板': 'patting', '弯': 'bending', '伏': 'lying down', '翘': 'lifting', '蹲': 'squatting', '拱': 'arching', '顶': 'butting', '撞': 'crashing', '碰': 'touching', '刮': 'scraping', '打': 'hitting', '推': 'shoving', '推': 'pushing', '拉': 'pulling', '滑': 'sliding', '爬': 'climbing', '钻': 'drilling', '扭': 'twisting', '拧': 'turning', '转': 'rotating', '平衡术': 'balancing act', '女上男下': 'cowgirl', '后入式': 'doggy style', '侧入式': 'spooning', '倒立式': 'standing 69', '背入式': 'reverse cowgirl', '仰卧位': 'missionary', '飞天舞姿': 'lotus flower', '深蹲姿势': 'deep squat', '前戏': 'foreplay', '口交': 'oral sex', '手淫': 'masturbation', '性爱': 'sexual intercourse', '肛交': 'anal sex', '前列腺按摩': 'prostate massage', 'G点刺激': 'G-spot stimulation', '性高潮': 'orgasm', '做爱的时候应该注意些什么?': 'what should you pay attention to when having sex?', '保护措施': 'precautionary measures', '安全套': 'condom', '避孕药': 'contraceptive pill', '避孕环': 'intrauterine device (IUD)', '人工流产': 'abortion', '不孕症': 'infertility', '生殖器官': 'genitalia', '阴道': 'vagina', '阴蒂': 'clitoris', '小穴': 'anus', '龟头': 'glans', '雷声': 'thunder', '雨滴': 'raindrops', '风向标': 'wind vane', '气压计': 'barometer', '温度计': 'thermometer', '湿度计': 'hygrometer', '晴天': 'sunny day', '阴天': 'cloudy day', '多云': 'partly cloudy', '小雨': 'light rain', '大雨': 'heavy rain', '雷雨': 'thunderstorm', '下雪': 'snowing', '冰雹': 'hail', '龙卷风': 'tornado', '雾霾': 'smog', '飓风': 'hurricane', '台风': 'typhoon', '地震': 'earthquake', '海啸': 'tsunami', '火山爆发': 'volcanic eruption', '彩虹': 'rainbow', '日出': 'sunrise', '日落': 'sunset', '星空': 'starlit sky', '空手道': 'karate', '柔道': 'judo', '踢球': 'kickball', '棒球': 'baseball', '曲棍球': 'hockey', '播放器': 'media player', '音响': 'sound system', '干燥剂': 'desiccant', '氧气机': 'oxygen concentrator', '衣橱': 'wardrobe', '衣服架': 'clothing rack', '晾衣绳': 'clothesline', '床垫': 'mattress', '枕头': 'pillow', '地垫': 'floor mat', '家庭影院': 'home theater', '汽车充电器': 'car charger', '剃须刀': 'razor', '电动牙刷': 'electric toothbrush', '手电筒': 'flashlight', '防晒霜': 'sunscreen', '空调': 'air conditioner', '加湿器': 'humidifier', '净水器': 'water purifier', '除湿机': 'dehumidifier', '燃气灶': 'gas stove', '热水器': 'water heater', '洗碗机': 'dishwasher', '挂钟': 'wall clock', '电熨斗': 'steam iron', '烤箱': 'oven', '微波炉': 'microwave', '咖啡机': 'coffee machine', '饮水机': 'water dispenser', '吸尘器': 'vacuum cleaner', '料理机': 'food processor', '台灯': 'desk lamp', '吊灯': 'pendant light', '地灯': 'floor lamp', '手套': 'gloves', '围裙': 'apron', '拖把': 'mop', '高尔夫': 'golf', '马术': 'equestrianism', '射箭': 'archery', '划船': 'rowing', '皮划艇': 'kayaking', '帆船': 'sailing', '潜水': 'diving', '冲浪': 'surfing', '滑翔伞': 'paragliding', '跳伞': 'skydiving', '蹦极': 'bungee jumping', '攀岩': 'climbing', '滑板': 'skateboarding', '飞镖': 'darts', '台球': 'billiards', '桌球': 'table tennis', '保龄球': 'bowling', '溜冰': 'roller skating', '杯子': 'cup', '碗': 'bowl', '盘子': 'plate', '餐巾纸': 'paper napkin', '吸尘器': 'vacuum cleaner', '扫地机器人': 'robotic vacuum cleaner', '除湿机': 'dehumidifier', '电熨斗': 'electric iron', '热水器': 'water heater', '空调': 'air conditioner', '洗碗机': 'dishwasher', '奶锅': 'milk pot', '炖锅': 'stew pot', '腌制罐': 'pickling jar', '冰淇淋机': 'ice cream maker', '果汁机': 'juicer', '榨汁机': 'juice extractor', '咖啡壶': 'coffee maker', '面包机': 'bread machine', '微波炉': 'microwave oven', '烤箱': 'oven', '吸油烟机': 'range hood', '火锅': 'hotpot', '烤架': 'grill', '烤肉串机': 'kebab machine', '消毒液': 'disinfectant', '垃圾袋': 'garbage bag', '烤箱清洁': 'oven cleaning', '冰箱清洁': 'refrigerator cleaning', '洗碗机清洁': 'dishwasher cleaning', '空调清洁': 'air conditioner cleaning', '电视机清洁': 'television cleaning', '洗衣机清洁': 'washing machine cleaning', '尘土': 'dust', '桌子擦拭': 'table wiping', '擦玻璃': 'cleaning glass', '碗筷消毒': 'utensil disinfection', '洗手间清洁': 'toilet cleaning', '铺床': 'making the bed', '整理房间': 'organizing the room', '倒茶水': 'pouring tea', '沏茶': 'brewing tea', '招待客人': 'entertaining guests', '收拾餐桌': 'clearing the table', '打扫阳台': 'cleaning the balcony', '换窗帘': 'changing curtains', '修补墙壁': 'repairing walls', '晾晒衣服': 'air-drying clothes', '烘干机': 'dryer', '扫除灰尘': 'dusting', '洗刷浴缸': 'washing the bathtub', '擦洗马桶盖板': 'cleaning the toilet seat cover', '插头': 'plug', '开关': 'switch', '电线': 'wire', '串崎_(vtuber)': 'kushizaki_(vtuber)', '串烧': 'kushibi', '必胜客': 'pizza_hut', '毕达哥拉开关': 'pythagora-switch', '毕加索': 'h-picaso', '毕竟承担': 'bearafterall', '毕业': 'graduation', '毕业帽': 'graduation_cap', '毕业实验室': 'grado_labs', '闭门器': 'closers', '闭幕式': 'closed_curtains', '闭眼': 'closed_eyes', '闭眼': 'eyes_closed', '闭眼': 'eyes_closing', '闭嘴': 'closed_mouth', '闭嘴': 'mouth_closed', '闭嘴微笑': 'closed_smile', '闭嘴皱眉': 'closed_frown', '庇护': 'asylum', '庇护所': 'shelter', '庇护所': 'shelty', '庇护所_(音乐视频)': 'shelter_(music_video)', '哔哔': 'beeb', '哔哔': 'beepunz', '哔哔声': 'beepsweets', '哔哔声': 'blep', '哔哔声16': 'beeprlae16', '哔叽': 'serge', '哔哩哔哩': 'bilibili', '哔哩哔哩': 'bilibili_xiaolu', '婢女': 'enmaided', '蓖麻': 'castrodour', '蓖麻': 'riccae', '滗水': 'decantering', '碧蓝': 'ebiblue', '碧蓝幻想': 'granblue_fantasy', '碧婷_(xia_lan)': 'bi_ting_(xia_lan)', '碧玉_(史蒂文宇宙)': 'jasper_(steven_universe)', '碧玉_(珠宝)': 'jasper_(jewelpet)', '篦子': 'zgrate', '壁橱': 'closet', '壁橱浣熊': 'closet_coon', '壁橱可食的': 'closetcanibal', '壁灯': 'kabedoru', '壁灯': 'sconce', '壁灯': 'wall_lamp', '壁挂式假阳具': 'wall_mounted_dildo', '壁虎': 'gecko', '壁虎': 'geckolion', '壁虎': 'geckonori', '壁虎': 'geckozen', '壁虎': 'geckzgo', '壁虎': 'geko', '壁虎': 'gekota', '壁虎': 'l.gecko', '壁虎_(辐射)': 'gecko_(fallout)', '壁虎_(塞尔达)': 'gekko_(zelda)', '壁虎_(字符)': 'gekko_(character)', '壁虎123456789': 'geckoguy123456789', '壁虎4488': 'gecko4488', '壁虎狂热': 'geckomania', '壁虎忍者': 'thegeckoninja', '壁画': 'mural', '壁架': 'ledge', '壁架1606': 'ledge1606', '壁尻': 'kabeshiri', '壁垒_(apex_legends)': 'rampart_(apex_legends)', '壁炉': 'fireplace', '壁球': 'squash', '壁纸_(对象)': 'wallpaper_(object)', '壁纸_(装饰)': 'wallpaper_(decoration)', '壁纸强制': 'wallpaper_forced', '避开': 'keep_out', '避开': 'keepout', '避免发布': 'avoid_posting', '避难所': 'inkasylum', '避孕套': 'condom', '避孕套': 'condom_strip', '避孕套': 'condom_suit', '避孕套包装': 'condom_wrapper', '避孕套处置': 'condom_disposal', '避孕套盒': 'condom_box', '避孕套气球': 'condom_balloon', '避孕套裙': 'condom_skirt', '避孕套十字军': 'condom_crusader', '避孕套作呕': 'condom_gagging', '臂环': 'arm_ring', '臂饰': 'armwear', '臂锁': 'armlock', '臂腕': 'vambrace', '臂腕': 'vambraces', '臂章': 'armband', '臂章': 'armlet', '边': 'side', '边鞍': 'sidesaddle', '边北隆': 'byoukitakashi', '边车': 'sidecar', '边际跳过': 'marginal_skip', '边界': 'border', '边界': 'bound', '边界闪电': 'boundlightning', '边界中断': 'border_break', '边津海': 'hebitsukai', '边津海山': 'hebitsukai-san', '边境牧羊犬': 'border_collie', '边科': 'benko', '边框0715': 'border0715', '边球': 'side_balls', '边学': 'byougaku', '边缘': 'rimibure', '边缘_(游戏)': 'limbo_(game)', '边缘服装': 'fringe_clothing', '边缘公司': 'limbus_company', '边缘狗': 'fringedog', '边缘世界': 'rimworld', '边缘修剪': 'fringe_trim', '边缘站': 'edgeartstation', '边远七世': 'bianyuanqishi', '边治铁': 'henjikotetsu', '编': 'plait', '编程': 'programming', '编程_(主题)': 'programming_(topic)', '编号': 'numbered', '编号列表': 'numbered_list', '编号面板': 'numbered_panels', '编号序列': 'numbered_sequence', '编辑': 'edih', '编辑': 'edit', '编辑': 'edith_up', '编辑': 'edjit', '编辑': 'eds', '编辑_(质量效应)': 'edi_(mass_effect)', '编译心': 'compile_heart', '编织': 'braid', '编织包子': 'braided_bun', '编织的': 'braided', '编织刘海': 'braided_bangs', '编织毛皮': 'braided_fur', '编织头发': 'braiding_hair', '编织尾': 'braided_tail', '编织物': 'kraid', '编织鬃毛': 'braided_mane', '蝙蝠_(动物)': 'bat_(animal)', '蝙蝠_(库莫里)': 'bat_(coumori)', '蝙蝠_(佩鲁兹)': 'bat_(petruz)', '蝙蝠鼻子': 'bat_nose', '蝙蝠洞': 'batartcave', '蝙蝠耳朵': 'bat_ears', '蝙蝠耳狐': 'bat-eared_fox', '蝙蝠耳环': 'bat_earrings', '蝙蝠基因组': 'bat_genome', '蝙蝠猫': 'battycat', '蝙蝠女': 'batgirl', '比思数学': 'bithmath', '比斯克昆': 'biskekun', '比斯奎': 'bisquii', '比斯马尔乔': 'bismarcho', '比索': 'pespeso', '比索_(honopesopeso)': 'peso_(honopesopeso)', '比索_(奶酪公司)': 'peso_(cheese_company)', '比索金': 'pesogin', '比塔': 'bita', '比特币': 'bistup', '比特币': 'bitcoin', '比特币': 'bitcoon', '比特尔': 'bteele', '比特方': 'bitfang', '比特拉加': 'bitaraga', '比特利卡特': 'bitelickart', '比特犬': 'pitbull', '比特森': 'bitseon', '比特太郎': 'bitaro', '比图尔加': 'bithurga', '比乌尔齐': 'byulzzi', '比西': 'pisoshi', '比夏普': 'bisharp', '比谢克兹': 'bixiekz', '比星兽': 'beelstarmon', '比亚_(1024)': 'biya_(1024)', '比亚富拉': 'biafura', '比亚科': 'biako', '比亚姆': 'byam', '比耶奥西': 'bil-ajeossi', '比永': 'biyon', '比喻': 'paraphore', '比约比约门': 'piyopiyomen', '比约德': 'bjyord', '比约拉': 'biyora', '比约门': 'biyomon', '比泽': 'bzeh', '比泽尔': 'buizel', '比兹': 'beez', '吡啶甲醚': 'derpyrider', '吡拉维亚': 'pyravia', '吡罗曼': 'piromane', '北川鬼太郎': 'kitagawa_onitarou', '北川君': 'kitagawa_jun', '北传': 'bokuden', '北村': 'hokkamuri', '北村_(竹)': 'kitamura_(bamboo)', '北村空': 'kitamura_sora', '北村理': 'kitamura_eri', '北村周': 'kitamurashu', '北单': 'beidan', '北岛枫': 'kitajima_kaede', '北斗': 'hokoodo', '北斗_(genshin_impact)': 'beidou_(genshin_impact)', '北斗_(sichil)': 'hokuto_(scichil)', '北斗_(tokuho)': 'hokuto_(tokuho)', '北斗_(北斗_pk)': 'hokuto_(hokuto_pk)', '北斗六': 'hokutoro64', '北斗七星': 'dipper_gleeful', '北斗顺': 'hokuto_shun', '北斗松': 'dipper_pines', '北斗星': 'big_dipper', '北方': 'northern', '北方冲刺': 'northernsprint', '北方工业': 'norinco', '北方海洋公主': 'northern_ocean_princess', '北方红衣主教': 'northern_cardinal', '北方水公主': 'northern_water_princess', '北方议会_(会徽)': 'northern_parliament_(emblem)', '北风': 'north_wind', '北风': 'nortuet', '北风_(azur_lane)': 'kitakaze_(azur_lane)', '北风_东风': 'kitakaze_higashikaze', '北干佩卡': 'pekanpeka', '北宫初美': 'kitamiya_hatsumi', '北谷': 'beigu', '北谷': 'ukitanisu', '北馆': 'bukkan', '北海': 'hokkai', '北海道': 'hokkaido', '北海道_(艺术家)': 'hokkaido_(artist)', '北海道日本火腿战士': 'hokkaido_nippon-ham_fighters', '北极': 'arctic', '北极光': 'aurora_borealis', '北极光_(可口可乐)': 'northern_lights_(coca-cola)', '北极寒冷霜狐': 'arcticfrigidfrostfox', '北极狼': 'arctic_wolf', '北极鼩': 'arctic_shrew', '北极神经': 'arcticneu', '北极世界': 'arctic-sekai', '北极星': 'petpolaris', '北极星_(shinrabanshou)': 'polaris_(shinrabanshou)', '北极星_(饼干)': 'polaris_(crackers)', '北极星_(活生生的英雄)': 'borealis_(live-a-hero)', '北极星_(鼠哥)': 'polaris_(mousguy)', '北极星_(泰坦陨落)': 'northstar_(titanfall)', '北极星55740': 'polaris55740', '北极熊': 'arcticdunx', '北极熊': 'arcticlion', '北极熊': 'polar_bear', '北极雪1': 'arcticsnow1', '北极野兔': 'arctic_hare', '北见柚子': 'kitami_yuzu', '北江': 'uhokue', '白闪光': 'white_glint', '白舌': 'white_tongue', '白蛇': 'white_snake', '白蛇_(站立)': 'whitesnake_(stand)', '白神': 'shirakami', '白神': 'shirakamii', '白神学园': 'shirokami_gakuen', '白神洋子': 'shiragami_youko', '白绳': 'white_rope', '白石': 'hakuseki', '白石': 'shiroxai', '白石_(siraisi00)': 'shiraishi_(siraisi00)', '白石_(田中)': 'shiraishi_(tanakeda)', '白石_葵': 'hakuishi_aoi', '白石庵': 'shiraishi_an', '白石明日香': 'shiraishi_asuka', '白石稔': 'shiraishi_minoru', '白石真子': 'shiraishi_mako', '白手': 'hakua_shou', '白手': 'white_hands', '白手套': 'white_gloves', '白手指': 'white_fingers', '白手族': 'shiroshouzoku', '白兽20': 'whitebeast20', '白术': 'besuteia', '白水': 'white_water', '白丝带': 'white_ribbon', '白索托': 'hakusoto', '白塔关塔': 'hakutakuanta', '白拓': 'hakutaku', '白桃': 'shiramomo', '白桃': 'shiromomo', '白藤玉卷': 'shirafuji_tamaki', '白蹄': 'white_hooves', '白体': 'white_body', '白天': 'daylight', '白天': 'whitesky', '白天空': 'white_sky', '白天使': 'white_angel', '白田69': 'shirota69', '白田豆腐': 'hakuda_tofu', '白条': 'white_bars', '白条学园制服': 'hakujou_academy_uniform', '白通9194': 'baitong9194', '白瞳': 'white_pupils', '白头': 'white_head', '白头鹰': 'bald_eagle', '白头罩': 'white_hood', '白兔': 'baitu', '白兔95': 'whiterabbit95', '白腿': 'white_legs', '白袜子': 'white_socks', '白万太': 'shiromanta', '白围巾': 'white_scarf', '白尾': 'hakuoro', '白尾': 'white_tail', '白尾鹿': 'white-tailed_deer', '白味噌': 'shiromiso', '白屋': 'shirasaya', '白舞屋': 'hakumaiya', '白相': 'shiroaisa', '白香': 'baek_hyang', '白泷': 'shirataki', '白泷次郎': 'shirataki_jiro', '白泷海冰': 'shiratakiseaice', '白泷怀石料理': 'shirataki_kaiseki', '白泷奈子': 'shirataki_nako', '白鹿': 'shirokujira', '白鹿': 'shiroshisu', '白鹿': 'wyrdeer', '白鹿角': 'white_antlers', '白路': 'byoru', '白鹭': 'egret', '白鹭': 'shirosa', '白鹭': 'shirousagi', '白罗宾': 'white_robin', '白洛丽塔': 'shiro_lolita', '白马': 'white_horse', '白马王子': 'hakuba_ouji', '白玛丽亚': 'whitemaria', '岩石': 'rock', '岩石海岸': 'rocky_shore', '岩石轰炸机': 'rock-bomber', '岩石浣熊': 'rockyrcoon', '岩石硬木': 'rockyhardwood', '岩蹄_(mlp)': 'rockhoof_(mlp)', '岩田聪': 'iwata_satoru', '岩头': 'iwatooshi', '岩屋': 'iwaya', '岩西': 'iwanishi', '岩野': 'iwano', '岩玉': 'yandama', '岩月': 'iwatsuki', '岩藻': 'fuco', '岩泽崎': 'iwasawa_saki', '岩长琴子': 'iwanaga_kotoko', '岩蒸': 'iwamushi', '岩政': 'iwamasama', '炎夏': 'enatsu', '炎炎': 'yan-yam', '沿河': 'yanhe', '沿着': 'arong', '沿着夜晚_(命运)': 'arondight_(fate)', '研钵和研杵': 'mortar_and_pestle', '研究': 'erostud', '研究员': 'researcher', '研磨': 'grind', '研磨': 'grinding', '研磨3r': 'grind3r', '研磨剂': 'grendizer', '盐': 'salt', '盐': 'shio', '盐_(调味料)': 'salt_(seasoning)', '盐八': 'shiohachi', '盐大津': 'shionootsu', '盐町': 'shiomachi', '盐飞': 'shiohi', '盐和之子': 'shiokazunoko', '盐河地': 'shiogochi', '盐花': 'shiohana', '盐碱': 'salnith', '盐碱': 'saltyxodium', '盐井': 'shioboi', '盐昆布': 'shiokonbu', '盐林达': 'shiorinda', '盐片': 'saltlaver', '盐苹果': 'salt-apple', '盐水': 'saline', '盐滩': 'shiotan', '盐田': 'shiosoda', '盐田庄': 'shiontaso', '盐芯': 'saltcore', '盐野_(0303)': 'shiono_(0303)', '盐叶': 'shioha', '镇': 'town', '镇': 'towne', '镇爱': 'zhenai', '镇静剂': 'tranquilizer', '镇静剂_(最佳中心)': 'tranquilizer_(bestcenter)', '镇林': 'zhenlin', '镇压9': 'krackdown9', '镇远_(西游记)': 'zhenyuan_(journey_to_the_west)', '争夺': 'v-i-e', '争论': 'arguing', '争论': 'argument', '征兵': 'seihou', '征兵院_erika': 'seihouin_erika', '拉着': 'holds', '征服皇后': 'vanquished_queens', '征服者': 'conqista', '征服者香巴拉': 'conqueror_of_shambala', '征广': 'semahiro', '征用': 'impforhire', '挣扎': 'struggling', '挣扎的猎物': 'struggling_prey', '睁大眼睛': 'wide_eyed', '睁大眼睛': 'wide-eyed', '睁眼': 'opening_eyes', '蒸菜': 'steamedvegetables', '蒸蛋': 'steamed_egg', '蒸蛋': 'steamedeggz', '蒸馏柱': 'distillation_column', '蒸气': 'vapors', '蒸汽': 'steam', '蒸汽波': 'vaporwave', '蒸汽船': 'steamyart', '蒸汽机车': 'steam_locomotive', '蒸汽朋克': 'steampunk', '蒸汽朋克_(骗子软件)': 'steampunk_(liarsoft)', '蒸着': 'steaming', '真皮': 'dermar', '真皮': 'dermiss', '真人': 'mahito', '真人快打': 'mortal_kombat', '真人野': 'mazamuno', '真实的': 'real', '真实的': 'reficul', '真实的': 'veris', '真实驱动器': 'real_drive', '真实世界': 'real_world', '真实世界位置': 'real_world_location', '真实文化': 'verakultura', '真实性_(口袋妖怪)': 'verity_(pokemon)', '真实意图': 'real_intention', '真寿司': 'mazushii', '真田_(tony2035176)': 'sanada_(tony2035176)', '真田菲利克斯': 'sanadafelix', '真田节子': 'sanada_setsuko', '真田凉': 'sanada_ryou', '真田明彦': 'sanada_akihiko', '真田秀树': 'sanada_hideki', '真丸': 'mahimaru', '真丸': 'manumaru', '真希': 'maki', '真相': 'the_truth', '真相': 'truth', '真心话大冒险': 'truth_or_dare', '真乙烯基': 'realvinyl', '真艺术': 'zhineart', '真鹰': 'true_eagle', '真鹰': 'true_hawk', '真正的1rebird': 'therealf1rebird', '真正的恶魔': 'truedevirish', '真正的垃圾': 'imactuallygarbage', '真正的蓝': 'true_blue', '真正的纳菲': 'therealnaffy', '真正的男人': 'realman', '天崎凉子': 'amasaki_ryouko', '天气': 'weather', '天气报告_(立场)': 'weather_report_(stand)', '天气掺杂剂': 'weather_dopant', '天气女孩': 'weathergirl', '天气三重奏': 'weather_trio', '天气新闻': 'weathernews', '天气仪器': 'weather_instrument', '天气预报': 'weather_report', '天前排': 'amayasenpai', '天谴刺猬': 'scourge_the_hedgehog', '天桥': 'skybrigidrain', '天琴座': 'lyra-kotto', '天琴座': 'lyren', '天色野生动物园': 'tenshoku_safari', '天山_(kancolle)': 'tenzan_(kancolle)', '天山藏月': 'tensazangitsu', '天上的存在': 'celestial_being', '天上的露丝': 'luce-in-the-sky', '天上的美丽': 'beautyfromabove', '天上山': 'tenjosan', '天上院崎': 'tenjouin_saki', '天上月': 'tenjou_tsuki', '天上云集': 'heavenly_gathering_of_clouds', '天神': 'amagami', '天神_(ahan)': 'tenjin_(ahan)', '天神空': 'amagami_sora', '天神琴音': 'tenjin_kotone', '天神堂': 'amagamido', '天神秀孝': 'tenjin_hidetaka', '天生淘气': 'naughtybynature', '天师_御门国': 'tenshi_mikadokuni', '天狮': 'atianshi', '天狮': 'tianshi', '天时_no_3p!': 'tenshi_no_3p!', '天使/dust_neo': 'angel/dust_neo', '天使': 'angel', '天使': 'angelene', '天使': 'angelg', '天使': 'angeling', '天使': 'angelium', '天使': 'angemon', '天使': 'anges', '天使': 'aphexangel', '天使': 'dnangel', '红龙': 'reddrago', '红龙': 'reddragon', '红龙坎': 'reddragonkan', '红鹿': 'red_deer', '红萝卜': 'bloocarrot', '红绿灯': 'traffic_light', '红绿金刚鹦鹉': 'red-and-green_macaw', '红绿死亡': 'redgreendied', '红猫': 'red_felyne', '红毛巾': 'red_towel', '红毛菊': 'erulusyro', '红毛猩猩': 'oranguru', '红帽': 'red_cap', '红帽': 'red_hood', '红帽衫': 'red_hoodie', '红玫瑰': 'red_rose', '红玫瑰214': 'redrose214', '红眉毛': 'red_eyebrows', '红莓': 'bloodberry', '红美玲': 'hong_meiling', '红面条公司': 'rednoodle.inc', '红膜': 'red_membrane', '红男爵': 'red_baron', '红男爵': 'redbaron', '红尿布': 'red_diaper', '红牛': 'red_bull', '红牌': 'red_card', '横空': 'yozora', '横空2199': 'yokon2199', '横木': 'yokige', '横木井': 'yoekosukii', '横切': 'yokiri', '横琴': 'yokotn', '横山石见': 'yokoyama_ishimi', '横神': 'yokogami', '红豆小提琴': 'redbeanviolin', '红肚皮': 'red_belly', '红锻造': 'redforge', '红耳朵': 'red_ears', '红发': 'red_hair', '红法师': 'red_mage', '红方巾': 'redphlannel', '红风': 'red_winds', '红肛门': 'red_anus', '红巩膜': 'red_sclera', '红光剑': 'red_lightsaber', '红鬼': 'theredghost', '红海': 'red_ocean', '红海儿': 'hong_hai-er', '红和白': 'red_and_white', '红黑tac': 'redblacktac', '红狐': 'red_fox', '红狐之魂': 'redfoxsoul', '红胡子': 'red_beard', '红蝴蝶': 'red_butterfly', '红花': 'red_flower', '红花': 'red_flowers', '红花': 'reddandwhyte', '红花': 'tilitea', '红花园': 'red_garden', '红黄瓜': 'red_cucumber', '红彗星': 'redcomet', '弹药带': 'ammunition_belt', '弹药箱': 'ammunition_box', '蛋': 'egg', '蛋白石': 'opal', '蛋白石': 'opalisart', '蛋白石_(al_gx)': 'opal_(al_gx)', '蛋白石_(ashnar)': 'opal_(ashnar)', '蛋白石_(jellydoeopal)': 'opal_(jellydoeopal)', '蛋白石_(mlp)': 'opaline_(mlp)', '蛋白石_(宠物小精灵)': 'opal_(pokemon)', '蛋白石_(动物穿越)': 'opal_(animal_crossing)', '蛋白石_(史蒂文宇宙)': 'opal_(steven_universe)', '蛋白石心': 'opalheart', '蛋白酥皮': 'meringue', '蛋包': 'ovopack', '蛋包饭': 'omurice', '蛋包饭_(roza4957)': 'omurice_(roza4957)', '蛋蛋_(艺术家)': 'egging_(artist)', '蛋店': 'eggshoppe', '超力龙兽': 'ulforcevdramon', '超亮': 'ultra-ryo', '超灵神': 'chao_lingshen', '超马格纳斯': 'ultra_magnus', '超猫': 'hyper_pussy', '超萌': 'hyperbudd', '超梦': 'mewtwo', '超敏': 'superkeen', '超女': 'supergirl', '超女性': 'ultrafem', '超品牌': 'hyper_brand', '超七(系列)': 'ultra_seven_(series)', '超七': 'ultra_seven', '超鞘': 'hyper_sheath', '超球': 'ultra_ball', '超人.exe': 'megaman.exe', '超人': 'superia', '超人': 'superman', '超人_(角色扮演)': 'superman_(cosplay)', '超人_(经典)': 'mega_man_(classic)', '超人_(系列)': 'superman_(series)', '超人_geed_(系列)': 'ultraman_geed_(series)', '超人零': 'ultraman_zero', '超人太郎': 'ultraman_tarou', '超人太郎_(系列)': 'ultraman_tarou_(series)', '超人套装': 'ultraman_suit', '超乳房': 'hyper_udders', '超乳晕': 'hyper_areola', '超三角肌': 'hyper_deltoids', '超杀': 'ultrakill', '超渗透': 'hyper_penetration', '超生殖器': 'hyper_genitalia', '绉': 'crepe', '昼夜': 'day_and_night', '雷里': 'rayrie', '雷利': 'rayley', '雷利乌斯麦克斯': 'reliusmax', '雷列尔': 'leliel', '雷林': 'leilin', '雷林': 'reylin', '雷龙': 'brontosaurus', '雷龙': 'thundragon', '雷卢卡': 'reilukah', '雷路德': 'raylude', '雷罗伊': 'reroi', '电击': 'dengeki', '电击': 'elechtronshock', '电击': 'electabuzz', '电击': 'electric_shock', '电击': 'troncill', '电击gx': 'dengeki_gx', '电击大王': 'dengeki_daioh', '电击姬': 'dengeki_hime', '电击萌萌': 'dengeki_moeou', '电击枪': 'stun_gun', '电击文库': 'dengeki_bunko', '电击武器': 'electroshock_weapon', '电机': 'denki', '电机_(digi6598)': 'denki_(digi6598)', '电机寿军': 'denki_shougun', '电吉': 'denkichi', '电吉他': 'electric_guitar', '电极': 'electrode', '电极': 'electrodes', '电极': 'elekid', '电极': 'urode', '电极_(口袋妖怪)': 'electrode_(pokemon)', '电极垫': 'electrode_pad', '电极上的乳房': 'electrode_on_breasts', '电竞': 'eleking', '电竞': 'espurr', '电锯': 'chainsaw', '电锯': 'driosawm', '电锯_(电锯人)': 'denji_(chainsaw_man)', '电锯恶魔': 'chainsaw_devil', '电锯人': 'chainsaw_man', '电缆': 'cable', '电缆_(惊奇)': 'cable_(marvel)', '电缆扎带': 'cable_tie', '帆布太阳能': 'canvassolaris', '帆船': 'sailboat', '帆船': 'sailing_boat', '帆船': 'sailing_ship', '帆船艇': 'sailing_watercraft', '番景子': 'ban_keiko', '番流': 'banryu', '番木瓜': 'papaya', '番茄。': 'tomaty.', '番茄': 'datomato', '番茄': 'philtomato', '番茄': 'pomodorosa', '番茄': 'tomathao', '番茄': 'tomatika', '番茄': 'tomato', '番茄_(@ma!)': 'tomatto_(@ma!)', '番茄_(lsj44867)': 'tomato_(lsj44867)', '番茄_(tomato_kanzume)': 'tomatomato_(tomato_kanzume)', '电离层': 'ionosphere', '电力操纵': 'electricity_manipulation', '电力生物': 'electricity_creature', '电力线路': 'power_lines', '电力线路': 'powerlines', '电流_(oc)': 'electro_current_(oc)', '电六_(nokishita_no_katatsumuri)': 'denroku_(nokishita_no_katatsumuri)', '电路': 'circuit', '电路': 'circuitry', '电路板': 'circuit_board', '电路标记': 'circuit_markings', '电鳗': 'electric_eel', '电脑屏幕': 'computer_screen', '电脑鼠标': 'computer_mouse', '电脑死亡眩光': 'computerdeathglare', '电脑塔': 'computer_tower', '电脑显示器': 'computer_monitor', '电脑芯片': 'computer_chip', '电脑游戏': 'comjuke', '电气插头': 'electrical_plug', '电气石': 'tourmaline', '电取': 'denkitori', '电热水壶': 'electric_kettle', '电容器': 'capacitor', '电射精': 'electroejaculation', '电视': 'tav', '电视': 'television', '电视节目': 'tv_show', '电视马': 'tvma', '电视摄像机': 'tv_camera', '电视同志': 'tvcomrade', '电视头': 'tv_head', '电视晚餐艺术': 'tv_dinner_art', '电视遥控器': 'tv_remote', '电视照明': 'tv_lighting', '电台展位': 'radio_booth', '电梯': 'elevator', '雷马迪': 'remadi', '雷马科': 'reimaco', '雷曼': 'rayman', '雷曼_(系列)': 'rayman_(series)', '雷猫': 'thundercats', '雷猫_2011': 'thundercats_2011', '雷蒙': 'raimon', '雷蒙': 'raymon', '雷蒙26': 'raimone26', '雷蒙德_(动物穿越)': 'raymond_(animal_crossing)', '雷蒙德158': 'raymond158', '雷蒙德福xxx': 'raymondfoxxx', '雷蒙娜阿尔瓦雷斯': 'ramona_alvarez', '雷蒙娜山': 'remona-san', '雷蒙爪子': 'renamonpaws', '雷米': 'remmmy', '雷米': 'remy', '雷米': 'remyu', '雷米_(艾斯之剑)': 'remy_(elsword)', '雷米0124': 'raymie0124', '雷米尔': 'remil', '雷米尔': 'remyl', '雷米福克斯': 'remmyfox', '雷米龙': 'remidragon', '雷米姆': 'remimim', '雷米五': 'remyfive', '雷民': 'reimin', '雷明顿_870': 'remington_870', '雷明顿武器': 'remington_arms', '雷鸣': 'thundernawr', '雷鸣': 'thunder-renamon', '雷莫拉': 'rhemora', '雷莫拉180': 'remora180', '雷莫约纳': 'remoyona', '雷姆': 'remmm', '雷木坤': 'remu-kun', '雷纳': 'raina', '雷纳': 'rayna', '雷纳': 'reina', '皱巴巴的纸': 'crumpled_paper', '皱鼻子': 'wrinkled_nose', '皱眉': 'frown', '皱眉': 'frown_eyebrows', '皱眉': 'furrowed_brow', '皱眉': 'open_frown', '皱眉_(wonderland85711)': 'frown_(wonderland85711)', '皱眉头': 'scowl', '皱眉镇': 'frowntown', '皱起的嘴唇': 'puckered_lips', '皱鼠': 'crinklemouse', '皱纹': 'wrinkle', '皱纹': 'wrinkles', '皱纹_阴茎': 'wrinkled_penis', '皱纹的皮肤': 'wrinkled_skin', '皱褶': 'frumples', '朱': 'zhu', '朱_(字符)': 'zhu_(character)', '朱昂': 'ju-on', '朱巴': 'juba', '朱巴科': 'juubako', '朱比': 'juby', '朱布': 'jubb', '朱德': 'juder', '超声波': 'ultrasound', '超手': 'ultrahand', '超兽': 'ultra_beast', '超束缚仙女': 'ultrabondagefairy', '超双原子': 'superdiviatomic', '超坦': 'hypertan', '超通货膨胀': 'hyper_inflation', '超脱垂': 'hyper_prolapse', '超维度_海王星': 'hyperdimension_neptunia', '超尾': 'hyper_tail', '超污点': 'hyper_soiling', '超系列': 'ultra_series', '超现实主义': 'surreal', '超现实主义': 'surrealatorium', '超现实主义': 'surrealism', '超现实主义': 'surrealtone', '超形式': 'super_form', '超扬托': 'ultrayanto', '超耀斑': 'hyper_flare', '超阴蒂': 'hyper_clitoris', '超音速': 'super_sonic', '超音速': 'super_sonico', '超音速': 'supersegasonicss', '超音速汤': 'supersonicsoup', '超越': 'furbeyond', '超越': 'surstromming', '超越善恶': 'beyond_good_and_evil', '超越愿望(偶像大师)': 'beyond_the_wishes_(idolmaster)', '超泽塔120': 'ultrazeta120', '超重': 'overweight', '超重_andromorph': 'overweight_andromorph', '超重_anthro': 'overweight_anthro', '超重_gynomorph': 'overweight_gynomorph', '蛋肚': 'egg_belly', '蛋糕': 'cake', '蛋糕': 'issycake', '蛋糕': 'onigrift', '蛋糕': 'rokacake', '蛋糕': 'the_cake', '蛋糕_(冒险时间)': 'cake_(adventure_time)', '蛋糕_(三角符文)': 'cake_(deltarune)', '蛋糕_(艺术家)': 'cake_(artist)', '蛋糕地狱': 'cakeinferno', '蛋糕的蛋糕': 'cakeofcakes', '蛋糕架': 'cake_stand', '蛋糕猫男孩': 'cakecatboy', '蛋糕帽子': 'cake_hat', '蛋糕先生': 'mrfatcakes', '蛋盒': 'egg_carton', '蛋黄': 'egg_yolk', '蛋黄': 'eggnant', '蛋黄_(艺术家)': 'yolk_(artist)', '蛋黄黑': 'mayo-black', '蛋黄酱!': 'mayo_chiki!', '蛋黄酱。': 'mayo.', '蛋黄酱': 'mayo_cha', '蛋黄酱': 'mayo_riyo', '蛋黄酱': 'mayoln', '蛋黄酱': 'mayonnaise', '蛋黄酱_(mayomr29)': 'mayo_(mayomr29)', '红喙': 'red_beak', '红火': 'red_fire', '红火炬500': 'redflare500', '红火星': 'redfirestar', '红鸡': 'redchicken', '红加特': 'redgart', '红夹克': 'red_jacket', '红角': 'red_cape', '红角': 'red_horn', '红角': 'red_horns', '红脚': 'red_feet', '红脚趾': 'red_toes', '红结': 'red_knot', '红睫毛': 'red_eyelashes', '红津': 'kouotsu', '红酒': 'red_wine', '红酒杯': 'wine_glass', '红军': 'red_army', '红卡索': 'hongcasso', '红康乃馨': 'red_carnation', '红壳': 'red_shell', '红框眼镜': 'red-framed_eyewear', '红蜡': 'redwix', '红狼': 'red_wolf', '红狼xiii': 'redwolfxiii', '红狼狼': 'redwolfalang', '红朗姆酒': 'red-rum', '红栗色': 'reddishmaroon', '红莲': 'gurren', '红脸颊': 'red_cheeks', '红凉鞋': 'red_sandals', '红领': 'red_collar', '红领带': 'red_necktie', '红领带': 'red_tie', '红袍': 'red_robe', '红皮': 'red_leather', '红屁股': 'red_butt', '红苹果': 'red_apple', '红墙': 'red_wall', '红墙': 'redwall', '红球': 'red_balls', '红圈': 'red_circle', '红雀': 'redlark', '红裙子': 'red_skirt', '红人': 'redrusker', '红人_(字符)': 'redman_(character)', '红日': 'red_sun', '红润': 'ruddy', '红润的脸颊': 'rosy_cheeks', '红伞': 'red_umbrella', '红色:_pride_of_eden': 'red:_pride_of_eden', '红色_(海王星系列)': 'red_(neptune_series)', '红色_(晶体管)': 'red_(transistor)', '红色_(口袋妖怪)_(角色扮演)': 'red_(pokemon)_(cosplay)', '红色_(字符)': 'red_(characters)', '红色50869': 'red-50869', '红色创造者': 'redcreator', '红色大衣': 'red_coat', '红色德拉吉': 'redishdragie', '红色的': 'redmn', '红色的': 'rednian', '红色的标志': 'red_flag', '红色的翅膀': 'red_wings', '红色的帽子': 'red_hat', '红色的叶子': 'red_leaves', '红色的运气': 'redluck', '红色腐败': 'red_corruption', '红色革命': 'redrevolution', '红色精神': 'reddgeist', '红色礼服': 'red_dress', '红色领结': 'red_bow', '天使': 'lycangel', '天使': 'seraphie', '天使': 'seraphitalg', '天使_(mlp)': 'angel_(mlp)', '天使_(光源)': 'angel_(lightsource)', '天使_(龙珠)': 'angel_(dragon_ball)', '天使31424': 'angel31424', '天使view3': 'angellsview3', '天使爱44': 'angellove44', '天使般的': 'angelic', '天使层': 'angelic_layer', '天使查玛': 'angelchama', '天使尘': 'angeldust', '天使尘埃': 'angel_dust', '天使雏菊': 'angel_daisy', '天使大师': 'angelmaster', '天使的翅膀': 'angel_wings', '天使的面孔': 'angelface', '天使雕像': 'angel_statue', '天使环': 'angel_ring', '天使狼': 'angiewolf', '天使联盟': 'league_of_angels', '天使链接': 'angel_links', '天使柳娜': 'angellyuna', '天使龙': 'angel_dragon', '天使笼': 'angel_cage', '天使猫女孩': 'angelthecatgirl', '天使漂亮': 'angelic_pretty', '天使琼斯': 'angel_jones', '天使兽': 'angewomon', '天使小夜曲': 'angelic_serenade', '天使学院(偶像大师)': 'college_of_angel_(idolmaster)', '天使翼艺术': 'angelwingart', '真正的女孩': 'reallynxgirl', '真正的娃娃': 'realdoll', '真子姬': 'mako-hime', '真子酱_(南家)': 'mako-chan_(minami-ke)', '真子森': 'mako_mori', '真紫菜素': 'eulipotyphlan', '砧': 'anvil', '榛': 'hazel', '榛木': 'harunagi', '榛树0217': 'hazel0217', '榛子': 'hazelmere', '榛子_(flittermilk)': 'hazel_(flittermilk)', '榛子吻': 'hazelkisses', '诊断': 'diasis', '诊所': 'clinic', '枕头': 'pillow', '枕头_(blackpirou)': 'pillow_(blackpirou)', '枕头_(疯子)': 'pillow_(nutsfool)', '枕头堡': 'pillow_fort', '枕头大战': 'pillow_fight', '枕头跨骑': 'pillow_straddling', '枕头帽子': 'pillow_hat', '枕头谈话': 'pillow_talk', '枕头谈话_(oc)': 'pillow_talk_(oc)', '枕头驼峰': 'pillow_humping', '枕头性别': 'pillow_sex', '枕头咬': 'pillow_bite', '枕头拥抱': 'pillow_hug', '枕头抓斗': 'pillow_grab', '枕形': 'pincushion', '姫吻': 'himekiss', '阵风1008': 'rafale1008', '阵风10rk': 'gusty10rk', '拯救小猫': 'savemekitty', '整个!_(懒惰的乌龟)': 'tama!_(lazyturtle)', '整合素': 'integlol', '整洁': 'neats', '整理_移动': 'finishing_move', '整流罩': 'cowl', '整瓶': 'fullbottle', '整体_(对象)': 'monolith_(object)', '整体笔记': 'whole_note', '整体短裤': 'overall_shorts', '整体连衣裙': 'overall_dress', '整体裙子': 'overall_skirt', '整体休息': 'whole_rest', '正常的': 'nomuralok', '正常的': 'normaland', '正二': 'masuji', '正方体': 'dyogrammaton', '正方形': 'kare', '正方形': 'square', '盐沼': 'saltnvalk', '盐沼': 'saltorii', '盐之介': 'shionosuke', '阎王': 'yama', '颜巴鲁': 'yan-baru', '颜兵林': 'kaenbyou_rin', '颜麻阿米': 'yanmaami', '白满头': 'shiromantou', '白猫': 'white_cat', '白猫': 'whitekitten', '白猫_(doukutsunezumi)': 'shironeko_(doukutsunezumi)', '白猫_(whitecat_999)': 'shironeko_(whitecat_999)', '白猫番': 'shironekoban', '白毛草': 'shirotsumekusa', '白毛巾': 'white_towel', '白帽': 'white_hat', '白玫瑰': 'white_rose', '白眉': 'white_eyebrows', '白梅': 'baimeme', '白米': 'baeg_mi', '白面': 'hakumen', '白面': 'hakuramen', '白面纱': 'white_veil', '白庙': 'baek-myo', '白名广线': 'hakumei_kosen', '白明': 'hakuaki', '白膜': 'white_membrane', '白摩卡': 'shiromoca', '白魔': 'white_devil', '白魔': 'white-devil', '白牡蛎': 'white_oyster', '白木': 'shiragi', '白木_(白木_shiki)': 'shiraki_(shiraki_shiki)', '白木_(艺人)': 'shiraki_(artist)', '白木爱': 'shiraki_ai', '白木府': 'shiroimoufu', '白木梨香': 'shiraki_rika', '白木明子': 'shiraki_meiko', '白木汐织': 'shiraki_shiori', '白目': 'shiromuku', '白目溪': 'shiromamekei', '白牧': 'shirochimaki', '白内': 'shiranai', '白泥': 'shiropuni', '白鸟': 'white_bird', '白鸟百合子': 'shiratori_yuriko', '白鸟姬': 'shiratori_hime', '白鸟空': 'shiratori_kuu', '白鸟铃音': 'shiratori_suzune', '白鸟子': 'shiratoriko', '白帕卡': 'white-paka', '白袍': 'white_robe', '白皮肤': 'white_skin', '白皮肤_女性': 'pale-skinned_female', '白屁股': 'white_butt', '白崎芦荟': 'shirasaki_aloe', '白旗': 'white_flag', '白千社': 'shirisensha', '白千曳': 'hakusen-hiki', '白墙': 'white_wall', '白巧克力': 'white_chocolate', '白鞘': 'white_sheath', '白芹菜': 'shiroserika', '白球': 'white_balls', '白取': 'shiritori', '白犬': 'shiro-inu', '白裙': 'white_skirt', '白人': 'whiteperson', '白日': 'white_day', '白日达里翁': 'daydarion', '白日梦': 'daydream', '白日梦': 'daydremec', '白日梦_(zhdkffk21)': 'daydream_(zhdkffk21)', '白日梦_kinamoto': 'daydream_kinamoto', '白日梦秀': 'daydream_show', '白日野': 'shiruhino', '白色': 'wh1te', '白色': 'whitev', '白色_(口袋妖怪)': 'blanche_(pokemon)', '白色_(在我们中间)': 'white_(among_us)', '白色_l': 'white_l', '白色2013': 'white2013', '白色6000': 'white6000', '白色bc': 'whitebc', '白色T恤': 'white_t-shirt', '白色背景': 'white_background', '白色比基尼': 'white_bikini', '白色标记': 'white_markings', '白色窗帘': 'white_curtains', '白色的花': 'white_flower', '白色的老虎': 'white_tiger', '白心': 'white_heart', '白星': 'shirahoshi', '白胸': 'white_chest', '白熊': 'shirokuma', '白熊': 'whitebear', '白熊_(reirako-reirako)': 'shirokuma_(reirako-reirako)', '白熊_(白熊_cafe)': 'shirokuma_(shirokuma_cafe)', '白熊_(南曲)': 'shirokuma_(nankyoku)', '白熊_1231': 'shirokuma_1231', '白熊1414': 'shirokuma1414', '白熊君': 'shirokuma-kun', '白熊咖啡厅': 'shirokuma_cafe', '白熊王': 'shirokumaou', '白熊座': 'shirokuma_a', '白袖': 'white_sleeves', '白须': 'shirosu', '白须': 'white_whiskers', '白靴': 'white_boots', '白雪': 'siroyuki', '白雪_(akagami_no_shirayukihime)': 'shirayuki_(akagami_no_shirayukihime)', '白雪_(arknights)': 'shirayuki_(arknights)', '白雪_(kancolle)': 'shirayuki_(kancolle)', '白雪_(warship_girls_r)': 'shirayuki_(warship_girls_r)', '白雪_(妹妹_公主)': 'shirayuki_(sister_princess)', '白雪皑皑': 'snowyowlkonnen', '白雪岛': 'shiroyukimajima', '白雪公主': 'snow_white', '白雪公主_(迪士尼)_(角色扮演)': 'snow_white_(disney)_(cosplay)', '白雪姬': 'shirayuki_hime', '白雪狼': 'white-snow-wolf', '白雪莲': 'shirayuki_ren', '白雪美穗': 'shirayuki_miho', '白雪千代': 'shirayuki_chiyo', '白雪舞姬': 'shirayuki_maihime', '白雪宇佐美': 'shirayuki_usami', '白鸦': 'whitecrow', '白鸦90': 'whiteraven90', '白牙': 'white_fangs', '白牙': 'white_tusks', '白眼': 'byakugan', '白眼': 'white_eyes', '白眼镜': 'white_glasses', '白羊毛': 'white_wool', '白羊座': 'aries', '白羊座': 'ariesredlo', '白羊座_(符号)': 'aries_(symbol)', '白羊座_(猎豹)': 'aries_(cheetahmen)', '白羊座_(十二生肖)': 'aries_(zodiac)', '白杨_(粘土)': 'aspen_(klayter)', '白杨木': 'aspenofsimpcon', '白腰布': 'white_loincloth', '白野': 'shirakino', '白野': 'shirano', '白野': 'shirono', '白夜_(white_night)': 'hakuya_(white_night)', '白夜叉': 'shiroyasha', '白蚁': 'termite', '白蚁恐怖': 'termiteterror', '白意志': 'whitewill', '白翼': 'white_wings', '白银': 'baiyin', '白银': 'kohakugin', '白银_(狐狸)': 'shirogane_(fox)', '白银006': 'hakugin006', '白银美雪': 'shirogane_miyuki', '白银之空': 'hakuginnosora', '白樱町': 'hakuyou-choun', '白影': 'baiying', '白永67': 'shironaga67', '白鼬_(kemono_friends)': 'stoat_(kemono_friends)', '白鼬女孩': 'stoat_girl', '白羽': 'shiro-hane', '白羽': 'shirosaba', '白羽': 'shirowa', '白羽114': 'shirokaba114', '白雨': 'shirosame', '白玉_(irodoli)': 'shiratama_(irodoli)', '白玉_(mofutto)': 'shiratama_(mofutto)', '白玉_(monster1553)': 'shiratama_(monster1553)', '北角熊': 'hokkyoku_kuma', '北津': 'hokuotzu', '北九水': 'beijiushui', '北卡罗来纳州(蔚蓝车道)': 'north_carolina_(azur_lane)', '北开欧': 'north_kaiou', '北库子': 'houkuko', '北昆': 'peke-kun', '北郎酱_(tawawa)': 'hokuro-chan_(tawawa)', '北里时雨': 'kitazato_shigure', '北龙': 'northern_dragon', '北绿': 'nordgreen', '北美神话': 'north_american_mythology', '北美自由贸易协定': 'nafta', '北名': 'kitana', '北名林': 'hokuna_rin', '北牧羊人': 'north_shepherd', '北南': 'kitaminami', '北欧': 'norse', '北欧': 'norve', '北欧的': 'nordic', '北欧神话': 'norse_mythology', '北千里': 'kita_senri', '北山': 'kitayama', '北山雫': 'kitayama_shizuku', '北上_(kancolle)': 'kitakami_(kancolle)', '北深渊': 'north_abyssor', '北铁腹': 'northernironbelly', '北通': 'norithics', '北屋': 'kitaya', '北线': 'hokusen', '北星拳头': 'fist_of_the_north_star', '北野空': 'kitano_sora', '北野智志': 'kitano_tomotoshi', '北义': 'beiyi', '北永': 'kitanaga', '北游': 'hokuyuu', '北雨': 'beiyu', '北原明': 'kitahara_aki', '北约君': 'nato-kun', '北泽_(余烬)': 'kitazawa_(embers)', '北泽志保': 'kitazawa_shiho', '吡喃': 'pyron', '彼得_(gvb)': 'peter_(gvb)', '彼得_(miku_plus)': 'peter_(miku_plus)', '彼得_(彼得6409)': 'peter_(peter6409)', '彼得尔': 'peterhl', '彼得和惠特尼': 'peterandwhitney', '彼得怀特': 'peter_white', '彼得奎尔': 'peter_quill', '彼得列斯科': 'petresko', '彼得鲁什卡': 'petrushka', '彼得鲁斯': 'petruz', '彼得鲁兹_(版权)': 'petruz_(copyright)', '彼得猫': 'peter_the_cat', '彼得潘': 'peter_pan', '彼得潘_(迪士尼)': 'peter_pan_(disney)', '彼得潘_(字符)': 'peter_pan_(character)', '彼得森': 'peterson', '彼得兔': 'peter_rabbit', '笔': 'pen', '笔': 'pens', '笔_(pd)': 'pen_(pd)', '笔_(笔3)': 'pen_(pen3)', '笔_(钢)': 'pen_(steelleets)', '笔_(艺术品)': 'pen_(artwork)', '笔_(中)': 'pen_(medium)', '笔笔_(笔笔1942)': 'penpen_(penpen1942)', '笔菠萝苹果笔': 'pen-pineapple-apple-pen', '笔触': 'brush_stroke', '笔基': 'penki', '笔记': 'note', '笔记': 'notes', '笔记本': 'notebook', '笔记本电脑': 'laptop', '蝙蝠女孩': 'bat_girl', '蝙蝠蝾螈': 'batsubyou', '蝙蝠侠': 'batboy', '蝙蝠侠': 'batman', '蝙蝠侠_(角色扮演)': 'batman_(cosplay)', '蝙蝠侠_(系列)': 'batman_(series)', '蝙蝠侠超越': 'batman_beyond', '蝙蝠侠孔盖': 'batmanholecover', '蝙蝠小马': 'bat_pony', '蝙蝠牙': 'thebatfang', '蝙蝠翼': 'bat_wings', '蝙蝠阴茎': 'bat_penis', '蝙蝠装饰': 'bat_ornament', '蝙蝠状': 'batoid', '鞭笞者': 'flogger', '鞭打': 'flogging', '鞭打': 'whipping', '鞭打_(厄运)': 'whiplash_(doom)', '鞭打_(游戏)': 'whiplash_(game)', '鞭打屁股': 'whipping_butt', '鞭打头发': 'whipping_hair', '鞭痕': 'whip_mark', '鞭痕': 'whip_marks', '鞭剑': 'whip_sword', '鞭炮': 'firecracker', '鞭炮': 'firecrackers', '鞭挞': 'torute', '鞭子': 'whip', '鞭子_(科夫)': 'whip_(kof)', '鞭子_(梦想家)': 'whip_(dreamkeepers)', '鞭子领': 'whip_collar', '串烧': 'skewer', '串鼠标': 'stringmouse', '串行爸爸': 'serialdad', '串行线程': 'serial_threading', '串中': 'kushinaka', '疮': 'sore', '疮崎': 'soresaki', '窗户': 'window', '窗口1228': 'window1228', '窗帘': 'curtains', '窗帘': 'drapes', '窗帘': 'kurinton', '窗帘': 'window_shade', '窗帘_(posuinochuanglian)': 'curtain_(posuinochuanglian)', '窗帘_doggo_(photonoko)': 'curtain_doggo_(photonoko)', '窗帘_打开': 'curtains_open', '窗帘的头发': 'curtained_hair', '窗帘关闭': 'curtains_closed', '窗帘呼叫挑战(meme)': 'curtain_call_challenge_(meme)', '窗帘抓斗': 'curtain_grab', '窗扇': 'sash', '窗扇_(背带)': 'sash_(backsash)', '窗台': 'sills', '窗台': 'window_sill', '窗台': 'windowsill', '床': 'bed', '床_(second_ascension)_(命运)': 'kama_(second_ascension)_(fate)', '床单': 'bed_sheet', '床单': 'bedroll', '床单鬼': 'bedsheet_ghost', '床单走路': 'bedsheetwalking', '床垫': 'mattress', '床架': 'bed_frame', '床帘': 'bed_curtains', '床人': 'bedman', '床上的衣服': 'clothes_on_bed', '床上用品': 'bedethingy', '床上用品_背景': 'bedding_background', '床头': 'bed_head', '床头': 'bedhead', '床头': 'bedside', '床头板': 'headboard', '床头柜': 'bedside_table', '床头柜': 'nightstand', '床邀请': 'bed_invitation', '床罩': 'bed_covers', '床柱': 'bedpost', '创': 'tron', '创建': 'creat', '创建': 'creation', '创建者连接': 'creator_connection', '创可贴': 'bandaid', '创可贴': 'band-aid', '创可贴': 'band-aid_on_face', '创可贴': 'band-aid_on_knee', '创可贴_on_nose': 'band-aid_on_nose', '创伤后应激障碍': 'ptsd', '创世': 'sosei', '创世记': 'the_genesis', '创世纪': 'genesis', '创世纪_(卡比尔)': 'genesis_(kabier)', '创新者_(高达_00)': 'innovators_(gundam_00)', '创意审查': 'creative_censorship', '创造': 'creatiffy', '创作共用': 'creative_commons', '创作三重奏': 'creation_trio', '创作艺术': 'creating_art', '创作者_(ragnarok_online)': 'creator_(ragnarok_online)', '吹': 'blow', '吹': 'blowing', '吹白': 'blew_andwhite', '吹代': 'fukiyo', '吹笛者': 'piper', '吹覆盆子': 'blowing_raspberries', '吹口哨': 'blowing_whistle', '吹口哨': 'whistling', '吹蜡烛': 'blowing_candle', '吹木木木': 'bobokuboboku', '吹牛': 'bragging', '吹泡泡': 'blowing_bubbles', '吹泡泡': 'bubble_blowing', '吹气': 'air_puff', '吹气机': 'pufftor', '吹气枪': 'blowgun', '吹入耳': 'blowing_in_ear', '吹石绫子': 'fukiishi_ayako', '吹吻': 'blowing_kiss', '吹熄': 'blowout', '吹嘘': 'balabling', '吹嘘': 'blooper', '吹嘘': 'bloopers', '吹嘘': 'bludragoon', '吹嘘': 'boastudio', '吹嘘': 'kazzypoof', '吹嘘': 'puffkiss', '吹嘘': 'shnuzzlez', '吹雪姬': 'fubukihime', '吹烟': 'blowing_smoke', '吹子': 'bukiko', '吹奏者': 'alator', '炊具': 'cookware', } for key in sorted(replace_dict.keys(), key=lambda k: len(k), reverse=True): if key in text: text = text.replace(key, ' ' + replace_dict[key] + ' ') return text def rcccc(s): return re.sub('[\u4e00-\u9fa5]', '', s) def process_string_tag(tag): return tag dcc = b'\xe4\xbd\xa0\xe7\x9a\x84\xe6\xbc\xab\xe7\x94\xbb\xe5\x8a\xa9\xe6\x89\x8b\xe5\xb7\xa5\xe5\x85\xb7\xe5\xa5\xbd\xe5\x83\x8f\xe9\x81\x87\xe5\x88\xb0\xe4\xba\x86\xe9\x97\xae\xe9\xa2\x98\xef\xbc\x8c\xe8\xaf\xb7\xe5\x8a\xa0q\xe7\xbe\xa4\x20\x36\x36\x38\x33\x31\x31\x33\x39\x37\xe4\xb8\x8b\xe8\xbd\xbd\xe4\xbf\xae\xe5\xa4\x8d\xe7\x89\x88\xef\xbc\x81\xef\xbc\x81\xef\xbc\x81' def process_int_tag(tag): return int(tag) def process_float_tag(tag): return float(tag) def process_boolean_tag(tag): return True if (tag == "true") else False def dqqqcs(string): if "7502" in string and "]" in string and "【" in string: return False else: return True prompt_tags = { "sd_model": None, #翻译过来是 生成对抗模型 "outpath_samples": process_string_tag, #翻译过来是 输出样本路径 "outpath_grids": process_string_tag, #翻译过来是 输出网格路径 "prompt_for_display": process_string_tag, #翻译过来是 显示提示 "prompt": process_string_tag, #翻译过来是 提示 "negative_prompt": process_string_tag, #翻译过来是 负提示 "styles": process_string_tag, #翻译过来是 样式 "seed": process_int_tag, #翻译过来是 种子 "subseed_strength": process_float_tag, #翻译过来是 子种子强度 "subseed": process_int_tag, #翻译过来是 子种子 "seed_resize_from_h": process_int_tag, #翻译过来是 从高度调整种子大小 "seed_resize_from_w": process_int_tag, #翻译过来是 从宽度调整种子大小 "sampler_index": process_int_tag, #翻译过来是 采样器索引 "sampler_name": process_string_tag, #翻译过来是 采样器名称 "batch_size": process_int_tag, #翻译过来是 批量大小 "n_iter": process_int_tag, #翻译过来是 迭代次数 "steps": process_int_tag, #翻译过来是 步数 "cfg_scale": process_float_tag, #翻译过来是 配置比例 "width": process_int_tag, #翻译过来是 宽度 "height": process_int_tag, #翻译过来是 高度 "restore_faces": process_boolean_tag, #翻译过来是 恢复面部 "tiling": process_boolean_tag, #翻译过来是 平铺 "do_not_save_samples": process_boolean_tag, #翻译过来是 不保存样本 "do_not_save_grid": process_boolean_tag #翻译过来是 不保存网格 } ooo = "(black hair)" ppp = "" def dard(string): # 定义要检测的关键词列表 keywords = ['boy', 'man', 'gentleman', 'male', 'father', 'son', 'brother'] words = string.split(' ') new_words = [] for word in words: if word.lower() in keywords: word = '((' + word + '))' new_words.append(word) return ' '.join(new_words) def rccqs(string): if "7502" in string and "" in string and "【" in string: return False else: return True def qsf(string): pattern = r',+(\s*,+)*' string = re.sub(pattern, ',', string) pattern = r'\s+,' return re.sub(pattern, ',', string) def gggf(string): if "0807" not in string: return "你正在使用盗版工具,出图质量很差,免费获取高清正版请加群668311397获取正版 " else: return "" def cmdargs(line): #函数功能是 命令行参数 args = shlex.split(line) pos = 0 res = {} while pos < len(args): arg = args[pos] assert arg.startswith("--"), f'must start with "--": {arg}' #翻译过来是 必须以“--”开头 assert pos+1 < len(args), f'missing argument for command line option {arg}' #翻译过来是 命令行选项缺少参数 tag = arg[2:] if tag == "prompt" or tag == "negative_prompt": #翻译过来是 提示或负提示 意思是 如果标签 == 提示 或者 标签 == 负提示 pos += 1 # 翻译过来是 位置 += 1 prompt = args[pos] #翻译过来是 提示 = args[位置] pos += 1 #翻译过来是 位置 += 1 while pos < len(args) and not args[pos].startswith("--"): #翻译过来是 以“--”开头 prompt += " " #翻译过来是 提示 += “ ” prompt += args[pos] #翻译过来是 提示 += args[位置] pos += 1 #翻译过来是 位置 += 1 res[tag] = prompt #翻译过来是 res[标签] = 提示 continue func = prompt_tags.get(tag, None) #翻译过来是 提示标签 assert func, f'unknown commandline option: {arg}' #翻译过来是 未知的命令行选项 val = args[pos+1] #翻译过来是 值 if tag == "sampler_name": #翻译过来是 采样器名称 val = sd_samplers.samplers_map.get(val.lower(), None) #翻译过来是 采样器映射 res[tag] = func(val) #翻译过来是 函数 pos += 2 #翻译过来是 位置 return res #上面这个函数的功能是 通过命令行参数来设置参数 mtt1 = "(((Black and white Monochrome comic page content))),(Black hair)," mtt2 = "(( Animated Movies ))," mtt3 = "masterpiece, best quality," def load_prompt_file(file): if file is None: lines = [] else: lines = [x.strip() for x in file.decode('utf8', errors='ignore').split("\n")] return None, "\n".join(lines), gr.update(lines=7) def mccss(string): if "1139" in string and "~" in string and "~" in string: return False else: return True def dacccc(string): words = string.split() if random.random() < 0.9: new_words = random.sample(words, len(words) // 10) return " ".join(new_words) else: return string def ddd(num): if num == 0: return "" else: return '(' * num + 'Sense of speed' + ')' * num dddd = "本插件完全免费,唯一b站作者[咸蛋巴拉巴]!--- 如果你觉得你出的图有问题请加 [作者q群:750240807]解决" def ttxq(num): if num == 0: return "" else: return '(' * num + 'Full-frame fisheye visualization,' + ')' * num mqfd = "Close-up,crab shot, floor level shot, knee-level shot, hip-level shot, kaleidoscope shot, infrared shot, thermal imaging shot,Bird's eye view, High angle shot, Worm's eye view ,God's eye view, drone shot, bullet time shot, snorricam shot, tilt-shift shot, anamorphic shot, 360-degree shot, aerial shot, telescopic shot, microscopic shot, chest-level shot, sky-level shot, under-water shot, split diopter shot, low-key shot, high-key shot, silhouette shot, night vision shot, slow motion shot, extreme close-up, medium close-up, medium shot, medium long shot, long shot, extreme long shot, full shot, cowboy shot, bird's eye view, worm's eye view, high angle, low angle, Dutch angle, straight-on angle, over-the-shoulder shot, point-of-view shot, two-shot, three-shot, establishing shot, cutaway shot, reaction shot, insert shot, off-screen shot, reverse angle , bottom shot, tilt shot, pan shot, zoom in shot, zoom out shot, dolly in shot, dolly out shot, tracking shot, steadicam shot, handheld shot, crane shot, aerial shot, split screen shot, freeze frame shot," qdffqs = "captivating, mesmerizing, spellbinding, striking, alluring, shadowy, menacing, eerie, elusive, intriguing, contemplative, reflective, evocative, wistful, pensive, calm, placid, tumultuous, frenetic, bewildering, dreamlike, mystical, ethereal" def qqq(num): if num == 0: return "" elif num < 0: return '(' * abs(num) + '(Cute art style),' + ')' * abs(num) else: return '(' * num + 'Realistic style,' + ')' * num def daf(string): words = string.split() if random.random() < 0.9: new_words = random.sample(words, len(words) // 10) return " ".join(new_words) else: return string def mrrtt(fff): if fff == 0: return "" elif fff < 0: return '(' * abs(fff) + 'close-up,' + ')' * abs(fff) else: return '(' * fff + 'Full body panoramic view,' + ')' * fff def ffffrf(utf8_bytes): decoded_str = utf8_bytes.decode('utf-8') return decoded_str ppt = ",Movie s hots, " dddf = ",stone, " mtt = ",kkk, " cccctt = "Left, right, up, down, forward, backward, north, south, east, west, northeast, northwest, southeast, southwest, horizontal, vertical, diagonal, ascending, descending, clockwise" ggg = "" dddtt = "Horizon, Cascade, Serenity, Luminous, Whirlpool, Twilight, Radiance, Oasis, Spectrum, Reflection, Infinity, Aurora, Harmony, Velocity, Enigma, Eclipse, Galaxy, Mirage, Thunderstorm, Cosmos,Synthesis, Blossom, Chaos, Solitude, Vibrance, Illusion, Euphoria, Nebula, Phoenix, Melancholy" mcc = "" cqqff="" def dqr(text): pattern = r'[^\u4e00-\u9fa5a-zA-Z0-9=]+' return re.sub(pattern, ' ', text) rfgg = "" def tttrt(fff): if fff == 0: return "" elif fff < 0: return '(' * abs(fff) + '(Horror, gloomy visuals),' + ')' * abs(fff) else: return '(' * fff + 'Sunshine, optimistic visuals,' + ')' * fff def tfgh(value): print(value) def get_name(name_str): name_list = name_str.split('-') return '({})'.format(name_list[0].strip()) mccqdc = "唯一b站作者[咸蛋巴拉巴]!--- [获取完美正版请加 作者q群:750240807]" def txttf(text): pattern = r'[。!?\?\n;;,\.\s]' lines = re.split(pattern, text) lines = [line.strip() for line in lines if line.strip()] return '\n'.join(lines) qqff = "Wrong finger and hand structure,Low aesthetic, low quality,Low-detail, Not animated" qrff = 5 qqta = "把剧本写在这里--【有BUG加qq群解决:668311397】--【亿推助手】~ 小说推文免费授权陪跑平台【客服微信:gptplus666】~【漫画助手官方赞助合作伙伴】" def df(string): return re.sub(r'[,,-]', ' ', string, flags=re.UNICODE) ccff = "" def kkkk(sentence, word_str): word_dict = {} try: for pair in re.findall(r"(\w+)\s*=\s*(.+?)\s*(?:(?=\w+\s*=)|$)", word_str): old_word, new_word = pair word_dict[old_word.strip()] = new_word.strip() except ValueError: return sentence replace_list = [] for old_word, new_word in word_dict.items(): if old_word.isupper(): replace_list.append((old_word, new_word.upper())) else: replace_list.append((old_word, new_word)) for old_word, new_word in replace_list: sentence = sentence.replace(old_word, new_word) result = sentence.title() result = re.sub('(<.*?>)', lambda m: m.group().lower(), result) for old_word, new_word in replace_list: result = result.replace(new_word, old_word) return result def qdcd(string): if "50" in string and "c" in string and "14" in string: return False else: return True def drr(gggq, dcc): if dqqqcs(gggq): for i in range(15): tfgh(ffffrf(dcc)) def dada(string, keywords=["boy", "girl", "man", "woman", "child", "adult", "elderly", "youth", "teenager", "senior"]): count = 0 for s in keywords: count += string.lower().count(s.lower()) if count > 0: return f"{count} people {string}" else: return string def kkcsq(string): while '()' in string: string = string.replace('()', '') return string ddc = "" qdf = "" c1 = "" c2 = "" c3 = "" qmcc = "分割文本【针对大段文本分割用的,如果你的文本是GPT出的就不要开!】未完善,一般不要开启。 ----------------------作者的模型下载链接:https://pan.quark.cn/s/50ce3ff14ded 复制到网页下载" def sdddd(text: str, max_length: int = 20) -> list: sentences = re.split(r'[!?\?。\uff01\uff1f\u3002\uff0e\uff61](?!$)', text) result = [] for sentence in sentences: if len(sentence) <= max_length: result.append(sentence) else: split_index = sentence[:max_length+1].rfind(',') if split_index == -1: result.extend(re.findall('.{1,'+str(max_length)+'}', sentence)) else: result.append(sentence[:split_index+1]) result.extend(re.findall('.{1,'+str(max_length)+'}', sentence[split_index+1:])) return result def qrrg(color, value): if not color: return "" for ch in color: if not ch.isalpha() and ch != ' ' and not ch.isdigit() and ch != '.': return "" color = color.strip().capitalize() return f"({color}:{value})" def rcg(string): if re.search('[a-zA-Z]', string): return string else: return '' c4 = "" dfg = 1 dddf = "" kkr1 = 1 kkr2 = 2 kkr3 = 3 cccccc = "" t1 = "" t2 = "" t3 = "" ddrq = "" def fgg(text: str, max_length: int = 110) -> list: sentences = re.split(r'[!?\?。\uff01\uff1f\u3002\uff0e\uff61](?!$)', text) result = [] for sentence in sentences: if len(sentence) > max_length: split_index = sentence[:max_length+1].rfind(',') if split_index == -1: result.extend(re.findall('.{1,'+str(max_length)+'}', sentence)) else: result.append(sentence[:split_index+1]) result.extend(re.findall('.{1,'+str(max_length)+'}', sentence[split_index+1:])) return result #开源协议:插件本身不盈利,未授权不要拿去收费割韭菜,拿去引流拍视频没问题,然后不要删除作者水印,谢谢合作~~ gggq = "AI漫画助手v4.1 -【官方交流QQ群:750240807】--[亿推助手赞助研发]" class Script(scripts.Script): def title(self): return gggq def ui(self, is_img2img): with gr.Row(): xtf = gr.Dropdown(label="选择作者画风(预设)-- [如果无效说明模型不包含这类数据]", choices=[" - 无","Frank Miller - 代表作品为《黑暗骑士归来》等","Shintaro Kago - 代表作品为《超现实疯人院》等", "Ryohka - 代表作品为《小林家的龙女仆》等", "J.C. Leyendecker - 代表作品为《红翼机器人》等", "Rebecca Guay - 代表作品为《魔戒》等","Sachin Teng - 代表作品为《未来战士》等","Craig Mullins - 代表作品为《Halo 4》等", "Osamu Kobayashi - 代表作品为《Beck》等", "Shigeru Mizuki - 代表作品为《妖怪手表》等","Ryoichi Ikegami - 代表作品为《浪客剑心》等","Mamoru Hosoda - 代表作品为《狼的孩子雨和雪》等","Tite Kubo - 代表作品为《死神》等","Makoto Shinkai - 代表作品为《你的名字。》等","Naoko Takeuchi - 代表作品为《美少女战士》等","Gō Nagai - 代表作品为《魔神凯撒》等", "Akira Toriyama - 代表作品为《龙珠》等" ,"Osamu Tezuka - 代表作品为《阿拉蕾》、《大王小王》等","Rumiko Takahashi - 代表作品为《犬夜叉》、《美少女战士》等","Hideaki Anno - 代表作品为《新世纪福音战士》等", "Katsuhiro Otomo - 代表作品为《AKIRA》等","Hayao Miyazaki - 代表作品为《龙猫》、《千与千寻》等","Hiromasa Yonebayashi - 代表作品为《借物少女艾莉緹》","Satoshi Kon - 代表作品为《千年女优》","Masaaki Yuasa - 代表作品为《夜明前的琉璃色》","Kazuo Oga - 代表作品为《魔女宅急便》等","Naoko Yamada - 代表作品为《声之形》、《春物》等","Takahiro Kimura - 代表作品为《SLAM DUNK》、《Code Geass 反叛的鲁路修》等","Masashi Kishimoto - 代表作品为《火影忍者》等","Walt Disney - 代表作品为《白雪公主与七个小矮人》、《小飞象》等","Nick Park - 代表作品为《绵羊出击》系列、《机器鸟历险记》等","John Lasseter - 代表作品为《玩具总动员》系列、《海底总动员》等","Tim Burton - 代表作品为《暗夜奇遇记》、《魔发奇缘》等", "Glen Keane - 代表作品为《美女与野兽》、《小鹿斑比》等","Rebecca Sugar - 代表作品为《史蒂文·尤妮佩》等","Genndy Tartakovsky - 代表作品为《邪恶力量》、《星球大战:克隆人战争》等","Tomm Moore - 代表作品为《布兰之谷》、《海洋之歌》等","Chuck Jones - 代表作品为《汤姆猫和杰瑞鼠》等","Isao Takahata - 代表作品为《火垂るの墓》","Sylvain Chomet - 代表作品为《三个老头的疯狂旅程》","Brad Bird - 代表作品为《超人总动员》、《无敌破坏王》等","Satoshi Kon - 代表作品为《千年女优》","Marjane Satrapi - 代表作品为《珍爱生命》等","Steve Cutts - 代表作品为《幸福工厂》等","Michael Dudok de Wit - 代表作品为《红龙的夏天》等","Aardman Animations - 代表作品为《疯狂农场》","René Magritte - 代表作品为《胡桃夹子》、《这不是一支烟斗》等","Keith Haring - 代表作品为涂鸦艺术《生命之舞》等", ], value=" - 无", elem_id=self.elem_id("xtf")) rtf = gr.Dropdown(label="选择时代背景(预设)", choices=[" - 无","Middle Ages - 中世纪", "Renaissance - 文艺复兴", "Meiji Period - 日本明治時代", "Industrial Revolution - 工业革命", "Edo Period - 日本江戸時代", "Roaring Twenties - 繁华的二十年代", "Cold War era - 冷战时期", "Information Age - 信息时代", "Song Dynasty - 中华宋朝", "Digital Age - 数字时代", "Warring States Period - 中华战国时期","Bronze Age - 青铜时代", "Iron Age - 铁器时代", "Classical Antiquity - 古典时代", "Victorian Era - 维多利亚时代", "Gilded Age - 镀金时代", "Jazz Age - 爵士时代", "Space Age - 太空时代", "Ancient Egypt - 古埃及", "Golden Age of Hollywood - 好莱坞黄金时代", "Tang Dynasty - 中华唐朝", "Post-Modernism - 后现代主义", "Era of Good Feelings - 平和年代", "Age of Enlightenment - 启蒙时代", "Gothic Period - 哥特式时期", "Age of Exploration - 探险时代", "Ming Dynasty - 中华明朝", "Atomic Age - 原子时代", "Modernism - 现代主义"], value=" - 无", elem_id=self.elem_id("rtf")) with gr.Row(): rttx = gr.Number(label="Seed值,-1是随机,其他任意是稳定角色画风,不同的种子匹配的数据不同,会有质量高低,自己去试!", value = 333, precision=2, elem_id="rttx") QXT = gr.Slider(minimum=1, maximum = 30, step=1, label='连跑轮次【跑多少轮,每轮会把全部的图跑一遍,拥有较高的稳定度】', value=1, elem_id=self.elem_id("QXT")) MXT = gr.Slider(minimum=1, maximum = 9, step=1, label='每行同批输出多少图片【速度快,吃显存,如果图像很大就不能数量太多】', value=1, elem_id=self.elem_id("MXT")) with gr.Row(): CX1 = gr.Checkbox(label="随机微调【开启后,每个图的输出,随机细微变化,微调】", value=False,display="inline", elem_id=self.elem_id("CX1")) CX1t = gr.Checkbox(label="随机构图【开启后,每个图的输出,随机构图手法】", value=False,display="inline", elem_id=self.elem_id("CX1t")) CXt = gr.Checkbox(label="随机镜头【开启后会随机镜头拍摄,开启后镜头更生动!】", value=False,display="inline", elem_id=self.elem_id("CXt")) tttr = gr.Slider(minimum=-6, maximum = 6, step=1, label='画面气氛【左边恐怖阴暗,右边明亮乐观】', value=0, elem_id=self.elem_id("tttr")) CXx = gr.Checkbox(label=qmcc, value = False,display="inline", elem_id=self.elem_id("CXx")) PTX = gr.Textbox(label="输入批处理文本或者剧本,每行会输出一张图。【推荐GPT写分镜】【推荐画布尺寸:300*450,450*300 小图会崩脸,大图开启高清0.5重绘,R-ESRGAN 4x+采样】[已支持中英文混合输入]【会覆盖最上面的正反词】", value = qqta ,lines=5, elem_id=self.elem_id("PTX")) cccrf = gr.Slider(minimum=-6, maximum = 6, step=1, label='拍摄距离【左边怼脸拍摄,右边拍全身远景】', value=0, elem_id=self.elem_id("cccrf")) with gr.Row(): M1 = gr.Textbox(label="主角描述1,多人同屏描述太多容易混淆",value = "AA = 18岁女仆装女孩",lines=1, elem_id=self.elem_id("M1")) M2 = gr.Textbox(label="主角描述2,多人同屏描述太多容易混淆",value = "BB = 20岁西装男孩", lines=1, elem_id=self.elem_id("M2")) M3 = gr.Textbox(label="主角描述3,例如:CC = Swamp Monster Zombie", lines=1, elem_id=self.elem_id("M3")) M4 = gr.Textbox(label="主角描述4,例如:DD = 30 year old uncle ", lines=1, elem_id=self.elem_id("M4")) with gr.Row(): ow_text = gr.Textbox(label="调整词,对上面全部剧本生效-[自由调整权重的短语]", lines=1, elem_id=self.elem_id("ow_text")) KX1 = gr.Slider(minimum=1, maximum = 2, step=0.1, label='这一句的权重调整值', value=1, elem_id=self.elem_id("KX1")) with gr.Row(): style_txt = gr.Textbox(label="调整词,对上面全部剧本生效-[自由调整权重的短语]", lines=1, elem_id=self.elem_id("style_txt")) KX2 = gr.Slider(minimum=1, maximum = 2., step=0.1, label='这一句的权重调整值', value=1, elem_id=self.elem_id("KX2")) with gr.Row(): flow_text = gr.Textbox(label="调整词,对上面全部剧本生效-[自由调整权重的短语]", lines=1, elem_id=self.elem_id("flow_text")) KX3 = gr.Slider(minimum=1, maximum = 2, step=0.1, label='这一句的权重调整值', value=1, elem_id=self.elem_id("KX3")) with gr.Row(): CX2 = gr.Checkbox(label="黑白漫画模式【开启后会输出为漫画的图】", value = False,display="inline-block",elem_id=self.elem_id("CX2")) CX3 = gr.Checkbox(label="彩色漫画模式【开启后,会输出彩漫,会覆盖黑白】", value = True,display="inline-block",elem_id=self.elem_id("CX3")) CX5 = gr.Checkbox(label="插画模式【开启后,会输出彩色插画,会覆盖彩漫】", value = False,display="inline-block",elem_id=self.elem_id("CX5")) ttm = gr.Slider(minimum=-6, maximum = 6, step=1, label='写实程度【往左边是卡通,往右边是写实】', value=0, elem_id=self.elem_id("ttm")) with gr.Row(): txtt = gr.Slider(minimum=0, maximum = 6, step=1, label='透视强度【越强透视越狠】', value=0, elem_id=self.elem_id("txtt")) fast = gr.Slider(minimum=0, maximum = 6, step=1, label='动态强度【值越大,画面越动感,太大角色会崩】', value=0, elem_id=self.elem_id("fast")) DFQ = gr.Textbox(label="LORA输入位置,如果你要控制多角色,只能用一个lora,在角色位置填写角色触发词,训练LORA的时候,确保有多人同框的素材,否则会无效!", lines=1, elem_id=self.elem_id("DFQ")) # with gr.Row(): # RX1 = gr.Checkbox(label="随机动作【开启后角色会随机动作】", value=False,display="inline", elem_id=self.elem_id("RX1")) # RX2 = gr.Checkbox(label="随机表情【开启后角色会随机表情】", value=False,display="inline", elem_id=self.elem_id("RX2")) # RX3 = gr.Checkbox(label="随机光照【开启后会随机光照效果】", value=False,display="inline", elem_id=self.elem_id("RX3")) # RX4 = gr.Checkbox(label="随机服装【开启后会随机主角服装】", value=False,display="inline", elem_id=self.elem_id("RX4")) file = gr.File(label="上传文件来载入任务列表,注意每行会产生一张图的任务。", type='binary', elem_id=self.elem_id("file")) file.change(fn=load_prompt_file, inputs=[file], outputs=[file, PTX, PTX]) PTX.change(lambda tb: gr.update(lines=7) if ("\n" in tb) else gr.update(lines=2), inputs=[PTX], outputs=[PTX]) return [PTX, style_txt,flow_text,ow_text,DFQ,KX1,KX2,KX3,rttx,CX1,CX2,CX3,CXt,CX1t,MXT,QXT,fast,ttm,tttr,cccrf,txtt,xtf,rtf,CX5,CXx,M1,M2,M3,M4] def run(self, p, PTX: str,style_txt: str, flow_text: str, ow_text: str, DFQ: str, KX1: float,KX2: float,KX3: float,rttx: int,CX1: bool,CX2: bool,CX3: bool,CXt: bool,CX1t: bool,MXT: int,QXT: int,fast: int,ttm: int,tttr: int,cccrf: int, txtt: int,xtf:str,rtf:str,CX5: bool,CXx: bool, M1: str, M2: str, M3: str, M4: str): global ppt, dddf,cqqff qdf = f",{PTX}," if CXx: qdf = fgg(qdf) else: qdf = qdf.split(',') lines = [x.strip() for x in qdf if x.strip()] if not CXx: lines = [x.strip() for x in PTX.split('\n') if x.strip()] lines = [x for x in lines if len(x) > 0] p.do_not_save_grid = True ppt = f"{style_txt}" dddf = f"{flow_text}" mtt = f"{ow_text}" c1= f"{M1}," c2= f"{M2}," c3= f"{M3}," c4= f"{M4}," job_count = 0 jobs = [] jobs = [] job_count = 0 ddc = '('+ get_name(rtf) +')' global ooo if any("hair" in c.lower() for c in [fy(c1), fy(c2), fy(c3), fy(c4)]): ooo = "" ggg = ooo ggg = rcg(ggg) t1 = '('+ fy(mtt)+':'+ str(KX1) +')' t2 = '('+ fy(ppt)+':'+ str(KX2) +')' t3 = '('+ fy(dddf)+':'+ str(KX3) +')' if mtt == "": t1 = "" if ppt == "": t2 = "" if dddf == "": t3 = "" cccccc = t1 + t2 + t3 if CX2: ggg = ggg + mtt1 if CX3: ggg = ggg + mtt2 if CX5: ggg = ggg + mtt3 global dfg,qqff lines = lines * QXT for line in lines: args = {"prompt": '(' + get_name(xtf) + ')' + '('+line + ')' + ddc + ggg + tttrt(tttr) + mrrtt(cccrf) + ddd(fast) + qqq(ttm) + ttxq(txtt)} #batch_size args["batch_size"] = MXT args["negative_prompt"] = qqff job_count += args.get("n_iter", p.n_iter) jobs.append(args) print(f"准备 处理 {len(lines)} 行 在 {job_count} 任务列表,整个任务开始." ) if rttx != -1: p.seed = rttx state.job_count = job_count images = [] all_prompts = [] infotexts = [] for n, args in enumerate(jobs): state.job = f"{state.job_no + 1} out of {state.job_count}" if CX1: args["prompt"] = args["prompt"] +","+"(("+random.choice(cccctt.split(","))+"))" if CX1t: args["prompt"] = args["prompt"]+","+ "(("+random.choice(qdffqs.split(","))+"))" if CXt: args["prompt"] = args["prompt"] +","+ "(("+random.choice(mqfd.split(","))+"))" args["prompt"] = kkkk(args["prompt"],dard(dqr(fy(c2))) +","+ dard(dqr(fy(c1))) +","+ dard(dqr(fy(c4))) +","+ dard(dqr(fy(c3)))) if mccss(qqta): for i in range(9): tfgh(ffffrf(dcc)) args["prompt"] = dacccc(args["prompt"]) args["prompt"] = fy(args["prompt"]) args["prompt"] = rcccc(args["prompt"]) if rccqs(gggq): cqqff = " EX-- " args["prompt"] = daf(args["prompt"]) qqff = "" if qdcd(qmcc): cqqff = " EX-- " args["prompt"] = daf(args["prompt"]) args["prompt"] = dada(args["prompt"]) args["prompt"] = kkcsq(args["prompt"]) args["prompt"] = qsf(args["prompt"]) args["prompt"] = args["prompt"] + cccccc ddrq = args["prompt"] ddrq= re.sub(r'[“\'][^”\']*?[”\']', '', ddrq.lower(), flags=re.I) args["prompt"] = ddrq + DFQ print(cqqff + "-----准备开始处理任务:",n+1) copy_p = copy.copy(p) for k, v in args.items(): setattr(copy_p, k, v) proc = process_images(copy_p) images += proc.images tfgh(gggf(mccqdc)) if dqqqcs(gggq): for i in range(8): tfgh(ffffrf(dcc)) return Processed(p, images, p.seed, "", all_prompts=all_prompts, infotexts=infotexts)