@zezosoft/zezo-ott-react-native-ui-kit 1.0.3 → 1.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 (108) hide show
  1. package/README.md +1 -1
  2. package/lib/module/assets/animations/heart.json +788 -0
  3. package/lib/module/components/Auth/QrLogin/QrLogin.js +267 -0
  4. package/lib/module/components/Auth/QrLogin/QrLogin.js.map +1 -0
  5. package/lib/module/components/Auth/QrLogin/components/QrViewArea.js +178 -0
  6. package/lib/module/components/Auth/QrLogin/components/QrViewArea.js.map +1 -0
  7. package/lib/module/components/Auth/index.js +3 -1
  8. package/lib/module/components/Auth/index.js.map +1 -1
  9. package/lib/module/components/Headers/AppHeader.js +1 -1
  10. package/lib/module/components/Headers/AppHeader.js.map +1 -1
  11. package/lib/module/components/Headers/One.js +1 -1
  12. package/lib/module/components/Headers/One.js.map +1 -1
  13. package/lib/module/components/Headers/Two.js +1 -1
  14. package/lib/module/components/Headers/Two.js.map +1 -1
  15. package/lib/module/components/Reels/ReelsSeries/Model/Episodes.js +110 -0
  16. package/lib/module/components/Reels/ReelsSeries/Model/Episodes.js.map +1 -0
  17. package/lib/module/components/Reels/ReelsSeries/Model/Synopsis.js +216 -0
  18. package/lib/module/components/Reels/ReelsSeries/Model/Synopsis.js.map +1 -0
  19. package/lib/module/components/Reels/ReelsSeries/ReelSeriesDetailsModal.js +182 -0
  20. package/lib/module/components/Reels/ReelsSeries/ReelSeriesDetailsModal.js.map +1 -0
  21. package/lib/module/components/Reels/ReelsSeries/ReelSeriesOverlay.js +203 -0
  22. package/lib/module/components/Reels/ReelsSeries/ReelSeriesOverlay.js.map +1 -0
  23. package/lib/module/components/Reels/ReelsSeries/ReelsSeries.js +121 -0
  24. package/lib/module/components/Reels/ReelsSeries/ReelsSeries.js.map +1 -0
  25. package/lib/module/components/Reels/ReelsSeries/ReelsSeriesItem.js +290 -0
  26. package/lib/module/components/Reels/ReelsSeries/ReelsSeriesItem.js.map +1 -0
  27. package/lib/module/components/Reels/ReelsSeries/types.js +2 -0
  28. package/lib/module/components/Reels/ReelsSeries/types.js.map +1 -0
  29. package/lib/module/components/Reels/index.js +11 -0
  30. package/lib/module/components/Reels/index.js.map +1 -0
  31. package/lib/module/components/User/DeviceSessions/DeviceSessions.js +8 -0
  32. package/lib/module/components/User/DeviceSessions/DeviceSessions.js.map +1 -1
  33. package/lib/module/components/User/ProfileUpdate/ProfileUpdate.js +258 -0
  34. package/lib/module/components/User/ProfileUpdate/ProfileUpdate.js.map +1 -0
  35. package/lib/module/components/User/components/UserSection.js +8 -13
  36. package/lib/module/components/User/components/UserSection.js.map +1 -1
  37. package/lib/module/components/User/index.js +2 -1
  38. package/lib/module/components/User/index.js.map +1 -1
  39. package/lib/module/components/index.js +1 -0
  40. package/lib/module/components/index.js.map +1 -1
  41. package/lib/module/theme/ThemeProvider.js +13 -10
  42. package/lib/module/theme/ThemeProvider.js.map +1 -1
  43. package/lib/module/theme/themes.js +2 -0
  44. package/lib/module/theme/themes.js.map +1 -1
  45. package/lib/module/utils/Formater.js +17 -0
  46. package/lib/module/utils/Formater.js.map +1 -0
  47. package/lib/typescript/src/components/Auth/QrLogin/QrLogin.d.ts +32 -0
  48. package/lib/typescript/src/components/Auth/QrLogin/QrLogin.d.ts.map +1 -0
  49. package/lib/typescript/src/components/Auth/QrLogin/components/QrViewArea.d.ts +15 -0
  50. package/lib/typescript/src/components/Auth/QrLogin/components/QrViewArea.d.ts.map +1 -0
  51. package/lib/typescript/src/components/Auth/index.d.ts +1 -0
  52. package/lib/typescript/src/components/Auth/index.d.ts.map +1 -1
  53. package/lib/typescript/src/components/Reels/ReelsSeries/Model/Episodes.d.ts +12 -0
  54. package/lib/typescript/src/components/Reels/ReelsSeries/Model/Episodes.d.ts.map +1 -0
  55. package/lib/typescript/src/components/Reels/ReelsSeries/Model/Synopsis.d.ts +9 -0
  56. package/lib/typescript/src/components/Reels/ReelsSeries/Model/Synopsis.d.ts.map +1 -0
  57. package/lib/typescript/src/components/Reels/ReelsSeries/ReelSeriesDetailsModal.d.ts +13 -0
  58. package/lib/typescript/src/components/Reels/ReelsSeries/ReelSeriesDetailsModal.d.ts.map +1 -0
  59. package/lib/typescript/src/components/Reels/ReelsSeries/ReelSeriesOverlay.d.ts +18 -0
  60. package/lib/typescript/src/components/Reels/ReelsSeries/ReelSeriesOverlay.d.ts.map +1 -0
  61. package/lib/typescript/src/components/Reels/ReelsSeries/ReelsSeries.d.ts +15 -0
  62. package/lib/typescript/src/components/Reels/ReelsSeries/ReelsSeries.d.ts.map +1 -0
  63. package/lib/typescript/src/components/Reels/ReelsSeries/ReelsSeriesItem.d.ts +18 -0
  64. package/lib/typescript/src/components/Reels/ReelsSeries/ReelsSeriesItem.d.ts.map +1 -0
  65. package/lib/typescript/src/components/Reels/ReelsSeries/types.d.ts +24 -0
  66. package/lib/typescript/src/components/Reels/ReelsSeries/types.d.ts.map +1 -0
  67. package/lib/typescript/src/components/Reels/index.d.ts +8 -0
  68. package/lib/typescript/src/components/Reels/index.d.ts.map +1 -0
  69. package/lib/typescript/src/components/User/DeviceSessions/DeviceSessions.d.ts +1 -0
  70. package/lib/typescript/src/components/User/DeviceSessions/DeviceSessions.d.ts.map +1 -1
  71. package/lib/typescript/src/components/User/ProfileUpdate/ProfileUpdate.d.ts +27 -0
  72. package/lib/typescript/src/components/User/ProfileUpdate/ProfileUpdate.d.ts.map +1 -0
  73. package/lib/typescript/src/components/User/components/UserSection.d.ts.map +1 -1
  74. package/lib/typescript/src/components/User/index.d.ts +2 -1
  75. package/lib/typescript/src/components/User/index.d.ts.map +1 -1
  76. package/lib/typescript/src/components/index.d.ts +1 -0
  77. package/lib/typescript/src/components/index.d.ts.map +1 -1
  78. package/lib/typescript/src/theme/ThemeProvider.d.ts.map +1 -1
  79. package/lib/typescript/src/theme/themes.d.ts +1 -0
  80. package/lib/typescript/src/theme/themes.d.ts.map +1 -1
  81. package/lib/typescript/src/utils/Formater.d.ts +2 -0
  82. package/lib/typescript/src/utils/Formater.d.ts.map +1 -0
  83. package/package.json +13 -5
  84. package/src/assets/animations/heart.json +788 -0
  85. package/src/components/Auth/QrLogin/QrLogin.tsx +306 -0
  86. package/src/components/Auth/QrLogin/components/QrViewArea.tsx +213 -0
  87. package/src/components/Auth/index.ts +2 -0
  88. package/src/components/Headers/AppHeader.tsx +1 -1
  89. package/src/components/Headers/One.tsx +1 -1
  90. package/src/components/Headers/Two.tsx +1 -1
  91. package/src/components/Reels/ReelsSeries/Model/Episodes.tsx +133 -0
  92. package/src/components/Reels/ReelsSeries/Model/Synopsis.tsx +249 -0
  93. package/src/components/Reels/ReelsSeries/ReelSeriesDetailsModal.tsx +209 -0
  94. package/src/components/Reels/ReelsSeries/ReelSeriesOverlay.tsx +185 -0
  95. package/src/components/Reels/ReelsSeries/ReelsSeries.tsx +163 -0
  96. package/src/components/Reels/ReelsSeries/ReelsSeriesItem.tsx +333 -0
  97. package/src/components/Reels/ReelsSeries/types.ts +27 -0
  98. package/src/components/Reels/index.ts +8 -0
  99. package/src/components/User/DeviceSessions/DeviceSessions.tsx +11 -0
  100. package/src/components/User/ProfileUpdate/ProfileUpdate.tsx +265 -0
  101. package/src/components/User/components/UserSection.tsx +10 -13
  102. package/src/components/User/index.ts +3 -1
  103. package/src/components/index.ts +1 -0
  104. package/src/theme/ThemeProvider.tsx +12 -9
  105. package/src/theme/themes.ts +3 -0
  106. package/src/utils/Formater.ts +14 -0
  107. /package/lib/module/assets/{img → svg}/h.svg +0 -0
  108. /package/src/assets/{img → svg}/h.svg +0 -0
@@ -0,0 +1,788 @@
1
+ {
2
+ "nm": "heart",
3
+ "ddd": 0,
4
+ "h": 100,
5
+ "w": 100,
6
+ "meta": { "g": "@lottiefiles/toolkit-js 0.33.2" },
7
+ "layers": [
8
+ {
9
+ "ty": 4,
10
+ "nm": "Layer 2 Outlines",
11
+ "sr": 1,
12
+ "st": 0,
13
+ "op": 900.000036657751,
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": [20.392, 17.022, 0], "ix": 1 },
22
+ "s": {
23
+ "a": 1,
24
+ "k": [
25
+ {
26
+ "o": { "x": 0.486, "y": 0 },
27
+ "i": { "x": 0.667, "y": 1 },
28
+ "s": [0, 0, 100],
29
+ "t": 0
30
+ },
31
+ {
32
+ "o": { "x": 0.439, "y": 0 },
33
+ "i": { "x": 0.576, "y": 1 },
34
+ "s": [119, 119, 100],
35
+ "t": 5
36
+ },
37
+ {
38
+ "o": { "x": 0.152, "y": 0 },
39
+ "i": { "x": 0.288, "y": 1 },
40
+ "s": [82, 82, 100],
41
+ "t": 10
42
+ },
43
+ { "s": [100, 100, 100], "t": 15.0000006109625 }
44
+ ],
45
+ "ix": 6
46
+ },
47
+ "sk": { "a": 0, "k": 0 },
48
+ "p": { "a": 0, "k": [50.085, 49.972, 0], "ix": 2 },
49
+ "r": { "a": 0, "k": 0, "ix": 10 },
50
+ "sa": { "a": 0, "k": 0 },
51
+ "o": { "a": 0, "k": 100, "ix": 11 }
52
+ },
53
+ "ef": [],
54
+ "shapes": [
55
+ {
56
+ "ty": "gr",
57
+ "bm": 0,
58
+ "hd": false,
59
+ "mn": "ADBE Vector Group",
60
+ "nm": "Group 1",
61
+ "ix": 1,
62
+ "cix": 2,
63
+ "np": 2,
64
+ "it": [
65
+ {
66
+ "ty": "sh",
67
+ "bm": 0,
68
+ "hd": false,
69
+ "mn": "ADBE Vector Shape - Group",
70
+ "nm": "Path 1",
71
+ "ix": 1,
72
+ "d": 1,
73
+ "ks": {
74
+ "a": 0,
75
+ "k": {
76
+ "c": true,
77
+ "i": [
78
+ [-2.008, 2.091],
79
+ [-2.887, 0.06],
80
+ [0, 0],
81
+ [-2.098, -2.123],
82
+ [0, 0],
83
+ [0, 0],
84
+ [-3.003, 0.063],
85
+ [0, 0],
86
+ [-2.092, -2.008],
87
+ [-0.059, -2.889],
88
+ [2.542, -1.428],
89
+ [0.178, 8.815]
90
+ ],
91
+ "o": [
92
+ [2.007, -2.09],
93
+ [0, 0],
94
+ [3.002, -0.062],
95
+ [0, 0],
96
+ [0, 0],
97
+ [2.009, -2.205],
98
+ [0, 0],
99
+ [2.89, -0.058],
100
+ [2.09, 2.008],
101
+ [0.229, 11.336],
102
+ [-7.185, -3.885],
103
+ [-0.059, -2.89]
104
+ ],
105
+ "v": [
106
+ [-17.06, -13.009],
107
+ [-9.471, -16.342],
108
+ [-9.465, -16.342],
109
+ [-1.555, -13.145],
110
+ [-0.209, -11.783],
111
+ [1.081, -13.198],
112
+ [8.851, -16.714],
113
+ [8.855, -16.714],
114
+ [16.579, -13.69],
115
+ [19.913, -6.096],
116
+ [0.38, 16.772],
117
+ [-20.083, -5.285]
118
+ ]
119
+ },
120
+ "ix": 2
121
+ }
122
+ },
123
+ {
124
+ "ty": "fl",
125
+ "bm": 0,
126
+ "hd": false,
127
+ "mn": "ADBE Vector Graphic - Fill",
128
+ "nm": "Fill 1",
129
+ "c": { "a": 0, "k": [0.9647, 0.3098, 0.4], "ix": 4 },
130
+ "r": 1,
131
+ "o": { "a": 0, "k": 100, "ix": 5 }
132
+ },
133
+ {
134
+ "ty": "tr",
135
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
136
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
137
+ "sk": { "a": 0, "k": 0, "ix": 4 },
138
+ "p": { "a": 0, "k": [20.392, 17.022], "ix": 2 },
139
+ "r": { "a": 0, "k": 0, "ix": 6 },
140
+ "sa": { "a": 0, "k": 0, "ix": 5 },
141
+ "o": { "a": 0, "k": 100, "ix": 7 }
142
+ }
143
+ ]
144
+ }
145
+ ],
146
+ "ind": 1
147
+ },
148
+ {
149
+ "ty": 0,
150
+ "nm": "Shape Layer 2 Comp 1",
151
+ "sr": 1,
152
+ "st": 3.00000012219251,
153
+ "op": 903.000036779944,
154
+ "ip": 3.00000012219251,
155
+ "hd": false,
156
+ "ddd": 0,
157
+ "bm": 0,
158
+ "hasMask": false,
159
+ "ao": 0,
160
+ "ks": {
161
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
162
+ "s": { "a": 0, "k": [86, 86, 100], "ix": 6 },
163
+ "sk": { "a": 0, "k": 0 },
164
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
165
+ "r": { "a": 0, "k": 0, "ix": 10 },
166
+ "sa": { "a": 0, "k": 0 },
167
+ "o": { "a": 0, "k": 100, "ix": 11 }
168
+ },
169
+ "ef": [],
170
+ "w": 100,
171
+ "h": 100,
172
+ "refId": "comp_4",
173
+ "ind": 2
174
+ }
175
+ ],
176
+ "v": "5.1.7",
177
+ "fr": 29.9700012207031,
178
+ "op": 24.00000097754,
179
+ "ip": 0,
180
+ "assets": [
181
+ {
182
+ "nm": "",
183
+ "id": "comp_4",
184
+ "layers": [
185
+ {
186
+ "ty": 0,
187
+ "nm": "Shape Layer 2 Comp 2",
188
+ "sr": 1,
189
+ "st": 0,
190
+ "op": 900.000036657751,
191
+ "ip": 0,
192
+ "hd": false,
193
+ "ddd": 0,
194
+ "bm": 0,
195
+ "hasMask": false,
196
+ "ao": 0,
197
+ "ks": {
198
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
199
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
200
+ "sk": { "a": 0, "k": 0 },
201
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
202
+ "r": { "a": 0, "k": 180, "ix": 10 },
203
+ "sa": { "a": 0, "k": 0 },
204
+ "o": { "a": 0, "k": 100, "ix": 11 }
205
+ },
206
+ "ef": [],
207
+ "w": 100,
208
+ "h": 100,
209
+ "refId": "comp_5",
210
+ "ind": 1
211
+ },
212
+ {
213
+ "ty": 0,
214
+ "nm": "Shape Layer 2 Comp 2",
215
+ "sr": 1,
216
+ "st": 0,
217
+ "op": 900.000036657751,
218
+ "ip": 0,
219
+ "hd": false,
220
+ "ddd": 0,
221
+ "bm": 0,
222
+ "hasMask": false,
223
+ "ao": 0,
224
+ "ks": {
225
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
226
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
227
+ "sk": { "a": 0, "k": 0 },
228
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
229
+ "r": { "a": 0, "k": 130, "ix": 10 },
230
+ "sa": { "a": 0, "k": 0 },
231
+ "o": { "a": 0, "k": 100, "ix": 11 }
232
+ },
233
+ "ef": [],
234
+ "w": 100,
235
+ "h": 100,
236
+ "refId": "comp_5",
237
+ "ind": 2
238
+ },
239
+ {
240
+ "ty": 0,
241
+ "nm": "Shape Layer 2 Comp 2",
242
+ "sr": 1,
243
+ "st": 0,
244
+ "op": 900.000036657751,
245
+ "ip": 0,
246
+ "hd": false,
247
+ "ddd": 0,
248
+ "bm": 0,
249
+ "hasMask": false,
250
+ "ao": 0,
251
+ "ks": {
252
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
253
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
254
+ "sk": { "a": 0, "k": 0 },
255
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
256
+ "r": { "a": 0, "k": 90, "ix": 10 },
257
+ "sa": { "a": 0, "k": 0 },
258
+ "o": { "a": 0, "k": 100, "ix": 11 }
259
+ },
260
+ "ef": [],
261
+ "w": 100,
262
+ "h": 100,
263
+ "refId": "comp_5",
264
+ "ind": 3
265
+ },
266
+ {
267
+ "ty": 0,
268
+ "nm": "Shape Layer 2 Comp 2",
269
+ "sr": 1,
270
+ "st": 0,
271
+ "op": 900.000036657751,
272
+ "ip": 0,
273
+ "hd": false,
274
+ "ddd": 0,
275
+ "bm": 0,
276
+ "hasMask": false,
277
+ "ao": 0,
278
+ "ks": {
279
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
280
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
281
+ "sk": { "a": 0, "k": 0 },
282
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
283
+ "r": { "a": 0, "k": 45, "ix": 10 },
284
+ "sa": { "a": 0, "k": 0 },
285
+ "o": { "a": 0, "k": 100, "ix": 11 }
286
+ },
287
+ "ef": [],
288
+ "w": 100,
289
+ "h": 100,
290
+ "refId": "comp_5",
291
+ "ind": 4
292
+ },
293
+ {
294
+ "ty": 0,
295
+ "nm": "Shape Layer 2 Comp 2",
296
+ "sr": 1,
297
+ "st": 0,
298
+ "op": 900.000036657751,
299
+ "ip": 0,
300
+ "hd": false,
301
+ "ddd": 0,
302
+ "bm": 0,
303
+ "hasMask": false,
304
+ "ao": 0,
305
+ "ks": {
306
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
307
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
308
+ "sk": { "a": 0, "k": 0 },
309
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
310
+ "r": { "a": 0, "k": -135, "ix": 10 },
311
+ "sa": { "a": 0, "k": 0 },
312
+ "o": { "a": 0, "k": 100, "ix": 11 }
313
+ },
314
+ "ef": [],
315
+ "w": 100,
316
+ "h": 100,
317
+ "refId": "comp_5",
318
+ "ind": 5
319
+ },
320
+ {
321
+ "ty": 0,
322
+ "nm": "Shape Layer 2 Comp 2",
323
+ "sr": 1,
324
+ "st": 0,
325
+ "op": 900.000036657751,
326
+ "ip": 0,
327
+ "hd": false,
328
+ "ddd": 0,
329
+ "bm": 0,
330
+ "hasMask": false,
331
+ "ao": 0,
332
+ "ks": {
333
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
334
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
335
+ "sk": { "a": 0, "k": 0 },
336
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
337
+ "r": { "a": 0, "k": -90, "ix": 10 },
338
+ "sa": { "a": 0, "k": 0 },
339
+ "o": { "a": 0, "k": 100, "ix": 11 }
340
+ },
341
+ "ef": [],
342
+ "w": 100,
343
+ "h": 100,
344
+ "refId": "comp_5",
345
+ "ind": 6
346
+ },
347
+ {
348
+ "ty": 0,
349
+ "nm": "Shape Layer 2 Comp 2",
350
+ "sr": 1,
351
+ "st": 0,
352
+ "op": 900.000036657751,
353
+ "ip": 0,
354
+ "hd": false,
355
+ "ddd": 0,
356
+ "bm": 0,
357
+ "hasMask": false,
358
+ "ao": 0,
359
+ "ks": {
360
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
361
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
362
+ "sk": { "a": 0, "k": 0 },
363
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
364
+ "r": { "a": 0, "k": -45, "ix": 10 },
365
+ "sa": { "a": 0, "k": 0 },
366
+ "o": { "a": 0, "k": 100, "ix": 11 }
367
+ },
368
+ "ef": [],
369
+ "w": 100,
370
+ "h": 100,
371
+ "refId": "comp_5",
372
+ "ind": 7
373
+ },
374
+ {
375
+ "ty": 0,
376
+ "nm": "Shape Layer 2 Comp 2",
377
+ "sr": 1,
378
+ "st": 0,
379
+ "op": 900.000036657751,
380
+ "ip": 0,
381
+ "hd": false,
382
+ "ddd": 0,
383
+ "bm": 0,
384
+ "hasMask": false,
385
+ "ao": 0,
386
+ "ks": {
387
+ "a": { "a": 0, "k": [50, 50, 0], "ix": 1 },
388
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 },
389
+ "sk": { "a": 0, "k": 0 },
390
+ "p": { "a": 0, "k": [50, 50, 0], "ix": 2 },
391
+ "r": { "a": 0, "k": 0, "ix": 10 },
392
+ "sa": { "a": 0, "k": 0 },
393
+ "o": { "a": 0, "k": 100, "ix": 11 }
394
+ },
395
+ "ef": [],
396
+ "w": 100,
397
+ "h": 100,
398
+ "refId": "comp_5",
399
+ "ind": 8
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "nm": "",
405
+ "id": "comp_5",
406
+ "layers": [
407
+ {
408
+ "ty": 4,
409
+ "nm": "Shape Layer 4",
410
+ "sr": 1,
411
+ "st": 0,
412
+ "op": 900.000036657751,
413
+ "ip": 0,
414
+ "hd": false,
415
+ "ddd": 0,
416
+ "bm": 0,
417
+ "hasMask": false,
418
+ "ao": 0,
419
+ "ks": {
420
+ "a": { "a": 0, "k": [-0.122, -27.75, 0], "ix": 1 },
421
+ "s": {
422
+ "a": 1,
423
+ "k": [
424
+ {
425
+ "o": { "x": 0.333, "y": -44.172 },
426
+ "i": { "x": 0.667, "y": 15.897 },
427
+ "s": [78.68, 78.68, 100],
428
+ "t": 3
429
+ },
430
+ {
431
+ "o": { "x": 0.333, "y": -0.562 },
432
+ "i": { "x": 0.667, "y": 1 },
433
+ "s": [78, 78, 100],
434
+ "t": 9
435
+ },
436
+ { "s": [54, 54, 100], "t": 17.0000006924242 }
437
+ ],
438
+ "ix": 6
439
+ },
440
+ "sk": { "a": 0, "k": 0 },
441
+ "p": {
442
+ "a": 1,
443
+ "k": [
444
+ {
445
+ "o": { "x": 0.333, "y": 0.406 },
446
+ "i": { "x": 0.667, "y": 0.567 },
447
+ "s": [39.878, 39.582, 0],
448
+ "t": 3,
449
+ "ti": [0, 2.48720121383667, 0],
450
+ "to": [0, -0.83333331346512, 0]
451
+ },
452
+ {
453
+ "o": { "x": 0.333, "y": 0.5 },
454
+ "i": { "x": 0.667, "y": 1 },
455
+ "s": [39.878, 22.253, 0],
456
+ "t": 9,
457
+ "ti": [0, 3.3337619304657, 0],
458
+ "to": [0, -8.33440494537354, 0]
459
+ },
460
+ { "s": [39.878, 2.25, 0], "t": 17.0000006924242 }
461
+ ],
462
+ "ix": 2
463
+ },
464
+ "r": { "a": 0, "k": 0, "ix": 10 },
465
+ "sa": { "a": 0, "k": 0 },
466
+ "o": {
467
+ "a": 1,
468
+ "k": [
469
+ {
470
+ "o": { "x": 0.333, "y": 0.281 },
471
+ "i": { "x": 0.667, "y": 1 },
472
+ "s": [0],
473
+ "t": 3
474
+ },
475
+ {
476
+ "o": { "x": 0.333, "y": 0 },
477
+ "i": { "x": 0.667, "y": 1 },
478
+ "s": [100],
479
+ "t": 9
480
+ },
481
+ { "s": [0], "t": 17.0000006924242 }
482
+ ],
483
+ "ix": 11
484
+ }
485
+ },
486
+ "ef": [],
487
+ "shapes": [
488
+ {
489
+ "ty": "gr",
490
+ "bm": 0,
491
+ "hd": false,
492
+ "mn": "ADBE Vector Group",
493
+ "nm": "Ellipse 1",
494
+ "ix": 1,
495
+ "cix": 2,
496
+ "np": 3,
497
+ "it": [
498
+ {
499
+ "ty": "el",
500
+ "bm": 0,
501
+ "hd": false,
502
+ "mn": "ADBE Vector Shape - Ellipse",
503
+ "nm": "Ellipse Path 1",
504
+ "d": 1,
505
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
506
+ "s": { "a": 0, "k": [6.66, 6.66], "ix": 2 }
507
+ },
508
+ {
509
+ "ty": "fl",
510
+ "bm": 0,
511
+ "hd": false,
512
+ "mn": "ADBE Vector Graphic - Fill",
513
+ "nm": "Fill 1",
514
+ "c": { "a": 0, "k": [0.9098, 0.1843, 0.5686], "ix": 4 },
515
+ "r": 1,
516
+ "o": { "a": 0, "k": 100, "ix": 5 }
517
+ },
518
+ {
519
+ "ty": "tr",
520
+ "a": { "a": 0, "k": [0, 1.076], "ix": 1 },
521
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
522
+ "sk": { "a": 0, "k": 0, "ix": 4 },
523
+ "p": { "a": 0, "k": [-0.17, -26.594], "ix": 2 },
524
+ "r": { "a": 0, "k": 0, "ix": 6 },
525
+ "sa": { "a": 0, "k": 0, "ix": 5 },
526
+ "o": { "a": 0, "k": 100, "ix": 7 }
527
+ }
528
+ ]
529
+ }
530
+ ],
531
+ "ind": 1
532
+ },
533
+ {
534
+ "ty": 4,
535
+ "nm": "Shape Layer 3",
536
+ "sr": 1,
537
+ "st": 0,
538
+ "op": 900.000036657751,
539
+ "ip": 0,
540
+ "hd": false,
541
+ "ddd": 0,
542
+ "bm": 0,
543
+ "hasMask": false,
544
+ "ao": 0,
545
+ "ks": {
546
+ "a": { "a": 0, "k": [-0.122, -27.75, 0], "ix": 1 },
547
+ "s": {
548
+ "a": 1,
549
+ "k": [
550
+ {
551
+ "o": { "x": 0.333, "y": -44.172 },
552
+ "i": { "x": 0.667, "y": 15.897 },
553
+ "s": [78.68, 78.68, 100],
554
+ "t": 0
555
+ },
556
+ {
557
+ "o": { "x": 0.333, "y": -0.773 },
558
+ "i": { "x": 0.667, "y": 1 },
559
+ "s": [78, 78, 100],
560
+ "t": 6
561
+ },
562
+ { "s": [54, 54, 100], "t": 17.0000006924242 }
563
+ ],
564
+ "ix": 6
565
+ },
566
+ "sk": { "a": 0, "k": 0 },
567
+ "p": {
568
+ "a": 1,
569
+ "k": [
570
+ {
571
+ "o": { "x": 0.333, "y": 0.406 },
572
+ "i": { "x": 0.667, "y": 0.567 },
573
+ "s": [49.878, 39.582, 0],
574
+ "t": 0,
575
+ "ti": [0, 2.48720121383667, 0],
576
+ "to": [0, -2.35414934158325, 0]
577
+ },
578
+ {
579
+ "o": { "x": 0.333, "y": 0.687 },
580
+ "i": { "x": 0.667, "y": 1 },
581
+ "s": [49.878, 22.253, 0],
582
+ "t": 6,
583
+ "ti": [0, 3.3337619304657, 0],
584
+ "to": [0, -8.33440494537354, 0]
585
+ },
586
+ { "s": [49.878, 2.25, 0], "t": 17.0000006924242 }
587
+ ],
588
+ "ix": 2
589
+ },
590
+ "r": { "a": 0, "k": 0, "ix": 10 },
591
+ "sa": { "a": 0, "k": 0 },
592
+ "o": {
593
+ "a": 1,
594
+ "k": [
595
+ {
596
+ "o": { "x": 0.333, "y": 0.281 },
597
+ "i": { "x": 0.667, "y": 1 },
598
+ "s": [0],
599
+ "t": 0
600
+ },
601
+ {
602
+ "o": { "x": 0.333, "y": 0 },
603
+ "i": { "x": 0.667, "y": 1 },
604
+ "s": [100],
605
+ "t": 6
606
+ },
607
+ { "s": [0], "t": 17.0000006924242 }
608
+ ],
609
+ "ix": 11
610
+ }
611
+ },
612
+ "ef": [],
613
+ "shapes": [
614
+ {
615
+ "ty": "gr",
616
+ "bm": 0,
617
+ "hd": false,
618
+ "mn": "ADBE Vector Group",
619
+ "nm": "Ellipse 1",
620
+ "ix": 1,
621
+ "cix": 2,
622
+ "np": 3,
623
+ "it": [
624
+ {
625
+ "ty": "el",
626
+ "bm": 0,
627
+ "hd": false,
628
+ "mn": "ADBE Vector Shape - Ellipse",
629
+ "nm": "Ellipse Path 1",
630
+ "d": 1,
631
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
632
+ "s": { "a": 0, "k": [6.66, 6.66], "ix": 2 }
633
+ },
634
+ {
635
+ "ty": "fl",
636
+ "bm": 0,
637
+ "hd": false,
638
+ "mn": "ADBE Vector Graphic - Fill",
639
+ "nm": "Fill 1",
640
+ "c": { "a": 0, "k": [0.9647, 0.3098, 0.4], "ix": 4 },
641
+ "r": 1,
642
+ "o": { "a": 0, "k": 100, "ix": 5 }
643
+ },
644
+ {
645
+ "ty": "tr",
646
+ "a": { "a": 0, "k": [0, 1.076], "ix": 1 },
647
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
648
+ "sk": { "a": 0, "k": 0, "ix": 4 },
649
+ "p": { "a": 0, "k": [-0.17, -26.594], "ix": 2 },
650
+ "r": { "a": 0, "k": 0, "ix": 6 },
651
+ "sa": { "a": 0, "k": 0, "ix": 5 },
652
+ "o": { "a": 0, "k": 100, "ix": 7 }
653
+ }
654
+ ]
655
+ }
656
+ ],
657
+ "ind": 2
658
+ },
659
+ {
660
+ "ty": 4,
661
+ "nm": "Shape Layer 2",
662
+ "sr": 1,
663
+ "st": 5.00000020365417,
664
+ "op": 905.000036861406,
665
+ "ip": 5.00000020365417,
666
+ "hd": false,
667
+ "ddd": 0,
668
+ "bm": 0,
669
+ "hasMask": false,
670
+ "ao": 0,
671
+ "ks": {
672
+ "a": { "a": 0, "k": [-0.122, -27.75, 0], "ix": 1 },
673
+ "s": {
674
+ "a": 1,
675
+ "k": [
676
+ {
677
+ "o": { "x": 0.333, "y": -44.172 },
678
+ "i": { "x": 0.667, "y": 15.897 },
679
+ "s": [78.68, 78.68, 100],
680
+ "t": 5
681
+ },
682
+ {
683
+ "o": { "x": 0.333, "y": -0.562 },
684
+ "i": { "x": 0.667, "y": 1 },
685
+ "s": [78, 78, 100],
686
+ "t": 11
687
+ },
688
+ { "s": [54, 54, 100], "t": 19.0000007738859 }
689
+ ],
690
+ "ix": 6
691
+ },
692
+ "sk": { "a": 0, "k": 0 },
693
+ "p": {
694
+ "a": 1,
695
+ "k": [
696
+ {
697
+ "o": { "x": 0.333, "y": 0.406 },
698
+ "i": { "x": 0.667, "y": 0.567 },
699
+ "s": [59.878, 39.582, 0],
700
+ "t": 5,
701
+ "ti": [0, 2.48720121383667, 0],
702
+ "to": [0, -2.35414934158325, 0]
703
+ },
704
+ {
705
+ "o": { "x": 0.333, "y": 0.5 },
706
+ "i": { "x": 0.667, "y": 1 },
707
+ "s": [59.878, 22.253, 0],
708
+ "t": 11,
709
+ "ti": [0, 3.3337619304657, 0],
710
+ "to": [0, -8.33440494537354, 0]
711
+ },
712
+ { "s": [59.878, 2.25, 0], "t": 19.0000007738859 }
713
+ ],
714
+ "ix": 2
715
+ },
716
+ "r": { "a": 0, "k": 0, "ix": 10 },
717
+ "sa": { "a": 0, "k": 0 },
718
+ "o": {
719
+ "a": 1,
720
+ "k": [
721
+ {
722
+ "o": { "x": 0.333, "y": 0.281 },
723
+ "i": { "x": 0.667, "y": 1 },
724
+ "s": [0],
725
+ "t": 5
726
+ },
727
+ {
728
+ "o": { "x": 0.333, "y": 0 },
729
+ "i": { "x": 0.667, "y": 1 },
730
+ "s": [100],
731
+ "t": 11
732
+ },
733
+ { "s": [0], "t": 19.0000007738859 }
734
+ ],
735
+ "ix": 11
736
+ }
737
+ },
738
+ "ef": [],
739
+ "shapes": [
740
+ {
741
+ "ty": "gr",
742
+ "bm": 0,
743
+ "hd": false,
744
+ "mn": "ADBE Vector Group",
745
+ "nm": "Ellipse 1",
746
+ "ix": 1,
747
+ "cix": 2,
748
+ "np": 3,
749
+ "it": [
750
+ {
751
+ "ty": "el",
752
+ "bm": 0,
753
+ "hd": false,
754
+ "mn": "ADBE Vector Shape - Ellipse",
755
+ "nm": "Ellipse Path 1",
756
+ "d": 1,
757
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
758
+ "s": { "a": 0, "k": [6.66, 6.66], "ix": 2 }
759
+ },
760
+ {
761
+ "ty": "fl",
762
+ "bm": 0,
763
+ "hd": false,
764
+ "mn": "ADBE Vector Graphic - Fill",
765
+ "nm": "Fill 1",
766
+ "c": { "a": 0, "k": [1, 0.8706, 0.051], "ix": 4 },
767
+ "r": 1,
768
+ "o": { "a": 0, "k": 100, "ix": 5 }
769
+ },
770
+ {
771
+ "ty": "tr",
772
+ "a": { "a": 0, "k": [0, 1.076], "ix": 1 },
773
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
774
+ "sk": { "a": 0, "k": 0, "ix": 4 },
775
+ "p": { "a": 0, "k": [-0.17, -26.594], "ix": 2 },
776
+ "r": { "a": 0, "k": 0, "ix": 6 },
777
+ "sa": { "a": 0, "k": 0, "ix": 5 },
778
+ "o": { "a": 0, "k": 100, "ix": 7 }
779
+ }
780
+ ]
781
+ }
782
+ ],
783
+ "ind": 3
784
+ }
785
+ ]
786
+ }
787
+ ]
788
+ }