@myun/gimi-chat 0.0.2 → 0.0.4

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 (206) hide show
  1. package/dist/apis/fetch.d.ts +64 -0
  2. package/dist/apis/fetch.js +512 -0
  3. package/dist/apis/useApi.d.ts +57 -0
  4. package/dist/apis/useApi.js +378 -0
  5. package/dist/assets/image/Subtract.png +0 -0
  6. package/dist/assets/image/ai-logo.png +0 -0
  7. package/dist/assets/image/copyIcon.png +0 -0
  8. package/dist/assets/image/deepthinkActive.png +0 -0
  9. package/dist/assets/image/empty-img-dark.png +0 -0
  10. package/dist/assets/image/empty-img.png +0 -0
  11. package/dist/assets/image/like_active.png +0 -0
  12. package/dist/assets/image/love.png +0 -0
  13. package/dist/assets/image/retry.png +0 -0
  14. package/dist/assets/image/soundOut.png +0 -0
  15. package/dist/assets/image/unlike_active.png +0 -0
  16. package/dist/assets/image/unlove.png +0 -0
  17. package/dist/assets/lottie/ai-bg.json +1704 -0
  18. package/dist/assets/lottie/ai-loading.json +192 -0
  19. package/dist/assets/lottie/ai-output-loading.json +272 -0
  20. package/dist/assets/lottie/ai-output-normal.json +17694 -0
  21. package/dist/assets/lottie/ai-output-strengthen.json +17321 -0
  22. package/dist/assets/lottie/ai-voice-play.json +1 -0
  23. package/dist/assets/lottie/living.json +705 -0
  24. package/dist/assets/lottie/myun-living.json +726 -0
  25. package/dist/assets/lottie/myun-loading.json +530 -0
  26. package/dist/components/ai-chat-dialogue/index.d.ts +16 -0
  27. package/dist/components/ai-chat-dialogue/index.js +1056 -0
  28. package/dist/components/ai-chat-dialogue/index.module.scss +272 -0
  29. package/dist/components/ai-chat-dialogue/message-parser.d.ts +36 -0
  30. package/dist/components/ai-chat-dialogue/message-parser.js +52 -0
  31. package/dist/components/ai-chat-dialogue/tlv.d.ts +7 -0
  32. package/dist/components/ai-chat-dialogue/tlv.js +32 -0
  33. package/dist/components/ai-chat-dialogue/volc-voice-call-client.d.ts +47 -0
  34. package/dist/components/ai-chat-dialogue/volc-voice-call-client.js +246 -0
  35. package/dist/components/ai-correction/index.d.ts +5 -0
  36. package/dist/components/ai-correction/index.js +45 -0
  37. package/dist/components/ai-loading/index.d.ts +3 -0
  38. package/dist/components/ai-loading/index.js +14 -0
  39. package/dist/components/ai-loading/index.module.scss +11 -0
  40. package/dist/components/answer-item/index.d.ts +27 -0
  41. package/dist/components/answer-item/index.js +194 -0
  42. package/dist/components/answer-item/index.module.scss +295 -0
  43. package/dist/components/ask-card/index.d.ts +10 -0
  44. package/dist/components/ask-card/index.js +76 -0
  45. package/dist/components/ask-card/index.module.scss +125 -0
  46. package/dist/components/chat-input/index.d.ts +31 -0
  47. package/dist/components/chat-input/index.js +433 -0
  48. package/dist/components/chat-input/index.module.scss +44 -0
  49. package/dist/components/chat-voice/VoiceCommunication.d.ts +7 -0
  50. package/dist/components/chat-voice/VoiceCommunication.js +69 -0
  51. package/dist/components/chat-voice/VoiceRecord.d.ts +7 -0
  52. package/dist/components/chat-voice/VoiceRecord.js +34 -0
  53. package/dist/components/conversation-delete/index.d.ts +5 -0
  54. package/dist/components/conversation-delete/index.js +24 -0
  55. package/dist/components/dots-loading/index.d.ts +2 -0
  56. package/dist/components/dots-loading/index.js +11 -0
  57. package/dist/components/dots-loading/index.module.scss +45 -0
  58. package/dist/components/empty/index.d.ts +9 -0
  59. package/dist/components/empty/index.js +32 -0
  60. package/dist/components/empty/index.module.scss +27 -0
  61. package/dist/components/excel-components/ExcelCard.d.ts +11 -0
  62. package/dist/components/excel-components/ExcelCard.js +35 -0
  63. package/dist/components/excel-components/ExcelExcuting.d.ts +10 -0
  64. package/dist/components/excel-components/ExcelExcuting.js +263 -0
  65. package/dist/components/excel-components/ExcelFailCard.d.ts +9 -0
  66. package/dist/components/excel-components/ExcelFailCard.js +20 -0
  67. package/dist/components/excel-components/ExcelSuccessCard.d.ts +5 -0
  68. package/dist/components/excel-components/ExcelSuccessCard.js +50 -0
  69. package/dist/components/excel-components/index.module.scss +210 -0
  70. package/dist/components/excel-components/styles.module.scss +186 -0
  71. package/dist/components/file-card/fileCardSidebar.d.ts +8 -0
  72. package/dist/components/file-card/fileCardSidebar.js +56 -0
  73. package/dist/components/file-card/index.d.ts +15 -0
  74. package/dist/components/file-card/index.js +97 -0
  75. package/dist/components/file-card/index.module.scss +139 -0
  76. package/dist/components/file-preview/index.d.ts +3 -0
  77. package/dist/components/file-preview/index.js +229 -0
  78. package/dist/components/file-preview/index.module.scss +120 -0
  79. package/dist/components/file-upload/index.d.ts +16 -0
  80. package/dist/components/file-upload/index.js +238 -0
  81. package/dist/components/file-upload/uploadV1.d.ts +16 -0
  82. package/dist/components/file-upload/uploadV1.js +267 -0
  83. package/dist/components/gimi-sidebar/index.d.ts +17 -0
  84. package/dist/components/gimi-sidebar/index.js +41 -0
  85. package/dist/components/gimi-sidebar/index.module.scss +136 -0
  86. package/dist/components/header/index.d.ts +5 -0
  87. package/dist/components/header/index.js +20 -0
  88. package/dist/components/header/index.module.scss +26 -0
  89. package/dist/components/iconfont-com/index.d.ts +11 -0
  90. package/dist/components/iconfont-com/index.js +29 -0
  91. package/dist/components/index.d.ts +1 -0
  92. package/dist/components/index.js +1 -0
  93. package/dist/components/knowledge-trace/KnowledgeIconComponent.d.ts +7 -0
  94. package/dist/components/knowledge-trace/KnowledgeIconComponent.js +101 -0
  95. package/dist/components/knowledge-trace/classList.d.ts +6 -0
  96. package/dist/components/knowledge-trace/classList.js +72 -0
  97. package/dist/components/knowledge-trace/documentList.d.ts +6 -0
  98. package/dist/components/knowledge-trace/documentList.js +75 -0
  99. package/dist/components/knowledge-trace/index.d.ts +18 -0
  100. package/dist/components/knowledge-trace/index.js +155 -0
  101. package/dist/components/knowledge-trace/index.module.scss +262 -0
  102. package/dist/components/knowledge-trace/interfaces.d.ts +166 -0
  103. package/dist/components/knowledge-trace/interfaces.js +1 -0
  104. package/dist/components/knowledge-trace/videoList.d.ts +6 -0
  105. package/dist/components/knowledge-trace/videoList.js +91 -0
  106. package/dist/components/lottie-img/index.d.ts +8 -0
  107. package/dist/components/lottie-img/index.js +99 -0
  108. package/dist/components/message-actions/CopyButton.d.ts +7 -0
  109. package/dist/components/message-actions/CopyButton.js +33 -0
  110. package/dist/components/message-actions/LikeButton.d.ts +7 -0
  111. package/dist/components/message-actions/LikeButton.js +34 -0
  112. package/dist/components/message-actions/RegenerateButton.d.ts +5 -0
  113. package/dist/components/message-actions/RegenerateButton.js +27 -0
  114. package/dist/components/message-actions/UnLikeButton.d.ts +7 -0
  115. package/dist/components/message-actions/UnLikeButton.js +34 -0
  116. package/dist/components/message-actions/VoicePlay.d.ts +10 -0
  117. package/dist/components/message-actions/VoicePlay.js +74 -0
  118. package/dist/components/message-list/index.d.ts +19 -0
  119. package/dist/components/message-list/index.js +167 -0
  120. package/dist/components/message-list/index.module.scss +304 -0
  121. package/dist/components/no-microphone-root/index.d.ts +6 -0
  122. package/dist/components/no-microphone-root/index.js +36 -0
  123. package/dist/components/no-microphone-root/index.module.scss +42 -0
  124. package/dist/components/preset-agent-content/index.d.ts +8 -0
  125. package/dist/components/preset-agent-content/index.js +24 -0
  126. package/dist/components/preset-agent-content/index.module.scss +48 -0
  127. package/dist/components/quoted-content/index.d.ts +0 -0
  128. package/dist/components/quoted-content/index.js +171 -0
  129. package/dist/components/quoted-content/index.module.scss +76 -0
  130. package/dist/components/reasoning-content/index.d.ts +6 -0
  131. package/dist/components/reasoning-content/index.js +116 -0
  132. package/dist/components/reasoning-content/index.module.scss +164 -0
  133. package/dist/components/reference-content/index.d.ts +28 -0
  134. package/dist/components/reference-content/index.js +125 -0
  135. package/dist/components/reference-content/index.module.scss +73 -0
  136. package/dist/components/templates/CommonChat.d.ts +5 -0
  137. package/dist/components/templates/CommonChat.js +218 -0
  138. package/dist/components/templates/GimiChatComponent.d.ts +4 -0
  139. package/dist/components/templates/GimiChatComponent.js +23 -0
  140. package/dist/components/templates/demo/demo.d.ts +2 -0
  141. package/dist/components/templates/demo/demo.js +110 -0
  142. package/dist/components/templates/index.module.scss +119 -0
  143. package/dist/components/upload-list/index.d.ts +15 -0
  144. package/dist/components/upload-list/index.js +90 -0
  145. package/dist/components/upload-list/index.module.scss +119 -0
  146. package/dist/components/voice-bars/index.d.ts +4 -0
  147. package/dist/components/voice-bars/index.js +174 -0
  148. package/dist/components/voice-check-dialog/index.d.ts +8 -0
  149. package/dist/components/voice-check-dialog/index.js +163 -0
  150. package/dist/components/voice-check-dialog/index.module.scss +9 -0
  151. package/dist/components/voice-recording/index.d.ts +9 -0
  152. package/dist/components/voice-recording/index.js +54 -0
  153. package/dist/components/voice-recording/index.module.scss +41 -0
  154. package/dist/components/work-flow-content/demo.d.ts +3 -0
  155. package/dist/components/work-flow-content/demo.js +11 -0
  156. package/dist/components/work-flow-content/index.d.ts +6 -0
  157. package/dist/components/work-flow-content/index.js +55 -0
  158. package/dist/components/work-flow-content/index.module.scss +23 -0
  159. package/dist/constants.d.ts +24 -0
  160. package/dist/constants.js +24 -0
  161. package/dist/hooks/useChatActions.d.ts +12 -0
  162. package/dist/hooks/useChatActions.js +207 -0
  163. package/dist/hooks/useChatHistory.d.ts +8 -0
  164. package/dist/hooks/useChatHistory.js +225 -0
  165. package/dist/hooks/useChatMessage.d.ts +49 -0
  166. package/dist/hooks/useChatMessage.js +87 -0
  167. package/dist/hooks/useChatRecommend.d.ts +8 -0
  168. package/dist/hooks/useChatRecommend.js +126 -0
  169. package/dist/hooks/useChatStream.d.ts +20 -0
  170. package/dist/hooks/useChatStream.js +244 -0
  171. package/dist/hooks/useChatUI.d.ts +32 -0
  172. package/dist/hooks/useChatUI.js +134 -0
  173. package/dist/hooks/useChatVoice.d.ts +11 -0
  174. package/dist/hooks/useChatVoice.js +379 -0
  175. package/dist/hooks/useCommonChatAPI.d.ts +27 -0
  176. package/dist/hooks/useCommonChatAPI.js +1276 -0
  177. package/dist/hooks/useFile.d.ts +13 -0
  178. package/dist/hooks/useFile.js +288 -0
  179. package/dist/hooks/useKnowledgeService.d.ts +17 -0
  180. package/dist/hooks/useKnowledgeService.js +210 -0
  181. package/dist/hooks/useLastEventId.d.ts +8 -0
  182. package/dist/hooks/useLastEventId.js +66 -0
  183. package/dist/hooks/useLongPoll.d.ts +3 -0
  184. package/dist/hooks/useLongPoll.js +111 -0
  185. package/dist/hooks/useScroll.d.ts +4 -0
  186. package/dist/hooks/useScroll.js +172 -0
  187. package/dist/index.d.ts +1 -0
  188. package/dist/index.js +1 -0
  189. package/dist/interfaces/chatMessage.d.ts +139 -0
  190. package/dist/interfaces/fileInterface.d.ts +10 -0
  191. package/dist/interfaces/fileInterface.js +11 -0
  192. package/dist/interfaces/knowledgeTrace.d.ts +177 -0
  193. package/dist/store/hooks.d.ts +4 -0
  194. package/dist/store/hooks.js +3 -0
  195. package/dist/store/index.d.ts +7 -0
  196. package/dist/store/index.js +7 -0
  197. package/dist/store/slices/gimiMenuSlice.d.ts +95 -0
  198. package/dist/store/slices/gimiMenuSlice.js +251 -0
  199. package/dist/utils/chatInputUtil.d.ts +19 -0
  200. package/dist/utils/chatInputUtil.js +45 -0
  201. package/dist/utils/tools.d.ts +50 -0
  202. package/dist/utils/tools.js +474 -0
  203. package/dist/utils/voice-stream.d.ts +119 -0
  204. package/dist/utils/voice-stream.js +1162 -0
  205. package/package.json +2 -3
  206. package/LICENSE +0 -21
@@ -0,0 +1,192 @@
1
+ {
2
+ "nm": "合成 1",
3
+ "ddd": 0,
4
+ "h": 80,
5
+ "w": 80,
6
+ "meta": { "g": "@lottiefiles/toolkit-js 0.33.2" },
7
+ "layers": [
8
+ {
9
+ "ty": 4,
10
+ "nm": "形状图层 2",
11
+ "sr": 1,
12
+ "st": 0,
13
+ "op": 900,
14
+ "ip": 0,
15
+ "hd": false,
16
+ "ddd": 0,
17
+ "bm": 0,
18
+ "hasMask": false,
19
+ "ao": 0,
20
+ "ks": {
21
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
22
+ "s": { "a": 0, "k": [26.67, 26.67, 100], "ix": 6 },
23
+ "sk": { "a": 0, "k": 0 },
24
+ "p": {
25
+ "a": 1,
26
+ "k": [
27
+ { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [48, 41.73, 0], "t": 0 },
28
+ { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [26.67, 41.73, 0], "t": 19 },
29
+ { "s": [48, 41.73, 0], "t": 40 }
30
+ ],
31
+ "ix": 2
32
+ },
33
+ "r": { "a": 0, "k": 0, "ix": 10 },
34
+ "sa": { "a": 0, "k": 0 },
35
+ "o": { "a": 0, "k": 100, "ix": 11 }
36
+ },
37
+ "ef": [],
38
+ "shapes": [
39
+ {
40
+ "ty": "gr",
41
+ "bm": 0,
42
+ "hd": false,
43
+ "mn": "ADBE Vector Group",
44
+ "nm": "椭圆 1",
45
+ "ix": 1,
46
+ "cix": 2,
47
+ "np": 3,
48
+ "it": [
49
+ {
50
+ "ty": "el",
51
+ "bm": 0,
52
+ "hd": false,
53
+ "mn": "ADBE Vector Shape - Ellipse",
54
+ "nm": "椭圆路径 1",
55
+ "d": 1,
56
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
57
+ "s": { "a": 0, "k": [40.916, 40.916], "ix": 2 }
58
+ },
59
+ {
60
+ "ty": "st",
61
+ "bm": 0,
62
+ "hd": false,
63
+ "mn": "ADBE Vector Graphic - Stroke",
64
+ "nm": "描边 1",
65
+ "lc": 1,
66
+ "lj": 1,
67
+ "ml": 4,
68
+ "o": { "a": 0, "k": 100, "ix": 4 },
69
+ "w": { "a": 0, "k": 0, "ix": 5 },
70
+ "c": { "a": 0, "k": [1, 1, 1], "ix": 3 }
71
+ },
72
+ {
73
+ "ty": "fl",
74
+ "bm": 0,
75
+ "hd": false,
76
+ "mn": "ADBE Vector Graphic - Fill",
77
+ "nm": "填充 1",
78
+ "c": { "a": 0, "k": [0.251, 0.5255, 1], "ix": 4 },
79
+ "r": 1,
80
+ "o": { "a": 0, "k": 100, "ix": 5 }
81
+ },
82
+ {
83
+ "ty": "tr",
84
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
85
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
86
+ "sk": { "a": 0, "k": 0, "ix": 4 },
87
+ "p": { "a": 0, "k": [4.534, -3.114], "ix": 2 },
88
+ "r": { "a": 0, "k": 0, "ix": 6 },
89
+ "sa": { "a": 0, "k": 0, "ix": 5 },
90
+ "o": { "a": 0, "k": 100, "ix": 7 }
91
+ }
92
+ ]
93
+ }
94
+ ],
95
+ "ind": 1
96
+ },
97
+ {
98
+ "ty": 4,
99
+ "nm": "形状图层 1",
100
+ "sr": 1,
101
+ "st": 0,
102
+ "op": 900,
103
+ "ip": 0,
104
+ "hd": false,
105
+ "ddd": 0,
106
+ "bm": 0,
107
+ "hasMask": false,
108
+ "ao": 0,
109
+ "ks": {
110
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
111
+ "s": { "a": 0, "k": [26.67, 26.67, 100], "ix": 6 },
112
+ "sk": { "a": 0, "k": 0 },
113
+ "p": {
114
+ "a": 1,
115
+ "k": [
116
+ { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [26.67, 41.73, 0], "t": 0 },
117
+ { "o": { "x": 0.167, "y": 0.167 }, "i": { "x": 0.833, "y": 0.833 }, "s": [48, 41.73, 0], "t": 19 },
118
+ { "s": [26.67, 41.73, 0], "t": 40 }
119
+ ],
120
+ "ix": 2
121
+ },
122
+ "r": { "a": 0, "k": 0, "ix": 10 },
123
+ "sa": { "a": 0, "k": 0 },
124
+ "o": { "a": 0, "k": 100, "ix": 11 }
125
+ },
126
+ "ef": [],
127
+ "shapes": [
128
+ {
129
+ "ty": "gr",
130
+ "bm": 0,
131
+ "hd": false,
132
+ "mn": "ADBE Vector Group",
133
+ "nm": "椭圆 1",
134
+ "ix": 1,
135
+ "cix": 2,
136
+ "np": 3,
137
+ "it": [
138
+ {
139
+ "ty": "el",
140
+ "bm": 0,
141
+ "hd": false,
142
+ "mn": "ADBE Vector Shape - Ellipse",
143
+ "nm": "椭圆路径 1",
144
+ "d": 1,
145
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
146
+ "s": { "a": 0, "k": [40.916, 40.916], "ix": 2 }
147
+ },
148
+ {
149
+ "ty": "st",
150
+ "bm": 0,
151
+ "hd": false,
152
+ "mn": "ADBE Vector Graphic - Stroke",
153
+ "nm": "描边 1",
154
+ "lc": 1,
155
+ "lj": 1,
156
+ "ml": 4,
157
+ "o": { "a": 0, "k": 100, "ix": 4 },
158
+ "w": { "a": 0, "k": 0, "ix": 5 },
159
+ "c": { "a": 0, "k": [1, 1, 1], "ix": 3 }
160
+ },
161
+ {
162
+ "ty": "fl",
163
+ "bm": 0,
164
+ "hd": false,
165
+ "mn": "ADBE Vector Graphic - Fill",
166
+ "nm": "填充 1",
167
+ "c": { "a": 0, "k": [0.1843, 0.898, 0.9294], "ix": 4 },
168
+ "r": 1,
169
+ "o": { "a": 0, "k": 100, "ix": 5 }
170
+ },
171
+ {
172
+ "ty": "tr",
173
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
174
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
175
+ "sk": { "a": 0, "k": 0, "ix": 4 },
176
+ "p": { "a": 0, "k": [4.534, -3.114], "ix": 2 },
177
+ "r": { "a": 0, "k": 0, "ix": 6 },
178
+ "sa": { "a": 0, "k": 0, "ix": 5 },
179
+ "o": { "a": 0, "k": 100, "ix": 7 }
180
+ }
181
+ ]
182
+ }
183
+ ],
184
+ "ind": 2
185
+ }
186
+ ],
187
+ "v": "4.10.1",
188
+ "fr": 30,
189
+ "op": 41,
190
+ "ip": 0,
191
+ "assets": []
192
+ }
@@ -0,0 +1,272 @@
1
+ {
2
+ "v": "5.5.8",
3
+ "fr": 60,
4
+ "ip": 0,
5
+ "op": 75,
6
+ "w": 200,
7
+ "h": 200,
8
+ "nm": "SoundBar",
9
+ "ddd": 0,
10
+ "assets": [],
11
+ "layers": [
12
+ {
13
+ "ddd": 0,
14
+ "ind": 1,
15
+ "ty": 4,
16
+ "nm": "Shape Layer 3",
17
+ "sr": 1,
18
+ "ks": {
19
+ "o": { "a": 0, "k": 100, "ix": 11 },
20
+ "r": { "a": 0, "k": 0, "ix": 10 },
21
+ "p": { "a": 0, "k": [125.604, 102.857, 0], "ix": 2 },
22
+ "a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
23
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
24
+ },
25
+ "ao": 0,
26
+ "shapes": [
27
+ {
28
+ "ty": "gr",
29
+ "it": [
30
+ {
31
+ "ty": "rc",
32
+ "d": 1,
33
+ "s": {
34
+ "a": 1,
35
+ "k": [
36
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
37
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 36] },
38
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 68] },
39
+ { "t": 75, "s": [18, 18] }
40
+ ],
41
+ "ix": 2
42
+ },
43
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
44
+ "r": { "a": 0, "k": 20, "ix": 4 },
45
+ "nm": "Rectangle Path 1",
46
+ "mn": "ADBE Vector Shape - Rect",
47
+ "hd": false
48
+ },
49
+ {
50
+ "ty": "st",
51
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
52
+ "o": { "a": 0, "k": 100, "ix": 4 },
53
+ "w": { "a": 0, "k": 0, "ix": 5 },
54
+ "lc": 1,
55
+ "lj": 1,
56
+ "ml": 4,
57
+ "bm": 0,
58
+ "nm": "Stroke 1",
59
+ "mn": "ADBE Vector Graphic - Stroke",
60
+ "hd": false
61
+ },
62
+ {
63
+ "ty": "fl",
64
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
65
+ "o": { "a": 0, "k": 100, "ix": 5 },
66
+ "r": 1,
67
+ "bm": 0,
68
+ "nm": "Fill 1",
69
+ "mn": "ADBE Vector Graphic - Fill",
70
+ "hd": false
71
+ },
72
+ {
73
+ "ty": "tr",
74
+ "p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
75
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
76
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
77
+ "r": { "a": 0, "k": 0, "ix": 6 },
78
+ "o": { "a": 0, "k": 100, "ix": 7 },
79
+ "sk": { "a": 0, "k": 0, "ix": 4 },
80
+ "sa": { "a": 0, "k": 0, "ix": 5 },
81
+ "nm": "Transform"
82
+ }
83
+ ],
84
+ "nm": "Rectangle 1",
85
+ "np": 3,
86
+ "cix": 2,
87
+ "bm": 0,
88
+ "ix": 1,
89
+ "mn": "ADBE Vector Group",
90
+ "hd": false
91
+ }
92
+ ],
93
+ "ip": -1,
94
+ "op": 3599,
95
+ "st": -1,
96
+ "bm": 0
97
+ },
98
+ {
99
+ "ddd": 0,
100
+ "ind": 2,
101
+ "ty": 4,
102
+ "nm": "Shape Layer 2",
103
+ "sr": 1,
104
+ "ks": {
105
+ "o": { "a": 0, "k": 100, "ix": 11 },
106
+ "r": { "a": 0, "k": 0, "ix": 10 },
107
+ "p": { "a": 0, "k": [97.729, 102.857, 0], "ix": 2 },
108
+ "a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
109
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
110
+ },
111
+ "ao": 0,
112
+ "shapes": [
113
+ {
114
+ "ty": "gr",
115
+ "it": [
116
+ {
117
+ "ty": "rc",
118
+ "d": 1,
119
+ "s": {
120
+ "a": 1,
121
+ "k": [
122
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
123
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 68] },
124
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 36] },
125
+ { "t": 75, "s": [18, 18] }
126
+ ],
127
+ "ix": 2
128
+ },
129
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
130
+ "r": { "a": 0, "k": 20, "ix": 4 },
131
+ "nm": "Rectangle Path 1",
132
+ "mn": "ADBE Vector Shape - Rect",
133
+ "hd": false
134
+ },
135
+ {
136
+ "ty": "st",
137
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
138
+ "o": { "a": 0, "k": 100, "ix": 4 },
139
+ "w": { "a": 0, "k": 0, "ix": 5 },
140
+ "lc": 1,
141
+ "lj": 1,
142
+ "ml": 4,
143
+ "bm": 0,
144
+ "nm": "Stroke 1",
145
+ "mn": "ADBE Vector Graphic - Stroke",
146
+ "hd": false
147
+ },
148
+ {
149
+ "ty": "fl",
150
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
151
+ "o": { "a": 0, "k": 100, "ix": 5 },
152
+ "r": 1,
153
+ "bm": 0,
154
+ "nm": "Fill 1",
155
+ "mn": "ADBE Vector Graphic - Fill",
156
+ "hd": false
157
+ },
158
+ {
159
+ "ty": "tr",
160
+ "p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
161
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
162
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
163
+ "r": { "a": 0, "k": 0, "ix": 6 },
164
+ "o": { "a": 0, "k": 100, "ix": 7 },
165
+ "sk": { "a": 0, "k": 0, "ix": 4 },
166
+ "sa": { "a": 0, "k": 0, "ix": 5 },
167
+ "nm": "Transform"
168
+ }
169
+ ],
170
+ "nm": "Rectangle 1",
171
+ "np": 3,
172
+ "cix": 2,
173
+ "bm": 0,
174
+ "ix": 1,
175
+ "mn": "ADBE Vector Group",
176
+ "hd": false
177
+ }
178
+ ],
179
+ "ip": -1,
180
+ "op": 3599,
181
+ "st": -1,
182
+ "bm": 0
183
+ },
184
+ {
185
+ "ddd": 0,
186
+ "ind": 3,
187
+ "ty": 4,
188
+ "nm": "Shape Layer 1",
189
+ "sr": 1,
190
+ "ks": {
191
+ "o": { "a": 0, "k": 100, "ix": 11 },
192
+ "r": { "a": 0, "k": 0, "ix": 10 },
193
+ "p": { "a": 0, "k": [69.729, 102.857, 0], "ix": 2 },
194
+ "a": { "a": 0, "k": [-75.271, -57.143, 0], "ix": 1 },
195
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
196
+ },
197
+ "ao": 0,
198
+ "shapes": [
199
+ {
200
+ "ty": "gr",
201
+ "it": [
202
+ {
203
+ "ty": "rc",
204
+ "d": 1,
205
+ "s": {
206
+ "a": 1,
207
+ "k": [
208
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 0, "s": [18, 18] },
209
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 25, "s": [18, 36] },
210
+ { "i": { "x": [0.74, 0.74], "y": [1, 1] }, "o": { "x": [0.4, 0.4], "y": [0, 0.8] }, "t": 50, "s": [18, 68] },
211
+ { "t": 75, "s": [18, 18] }
212
+ ],
213
+ "ix": 2
214
+ },
215
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
216
+ "r": { "a": 0, "k": 20, "ix": 4 },
217
+ "nm": "Rectangle Path 1",
218
+ "mn": "ADBE Vector Shape - Rect",
219
+ "hd": false
220
+ },
221
+ {
222
+ "ty": "st",
223
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 3 },
224
+ "o": { "a": 0, "k": 100, "ix": 4 },
225
+ "w": { "a": 0, "k": 0, "ix": 5 },
226
+ "lc": 1,
227
+ "lj": 1,
228
+ "ml": 4,
229
+ "bm": 0,
230
+ "nm": "Stroke 1",
231
+ "mn": "ADBE Vector Graphic - Stroke",
232
+ "hd": false
233
+ },
234
+ {
235
+ "ty": "fl",
236
+ "c": { "a": 0, "k": [0.6, 0.6549, 0.749, 1], "ix": 4 },
237
+ "o": { "a": 0, "k": 100, "ix": 5 },
238
+ "r": 1,
239
+ "bm": 0,
240
+ "nm": "Fill 1",
241
+ "mn": "ADBE Vector Graphic - Fill",
242
+ "hd": false
243
+ },
244
+ {
245
+ "ty": "tr",
246
+ "p": { "a": 0, "k": [-75.271, -57.143], "ix": 2 },
247
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
248
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
249
+ "r": { "a": 0, "k": 0, "ix": 6 },
250
+ "o": { "a": 0, "k": 100, "ix": 7 },
251
+ "sk": { "a": 0, "k": 0, "ix": 4 },
252
+ "sa": { "a": 0, "k": 0, "ix": 5 },
253
+ "nm": "Transform"
254
+ }
255
+ ],
256
+ "nm": "Rectangle 1",
257
+ "np": 3,
258
+ "cix": 2,
259
+ "bm": 0,
260
+ "ix": 1,
261
+ "mn": "ADBE Vector Group",
262
+ "hd": false
263
+ }
264
+ ],
265
+ "ip": -1,
266
+ "op": 3599,
267
+ "st": -1,
268
+ "bm": 0
269
+ }
270
+ ],
271
+ "markers": []
272
+ }