1 Star 1 Fork 0

Gzzz/emo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
owo-fast.json 57.71 KB
一键复制 编辑 原始数据 按行查看 历史
gz 提交于 2024-09-09 17:09 . first commit
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
{
"可爱猫": {
"type": "image",
"container": [
{
"text": "cat-心",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatheart.png'>"
},
{
"text": "cat-心碎",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatheartbroken.png'>"
},
{
"text": "cat-心自豪",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatheartpride.png'>"
},
{
"text": "cat-爱",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatlove.png'>"
},
{
"text": "cat-亲吻心",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatkissheart.png'>"
},
{
"text": "cat-依偎",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatsnuggle.png'>"
},
{
"text": "cat-舒适",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatcomfy.png'>"
},
{
"text": "cat-舒适流泪",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatcomftears.png'>"
},
{
"text": "cat-捂脸",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatfacepalm.png'>"
},
{
"text": "cat-0_0",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcat0_0.png'>"
},
{
"text": "cat-生气",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatangry.png'>"
},
{
"text": "cat-脸红",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatblush.png'>"
},
{
"text": "cat-咖啡",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatcoffee.png'>"
},
{
"text": "cat-哭泣",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatcry.png'>"
},
{
"text": "cat-死了",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatdead.png'>"
},
{
"text": "cat-困扰",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatdisturbed.png'>"
},
{
"text": "cat-恐惧",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatfearful.png'>"
},
{
"text": "cat-手枪",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatfingerguns.png'>"
},
{
"text": "cat-翻",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatflip.png'>"
},
{
"text": "cat-花",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatflower.png'>"
},
{
"text": "cat-同性恋",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatgay.png'>"
},
{
"text": "cat-中性",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatneutral.png'>"
},
{
"text": "cat-张嘴",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatopenmouth.png'>"
},
{
"text": "cat-伸手",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatsadreach.png'>"
},
{
"text": "cat-害怕",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatscared.png'>"
},
{
"text": "cat-咬头",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatnomblobcat.png'>"
},
{
"text": "cat-红色礼物",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatpresentred.png'>"
},
{
"text": "cat-阅读",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatread.png'>"
},
{
"text": "cat-喝汗",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatsipsweat.png'>"
},
{
"text": "cat-发火",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatsnapped.png'>"
},
{
"text": "cat-思考",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatthink.png'>"
},
{
"text": "cat-胜利",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcattriumph.png'>"
},
{
"text": "cat-嗯",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatumm.png'>"
},
{
"text": "cat-验证",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatverified.png'>"
},
{
"text": "cat-盒子",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatbox.png'>"
},
{
"text": "cat-笼子",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatcaged.png'>"
},
{
"text": "cat-垃圾",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatgooglytrash.png'>"
},
{
"text": "cat-耳机",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatheadphones.png'>"
},
{
"text": "cat-击掌",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcathighfive.png'>"
},
{
"text": "cat-融化",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatmelt.png'>"
},
{
"text": "cat-融化拇指",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatmeltthumb.png'>"
},
{
"text": "cat-不像这样",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatnotlikethis.png'>"
},
{
"text": "cat-一拳超人",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatsaitama.png'>"
},
{
"text": "cat-病态",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatyandere.png'>"
},
{
"text": "cat-偷看2",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatpeek2.png'>"
},
{
"text": "cat-躲猫猫",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatpeekaboo.png'>"
},
{
"text": "cat-照片",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatphoto.png'>"
},
{
"text": "cat-注意反转",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatattentionreverse.png'>"
},
{
"text": "cat-反向伸手",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatreachrev.png'>"
},
{
"text": "cat-挥手",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatwave.png'>"
},
{
"text": "cat-备用",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatalt.png'>"
},
{
"text": "cat-警察",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatpolice.png'>"
},
{
"text": "cat-震惊",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/blobcatshocked.png'>"
},
{
"text": "cat-彩虹",
"icon": "<img src='https://npm.elemecdn.com/[email protected]/ablobcatrainbow.png'>"
}
]
},
"线条狗": {
"type": "image",
"container": [
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-不要.gif\">",
"text": "linedog-不要"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-写不完了.gif\">",
"text": "linedog-写不完了"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-准备.gif\">",
"text": "linedog-准备"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-加油.gif\">",
"text": "linedog-加油"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-呸.gif\">",
"text": "linedog-呸"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-哼.gif\">",
"text": "linedog-哼"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-喂.gif\">",
"text": "linedog-喂"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-好棒.gif\">",
"text": "linedog-好棒"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-好痛.gif\">",
"text": "linedog-好痛"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-好耶.gif\">",
"text": "linedog-好耶"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-威胁.gif\">",
"text": "linedog-威胁"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-完成.gif\">",
"text": "linedog-完成"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-寻找.gif\">",
"text": "linedog-寻找"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-庆祝.gif\">",
"text": "linedog-庆祝"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-开心.gif\">",
"text": "linedog-开心"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-惊.gif\">",
"text": "linedog-惊"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-惊讶.gif\">",
"text": "linedog-惊讶"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-惊讶2.gif\">",
"text": "linedog-惊讶2"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-打你.gif\">",
"text": "linedog-打你"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-打你2.gif\">",
"text": "linedog-打你2"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-指.gif\">",
"text": "linedog-指"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-探头.gif\">",
"text": "linedog-探头"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-摇摆.gif\">",
"text": "linedog-摇摆"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-摊手.gif\">",
"text": "linedog-摊手"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-晃脚脚.gif\">",
"text": "linedog-晃脚脚"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-期待.gif\">",
"text": "linedog-期待"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-来了.gif\">",
"text": "linedog-来了"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-歪头.gif\">",
"text": "linedog-歪头"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-沮丧.gif\">",
"text": "linedog-沮丧"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-画圈圈.gif\">",
"text": "linedog-画圈圈"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-略.gif\">",
"text": "linedog-略"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-盯.gif\">",
"text": "linedog-盯"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-看窗外1.gif\">",
"text": "linedog-看窗外1"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-看窗外2.gif\">",
"text": "linedog-看窗外2"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-紧张.gif\">",
"text": "linedog-紧张"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-翘脚脚.gif\">",
"text": "linedog-翘脚脚"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-谢谢.gif\">",
"text": "linedog-谢谢"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-转圈.gif\">",
"text": "linedog-转圈"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-送你花花.gif\">",
"text": "linedog-送你花花"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-难过.gif\">",
"text": "linedog-难过"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-震惊.gif\">",
"text": "linedog-震惊"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-非常好.gif\">",
"text": "linedog-非常好"
},
{
"icon": "<img src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/linedog/linedog-颓废.gif\">",
"text": "linedog-颓废"
}
]
},
"小电视": {
"type": "image",
"container": [
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/6ea59c827c414b4a2955fe79e0f6fd3dcd515e24.png\">",
"text": "tv_doge"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/a8111ad55953ef5e3be3327ef94eb4a39d535d06.png\">",
"text": "tv_亲亲"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/bb690d4107620f1c15cff29509db529a73aee261.png\">",
"text": "tv_偷笑"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/180129b8ea851044ce71caf55cc8ce44bd4a4fc8.png\">",
"text": "tv_再见"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/b9cbc755c2b3ee43be07ca13de84e5b699a3f101.png\">",
"text": "tv_冷漠"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/34ba3cd204d5b05fec70ce08fa9fa0dd612409ff.png\">",
"text": "tv_发怒"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/34db290afd2963723c6eb3c4560667db7253a21a.png\">",
"text": "tv_发财"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/9e55fd9b500ac4b96613539f1ce2f9499e314ed9.png\">",
"text": "tv_可爱"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/09dd16a7aa59b77baa1155d47484409624470c77.png\">",
"text": "tv_吐血"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/fe1179ebaa191569b0d31cecafe7a2cd1c951c9d.png\">",
"text": "tv_呆"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/9f996894a39e282ccf5e66856af49483f81870f3.png\">",
"text": "tv_呕吐"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/241ee304e44c0af029adceb294399391e4737ef2.png\">",
"text": "tv_困"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/1f0b87f731a671079842116e0991c91c2c88645a.png\">",
"text": "tv_坏笑"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/093c1e2c490161aca397afc45573c877cdead616.png\">",
"text": "tv_大佬"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/23269aeb35f99daee28dda129676f6e9ea87934f.png\">",
"text": "tv_大哭"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/d04dba7b5465779e9755d2ab6f0a897b9b33bb77.png\">",
"text": "tv_委屈"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/a37683fb5642fa3ddfc7f4e5525fd13e42a2bdb1.png\">",
"text": "tv_害羞"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/7cfa62dafc59798a3d3fb262d421eeeff166cfa4.png\">",
"text": "tv_尴尬"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/70dc5c7b56f93eb61bddba11e28fb1d18fddcd4c.png\">",
"text": "tv_微笑"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/90cf159733e558137ed20aa04d09964436f618a1.png\">",
"text": "tv_思考"
},
{
"icon": "<img src=\"https://owo.imaegoo.com/bilibili/0d15c7e2ee58e935adc6a7193ee042388adc22af.png\">",
"text": "tv_惊吓"
}
]
},
"方块脸": {
"type": "image",
"container": [
{
"text": "Heybox—微笑",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube.png'>"
},
{
"text": "Heybox—并不简单",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_bingbujiandan.png'>"
},
{
"text": "Heybox-闭嘴",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_bizui.png'>"
},
{
"text": "Heybox-沧桑",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_cangsang.png'>"
},
{
"text": "Heybox-打脸",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_dalian.png'>"
},
{
"text": "Heybox-狗头",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_doge.png'>"
},
{
"text": "Heybox-感动",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_gandong.png'>"
},
{
"text": "Heybox-乖",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_guai.png'>"
},
{
"text": "Heybox-咕咕",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_gugu.png'>"
},
{
"text": "Heybox-汉",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_han.png'>"
},
{
"text": "Heybox-expression_cube_黑人问号",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_heirenwenhao.png'>"
},
{
"text": "Heybox-滑稽",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_huaji.png'>"
},
{
"text": "Heybox-加油",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_jiayou.png'>"
},
{
"text": "Heybox-惊讶",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_jingya.png'>"
},
{
"text": "Heybox-开心",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_kaixin.png'>"
},
{
"text": "Heybox-哭",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_ku.png'>"
},
{
"text": "Heybox-困",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_kun.png'>"
},
{
"text": "Heybox-哭泣",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_kuqi.png'>"
},
{
"text": "Heybox-怒",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_nu.png'>"
},
{
"text": "Heybox-喷水",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_penshui.png'>"
},
{
"text": "Heybox-凄凉",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_qiliang.png'>"
},
{
"text": "Heybox-生气",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_shengqi.png'>"
},
{
"text": "Heybox-睡觉",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_shuijiao.png'>"
},
{
"text": "Heybox-叹气",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_tanqi.png'>"
},
{
"text": "Heybox-摊手",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_tanshou.png'>"
},
{
"text": "Heybox-吐",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_tu.png'>"
},
{
"text": "Heybox-哇",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_wa.png'>"
},
{
"text": "Heybox-委屈",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_weiqu.png'>"
},
{
"text": "Heybox-微笑",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_weixiao.png'>"
},
{
"text": "Heybox-捂脸哭",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_wulianku.png'>"
},
{
"text": "Heybox-吓",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_xia.png'>"
},
{
"text": "Heybox-笑哭",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_xiaocry.png'>"
},
{
"text": "Heybox-喜欢",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_xihuan.png'>"
},
{
"text": "Heybox-学习",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_xuexi.png'>"
},
{
"text": "Heybox-晕",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_yun.png'>"
},
{
"text": "Heybox-赞",
"icon": "<img src='https://twikoo-magic.oss-cn-hangzhou.aliyuncs.com/Heybox/expression_cube_zan.png'>"
}
]
},
"大圆脸": {
"type": "image",
"container": [
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-3d眼镜.png\"\u003E",
"text": "heo-3d眼镜"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-EDG.png\"\u003E",
"text": "heo-EDG"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-LPL.png\"\u003E",
"text": "heo-LPL"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-beluga.png\"\u003E",
"text": "heo-beluga"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-不好意思.png\"\u003E",
"text": "heo-不好意思"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-不服吗.png\"\u003E",
"text": "heo-不服吗"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-亲亲.png\"\u003E",
"text": "heo-亲亲"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-伞兵.png\"\u003E",
"text": "heo-伞兵"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-倚墙笑.png\"\u003E",
"text": "heo-倚墙笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-值得肯定.png\"\u003E",
"text": "heo-值得肯定"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-偷偷看.png\"\u003E",
"text": "heo-偷偷看"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-傻笑.png\"\u003E",
"text": "heo-傻笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-再见.png\"\u003E",
"text": "heo-再见"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-出家人.png\"\u003E",
"text": "heo-出家人"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-击剑.png\"\u003E",
"text": "heo-击剑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-加班.png\"\u003E",
"text": "heo-加班"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-勉强笑.png\"\u003E",
"text": "heo-勉强笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-危险.png\"\u003E",
"text": "heo-危险"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-发红包.png\"\u003E",
"text": "heo-发红包"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-吃手.png\"\u003E",
"text": "heo-吃手"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-吃瓜.png\"\u003E",
"text": "heo-吃瓜"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-吐血.png\"\u003E",
"text": "heo-吐血"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-吵架.png\"\u003E",
"text": "heo-吵架"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-呦吼.png\"\u003E",
"text": "heo-呦吼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-呲牙笑.png\"\u003E",
"text": "heo-呲牙笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-哈士奇.png\"\u003E",
"text": "heo-哈士奇"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-哈士奇失去意识.png\"\u003E",
"text": "heo-哈士奇失去意识"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-哈士奇失望.png\"\u003E",
"text": "heo-哈士奇失望"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-哭泣.png\"\u003E",
"text": "heo-哭泣"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-唱歌.png\"\u003E",
"text": "heo-唱歌"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-喜欢.png\"\u003E",
"text": "heo-喜欢"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-嘿哈.png\"\u003E",
"text": "heo-嘿哈"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-大笑.png\"\u003E",
"text": "heo-大笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-失去信号.png\"\u003E",
"text": "heo-失去信号"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-失望.png\"\u003E",
"text": "heo-失望"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-头秃.png\"\u003E",
"text": "heo-头秃"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-奋斗.png\"\u003E",
"text": "heo-奋斗"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-好奇.png\"\u003E",
"text": "heo-好奇"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-好的.png\"\u003E",
"text": "heo-好的"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-害羞.png\"\u003E",
"text": "heo-害羞"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-小丑.png\"\u003E",
"text": "heo-小丑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-小偷.png\"\u003E",
"text": "heo-小偷"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-尬笑.png\"\u003E",
"text": "heo-尬笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-尴尬.png\"\u003E",
"text": "heo-尴尬"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-应援.png\"\u003E",
"text": "heo-应援"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-开心.png\"\u003E",
"text": "heo-开心"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-引起不适.png\"\u003E",
"text": "heo-引起不适"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-微笑.png\"\u003E",
"text": "heo-微笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-思考.png\"\u003E",
"text": "heo-思考"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-恶心.png\"\u003E",
"text": "heo-恶心"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-恶魔.png\"\u003E",
"text": "heo-恶魔"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-恶魔恐惧.png\"\u003E",
"text": "heo-恶魔恐惧"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-惊吓.png\"\u003E",
"text": "heo-惊吓"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-惊吓白眼.png\"\u003E",
"text": "heo-惊吓白眼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-惊讶.png\"\u003E",
"text": "heo-惊讶"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-惬意.png\"\u003E",
"text": "heo-惬意"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-感动.png\"\u003E",
"text": "heo-感动"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-愤怒.png\"\u003E",
"text": "heo-愤怒"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-我看好你.png\"\u003E",
"text": "heo-我看好你"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-手机相机.png\"\u003E",
"text": "heo-手机相机"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-打咩.png\"\u003E",
"text": "heo-打咩"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-打牌.png\"\u003E",
"text": "heo-打牌"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-托腮.png\"\u003E",
"text": "heo-托腮"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-扶额.png\"\u003E",
"text": "heo-扶额"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-抠鼻.png\"\u003E",
"text": "heo-抠鼻"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-抬眼镜.png\"\u003E",
"text": "heo-抬眼镜"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-拜托.png\"\u003E",
"text": "heo-拜托"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-捂嘴笑.png\"\u003E",
"text": "heo-捂嘴笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-捂脸.png\"\u003E",
"text": "heo-捂脸"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-擦汗.png\"\u003E",
"text": "heo-擦汗"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-放鞭炮.png\"\u003E",
"text": "heo-放鞭炮"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-敬礼.png\"\u003E",
"text": "heo-敬礼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-整理发型.png\"\u003E",
"text": "heo-整理发型"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-斗鸡眼.png\"\u003E",
"text": "heo-斗鸡眼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-智慧的眼神.png\"\u003E",
"text": "heo-智慧的眼神"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-月饼.png\"\u003E",
"text": "heo-月饼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-有没有搞错.png\"\u003E",
"text": "heo-有没有搞错"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-正确.png\"\u003E",
"text": "heo-正确"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-没招.png\"\u003E",
"text": "heo-没招"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-波吉.png\"\u003E",
"text": "heo-波吉"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-泪奔.png\"\u003E",
"text": "heo-泪奔"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-流汗微笑.png\"\u003E",
"text": "heo-流汗微笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-流鼻涕.png\"\u003E",
"text": "heo-流鼻涕"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-深思.png\"\u003E",
"text": "heo-深思"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽.png\"\u003E",
"text": "heo-滑稽"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽吃瓜.png\"\u003E",
"text": "heo-滑稽吃瓜"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽喝水.png\"\u003E",
"text": "heo-滑稽喝水"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽奶茶.png\"\u003E",
"text": "heo-滑稽奶茶"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽柠檬.png\"\u003E",
"text": "heo-滑稽柠檬"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽狂汗.png\"\u003E",
"text": "heo-滑稽狂汗"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-滑稽被子.png\"\u003E",
"text": "heo-滑稽被子"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-烦恼.png\"\u003E",
"text": "heo-烦恼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊熊.png\"\u003E",
"text": "heo-熊熊"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊猫.png\"\u003E",
"text": "heo-熊猫"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊猫唱歌.png\"\u003E",
"text": "heo-熊猫唱歌"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊猫喜欢.png\"\u003E",
"text": "heo-熊猫喜欢"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊猫失望.png\"\u003E",
"text": "heo-熊猫失望"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熊猫意外.png\"\u003E",
"text": "heo-熊猫意外"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-熬夜.png\"\u003E",
"text": "heo-熬夜"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-爆炸.png\"\u003E",
"text": "heo-爆炸"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-牛年进宝.png\"\u003E",
"text": "heo-牛年进宝"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狂热.png\"\u003E",
"text": "heo-狂热"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头.png\"\u003E",
"text": "heo-狗头"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头围脖.png\"\u003E",
"text": "heo-狗头围脖"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头失望.png\"\u003E",
"text": "heo-狗头失望"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头意外.png\"\u003E",
"text": "heo-狗头意外"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头胖次.png\"\u003E",
"text": "heo-狗头胖次"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头花.png\"\u003E",
"text": "heo-狗头花"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-狗头草.png\"\u003E",
"text": "heo-狗头草"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-猪头.png\"\u003E",
"text": "heo-猪头"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-猪头意外.png\"\u003E",
"text": "heo-猪头意外"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-生病.png\"\u003E",
"text": "heo-生病"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-电话.png\"\u003E",
"text": "heo-电话"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-疑问.png\"\u003E",
"text": "heo-疑问"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-疼痛.png\"\u003E",
"text": "heo-疼痛"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-痛哭.png\"\u003E",
"text": "heo-痛哭"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-看穿一切.png\"\u003E",
"text": "heo-看穿一切"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-眩晕.png\"\u003E",
"text": "heo-眩晕"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-睡觉.png\"\u003E",
"text": "heo-睡觉"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-禁言.png\"\u003E",
"text": "heo-禁言"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-笑哭.png\"\u003E",
"text": "heo-笑哭"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-纠结.png\"\u003E",
"text": "heo-纠结"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-绿帽.png\"\u003E",
"text": "heo-绿帽"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-缺牙笑.png\"\u003E",
"text": "heo-缺牙笑"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-翻白眼.png\"\u003E",
"text": "heo-翻白眼"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-老虎意外.png\"\u003E",
"text": "heo-老虎意外"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-耍酷.png\"\u003E",
"text": "heo-耍酷"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-胡子.png\"\u003E",
"text": "heo-胡子"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-菜狗.png\"\u003E",
"text": "heo-菜狗"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-菜狗花.png\"\u003E",
"text": "heo-菜狗花"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-蒙面滑稽.png\"\u003E",
"text": "heo-蒙面滑稽"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-虎年进宝.png\"\u003E",
"text": "heo-虎年进宝"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-被打.png\"\u003E",
"text": "heo-被打"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-裂开.png\"\u003E",
"text": "heo-裂开"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-警告.png\"\u003E",
"text": "heo-警告"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-读书.png\"\u003E",
"text": "heo-读书"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-财神红包.png\"\u003E",
"text": "heo-财神红包"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-超爱.png\"\u003E",
"text": "heo-超爱"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-这是啥.png\"\u003E",
"text": "heo-这是啥"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-送福.png\"\u003E",
"text": "heo-送福"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-送花.png\"\u003E",
"text": "heo-送花"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-错误.png\"\u003E",
"text": "heo-错误"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-阴险.png\"\u003E",
"text": "heo-阴险"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-难以置信.png\"\u003E",
"text": "heo-难以置信"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-面具.png\"\u003E",
"text": "heo-面具"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-饥渴.png\"\u003E",
"text": "heo-饥渴"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-鬼脸.png\"\u003E",
"text": "heo-鬼脸"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-黑线.png\"\u003E",
"text": "heo-黑线"
},
{
"icon": "\u003Cimg src=\"https://jsd.cdn.zzko.cn/gh/willow-god/owo/heo/heo-鼓掌.png\"\u003E",
"text": "heo-鼓掌"
}
]
},
"颜文字": {
"type": "emoticon",
"container": [
{
"icon": "OωO",
"text": "Author: DIYgod"
},
{
"icon": "|´・ω・)ノ",
"text": "Hi"
},
{
"icon": "ヾ(≧∇≦*)ゝ",
"text": "开心"
},
{
"icon": "(☆ω☆)",
"text": "星星眼"
},
{
"icon": "(╯‵□′)╯︵┴─┴",
"text": "掀桌"
},
{
"icon": " ̄﹃ ̄",
"text": "流口水"
},
{
"icon": "(/ω\)",
"text": "捂脸"
},
{
"icon": "∠( ᐛ 」∠)_",
"text": "给跪"
},
{
"icon": "(๑•̀ㅁ•́ฅ)",
"text": "Hi"
},
{
"icon": "→_→",
"text": "斜眼"
},
{
"icon": "୧(๑•̀⌄•́๑)૭",
"text": "加油"
},
{
"icon": "٩(ˊᗜˋ*)و",
"text": "有木有WiFi"
},
{
"icon": "(ノ°ο°)ノ",
"text": "前方高能预警"
},
{
"icon": "(´இ皿இ`)",
"text": "我从未见过如此厚颜无耻之人"
},
{
"icon": "⌇●﹏●⌇",
"text": "吓死宝宝惹"
},
{
"icon": "(ฅ´ω`ฅ)",
"text": "已阅留爪"
},
{
"icon": "(╯°A°)╯︵○○○",
"text": "去吧大师球"
},
{
"icon": "φ( ̄∇ ̄o)",
"text": "太萌惹"
},
{
"icon": "ヾ(´・ ・`。)ノ\"",
"text": "咦咦咦"
},
{
"icon": "( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃",
"text": "气呼呼"
},
{
"icon": "(ó﹏ò。)",
"text": "我受到了惊吓"
},
{
"icon": "Σ(っ °Д °;)っ",
"text": "什么鬼"
},
{
"icon": "( ,,´・ω・)ノ\"(´っω・`。)",
"text": "摸摸头"
},
{
"icon": "╮(╯▽╰)╭ ",
"text": "无奈"
},
{
"icon": "o(*////▽////*)q ",
"text": "脸红"
},
{
"icon": ">﹏<",
"text": ""
},
{
"icon": "( ๑´•ω•) \"(ㆆᴗㆆ)",
"text": ""
}
]
},
"小黄脸": {
"type": "emoji",
"container": [
{
"icon": "😄",
"text": "大笑"
},
{
"icon": "😁",
"text": "嘻嘻"
},
{
"icon": "😅",
"text": "苦笑"
},
{
"icon": "🤣",
"text": "笑得满地打滚"
},
{
"icon": "😂",
"text": "笑哭了"
},
{
"icon": "🙂",
"text": "呵呵"
},
{
"icon": "🙃",
"text": "倒脸"
},
{
"icon": "😉",
"text": "眨眼"
},
{
"icon": "😊",
"text": "羞涩微笑"
},
{
"icon": "🥰",
"text": "喜笑颜开"
},
{
"icon": "😍",
"text": "花痴"
},
{
"icon": "🤩",
"text": "好崇拜哦"
},
{
"icon": "😘",
"text": "飞吻"
},
{
"icon": "😗",
"text": "亲亲"
},
{
"icon": "😚",
"text": "羞涩亲亲"
},
{
"icon": "😙",
"text": "微笑亲亲"
},
{
"icon": "😋",
"text": "好吃"
},
{
"icon": "😛",
"text": "吐舌"
},
{
"icon": "😜",
"text": "单眼吐舌"
},
{
"icon": "🤪",
"text": "滑稽"
},
{
"icon": "😝",
"text": "眯眼吐舌"
},
{
"icon": "🤗",
"text": "抱抱"
},
{
"icon": "🤭",
"text": "不说"
},
{
"icon": "🤫",
"text": "安静的脸"
},
{
"icon": "🤔",
"text": "想一想"
},
{
"icon": "🤐",
"text": "闭嘴"
},
{
"icon": "🤨",
"text": "挑眉"
},
{
"icon": "😐",
"text": "冷漠"
},
{
"icon": "😑",
"text": "无语"
},
{
"icon": "😶",
"text": "沉默"
},
{
"icon": "😏",
"text": "得意"
},
{
"icon": "😒",
"text": "不高兴"
},
{
"icon": "🙄",
"text": "翻白眼"
},
{
"icon": "😬",
"text": "龇牙咧嘴"
},
{
"icon": "🤥",
"text": "说谎"
},
{
"icon": "😶‍🌫️",
"text": "迷茫"
},
{
"icon": "😮‍💨",
"text": "呼气"
},
{
"icon": "😌",
"text": "松了口气"
},
{
"icon": "😔",
"text": "沉思"
},
{
"icon": "😪",
"text": "困"
},
{
"icon": "🤤",
"text": "流口水"
},
{
"icon": "😴",
"text": "睡着了"
},
{
"icon": "😷",
"text": "感冒"
},
{
"icon": "🤒",
"text": "发烧"
},
{
"icon": "🤕",
"text": "受伤"
},
{
"icon": "🤢",
"text": "恶心"
},
{
"icon": "🤮",
"text": "呕吐"
},
{
"icon": "🤧",
"text": "打喷嚏"
},
{
"icon": "🥵",
"text": "脸发烧"
},
{
"icon": "🥶",
"text": "冷脸"
},
{
"icon": "🥴",
"text": "头昏眼花"
},
{
"icon": "😵",
"text": "晕头转向"
},
{
"icon": "🤯",
"text": "爆炸头"
},
{
"icon": "😵‍💫",
"text": "晕"
},
{
"icon": "🤠",
"text": "牛仔帽脸"
},
{
"icon": "🥳",
"text": "聚会笑脸"
},
{
"icon": "😎",
"text": "墨镜笑脸"
},
{
"icon": "🤓",
"text": "书呆子脸"
},
{
"icon": "🧐",
"text": "带单片眼镜的脸"
},
{
"icon": "😕",
"text": "困扰"
},
{
"icon": "😟",
"text": "担心"
},
{
"icon": "🙁",
"text": "微微不满"
},
{
"icon": "☹️",
"text": "不满"
},
{
"icon": "😮",
"text": "吃惊"
},
{
"icon": "😯",
"text": "缄默"
},
{
"icon": "😲",
"text": "震惊"
},
{
"icon": "😳",
"text": "脸红"
},
{
"icon": "🥺",
"text": "恳求的脸"
},
{
"icon": "😦",
"text": "啊"
},
{
"icon": "😧",
"text": "极度痛苦"
},
{
"icon": "😨",
"text": "害怕"
},
{
"icon": "😰",
"text": "冷汗"
},
{
"icon": "😥",
"text": "失望但如释重负"
},
{
"icon": "😢",
"text": "哭"
},
{
"icon": "😭",
"text": "放声大哭"
},
{
"icon": "😱",
"text": "吓死了"
},
{
"icon": "😖",
"text": "困惑"
},
{
"icon": "😣",
"text": "痛苦"
},
{
"icon": "😞",
"text": "失望"
},
{
"icon": "😓",
"text": "汗"
},
{
"icon": "😩",
"text": "累死了"
},
{
"icon": "😫",
"text": "累"
},
{
"icon": "🥱",
"text": "打呵欠"
},
{
"icon": "😤",
"text": "傲慢"
},
{
"icon": "😡",
"text": "怒火中烧"
},
{
"icon": "😠",
"text": "生气"
},
{
"icon": "🤬",
"text": "嘴上有符号的脸"
},
{
"icon": "💩",
"text": "大便"
},
{
"icon": "🤡",
"text": "小丑脸"
},
{
"icon": "👻",
"text": "鬼"
},
{
"icon": "👽",
"text": "外星人"
},
{
"icon": "🤖",
"text": "机器人"
},
{
"icon": "😺",
"text": "大笑的猫"
},
{
"icon": "😸",
"text": "微笑的猫"
},
{
"icon": "😹",
"text": "笑出眼泪的猫"
},
{
"icon": "😻",
"text": "花痴的猫"
},
{
"icon": "😼",
"text": "奸笑的猫"
},
{
"icon": "😽",
"text": "亲亲猫"
},
{
"icon": "🙀",
"text": "疲倦的猫"
},
{
"icon": "😿",
"text": "哭泣的猫"
},
{
"icon": "😾",
"text": "生气的猫"
},
{
"icon": "🙈",
"text": "非礼勿视"
},
{
"icon": "🙉",
"text": "非礼勿听"
},
{
"icon": "🙊",
"text": "非礼勿言"
},
{
"icon": "💋",
"text": "唇印"
},
{
"icon": "💖",
"text": "闪亮的心"
},
{
"icon": "💔",
"text": "心碎"
},
{
"icon": "❤️",
"text": "红心"
},
{
"icon": "💯",
"text": "一百分"
},
{
"icon": "💢",
"text": "怒"
},
{
"icon": "💥",
"text": "爆炸"
},
{
"icon": "💫",
"text": "头晕"
},
{
"icon": "💦",
"text": "汗滴"
},
{
"icon": "💤",
"text": "睡着"
},
{
"icon": "👋",
"text": "挥手"
},
{
"icon": "🖐️",
"text": "手掌"
},
{
"icon": "👌",
"text": "OK"
},
{
"icon": "🤏",
"text": "捏合的手势"
},
{
"icon": "✌️",
"text": "胜利手势"
},
{
"icon": "🤘",
"text": "摇滚"
},
{
"icon": "🖕",
"text": "竖中指"
},
{
"icon": "👍",
"text": "拇指向上"
},
{
"icon": "👊",
"text": "出拳"
},
{
"icon": "👏",
"text": "鼓掌"
},
{
"icon": "🤝",
"text": "握手"
},
{
"icon": "💪",
"text": "肌肉"
},
{
"icon": "👀",
"text": "双眼"
},
{
"icon": "🦋",
"text": "蝴蝶"
},
{
"icon": "💐",
"text": "花束"
},
{
"icon": "🌸",
"text": "樱花"
},
{
"icon": "🌹",
"text": "玫瑰"
},
{
"icon": "🍉",
"text": "西瓜"
},
{
"icon": "🥭",
"text": "芒果"
},
{
"icon": "🍗",
"text": "家禽的腿"
},
{
"icon": "🥩",
"text": "肉块"
},
{
"icon": "🍔",
"text": "汉堡"
},
{
"icon": "🍟",
"text": "薯条"
},
{
"icon": "🍕",
"text": "披萨"
},
{
"icon": "🌭",
"text": "热狗"
},
{
"icon": "🥚",
"text": "蛋"
},
{
"icon": "🍲",
"text": "一锅食物"
},
{
"icon": "🍡",
"text": "团子"
},
{
"icon": "🥟",
"text": "饺子"
},
{
"icon": "🍦",
"text": "圆筒冰激凌"
},
{
"icon": "🍧",
"text": "刨冰"
},
{
"icon": "🍨",
"text": "冰淇淋"
},
{
"icon": "🎂",
"text": "生日蛋糕"
},
{
"icon": "🧁",
"text": "纸杯蛋糕"
},
{
"icon": "🍭",
"text": "棒棒糖"
},
{
"icon": "☕",
"text": "热饮"
},
{
"icon": "🍺",
"text": "啤酒"
},
{
"icon": "🍻",
"text": "干杯"
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gzzzxx/emo.git
[email protected]:gzzzxx/emo.git
gzzzxx
emo
emo
master

搜索帮助