foliko 1.1.92 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. package/.claude/settings.local.json +2 -1
  2. package/CLAUDE.md +56 -30
  3. package/REFACTORING_PLAN.md +645 -0
  4. package/docs/architecture.md +131 -0
  5. package/docs/migration.md +57 -0
  6. package/docs/public-api.md +138 -0
  7. package/docs/usage.md +385 -0
  8. package/examples/ambient-example.js +20 -137
  9. package/examples/basic.js +21 -48
  10. package/examples/bootstrap.js +16 -74
  11. package/examples/mcp-example.js +6 -29
  12. package/examples/skill-example.js +6 -19
  13. package/examples/workflow.js +8 -56
  14. package/package.json +8 -4
  15. package/plugins/README.md +49 -0
  16. package/plugins/{ambient-agent → ambient}/EventWatcher.js +1 -1
  17. package/plugins/{ambient-agent → ambient}/ExplorerLoop.js +3 -3
  18. package/plugins/{ambient-agent → ambient}/GoalManager.js +2 -2
  19. package/plugins/ambient/README.md +14 -0
  20. package/plugins/{ambient-agent → ambient}/Reflector.js +1 -1
  21. package/plugins/{ambient-agent → ambient}/StateStore.js +1 -1
  22. package/plugins/{ambient-agent → ambient}/index.js +2 -2
  23. package/plugins/{ai-plugin.js → core/ai/index.js} +14 -30
  24. package/plugins/{audit-plugin.js → core/audit/index.js} +3 -30
  25. package/plugins/{coordinator-plugin.js → core/coordinator/index.js} +3 -35
  26. package/plugins/core/default/bootstrap.js +202 -0
  27. package/plugins/core/default/config.js +220 -0
  28. package/plugins/core/default/index.js +58 -0
  29. package/plugins/core/mcp/index.js +1 -0
  30. package/plugins/{python-plugin-loader.js → core/python-loader/index.js} +7 -187
  31. package/plugins/{rules-plugin.js → core/rules/index.js} +121 -64
  32. package/plugins/{scheduler-plugin.js → core/scheduler/index.js} +12 -114
  33. package/plugins/{session-plugin.js → core/session/index.js} +9 -73
  34. package/{src/capabilities/skill-manager.js → plugins/core/skill-manager/index.js} +64 -18
  35. package/plugins/{storage-plugin.js → core/storage/index.js} +5 -29
  36. package/plugins/{subagent-plugin.js → core/sub-agent/index.js} +10 -171
  37. package/plugins/{think-plugin.js → core/think/index.js} +24 -91
  38. package/{src/capabilities/workflow-engine.js → plugins/core/workflow/index.js} +87 -85
  39. package/plugins/default-plugins.js +6 -720
  40. package/plugins/{data-splitter-plugin.js → executors/data-splitter/index.js} +9 -83
  41. package/plugins/{extension-executor-plugin.js → executors/extension/index.js} +13 -97
  42. package/plugins/{python-executor-plugin.js → executors/python/index.js} +6 -31
  43. package/plugins/{shell-executor-plugin.js → executors/shell/index.js} +2 -5
  44. package/plugins/install/README.md +9 -0
  45. package/plugins/{install-plugin.js → install/index.js} +3 -3
  46. package/plugins/{file-system-plugin.js → io/file-system/index.js} +34 -236
  47. package/plugins/{web-plugin.js → io/web/index.js} +11 -113
  48. package/plugins/memory/README.md +13 -0
  49. package/plugins/{memory-plugin.js → memory/index.js} +4 -18
  50. package/plugins/messaging/email/README.md +19 -0
  51. package/plugins/{email → messaging/email}/index.js +2 -2
  52. package/plugins/{feishu-plugin.js → messaging/feishu/index.js} +3 -3
  53. package/plugins/{qq-plugin.js → messaging/qq/index.js} +5 -16
  54. package/plugins/{telegram-plugin.js → messaging/telegram/index.js} +3 -3
  55. package/plugins/{weixin-plugin.js → messaging/weixin/index.js} +15 -15
  56. package/plugins/{plugin-manager-plugin.js → plugin-manager/index.js} +36 -180
  57. package/plugins/{tools-plugin.js → tools/index.js} +68 -116
  58. package/plugins/trading/README.md +15 -0
  59. package/plugins/{gate-trading.js → trading/index.js} +8 -8
  60. package/{examples → sandbox}/test-concurrent-chat.js +2 -2
  61. package/{examples → sandbox}/test-long-chat.js +2 -2
  62. package/{examples → sandbox}/test-session-chat.js +2 -2
  63. package/{examples → sandbox}/test-web-plugin.js +1 -1
  64. package/{examples → sandbox}/test-weixin-feishu.js +2 -2
  65. package/src/agent/base.js +56 -0
  66. package/src/{core/agent-chat.js → agent/chat.js} +11 -11
  67. package/src/{core/coordinator-manager.js → agent/coordinator.js} +3 -3
  68. package/src/agent/index.js +111 -0
  69. package/src/agent/main.js +337 -0
  70. package/src/agent/prompt.js +78 -0
  71. package/src/agent/sub.js +198 -0
  72. package/src/agent/worker.js +104 -0
  73. package/{cli/bin/foliko.js → src/cli/bin.js} +1 -1
  74. package/{cli/src → src/cli}/commands/chat.js +25 -21
  75. package/{cli/src → src/cli}/index.js +1 -0
  76. package/{cli/src → src/cli}/ui/chat-ui-old.js +40 -178
  77. package/{cli/src → src/cli}/ui/chat-ui.js +3 -3
  78. package/{cli/src → src/cli}/ui/components/footer-bar.js +1 -1
  79. package/src/{core → common}/constants.js +3 -0
  80. package/src/common/errors.js +402 -0
  81. package/src/{utils → common}/logger.js +33 -0
  82. package/src/{utils/chat-queue.js → common/queue.js} +2 -2
  83. package/src/config/plugin-config.js +50 -0
  84. package/src/context/agent.js +32 -0
  85. package/src/context/compaction-prompts.js +170 -0
  86. package/src/context/compaction-utils.js +191 -0
  87. package/src/context/compressor.js +413 -0
  88. package/src/context/index.js +9 -0
  89. package/src/{core/context-manager.js → context/manager.js} +1 -1
  90. package/src/context/request.js +50 -0
  91. package/src/context/session.js +33 -0
  92. package/src/context/storage.js +30 -0
  93. package/src/executors/mcp-client.js +153 -0
  94. package/src/executors/mcp-desc.js +236 -0
  95. package/src/executors/mcp-executor.js +91 -956
  96. package/src/{core → framework}/command-registry.js +1 -1
  97. package/src/framework/framework.js +300 -0
  98. package/src/framework/index.js +18 -0
  99. package/src/framework/lifecycle.js +203 -0
  100. package/src/framework/loader.js +78 -0
  101. package/src/framework/registry.js +86 -0
  102. package/src/{core/ui-extension-context.js → framework/ui-extension.js} +1 -1
  103. package/src/index.js +130 -15
  104. package/src/llm/index.js +26 -0
  105. package/src/llm/provider.js +212 -0
  106. package/src/llm/registry.js +11 -0
  107. package/src/{core/token-counter.js → llm/tokens.js} +4 -37
  108. package/src/{core/plugin-base.js → plugin/base.js} +10 -136
  109. package/src/plugin/index.js +14 -0
  110. package/src/plugin/loader.js +101 -0
  111. package/src/plugin/manager.js +261 -0
  112. package/src/{core → session}/branch-summary-auto.js +2 -2
  113. package/src/{core/chat-session.js → session/chat.js} +2 -2
  114. package/src/session/index.js +7 -0
  115. package/src/{core/session-manager.js → session/session.js} +2 -2
  116. package/src/session/ttl.js +92 -0
  117. package/src/{core/jsonl-storage.js → storage/jsonl.js} +1 -1
  118. package/src/tool/executor.js +85 -0
  119. package/src/tool/index.js +15 -0
  120. package/src/tool/registry.js +143 -0
  121. package/src/{core/tool-router.js → tool/router.js} +17 -124
  122. package/src/tool/schema.js +108 -0
  123. package/src/utils/data-splitter.js +1 -1
  124. package/src/utils/download.js +1 -1
  125. package/src/utils/index.js +6 -6
  126. package/src/utils/message-validator.js +1 -1
  127. package/tests/core/context-storage.test.js +46 -0
  128. package/tests/core/llm.test.js +54 -0
  129. package/tests/core/plugin.test.js +42 -0
  130. package/tests/core/tool.test.js +60 -0
  131. package/tests/setup.js +10 -0
  132. package/tests/smoke.test.js +58 -0
  133. package/vitest.config.js +9 -0
  134. package/cli/src/daemon.js +0 -149
  135. package/docs/CONTEXT_DESIGN.md +0 -1596
  136. package/docs/ai-sdk-optimization.md +0 -655
  137. package/docs/features.md +0 -120
  138. package/docs/qq-bot.md +0 -976
  139. package/docs/quick-reference.md +0 -160
  140. package/docs/user-manual.md +0 -1391
  141. package/images/geometric_shapes.jpg +0 -0
  142. package/images/sunset_mountain_lake.jpg +0 -0
  143. package/skills/poster-guide/SKILL.md +0 -792
  144. package/src/capabilities/index.js +0 -11
  145. package/src/core/agent.js +0 -808
  146. package/src/core/context-compressor.js +0 -959
  147. package/src/core/enhanced-context-compressor.js +0 -210
  148. package/src/core/framework.js +0 -1422
  149. package/src/core/index.js +0 -30
  150. package/src/core/plugin-manager.js +0 -961
  151. package/src/core/provider-registry.js +0 -159
  152. package/src/core/provider.js +0 -156
  153. package/src/core/request-context.js +0 -98
  154. package/src/core/subagent.js +0 -442
  155. package/src/core/system-prompt-builder.js +0 -120
  156. package/src/core/tool-executor.js +0 -202
  157. package/src/core/tool-registry.js +0 -517
  158. package/src/core/worker-agent.js +0 -192
  159. package/src/executors/executor-base.js +0 -58
  160. package/src/utils/error-boundary.js +0 -363
  161. package/src/utils/error.js +0 -374
  162. package/system.md +0 -1645
  163. package/website_v2/README.md +0 -57
  164. package/website_v2/SPEC.md +0 -1
  165. package/website_v2/docs/api.html +0 -128
  166. package/website_v2/docs/configuration.html +0 -147
  167. package/website_v2/docs/plugin-development.html +0 -129
  168. package/website_v2/docs/project-structure.html +0 -89
  169. package/website_v2/docs/skill-development.html +0 -85
  170. package/website_v2/index.html +0 -489
  171. package/website_v2/scripts/main.js +0 -93
  172. package/website_v2/styles/animations.css +0 -8
  173. package/website_v2/styles/docs.css +0 -83
  174. package/website_v2/styles/main.css +0 -417
  175. package/xhs_auth.json +0 -268
  176. package//346/265/267/346/212/245/346/217/222/344/273/266.md +0 -621
  177. /package/plugins/{ambient-agent → ambient}/constants.js +0 -0
  178. /package/plugins/{email → messaging/email}/constants.js +0 -0
  179. /package/plugins/{email → messaging/email}/handlers.js +0 -0
  180. /package/plugins/{email → messaging/email}/monitor.js +0 -0
  181. /package/plugins/{email → messaging/email}/parser.js +0 -0
  182. /package/plugins/{email → messaging/email}/reply.js +0 -0
  183. /package/plugins/{email → messaging/email}/utils.js +0 -0
  184. /package/{examples → sandbox}/test-chat.js +0 -0
  185. /package/{examples → sandbox}/test-mcp.js +0 -0
  186. /package/{examples → sandbox}/test-reload.js +0 -0
  187. /package/{examples → sandbox}/test-telegram.js +0 -0
  188. /package/{examples → sandbox}/test-tg-bot.js +0 -0
  189. /package/{examples → sandbox}/test-tg-simple.js +0 -0
  190. /package/{examples → sandbox}/test-tg.js +0 -0
  191. /package/{examples → sandbox}/test-think.js +0 -0
  192. /package/src/{core/sub-agent-config.js → agent/sub-config.js} +0 -0
  193. /package/{cli/src → src/cli}/commands/daemon.js +0 -0
  194. /package/{cli/src → src/cli}/commands/list.js +0 -0
  195. /package/{cli/src → src/cli}/commands/plugin.js +0 -0
  196. /package/{cli/src → src/cli}/ui/components/agent-mention-provider.js +0 -0
  197. /package/{cli/src → src/cli}/ui/components/chained-autocomplete-provider.js +0 -0
  198. /package/{cli/src → src/cli}/ui/components/message-bubble.js +0 -0
  199. /package/{cli/src → src/cli}/ui/components/status-bar.js +0 -0
  200. /package/{cli/src → src/cli}/utils/ansi.js +0 -0
  201. /package/{cli/src → src/cli}/utils/config.js +0 -0
  202. /package/{cli/src → src/cli}/utils/markdown.js +0 -0
  203. /package/{cli/src → src/cli}/utils/plugin-config.js +0 -0
  204. /package/{cli/src → src/cli}/utils/render-diff.js +0 -0
  205. /package/src/{utils/circuit-breaker.js → common/circuit.js} +0 -0
  206. /package/src/{utils/edit-diff.js → common/diff.js} +0 -0
  207. /package/src/{utils/event-emitter.js → common/events.js} +0 -0
  208. /package/src/{utils → common}/id.js +0 -0
  209. /package/src/{utils → common}/retry.js +0 -0
  210. /package/src/{core/notification-manager.js → notification/manager.js} +0 -0
  211. /package/src/{core/session-entry.js → session/entry.js} +0 -0
  212. /package/src/{core/storage-manager.js → storage/manager.js} +0 -0
package/xhs_auth.json DELETED
@@ -1,268 +0,0 @@
1
- {
2
- "cookies": [
3
- {
4
- "name": "acw_tc",
5
- "value": "0a00d14717751490065528394ed858662952fc5298b65cfc3a4e16081ac435",
6
- "domain": "www.xiaohongshu.com",
7
- "path": "/",
8
- "expires": 1775150806.234156,
9
- "size": 68,
10
- "httpOnly": true,
11
- "secure": false,
12
- "session": false
13
- },
14
- {
15
- "name": "abRequestId",
16
- "value": "4dd9f636-4a60-5319-9493-234b8085c598",
17
- "domain": ".xiaohongshu.com",
18
- "path": "/",
19
- "expires": 1806685006.234375,
20
- "size": 47,
21
- "httpOnly": false,
22
- "secure": false,
23
- "session": false
24
- },
25
- {
26
- "name": "NID",
27
- "value": "530=A07kPErhy24j44FiOcXLNeCGM4weHc3fDpkEPEvI9IBB9Z9UjMp3IFBoE7qppdeodDQqZO2i611eB78FM2XEgJU3Eo5pL0tvQbazeUTa7ouzTUVocRPQFThfcChDzrAtXCHuJh4RparJIPzOeAT4F8kUkI003wzf4KPRxwTsP_VfgOTeGVx8zq2AAoiF1nRecmTNNXJYpQKLziab",
28
- "domain": ".google.com",
29
- "path": "/",
30
- "expires": 1790960208.014964,
31
- "size": 215,
32
- "httpOnly": true,
33
- "secure": true,
34
- "session": false,
35
- "sameSite": "None"
36
- },
37
- {
38
- "name": "ets",
39
- "value": "1775149009017",
40
- "domain": ".xiaohongshu.com",
41
- "path": "/",
42
- "expires": 1777741009.01754,
43
- "size": 16,
44
- "httpOnly": false,
45
- "secure": false,
46
- "session": false
47
- },
48
- {
49
- "name": "webBuild",
50
- "value": "6.3.0",
51
- "domain": ".xiaohongshu.com",
52
- "path": "/",
53
- "expires": -1.0,
54
- "size": 13,
55
- "httpOnly": false,
56
- "secure": false,
57
- "session": true
58
- },
59
- {
60
- "name": "xsecappid",
61
- "value": "xhs-pc-web",
62
- "domain": ".xiaohongshu.com",
63
- "path": "/",
64
- "expires": 1806685009.0,
65
- "size": 19,
66
- "httpOnly": false,
67
- "secure": false,
68
- "session": false
69
- },
70
- {
71
- "name": "loadts",
72
- "value": "1775149009099",
73
- "domain": ".xiaohongshu.com",
74
- "path": "/",
75
- "expires": 1806685009.0,
76
- "size": 19,
77
- "httpOnly": false,
78
- "secure": false,
79
- "session": false
80
- },
81
- {
82
- "name": "a1",
83
- "value": "19d4f2048d5rmfj0n6v9pho3jfm2dteoxg4r35g9450000263580",
84
- "domain": ".xiaohongshu.com",
85
- "path": "/",
86
- "expires": 1806685009.0,
87
- "size": 54,
88
- "httpOnly": false,
89
- "secure": false,
90
- "session": false
91
- },
92
- {
93
- "name": "webId",
94
- "value": "ed2f717ce19a62874610b27d8b682834",
95
- "domain": ".xiaohongshu.com",
96
- "path": "/",
97
- "expires": 1806685009.0,
98
- "size": 37,
99
- "httpOnly": false,
100
- "secure": false,
101
- "session": false
102
- },
103
- {
104
- "name": "acw_tc",
105
- "value": "0a8f07a117751490097244729ef14af085c62b14dbe97c99d7c3e02cf9ba86",
106
- "domain": "edith.xiaohongshu.com",
107
- "path": "/",
108
- "expires": 1775150809.411417,
109
- "size": 68,
110
- "httpOnly": true,
111
- "secure": false,
112
- "session": false
113
- },
114
- {
115
- "name": "acw_tc",
116
- "value": "0ad6210217751490104103222efceafdb373b0276071819a10e986f477aa9b",
117
- "domain": "so.xiaohongshu.com",
118
- "path": "/",
119
- "expires": 1775150810.088766,
120
- "size": 68,
121
- "httpOnly": true,
122
- "secure": false,
123
- "session": false
124
- },
125
- {
126
- "name": "websectiga",
127
- "value": "6169c1e84f393779a5f7fe7303038f3b47a78e47be716e7bec57ccce17d45f99",
128
- "domain": ".xiaohongshu.com",
129
- "path": "/",
130
- "expires": 1775408212.0,
131
- "size": 74,
132
- "httpOnly": false,
133
- "secure": false,
134
- "session": false
135
- },
136
- {
137
- "name": "sec_poison_id",
138
- "value": "cdf303f8-9adc-40a5-90b5-38bab85b89dc",
139
- "domain": ".xiaohongshu.com",
140
- "path": "/",
141
- "expires": 1775149617.0,
142
- "size": 49,
143
- "httpOnly": false,
144
- "secure": false,
145
- "session": false
146
- },
147
- {
148
- "name": "gid",
149
- "value": "yjf4iJ8KKfCfyjf4iJ84Yk2kf2F6iV8IKhjU4j4xlqVi6F28Jf9dlq888JKq2Y88jid4jd22",
150
- "domain": ".xiaohongshu.com",
151
- "path": "/",
152
- "expires": 1809709016.500839,
153
- "size": 75,
154
- "httpOnly": false,
155
- "secure": false,
156
- "session": false
157
- },
158
- {
159
- "name": "web_session",
160
- "value": "0400698dd5958b0d0b026fe8fb3b4b4ec94d46",
161
- "domain": ".xiaohongshu.com",
162
- "path": "/",
163
- "expires": 1806685062.423065,
164
- "size": 49,
165
- "httpOnly": true,
166
- "secure": true,
167
- "session": false
168
- },
169
- {
170
- "name": "id_token",
171
- "value": "VjEAAGHK8JE9AXyfj4Tjlk++qREEPCv0R1ia++5EH4uesAsIKjwbIgN7YstpVxN8BEINFgQRxFab0L84pZJFR90xhqoOKAKikcsq49LWQLnVk9XvwMdqwsFjOmu2lHvnm5xBWKKb",
172
- "domain": ".xiaohongshu.com",
173
- "path": "/",
174
- "expires": 1806685062.423295,
175
- "size": 144,
176
- "httpOnly": true,
177
- "secure": true,
178
- "session": false
179
- },
180
- {
181
- "name": "unread",
182
- "value": "{%22ub%22:%2269cd871c0000000020038c9d%22%2C%22ue%22:%2269ca710d0000000022024918%22%2C%22uc%22:16}",
183
- "domain": ".xiaohongshu.com",
184
- "path": "/",
185
- "expires": -1.0,
186
- "size": 103,
187
- "httpOnly": false,
188
- "secure": false,
189
- "session": true
190
- }
191
- ],
192
- "origins": [
193
- {
194
- "origin": "https://www.xiaohongshu.com",
195
- "localStorage": [
196
- {
197
- "name": "MF_STATISTICS",
198
- "value": "{\"timestamp\":1775149006681,\"visitTimes\":1,\"readFeedCount\":0}"
199
- },
200
- {
201
- "name": "redmoji",
202
- "value": "{\"version\":5,\"redmojiTabs\":[{\"emoji\":[{\"imageName\":\"[微笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9366d16631e3e208689cbc95eefb7cfb0901001e.png\"},{\"imageName\":\"[害羞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/219fe9d7e40b14dd7a6712203143bb1f9972bc5c.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b862c8f94da375f55805a97c152efeeb5099c149.png\",\"imageName\":\"[失望R]\"},{\"imageName\":\"[汗颜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/87e23e577662f3268362518f7f4e90e30b4ea284.png\"},{\"imageName\":\"[哇R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e0771182c12362d41f70356f714d84dccc4d07bc.png\"},{\"imageName\":\"[喝奶茶R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/364ad5d3e0d5c3b1aa101c9243f488be97d9e8d7.png\"},{\"imageName\":\"[自拍R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d4fe00be555964ddf8301e256cd906b9032679a5.png\"},{\"imageName\":\"[偷笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d1a34cf8aeac526d36890d3e8f727192a6808ecf.png\"},{\"imageName\":\"[飞吻R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/81cedd016ad9d8bef38b2cd0c1e725454df53598.png\"},{\"imageName\":\"[石化R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a61db6b1917b6c5c1e8f30bbeea9118a7bdbbe74.png\"},{\"imageName\":\"[笑哭R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca75b2fc85b0a3e171fe5df1cbf90efdcd3ba571.png\"},{\"imageName\":\"[赞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1b81c5ec3f7006f6b8baf7c006773f5f9d1ab6d7.png\"},{\"imageName\":\"[蹲后续H]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a633dcf8d48c500ae11532d0583c529b89286c66.webp\"},{\"imageName\":\"[暗中观察R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0a9cd643452c7b717b9735a23c550295baa69f02.png\"},{\"imageName\":\"[买爆R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c402c10ac31e2e024393cfa7ca61d014579d9191.png\"},{\"imageName\":\"[大笑R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/aed28089f6578522cd490f636955efe6dd27da38.png\"},{\"imageName\":\"[色色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/913a9e2c42916a338b9fa20cf780ae435f51acac.png\"},{\"imageName\":\"[生气R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/91515ae9718d8cce4f8de909683011b538d35327.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/14b005f7afd5f7c88620478b610bf1de90c4ceab.png\",\"imageName\":\"[哭惹R]\"},{\"imageName\":\"[萌萌哒R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c255f0ae809f8045561a80737b6aec25139f7607.png\"},{\"imageName\":\"[斜眼R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6062be312a922da7998f99fb773e06cea0a640df.png\"},{\"imageName\":\"[可怜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/36338a7a39e27341b34e845e28561378e9ad1ede.png\"},{\"imageName\":\"[鄙视R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0dbbe487e5157d9fb720df7e59fe45a7927af647.png\"},{\"imageName\":\"[皱眉R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fd82d69014a4a50397e20fc6b23ae8dba1c74998.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/13619bff18deffe1d2dcc4be0a6ba7ee0394926b.png\",\"imageName\":\"[抓狂R]\"},{\"imageName\":\"[捂脸R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/83278234fdeb5c36682334f6eb756d243ee62201.png\"},{\"imageName\":\"[派对R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/7a6287c7f65fabdc15fa8f06b2696cccc21e86f2.png\"},{\"imageName\":\"[吧唧R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/238271771c806047fc928b6ba49a6d8e7a741e5e.png\"},{\"imageName\":\"[惊恐R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/114d21cd3f1b4a1591cc997ddd5976bb0cec8f4c.png\"},{\"imageName\":\"[抠鼻R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5fd4922d00a004260912247dad6ca7149d8a1f75.png\"},{\"imageName\":\"[再见R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c34602650951342f09ca6e00d6f4c4ac57208a07.png\"},{\"imageName\":\"[叹气R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5ce63c6024defb2f6334aa153fd0fd238a683779.png\"},{\"imageName\":\"[睡觉R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d98472a962e744dd238f2b4f5dba2665dcb8360b.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b02bf85f97acbd6be1749148e163b36920655f92.png\",\"imageName\":\"[得意R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a38d15b09910f65756d521f1f46031c44694214a.png\",\"imageName\":\"[吃瓜R]\"},{\"imageName\":\"[扶墙R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6eb56b590b5c70e4559cf5bd93056a6e74ffc474.png\"},{\"imageName\":\"[黑薯问号R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4835a534cddad71286ad4e8f0514fded208360d.png\"},{\"imageName\":\"[黄金薯R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/08b0e51ac813a53bebeb0b9391df5094d4777951.png\"},{\"imageName\":\"[吐舌头H]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4533cbaa5829c6ffd92992414290987e39ba6be.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d968308cfaf571fbc75cbcd7ec0cefe9150a390a.png\",\"imageName\":\"[扯脸H]\"},{\"imageName\":\"[doge]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7c0498189d449e8f22946be494d6bad48eda5ab.png\"}],\"name\":\"小红薯表情\"},{\"emoji\":[{\"imageName\":\"[天幕R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/7642341e830f97c45f3261b9adee8b5a7336499d.png\"},{\"imageName\":\"[卡式炉R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/783dc5c9039dab7920f60b69a0fe57e77302ddcd.png\"},{\"imageName\":\"[折叠椅R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/359bd197c452258888f4f3f224d40d140b1247c3.png\"},{\"imageName\":\"[营地车R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/8d3e5b8a06eda42229adf550d930bb8e4aaae9b7.png\"},{\"imageName\":\"[露营灯R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/093dd4338b46ca52074d060c1c75ce04697af6d4.png\"},{\"imageName\":\"[露营R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bc046729a7265fa579fb9c26289f9e9fcaa83beb.png\"},{\"imageName\":\"[渔夫帽R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/8a513afd61b9dd09c9e138e882e92ff9cae14649.png\"},{\"imageName\":\"[登山鞋R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/fe65c446020944558c142d288e095e5484cba90f.png\"},{\"imageName\":\"[背包R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/d9f0f58518cc9a1d73caf97ff5b0ecb4fd5a741b.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/2fda1b2115dccf04ac5143210b8d83f352f73e2c.png\",\"imageName\":\"[马甲R]\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/ffc5912b221563c0a7f3fd751b87e27f7dd5318a.png\",\"imageName\":\"[骑行服R]\"},{\"imageName\":\"[手套R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/9572fe03b56aef9ec8a1e79dac64d4225a2e380a.png\"},{\"imageName\":\"[头盔R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/2a5fe9cfad77cfcf632c1cb6123e68250afcbff2.png\"},{\"imageName\":\"[风镜R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/0e7fb713c7fca2e381a40f590a46a262780df631.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/61708b29215d3fcb6790d25c061d47775823d379.png\",\"imageName\":\"[公路车R]\"},{\"imageName\":\"[折叠车R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/57f9b02650b95f08122c0462927cce3df847e246.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/6e92309ecab879d8bb1b0b83536f025bdc1e21e8.png\",\"imageName\":\"[飞盘R]\"},{\"imageName\":\"[冲浪板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/012c014ef465c0bda4a3af39a713629aa3508da3.png\"},{\"imageName\":\"[双翘滑板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/bf2be5bd7fe7b7aac5bc06c44ea2daf456750674.png\"},{\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/5a9b44f49a27f75224f6cbd3ef95ec65a579f907.png\",\"imageName\":\"[陆冲板R]\"},{\"imageName\":\"[长板R]\",\"image\":\"https://fe-video-qc.xhscdn.com/fe-platform/87d0aeb63f769b04eb119bd2f0fc9128a645747a.png\"},{\"imageName\":\"[种草R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/035c8044c53dbf7df2cf28d6ec35eb325567121b.png\"},{\"imageName\":\"[拔草R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c9e8d66eabeaa823b91e4caeb62088a1521dbe63.png\"},{\"imageName\":\"[点赞R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/391438d25580a034707791b5f165c27f8899025a.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ae143d3423b5af03ae6b63dc197872ec6a59a6ff.png\",\"imageName\":\"[向右R]\"},{\"imageName\":\"[合十R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fbdbb2547a281e18ee9759e3d658d417871996c0.png\"},{\"imageName\":\"[okR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/65bce6a5e07c5adecd8a9660f833266c4cffa0e6.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab059229949e73619961c5ee1f7ee10d2318c170.png\",\"imageName\":\"[加油R]\"},{\"imageName\":\"[握手R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d0d01ced40255c3855c80fc641b432758c041dea.png\"},{\"imageName\":\"[鼓掌R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/59bbbe6fc2879f6ef42e63b3264096a9f4d403c7.png\"},{\"imageName\":\"[弱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab298d8a629530f3bb98b94718acb6f20b2cbc66.png\"},{\"imageName\":\"[耶R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7d3bb36a6422f92f2447f2b300d3aff0b7baa21.png\"},{\"imageName\":\"[抱拳R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0ae972c2da43acd565596fb0234c558f84b0a390.png\"},{\"imageName\":\"[勾引R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/0b219f805826238b85eb114bb1781bf5d5808cbf.png\"},{\"imageName\":\"[拳头R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/20bb351c9538975e1a3b8ec4aa5821ad9d6f2215.png\"},{\"imageName\":\"[拥抱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/efc3b7a9e6df5d2be0233e203adf0d1110623441.png\"},{\"imageName\":\"[举手R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/84320b00dda66dcb661b5fb5d75ded2de4754b0a.png\"},{\"imageName\":\"[猪头R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e7eae4ef972a29818a56d6e00f85304152a58430.png\"},{\"imageName\":\"[老虎R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f6d52ce0dd3bfa963a5a624e9da8417d02c9f752.png\"},{\"imageName\":\"[集美R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/124387198d229cb5aa2be5dd74db4af820e85dcd/xhs_theme_xy_emotion_redmoji_jimei.png\"},{\"imageName\":\"[仙女R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3a0d4108b32e366f7438d448a8157e9e4247e5b3/xhs_theme_xy_emotion_redmoji_xiannv.png\"},{\"imageName\":\"[红书R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/182d040c46942e0ba1c8eeb66bf7047dad751e72.png\"},{\"imageName\":\"[开箱R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/200ada9354c5c974164bffa594ad4e33614404aa.png\"},{\"imageName\":\"[探店R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b9dfa6d9e5cb81b2f0bdd77e14b1841608c03224.png\"},{\"imageName\":\"[ootdR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/595650f7fb0ee6a475c6bdbe4d6a707524ed9c90.png\"},{\"imageName\":\"[同款R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1a573c081b4aad6814c23a33d51c86a69670b90f.png\"},{\"imageName\":\"[打卡R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/89214fad0c95300ab58a96037fddafa0415d387e.png\"},{\"imageName\":\"[飞机R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ac94463031f15e8c73db4a457a35ac473822a00.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d87604b3ab8b56e98023ae582deea40230595fcc.png\",\"imageName\":\"[拍立得R]\"},{\"imageName\":\"[薯券R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/080302ac0fd8f847753853c50cd0cf00709c4419.png\"},{\"imageName\":\"[优惠券R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/68ef659532ab68296aa14f89e29829da4d9aed5a.png\"},{\"imageName\":\"[购物车R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3598e9b2a43cd1ca6ec4b4dc7670541c7bdda2fa.png\"},{\"imageName\":\"[kissR]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/071e9c9d731ce31f5ece64babda5f3d4d9207496.png\"},{\"imageName\":\"[礼物R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/39e0ed44f24bd2d211161a5086705ab1d4439c41.png\"},{\"imageName\":\"[生日蛋糕R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/259be907840312a7013dae79ff6f99012dabe24b.png\"},{\"imageName\":\"[私信R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/2062069d03c2927cc823ad0f65c4db645e968058.png\"},{\"imageName\":\"[请文明R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d070fee56c6069ac246ffb0cba1eaf3609df9680.png\"},{\"imageName\":\"[请友好R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5c4d2abd9058163b496e054d7448d91c212282d3.png\"},{\"imageName\":\"[氛围感R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/acad9319c8ad606833872094506ebbfffd321344.png\"},{\"imageName\":\"[清单R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/20eab20210e0958b0da33174b7f4606eca92b92b.png\"},{\"imageName\":\"[电影R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3eec7a10e8cf68f44dbcb930ecb05f2927f8ae1e.png\"},{\"imageName\":\"[学生党R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/04984e414827730e5689900e1e45d3fd0c50a6d6.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5862336b380dc7bd68f068e19b8ef613b7913c3d.png\",\"imageName\":\"[彩虹R]\"},{\"imageName\":\"[爆炸R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/58ed0344253015243334e5b1fd6b642ee3e0346c.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/403d2c9ede2e95cb8b82dd348da4b2aac0bf9d62.png\",\"imageName\":\"[炸弹R]\"},{\"imageName\":\"[火R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f1d8e7c5b4182c05510f3aeadecee19e968b42.png\"},{\"imageName\":\"[啤酒R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e71d86b28f1ba48b58291b53bf6156810fb9377.png\"},{\"imageName\":\"[咖啡R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b3b5dbb3a564a68115a4343fe536a20e34d3c953.png\"},{\"imageName\":\"[钱袋R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/026f431acf58d6d2a19963a68dbf70c53359eada.png\"},{\"imageName\":\"[流汗R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4fc14b31e947deec15d0a1b3f96ae57214ab2bb2.png\"},{\"imageName\":\"[发R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/8a61d522a0a19e51280b780af24d2cf972195d24.png\"},{\"imageName\":\"[红包R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d708e5bb8b0d5e1a0628a3e2324bfde507736f1c.png\"},{\"imageName\":\"[福R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/7d0da07b800a4b999e06ce66759336be05f3f3a0.png\"},{\"imageName\":\"[鞭炮R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3415b947b0b66b01c4fabdec2b729c34a5f8a0b2.png\"},{\"imageName\":\"[庆祝R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51eab29d66493ab028e9a446c6c10fa606e1e412.png\"},{\"imageName\":\"[烟花R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/64071df3b7c40545149a1d26fcfdf0e704c96c2c.png\"},{\"imageName\":\"[气球R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a57b1e6f8e48ac2a4171afe620df545dd760fd08.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f3c0659718c26f36ca3d57466c9cc0a9120e52f8.png\",\"imageName\":\"[看R]\"},{\"imageName\":\"[新月R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a1493a29d6a4b63caa73a2a2af4706186dbccd6b.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bf117e6b7458e3bec281b34d9ed767aed94cdc40.png\",\"imageName\":\"[满月R]\"},{\"imageName\":\"[大便R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/82e3b1495613b1c173c8a5d4efcd9cc32ecfb6b9.png\"},{\"imageName\":\"[太阳R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fe0276430f14dad6b791528ba3acd0c541998a28.png\"},{\"imageName\":\"[晚安R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/937f70403d7a0b65d0b42fcd67e0efd8618c3d05.png\"},{\"imageName\":\"[星R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b98fbe9d7371faf3ff43342f166297cf6446531d.png\"},{\"imageName\":\"[玫瑰R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/abc0a1cd8434c5348e89e887cf8a4f93f352558c.png\"},{\"imageName\":\"[凋谢R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5f58213013b6d97a190fc42b1e2aed344e746ba3.png\"},{\"imageName\":\"[郁金香R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ee78f61c5c20e159e97bee4612bc2089c358f33b.png\"},{\"imageName\":\"[樱花R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ef50e51cb37c948b56dc856fed12e5643597c1dc.png\"},{\"imageName\":\"[海豚R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/b1a4ebde71f735db6c2f45dfce4e23126fc28c32.png\"},{\"imageName\":\"[放大镜R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/257c99be653d2ccc3f25b7426aa1e5a269e85421.png\"},{\"imageName\":\"[刀R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/a4d581be51146d70d81679d603d579da040e7183.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ad29f04bb78c2551f3e5d57425618a78455b20e.png\",\"imageName\":\"[辣椒R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/c15e57a392c37774bfa119af17cfc4f1c5b9ec70.png\",\"imageName\":\"[黄瓜R]\"},{\"imageName\":\"[葡萄R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5978958778577a9baa16b93cc0979d9d70291919.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d29f5474efafbe34835214c37c42f6159fbba789.png\",\"imageName\":\"[草莓R]\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d64f9e067d75a9722f46d8f858d7afbb43908ed.png\",\"imageName\":\"[桃子R]\"},{\"imageName\":\"[红薯R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bfb8a6309b8b42af2cf7c8ce20d1d4fb9a64b512.png\"},{\"imageName\":\"[栗子R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/3160dda81f09abd55fc26312a53f5945cd975834.png\"},{\"imageName\":\"[红色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d6125900d5de3969a1bb075e23d361c4bd78b0eb.png\"},{\"imageName\":\"[黄色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/5421d25d7566afe3fbd5a91c9e704ea2afa4a639.png\"},{\"imageName\":\"[绿色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d384e2e381f4c96257b29ccc054d70d82af786f7.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/284e12f435d3c09056dd264384adbdbb82833c15.png\",\"imageName\":\"[蓝色心形R]\"},{\"imageName\":\"[紫色心形R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca6e9a1c66a32bd7f2c5c49f1b51507c8f16c902.png\"},{\"imageName\":\"[爱心R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/fc7cec55e0e1a0ffd8668d89ea2921c23c63539e.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/58b58fa86c33cf358b83aef0e5c9a89298cbc1e4.png\",\"imageName\":\"[两颗心R]\"},{\"imageName\":\"[浅肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/691d1d3544521be6fa0ffbf58d6a9743d5303a16.png\"},{\"imageName\":\"[中浅肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/573a26c25f11bacad6a6e266833fdf21fe893e17.png\"},{\"imageName\":\"[中等肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/e24ca827231348b427b5b3e0b0c6675f9eced27b.png\"},{\"imageName\":\"[中深肤色R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/414cc459c8d22b93b79e97b76b0f4a906557c564.png\"},{\"imageName\":\"[有R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6c4ed27842a186f3a89a65f74cc9b3984e12e5e6.png\"},{\"imageName\":\"[可R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1901af71ad54c620e4c2d895fb6a2af28cd83ca5.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/682af0d49dcf04c340abff12b81558621850b900.png\",\"imageName\":\"[蹲R]\"},{\"imageName\":\"[零R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f0fc07ddd7d44751b41d53f102114fd7255881.png\"},{\"imageName\":\"[一R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/1f6bad36efca7e77f20e5c0339c44564cf0a6fa0.png\"},{\"imageName\":\"[二R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdb8a0f60e918177ee4de71aebced4a68658f545.png\"},{\"imageName\":\"[三R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f41145ef41eaf9f8d42e208cace1f2a0f9ed602b.png\"},{\"imageName\":\"[四R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e3c5dc71bee8d45b9be5ffe63554abf86512fe1.png\"},{\"imageName\":\"[五R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d8c24a51ffbe618a13fc19748e0d4e7cf80dba78.png\"},{\"imageName\":\"[六R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/55962ff13b3cb8cc3388d5acd8627d8aa40b8fb8.png\"},{\"imageName\":\"[七R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d19093baf638f86987d9ccb9f530060b573d5a0.png\"},{\"imageName\":\"[八R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d245ba7b1bdc7f73928e282194acc654b10a3bbb.png\"},{\"imageName\":\"[九R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdd4d21ae715040c7afb737317797266ef14f727.png\"},{\"imageName\":\"[加一R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/d5f1bbb77a939d7521ebe80439b39a77f05310ff.png\"},{\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/6775ba4a34325edc384a932c5aa9ff4b7be059d4.png\",\"imageName\":\"[满R]\"},{\"imageName\":\"[禁R]\",\"image\":\"https://picasso-static.xiaohongshu.com/fe-platform/f168e3aa080bff213e57b5b8367b4fb161e99ce8.png\"}],\"name\":\"Emoji 表情\"}],\"redmojiMap\":{\"[微笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9366d16631e3e208689cbc95eefb7cfb0901001e.png\",\"[害羞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/219fe9d7e40b14dd7a6712203143bb1f9972bc5c.png\",\"[失望R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b862c8f94da375f55805a97c152efeeb5099c149.png\",\"[汗颜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/87e23e577662f3268362518f7f4e90e30b4ea284.png\",\"[哇R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e0771182c12362d41f70356f714d84dccc4d07bc.png\",\"[喝奶茶R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/364ad5d3e0d5c3b1aa101c9243f488be97d9e8d7.png\",\"[自拍R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d4fe00be555964ddf8301e256cd906b9032679a5.png\",\"[偷笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d1a34cf8aeac526d36890d3e8f727192a6808ecf.png\",\"[飞吻R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/81cedd016ad9d8bef38b2cd0c1e725454df53598.png\",\"[石化R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a61db6b1917b6c5c1e8f30bbeea9118a7bdbbe74.png\",\"[笑哭R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca75b2fc85b0a3e171fe5df1cbf90efdcd3ba571.png\",\"[赞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1b81c5ec3f7006f6b8baf7c006773f5f9d1ab6d7.png\",\"[蹲后续H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a633dcf8d48c500ae11532d0583c529b89286c66.webp\",\"[暗中观察R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0a9cd643452c7b717b9735a23c550295baa69f02.png\",\"[买爆R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c402c10ac31e2e024393cfa7ca61d014579d9191.png\",\"[大笑R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/aed28089f6578522cd490f636955efe6dd27da38.png\",\"[色色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/913a9e2c42916a338b9fa20cf780ae435f51acac.png\",\"[生气R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/91515ae9718d8cce4f8de909683011b538d35327.png\",\"[哭惹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/14b005f7afd5f7c88620478b610bf1de90c4ceab.png\",\"[萌萌哒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c255f0ae809f8045561a80737b6aec25139f7607.png\",\"[斜眼R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6062be312a922da7998f99fb773e06cea0a640df.png\",\"[可怜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/36338a7a39e27341b34e845e28561378e9ad1ede.png\",\"[鄙视R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0dbbe487e5157d9fb720df7e59fe45a7927af647.png\",\"[皱眉R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fd82d69014a4a50397e20fc6b23ae8dba1c74998.png\",\"[抓狂R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/13619bff18deffe1d2dcc4be0a6ba7ee0394926b.png\",\"[捂脸R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/83278234fdeb5c36682334f6eb756d243ee62201.png\",\"[派对R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/7a6287c7f65fabdc15fa8f06b2696cccc21e86f2.png\",\"[吧唧R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/238271771c806047fc928b6ba49a6d8e7a741e5e.png\",\"[惊恐R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/114d21cd3f1b4a1591cc997ddd5976bb0cec8f4c.png\",\"[抠鼻R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5fd4922d00a004260912247dad6ca7149d8a1f75.png\",\"[再见R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c34602650951342f09ca6e00d6f4c4ac57208a07.png\",\"[叹气R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5ce63c6024defb2f6334aa153fd0fd238a683779.png\",\"[睡觉R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d98472a962e744dd238f2b4f5dba2665dcb8360b.png\",\"[得意R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b02bf85f97acbd6be1749148e163b36920655f92.png\",\"[吃瓜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a38d15b09910f65756d521f1f46031c44694214a.png\",\"[扶墙R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6eb56b590b5c70e4559cf5bd93056a6e74ffc474.png\",\"[黑薯问号R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4835a534cddad71286ad4e8f0514fded208360d.png\",\"[黄金薯R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/08b0e51ac813a53bebeb0b9391df5094d4777951.png\",\"[吐舌头H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e4533cbaa5829c6ffd92992414290987e39ba6be.png\",\"[扯脸H]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d968308cfaf571fbc75cbcd7ec0cefe9150a390a.png\",\"[doge]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7c0498189d449e8f22946be494d6bad48eda5ab.png\",\"[天幕R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/7642341e830f97c45f3261b9adee8b5a7336499d.png\",\"[卡式炉R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/783dc5c9039dab7920f60b69a0fe57e77302ddcd.png\",\"[折叠椅R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/359bd197c452258888f4f3f224d40d140b1247c3.png\",\"[营地车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/8d3e5b8a06eda42229adf550d930bb8e4aaae9b7.png\",\"[露营灯R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/093dd4338b46ca52074d060c1c75ce04697af6d4.png\",\"[露营R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bc046729a7265fa579fb9c26289f9e9fcaa83beb.png\",\"[渔夫帽R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/8a513afd61b9dd09c9e138e882e92ff9cae14649.png\",\"[登山鞋R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/fe65c446020944558c142d288e095e5484cba90f.png\",\"[背包R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/d9f0f58518cc9a1d73caf97ff5b0ecb4fd5a741b.png\",\"[马甲R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/2fda1b2115dccf04ac5143210b8d83f352f73e2c.png\",\"[骑行服R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/ffc5912b221563c0a7f3fd751b87e27f7dd5318a.png\",\"[手套R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/9572fe03b56aef9ec8a1e79dac64d4225a2e380a.png\",\"[头盔R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/2a5fe9cfad77cfcf632c1cb6123e68250afcbff2.png\",\"[风镜R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/0e7fb713c7fca2e381a40f590a46a262780df631.png\",\"[公路车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/61708b29215d3fcb6790d25c061d47775823d379.png\",\"[折叠车R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/57f9b02650b95f08122c0462927cce3df847e246.png\",\"[飞盘R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/6e92309ecab879d8bb1b0b83536f025bdc1e21e8.png\",\"[冲浪板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/012c014ef465c0bda4a3af39a713629aa3508da3.png\",\"[双翘滑板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/bf2be5bd7fe7b7aac5bc06c44ea2daf456750674.png\",\"[陆冲板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/5a9b44f49a27f75224f6cbd3ef95ec65a579f907.png\",\"[长板R]\":\"https://fe-video-qc.xhscdn.com/fe-platform/87d0aeb63f769b04eb119bd2f0fc9128a645747a.png\",\"[种草R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/035c8044c53dbf7df2cf28d6ec35eb325567121b.png\",\"[拔草R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c9e8d66eabeaa823b91e4caeb62088a1521dbe63.png\",\"[点赞R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/391438d25580a034707791b5f165c27f8899025a.png\",\"[向右R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ae143d3423b5af03ae6b63dc197872ec6a59a6ff.png\",\"[合十R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fbdbb2547a281e18ee9759e3d658d417871996c0.png\",\"[okR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/65bce6a5e07c5adecd8a9660f833266c4cffa0e6.png\",\"[加油R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab059229949e73619961c5ee1f7ee10d2318c170.png\",\"[握手R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d0d01ced40255c3855c80fc641b432758c041dea.png\",\"[鼓掌R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/59bbbe6fc2879f6ef42e63b3264096a9f4d403c7.png\",\"[弱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ab298d8a629530f3bb98b94718acb6f20b2cbc66.png\",\"[耶R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b7d3bb36a6422f92f2447f2b300d3aff0b7baa21.png\",\"[抱拳R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0ae972c2da43acd565596fb0234c558f84b0a390.png\",\"[勾引R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/0b219f805826238b85eb114bb1781bf5d5808cbf.png\",\"[拳头R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/20bb351c9538975e1a3b8ec4aa5821ad9d6f2215.png\",\"[拥抱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/efc3b7a9e6df5d2be0233e203adf0d1110623441.png\",\"[举手R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/84320b00dda66dcb661b5fb5d75ded2de4754b0a.png\",\"[猪头R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e7eae4ef972a29818a56d6e00f85304152a58430.png\",\"[老虎R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f6d52ce0dd3bfa963a5a624e9da8417d02c9f752.png\",\"[集美R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/124387198d229cb5aa2be5dd74db4af820e85dcd/xhs_theme_xy_emotion_redmoji_jimei.png\",\"[仙女R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3a0d4108b32e366f7438d448a8157e9e4247e5b3/xhs_theme_xy_emotion_redmoji_xiannv.png\",\"[红书R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/182d040c46942e0ba1c8eeb66bf7047dad751e72.png\",\"[开箱R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/200ada9354c5c974164bffa594ad4e33614404aa.png\",\"[探店R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b9dfa6d9e5cb81b2f0bdd77e14b1841608c03224.png\",\"[ootdR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/595650f7fb0ee6a475c6bdbe4d6a707524ed9c90.png\",\"[同款R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1a573c081b4aad6814c23a33d51c86a69670b90f.png\",\"[打卡R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/89214fad0c95300ab58a96037fddafa0415d387e.png\",\"[飞机R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ac94463031f15e8c73db4a457a35ac473822a00.png\",\"[拍立得R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d87604b3ab8b56e98023ae582deea40230595fcc.png\",\"[薯券R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/080302ac0fd8f847753853c50cd0cf00709c4419.png\",\"[优惠券R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/68ef659532ab68296aa14f89e29829da4d9aed5a.png\",\"[购物车R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3598e9b2a43cd1ca6ec4b4dc7670541c7bdda2fa.png\",\"[kissR]\":\"https://picasso-static.xiaohongshu.com/fe-platform/071e9c9d731ce31f5ece64babda5f3d4d9207496.png\",\"[礼物R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/39e0ed44f24bd2d211161a5086705ab1d4439c41.png\",\"[生日蛋糕R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/259be907840312a7013dae79ff6f99012dabe24b.png\",\"[私信R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/2062069d03c2927cc823ad0f65c4db645e968058.png\",\"[请文明R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d070fee56c6069ac246ffb0cba1eaf3609df9680.png\",\"[请友好R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5c4d2abd9058163b496e054d7448d91c212282d3.png\",\"[氛围感R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/acad9319c8ad606833872094506ebbfffd321344.png\",\"[清单R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/20eab20210e0958b0da33174b7f4606eca92b92b.png\",\"[电影R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3eec7a10e8cf68f44dbcb930ecb05f2927f8ae1e.png\",\"[学生党R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/04984e414827730e5689900e1e45d3fd0c50a6d6.png\",\"[彩虹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5862336b380dc7bd68f068e19b8ef613b7913c3d.png\",\"[爆炸R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/58ed0344253015243334e5b1fd6b642ee3e0346c.png\",\"[炸弹R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/403d2c9ede2e95cb8b82dd348da4b2aac0bf9d62.png\",\"[火R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f1d8e7c5b4182c05510f3aeadecee19e968b42.png\",\"[啤酒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e71d86b28f1ba48b58291b53bf6156810fb9377.png\",\"[咖啡R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b3b5dbb3a564a68115a4343fe536a20e34d3c953.png\",\"[钱袋R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/026f431acf58d6d2a19963a68dbf70c53359eada.png\",\"[流汗R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4fc14b31e947deec15d0a1b3f96ae57214ab2bb2.png\",\"[发R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/8a61d522a0a19e51280b780af24d2cf972195d24.png\",\"[红包R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d708e5bb8b0d5e1a0628a3e2324bfde507736f1c.png\",\"[福R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/7d0da07b800a4b999e06ce66759336be05f3f3a0.png\",\"[鞭炮R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3415b947b0b66b01c4fabdec2b729c34a5f8a0b2.png\",\"[庆祝R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51eab29d66493ab028e9a446c6c10fa606e1e412.png\",\"[烟花R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/64071df3b7c40545149a1d26fcfdf0e704c96c2c.png\",\"[气球R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a57b1e6f8e48ac2a4171afe620df545dd760fd08.png\",\"[看R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f3c0659718c26f36ca3d57466c9cc0a9120e52f8.png\",\"[新月R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a1493a29d6a4b63caa73a2a2af4706186dbccd6b.png\",\"[满月R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bf117e6b7458e3bec281b34d9ed767aed94cdc40.png\",\"[大便R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/82e3b1495613b1c173c8a5d4efcd9cc32ecfb6b9.png\",\"[太阳R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fe0276430f14dad6b791528ba3acd0c541998a28.png\",\"[晚安R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/937f70403d7a0b65d0b42fcd67e0efd8618c3d05.png\",\"[星R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b98fbe9d7371faf3ff43342f166297cf6446531d.png\",\"[玫瑰R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/abc0a1cd8434c5348e89e887cf8a4f93f352558c.png\",\"[凋谢R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5f58213013b6d97a190fc42b1e2aed344e746ba3.png\",\"[郁金香R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ee78f61c5c20e159e97bee4612bc2089c358f33b.png\",\"[樱花R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ef50e51cb37c948b56dc856fed12e5643597c1dc.png\",\"[海豚R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/b1a4ebde71f735db6c2f45dfce4e23126fc28c32.png\",\"[放大镜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/257c99be653d2ccc3f25b7426aa1e5a269e85421.png\",\"[刀R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/a4d581be51146d70d81679d603d579da040e7183.png\",\"[辣椒R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9ad29f04bb78c2551f3e5d57425618a78455b20e.png\",\"[黄瓜R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/c15e57a392c37774bfa119af17cfc4f1c5b9ec70.png\",\"[葡萄R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5978958778577a9baa16b93cc0979d9d70291919.png\",\"[草莓R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d29f5474efafbe34835214c37c42f6159fbba789.png\",\"[桃子R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d64f9e067d75a9722f46d8f858d7afbb43908ed.png\",\"[红薯R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bfb8a6309b8b42af2cf7c8ce20d1d4fb9a64b512.png\",\"[栗子R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/3160dda81f09abd55fc26312a53f5945cd975834.png\",\"[红色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d6125900d5de3969a1bb075e23d361c4bd78b0eb.png\",\"[黄色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/5421d25d7566afe3fbd5a91c9e704ea2afa4a639.png\",\"[绿色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d384e2e381f4c96257b29ccc054d70d82af786f7.png\",\"[蓝色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/284e12f435d3c09056dd264384adbdbb82833c15.png\",\"[紫色心形R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/ca6e9a1c66a32bd7f2c5c49f1b51507c8f16c902.png\",\"[爱心R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/fc7cec55e0e1a0ffd8668d89ea2921c23c63539e.png\",\"[两颗心R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/58b58fa86c33cf358b83aef0e5c9a89298cbc1e4.png\",\"[浅肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/691d1d3544521be6fa0ffbf58d6a9743d5303a16.png\",\"[中浅肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/573a26c25f11bacad6a6e266833fdf21fe893e17.png\",\"[中等肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/e24ca827231348b427b5b3e0b0c6675f9eced27b.png\",\"[中深肤色R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/414cc459c8d22b93b79e97b76b0f4a906557c564.png\",\"[有R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6c4ed27842a186f3a89a65f74cc9b3984e12e5e6.png\",\"[可R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1901af71ad54c620e4c2d895fb6a2af28cd83ca5.png\",\"[蹲R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/682af0d49dcf04c340abff12b81558621850b900.png\",\"[零R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/51f0fc07ddd7d44751b41d53f102114fd7255881.png\",\"[一R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/1f6bad36efca7e77f20e5c0339c44564cf0a6fa0.png\",\"[二R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdb8a0f60e918177ee4de71aebced4a68658f545.png\",\"[三R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f41145ef41eaf9f8d42e208cace1f2a0f9ed602b.png\",\"[四R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/9e3c5dc71bee8d45b9be5ffe63554abf86512fe1.png\",\"[五R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d8c24a51ffbe618a13fc19748e0d4e7cf80dba78.png\",\"[六R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/55962ff13b3cb8cc3388d5acd8627d8aa40b8fb8.png\",\"[七R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/4d19093baf638f86987d9ccb9f530060b573d5a0.png\",\"[八R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d245ba7b1bdc7f73928e282194acc654b10a3bbb.png\",\"[九R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/bdd4d21ae715040c7afb737317797266ef14f727.png\",\"[加一R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/d5f1bbb77a939d7521ebe80439b39a77f05310ff.png\",\"[满R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/6775ba4a34325edc384a932c5aa9ff4b7be059d4.png\",\"[禁R]\":\"https://picasso-static.xiaohongshu.com/fe-platform/f168e3aa080bff213e57b5b8367b4fb161e99ce8.png\"}}"
203
- },
204
- {
205
- "name": "XHS_STRATEGY_BOX",
206
- "value": "{\"firstVisit-\":false}"
207
- },
208
- {
209
- "name": "dsllt",
210
- "value": "1775149012716"
211
- },
212
- {
213
- "name": "HOME_FEED_CURSOR_SCORE",
214
- "value": "1.7751490629770017E9"
215
- },
216
- {
217
- "name": "NEW_XHS_ABTEST_REPORT_KEY",
218
- "value": "{\"ed2f717ce19a62874610b27d8b68283469ce9fd2000000003402aeea4dd9f636-4a60-5319-9493-234b8085c598\":\"2026-04-03\"}"
219
- },
220
- {
221
- "name": "guide-ExploreMoreGuide",
222
- "value": "{\"neverShowAgainFlag\":false,\"hasShownFlag\":false,\"lastShowTime\":1775149006681}"
223
- },
224
- {
225
- "name": "guide-ImageNoteGuide",
226
- "value": "{\"neverShowAgainFlag\":false,\"hasShownFlag\":false,\"lastShowTime\":1775149006681}"
227
- },
228
- {
229
- "name": "b1b1",
230
- "value": "1"
231
- },
232
- {
233
- "name": "p1",
234
- "value": "1"
235
- },
236
- {
237
- "name": "last_tiga_update_time",
238
- "value": "1775149012779"
239
- },
240
- {
241
- "name": "UNREAD_NOTE_INFO",
242
- "value": "{\"cachedFeeds\":[],\"unreadBeginNoteId\":\"69cd871c0000000020038c9d\",\"unreadEndNoteId\":\"69ca710d0000000022024918\",\"unreadNoteCount\":16,\"timestamp\":0}"
243
- },
244
- {
245
- "name": "sdt_source_storage_key",
246
- "value": "{\"commonPatch\":[\"/fe_api/burdock/v2/note/post\",\"/api/sns/web/v1/comment/post\",\"/api/sns/web/v1/note/like\",\"/api/sns/web/v1/note/collect\",\"/api/sns/web/v1/user/follow\",\"/api/sns/web/v1/feed\",\"/api/sns/web/v1/login/activate\",\"/api/sns/web/v1/note/metrics_report\",\"/api/redcaptcha\",\"/api/store/jpd/main\",\"/phoenix/api/strategy/getAppStrategy\",\"/web_api/sns/v2/note\"],\"signUrl\":\"https://fe-static.xhscdn.com/as/v1/f218/a15/public/04b29480233f4def5c875875b6bdc3b1.js\",\"xhsTokenUrl\":\"https://fe-static.xhscdn.com/as/v1/3e44/public/bf7d4e32677698655a5cadc581fd09b3.js\",\"url\":\"https://fe-static.xhscdn.com/as/v2/fp/a2a27d37e76c8a23531accea3b0956b7.js\",\"reportUrl\":\"/api/sec/v1/shield/webprofile\",\"desVersion\":\"2\",\"validate\":true,\"signVersion\":\"1\",\"extraInfo\":{\"dsUrl\":\"https://fe-static.xhscdn.com/as/v2/ds/6545c70e73d7e06896b3c574a70b5438.js\"}}"
247
- },
248
- {
249
- "name": "xhs-pc-theme",
250
- "value": "system"
251
- },
252
- {
253
- "name": "b1",
254
- "value": "I38rHdgsjopgIvesdVwgIC+oIELmBZ5e3VwXLgFTIxS3bqwErFeexd0ekncAzMFYnqthIhJeSnMDKutRI3KsYorWHPtGrbi0P9WfIi/eWc6eYqtyQApPI37ekmR6QL+5Ii6sdnoeSfqYHqwl2qt5B0DoIx+PGDi/sVtkIx0sxuwr4qtiIhuaIE3e3LV0I3VTIC7e0utl2ADmsLveDSKsSPw5IEvsiVtJOqw8BuwfPpdeTFWOIx4TIiu6ZPwrPut5IvlaLbgs3qtxIxes1VwHIkumIkIyejgsY/WTge7eSqte/D7sDcpipedeYrDtIC6eDVw2IENsSqtlnlSuNjVtIvoekqt3cZ7sVo4gIESyIhE2+9DUIvzy4I8OIic7ZPwAIvih4o/sDLds6PwVIC7eSd7eYeR4IEve6SGMtVwUIids3s/sxZNeiVtbcUeeYVwEIvkzzAeeduwApBOsDqweIxltIxZSouwOgVwpsr4heU/e6LveDPwFIvgs1ros1DZiIi7sjbos3grFIE0sDqwHIvmZaVtfaVwBIE7sDqwxIiNs3uw5IkvsdqtlwuwLoVtUI3zXIvVr27lk2Ive1utCIEDtIkJeYut4bYRtn/0ejgI7Ih4s2uwfJPwSI35skqwWGD5s6WAs3phwIhos3fOs3utsLuwOIv/efVwfIkgs60WoICKedo/eSutXI3Os6VwV2dTwIEPeIvJs1L7ex93ejM6sjVtzIEqEI3k6sVtoIvzVIhgekpFvwaAsfqw6IxLFguwt+SJeVjesVPtezVttIkVCICSE+ut4sVwmIk0sxb0skqw7LqwgIhF2eI=="
255
- },
256
- {
257
- "name": "xhs-pc-search-history-5ca1d6c30000000017035b54",
258
- "value": "[]"
259
- },
260
- {
261
- "name": "xhs_context_networkQuality",
262
- "value": "GOOD"
263
- }
264
- ],
265
- "sessionStorage": []
266
- }
267
- ]
268
- }